Skip to content

Commit b314734

Browse files
Merge pull request #57 from devopsarr/feature/code-generation
chore(deps): update openapitools/openapi-generator-cli docker tag to v7.3.0
2 parents f548e0f + 15b266b commit b314734

File tree

157 files changed

+142
-267
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+142
-267
lines changed

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.2.0
1+
7.3.0

docs/HistoryResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Name | Type | Description | Notes
1616
**var_date** | **datetime** | | [optional]
1717
**download_id** | **str** | | [optional]
1818
**event_type** | [**EpisodeHistoryEventType**](EpisodeHistoryEventType.md) | | [optional]
19-
**data** | **Dict[str, str]** | | [optional]
19+
**data** | **Dict[str, Optional[str]]** | | [optional]
2020
**episode** | [**EpisodeResource**](EpisodeResource.md) | | [optional]
2121
**series** | [**SeriesResource**](SeriesResource.md) | | [optional]
2222

docs/LocalizationResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**id** | **int** | | [optional]
8-
**strings** | **Dict[str, str]** | | [optional]
8+
**strings** | **Dict[str, Optional[str]]** | | [optional]
99

1010
## Example
1111

sonarr/api/authentication_api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@
1818
from typing_extensions import Annotated
1919

2020
from pydantic import StrictStr
21-
2221
from typing import Optional
2322

24-
2523
from sonarr.api_client import ApiClient
2624
from sonarr.exceptions import ( # noqa: F401
2725
ApiTypeError,

sonarr/api/auto_tagging_api.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
from typing_extensions import Annotated
1919

2020
from pydantic import StrictInt, StrictStr
21-
22-
from typing import List, Optional
23-
21+
from typing import Optional
2422
from sonarr.models.auto_tagging_resource import AutoTaggingResource
2523
from sonarr.models.auto_tagging_specification_schema import AutoTaggingSpecificationSchema
2624

sonarr/api/backup_api.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
from typing_extensions import Annotated
1919

2020
from pydantic import StrictInt
21-
22-
from typing import List
23-
2421
from sonarr.models.backup_resource import BackupResource
2522

2623
from sonarr.api_client import ApiClient

sonarr/api/blocklist_api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
from typing_extensions import Annotated
1919

2020
from pydantic import StrictInt, StrictStr
21-
2221
from typing import Optional
23-
2422
from sonarr.models.blocklist_bulk_resource import BlocklistBulkResource
2523
from sonarr.models.blocklist_resource_paging_resource import BlocklistResourcePagingResource
2624
from sonarr.models.sort_direction import SortDirection

sonarr/api/calendar_api.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,8 @@
1818
from typing_extensions import Annotated
1919

2020
from datetime import datetime
21-
2221
from pydantic import StrictBool, StrictInt, StrictStr
23-
24-
from typing import List, Optional
25-
22+
from typing import Optional
2623
from sonarr.models.episode_resource import EpisodeResource
2724

2825
from sonarr.api_client import ApiClient

sonarr/api/calendar_feed_api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@
1818
from typing_extensions import Annotated
1919

2020
from pydantic import StrictBool, StrictInt, StrictStr
21-
2221
from typing import Optional
2322

24-
2523
from sonarr.api_client import ApiClient
2624
from sonarr.exceptions import ( # noqa: F401
2725
ApiTypeError,

sonarr/api/command_api.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
from typing_extensions import Annotated
1919

2020
from pydantic import StrictInt
21-
22-
from typing import List, Optional
23-
21+
from typing import Optional
2422
from sonarr.models.command_resource import CommandResource
2523

2624
from sonarr.api_client import ApiClient

0 commit comments

Comments
 (0)