diff --git a/docs/AlmanaxApi.md b/docs/AlmanaxApi.md index 057bdc1..2e77f72 100644 --- a/docs/AlmanaxApi.md +++ b/docs/AlmanaxApi.md @@ -109,7 +109,7 @@ with dofusdude.ApiClient(configuration) as api_client: filter_bonus_type = 'experience-points' # str | ids from meta/{language}/almanax/bonuses (optional) range_from = '2013-10-20' # date | yyyy-mm-dd (optional) range_to = '2013-10-20' # date | yyyy-mm-dd (optional) - range_size = -1 # int | size of the returned range (optional) + range_size = -1 # int | Size of the returned range. Disable to fully use the range by setting size to -1. (optional) timezone = 'Europe/Paris' # str | determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location. (optional) (default to 'Europe/Paris') try: @@ -132,7 +132,7 @@ Name | Type | Description | Notes **filter_bonus_type** | **str**| ids from meta/{language}/almanax/bonuses | [optional] **range_from** | **date**| yyyy-mm-dd | [optional] **range_to** | **date**| yyyy-mm-dd | [optional] - **range_size** | **int**| size of the returned range | [optional] + **range_size** | **int**| Size of the returned range. Disable to fully use the range by setting size to -1. | [optional] **timezone** | **str**| determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location. | [optional] [default to 'Europe/Paris'] ### Return type diff --git a/dofusdude/api/almanax_api.py b/dofusdude/api/almanax_api.py index a48625a..9e2006a 100644 --- a/dofusdude/api/almanax_api.py +++ b/dofusdude/api/almanax_api.py @@ -323,7 +323,7 @@ def get_almanax_range( filter_bonus_type: Annotated[Optional[StrictStr], Field(description="ids from meta/{language}/almanax/bonuses")] = None, range_from: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None, range_to: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None, - range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True, ge=-1)]], Field(description="size of the returned range")] = None, + range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True)]], Field(description="Size of the returned range. Disable to fully use the range by setting size to -1.")] = None, timezone: Annotated[Optional[StrictStr], Field(description="determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.")] = None, _request_timeout: Union[ None, @@ -350,7 +350,7 @@ def get_almanax_range( :type range_from: date :param range_to: yyyy-mm-dd :type range_to: date - :param range_size: size of the returned range + :param range_size: Size of the returned range. Disable to fully use the range by setting size to -1. :type range_size: int :param timezone: determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location. :type timezone: str @@ -410,7 +410,7 @@ def get_almanax_range_with_http_info( filter_bonus_type: Annotated[Optional[StrictStr], Field(description="ids from meta/{language}/almanax/bonuses")] = None, range_from: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None, range_to: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None, - range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True, ge=-1)]], Field(description="size of the returned range")] = None, + range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True)]], Field(description="Size of the returned range. Disable to fully use the range by setting size to -1.")] = None, timezone: Annotated[Optional[StrictStr], Field(description="determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.")] = None, _request_timeout: Union[ None, @@ -437,7 +437,7 @@ def get_almanax_range_with_http_info( :type range_from: date :param range_to: yyyy-mm-dd :type range_to: date - :param range_size: size of the returned range + :param range_size: Size of the returned range. Disable to fully use the range by setting size to -1. :type range_size: int :param timezone: determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location. :type timezone: str @@ -497,7 +497,7 @@ def get_almanax_range_without_preload_content( filter_bonus_type: Annotated[Optional[StrictStr], Field(description="ids from meta/{language}/almanax/bonuses")] = None, range_from: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None, range_to: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None, - range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True, ge=-1)]], Field(description="size of the returned range")] = None, + range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True)]], Field(description="Size of the returned range. Disable to fully use the range by setting size to -1.")] = None, timezone: Annotated[Optional[StrictStr], Field(description="determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.")] = None, _request_timeout: Union[ None, @@ -524,7 +524,7 @@ def get_almanax_range_without_preload_content( :type range_from: date :param range_to: yyyy-mm-dd :type range_to: date - :param range_size: size of the returned range + :param range_size: Size of the returned range. Disable to fully use the range by setting size to -1. :type range_size: int :param timezone: determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location. :type timezone: str