From aa1446f021b9b995ca0f8d4fef1b7641555d8971 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 29 Dec 2022 13:03:42 -0800 Subject: [PATCH 1/5] Uses datetime import, adds types templates --- .../languages/AbstractPythonCodegen.java | 6 +- .../resources/python/api_client.handlebars | 17 +++-- .../imports_schema_types.handlebars | 2 +- .../python/model_templates/new.handlebars | 2 +- .../schema_python_types.handlebars | 2 +- .../main/resources/python/response.handlebars | 2 +- .../resources/python/schema_doc.handlebars | 2 +- .../main/resources/python/schemas.handlebars | 66 +++++++------------ .../python/types_all_accessed.handlebars | 8 +++ .../types_all_accessed_oneline.handlebars | 1 + .../python/types_all_incl_schema.handlebars | 16 +++++ .../types_all_incl_schema_oneline.handlebars | 1 + 12 files changed, 67 insertions(+), 58 deletions(-) create mode 100644 modules/openapi-json-schema-generator/src/main/resources/python/types_all_accessed.handlebars create mode 100644 modules/openapi-json-schema-generator/src/main/resources/python/types_all_accessed_oneline.handlebars create mode 100644 modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema.handlebars create mode 100644 modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema_oneline.handlebars diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/AbstractPythonCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/AbstractPythonCodegen.java index e6312056768..ddf0439e995 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/AbstractPythonCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/AbstractPythonCodegen.java @@ -61,7 +61,11 @@ public AbstractPythonCodegen() { "assert", "else", "if", "pass", "yield", "break", "except", "import", "print", "class", "exec", "in", "raise", "continue", "finally", "is", "return", "def", "for", "lambda", "try", "self", "nonlocal", "None", "True", - "False", "async", "await")); + "False", "async", "await", + // imports, imports_schema_types.handlebars, include these to prevent name collision + "datetime", "decimal", "functools", "io", "re", + "typing", "typing_extensions", "uuid", "frozendict", "schemas" + )); languageSpecificPrimitives.clear(); languageSpecificPrimitives.add("int"); diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars index bf3ee989069..a214b707de1 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars @@ -1,8 +1,9 @@ # coding: utf-8 {{>partial_header}} +import datetime import dataclasses -from decimal import Decimal +import decimal import enum import email import json @@ -33,8 +34,6 @@ from {{packageName}}.schemas import ( Schema, FileIO, BinarySchema, - date, - datetime, none_type, Unset, unset, @@ -58,7 +57,7 @@ class JSONEncoder(json.JSONEncoder): return float(obj) elif isinstance(obj, int): return int(obj) - elif isinstance(obj, Decimal): + elif isinstance(obj, decimal.Decimal): if obj.as_tuple().exponent >= 0: return int(obj) return float(obj) @@ -431,7 +430,7 @@ class PathParameter(ParameterBase, StyleSimpleSerializer): def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] + Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -536,7 +535,7 @@ class QueryParameter(ParameterBase, StyleFormSerializer): def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict], + Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], prefix_separator_iterator: typing.Optional[PrefixSeparatorIterator] = None ) -> typing.Dict[str, str]: if cls.schema: @@ -592,7 +591,7 @@ class CookieParameter(ParameterBase, StyleFormSerializer): def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] + Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -646,7 +645,7 @@ class HeaderParameterWithoutName(ParameterBase, StyleSimpleSerializer): def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict], + Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], name: str ) -> HTTPHeaderDict: if cls.schema: @@ -699,7 +698,7 @@ class HeaderParameter(HeaderParameterWithoutName): def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] + Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> HTTPHeaderDict: return super().serialize( in_data, diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/imports_schema_types.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/imports_schema_types.handlebars index 522c8f2c93b..2afa2ac72bb 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/imports_schema_types.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/imports_schema_types.handlebars @@ -1,4 +1,4 @@ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/new.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/new.handlebars index 4a63e3b3b78..881745dbd9d 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/new.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/new.handlebars @@ -52,7 +52,7 @@ def __new__( {{/unless}} {{else}} {{#or isMap isAnyType}} - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[{{> types_all_incl_schema_oneline }}], {{/or}} {{/with}} ) -> '{{name.getCamelCaseName}}': diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/schema_python_types.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/schema_python_types.handlebars index 613e5861302..0f77aa40655 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/schema_python_types.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/schema_python_types.handlebars @@ -1 +1 @@ -{{#if isAnyType}}dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, {{/if}}{{#if isArray}}list, tuple, {{/if}}{{#if isMap}}dict, frozendict.frozendict, {{/if}}{{#if isNull}}None, {{/if}}{{#if isString }}{{#neq format "binary"}}str, {{/neq}}{{#eq format "date"}}date, {{/eq}}{{#eq format "date-time"}}datetime, {{/eq}}{{#eq format "uuid"}}uuid.UUID, {{/eq}}{{#eq format "binary"}}bytes, io.FileIO, io.BufferedReader, {{/eq}}{{/if}}{{#if isInteger}}decimal.Decimal, int, {{/if}}{{#if isNumber}}decimal.Decimal, int, float, {{/if}}{{#if isBoolean}}bool, {{/if}} \ No newline at end of file +{{#if isAnyType}}dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, {{/if}}{{#if isArray}}list, tuple, {{/if}}{{#if isMap}}dict, frozendict.frozendict, {{/if}}{{#if isNull}}None, {{/if}}{{#if isString }}{{#neq format "binary"}}str, {{/neq}}{{#eq format "date"}}datetime.date, {{/eq}}{{#eq format "date-time"}}datetime.datetime, {{/eq}}{{#eq format "uuid"}}uuid.UUID, {{/eq}}{{#eq format "binary"}}bytes, io.FileIO, io.BufferedReader, {{/eq}}{{/if}}{{#if isInteger}}decimal.Decimal, int, {{/if}}{{#if isNumber}}decimal.Decimal, int, float, {{/if}}{{#if isBoolean}}bool, {{/if}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/response.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/response.handlebars index 8b043c610b0..4de5979ab39 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/response.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/response.handlebars @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/schema_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/schema_doc.handlebars index fae57de21d0..3af6358dac4 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/schema_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/schema_doc.handlebars @@ -27,7 +27,7 @@ Key | Input Type | Accessed Type | Description | Notes {{/if}} {{/unless}} {{else}} -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | {{> types_all_incl_schema_oneline }} | {{> types_all_accessed }} | any string name can be used but the value must be the correct type | [optional] {{/with}} {{/or}} {{#each requiredProperties}} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars index 05305ee3dd8..3dae78ff3a8 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars @@ -3,7 +3,7 @@ {{>partial_header}} from collections import defaultdict -from datetime import date, datetime, timedelta # noqa: F401 +import datetime import functools import decimal import io @@ -687,12 +687,12 @@ class CustomIsoparser(isoparser): if len(components) > 3 and components[3] == 24: components[3] = 0 - return datetime(*components) + timedelta(days=1) + return datetime.datetime(*components) + datetime.timedelta(days=1) if len(components) <= 3: raise ValueError('Value is not a datetime') - return datetime(*components) + return datetime.datetime(*components) @_takes_ascii def parse_isodate(self, datestr): @@ -704,7 +704,7 @@ class CustomIsoparser(isoparser): if len(components) > 3: raise ValueError('String contains invalid time components') - return date(*components) + return datetime.date(*components) DEFAULT_ISOPARSER = CustomIsoparser() @@ -1422,7 +1422,7 @@ class Schema: items = cls._get_items_oapg(arg, path_to_item, path_to_schemas) return super(Schema, cls).__new__(cls, items) """ - str = openapi str, date, and datetime + str = openapi str, datetime.date, and datetime.datetime decimal.Decimal = openapi int and float FileIO = openapi binary type and the user inputs a file bytes = openapi binary type and the user inputs bytes @@ -1483,35 +1483,11 @@ class Schema: def __new__( cls, *_args: typing.Union[ - dict, - frozendict.frozendict, - list, - tuple, - decimal.Decimal, - float, - int, - str, - date, - datetime, - bool, - None, - 'Schema' + {{> types_all_incl_schema }} ], _configuration: typing.Optional[Configuration] = None, **kwargs: typing.Union[ - dict, - frozendict.frozendict, - list, - tuple, - decimal.Decimal, - float, - int, - str, - date, - datetime, - bool, - None, - 'Schema', + {{> types_all_incl_schema }} Unset ] ): @@ -1557,10 +1533,10 @@ class Schema: def __init__( self, *_args: typing.Union[ - dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, 'Schema'], + dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema'], _configuration: typing.Optional[Configuration] = None, **kwargs: typing.Union[ - dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, 'Schema', Unset + dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema', Unset ] ): """ @@ -1907,11 +1883,11 @@ class StrBase: return self @property - def as_date_oapg(self) -> date: + def as_date_oapg(self) -> datetime.date: raise Exception('not implemented') @property - def as_datetime_oapg(self) -> datetime: + def as_datetime_oapg(self) -> datetime.datetime: raise Exception('not implemented') @property @@ -1933,14 +1909,14 @@ class UUIDBase: class DateBase: @property @functools.lru_cache() - def as_date_oapg(self) -> date: + def as_date_oapg(self) -> datetime.date: return DEFAULT_ISOPARSER.parse_isodate(self) class DateTimeBase: @property @functools.lru_cache() - def as_datetime_oapg(self) -> datetime: + def as_datetime_oapg(self) -> datetime.datetime: return DEFAULT_ISOPARSER.parse_isodatetime(self) @@ -2076,12 +2052,16 @@ class DictBase: def cast_to_allowed_types( - arg: typing.Union[str, date, datetime, uuid.UUID, decimal.Decimal, int, float, None, dict, frozendict.frozendict, list, tuple, bytes, Schema, io.FileIO, io.BufferedReader], + arg: typing.Union[ + {{> types_all_incl_schema }} + ], from_server: bool, validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Union['Schema', str, decimal.Decimal, BoolClass, NoneClass, frozendict.frozendict, tuple]]], path_to_item: typing.Tuple[typing.Union[str, int], ...], path_to_type: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Type] -) -> typing.Union[frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO]: +) -> typing.Union[ + {{> types_all_accessed }} +]: """ Casts the input payload arg into the allowed types The input validated_path_to_schemas is mutated by running this function @@ -2170,7 +2150,7 @@ def cast_to_allowed_types( elif isinstance(arg, (none_type, NoneClass)): path_to_type[path_to_item] = NoneClass return NoneClass.NONE - elif isinstance(arg, (date, datetime)): + elif isinstance(arg, (datetime.date, datetime.datetime)): path_to_type[path_to_item] = str if not from_server: return arg.isoformat() @@ -2325,7 +2305,7 @@ class StrSchema( def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[Configuration] = None) -> 'StrSchema': return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[str, date, datetime, uuid.UUID], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2352,7 +2332,7 @@ class DateTimeSchema(DateTimeBase, StrSchema): types = {str} format = 'date-time' - def __new__(cls, _arg: typing.Union[str, datetime], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2502,7 +2482,7 @@ class DictSchema( def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): + def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date.datetime, datetime.datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): return super().__new__(cls, *_args, **kwargs) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/types_all_accessed.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_accessed.handlebars new file mode 100644 index 00000000000..5cc59a2beef --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_accessed.handlebars @@ -0,0 +1,8 @@ +frozendict.frozendict, +tuple, +decimal.Decimal, +str, +bytes, +BoolClass, +NoneClass, +FileIO \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/types_all_accessed_oneline.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_accessed_oneline.handlebars new file mode 100644 index 00000000000..2a3aad22e54 --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_accessed_oneline.handlebars @@ -0,0 +1 @@ +frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema.handlebars new file mode 100644 index 00000000000..d79304a46ed --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema.handlebars @@ -0,0 +1,16 @@ +dict, +frozendict.frozendict, +list, +tuple, +decimal.Decimal, +float, +int, +str, +datetime.date, +datetime.datetime, +uuid.UUID, +bool, +None, +io.FileIO, +io.BufferedReader, +'Schema', \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema_oneline.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema_oneline.handlebars new file mode 100644 index 00000000000..b2b60b89b40 --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema_oneline.handlebars @@ -0,0 +1 @@ +dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema \ No newline at end of file From 63ca947bff207ac3b417d86a6db8ad1c8dd3c1c3 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 29 Dec 2022 14:03:34 -0800 Subject: [PATCH 2/5] Template and petstore update --- .../resources/python/api_client.handlebars | 169 +++++++------- .../resources/python/schema_doc.handlebars | 2 +- .../main/resources/python/schemas.handlebars | 148 ++++++------ .../python/.openapi-generator/VERSION | 2 +- .../docs/apis/tags/default_api/foo_get.md | 2 +- .../apis/tags/fake_api/endpoint_parameters.md | 6 +- .../apis/tags/fake_api/enum_parameters.md | 2 +- .../apis/tags/fake_api/inline_composition.md | 24 +- .../docs/apis/tags/fake_api/json_form_data.md | 2 +- .../apis/tags/fake_api/json_with_charset.md | 4 +- .../apis/tags/fake_api/object_in_query.md | 2 +- .../tags/fake_api/parameter_collisions.md | 4 +- .../query_param_with_json_content_type.md | 4 +- .../docs/apis/tags/fake_api/upload_file.md | 2 +- .../docs/apis/tags/fake_api/upload_files.md | 2 +- .../apis/tags/pet_api/update_pet_with_form.md | 2 +- .../pet_api/upload_file_with_required_file.md | 2 +- .../docs/apis/tags/pet_api/upload_image.md | 2 +- .../docs/apis/tags/user_api/login_user.md | 2 +- .../schema/_200_response._200Response.md | 4 +- .../docs/components/schema/_return._Return.md | 4 +- ...stract_step_message.AbstractStepMessage.md | 6 +- ...perties_class.AdditionalPropertiesClass.md | 6 +- ...validator.AdditionalPropertiesValidator.md | 6 +- .../docs/components/schema/animal.Animal.md | 2 +- .../any_type_and_format.AnyTypeAndFormat.md | 20 +- .../any_type_not_string.AnyTypeNotString.md | 2 +- .../schema/api_response.ApiResponse.md | 2 +- .../docs/components/schema/apple.Apple.md | 2 +- ...ay_holding_any_type.ArrayHoldingAnyType.md | 2 +- ...of_number_only.ArrayOfArrayOfNumberOnly.md | 2 +- .../array_of_number_only.ArrayOfNumberOnly.md | 2 +- .../components/schema/array_test.ArrayTest.md | 2 +- .../docs/components/schema/banana.Banana.md | 2 +- .../components/schema/basque_pig.BasquePig.md | 2 +- .../schema/capitalization.Capitalization.md | 2 +- .../python/docs/components/schema/cat.Cat.md | 4 +- .../components/schema/category.Category.md | 2 +- .../components/schema/child_cat.ChildCat.md | 4 +- .../schema/class_model.ClassModel.md | 4 +- .../docs/components/schema/client.Client.md | 2 +- ...plex_quadrilateral.ComplexQuadrilateral.md | 4 +- ...omposedAnyOfDifferentTypesNoValidations.md | 12 +- .../schema/composed_array.ComposedArray.md | 2 +- .../schema/composed_bool.ComposedBool.md | 4 +- .../schema/composed_none.ComposedNone.md | 4 +- .../schema/composed_number.ComposedNumber.md | 4 +- .../schema/composed_object.ComposedObject.md | 4 +- ...erent_types.ComposedOneOfDifferentTypes.md | 12 +- .../schema/composed_string.ComposedString.md | 4 +- .../components/schema/danish_pig.DanishPig.md | 2 +- .../schema/date_time_test.DateTimeTest.md | 2 +- ...ith_validations.DateTimeWithValidations.md | 2 +- ...te_with_validations.DateWithValidations.md | 2 +- .../python/docs/components/schema/dog.Dog.md | 4 +- .../schema/enum_arrays.EnumArrays.md | 2 +- .../components/schema/enum_test.EnumTest.md | 2 +- ...quilateral_triangle.EquilateralTriangle.md | 4 +- .../docs/components/schema/file.File.md | 2 +- ...e_schema_test_class.FileSchemaTestClass.md | 2 +- .../python/docs/components/schema/foo.Foo.md | 2 +- .../schema/format_test.FormatTest.md | 6 +- .../schema/from_schema.FromSchema.md | 2 +- .../docs/components/schema/fruit.Fruit.md | 4 +- .../components/schema/fruit_req.FruitReq.md | 2 +- .../components/schema/gm_fruit.GmFruit.md | 4 +- .../grandparent_animal.GrandparentAnimal.md | 2 +- .../has_only_read_only.HasOnlyReadOnly.md | 2 +- .../health_check_result.HealthCheckResult.md | 2 +- .../isosceles_triangle.IsoscelesTriangle.md | 4 +- .../json_patch_request.JSONPatchRequest.md | 4 +- ...ace_test.JSONPatchRequestAddReplaceTest.md | 2 +- .../docs/components/schema/mammal.Mammal.md | 2 +- .../components/schema/map_test.MapTest.md | 2 +- ...dPropertiesAndAdditionalPropertiesClass.md | 4 +- .../docs/components/schema/money.Money.md | 2 +- .../docs/components/schema/name.Name.md | 4 +- .../schema/nullable_class.NullableClass.md | 4 +- .../schema/nullable_shape.NullableShape.md | 2 +- .../schema/number_only.NumberOnly.md | 2 +- ...ies.ObjectModelWithArgAndArgsProperties.md | 2 +- ..._with_ref_props.ObjectModelWithRefProps.md | 2 +- ...ithAllOfWithReqTestPropFromUnsetAddProp.md | 6 +- ..._properties.ObjectWithDecimalProperties.md | 2 +- ...d_props.ObjectWithDifficultlyNamedProps.md | 2 +- ...rty.ObjectWithInlineCompositionProperty.md | 6 +- ...s.ObjectWithInvalidNamedRefedProperties.md | 2 +- ...al_test_prop.ObjectWithOptionalTestProp.md | 2 +- .../docs/components/schema/order.Order.md | 4 +- .../python/docs/components/schema/pet.Pet.md | 2 +- .../python/docs/components/schema/pig.Pig.md | 2 +- .../docs/components/schema/player.Player.md | 2 +- .../schema/quadrilateral.Quadrilateral.md | 2 +- ...ateral_interface.QuadrilateralInterface.md | 4 +- .../schema/read_only_first.ReadOnlyFirst.md | 2 +- ...true_add_props.ReqPropsFromTrueAddProps.md | 6 +- ...set_add_props.ReqPropsFromUnsetAddProps.md | 6 +- .../scalene_triangle.ScaleneTriangle.md | 4 +- .../docs/components/schema/shape.Shape.md | 2 +- .../schema/shape_or_null.ShapeOrNull.md | 2 +- ...imple_quadrilateral.SimpleQuadrilateral.md | 4 +- .../schema/some_object.SomeObject.md | 2 +- .../special_model_name.SpecialModelName.md | 2 +- .../python/docs/components/schema/tag.Tag.md | 2 +- .../components/schema/triangle.Triangle.md | 2 +- .../triangle_interface.TriangleInterface.md | 4 +- .../docs/components/schema/user.User.md | 10 +- .../docs/components/schema/whale.Whale.md | 2 +- .../docs/components/schema/zebra.Zebra.md | 2 +- .../python/petstore_api/api_client.py | 176 +++++++------- .../application_json.py | 2 +- .../application_json.pyi | 2 +- .../headers/header_number_header/schema.py | 2 +- .../headers/header_number_header/schema.pyi | 2 +- .../headers/header_string_header/schema.py | 2 +- .../headers/header_string_header/schema.pyi | 2 +- .../parameter_path_user_name/schema.py | 2 +- .../parameter_path_user_name/schema.pyi | 2 +- .../application_json.py | 2 +- .../application_json.pyi | 2 +- .../__init__.py | 2 +- .../__init__.py | 2 +- .../application_json.py | 2 +- .../application_json.pyi | 2 +- .../header_some_header/schema.py | 2 +- .../header_some_header/schema.pyi | 2 +- .../__init__.py | 2 +- .../components/schema/_200_response.py | 6 +- .../components/schema/_200_response.pyi | 6 +- .../petstore_api/components/schema/_return.py | 6 +- .../components/schema/_return.pyi | 6 +- .../schema/abstract_step_message.py | 8 +- .../schema/abstract_step_message.pyi | 8 +- .../schema/additional_properties_class.py | 8 +- .../schema/additional_properties_class.pyi | 8 +- .../schema/additional_properties_validator.py | 18 +- .../additional_properties_validator.pyi | 18 +- ...ditional_properties_with_array_of_enums.py | 2 +- ...itional_properties_with_array_of_enums.pyi | 2 +- .../petstore_api/components/schema/address.py | 2 +- .../components/schema/address.pyi | 2 +- .../petstore_api/components/schema/animal.py | 4 +- .../petstore_api/components/schema/animal.pyi | 4 +- .../components/schema/animal_farm.py | 2 +- .../components/schema/animal_farm.pyi | 2 +- .../components/schema/any_type_and_format.py | 54 ++--- .../components/schema/any_type_and_format.pyi | 54 ++--- .../components/schema/any_type_not_string.py | 6 +- .../components/schema/any_type_not_string.pyi | 6 +- .../components/schema/api_response.py | 4 +- .../components/schema/api_response.pyi | 4 +- .../petstore_api/components/schema/apple.py | 4 +- .../petstore_api/components/schema/apple.pyi | 4 +- .../components/schema/apple_req.py | 2 +- .../components/schema/apple_req.pyi | 2 +- .../schema/array_holding_any_type.py | 4 +- .../schema/array_holding_any_type.pyi | 4 +- .../schema/array_of_array_of_number_only.py | 4 +- .../schema/array_of_array_of_number_only.pyi | 4 +- .../components/schema/array_of_enums.py | 2 +- .../components/schema/array_of_enums.pyi | 2 +- .../components/schema/array_of_number_only.py | 4 +- .../schema/array_of_number_only.pyi | 4 +- .../components/schema/array_test.py | 4 +- .../components/schema/array_test.pyi | 4 +- .../schema/array_with_validations_in_items.py | 2 +- .../array_with_validations_in_items.pyi | 2 +- .../petstore_api/components/schema/banana.py | 4 +- .../petstore_api/components/schema/banana.pyi | 4 +- .../components/schema/banana_req.py | 2 +- .../components/schema/banana_req.pyi | 2 +- .../petstore_api/components/schema/bar.py | 2 +- .../petstore_api/components/schema/bar.pyi | 2 +- .../components/schema/basque_pig.py | 4 +- .../components/schema/basque_pig.pyi | 4 +- .../petstore_api/components/schema/boolean.py | 2 +- .../components/schema/boolean.pyi | 2 +- .../components/schema/boolean_enum.py | 2 +- .../components/schema/boolean_enum.pyi | 2 +- .../components/schema/capitalization.py | 4 +- .../components/schema/capitalization.pyi | 4 +- .../petstore_api/components/schema/cat.py | 8 +- .../petstore_api/components/schema/cat.pyi | 8 +- .../components/schema/category.py | 4 +- .../components/schema/category.pyi | 4 +- .../components/schema/child_cat.py | 8 +- .../components/schema/child_cat.pyi | 8 +- .../components/schema/class_model.py | 6 +- .../components/schema/class_model.pyi | 6 +- .../petstore_api/components/schema/client.py | 4 +- .../petstore_api/components/schema/client.pyi | 4 +- .../schema/complex_quadrilateral.py | 8 +- .../schema/complex_quadrilateral.pyi | 8 +- ...d_any_of_different_types_no_validations.py | 8 +- ..._any_of_different_types_no_validations.pyi | 8 +- .../components/schema/composed_array.py | 4 +- .../components/schema/composed_array.pyi | 4 +- .../components/schema/composed_bool.py | 2 +- .../components/schema/composed_bool.pyi | 2 +- .../components/schema/composed_none.py | 2 +- .../components/schema/composed_none.pyi | 2 +- .../components/schema/composed_number.py | 2 +- .../components/schema/composed_number.pyi | 2 +- .../components/schema/composed_object.py | 4 +- .../components/schema/composed_object.pyi | 4 +- .../schema/composed_one_of_different_types.py | 10 +- .../composed_one_of_different_types.pyi | 10 +- .../components/schema/composed_string.py | 2 +- .../components/schema/composed_string.pyi | 2 +- .../components/schema/currency.py | 2 +- .../components/schema/currency.pyi | 2 +- .../components/schema/danish_pig.py | 4 +- .../components/schema/danish_pig.pyi | 4 +- .../components/schema/date_time_test.py | 2 +- .../components/schema/date_time_test.pyi | 2 +- .../schema/date_time_with_validations.py | 2 +- .../schema/date_time_with_validations.pyi | 2 +- .../schema/date_with_validations.py | 2 +- .../schema/date_with_validations.pyi | 2 +- .../components/schema/decimal_payload.py | 2 +- .../components/schema/decimal_payload.pyi | 2 +- .../petstore_api/components/schema/dog.py | 8 +- .../petstore_api/components/schema/dog.pyi | 8 +- .../petstore_api/components/schema/drawing.py | 2 +- .../components/schema/drawing.pyi | 2 +- .../components/schema/enum_arrays.py | 4 +- .../components/schema/enum_arrays.pyi | 4 +- .../components/schema/enum_class.py | 2 +- .../components/schema/enum_class.pyi | 2 +- .../components/schema/enum_test.py | 4 +- .../components/schema/enum_test.pyi | 4 +- .../components/schema/equilateral_triangle.py | 8 +- .../schema/equilateral_triangle.pyi | 8 +- .../petstore_api/components/schema/file.py | 4 +- .../petstore_api/components/schema/file.pyi | 4 +- .../schema/file_schema_test_class.py | 4 +- .../schema/file_schema_test_class.pyi | 4 +- .../petstore_api/components/schema/foo.py | 4 +- .../petstore_api/components/schema/foo.pyi | 4 +- .../components/schema/format_test.py | 8 +- .../components/schema/format_test.pyi | 8 +- .../components/schema/from_schema.py | 4 +- .../components/schema/from_schema.pyi | 4 +- .../petstore_api/components/schema/fruit.py | 6 +- .../petstore_api/components/schema/fruit.pyi | 6 +- .../components/schema/fruit_req.py | 6 +- .../components/schema/fruit_req.pyi | 6 +- .../components/schema/gm_fruit.py | 6 +- .../components/schema/gm_fruit.pyi | 6 +- .../components/schema/grandparent_animal.py | 4 +- .../components/schema/grandparent_animal.pyi | 4 +- .../components/schema/has_only_read_only.py | 4 +- .../components/schema/has_only_read_only.pyi | 4 +- .../components/schema/health_check_result.py | 4 +- .../components/schema/health_check_result.pyi | 4 +- .../components/schema/integer_enum.py | 2 +- .../components/schema/integer_enum.pyi | 2 +- .../components/schema/integer_enum_big.py | 2 +- .../components/schema/integer_enum_big.pyi | 2 +- .../schema/integer_enum_one_value.py | 2 +- .../schema/integer_enum_one_value.pyi | 2 +- .../schema/integer_enum_with_default_value.py | 2 +- .../integer_enum_with_default_value.pyi | 2 +- .../components/schema/integer_max10.py | 2 +- .../components/schema/integer_max10.pyi | 2 +- .../components/schema/integer_min15.py | 2 +- .../components/schema/integer_min15.pyi | 2 +- .../components/schema/isosceles_triangle.py | 8 +- .../components/schema/isosceles_triangle.pyi | 8 +- .../components/schema/json_patch_request.py | 8 +- .../components/schema/json_patch_request.pyi | 8 +- .../json_patch_request_add_replace_test.py | 4 +- .../json_patch_request_add_replace_test.pyi | 4 +- .../schema/json_patch_request_move_copy.py | 2 +- .../schema/json_patch_request_move_copy.pyi | 2 +- .../schema/json_patch_request_remove.py | 2 +- .../schema/json_patch_request_remove.pyi | 2 +- .../petstore_api/components/schema/mammal.py | 6 +- .../petstore_api/components/schema/mammal.pyi | 6 +- .../components/schema/map_test.py | 4 +- .../components/schema/map_test.pyi | 4 +- ...perties_and_additional_properties_class.py | 6 +- ...erties_and_additional_properties_class.pyi | 6 +- .../petstore_api/components/schema/money.py | 4 +- .../petstore_api/components/schema/money.pyi | 4 +- .../petstore_api/components/schema/name.py | 6 +- .../petstore_api/components/schema/name.pyi | 6 +- .../schema/no_additional_properties.py | 2 +- .../schema/no_additional_properties.pyi | 2 +- .../components/schema/nullable_class.py | 20 +- .../components/schema/nullable_class.pyi | 20 +- .../components/schema/nullable_shape.py | 6 +- .../components/schema/nullable_shape.pyi | 6 +- .../components/schema/nullable_string.py | 2 +- .../components/schema/nullable_string.pyi | 2 +- .../petstore_api/components/schema/number.py | 2 +- .../petstore_api/components/schema/number.pyi | 2 +- .../components/schema/number_only.py | 4 +- .../components/schema/number_only.pyi | 4 +- .../schema/number_with_validations.py | 2 +- .../schema/number_with_validations.pyi | 2 +- .../components/schema/object_interface.py | 2 +- .../components/schema/object_interface.pyi | 2 +- ...ject_model_with_arg_and_args_properties.py | 4 +- ...ect_model_with_arg_and_args_properties.pyi | 4 +- .../schema/object_model_with_ref_props.py | 4 +- .../schema/object_model_with_ref_props.pyi | 4 +- ..._with_req_test_prop_from_unset_add_prop.py | 10 +- ...with_req_test_prop_from_unset_add_prop.pyi | 10 +- .../schema/object_with_decimal_properties.py | 4 +- .../schema/object_with_decimal_properties.pyi | 4 +- .../object_with_difficultly_named_props.py | 4 +- .../object_with_difficultly_named_props.pyi | 4 +- ...object_with_inline_composition_property.py | 10 +- ...bject_with_inline_composition_property.pyi | 10 +- ...ect_with_invalid_named_refed_properties.py | 4 +- ...ct_with_invalid_named_refed_properties.pyi | 4 +- .../schema/object_with_optional_test_prop.py | 4 +- .../schema/object_with_optional_test_prop.pyi | 4 +- .../schema/object_with_validations.py | 4 +- .../schema/object_with_validations.pyi | 4 +- .../petstore_api/components/schema/order.py | 6 +- .../petstore_api/components/schema/order.pyi | 6 +- .../components/schema/parent_pet.py | 4 +- .../components/schema/parent_pet.pyi | 4 +- .../petstore_api/components/schema/pet.py | 4 +- .../petstore_api/components/schema/pet.pyi | 4 +- .../petstore_api/components/schema/pig.py | 6 +- .../petstore_api/components/schema/pig.pyi | 6 +- .../petstore_api/components/schema/player.py | 4 +- .../petstore_api/components/schema/player.pyi | 4 +- .../components/schema/quadrilateral.py | 6 +- .../components/schema/quadrilateral.pyi | 6 +- .../schema/quadrilateral_interface.py | 6 +- .../schema/quadrilateral_interface.pyi | 6 +- .../components/schema/read_only_first.py | 4 +- .../components/schema/read_only_first.pyi | 4 +- .../req_props_from_explicit_add_props.py | 2 +- .../req_props_from_explicit_add_props.pyi | 2 +- .../schema/req_props_from_true_add_props.py | 6 +- .../schema/req_props_from_true_add_props.pyi | 6 +- .../schema/req_props_from_unset_add_props.py | 6 +- .../schema/req_props_from_unset_add_props.pyi | 6 +- .../components/schema/scalene_triangle.py | 8 +- .../components/schema/scalene_triangle.pyi | 8 +- .../schema/self_referencing_array_model.py | 2 +- .../schema/self_referencing_array_model.pyi | 2 +- .../schema/self_referencing_object_model.py | 2 +- .../schema/self_referencing_object_model.pyi | 2 +- .../petstore_api/components/schema/shape.py | 6 +- .../petstore_api/components/schema/shape.pyi | 6 +- .../components/schema/shape_or_null.py | 6 +- .../components/schema/shape_or_null.pyi | 6 +- .../components/schema/simple_quadrilateral.py | 8 +- .../schema/simple_quadrilateral.pyi | 8 +- .../components/schema/some_object.py | 6 +- .../components/schema/some_object.pyi | 6 +- .../components/schema/special_model_name.py | 4 +- .../components/schema/special_model_name.pyi | 4 +- .../petstore_api/components/schema/string.py | 2 +- .../petstore_api/components/schema/string.pyi | 2 +- .../components/schema/string_boolean_map.py | 2 +- .../components/schema/string_boolean_map.pyi | 2 +- .../components/schema/string_enum.py | 2 +- .../components/schema/string_enum.pyi | 2 +- .../schema/string_enum_with_default_value.py | 2 +- .../schema/string_enum_with_default_value.pyi | 2 +- .../schema/string_with_validation.py | 2 +- .../schema/string_with_validation.pyi | 2 +- .../petstore_api/components/schema/tag.py | 4 +- .../petstore_api/components/schema/tag.pyi | 4 +- .../components/schema/triangle.py | 6 +- .../components/schema/triangle.pyi | 6 +- .../components/schema/triangle_interface.py | 6 +- .../components/schema/triangle_interface.pyi | 6 +- .../petstore_api/components/schema/user.py | 16 +- .../petstore_api/components/schema/user.pyi | 16 +- .../components/schema/uuid_string.py | 2 +- .../components/schema/uuid_string.pyi | 2 +- .../petstore_api/components/schema/whale.py | 4 +- .../petstore_api/components/schema/whale.pyi | 4 +- .../petstore_api/components/schema/zebra.py | 4 +- .../petstore_api/components/schema/zebra.pyi | 4 +- .../another_fake_dummy/patch/__init__.py | 2 +- .../another_fake_dummy/patch/__init__.pyi | 2 +- .../patch/response_for_200/__init__.py | 2 +- .../paths/fake/delete/__init__.py | 2 +- .../paths/fake/delete/__init__.pyi | 2 +- .../paths/fake/delete/parameter_0/schema.py | 2 +- .../paths/fake/delete/parameter_0/schema.pyi | 2 +- .../paths/fake/delete/parameter_1/schema.py | 2 +- .../paths/fake/delete/parameter_1/schema.pyi | 2 +- .../paths/fake/delete/parameter_2/schema.py | 2 +- .../paths/fake/delete/parameter_2/schema.pyi | 2 +- .../paths/fake/delete/parameter_3/schema.py | 2 +- .../paths/fake/delete/parameter_3/schema.pyi | 2 +- .../paths/fake/delete/parameter_4/schema.py | 2 +- .../paths/fake/delete/parameter_4/schema.pyi | 2 +- .../paths/fake/delete/parameter_5/schema.py | 2 +- .../paths/fake/delete/parameter_5/schema.pyi | 2 +- .../petstore_api/paths/fake/get/__init__.py | 2 +- .../petstore_api/paths/fake/get/__init__.pyi | 2 +- .../paths/fake/get/parameter_0/schema.py | 2 +- .../paths/fake/get/parameter_0/schema.pyi | 2 +- .../paths/fake/get/parameter_1/schema.py | 2 +- .../paths/fake/get/parameter_1/schema.pyi | 2 +- .../paths/fake/get/parameter_2/schema.py | 2 +- .../paths/fake/get/parameter_2/schema.pyi | 2 +- .../paths/fake/get/parameter_3/schema.py | 2 +- .../paths/fake/get/parameter_3/schema.pyi | 2 +- .../paths/fake/get/parameter_4/schema.py | 2 +- .../paths/fake/get/parameter_4/schema.pyi | 2 +- .../paths/fake/get/parameter_5/schema.py | 2 +- .../paths/fake/get/parameter_5/schema.pyi | 2 +- .../application_x_www_form_urlencoded.py | 4 +- .../application_x_www_form_urlencoded.pyi | 4 +- .../fake/get/response_for_404/__init__.py | 2 +- .../get/response_for_404/application_json.py | 2 +- .../get/response_for_404/application_json.pyi | 2 +- .../petstore_api/paths/fake/patch/__init__.py | 2 +- .../paths/fake/patch/__init__.pyi | 2 +- .../fake/patch/response_for_200/__init__.py | 2 +- .../petstore_api/paths/fake/post/__init__.py | 2 +- .../petstore_api/paths/fake/post/__init__.pyi | 2 +- .../application_x_www_form_urlencoded.py | 8 +- .../application_x_www_form_urlencoded.pyi | 8 +- .../fake/post/response_for_404/__init__.py | 2 +- .../get/__init__.py | 2 +- .../get/__init__.pyi | 2 +- .../get/response_for_200/__init__.py | 2 +- .../put/__init__.py | 2 +- .../put/__init__.pyi | 2 +- .../put/__init__.py | 2 +- .../put/__init__.pyi | 2 +- .../put/parameter_0/schema.py | 2 +- .../put/parameter_0/schema.pyi | 2 +- .../put/__init__.py | 2 +- .../put/__init__.pyi | 2 +- .../put/parameter_0/schema.py | 2 +- .../put/parameter_0/schema.pyi | 2 +- .../put/parameter_1/schema.py | 2 +- .../put/parameter_1/schema.pyi | 2 +- .../put/parameter_2/schema.py | 2 +- .../put/parameter_2/schema.pyi | 2 +- .../fake_classname_test/patch/__init__.py | 2 +- .../fake_classname_test/patch/__init__.pyi | 2 +- .../patch/response_for_200/__init__.py | 2 +- .../fake_delete_coffee_id/delete/__init__.py | 2 +- .../fake_delete_coffee_id/delete/__init__.pyi | 2 +- .../delete/parameter_0/schema.py | 2 +- .../delete/parameter_0/schema.pyi | 2 +- .../delete/response_for_default/__init__.py | 2 +- .../paths/fake_health/get/__init__.py | 2 +- .../paths/fake_health/get/__init__.pyi | 2 +- .../get/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/request_body/application_json.py | 2 +- .../post/request_body/application_json.pyi | 2 +- .../fake_inline_composition/post/__init__.py | 34 +-- .../fake_inline_composition/post/__init__.pyi | 34 +-- .../post/parameter_0/schema.py | 6 +- .../post/parameter_0/schema.pyi | 6 +- .../post/parameter_1/schema.py | 10 +- .../post/parameter_1/schema.pyi | 10 +- .../post/request_body/application_json.py | 6 +- .../post/request_body/application_json.pyi | 6 +- .../post/request_body/multipart_form_data.py | 10 +- .../post/request_body/multipart_form_data.pyi | 10 +- .../post/response_for_200/__init__.py | 2 +- .../post/response_for_200/application_json.py | 6 +- .../response_for_200/application_json.pyi | 6 +- .../response_for_200/multipart_form_data.py | 10 +- .../response_for_200/multipart_form_data.pyi | 10 +- .../paths/fake_json_form_data/get/__init__.py | 2 +- .../fake_json_form_data/get/__init__.pyi | 2 +- .../application_x_www_form_urlencoded.py | 4 +- .../application_x_www_form_urlencoded.pyi | 4 +- .../paths/fake_json_patch/patch/__init__.py | 2 +- .../paths/fake_json_patch/patch/__init__.pyi | 2 +- .../fake_json_with_charset/post/__init__.py | 32 +-- .../fake_json_with_charset/post/__init__.pyi | 32 +-- .../application_json_charsetutf8.py | 2 +- .../application_json_charsetutf8.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../application_json_charsetutf8.py | 2 +- .../application_json_charsetutf8.pyi | 2 +- .../paths/fake_obj_in_query/get/__init__.py | 2 +- .../paths/fake_obj_in_query/get/__init__.pyi | 2 +- .../get/parameter_0/schema.py | 4 +- .../get/parameter_0/schema.pyi | 4 +- .../post/__init__.py | 32 +-- .../post/__init__.pyi | 32 +-- .../post/parameter_0/schema.py | 2 +- .../post/parameter_0/schema.pyi | 2 +- .../post/parameter_1/schema.py | 2 +- .../post/parameter_1/schema.pyi | 2 +- .../post/parameter_10/schema.py | 2 +- .../post/parameter_10/schema.pyi | 2 +- .../post/parameter_11/schema.py | 2 +- .../post/parameter_11/schema.pyi | 2 +- .../post/parameter_12/schema.py | 2 +- .../post/parameter_12/schema.pyi | 2 +- .../post/parameter_13/schema.py | 2 +- .../post/parameter_13/schema.pyi | 2 +- .../post/parameter_14/schema.py | 2 +- .../post/parameter_14/schema.pyi | 2 +- .../post/parameter_15/schema.py | 2 +- .../post/parameter_15/schema.pyi | 2 +- .../post/parameter_16/schema.py | 2 +- .../post/parameter_16/schema.pyi | 2 +- .../post/parameter_17/schema.py | 2 +- .../post/parameter_17/schema.pyi | 2 +- .../post/parameter_18/schema.py | 2 +- .../post/parameter_18/schema.pyi | 2 +- .../post/parameter_2/schema.py | 2 +- .../post/parameter_2/schema.pyi | 2 +- .../post/parameter_3/schema.py | 2 +- .../post/parameter_3/schema.pyi | 2 +- .../post/parameter_4/schema.py | 2 +- .../post/parameter_4/schema.pyi | 2 +- .../post/parameter_5/schema.py | 2 +- .../post/parameter_5/schema.pyi | 2 +- .../post/parameter_6/schema.py | 2 +- .../post/parameter_6/schema.pyi | 2 +- .../post/parameter_7/schema.py | 2 +- .../post/parameter_7/schema.pyi | 2 +- .../post/parameter_8/schema.py | 2 +- .../post/parameter_8/schema.pyi | 2 +- .../post/parameter_9/schema.py | 2 +- .../post/parameter_9/schema.pyi | 2 +- .../post/request_body/application_json.py | 2 +- .../post/request_body/application_json.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/response_for_200/application_json.py | 2 +- .../response_for_200/application_json.pyi | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/parameter_0/schema.py | 2 +- .../post/parameter_0/schema.pyi | 2 +- .../post/request_body/multipart_form_data.py | 4 +- .../post/request_body/multipart_form_data.pyi | 4 +- .../post/response_for_200/__init__.py | 2 +- .../get/__init__.py | 4 +- .../get/__init__.pyi | 4 +- .../get/parameter_0/application_json.py | 2 +- .../get/parameter_0/application_json.pyi | 2 +- .../get/response_for_200/__init__.py | 2 +- .../get/response_for_200/application_json.py | 2 +- .../get/response_for_200/application_json.pyi | 2 +- .../fake_ref_obj_in_query/get/__init__.py | 2 +- .../fake_ref_obj_in_query/get/__init__.pyi | 2 +- .../fake_refs_array_of_enums/post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../fake_refs_arraymodel/post/__init__.py | 2 +- .../fake_refs_arraymodel/post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../paths/fake_refs_boolean/post/__init__.py | 2 +- .../paths/fake_refs_boolean/post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../paths/fake_refs_enum/post/__init__.py | 2 +- .../paths/fake_refs_enum/post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../paths/fake_refs_mammal/post/__init__.py | 2 +- .../paths/fake_refs_mammal/post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../paths/fake_refs_number/post/__init__.py | 2 +- .../paths/fake_refs_number/post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../paths/fake_refs_string/post/__init__.py | 2 +- .../paths/fake_refs_string/post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../get/__init__.py | 2 +- .../get/__init__.pyi | 2 +- .../get/response_for_200/__init__.py | 2 +- .../fake_test_query_paramters/put/__init__.py | 2 +- .../put/__init__.pyi | 2 +- .../put/parameter_0/schema.py | 2 +- .../put/parameter_0/schema.pyi | 2 +- .../put/parameter_1/schema.py | 2 +- .../put/parameter_1/schema.pyi | 2 +- .../put/parameter_2/schema.py | 2 +- .../put/parameter_2/schema.pyi | 2 +- .../put/parameter_3/schema.py | 2 +- .../put/parameter_3/schema.pyi | 2 +- .../put/parameter_4/schema.py | 2 +- .../put/parameter_4/schema.pyi | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../request_body/application_octet_stream.py | 2 +- .../request_body/application_octet_stream.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../application_octet_stream.py | 2 +- .../application_octet_stream.pyi | 2 +- .../paths/fake_upload_file/post/__init__.py | 2 +- .../paths/fake_upload_file/post/__init__.pyi | 2 +- .../post/request_body/multipart_form_data.py | 4 +- .../post/request_body/multipart_form_data.pyi | 4 +- .../post/response_for_200/__init__.py | 2 +- .../paths/fake_upload_files/post/__init__.py | 2 +- .../paths/fake_upload_files/post/__init__.pyi | 2 +- .../post/request_body/multipart_form_data.py | 4 +- .../post/request_body/multipart_form_data.pyi | 4 +- .../post/response_for_200/__init__.py | 2 +- .../petstore_api/paths/foo/get/__init__.py | 2 +- .../petstore_api/paths/foo/get/__init__.pyi | 2 +- .../foo/get/response_for_default/__init__.py | 2 +- .../response_for_default/application_json.py | 4 +- .../response_for_default/application_json.pyi | 4 +- .../petstore_api/paths/pet/post/__init__.py | 2 +- .../petstore_api/paths/pet/post/__init__.pyi | 2 +- .../pet/post/response_for_405/__init__.py | 2 +- .../petstore_api/paths/pet/put/__init__.py | 2 +- .../petstore_api/paths/pet/put/__init__.pyi | 2 +- .../pet/put/response_for_400/__init__.py | 2 +- .../pet/put/response_for_404/__init__.py | 2 +- .../pet/put/response_for_405/__init__.py | 2 +- .../paths/pet_find_by_status/get/__init__.py | 2 +- .../paths/pet_find_by_status/get/__init__.pyi | 2 +- .../get/parameter_0/schema.py | 2 +- .../get/parameter_0/schema.pyi | 2 +- .../get/response_for_200/__init__.py | 2 +- .../get/response_for_200/application_json.py | 2 +- .../get/response_for_200/application_json.pyi | 2 +- .../get/response_for_200/application_xml.py | 2 +- .../get/response_for_200/application_xml.pyi | 2 +- .../get/response_for_400/__init__.py | 2 +- .../paths/pet_find_by_tags/get/__init__.py | 2 +- .../paths/pet_find_by_tags/get/__init__.pyi | 2 +- .../get/parameter_0/schema.py | 2 +- .../get/parameter_0/schema.pyi | 2 +- .../get/response_for_200/__init__.py | 2 +- .../get/response_for_200/application_json.py | 2 +- .../get/response_for_200/application_json.pyi | 2 +- .../get/response_for_200/application_xml.py | 2 +- .../get/response_for_200/application_xml.pyi | 2 +- .../get/response_for_400/__init__.py | 2 +- .../paths/pet_pet_id/delete/__init__.py | 2 +- .../paths/pet_pet_id/delete/__init__.pyi | 2 +- .../pet_pet_id/delete/parameter_0/schema.py | 2 +- .../pet_pet_id/delete/parameter_0/schema.pyi | 2 +- .../pet_pet_id/delete/parameter_1/schema.py | 2 +- .../pet_pet_id/delete/parameter_1/schema.pyi | 2 +- .../delete/response_for_400/__init__.py | 2 +- .../paths/pet_pet_id/get/__init__.py | 2 +- .../paths/pet_pet_id/get/__init__.pyi | 2 +- .../pet_pet_id/get/parameter_0/schema.py | 2 +- .../pet_pet_id/get/parameter_0/schema.pyi | 2 +- .../get/response_for_200/__init__.py | 2 +- .../get/response_for_400/__init__.py | 2 +- .../get/response_for_404/__init__.py | 2 +- .../paths/pet_pet_id/post/__init__.py | 2 +- .../paths/pet_pet_id/post/__init__.pyi | 2 +- .../pet_pet_id/post/parameter_0/schema.py | 2 +- .../pet_pet_id/post/parameter_0/schema.pyi | 2 +- .../application_x_www_form_urlencoded.py | 4 +- .../application_x_www_form_urlencoded.pyi | 4 +- .../post/response_for_405/__init__.py | 2 +- .../pet_pet_id_upload_image/post/__init__.py | 2 +- .../pet_pet_id_upload_image/post/__init__.pyi | 2 +- .../post/parameter_0/schema.py | 2 +- .../post/parameter_0/schema.pyi | 2 +- .../post/request_body/multipart_form_data.py | 4 +- .../post/request_body/multipart_form_data.pyi | 4 +- .../paths/store_inventory/get/__init__.py | 2 +- .../paths/store_inventory/get/__init__.pyi | 2 +- .../paths/store_order/post/__init__.py | 2 +- .../paths/store_order/post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/response_for_400/__init__.py | 2 +- .../store_order_order_id/delete/__init__.py | 2 +- .../store_order_order_id/delete/__init__.pyi | 2 +- .../delete/parameter_0/schema.py | 2 +- .../delete/parameter_0/schema.pyi | 2 +- .../delete/response_for_400/__init__.py | 2 +- .../delete/response_for_404/__init__.py | 2 +- .../store_order_order_id/get/__init__.py | 2 +- .../store_order_order_id/get/__init__.pyi | 2 +- .../get/parameter_0/schema.py | 2 +- .../get/parameter_0/schema.pyi | 2 +- .../get/response_for_200/__init__.py | 2 +- .../get/response_for_400/__init__.py | 2 +- .../get/response_for_404/__init__.py | 2 +- .../petstore_api/paths/user/post/__init__.py | 2 +- .../petstore_api/paths/user/post/__init__.pyi | 2 +- .../post/response_for_default/__init__.py | 2 +- .../user_create_with_array/post/__init__.py | 2 +- .../user_create_with_array/post/__init__.pyi | 2 +- .../post/response_for_default/__init__.py | 2 +- .../user_create_with_list/post/__init__.py | 2 +- .../user_create_with_list/post/__init__.pyi | 2 +- .../post/response_for_default/__init__.py | 2 +- .../paths/user_login/get/__init__.py | 2 +- .../paths/user_login/get/__init__.pyi | 2 +- .../user_login/get/parameter_0/schema.py | 2 +- .../user_login/get/parameter_0/schema.pyi | 2 +- .../user_login/get/parameter_1/schema.py | 2 +- .../user_login/get/parameter_1/schema.pyi | 2 +- .../get/response_for_200/__init__.py | 4 +- .../get/response_for_200/application_json.py | 2 +- .../get/response_for_200/application_json.pyi | 2 +- .../get/response_for_200/application_xml.py | 2 +- .../get/response_for_200/application_xml.pyi | 2 +- .../header_x_expires_after/schema.py | 2 +- .../header_x_expires_after/schema.pyi | 2 +- .../header_x_rate_limit/application_json.py | 2 +- .../header_x_rate_limit/application_json.pyi | 2 +- .../get/response_for_400/__init__.py | 2 +- .../paths/user_logout/get/__init__.py | 2 +- .../paths/user_logout/get/__init__.pyi | 2 +- .../paths/user_username/delete/__init__.py | 2 +- .../paths/user_username/delete/__init__.pyi | 2 +- .../delete/response_for_404/__init__.py | 2 +- .../paths/user_username/get/__init__.py | 2 +- .../paths/user_username/get/__init__.pyi | 2 +- .../get/response_for_200/__init__.py | 2 +- .../get/response_for_400/__init__.py | 2 +- .../get/response_for_404/__init__.py | 2 +- .../paths/user_username/put/__init__.py | 2 +- .../paths/user_username/put/__init__.pyi | 2 +- .../put/response_for_400/__init__.py | 2 +- .../put/response_for_404/__init__.py | 2 +- .../petstore/python/petstore_api/schemas.py | 218 ++++++++++-------- 730 files changed, 1687 insertions(+), 1698 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars index a214b707de1..9dc9aeab552 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars @@ -10,37 +10,24 @@ import json import os import io import atexit -from multiprocessing.pool import ThreadPool +from multiprocessing import pool import re import tempfile import typing import typing_extensions import urllib3 -from urllib3._collections import HTTPHeaderDict -from urllib.parse import urlparse, quote -from urllib3.fields import RequestField as RequestFieldBase +from urllib3 import _collections, fields +import urllib3.parse as parse {{#if tornado}} import tornado.gen {{/if}} import frozendict -from {{packageName}} import rest -from {{packageName}}.configuration import Configuration -from {{packageName}}.exceptions import ApiTypeError, ApiValueError -from {{packageName}}.schemas import ( - NoneClass, - BoolClass, - Schema, - FileIO, - BinarySchema, - none_type, - Unset, - unset, -) - - -class RequestField(RequestFieldBase): +from {{packageName}} import configuration, exceptions, rest, schemas + + +class RequestField(fields.RequestField): def __eq__(self, other): if not isinstance(other, RequestField): return False @@ -61,15 +48,15 @@ class JSONEncoder(json.JSONEncoder): if obj.as_tuple().exponent >= 0: return int(obj) return float(obj) - elif isinstance(obj, NoneClass): + elif isinstance(obj, schemas.NoneClass): return None - elif isinstance(obj, BoolClass): + elif isinstance(obj, schemas.BoolClass): return bool(obj) elif isinstance(obj, (dict, frozendict.frozendict)): return {key: self.default(val) for key, val in obj.items()} elif isinstance(obj, (list, tuple)): return [self.default(item) for item in obj] - raise ApiValueError('Unable to prepare type {} for serialization'.format(obj.__class__.__name__)) + raise exceptions.ApiValueError('Unable to prepare type {} for serialization'.format(obj.__class__.__name__)) class ParameterInType(enum.Enum): @@ -126,9 +113,9 @@ class ParameterSerializerBase: """ if type(in_data) in {str, float, int}: if percent_encode: - return quote(str(in_data)) + return parse.quote(str(in_data)) return str(in_data) - elif isinstance(in_data, none_type): + elif isinstance(in_data, schemas.none_type): # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return None elif isinstance(in_data, list) and not in_data: @@ -137,7 +124,7 @@ class ParameterSerializerBase: elif isinstance(in_data, dict) and not in_data: # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return None - raise ApiValueError('Unable to generate a ref6570 item representation of {}'.format(in_data)) + raise exceptions.ApiValueError('Unable to generate a ref6570 item representation of {}'.format(in_data)) @staticmethod def _to_dict(name: str, value: str): @@ -245,7 +232,7 @@ class ParameterSerializerBase: var_name_piece, named_parameter_expansion ) - elif isinstance(in_data, none_type): + elif isinstance(in_data, schemas.none_type): # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return "" elif isinstance(in_data, list): @@ -269,7 +256,7 @@ class ParameterSerializerBase: named_parameter_expansion ) # bool, bytes, etc - raise ApiValueError('Unable to generate a ref6570 representation of {}'.format(in_data)) + raise exceptions.ApiValueError('Unable to generate a ref6570 representation of {}'.format(in_data)) class StyleFormSerializer(ParameterSerializerBase): @@ -350,8 +337,8 @@ class ParameterBase(JSONDetector): style: typing.Optional[ParameterStyle] explode: typing.Optional[bool] allow_reserved: typing.Optional[bool] - schema: typing.Optional[typing.Type[Schema]] - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] + schema: typing.Optional[typing.Type[schemas.Schema]] + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] _json_encoder = JSONEncoder() @@ -380,8 +367,8 @@ class PathParameter(ParameterBase, StyleSimpleSerializer): style: ParameterStyle = ParameterStyle.SIMPLE explode: bool = False allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def __serialize_label( @@ -430,7 +417,7 @@ class PathParameter(ParameterBase, StyleSimpleSerializer): def serialize( cls, in_data: typing.Union[ - Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -468,8 +455,8 @@ class QueryParameter(ParameterBase, StyleFormSerializer): style: ParameterStyle = ParameterStyle.FORM explode: typing.Optional[bool] = None allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def __serialize_space_delimited( @@ -535,7 +522,7 @@ class QueryParameter(ParameterBase, StyleFormSerializer): def serialize( cls, in_data: typing.Union[ - Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], prefix_separator_iterator: typing.Optional[PrefixSeparatorIterator] = None ) -> typing.Dict[str, str]: if cls.schema: @@ -572,7 +559,7 @@ class QueryParameter(ParameterBase, StyleFormSerializer): value = cls._serialize_json(cast_in_data, eliminate_whitespace=True) return cls._to_dict( cls.name, - next(prefix_separator_iterator) + cls.name + '=' + quote(value) + next(prefix_separator_iterator) + cls.name + '=' + parse.quote(value) ) raise NotImplementedError('Serialization of {} has not yet been implemented'.format(content_type)) @@ -584,14 +571,14 @@ class CookieParameter(ParameterBase, StyleFormSerializer): in_type: ParameterInType = ParameterInType.COOKIE explode: typing.Optional[bool] = None allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def serialize( cls, in_data: typing.Union[ - Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -629,13 +616,13 @@ class HeaderParameterWithoutName(ParameterBase, StyleSimpleSerializer): in_type: ParameterInType = ParameterInType.HEADER explode: bool = False allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @staticmethod - def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> HTTPHeaderDict: + def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> _collections.HTTPHeaderDict: data = tuple(t for t in in_data if t) - headers = HTTPHeaderDict() + headers = _collections.HTTPHeaderDict() if not data: return headers headers.extend(data) @@ -645,9 +632,9 @@ class HeaderParameterWithoutName(ParameterBase, StyleSimpleSerializer): def serialize( cls, in_data: typing.Union[ - Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], name: str - ) -> HTTPHeaderDict: + ) -> _collections.HTTPHeaderDict: if cls.schema: cast_in_data = cls.schema(in_data) cast_in_data = cls._json_encoder.default(cast_in_data) @@ -673,7 +660,7 @@ class HeaderParameterWithoutName(ParameterBase, StyleSimpleSerializer): cls, in_data: str, name: str - ) -> Schema: + ) -> schemas.Schema: if cls.schema: """ simple -> header @@ -698,8 +685,8 @@ class HeaderParameter(HeaderParameterWithoutName): def serialize( cls, in_data: typing.Union[ - Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] - ) -> HTTPHeaderDict: + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] + ) -> _collections.HTTPHeaderDict: return super().serialize( in_data, cls.name @@ -732,21 +719,21 @@ class MediaType: The encoding object SHALL only apply to requestBody objects when the media type is multipart or application/x-www-form-urlencoded. """ - schema: typing.Optional[typing.Type[Schema]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None encoding: typing.Optional[typing.Dict[str, Encoding]] = None @dataclasses.dataclass class ApiResponse: response: urllib3.HTTPResponse - body: typing.Union[Unset, Schema] = unset - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset def __init__( self, response: urllib3.HTTPResponse, - body: typing.Union[Unset, Schema] = unset, - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset, + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset ): """ pycharm needs this to prevent 'Unexpected argument' warnings @@ -759,8 +746,8 @@ class ApiResponse: @dataclasses.dataclass class ApiResponseWithoutDeserialization(ApiResponse): response: urllib3.HTTPResponse - body: typing.Union[Unset, Schema] = unset - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset class TypedDictInputVerifier: @@ -770,7 +757,7 @@ class TypedDictInputVerifier: Ensures that: - required keys are present - additional properties are not input - - value stored under required keys do not have the value unset + - value stored under required keys do not have the value schemas.unset Note: detailed value checking is done in schema classes """ missing_required_keys = [] @@ -780,16 +767,16 @@ class TypedDictInputVerifier: missing_required_keys.append(required_key) continue value = data[required_key] - if value is unset: + if value is schemas.unset: required_keys_with_unset_values.append(required_key) if missing_required_keys: - raise ApiTypeError( + raise exceptions.ApiTypeError( '{} missing {} required arguments: {}'.format( cls.__name__, len(missing_required_keys), missing_required_keys ) ) if required_keys_with_unset_values: - raise ApiValueError( + raise exceptions.ApiValueError( '{} contains invalid unset values for {} required keys: {}'.format( cls.__name__, len(required_keys_with_unset_values), required_keys_with_unset_values ) @@ -801,7 +788,7 @@ class TypedDictInputVerifier: continue disallowed_additional_keys.append(key) if disallowed_additional_keys: - raise ApiTypeError( + raise exceptions.ApiTypeError( '{} got {} unexpected keyword arguments: {}'.format( cls.__name__, len(disallowed_additional_keys), disallowed_additional_keys ) @@ -827,7 +814,7 @@ class OpenApiResponse(JSONDetector, TypedDictInputVerifier, typing.Generic[T]): def __file_name_from_response_url(response_url: typing.Optional[str]) -> typing.Optional[str]: if response_url is None: return None - url_path = urlparse(response_url).path + url_path = parse.urlparse(response_url).path if url_path: path_basename = os.path.basename(url_path) if path_basename: @@ -895,12 +882,12 @@ class OpenApiResponse(JSONDetector, TypedDictInputVerifier, typing.Generic[T]): } @classmethod - def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuration) -> T: + def deserialize(cls, response: urllib3.HTTPResponse, configuration: configuration.Configuration) -> T: content_type = response.getheader('content-type') - deserialized_body = unset + deserialized_body = schemas.unset streamed = response.supports_chunked_reads() - deserialized_headers = unset + deserialized_headers = schemas.unset if cls.headers is not None: cls._verify_typed_dict_inputs_oapg(cls.response_cls.headers, response.headers) deserialized_headers = {} @@ -913,7 +900,7 @@ class OpenApiResponse(JSONDetector, TypedDictInputVerifier, typing.Generic[T]): if cls.content is not None: if content_type not in cls.content: - raise ApiValueError( + raise exceptions.ApiValueError( f"Invalid content_type returned. Content_type='{content_type}' was returned " f"when only {str(set(cls.content))} are defined for status_code={str(response.status)}" ) @@ -923,7 +910,7 @@ class OpenApiResponse(JSONDetector, TypedDictInputVerifier, typing.Generic[T]): return cls.response_cls( response=response, headers=deserialized_headers, - body=unset + body=schemas.unset ) if cls._content_type_is_json(content_type): @@ -959,7 +946,7 @@ class ApiClient: Ref: https://openapi-generator.tech Do not edit the class manually. - :param configuration: .Configuration object for this client + :param configuration: configuration.Configuration object for this client :param header_name: a header to pass when making calls to the API. :param header_value: a header value to pass when making calls to the API. @@ -973,19 +960,19 @@ class ApiClient: def __init__( self, - configuration: typing.Optional[Configuration] = None, + configuration: typing.Optional[configuration.Configuration] = None, header_name: typing.Optional[str] = None, header_value: typing.Optional[str] = None, cookie: typing.Optional[str] = None, pool_threads: int = 1 ): if configuration is None: - configuration = Configuration() + configuration = configuration.Configuration() self.configuration = configuration self.pool_threads = pool_threads self.rest_client = rest.RESTClientObject(configuration) - self.default_headers = HTTPHeaderDict() + self.default_headers = _collections.HTTPHeaderDict() if header_name is not None: self.default_headers[header_name] = header_value self.cookie = cookie @@ -1013,7 +1000,7 @@ class ApiClient: """ if self._pool is None: atexit.register(self.close) - self._pool = ThreadPool(self.pool_threads) + self._pool = pool.ThreadPool(self.pool_threads) return self._pool @property @@ -1035,7 +1022,7 @@ class ApiClient: self, resource_path: str, method: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, body: typing.Optional[typing.Union[str, bytes]] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, auth_settings: typing.Optional[typing.List[str]] = None, @@ -1045,7 +1032,7 @@ class ApiClient: ) -> urllib3.HTTPResponse: # header parameters - used_headers = HTTPHeaderDict(self.default_headers) + used_headers = _collections.HTTPHeaderDict(self.default_headers) if self.cookie: headers['Cookie'] = self.cookie @@ -1080,7 +1067,7 @@ class ApiClient: self, resource_path: str, method: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, body: typing.Optional[typing.Union[str, bytes]] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, auth_settings: typing.Optional[typing.List[str]] = None, @@ -1106,8 +1093,8 @@ class ApiClient: :param stream: if True, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Also when True, if the openapi spec describes a file download, - the data will be written to a local filesystme file and the BinarySchema - instance will also inherit from FileSchema and FileIO + the data will be written to a local filesystme file and the schemas.BinarySchema + instance will also inherit from FileSchema and schemas.FileIO Default is False. :type stream: bool, optional :param timeout: timeout setting for this request. If one @@ -1156,7 +1143,7 @@ class ApiClient: self, method: str, url: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, body: typing.Optional[typing.Union[str, bytes]] = None, stream: bool = False, @@ -1208,7 +1195,7 @@ class ApiClient: timeout=timeout, body=body) else: - raise ApiValueError( + raise exceptions.ApiValueError( "http method must be `GET`, `HEAD`, `OPTIONS`," " `POST`, `PATCH`, `PUT` or `DELETE`." ) @@ -1252,9 +1239,9 @@ class ApiClient: need to pass in prefix_separator_iterator and need to output resource_path with query params added """ - raise ApiValueError("Auth in query not yet implemented") + raise exceptions.ApiValueError("Auth in query not yet implemented") else: - raise ApiValueError( + raise exceptions.ApiValueError( 'Authentication token must be in `query` or `header`' ) @@ -1293,7 +1280,7 @@ class Api(TypedDictInputVerifier): ) except IndexError: if servers: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid host index. Must be 0 <= index < %s" % len(servers) ) @@ -1309,7 +1296,7 @@ class SerializedRequestBody(typing_extensions.TypedDict, total=False): class RequestBody(StyleFormSerializer, JSONDetector): """ A request body parameter - content: content_type to MediaType Schema info + content: content_type to MediaType schemas.Schema info """ __json_encoder = JSONEncoder() content: typing.Dict[str, MediaType] @@ -1332,28 +1319,28 @@ class RequestBody(StyleFormSerializer, JSONDetector): raise ValueError('Unable to serialize type frozendict.frozendict to text/plain') elif isinstance(in_data, tuple): raise ValueError('Unable to serialize type tuple to text/plain') - elif isinstance(in_data, NoneClass): + elif isinstance(in_data, schemas.NoneClass): raise ValueError('Unable to serialize type NoneClass to text/plain') - elif isinstance(in_data, BoolClass): + elif isinstance(in_data, schemas.BoolClass): raise ValueError('Unable to serialize type BoolClass to text/plain') return dict(body=str(in_data)) @classmethod - def __multipart_json_item(cls, key: str, value: Schema) -> RequestField: + def __multipart_json_item(cls, key: str, value: schemas.Schema) -> RequestField: json_value = cls.__json_encoder.default(value) request_field = RequestField(name=key, data=json.dumps(json_value)) request_field.make_multipart(content_type='application/json') return request_field @classmethod - def __multipart_form_item(cls, key: str, value: Schema) -> RequestField: + def __multipart_form_item(cls, key: str, value: schemas.Schema) -> RequestField: if isinstance(value, str): request_field = RequestField(name=key, data=str(value)) request_field.make_multipart(content_type='text/plain') elif isinstance(value, bytes): request_field = RequestField(name=key, data=value) request_field.make_multipart(content_type='application/octet-stream') - elif isinstance(value, FileIO): + elif isinstance(value, schemas.FileIO): # TODO use content.encoding to limit allowed content types if they are present request_field = RequestField.from_tuples(key, (os.path.basename(value.name), value.read())) value.close() @@ -1363,7 +1350,7 @@ class RequestBody(StyleFormSerializer, JSONDetector): @classmethod def __serialize_multipart_form_data( - cls, in_data: Schema + cls, in_data: schemas.Schema ) -> typing.Dict[str, typing.Tuple[RequestField, ...]]: if not isinstance(in_data, frozendict.frozendict): raise ValueError(f'Unable to serialize {in_data} to multipart/form-data because it is not a dict of data') @@ -1399,10 +1386,10 @@ class RequestBody(StyleFormSerializer, JSONDetector): return dict(fields=tuple(fields)) @staticmethod - def __serialize_application_octet_stream(in_data: BinarySchema) -> typing.Dict[str, bytes]: + def __serialize_application_octet_stream(in_data: schemas.BinarySchema) -> typing.Dict[str, bytes]: if isinstance(in_data, bytes): return dict(body=in_data) - # FileIO type + # schemas.FileIO type result = dict(body=in_data.read()) in_data.close() return result diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/schema_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/schema_doc.handlebars index 3af6358dac4..6f30c3312aa 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/schema_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/schema_doc.handlebars @@ -27,7 +27,7 @@ Key | Input Type | Accessed Type | Description | Notes {{/if}} {{/unless}} {{else}} -**any_string_name** | {{> types_all_incl_schema_oneline }} | {{> types_all_accessed }} | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | {{> types_all_incl_schema_oneline }} | {{> types_all_accessed_oneline }} | any string name can be used but the value must be the correct type | [optional] {{/with}} {{/or}} {{#each requiredProperties}} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars index 3dae78ff3a8..68abb908458 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars @@ -2,7 +2,7 @@ {{>partial_header}} -from collections import defaultdict +import collections import datetime import functools import decimal @@ -12,16 +12,10 @@ import types import typing import uuid -from dateutil.parser.isoparser import isoparser, _takes_ascii +from dateutil.parser import isoparser import frozendict -from {{packageName}}.exceptions import ( - ApiTypeError, - ApiValueError, -) -from {{packageName}}.configuration import ( - Configuration, -) +from {{packageName}} import configuration, exceptions class Unset(object): @@ -46,12 +40,12 @@ class FileIO(io.FileIO): def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader]): if isinstance(_arg, (io.FileIO, io.BufferedReader)): if _arg.closed: - raise ApiValueError('Invalid file state; file is closed and must be open') + raise exceptions.ApiValueError('Invalid file state; file is closed and must be open') _arg.close() inst = super(FileIO, cls).__new__(cls, _arg.name) super(FileIO, inst).__init__(_arg.name) return inst - raise ApiValueError('FileIO must be passed _arg which contains the open file') + raise exceptions.ApiValueError('FileIO must be passed _arg which contains the open file') def __init__(self, _arg: typing.Union[io.FileIO, io.BufferedReader]): pass @@ -60,7 +54,7 @@ class FileIO(io.FileIO): def update(d: dict, u: dict): """ Adds u to d - Where each dict is defaultdict(set) + Where each dict is collections.defaultdict(set) """ if not u: return d @@ -78,7 +72,7 @@ class ValidationMetadata(frozendict.frozendict): def __new__( cls, path_to_item: typing.Tuple[typing.Union[str, int], ...], - configuration: Configuration, + configuration: configuration.Configuration, seen_classes: typing.FrozenSet[typing.Type] = frozenset(), validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Type]] = frozendict.frozendict() ): @@ -87,8 +81,8 @@ class ValidationMetadata(frozendict.frozendict): path_to_item: the path to the current data being instantiated. For {'a': [1]} if the code is handling, 1, then the path is ('args[0]', 'a', 0) This changes from location to location - configuration: the Configuration instance to use - This is needed because in Configuration: + configuration: the configuration.Configuration instance to use + This is needed because in configuration.Configuration: - one can disable validation checking This does not change from location to location seen_classes: when deserializing data that matches multiple schemas, this is used to store @@ -119,7 +113,7 @@ class ValidationMetadata(frozendict.frozendict): return self['path_to_item'] @property - def configuration(self) -> Configuration: + def configuration(self) -> configuration.Configuration: return self['configuration'] @property @@ -287,7 +281,7 @@ def __get_type_error(var_value, path_to_item, valid_classes, key_type=False): valid_classes=valid_classes, key_type=key_type, ) - return ApiTypeError( + return exceptions.ApiTypeError( error_msg, path_to_item=path_to_item, valid_classes=valid_classes, @@ -323,12 +317,12 @@ def validate_enum( {{/if}} ) -> None: if arg not in enum_value_to_name: - raise ApiValueError("Invalid value {} passed in to {}, allowed_values={}".format(arg, cls, enum_value_to_name.keys())) + raise exceptions.ApiValueError("Invalid value {} passed in to {}, allowed_values={}".format(arg, cls, enum_value_to_name.keys())) return None def _raise_validation_error_message_oapg(value, constraint_msg, constraint_value, path_to_item, additional_txt=""): - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value `{value}`, {constraint_msg} `{constraint_value}`{additional_txt} at {path_to_item}".format( value=value, constraint_msg=constraint_msg, @@ -640,20 +634,20 @@ def __validate_numeric_format( if format[:3] == 'int': # there is a json schema test where 1.0 validates as an integer if arg != int(arg): - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid non-integer value '{}' for type {} at {}".format( arg, format, validation_metadata.path_to_item ) ) if format == 'int32': if not __int32_inclusive_minimum <= arg <= __int32_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type int32 at {}".format(arg, validation_metadata.path_to_item) ) return None elif format == 'int64': if not __int64_inclusive_minimum <= arg <= __int64_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type int64 at {}".format(arg, validation_metadata.path_to_item) ) return None @@ -661,22 +655,22 @@ def __validate_numeric_format( elif format in {'float', 'double'}: if format == 'float': if not __float_inclusive_minimum <= arg <= __float_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type float at {}".format(arg, validation_metadata.path_to_item) ) return None # double if not __double_inclusive_minimum <= arg <= __double_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type double at {}".format(arg, validation_metadata.path_to_item) ) return None return None -class CustomIsoparser(isoparser): +class CustomIsoparser(isoparser.isoparser): - @_takes_ascii + @isoparser._takes_ascii def parse_isodatetime(self, dt_str): components, pos = self._parse_isodate(dt_str) if len(dt_str) > pos: @@ -694,7 +688,7 @@ class CustomIsoparser(isoparser): return datetime.datetime(*components) - @_takes_ascii + @isoparser._takes_ascii def parse_isodate(self, datestr): components, pos = self._parse_isodate(datestr) @@ -720,7 +714,7 @@ def __validate_string_format( uuid.UUID(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type UUID at {}".format(arg, validation_metadata.path_to_item) ) elif format == 'number': @@ -728,7 +722,7 @@ def __validate_string_format( decimal.Decimal(arg) return None except decimal.InvalidOperation: - raise ApiValueError( + raise exceptions.ApiValueError( "Value cannot be converted to a decimal. " "Invalid value '{}' for type decimal at {}".format(arg, validation_metadata.path_to_item) ) @@ -737,7 +731,7 @@ def __validate_string_format( DEFAULT_ISOPARSER.parse_isodate(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Value does not conform to the required ISO-8601 date format. " "Invalid value '{}' for type date at {}".format(arg, validation_metadata.path_to_item) ) @@ -746,7 +740,7 @@ def __validate_string_format( DEFAULT_ISOPARSER.parse_isodatetime(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Value does not conform to the required ISO-8601 datetime format. " "Invalid value '{}' for type datetime at {}".format(arg, validation_metadata.path_to_item) ) @@ -793,7 +787,7 @@ def validate_required( if missing_required_arguments: missing_required_arguments = list(missing_required_arguments) missing_required_arguments.sort() - raise ApiTypeError( + raise exceptions.ApiTypeError( "{} is missing {} required argument{}: {}".format( cls.__name__, len(missing_required_arguments), @@ -913,7 +907,7 @@ def validate_one_of( {{/if}} ) -> PathToSchemasType: oneof_classes = [] - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for one_of_cls in one_of_container_cls.classes: schema = _get_class_oapg(one_of_cls) if schema in path_to_schemas[validation_metadata.path_to_item]: @@ -932,7 +926,7 @@ def validate_one_of( continue try: path_to_schemas = schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError) as ex: + except (exceptions.ApiValueError, exceptions.ApiTypeError) as ex: # silence exceptions because the code needs to accumulate oneof_classes continue oneof_classes.append(schema) @@ -945,7 +939,7 @@ def validate_one_of( """ return {} {{/if}} - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. None " "of the oneOf schemas matched the input data.".format(cls) ) @@ -958,7 +952,7 @@ def validate_one_of( """ return {} {{/if}} - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. Multiple " "oneOf schemas {} matched the inputs, but a max of one is allowed.".format(cls, oneof_classes) ) @@ -977,7 +971,7 @@ def validate_any_of( {{/if}} ) -> PathToSchemasType: anyof_classes = [] - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for any_of_cls in any_of_container_cls.classes: schema = _get_class_oapg(any_of_cls) if schema is cls: @@ -994,7 +988,7 @@ def validate_any_of( try: other_path_to_schemas = schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError) as ex: + except (exceptions.ApiValueError, exceptions.ApiTypeError) as ex: # silence exceptions because the code needs to accumulate anyof_classes continue anyof_classes.append(schema) @@ -1008,7 +1002,7 @@ def validate_any_of( """ return {} {{/if}} - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. None " "of the anyOf schemas matched the input data.".format(cls) ) @@ -1024,7 +1018,7 @@ def validate_all_of( **kwargs {{/if}} ) -> PathToSchemasType: - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for allof_cls in all_of_cls.classes: schema = _get_class_oapg(allof_cls) if schema is cls: @@ -1052,7 +1046,7 @@ def validate_not( ) -> None: not_schema = _get_class_oapg(not_cls) other_path_to_schemas = None - not_exception = ApiValueError( + not_exception = exceptions.ApiValueError( "Invalid value '{}' was passed in to {}. Value is invalid because it is disallowed by {}".format( arg, cls.__name__, @@ -1064,7 +1058,7 @@ def validate_not( try: other_path_to_schemas = not_schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError): + except (exceptions.ApiValueError, exceptions.ApiTypeError): pass if other_path_to_schemas: raise not_exception @@ -1078,7 +1072,7 @@ def __ensure_discriminator_value_present( ): if disc_property_name not in arg: # The input data does not contain the discriminator property - raise ApiValueError( + raise exceptions.ApiValueError( "Cannot deserialize input data due to missing discriminator. " "The discriminator property '{}' is missing at path: {}".format(disc_property_name, validation_metadata.path_to_item) ) @@ -1138,7 +1132,7 @@ def _get_discriminated_class_and_exception( disc_prop_name = list(discriminator.keys())[0] try: __ensure_discriminator_value_present(disc_prop_name, validation_metadata, arg) - except ApiValueError as ex: + except exceptions.ApiValueError as ex: return None, ex return ( __get_discriminated_class( @@ -1173,7 +1167,7 @@ def validate_discriminator( ) {{/if}} if discriminated_cls is None: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid discriminator value was passed in to {}.{} Only the values {} are allowed at {}".format( cls.__name__, disc_prop_name, @@ -1444,7 +1438,7 @@ class Schema: io.BufferedReader, bytes ], - _configuration: typing.Optional[Configuration] = None + _configuration: typing.Optional[configuration.Configuration] = None ): """ Schema from_openapi_data_oapg @@ -1455,7 +1449,7 @@ class Schema: arg = cast_to_allowed_types(arg, from_server, validated_path_to_schemas, ('args[0]',), path_to_type) validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or Configuration(), + configuration=_configuration or configuration.Configuration(), validated_path_to_schemas=frozendict.frozendict(validated_path_to_schemas) ) path_to_schemas = cls.__get_new_cls(arg, validation_metadata, path_to_type) @@ -1485,7 +1479,7 @@ class Schema: *_args: typing.Union[ {{> types_all_incl_schema }} ], - _configuration: typing.Optional[Configuration] = None, + _configuration: typing.Optional[configuration.Configuration] = None, **kwargs: typing.Union[ {{> types_all_incl_schema }} Unset @@ -1497,7 +1491,7 @@ class Schema: Args: _args (int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): the value kwargs (str, int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): dict values - _configuration: contains the Configuration that enables json schema validation keywords + _configuration: contains the configuration.Configuration that enables json schema validation keywords like minItems, minLength etc Note: double underscores are used here because pycharm thinks that these variables @@ -1519,7 +1513,7 @@ class Schema: __arg, __from_server, __validated_path_to_schemas, ('args[0]',), __path_to_type) __validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or Configuration(), + configuration=_configuration or configuration.Configuration(), validated_path_to_schemas=frozendict.frozendict(__validated_path_to_schemas) ) __path_to_schemas = cls.__get_new_cls(__arg, __validation_metadata, __path_to_type) @@ -1534,7 +1528,7 @@ class Schema: self, *_args: typing.Union[ dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema'], - _configuration: typing.Optional[Configuration] = None, + _configuration: typing.Optional[configuration.Configuration] = None, **kwargs: typing.Union[ dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema', Unset ] @@ -1952,7 +1946,7 @@ class NumberBase: if self.as_tuple().exponent < 0: # this could be represented as an integer but should be represented as a float # because that's what it was serialized from - raise ApiValueError(f'{self} is not an integer') + raise exceptions.ApiValueError(f'{self} is not an integer') self._as_int = int(self) return self._as_int @@ -1962,7 +1956,7 @@ class NumberBase: return self._as_float except AttributeError: if self.as_tuple().exponent >= 0: - raise ApiValueError(f'{self} is not a float') + raise exceptions.ApiValueError(f'{self} is not a float') self._as_float = float(self) return self._as_float @@ -2095,7 +2089,7 @@ def cast_to_allowed_types( schema_classes.add(cls) validated_path_to_schemas[path_to_item] = schema_classes - type_error = ApiTypeError(f"Invalid type. Required value type is str and passed type was {type(arg)} at {path_to_item}") + type_error = exceptions.ApiTypeError(f"Invalid type. Required value type is str and passed type was {type(arg)} at {path_to_item}") if isinstance(arg, str): path_to_type[path_to_item] = str return str(arg) @@ -2181,10 +2175,10 @@ class ListSchema( types = {tuple} @classmethod - def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2197,10 +2191,10 @@ class NoneSchema( types = {NoneClass} @classmethod - def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: None, **kwargs: Configuration): + def __new__(cls, _arg: None, **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2217,10 +2211,10 @@ class NumberSchema( types = {decimal.Decimal} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2240,10 +2234,10 @@ class IntSchema(IntBase, NumberSchema): format = 'int' @classmethod - def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2271,7 +2265,7 @@ class Float32Schema( format = 'float' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2283,7 +2277,7 @@ class Float64Schema( format = 'double' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2302,10 +2296,10 @@ class StrSchema( types = {str} @classmethod - def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[Configuration] = None) -> 'StrSchema': + def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[configuration.Configuration] = None) -> 'StrSchema': return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2314,7 +2308,7 @@ class UUIDSchema(UUIDBase, StrSchema): types = {str} format = 'uuid' - def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2323,7 +2317,7 @@ class DateSchema(DateBase, StrSchema): types = {str} format = 'date' - def __new__(cls, _arg: typing.Union[str, date], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2332,7 +2326,7 @@ class DateTimeSchema(DateTimeBase, StrSchema): types = {str} format = 'date-time' - def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2341,7 +2335,7 @@ class DecimalSchema(DecimalBase, StrSchema): types = {str} format = 'number' - def __new__(cls, _arg: str, **kwargs: Configuration): + def __new__(cls, _arg: str, **kwargs: configuration.Configuration): """ Note: Decimals may not be passed in because cast_to_allowed_types is only invoked once for payloads which can be simple (str) or complex (dicts or lists with nested values) @@ -2363,7 +2357,7 @@ class BytesSchema( class MetaOapg: types = {bytes} - def __new__(cls, _arg: bytes, **kwargs: Configuration): + def __new__(cls, _arg: bytes, **kwargs: configuration.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2390,7 +2384,7 @@ class FileSchema( class MetaOapg: types = {FileIO} - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: configuration.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2408,7 +2402,7 @@ class BinarySchema( FileSchema, ] - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: configuration.Configuration): return super().__new__(cls, _arg) @@ -2421,7 +2415,7 @@ class BoolSchema( types = {BoolClass} @classmethod - def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) def __new__(cls, _arg: bool, **kwargs: ValidationMetadata): @@ -2461,7 +2455,7 @@ class NotAnyTypeSchema(AnyTypeSchema): def __new__( cls, *_args, - _configuration: typing.Optional[Configuration] = None, + _configuration: typing.Optional[configuration.Configuration] = None, ) -> 'NotAnyTypeSchema': return super().__new__( cls, @@ -2479,10 +2473,10 @@ class DictSchema( types = {frozendict.frozendict} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date.datetime, datetime.datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): + def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): return super().__new__(cls, *_args, **kwargs) diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/VERSION b/samples/openapi3/client/petstore/python/.openapi-generator/VERSION index 359a5b952d4..717311e32e3 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/VERSION +++ b/samples/openapi3/client/petstore/python/.openapi-generator/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +unset \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index f5ee5bda674..2cdfb55e6a6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -55,7 +55,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **string** | [**Foo**](../../../components/schema/foo.Foo.md) | [**Foo**](../../../components/schema/foo.Foo.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md index ba01f990b68..ecc133d7c68 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md @@ -91,11 +91,11 @@ Key | Input Type | Accessed Type | Description | Notes **float** | decimal.Decimal, int, float, | decimal.Decimal, | None | [optional] value must be a 32 bit float **string** | str, | str, | None | [optional] **binary** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | None | [optional] -**date** | str, date, | str, | None | [optional] value must conform to RFC-3339 full-date YYYY-MM-DD -**dateTime** | str, datetime, | str, | None | [optional] if omitted the server will use the default value of 2010-02-01T10:20:10.11111+01:00 value must conform to RFC-3339 date-time +**date** | str, datetime.date, | str, | None | [optional] value must conform to RFC-3339 full-date YYYY-MM-DD +**dateTime** | str, datetime.datetime, | str, | None | [optional] if omitted the server will use the default value of 2010-02-01T10:20:10.11111+01:00 value must conform to RFC-3339 date-time **password** | str, | str, | None | [optional] **callback** | str, | str, | None | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index b1b9e52eb00..b38c292cb28 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -81,7 +81,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **enum_form_string_array** | [list, tuple, ](#enum_form_string_array) | [tuple, ](#enum_form_string_array) | Form parameter enum test (string array) | [optional] **enum_form_string** | str, | str, | Form parameter enum test (string) | [optional] must be one of ["_abc", "-efg", "(xyz)", ] if omitted the server will use the default value of "-efg" -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # enum_form_string_array diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md index 609a4a95996..5159e0995fa 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md @@ -57,7 +57,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -81,15 +81,15 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**someProp** | [dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**someProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # someProp ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -118,7 +118,7 @@ compositionInProperty | [parameter_1.schema](#parameter_1.schema) | | optional ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -143,15 +143,15 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**someProp** | [dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**someProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # someProp ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -185,7 +185,7 @@ headers | Unset | headers were not defined | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -210,15 +210,15 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**someProp** | [dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**someProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # someProp ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index d475b40a1c3..046d8b84df7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -58,7 +58,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **param** | str, | str, | field1 | **param2** | str, | str, | field2 | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md index 68fcc7f0ebb..d84b1bc8522 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md @@ -49,7 +49,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Return Types, Responses @@ -70,7 +70,7 @@ headers | Unset | headers were not defined | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index c3c329d2c55..66ede3e9ae7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -64,7 +64,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **keyword** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md index 095944d888b..f37b9d2f582 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md @@ -110,7 +110,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### query_params #### RequestQueryParameters.Params @@ -308,7 +308,7 @@ headers | Unset | headers were not defined | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md index 884acabe4d2..95a4ce67c36 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md @@ -57,7 +57,7 @@ someParam | [parameter_0.schema](#parameter_0.schema) | | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Return Types, Responses @@ -78,7 +78,7 @@ headers | Unset | headers were not defined | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md index 6b91af81d37..f50dd5ae59b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md @@ -59,7 +59,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **file** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | **additionalMetadata** | str, | str, | Additional data to pass to server | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md index 66786703775..d678bc4d994 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md @@ -59,7 +59,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **files** | [list, tuple, ](#files) | [tuple, ](#files) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # files diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md index 9a4ef1adc00..6fa88c02e42 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md @@ -87,7 +87,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | str, | str, | Updated name of the pet | [optional] **status** | str, | str, | Updated status of the pet | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### path_params #### RequestPathParameters.Params diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md index 9d324e7734d..86a00078939 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md @@ -88,7 +88,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **requiredFile** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | **additionalMetadata** | str, | str, | Additional data to pass to server | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### path_params #### RequestPathParameters.Params diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index 9a41326b62f..02f0a932ed9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -88,7 +88,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **additionalMetadata** | str, | str, | Additional data to pass to server | [optional] **file** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### path_params #### RequestPathParameters.Params diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index c98c70a761c..1e9d800235c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -120,7 +120,7 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 32 bit integer ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -str, datetime, | str, | | value must conform to RFC-3339 date-time +str, datetime.datetime, | str, | | value must conform to RFC-3339 date-time #### response_for_400.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/_200_response._200Response.md b/samples/openapi3/client/petstore/python/docs/components/schema/_200_response._200Response.md index 8fe4a25999e..6bd0c0f348a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/_200_response._200Response.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/_200_response._200Response.md @@ -7,13 +7,13 @@ model with an invalid class name for python, starts with a number ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | model with an invalid class name for python, starts with a number | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | model with an invalid class name for python, starts with a number | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer **class** | str, | str, | this is a reserved python keyword | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/_return._Return.md b/samples/openapi3/client/petstore/python/docs/components/schema/_return._Return.md index b6ca9beda41..ec43d000991 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/_return._Return.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/_return._Return.md @@ -7,12 +7,12 @@ Model for testing reserved words ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | Model for testing reserved words | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | Model for testing reserved words | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **return** | decimal.Decimal, int, | decimal.Decimal, | this is a reserved python keyword | [optional] value must be a 32 bit integer -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md b/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md index c975bce13be..ee451f49dfd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md @@ -12,10 +12,10 @@ dict, frozendict.frozendict, | frozendict.frozendict, | Abstract Step | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**description** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**description** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | **discriminator** | str, | str, | | -**sequenceNumber** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**sequenceNumber** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md index e227a50edb5..22b30ef79fe 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md @@ -12,13 +12,13 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **map_property** | [dict, frozendict.frozendict, ](#map_property) | [frozendict.frozendict, ](#map_property) | | [optional] **map_of_map_property** | [dict, frozendict.frozendict, ](#map_of_map_property) | [frozendict.frozendict, ](#map_of_map_property) | | [optional] -**anytype_1** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**anytype_1** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] **map_with_undeclared_properties_anytype_1** | [dict, frozendict.frozendict, ](#map_with_undeclared_properties_anytype_1) | [frozendict.frozendict, ](#map_with_undeclared_properties_anytype_1) | | [optional] **map_with_undeclared_properties_anytype_2** | [dict, frozendict.frozendict, ](#map_with_undeclared_properties_anytype_2) | [frozendict.frozendict, ](#map_with_undeclared_properties_anytype_2) | | [optional] **map_with_undeclared_properties_anytype_3** | [dict, frozendict.frozendict, ](#map_with_undeclared_properties_anytype_3) | [frozendict.frozendict, ](#map_with_undeclared_properties_anytype_3) | | [optional] **empty_map** | [dict, frozendict.frozendict, ](#empty_map) | [frozendict.frozendict, ](#empty_map) | an object with no declared properties and no undeclared properties, hence it's an empty map. | [optional] **map_with_undeclared_properties_string** | [dict, frozendict.frozendict, ](#map_with_undeclared_properties_string) | [frozendict.frozendict, ](#map_with_undeclared_properties_string) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # map_property @@ -80,7 +80,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] # empty_map diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md index 87e98aca309..cd06148fad4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md @@ -25,7 +25,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] # allOf_1 @@ -37,7 +37,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] # allOf_2 @@ -49,6 +49,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md b/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md index 1593c11550f..158337963b5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **className** | str, | str, | | **color** | str, | str, | | [optional] if omitted the server will use the default value of "red" -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md index b87b3f91deb..4aea06f9956 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md @@ -10,15 +10,15 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**uuid** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a uuid -**date** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must conform to RFC-3339 full-date YYYY-MM-DD -**date-time** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must conform to RFC-3339 date-time -**number** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be numeric and storable in decimal.Decimal -**binary** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] -**int32** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 32 bit integer -**int64** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 64 bit integer -**double** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 64 bit float -**float** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 32 bit float -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**uuid** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a uuid +**date** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must conform to RFC-3339 full-date YYYY-MM-DD +**date-time** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must conform to RFC-3339 date-time +**number** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be numeric and storable in decimal.Decimal +**binary** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**int32** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 32 bit integer +**int64** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 64 bit integer +**double** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 64 bit float +**float** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 32 bit float +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md index e3b0ae46a7f..482c544dbc9 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### not diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md b/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md index dc977c2d4a3..cb5ba1e3166 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md @@ -13,6 +13,6 @@ Key | Input Type | Accessed Type | Description | Notes **code** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer **type** | str, | str, | | [optional] **message** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md b/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md index cdea1a858c1..32243438374 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **cultivar** | str, | str, | | **origin** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md index 4b58986534c..8b28d275e71 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md @@ -10,6 +10,6 @@ list, tuple, | tuple, | | ### Tuple Items Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any type can be stored here | +items | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any type can be stored here | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md index 63533f2642b..b2a30a800ca 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md @@ -11,7 +11,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **ArrayArrayNumber** | [list, tuple, ](#ArrayArrayNumber) | [tuple, ](#ArrayArrayNumber) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # ArrayArrayNumber diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md index 9eb06e6acf1..1255b355c1d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md @@ -11,7 +11,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **ArrayNumber** | [list, tuple, ](#ArrayNumber) | [tuple, ](#ArrayNumber) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # ArrayNumber diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md index f6206c1b687..348acb61180 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md @@ -13,7 +13,7 @@ Key | Input Type | Accessed Type | Description | Notes **array_of_string** | [list, tuple, ](#array_of_string) | [tuple, ](#array_of_string) | | [optional] **array_array_of_integer** | [list, tuple, ](#array_array_of_integer) | [tuple, ](#array_array_of_integer) | | [optional] **array_array_of_model** | [list, tuple, ](#array_array_of_model) | [tuple, ](#array_array_of_model) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # array_of_string diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md b/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md index d05089219d7..d88bea81a5f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **lengthCm** | decimal.Decimal, int, float, | decimal.Decimal, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md b/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md index 2b1a45caec0..2dff48e27ce 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **className** | str, | str, | | must be one of ["BasquePig", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md b/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md index db988065798..b516d3ffe14 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md @@ -16,6 +16,6 @@ Key | Input Type | Accessed Type | Description | Notes **Capital_Snake** | str, | str, | | [optional] **SCA_ETH_Flow_Points** | str, | str, | | [optional] **ATT_NAME** | str, | str, | Name of the pet | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md b/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md index d37fc753cd9..58f2cbcc216 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **declawed** | bool, | BoolClass, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md b/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md index de2b62ce37d..84b31bf0a87 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | str, | str, | | if omitted the server will use the default value of "default-name" **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md b/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md index 481579ba2ea..395bdc454cd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md b/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md index 2eda2c3ccae..5e35233c03c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md @@ -7,12 +7,12 @@ Model for testing model with \"_class\" property ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | Model for testing model with \"_class\" property | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | Model for testing model with \"_class\" property | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **_class** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md b/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md index 2f0c6e9e8ce..a8ab957aa71 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **client** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md index 09f2e450a5a..4065a8baba6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **quadrilateralType** | str, | str, | | [optional] must be one of ["ComplexQuadrilateral", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md index fc08b96a0f1..ea35897b421 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md @@ -5,15 +5,15 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [anyOf_0](#anyOf_0) | dict, frozendict.frozendict, | frozendict.frozendict, | | -[anyOf_1](#anyOf_1) | str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD -[anyOf_2](#anyOf_2) | str, datetime, | str, | | value must conform to RFC-3339 date-time +[anyOf_1](#anyOf_1) | str, datetime.date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD +[anyOf_2](#anyOf_2) | str, datetime.datetime, | str, | | value must conform to RFC-3339 date-time [anyOf_3](#anyOf_3) | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | | [anyOf_4](#anyOf_4) | str, | str, | | [anyOf_5](#anyOf_5) | str, | str, | | @@ -40,14 +40,14 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD +str, datetime.date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD # anyOf_2 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -str, datetime, | str, | | value must conform to RFC-3339 date-time +str, datetime.datetime, | str, | | value must conform to RFC-3339 date-time # anyOf_3 @@ -101,7 +101,7 @@ list, tuple, | tuple, | | ### Tuple Items Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +items | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # anyOf_10 diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md index 87eea0e378c..593dd24b8f4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md @@ -10,6 +10,6 @@ list, tuple, | tuple, | | ### Tuple Items Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +items | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md index f1061b20f7e..d97b1074145 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md @@ -11,13 +11,13 @@ bool, | BoolClass, | | #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md index 5172e185519..1be60245af5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md @@ -11,13 +11,13 @@ None, | NoneClass, | | #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md index 31ea73ca9af..4f3a764f94a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md @@ -11,13 +11,13 @@ decimal.Decimal, int, float, | decimal.Decimal, | | #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md index fcc2fee9f95..021e01b22c5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md @@ -11,13 +11,13 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md index 0c5271607f1..bfcabd2db6c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md @@ -7,7 +7,7 @@ this is a model that allows payloads of type object or number ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | this is a model that allows payloads of type object or number | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | this is a model that allows payloads of type object or number | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf @@ -16,10 +16,10 @@ Class Name | Input Type | Accessed Type | Description | Notes [**NumberWithValidations**](number_with_validations.NumberWithValidations.md) | [**NumberWithValidations**](number_with_validations.NumberWithValidations.md) | [**NumberWithValidations**](number_with_validations.NumberWithValidations.md) | | [**Animal**](animal.Animal.md) | [**Animal**](animal.Animal.md) | [**Animal**](animal.Animal.md) | | [oneOf_2](#oneOf_2) | None, | NoneClass, | | -[oneOf_3](#oneOf_3) | str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD +[oneOf_3](#oneOf_3) | str, datetime.date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD [oneOf_4](#oneOf_4) | dict, frozendict.frozendict, | frozendict.frozendict, | | [oneOf_5](#oneOf_5) | list, tuple, | tuple, | | -[oneOf_6](#oneOf_6) | str, datetime, | str, | | value must conform to RFC-3339 date-time +[oneOf_6](#oneOf_6) | str, datetime.datetime, | str, | | value must conform to RFC-3339 date-time # oneOf_2 @@ -33,7 +33,7 @@ None, | NoneClass, | | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD +str, datetime.date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD # oneOf_4 @@ -52,13 +52,13 @@ list, tuple, | tuple, | | ### Tuple Items Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +items | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # oneOf_6 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -str, datetime, | str, | | value must conform to RFC-3339 date-time +str, datetime.datetime, | str, | | value must conform to RFC-3339 date-time [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md index 3531a1f05a1..d1dcbe33055 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md @@ -11,13 +11,13 @@ str, | str, | | #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md b/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md index f66aa28d1ce..5af47b679e0 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **className** | str, | str, | | must be one of ["DanishPig", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md index 0085ea95374..247104bdc0f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -str, datetime, | str, | | if omitted the server will use the default value of 2010-01-01T10:10:10.000111+01:00 value must conform to RFC-3339 date-time +str, datetime.datetime, | str, | | if omitted the server will use the default value of 2010-01-01T10:10:10.000111+01:00 value must conform to RFC-3339 date-time [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md index 566bbaa99f3..604484ffdd7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -str, datetime, | str, | | value must conform to RFC-3339 date-time +str, datetime.datetime, | str, | | value must conform to RFC-3339 date-time [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md index b421ad86445..ca12c2ab412 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD +str, datetime.date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md b/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md index d813fb7ea42..c6ec327626f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **breed** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md index 3b94388c67c..4461c590c04 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md @@ -12,7 +12,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **just_symbol** | str, | str, | | [optional] must be one of [">=", "$", ] **array_enum** | [list, tuple, ](#array_enum) | [tuple, ](#array_enum) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # array_enum diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md index dd727591fe4..8e459b6d5c4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md @@ -19,6 +19,6 @@ Key | Input Type | Accessed Type | Description | Notes **StringEnumWithDefaultValue** | [**StringEnumWithDefaultValue**](string_enum_with_default_value.StringEnumWithDefaultValue.md) | [**StringEnumWithDefaultValue**](string_enum_with_default_value.StringEnumWithDefaultValue.md) | | [optional] **IntegerEnumWithDefaultValue** | [**IntegerEnumWithDefaultValue**](integer_enum_with_default_value.IntegerEnumWithDefaultValue.md) | [**IntegerEnumWithDefaultValue**](integer_enum_with_default_value.IntegerEnumWithDefaultValue.md) | | [optional] **IntegerEnumOneValue** | [**IntegerEnumOneValue**](integer_enum_one_value.IntegerEnumOneValue.md) | [**IntegerEnumOneValue**](integer_enum_one_value.IntegerEnumOneValue.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md index 376a3577f10..6224b353f8a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **triangleType** | str, | str, | | [optional] must be one of ["EquilateralTriangle", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md b/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md index 08bd8f05212..db8e7c44f71 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md @@ -13,6 +13,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | Must be named `Fi Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **sourceURI** | str, | str, | Test capitalization | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md index 80b4dabec53..274394503de 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md @@ -12,7 +12,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **file** | [**File**](file.File.md) | [**File**](file.File.md) | | [optional] **files** | [list, tuple, ](#files) | [tuple, ](#files) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # files diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md b/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md index 6a287cb2e19..d7197422de6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | [**Bar**](bar.Bar.md) | [**Bar**](bar.Bar.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md index 9abac6d3154..5fe0907e843 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md @@ -11,7 +11,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **byte** | str, | str, | | -**date** | str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD +**date** | str, datetime.date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD **number** | decimal.Decimal, int, float, | decimal.Decimal, | | **password** | str, | str, | | **integer** | decimal.Decimal, int, | decimal.Decimal, | | [optional] @@ -25,13 +25,13 @@ Key | Input Type | Accessed Type | Description | Notes **arrayWithUniqueItems** | [list, tuple, ](#arrayWithUniqueItems) | [tuple, ](#arrayWithUniqueItems) | | [optional] **string** | str, | str, | | [optional] **binary** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | | [optional] -**dateTime** | str, datetime, | str, | | [optional] value must conform to RFC-3339 date-time +**dateTime** | str, datetime.datetime, | str, | | [optional] value must conform to RFC-3339 date-time **uuid** | str, uuid.UUID, | str, | | [optional] value must be a uuid **uuidNoExample** | str, uuid.UUID, | str, | | [optional] value must be a uuid **pattern_with_digits** | str, | str, | A string that is a 10 digit number. Can have leading zeros. | [optional] **pattern_with_digits_and_delimiter** | str, | str, | A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. | [optional] **noneProp** | None, | NoneClass, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # arrayWithUniqueItems diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md b/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md index ff0199c2750..c1907005130 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **data** | str, | str, | | [optional] **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md b/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md index 524bdf929aa..bd27ef575b7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md @@ -5,13 +5,13 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **color** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md b/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md index 9cf30887450..bc32f2df40d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md b/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md index f74c4d658aa..980643b07c2 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md @@ -5,13 +5,13 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **color** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md b/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md index a5e96300e5c..d3ac63669ac 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **pet_type** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md index 49ab23c7cb7..73d164b5c67 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | str, | str, | | [optional] **foo** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md b/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md index 5ed8eb12464..f0ee5ccf338 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md @@ -13,6 +13,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | Just a string to infor Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **NullableMessage** | None, str, | NoneClass, str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md index 1dec08bc5c4..1163135efaa 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **triangleType** | str, | str, | | [optional] must be one of ["IsoscelesTriangle", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md index 5e76b2193c1..9fbad1381a7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md @@ -10,14 +10,14 @@ list, tuple, | tuple, | | ### Tuple Items Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[items](#items) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[items](#items) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # items ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md index ca30fd216a0..4f8414f07b2 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **op** | str, | str, | The operation to perform. | must be one of ["add", "replace", "test", ] **path** | str, | str, | A JSON Pointer path. | -**value** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | The value to add, replace or test. | +**value** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | The value to add, replace or test. | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md b/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md index a5dfb96a3a2..01071c6a626 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md index 3d036a9c149..cadc2c37a6e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md @@ -14,7 +14,7 @@ Key | Input Type | Accessed Type | Description | Notes **map_of_enum_string** | [dict, frozendict.frozendict, ](#map_of_enum_string) | [frozendict.frozendict, ](#map_of_enum_string) | | [optional] **direct_map** | [dict, frozendict.frozendict, ](#direct_map) | [frozendict.frozendict, ](#direct_map) | | [optional] **indirect_map** | [**StringBooleanMap**](string_boolean_map.StringBooleanMap.md) | [**StringBooleanMap**](string_boolean_map.StringBooleanMap.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # map_map_of_string diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md index 9fc1b281469..1a371dd03cb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md @@ -11,9 +11,9 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **uuid** | str, uuid.UUID, | str, | | [optional] value must be a uuid -**dateTime** | str, datetime, | str, | | [optional] value must conform to RFC-3339 date-time +**dateTime** | str, datetime.datetime, | str, | | [optional] value must conform to RFC-3339 date-time **map** | [dict, frozendict.frozendict, ](#map) | [frozendict.frozendict, ](#map) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # map diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md b/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md index e5d64f0f672..11f4a387197 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **amount** | str, | str, | | value must be numeric and storable in decimal.Decimal **currency** | [**Currency**](currency.Currency.md) | [**Currency**](currency.Currency.md) | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md b/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md index 8b18c66aacc..c1a453d9e44 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md @@ -7,7 +7,7 @@ Model for testing model name same as property name ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | Model for testing model name same as property name | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | Model for testing model name same as property name | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes @@ -15,6 +15,6 @@ Key | Input Type | Accessed Type | Description | Notes **name** | decimal.Decimal, int, | decimal.Decimal, | | value must be a 32 bit integer **snake_case** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer **property** | str, | str, | this is a reserved python keyword | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md index 4357b2cbbc0..da4664dff31 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md @@ -14,8 +14,8 @@ Key | Input Type | Accessed Type | Description | Notes **number_prop** | None, decimal.Decimal, int, float, | NoneClass, decimal.Decimal, | | [optional] **boolean_prop** | None, bool, | NoneClass, BoolClass, | | [optional] **string_prop** | None, str, | NoneClass, str, | | [optional] -**date_prop** | None, str, date, | NoneClass, str, | | [optional] value must conform to RFC-3339 full-date YYYY-MM-DD -**datetime_prop** | None, str, datetime, | NoneClass, str, | | [optional] value must conform to RFC-3339 date-time +**date_prop** | None, str, datetime.date, | NoneClass, str, | | [optional] value must conform to RFC-3339 full-date YYYY-MM-DD +**datetime_prop** | None, str, datetime.datetime, | NoneClass, str, | | [optional] value must conform to RFC-3339 date-time **array_nullable_prop** | [list, tuple, None, ](#array_nullable_prop) | [tuple, NoneClass, ](#array_nullable_prop) | | [optional] **array_and_items_nullable_prop** | [list, tuple, None, ](#array_and_items_nullable_prop) | [tuple, NoneClass, ](#array_and_items_nullable_prop) | | [optional] **array_items_nullable** | [list, tuple, ](#array_items_nullable) | [tuple, ](#array_items_nullable) | | [optional] diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md index fbe4ca13ed5..66c7ff56e1b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md @@ -7,7 +7,7 @@ The value may be a shape or the 'null' value. For a composed schema to validate ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | The value may be a shape or the 'null' value. For a composed schema to validate a null payload, one of its chosen oneOf schemas must be type null or nullable (introduced in OAS schema >= 3.0) | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | The value may be a shape or the 'null' value. For a composed schema to validate a null payload, one of its chosen oneOf schemas must be type null or nullable (introduced in OAS schema >= 3.0) | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md index 38d11273fe8..40bd4dcb794 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **JustNumber** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md index 5e2d4969f56..619466eb50e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **arg** | str, | str, | | **args** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md index c57f2bc6fee..e0ed83b81b7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md @@ -15,6 +15,6 @@ Key | Input Type | Accessed Type | Description | Notes **myNumber** | [**NumberWithValidations**](number_with_validations.NumberWithValidations.md) | [**NumberWithValidations**](number_with_validations.NumberWithValidations.md) | | [optional] **myString** | [**String**](string.String.md) | [**String**](string.String.md) | | [optional] **myBoolean** | [**Boolean**](boolean.Boolean.md) | [**Boolean**](boolean.Boolean.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md index 007f3c74829..6e27d0a81a8 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -24,8 +24,8 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**test** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**test** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | **name** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md index 65c3c59f653..6654441d76f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md @@ -13,6 +13,6 @@ Key | Input Type | Accessed Type | Description | Notes **length** | [**DecimalPayload**](decimal_payload.DecimalPayload.md) | [**DecimalPayload**](decimal_payload.DecimalPayload.md) | | [optional] **width** | str, | str, | | [optional] value must be numeric and storable in decimal.Decimal **cost** | [**Money**](money.Money.md) | [**Money**](money.Money.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md index fcb2caad8ef..465a9aa098e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md @@ -15,6 +15,6 @@ Key | Input Type | Accessed Type | Description | Notes **123-list** | str, | str, | | **$special[property.name]** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer **123Number** | decimal.Decimal, int, | decimal.Decimal, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md index 5b02d54f733..25944cfecc8 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md @@ -10,15 +10,15 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**someProp** | [dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**someProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # someProp ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md index 81d8709e432..41461ffca2f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **!reference** | [**ArrayWithValidationsInItems**](array_with_validations_in_items.ArrayWithValidationsInItems.md) | [**ArrayWithValidationsInItems**](array_with_validations_in_items.ArrayWithValidationsInItems.md) | | **from** | [**FromSchema**](from_schema.FromSchema.md) | [**FromSchema**](from_schema.FromSchema.md) | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md index ac814dbb7a4..9a9d59daca9 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **test** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md b/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md index 7fd0d485897..a722515d694 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md @@ -13,9 +13,9 @@ Key | Input Type | Accessed Type | Description | Notes **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer **petId** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer **quantity** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer -**shipDate** | str, datetime, | str, | | [optional] value must conform to RFC-3339 date-time +**shipDate** | str, datetime.datetime, | str, | | [optional] value must conform to RFC-3339 date-time **status** | str, | str, | Order Status | [optional] must be one of ["placed", "approved", "delivered", ] **complete** | bool, | BoolClass, | | [optional] if omitted the server will use the default value of False -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md b/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md index 0724cbc7206..80ff56fa6c9 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md @@ -18,7 +18,7 @@ Key | Input Type | Accessed Type | Description | Notes **category** | [**Category**](category.Category.md) | [**Category**](category.Category.md) | | [optional] **tags** | [list, tuple, ](#tags) | [tuple, ](#tags) | | [optional] **status** | str, | str, | pet status in the store | [optional] must be one of ["available", "pending", "sold", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # photoUrls diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md b/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md index 891157a5d7e..ee987b0738d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md b/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md index 254813ea6aa..9d697939dad 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md @@ -14,6 +14,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | str, | str, | | [optional] **enemyPlayer** | [**Player**](#Player) | [**Player**](#Player) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md index 0f206735b67..3c251b20176 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md index 42f342f04e1..48a3eeeca3d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md @@ -5,13 +5,13 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **quadrilateralType** | str, | str, | | **shapeType** | str, | str, | | must be one of ["Quadrilateral", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md b/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md index 8484274b825..5c92e5e448d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | str, | str, | | [optional] **baz** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_true_add_props.ReqPropsFromTrueAddProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_true_add_props.ReqPropsFromTrueAddProps.md index 90367aceef8..228afe43d7b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_true_add_props.ReqPropsFromTrueAddProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_true_add_props.ReqPropsFromTrueAddProps.md @@ -10,8 +10,8 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**invalid-name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**validName** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**invalid-name** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**validName** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**any_string_name** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_unset_add_props.ReqPropsFromUnsetAddProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_unset_add_props.ReqPropsFromUnsetAddProps.md index 54bcff73063..847009f0b9c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_unset_add_props.ReqPropsFromUnsetAddProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_unset_add_props.ReqPropsFromUnsetAddProps.md @@ -10,8 +10,8 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**invalid-name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**validName** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**invalid-name** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**validName** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md index 4c53e8eba55..57a5c1f213d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **triangleType** | str, | str, | | [optional] must be one of ["ScaleneTriangle", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md b/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md index 990ef54ede2..d36a710a7ab 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md b/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md index b0519bb08d4..0035d91ab1b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md @@ -7,7 +7,7 @@ The value may be a shape or the 'null' value. This is introduced in OAS schema > ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | The value may be a shape or the 'null' value. This is introduced in OAS schema >= 3.1. | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | The value may be a shape or the 'null' value. This is introduced in OAS schema >= 3.1. | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md index 190af88573d..90fcde5b245 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **quadrilateralType** | str, | str, | | [optional] must be one of ["SimpleQuadrilateral", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md b/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md index ab9d41e1759..cda29d44d22 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md b/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md index a0efb156fa4..e732f9dcbaf 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md @@ -13,6 +13,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | model with an invalid Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **a** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md b/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md index f33a33c034a..273c37c2251 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer **name** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md index 388f585d9c0..977f9f896ff 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md index 4a4dab30f1d..907bc29ef46 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md @@ -5,13 +5,13 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **shapeType** | str, | str, | | must be one of ["Triangle", ] **triangleType** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md b/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md index 9df6e6c9ed3..13cad06d3fd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md @@ -20,10 +20,10 @@ Key | Input Type | Accessed Type | Description | Notes **userStatus** | decimal.Decimal, int, | decimal.Decimal, | User Status | [optional] value must be a 32 bit integer **objectWithNoDeclaredProps** | [dict, frozendict.frozendict, ](#objectWithNoDeclaredProps) | [frozendict.frozendict, ](#objectWithNoDeclaredProps) | test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. | [optional] **objectWithNoDeclaredPropsNullable** | [dict, frozendict.frozendict, None, ](#objectWithNoDeclaredPropsNullable) | [frozendict.frozendict, NoneClass, ](#objectWithNoDeclaredPropsNullable) | test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. | [optional] -**anyTypeProp** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389 | [optional] -**anyTypeExceptNullProp** | [dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#anyTypeExceptNullProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#anyTypeExceptNullProp) | any type except 'null' Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. | [optional] -**anyTypePropNullable** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values. | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**anyTypeProp** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389 | [optional] +**anyTypeExceptNullProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#anyTypeExceptNullProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#anyTypeExceptNullProp) | any type except 'null' Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. | [optional] +**anyTypePropNullable** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values. | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # objectWithNoDeclaredProps @@ -50,7 +50,7 @@ any type except 'null' Here the 'type' attribute is not specified, which means t ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any type except 'null' Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any type except 'null' Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. | ### Composed Schemas (allOf/anyOf/oneOf/not) #### not diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md b/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md index 715fa30f73e..24e32223378 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md @@ -13,6 +13,6 @@ Key | Input Type | Accessed Type | Description | Notes **className** | str, | str, | | must be one of ["whale", ] **hasBaleen** | bool, | BoolClass, | | [optional] **hasTeeth** | bool, | BoolClass, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md b/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md index b4bec0deac1..27bae137e6f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **className** | str, | str, | | must be one of ["zebra", ] **type** | str, | str, | | [optional] must be one of ["plains", "mountain", "grevys", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/api_client.py b/samples/openapi3/client/petstore/python/petstore_api/api_client.py index 305b549ab8a..241ab9fac5e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/api_client.py +++ b/samples/openapi3/client/petstore/python/petstore_api/api_client.py @@ -8,44 +8,30 @@ Generated by: https://openapi-generator.tech """ +import datetime import dataclasses -from decimal import Decimal +import decimal import enum import email import json import os import io import atexit -from multiprocessing.pool import ThreadPool +from multiprocessing import pool import re import tempfile import typing import typing_extensions import urllib3 -from urllib3._collections import HTTPHeaderDict -from urllib.parse import urlparse, quote -from urllib3.fields import RequestField as RequestFieldBase +from urllib3 import _collections, fields +import urllib3.parse as parse import frozendict -from petstore_api import rest -from petstore_api.configuration import Configuration -from petstore_api.exceptions import ApiTypeError, ApiValueError -from petstore_api.schemas import ( - NoneClass, - BoolClass, - Schema, - FileIO, - BinarySchema, - date, - datetime, - none_type, - Unset, - unset, -) - - -class RequestField(RequestFieldBase): +from petstore_api import configuration, exceptions, rest, schemas + + +class RequestField(fields.RequestField): def __eq__(self, other): if not isinstance(other, RequestField): return False @@ -62,19 +48,19 @@ def default(self, obj): return float(obj) elif isinstance(obj, int): return int(obj) - elif isinstance(obj, Decimal): + elif isinstance(obj, decimal.Decimal): if obj.as_tuple().exponent >= 0: return int(obj) return float(obj) - elif isinstance(obj, NoneClass): + elif isinstance(obj, schemas.NoneClass): return None - elif isinstance(obj, BoolClass): + elif isinstance(obj, schemas.BoolClass): return bool(obj) elif isinstance(obj, (dict, frozendict.frozendict)): return {key: self.default(val) for key, val in obj.items()} elif isinstance(obj, (list, tuple)): return [self.default(item) for item in obj] - raise ApiValueError('Unable to prepare type {} for serialization'.format(obj.__class__.__name__)) + raise exceptions.ApiValueError('Unable to prepare type {} for serialization'.format(obj.__class__.__name__)) class ParameterInType(enum.Enum): @@ -131,9 +117,9 @@ def __ref6570_item_value(in_data: typing.Any, percent_encode: bool): """ if type(in_data) in {str, float, int}: if percent_encode: - return quote(str(in_data)) + return parse.quote(str(in_data)) return str(in_data) - elif isinstance(in_data, none_type): + elif isinstance(in_data, schemas.none_type): # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return None elif isinstance(in_data, list) and not in_data: @@ -142,7 +128,7 @@ def __ref6570_item_value(in_data: typing.Any, percent_encode: bool): elif isinstance(in_data, dict) and not in_data: # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return None - raise ApiValueError('Unable to generate a ref6570 item representation of {}'.format(in_data)) + raise exceptions.ApiValueError('Unable to generate a ref6570 item representation of {}'.format(in_data)) @staticmethod def _to_dict(name: str, value: str): @@ -250,7 +236,7 @@ def _ref6570_expansion( var_name_piece, named_parameter_expansion ) - elif isinstance(in_data, none_type): + elif isinstance(in_data, schemas.none_type): # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return "" elif isinstance(in_data, list): @@ -274,7 +260,7 @@ def _ref6570_expansion( named_parameter_expansion ) # bool, bytes, etc - raise ApiValueError('Unable to generate a ref6570 representation of {}'.format(in_data)) + raise exceptions.ApiValueError('Unable to generate a ref6570 representation of {}'.format(in_data)) class StyleFormSerializer(ParameterSerializerBase): @@ -355,8 +341,8 @@ class ParameterBase(JSONDetector): style: typing.Optional[ParameterStyle] explode: typing.Optional[bool] allow_reserved: typing.Optional[bool] - schema: typing.Optional[typing.Type[Schema]] - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] + schema: typing.Optional[typing.Type[schemas.Schema]] + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] _json_encoder = JSONEncoder() @@ -385,8 +371,8 @@ class PathParameter(ParameterBase, StyleSimpleSerializer): style: ParameterStyle = ParameterStyle.SIMPLE explode: bool = False allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def __serialize_label( @@ -435,7 +421,7 @@ def __serialize_simple( def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -473,8 +459,8 @@ class QueryParameter(ParameterBase, StyleFormSerializer): style: ParameterStyle = ParameterStyle.FORM explode: typing.Optional[bool] = None allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def __serialize_space_delimited( @@ -540,7 +526,7 @@ def get_prefix_separator_iterator(cls) -> typing.Optional[PrefixSeparatorIterato def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict], + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], prefix_separator_iterator: typing.Optional[PrefixSeparatorIterator] = None ) -> typing.Dict[str, str]: if cls.schema: @@ -577,7 +563,7 @@ def serialize( value = cls._serialize_json(cast_in_data, eliminate_whitespace=True) return cls._to_dict( cls.name, - next(prefix_separator_iterator) + cls.name + '=' + quote(value) + next(prefix_separator_iterator) + cls.name + '=' + parse.quote(value) ) raise NotImplementedError('Serialization of {} has not yet been implemented'.format(content_type)) @@ -589,14 +575,14 @@ class CookieParameter(ParameterBase, StyleFormSerializer): in_type: ParameterInType = ParameterInType.COOKIE explode: typing.Optional[bool] = None allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -634,13 +620,13 @@ class HeaderParameterWithoutName(ParameterBase, StyleSimpleSerializer): in_type: ParameterInType = ParameterInType.HEADER explode: bool = False allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @staticmethod - def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> HTTPHeaderDict: + def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> _collections.HTTPHeaderDict: data = tuple(t for t in in_data if t) - headers = HTTPHeaderDict() + headers = _collections.HTTPHeaderDict() if not data: return headers headers.extend(data) @@ -650,9 +636,9 @@ def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> HTTPHead def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict], + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], name: str - ) -> HTTPHeaderDict: + ) -> _collections.HTTPHeaderDict: if cls.schema: cast_in_data = cls.schema(in_data) cast_in_data = cls._json_encoder.default(cast_in_data) @@ -678,7 +664,7 @@ def deserialize( cls, in_data: str, name: str - ) -> Schema: + ) -> schemas.Schema: if cls.schema: """ simple -> header @@ -703,8 +689,8 @@ class HeaderParameter(HeaderParameterWithoutName): def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] - ) -> HTTPHeaderDict: + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] + ) -> _collections.HTTPHeaderDict: return super().serialize( in_data, cls.name @@ -737,21 +723,21 @@ class MediaType: The encoding object SHALL only apply to requestBody objects when the media type is multipart or application/x-www-form-urlencoded. """ - schema: typing.Optional[typing.Type[Schema]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None encoding: typing.Optional[typing.Dict[str, Encoding]] = None @dataclasses.dataclass class ApiResponse: response: urllib3.HTTPResponse - body: typing.Union[Unset, Schema] = unset - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset def __init__( self, response: urllib3.HTTPResponse, - body: typing.Union[Unset, Schema] = unset, - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset, + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset ): """ pycharm needs this to prevent 'Unexpected argument' warnings @@ -764,8 +750,8 @@ def __init__( @dataclasses.dataclass class ApiResponseWithoutDeserialization(ApiResponse): response: urllib3.HTTPResponse - body: typing.Union[Unset, Schema] = unset - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset class TypedDictInputVerifier: @@ -775,7 +761,7 @@ def _verify_typed_dict_inputs_oapg(cls: typing.Type[typing_extensions.TypedDict] Ensures that: - required keys are present - additional properties are not input - - value stored under required keys do not have the value unset + - value stored under required keys do not have the value schemas.unset Note: detailed value checking is done in schema classes """ missing_required_keys = [] @@ -785,16 +771,16 @@ def _verify_typed_dict_inputs_oapg(cls: typing.Type[typing_extensions.TypedDict] missing_required_keys.append(required_key) continue value = data[required_key] - if value is unset: + if value is schemas.unset: required_keys_with_unset_values.append(required_key) if missing_required_keys: - raise ApiTypeError( + raise exceptions.ApiTypeError( '{} missing {} required arguments: {}'.format( cls.__name__, len(missing_required_keys), missing_required_keys ) ) if required_keys_with_unset_values: - raise ApiValueError( + raise exceptions.ApiValueError( '{} contains invalid unset values for {} required keys: {}'.format( cls.__name__, len(required_keys_with_unset_values), required_keys_with_unset_values ) @@ -806,7 +792,7 @@ def _verify_typed_dict_inputs_oapg(cls: typing.Type[typing_extensions.TypedDict] continue disallowed_additional_keys.append(key) if disallowed_additional_keys: - raise ApiTypeError( + raise exceptions.ApiTypeError( '{} got {} unexpected keyword arguments: {}'.format( cls.__name__, len(disallowed_additional_keys), disallowed_additional_keys ) @@ -832,7 +818,7 @@ def __deserialize_json(response: urllib3.HTTPResponse) -> typing.Any: def __file_name_from_response_url(response_url: typing.Optional[str]) -> typing.Optional[str]: if response_url is None: return None - url_path = urlparse(response_url).path + url_path = parse.urlparse(response_url).path if url_path: path_basename = os.path.basename(url_path) if path_basename: @@ -900,12 +886,12 @@ def __deserialize_multipart_form_data( } @classmethod - def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuration) -> T: + def deserialize(cls, response: urllib3.HTTPResponse, configuration: configuration.Configuration) -> T: content_type = response.getheader('content-type') - deserialized_body = unset + deserialized_body = schemas.unset streamed = response.supports_chunked_reads() - deserialized_headers = unset + deserialized_headers = schemas.unset if cls.headers is not None: cls._verify_typed_dict_inputs_oapg(cls.response_cls.headers, response.headers) deserialized_headers = {} @@ -918,7 +904,7 @@ def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuratio if cls.content is not None: if content_type not in cls.content: - raise ApiValueError( + raise exceptions.ApiValueError( f"Invalid content_type returned. Content_type='{content_type}' was returned " f"when only {str(set(cls.content))} are defined for status_code={str(response.status)}" ) @@ -928,7 +914,7 @@ def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuratio return cls.response_cls( response=response, headers=deserialized_headers, - body=unset + body=schemas.unset ) if cls._content_type_is_json(content_type): @@ -964,7 +950,7 @@ class ApiClient: Ref: https://openapi-generator.tech Do not edit the class manually. - :param configuration: .Configuration object for this client + :param configuration: configuration.Configuration object for this client :param header_name: a header to pass when making calls to the API. :param header_value: a header value to pass when making calls to the API. @@ -978,19 +964,19 @@ class ApiClient: def __init__( self, - configuration: typing.Optional[Configuration] = None, + configuration: typing.Optional[configuration.Configuration] = None, header_name: typing.Optional[str] = None, header_value: typing.Optional[str] = None, cookie: typing.Optional[str] = None, pool_threads: int = 1 ): if configuration is None: - configuration = Configuration() + configuration = configuration.Configuration() self.configuration = configuration self.pool_threads = pool_threads self.rest_client = rest.RESTClientObject(configuration) - self.default_headers = HTTPHeaderDict() + self.default_headers = _collections.HTTPHeaderDict() if header_name is not None: self.default_headers[header_name] = header_value self.cookie = cookie @@ -1018,7 +1004,7 @@ def pool(self): """ if self._pool is None: atexit.register(self.close) - self._pool = ThreadPool(self.pool_threads) + self._pool = pool.ThreadPool(self.pool_threads) return self._pool @property @@ -1037,7 +1023,7 @@ def __call_api( self, resource_path: str, method: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, body: typing.Optional[typing.Union[str, bytes]] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, auth_settings: typing.Optional[typing.List[str]] = None, @@ -1047,7 +1033,7 @@ def __call_api( ) -> urllib3.HTTPResponse: # header parameters - used_headers = HTTPHeaderDict(self.default_headers) + used_headers = _collections.HTTPHeaderDict(self.default_headers) if self.cookie: headers['Cookie'] = self.cookie @@ -1082,7 +1068,7 @@ def call_api( self, resource_path: str, method: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, body: typing.Optional[typing.Union[str, bytes]] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, auth_settings: typing.Optional[typing.List[str]] = None, @@ -1108,8 +1094,8 @@ def call_api( :param stream: if True, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Also when True, if the openapi spec describes a file download, - the data will be written to a local filesystme file and the BinarySchema - instance will also inherit from FileSchema and FileIO + the data will be written to a local filesystme file and the schemas.BinarySchema + instance will also inherit from FileSchema and schemas.FileIO Default is False. :type stream: bool, optional :param timeout: timeout setting for this request. If one @@ -1158,7 +1144,7 @@ def request( self, method: str, url: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, body: typing.Optional[typing.Union[str, bytes]] = None, stream: bool = False, @@ -1210,7 +1196,7 @@ def request( timeout=timeout, body=body) else: - raise ApiValueError( + raise exceptions.ApiValueError( "http method must be `GET`, `HEAD`, `OPTIONS`," " `POST`, `PATCH`, `PUT` or `DELETE`." ) @@ -1252,9 +1238,9 @@ def update_params_for_auth(self, headers, auth_settings, need to pass in prefix_separator_iterator and need to output resource_path with query params added """ - raise ApiValueError("Auth in query not yet implemented") + raise exceptions.ApiValueError("Auth in query not yet implemented") else: - raise ApiValueError( + raise exceptions.ApiValueError( 'Authentication token must be in `query` or `header`' ) @@ -1293,7 +1279,7 @@ def _get_host_oapg( ) except IndexError: if servers: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid host index. Must be 0 <= index < %s" % len(servers) ) @@ -1309,7 +1295,7 @@ class SerializedRequestBody(typing_extensions.TypedDict, total=False): class RequestBody(StyleFormSerializer, JSONDetector): """ A request body parameter - content: content_type to MediaType Schema info + content: content_type to MediaType schemas.Schema info """ __json_encoder = JSONEncoder() content: typing.Dict[str, MediaType] @@ -1332,28 +1318,28 @@ def __serialize_text_plain(in_data: typing.Any) -> typing.Dict[str, str]: raise ValueError('Unable to serialize type frozendict.frozendict to text/plain') elif isinstance(in_data, tuple): raise ValueError('Unable to serialize type tuple to text/plain') - elif isinstance(in_data, NoneClass): + elif isinstance(in_data, schemas.NoneClass): raise ValueError('Unable to serialize type NoneClass to text/plain') - elif isinstance(in_data, BoolClass): + elif isinstance(in_data, schemas.BoolClass): raise ValueError('Unable to serialize type BoolClass to text/plain') return dict(body=str(in_data)) @classmethod - def __multipart_json_item(cls, key: str, value: Schema) -> RequestField: + def __multipart_json_item(cls, key: str, value: schemas.Schema) -> RequestField: json_value = cls.__json_encoder.default(value) request_field = RequestField(name=key, data=json.dumps(json_value)) request_field.make_multipart(content_type='application/json') return request_field @classmethod - def __multipart_form_item(cls, key: str, value: Schema) -> RequestField: + def __multipart_form_item(cls, key: str, value: schemas.Schema) -> RequestField: if isinstance(value, str): request_field = RequestField(name=key, data=str(value)) request_field.make_multipart(content_type='text/plain') elif isinstance(value, bytes): request_field = RequestField(name=key, data=value) request_field.make_multipart(content_type='application/octet-stream') - elif isinstance(value, FileIO): + elif isinstance(value, schemas.FileIO): # TODO use content.encoding to limit allowed content types if they are present request_field = RequestField.from_tuples(key, (os.path.basename(value.name), value.read())) value.close() @@ -1363,7 +1349,7 @@ def __multipart_form_item(cls, key: str, value: Schema) -> RequestField: @classmethod def __serialize_multipart_form_data( - cls, in_data: Schema + cls, in_data: schemas.Schema ) -> typing.Dict[str, typing.Tuple[RequestField, ...]]: if not isinstance(in_data, frozendict.frozendict): raise ValueError(f'Unable to serialize {in_data} to multipart/form-data because it is not a dict of data') @@ -1399,10 +1385,10 @@ def __serialize_multipart_form_data( return dict(fields=tuple(fields)) @staticmethod - def __serialize_application_octet_stream(in_data: BinarySchema) -> typing.Dict[str, bytes]: + def __serialize_application_octet_stream(in_data: schemas.BinarySchema) -> typing.Dict[str, bytes]: if isinstance(in_data, bytes): return dict(body=in_data) - # FileIO type + # schemas.FileIO type result = dict(body=in_data.read()) in_data.close() return result diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_int32_json_content_type_header/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_int32_json_content_type_header/application_json.py index 914a64e8683..5e0c8bbae86 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_int32_json_content_type_header/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_int32_json_content_type_header/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_int32_json_content_type_header/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_int32_json_content_type_header/application_json.pyi index 914a64e8683..5e0c8bbae86 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_int32_json_content_type_header/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_int32_json_content_type_header/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_number_header/schema.py b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_number_header/schema.py index 3a91eb121cb..9bc5464b4ad 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_number_header/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_number_header/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_number_header/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_number_header/schema.pyi index 3a91eb121cb..9bc5464b4ad 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_number_header/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_number_header/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_string_header/schema.py b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_string_header/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_string_header/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_string_header/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_string_header/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_string_header/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_string_header/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/headers/header_string_header/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/parameters/parameter_path_user_name/schema.py b/samples/openapi3/client/petstore/python/petstore_api/components/parameters/parameter_path_user_name/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/parameters/parameter_path_user_name/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/parameters/parameter_path_user_name/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/parameters/parameter_path_user_name/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/parameters/parameter_path_user_name/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/parameters/parameter_path_user_name/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/parameters/parameter_path_user_name/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.py index 813a338ad7b..e60b62e71da 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.pyi index 813a338ad7b..e60b62e71da 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_description_only/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_description_only/__init__.py index 9b0166e7eae..ec41a19c322 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_description_only/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_description_only/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/__init__.py index 8d70685b183..f99f1e699fc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.py index d6323dcc639..2f7fa7ddcd7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.pyi index 08e6072222c..cd0282e7344 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/header_some_header/schema.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/header_some_header/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/header_some_header/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/header_some_header/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/header_some_header/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/header_some_header/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/header_some_header/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/header_some_header/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_with_json_api_response/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_with_json_api_response/__init__.py index abd500fc875..623bc347fcb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_with_json_api_response/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_with_json_api_response/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py index 2d133a169ea..aaa577cede4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,10 +88,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_200Response': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi index 2d133a169ea..aaa577cede4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,10 +88,10 @@ class _200Response( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_200Response': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py index b5f53ee36b9..ae95589c7ef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -78,9 +78,9 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Return': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi index b5f53ee36b9..ae95589c7ef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -78,9 +78,9 @@ class _Return( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Return': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py index 992f23b9e59..5038535cb9d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -123,11 +123,11 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - description: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + description: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], discriminator: typing.Union[MetaOapg.Properties.Discriminator, str, ], - sequenceNumber: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + sequenceNumber: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AbstractStepMessage': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi index 992f23b9e59..5038535cb9d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -123,11 +123,11 @@ class AbstractStepMessage( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - description: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + description: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], discriminator: typing.Union[MetaOapg.Properties.Discriminator, str, ], - sequenceNumber: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + sequenceNumber: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AbstractStepMessage': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py index dda56812ab0..b412a7498e7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -151,7 +151,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'MapWithUndeclaredPropertiesAnytype3': return super().__new__( cls, @@ -313,14 +313,14 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], map_property: typing.Union[MetaOapg.Properties.MapProperty, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_of_map_property: typing.Union[MetaOapg.Properties.MapOfMapProperty, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - anytype_1: typing.Union[MetaOapg.Properties.Anytype1, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anytype_1: typing.Union[MetaOapg.Properties.Anytype1, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_1: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesAnytype1, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_2: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesAnytype2, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_3: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesAnytype3, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, empty_map: typing.Union[MetaOapg.Properties.EmptyMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_string: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesString, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi index 56b940d47b5..4a897d77f93 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -146,7 +146,7 @@ class AdditionalPropertiesClass( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'MapWithUndeclaredPropertiesAnytype3': return super().__new__( cls, @@ -306,14 +306,14 @@ class AdditionalPropertiesClass( *_args: typing.Union[dict, frozendict.frozendict, ], map_property: typing.Union[MetaOapg.Properties.MapProperty, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_of_map_property: typing.Union[MetaOapg.Properties.MapOfMapProperty, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - anytype_1: typing.Union[MetaOapg.Properties.Anytype1, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anytype_1: typing.Union[MetaOapg.Properties.Anytype1, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_1: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesAnytype1, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_2: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesAnytype2, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_3: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesAnytype3, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, empty_map: typing.Union[MetaOapg.Properties.EmptyMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_string: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesString, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py index aebfaca90ca..76bccf7418b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -61,7 +61,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf0': return super().__new__( cls, @@ -92,9 +92,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -114,7 +114,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf1': return super().__new__( cls, @@ -145,9 +145,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -167,7 +167,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf2': return super().__new__( cls, @@ -186,7 +186,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesValidator': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi index 74794cf3681..31db6e1dc29 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -60,7 +60,7 @@ class AdditionalPropertiesValidator( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf0': return super().__new__( cls, @@ -89,9 +89,9 @@ class AdditionalPropertiesValidator( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -111,7 +111,7 @@ class AdditionalPropertiesValidator( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf1': return super().__new__( cls, @@ -140,9 +140,9 @@ class AdditionalPropertiesValidator( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -162,7 +162,7 @@ class AdditionalPropertiesValidator( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf2': return super().__new__( cls, @@ -181,7 +181,7 @@ class AdditionalPropertiesValidator( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesValidator': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.py index 4acd9d0c4c6..d41bb2f9998 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.pyi index 37f4965c051..9803a5bf059 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.py index 6562a9c5e47..9023067c626 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.pyi index b72e97718b2..b1d4722f868 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py index c260003332c..787f8e9f7f3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -103,7 +103,7 @@ def __new__( className: typing.Union[MetaOapg.Properties.ClassName, str, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Animal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi index cddc2f66d87..6f208ed793c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -102,7 +102,7 @@ class Animal( className: typing.Union[MetaOapg.Properties.ClassName, str, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Animal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.py index 65edd46771e..0efbba4aae4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.pyi index 65edd46771e..0efbba4aae4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py index 8d08c0e4cef..2f7d59aff7d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -52,9 +52,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Uuid': return super().__new__( cls, @@ -77,9 +77,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Date': return super().__new__( cls, @@ -102,9 +102,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DateTime': return super().__new__( cls, @@ -127,9 +127,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Number': return super().__new__( cls, @@ -151,9 +151,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Binary': return super().__new__( cls, @@ -175,9 +175,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int32': return super().__new__( cls, @@ -199,9 +199,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int64': return super().__new__( cls, @@ -223,9 +223,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Double': return super().__new__( cls, @@ -247,9 +247,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Float': return super().__new__( cls, @@ -367,15 +367,15 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - uuid: typing.Union[MetaOapg.Properties.Uuid, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - date: typing.Union[MetaOapg.Properties.Date, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - number: typing.Union[MetaOapg.Properties.Number, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - binary: typing.Union[MetaOapg.Properties.Binary, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - int32: typing.Union[MetaOapg.Properties.Int32, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - int64: typing.Union[MetaOapg.Properties.Int64, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - double: typing.Union[MetaOapg.Properties.Double, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + uuid: typing.Union[MetaOapg.Properties.Uuid, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + date: typing.Union[MetaOapg.Properties.Date, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + number: typing.Union[MetaOapg.Properties.Number, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + binary: typing.Union[MetaOapg.Properties.Binary, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + int32: typing.Union[MetaOapg.Properties.Int32, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + int64: typing.Union[MetaOapg.Properties.Int64, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + double: typing.Union[MetaOapg.Properties.Double, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeAndFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi index b9ba1c925a8..f77afb2d6ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -51,9 +51,9 @@ class AnyTypeAndFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Uuid': return super().__new__( cls, @@ -76,9 +76,9 @@ class AnyTypeAndFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Date': return super().__new__( cls, @@ -101,9 +101,9 @@ class AnyTypeAndFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DateTime': return super().__new__( cls, @@ -126,9 +126,9 @@ class AnyTypeAndFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Number': return super().__new__( cls, @@ -150,9 +150,9 @@ class AnyTypeAndFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Binary': return super().__new__( cls, @@ -174,9 +174,9 @@ class AnyTypeAndFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int32': return super().__new__( cls, @@ -198,9 +198,9 @@ class AnyTypeAndFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int64': return super().__new__( cls, @@ -222,9 +222,9 @@ class AnyTypeAndFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Double': return super().__new__( cls, @@ -246,9 +246,9 @@ class AnyTypeAndFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Float': return super().__new__( cls, @@ -366,15 +366,15 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - uuid: typing.Union[MetaOapg.Properties.Uuid, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - date: typing.Union[MetaOapg.Properties.Date, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - number: typing.Union[MetaOapg.Properties.Number, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - binary: typing.Union[MetaOapg.Properties.Binary, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - int32: typing.Union[MetaOapg.Properties.Int32, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - int64: typing.Union[MetaOapg.Properties.Int64, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - double: typing.Union[MetaOapg.Properties.Double, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + uuid: typing.Union[MetaOapg.Properties.Uuid, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + date: typing.Union[MetaOapg.Properties.Date, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + number: typing.Union[MetaOapg.Properties.Number, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + binary: typing.Union[MetaOapg.Properties.Binary, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + int32: typing.Union[MetaOapg.Properties.Int32, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + int64: typing.Union[MetaOapg.Properties.Int64, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + double: typing.Union[MetaOapg.Properties.Double, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeAndFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py index cc0c1f8dc0b..d0f165cfc68 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeNotString': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi index cc0c1f8dc0b..d0f165cfc68 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class AnyTypeNotString( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeNotString': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py index 8be9cca9811..24d88b8636e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ def __new__( type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, message: typing.Union[MetaOapg.Properties.Message, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApiResponse': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi index ff45ea3e273..9cdcf47ee22 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -99,7 +99,7 @@ class ApiResponse( type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, message: typing.Union[MetaOapg.Properties.Message, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApiResponse': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py index 2bd23d918ac..566f69ddd90 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -129,7 +129,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, None, ], origin: typing.Union[MetaOapg.Properties.Origin, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Apple': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi index a6957d4a95d..a91a732654a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -110,7 +110,7 @@ class Apple( *_args: typing.Union[dict, frozendict.frozendict, None, ], origin: typing.Union[MetaOapg.Properties.Origin, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Apple': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.py index 520ae064f7c..3584b36b034 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.pyi index d8aac6be75b..1d48a228b83 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.py index a0a80e50d05..6b6c3f0de47 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ArrayHoldingAnyType': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.pyi index a0a80e50d05..6b6c3f0de47 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,7 +39,7 @@ class ArrayHoldingAnyType( def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ArrayHoldingAnyType': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py index 60a9b4ccb48..17f599b93d8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -124,7 +124,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], ArrayArrayNumber: typing.Union[MetaOapg.Properties.ArrayArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfArrayOfNumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi index f3d38250a68..4c2202a4c16 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -123,7 +123,7 @@ class ArrayOfArrayOfNumberOnly( *_args: typing.Union[dict, frozendict.frozendict, ], ArrayArrayNumber: typing.Union[MetaOapg.Properties.ArrayArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfArrayOfNumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.py index b4dfaad5967..a4a8c5681d5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.pyi index b4dfaad5967..a4a8c5681d5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py index 9671485a829..e476f43cc03 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -101,7 +101,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], ArrayNumber: typing.Union[MetaOapg.Properties.ArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfNumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi index 519282edbfc..82c48eba8f1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ class ArrayOfNumberOnly( *_args: typing.Union[dict, frozendict.frozendict, ], ArrayNumber: typing.Union[MetaOapg.Properties.ArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfNumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py index 80f1d74936c..cdfb898d04a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -218,7 +218,7 @@ def __new__( array_array_of_integer: typing.Union[MetaOapg.Properties.ArrayArrayOfInteger, list, tuple, schemas.Unset] = schemas.unset, array_array_of_model: typing.Union[MetaOapg.Properties.ArrayArrayOfModel, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi index baec5487926..9c47375ffcb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -217,7 +217,7 @@ class ArrayTest( array_array_of_integer: typing.Union[MetaOapg.Properties.ArrayArrayOfInteger, list, tuple, schemas.Unset] = schemas.unset, array_array_of_model: typing.Union[MetaOapg.Properties.ArrayArrayOfModel, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.py index a8c112936f0..2264c360abe 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.pyi index 6ce74a808ef..3c0b5df8ea3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py index 85a2e65e8b2..276c3317526 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -83,7 +83,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], lengthCm: typing.Union[MetaOapg.Properties.LengthCm, decimal.Decimal, int, float, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Banana': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi index 6d1f93eb523..513db9834c4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -82,7 +82,7 @@ class Banana( *_args: typing.Union[dict, frozendict.frozendict, ], lengthCm: typing.Union[MetaOapg.Properties.LengthCm, decimal.Decimal, int, float, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Banana': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.py index e87b2886f2c..49dd97a9b4a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.pyi index dcd83b72809..680ef95fb43 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/bar.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/bar.py index d100ad83c56..9fc0a2ad3f3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/bar.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/bar.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/bar.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/bar.pyi index d100ad83c56..9fc0a2ad3f3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/bar.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/bar.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py index d274de07120..3549c8a1a21 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'BasquePig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi index c9852303052..7b661c6af88 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -90,7 +90,7 @@ class BasquePig( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'BasquePig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean.py index 6f667d4c0b4..9254d2ad5d8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean.pyi index 6f667d4c0b4..9254d2ad5d8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean_enum.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean_enum.py index 054a26cf639..1ba57ab9c2b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean_enum.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean_enum.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean_enum.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean_enum.pyi index 1a4b4e2cf64..f852b879d33 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean_enum.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/boolean_enum.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py index c5557486b4a..5dc0abe881d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -133,7 +133,7 @@ def __new__( SCA_ETH_Flow_Points: typing.Union[MetaOapg.Properties.SCAETHFlowPoints, str, schemas.Unset] = schemas.unset, ATT_NAME: typing.Union[MetaOapg.Properties.ATTNAME, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Capitalization': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi index f20c36e7c00..85b327f6ee9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -132,7 +132,7 @@ class Capitalization( SCA_ETH_Flow_Points: typing.Union[MetaOapg.Properties.SCAETHFlowPoints, str, schemas.Unset] = schemas.unset, ATT_NAME: typing.Union[MetaOapg.Properties.ATTNAME, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Capitalization': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py index 4d81a55ebc3..10a52c127af 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], declawed: typing.Union[MetaOapg.Properties.Declawed, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -110,9 +110,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Cat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi index e1c5e797156..0d1d9634b93 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,7 +92,7 @@ class Cat( *_args: typing.Union[dict, frozendict.frozendict, ], declawed: typing.Union[MetaOapg.Properties.Declawed, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -109,9 +109,9 @@ class Cat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Cat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py index deb87d4dc65..c802e8cd33d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -94,7 +94,7 @@ def __new__( name: typing.Union[MetaOapg.Properties.Name, str, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Category': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi index b7fa1b11e63..dafbd00b2fc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -93,7 +93,7 @@ class Category( name: typing.Union[MetaOapg.Properties.Name, str, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Category': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py index 1eabe7ad6b6..3cd5b0231c1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -110,9 +110,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ChildCat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi index 06eed8ffbc9..d4f0e6e8b20 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,7 +92,7 @@ class ChildCat( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -109,9 +109,9 @@ class ChildCat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ChildCat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py index bc603d41424..a45dc9f8d82 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -78,10 +78,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _class: typing.Union[MetaOapg.Properties._Class, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ClassModel': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi index bc603d41424..a45dc9f8d82 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -78,10 +78,10 @@ class ClassModel( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _class: typing.Union[MetaOapg.Properties._Class, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ClassModel': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py index 07677d513b1..31de1cddaf6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -78,7 +78,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], client: typing.Union[MetaOapg.Properties.Client, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Client': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi index f507bfbd766..818087a33c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -77,7 +77,7 @@ class Client( *_args: typing.Union[dict, frozendict.frozendict, ], client: typing.Union[MetaOapg.Properties.Client, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Client': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py index 8e51efced11..3631e0b55c6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -127,9 +127,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComplexQuadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi index 99f12e9e071..3552968a25c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ class ComplexQuadrilateral( *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -117,9 +117,9 @@ class ComplexQuadrilateral( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComplexQuadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py index f20bd2f7773..921a91ae724 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -59,7 +59,7 @@ class MetaOapg: def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'AnyOf9': return super().__new__( @@ -98,9 +98,9 @@ def __getitem__(self, i: int) -> MetaOapg.Items: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedAnyOfDifferentTypesNoValidations': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi index f20bd2f7773..921a91ae724 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -59,7 +59,7 @@ class ComposedAnyOfDifferentTypesNoValidations( def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'AnyOf9': return super().__new__( @@ -98,9 +98,9 @@ class ComposedAnyOfDifferentTypesNoValidations( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedAnyOfDifferentTypesNoValidations': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.py index 669bdf27429..d3c4cb0ca0b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ComposedArray': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.pyi index 669bdf27429..d3c4cb0ca0b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,7 +39,7 @@ class ComposedArray( def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ComposedArray': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.py index ad71629b249..61186fe408e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.pyi index ad71629b249..61186fe408e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.py index 56ca34182d9..7042005dc5c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.pyi index 56ca34182d9..7042005dc5c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.py index a1af236b67c..c454aa9fd66 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.pyi index a1af236b67c..c454aa9fd66 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py index c627b336eac..3f27f662ab5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -49,7 +49,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedObject': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi index c627b336eac..3f27f662ab5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -49,7 +49,7 @@ class ComposedObject( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedObject': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py index e85a5dc8bbe..53b4a6441fb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -65,7 +65,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf4': return super().__new__( cls, @@ -88,7 +88,7 @@ class MetaOapg: def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'OneOf5': return super().__new__( @@ -127,9 +127,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedOneOfDifferentTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi index faae2a96d3a..c2dbfcfa0da 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -59,7 +59,7 @@ class ComposedOneOfDifferentTypes( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf4': return super().__new__( cls, @@ -82,7 +82,7 @@ class ComposedOneOfDifferentTypes( def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'OneOf5': return super().__new__( @@ -112,9 +112,9 @@ class ComposedOneOfDifferentTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedOneOfDifferentTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.py index 4b80adc51f3..ac0f9ae7c47 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.pyi index 4b80adc51f3..ac0f9ae7c47 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/currency.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/currency.py index fcbc36e52e1..0c27f94a4fe 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/currency.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/currency.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/currency.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/currency.pyi index c81cde6cd4e..90c1ed38d45 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/currency.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/currency.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py index 8ca0f15c485..6af24d53a57 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DanishPig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi index 13284fc042d..693d0d31e94 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -90,7 +90,7 @@ class DanishPig( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DanishPig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_test.py index 1a616cac271..b98d688df3c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_test.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_test.pyi index 1a616cac271..b98d688df3c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_test.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_with_validations.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_with_validations.py index eb97ef5d0cf..b5512ae1451 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_with_validations.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_with_validations.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_with_validations.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_with_validations.pyi index 2898b619005..40d2f5f988b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_with_validations.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_time_with_validations.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_with_validations.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_with_validations.py index 3a91d56af14..304f319bcab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_with_validations.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_with_validations.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_with_validations.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_with_validations.pyi index 52770358d18..ebde74438d9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_with_validations.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/date_with_validations.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/decimal_payload.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/decimal_payload.py index 8e3b63175a4..ed863860cfa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/decimal_payload.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/decimal_payload.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/decimal_payload.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/decimal_payload.pyi index 8e3b63175a4..ed863860cfa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/decimal_payload.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/decimal_payload.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py index 0a235ff72a9..e1b5ced4bef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], breed: typing.Union[MetaOapg.Properties.Breed, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -110,9 +110,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Dog': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi index 168de39cca4..7d6a832ceaf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,7 +92,7 @@ class Dog( *_args: typing.Union[dict, frozendict.frozendict, ], breed: typing.Union[MetaOapg.Properties.Breed, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -109,9 +109,9 @@ class Dog( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Dog': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.py index 264bf370a2f..d39521d5156 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.pyi index 8f8cc6ab780..82b7866197d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py index 7701809940b..936c7807878 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -156,7 +156,7 @@ def __new__( just_symbol: typing.Union[MetaOapg.Properties.JustSymbol, str, schemas.Unset] = schemas.unset, array_enum: typing.Union[MetaOapg.Properties.ArrayEnum, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumArrays': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi index fc4f4f457ef..750e7d69fad 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -135,7 +135,7 @@ class EnumArrays( just_symbol: typing.Union[MetaOapg.Properties.JustSymbol, str, schemas.Unset] = schemas.unset, array_enum: typing.Union[MetaOapg.Properties.ArrayEnum, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumArrays': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_class.py index 94278da4deb..9dbc6e2bb7d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_class.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_class.pyi index 43300ecfa71..575793cb33c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_class.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py index 788538f870f..b2ef5088b65 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -286,7 +286,7 @@ def __new__( IntegerEnumWithDefaultValue: typing.Union['integer_enum_with_default_value.IntegerEnumWithDefaultValue', schemas.Unset] = schemas.unset, IntegerEnumOneValue: typing.Union['integer_enum_one_value.IntegerEnumOneValue', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi index 06ba4534259..69a29dfb5e7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -241,7 +241,7 @@ class EnumTest( IntegerEnumWithDefaultValue: typing.Union['integer_enum_with_default_value.IntegerEnumWithDefaultValue', schemas.Unset] = schemas.unset, IntegerEnumOneValue: typing.Union['integer_enum_one_value.IntegerEnumOneValue', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py index 21a73c3c896..0abff3d1be3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -127,9 +127,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EquilateralTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi index c3774060fcb..de687ef8482 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ class EquilateralTriangle( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -117,9 +117,9 @@ class EquilateralTriangle( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EquilateralTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py index bf6b814d6b0..33dfb3b704c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -80,7 +80,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], sourceURI: typing.Union[MetaOapg.Properties.SourceURI, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'File': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi index 8d1d03284df..7a103a71e92 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -79,7 +79,7 @@ class File( *_args: typing.Union[dict, frozendict.frozendict, ], sourceURI: typing.Union[MetaOapg.Properties.SourceURI, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'File': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py index a126ef411dc..be6083e354f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -118,7 +118,7 @@ def __new__( file: typing.Union['file.File', schemas.Unset] = schemas.unset, files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FileSchemaTestClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi index 7df02dbb498..45e358d4fe8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -117,7 +117,7 @@ class FileSchemaTestClass( file: typing.Union['file.File', schemas.Unset] = schemas.unset, files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FileSchemaTestClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py index cf4c04e770e..7530f4cf627 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -81,7 +81,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union['bar.Bar', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Foo': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi index 955ab1b06e9..35cbb2d45f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -80,7 +80,7 @@ class Foo( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union['bar.Bar', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Foo': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py index f842770dcda..0c83c93067a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -436,7 +436,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], byte: typing.Union[MetaOapg.Properties.Byte, str, ], - date: typing.Union[MetaOapg.Properties.Date, str, date, ], + date: typing.Union[MetaOapg.Properties.Date, str, datetime.date, ], number: typing.Union[MetaOapg.Properties.Number, decimal.Decimal, int, float, ], password: typing.Union[MetaOapg.Properties.Password, str, ], integer: typing.Union[MetaOapg.Properties.Integer, decimal.Decimal, int, schemas.Unset] = schemas.unset, @@ -449,14 +449,14 @@ def __new__( arrayWithUniqueItems: typing.Union[MetaOapg.Properties.ArrayWithUniqueItems, list, tuple, schemas.Unset] = schemas.unset, string: typing.Union[MetaOapg.Properties.String, str, schemas.Unset] = schemas.unset, binary: typing.Union[MetaOapg.Properties.Binary, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime, schemas.Unset] = schemas.unset, + dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, uuid: typing.Union[MetaOapg.Properties.Uuid, str, uuid.UUID, schemas.Unset] = schemas.unset, uuidNoExample: typing.Union[MetaOapg.Properties.UuidNoExample, str, uuid.UUID, schemas.Unset] = schemas.unset, pattern_with_digits: typing.Union[MetaOapg.Properties.PatternWithDigits, str, schemas.Unset] = schemas.unset, pattern_with_digits_and_delimiter: typing.Union[MetaOapg.Properties.PatternWithDigitsAndDelimiter, str, schemas.Unset] = schemas.unset, noneProp: typing.Union[MetaOapg.Properties.NoneProp, None, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FormatTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi index 1184866ab47..15013482c78 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -356,7 +356,7 @@ class FormatTest( cls, *_args: typing.Union[dict, frozendict.frozendict, ], byte: typing.Union[MetaOapg.Properties.Byte, str, ], - date: typing.Union[MetaOapg.Properties.Date, str, date, ], + date: typing.Union[MetaOapg.Properties.Date, str, datetime.date, ], number: typing.Union[MetaOapg.Properties.Number, decimal.Decimal, int, float, ], password: typing.Union[MetaOapg.Properties.Password, str, ], integer: typing.Union[MetaOapg.Properties.Integer, decimal.Decimal, int, schemas.Unset] = schemas.unset, @@ -369,14 +369,14 @@ class FormatTest( arrayWithUniqueItems: typing.Union[MetaOapg.Properties.ArrayWithUniqueItems, list, tuple, schemas.Unset] = schemas.unset, string: typing.Union[MetaOapg.Properties.String, str, schemas.Unset] = schemas.unset, binary: typing.Union[MetaOapg.Properties.Binary, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime, schemas.Unset] = schemas.unset, + dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, uuid: typing.Union[MetaOapg.Properties.Uuid, str, uuid.UUID, schemas.Unset] = schemas.unset, uuidNoExample: typing.Union[MetaOapg.Properties.UuidNoExample, str, uuid.UUID, schemas.Unset] = schemas.unset, pattern_with_digits: typing.Union[MetaOapg.Properties.PatternWithDigits, str, schemas.Unset] = schemas.unset, pattern_with_digits_and_delimiter: typing.Union[MetaOapg.Properties.PatternWithDigitsAndDelimiter, str, schemas.Unset] = schemas.unset, noneProp: typing.Union[MetaOapg.Properties.NoneProp, None, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FormatTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py index dbac996d81f..0b6b866807b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -89,7 +89,7 @@ def __new__( data: typing.Union[MetaOapg.Properties.Data, str, schemas.Unset] = schemas.unset, id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FromSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi index 9435dd6fd42..ae92aa28cdc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,7 +88,7 @@ class FromSchema( data: typing.Union[MetaOapg.Properties.Data, str, schemas.Unset] = schemas.unset, id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FromSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py index 93f0f44d0ba..93a083d0a04 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -90,10 +90,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Fruit': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi index 93f0f44d0ba..93a083d0a04 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -90,10 +90,10 @@ class Fruit( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Fruit': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py index 8d0f284fd0a..678aa0584f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -55,9 +55,9 @@ def one_of2() -> typing.Type['banana_req.BananaReq']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FruitReq': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi index 8d0f284fd0a..678aa0584f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -55,9 +55,9 @@ class FruitReq( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FruitReq': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py index df2662b121c..f06c62a9070 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -90,10 +90,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GmFruit': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi index df2662b121c..f06c62a9070 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -90,10 +90,10 @@ class GmFruit( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GmFruit': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py index 4205cd674ab..e8eab53491d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,7 +92,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], pet_type: typing.Union[MetaOapg.Properties.PetType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GrandparentAnimal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi index c0ce83c1fc1..ddfc5fa9db1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -91,7 +91,7 @@ class GrandparentAnimal( *_args: typing.Union[dict, frozendict.frozendict, ], pet_type: typing.Union[MetaOapg.Properties.PetType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GrandparentAnimal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py index 847357daffe..09f822141d7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -89,7 +89,7 @@ def __new__( bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HasOnlyReadOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi index 4b352484fcd..09497897fd2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,7 +88,7 @@ class HasOnlyReadOnly( bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HasOnlyReadOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py index 94049e63e7d..1bc74a9e14e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -106,7 +106,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], NullableMessage: typing.Union[MetaOapg.Properties.NullableMessage, None, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HealthCheckResult': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi index 0639ea365b8..63dd7e97bfa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -105,7 +105,7 @@ class HealthCheckResult( *_args: typing.Union[dict, frozendict.frozendict, ], NullableMessage: typing.Union[MetaOapg.Properties.NullableMessage, None, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HealthCheckResult': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum.py index 8c5b33437f0..c16ac136b6c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum.pyi index ad667f19b3c..e224fa6cc1a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_big.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_big.py index 2720e46c586..19fbd172b05 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_big.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_big.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_big.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_big.pyi index 09f1d56bb78..12adac80200 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_big.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_big.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_one_value.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_one_value.py index 0c951b29333..d28f7f0fe02 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_one_value.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_one_value.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_one_value.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_one_value.pyi index b456cefb102..01c0587455a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_one_value.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_one_value.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_with_default_value.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_with_default_value.py index 6df854caee7..e0e51df9600 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_with_default_value.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_with_default_value.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_with_default_value.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_with_default_value.pyi index f18aa469d28..e54cdccd570 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_with_default_value.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_enum_with_default_value.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_max10.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_max10.py index e28943c0b2e..d48a571dfd8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_max10.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_max10.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_max10.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_max10.pyi index 7e0c4ee3373..2914af5ad49 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_max10.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_max10.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_min15.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_min15.py index 7573503958f..2be4d93900b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_min15.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_min15.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_min15.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_min15.pyi index 73d4df6c230..2de6b22e5ac 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_min15.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/integer_min15.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py index 103e5ac4822..9f28f29ee3b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -127,9 +127,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'IsoscelesTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi index d6879946aef..875124ffa09 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ class IsoscelesTriangle( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -117,9 +117,9 @@ class IsoscelesTriangle( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'IsoscelesTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py index dc25b9d2d52..27fd344174f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -67,9 +67,9 @@ def one_of2() -> typing.Type['json_patch_request_move_copy.JSONPatchRequestMoveC def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -80,7 +80,7 @@ def __new__( def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'JSONPatchRequest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi index dc25b9d2d52..27fd344174f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -67,9 +67,9 @@ class JSONPatchRequest( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -80,7 +80,7 @@ class JSONPatchRequest( def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'JSONPatchRequest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.py index ff5f34b9351..e52230e217f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -127,7 +127,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], op: typing.Union[MetaOapg.Properties.Op, str, ], path: typing.Union[MetaOapg.Properties.Path, str, ], - value: typing.Union[MetaOapg.Properties.Value, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + value: typing.Union[MetaOapg.Properties.Value, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'JSONPatchRequestAddReplaceTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.pyi index 07371360978..c9966de8ca0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -115,7 +115,7 @@ class JSONPatchRequestAddReplaceTest( *_args: typing.Union[dict, frozendict.frozendict, ], op: typing.Union[MetaOapg.Properties.Op, str, ], path: typing.Union[MetaOapg.Properties.Path, str, ], - value: typing.Union[MetaOapg.Properties.Value, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + value: typing.Union[MetaOapg.Properties.Value, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'JSONPatchRequestAddReplaceTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.py index ef492e66e38..346e1bc8ed1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.pyi index 1a773a64a98..74009266472 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.py index 9997d4cf8f3..c47c032de95 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.pyi index 17210736440..59c01bc3cff 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py index 50e0cf29c81..05ac5f7ea8f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -68,9 +68,9 @@ def one_of2() -> typing.Type['pig.Pig']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Mammal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi index 50e0cf29c81..05ac5f7ea8f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -68,9 +68,9 @@ class Mammal( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Mammal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py index 54d32f0c9a1..ac79eb6901c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -252,7 +252,7 @@ def __new__( direct_map: typing.Union[MetaOapg.Properties.DirectMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, indirect_map: typing.Union['string_boolean_map.StringBooleanMap', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MapTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi index de6fc4e3c9b..5c83f56ab51 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -237,7 +237,7 @@ class MapTest( direct_map: typing.Union[MetaOapg.Properties.DirectMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, indirect_map: typing.Union['string_boolean_map.StringBooleanMap', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MapTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py index 6996fa0f3b8..d32cf3663f8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -129,10 +129,10 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], uuid: typing.Union[MetaOapg.Properties.Uuid, str, uuid.UUID, schemas.Unset] = schemas.unset, - dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime, schemas.Unset] = schemas.unset, + dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, map: typing.Union[MetaOapg.Properties.Map, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MixedPropertiesAndAdditionalPropertiesClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi index acc8bd5a7af..c98da1ebbd2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -127,10 +127,10 @@ class MixedPropertiesAndAdditionalPropertiesClass( cls, *_args: typing.Union[dict, frozendict.frozendict, ], uuid: typing.Union[MetaOapg.Properties.Uuid, str, uuid.UUID, schemas.Unset] = schemas.unset, - dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime, schemas.Unset] = schemas.unset, + dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, map: typing.Union[MetaOapg.Properties.Map, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MixedPropertiesAndAdditionalPropertiesClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py index 9384f79e4e2..bda3fe2bb6b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -99,7 +99,7 @@ def __new__( amount: typing.Union[MetaOapg.Properties.Amount, str, ], currency: 'currency.Currency', _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Money': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi index 76dc5460264..69d27ef1fc8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -98,7 +98,7 @@ class Money( amount: typing.Union[MetaOapg.Properties.Amount, str, ], currency: 'currency.Currency', _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Money': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py index 67d26952185..5c08e8a0612 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -103,11 +103,11 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, ], snake_case: typing.Union[MetaOapg.Properties.SnakeCase, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Name': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi index 67d26952185..5c08e8a0612 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -103,11 +103,11 @@ class Name( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, ], snake_case: typing.Union[MetaOapg.Properties.SnakeCase, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Name': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.py index 62890b1bd0c..b87f0fcc62c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.pyi index a13796738cc..a61c9c26450 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py index f606bad1fe1..0292c3700ef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -167,7 +167,7 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[None, str, date, ], + *_args: typing.Union[None, str, datetime.date, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'DateProp': return super().__new__( @@ -196,7 +196,7 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[None, str, datetime, ], + *_args: typing.Union[None, str, datetime.datetime, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'DatetimeProp': return super().__new__( @@ -268,7 +268,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -318,7 +318,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -413,7 +413,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -472,7 +472,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -535,7 +535,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -670,8 +670,8 @@ def __new__( number_prop: typing.Union[MetaOapg.Properties.NumberProp, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, boolean_prop: typing.Union[MetaOapg.Properties.BooleanProp, None, bool, schemas.Unset] = schemas.unset, string_prop: typing.Union[MetaOapg.Properties.StringProp, None, str, schemas.Unset] = schemas.unset, - date_prop: typing.Union[MetaOapg.Properties.DateProp, None, str, date, schemas.Unset] = schemas.unset, - datetime_prop: typing.Union[MetaOapg.Properties.DatetimeProp, None, str, datetime, schemas.Unset] = schemas.unset, + date_prop: typing.Union[MetaOapg.Properties.DateProp, None, str, datetime.date, schemas.Unset] = schemas.unset, + datetime_prop: typing.Union[MetaOapg.Properties.DatetimeProp, None, str, datetime.datetime, schemas.Unset] = schemas.unset, array_nullable_prop: typing.Union[MetaOapg.Properties.ArrayNullableProp, list, tuple, None, schemas.Unset] = schemas.unset, array_and_items_nullable_prop: typing.Union[MetaOapg.Properties.ArrayAndItemsNullableProp, list, tuple, None, schemas.Unset] = schemas.unset, array_items_nullable: typing.Union[MetaOapg.Properties.ArrayItemsNullable, list, tuple, schemas.Unset] = schemas.unset, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi index c90de6b9c46..27f9057f2da 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -166,7 +166,7 @@ class NullableClass( def __new__( cls, - *_args: typing.Union[None, str, date, ], + *_args: typing.Union[None, str, datetime.date, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'DateProp': return super().__new__( @@ -195,7 +195,7 @@ class NullableClass( def __new__( cls, - *_args: typing.Union[None, str, datetime, ], + *_args: typing.Union[None, str, datetime.datetime, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'DatetimeProp': return super().__new__( @@ -267,7 +267,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -317,7 +317,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -412,7 +412,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -470,7 +470,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -533,7 +533,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -668,8 +668,8 @@ class NullableClass( number_prop: typing.Union[MetaOapg.Properties.NumberProp, None, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, boolean_prop: typing.Union[MetaOapg.Properties.BooleanProp, None, bool, schemas.Unset] = schemas.unset, string_prop: typing.Union[MetaOapg.Properties.StringProp, None, str, schemas.Unset] = schemas.unset, - date_prop: typing.Union[MetaOapg.Properties.DateProp, None, str, date, schemas.Unset] = schemas.unset, - datetime_prop: typing.Union[MetaOapg.Properties.DatetimeProp, None, str, datetime, schemas.Unset] = schemas.unset, + date_prop: typing.Union[MetaOapg.Properties.DateProp, None, str, datetime.date, schemas.Unset] = schemas.unset, + datetime_prop: typing.Union[MetaOapg.Properties.DatetimeProp, None, str, datetime.datetime, schemas.Unset] = schemas.unset, array_nullable_prop: typing.Union[MetaOapg.Properties.ArrayNullableProp, list, tuple, None, schemas.Unset] = schemas.unset, array_and_items_nullable_prop: typing.Union[MetaOapg.Properties.ArrayAndItemsNullableProp, list, tuple, None, schemas.Unset] = schemas.unset, array_items_nullable: typing.Union[MetaOapg.Properties.ArrayItemsNullable, list, tuple, schemas.Unset] = schemas.unset, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py index 3bac7126c56..63a02a30028 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -57,9 +57,9 @@ def one_of1() -> typing.Type['quadrilateral.Quadrilateral']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NullableShape': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi index 3bac7126c56..63a02a30028 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -57,9 +57,9 @@ class NullableShape( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NullableShape': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.py index 025b912b6e4..c0974dd60a3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.pyi index 025b912b6e4..c0974dd60a3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number.py index 7210b911ced..8e0b8219f47 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number.pyi index 7210b911ced..8e0b8219f47 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py index c18f37e67cf..fc47c1e6511 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -78,7 +78,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], JustNumber: typing.Union[MetaOapg.Properties.JustNumber, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi index 2133b6429a0..17f9472cdf0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -77,7 +77,7 @@ class NumberOnly( *_args: typing.Union[dict, frozendict.frozendict, ], JustNumber: typing.Union[MetaOapg.Properties.JustNumber, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_with_validations.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_with_validations.py index b24f76d550c..14d3f6dfbb6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_with_validations.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_with_validations.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_with_validations.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_with_validations.pyi index 4e92a920061..63aac687dc7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_with_validations.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_with_validations.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_interface.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_interface.py index 05dc6ddd565..b067a8e0f9e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_interface.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_interface.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_interface.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_interface.pyi index 05dc6ddd565..b067a8e0f9e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_interface.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_interface.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py index 590bcb645c0..2ea13684c29 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -96,7 +96,7 @@ def __new__( arg: typing.Union[MetaOapg.Properties.Arg, str, ], args: typing.Union[MetaOapg.Properties.Args, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithArgAndArgsProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi index e696064c770..d0f1247d49b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -95,7 +95,7 @@ class ObjectModelWithArgAndArgsProperties( arg: typing.Union[MetaOapg.Properties.Arg, str, ], args: typing.Union[MetaOapg.Properties.Args, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithArgAndArgsProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py index 2accda4b926..b49cd12c44e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -111,7 +111,7 @@ def __new__( myString: typing.Union['string.String', schemas.Unset] = schemas.unset, myBoolean: typing.Union['boolean.Boolean', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithRefProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi index 1b38a8ec3f5..8fb19b2004b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -110,7 +110,7 @@ class ObjectModelWithRefProps( myString: typing.Union['string.String', schemas.Unset] = schemas.unset, myBoolean: typing.Union['boolean.Boolean', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithRefProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py index f948b60ebcd..c6941639fe6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -104,10 +104,10 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - test: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + test: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -125,9 +125,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithAllOfWithReqTestPropFromUnsetAddProp': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi index 6d89ba56b24..d0a6ef555b2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -103,10 +103,10 @@ class ObjectWithAllOfWithReqTestPropFromUnsetAddProp( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - test: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + test: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -124,9 +124,9 @@ class ObjectWithAllOfWithReqTestPropFromUnsetAddProp( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithAllOfWithReqTestPropFromUnsetAddProp': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py index eb5af513e7f..f4a8972b796 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -106,7 +106,7 @@ def __new__( width: typing.Union[MetaOapg.Properties.Width, str, schemas.Unset] = schemas.unset, cost: typing.Union['money.Money', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDecimalProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi index 19bfb1eab2c..93413f56b87 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -105,7 +105,7 @@ class ObjectWithDecimalProperties( width: typing.Union[MetaOapg.Properties.Width, str, schemas.Unset] = schemas.unset, cost: typing.Union['money.Money', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDecimalProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py index 98ad40a691f..591fcb8bc47 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -103,7 +103,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDifficultlyNamedProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi index d4ba56acf32..254b092bb53 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -102,7 +102,7 @@ class ObjectWithDifficultlyNamedProps( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDifficultlyNamedProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py index 4779bb42a51..dc26d166878 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -67,9 +67,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -115,9 +115,9 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInlineCompositionProperty': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi index 9d91a3ec3b5..6f11a40b004 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -60,9 +60,9 @@ class ObjectWithInlineCompositionProperty( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -108,9 +108,9 @@ class ObjectWithInlineCompositionProperty( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInlineCompositionProperty': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py index 9790399e2ab..910dff05bda 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -98,7 +98,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInvalidNamedRefedProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi index bcd1f468045..b8067346f13 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -97,7 +97,7 @@ class ObjectWithInvalidNamedRefedProperties( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInvalidNamedRefedProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py index b013141a0b0..0060caacf91 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -78,7 +78,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], test: typing.Union[MetaOapg.Properties.Test, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithOptionalTestProp': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi index 9813cb0a9bd..b5e675deb42 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -77,7 +77,7 @@ class ObjectWithOptionalTestProp( *_args: typing.Union[dict, frozendict.frozendict, ], test: typing.Union[MetaOapg.Properties.Test, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithOptionalTestProp': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py index a45efc66077..601a848991e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -41,7 +41,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithValidations': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi index d1937c96fa0..7788e22c02e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -36,7 +36,7 @@ class ObjectWithValidations( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithValidations': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py index 816c0443e32..21ccbf51b90 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -156,11 +156,11 @@ def __new__( id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, petId: typing.Union[MetaOapg.Properties.PetId, decimal.Decimal, int, schemas.Unset] = schemas.unset, quantity: typing.Union[MetaOapg.Properties.Quantity, decimal.Decimal, int, schemas.Unset] = schemas.unset, - shipDate: typing.Union[MetaOapg.Properties.ShipDate, str, datetime, schemas.Unset] = schemas.unset, + shipDate: typing.Union[MetaOapg.Properties.ShipDate, str, datetime.datetime, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, complete: typing.Union[MetaOapg.Properties.Complete, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Order': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi index 55c94a53554..59e7206ca28 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -144,11 +144,11 @@ class Order( id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, petId: typing.Union[MetaOapg.Properties.PetId, decimal.Decimal, int, schemas.Unset] = schemas.unset, quantity: typing.Union[MetaOapg.Properties.Quantity, decimal.Decimal, int, schemas.Unset] = schemas.unset, - shipDate: typing.Union[MetaOapg.Properties.ShipDate, str, datetime, schemas.Unset] = schemas.unset, + shipDate: typing.Union[MetaOapg.Properties.ShipDate, str, datetime.datetime, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, complete: typing.Union[MetaOapg.Properties.Complete, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Order': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py index 69ecc149441..20c55a6593f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -60,7 +60,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ParentPet': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi index 69ecc149441..20c55a6593f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -60,7 +60,7 @@ class ParentPet( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ParentPet': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py index 36a90b4a83a..fc70e2a69ef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -221,7 +221,7 @@ def __new__( tags: typing.Union[MetaOapg.Properties.Tags, list, tuple, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pet': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi index 36dabb6edb7..fd6e6f38327 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -209,7 +209,7 @@ class Pet( tags: typing.Union[MetaOapg.Properties.Tags, list, tuple, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pet': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py index 90307f425a7..173f555d8f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -62,9 +62,9 @@ def one_of1() -> typing.Type['danish_pig.DanishPig']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi index 90307f425a7..173f555d8f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -62,9 +62,9 @@ class Pig( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py index 4dd908f27ce..0463a500012 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -94,7 +94,7 @@ def __new__( name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, enemyPlayer: typing.Union['Player', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Player': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi index f0147c27018..47c159e7f62 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -93,7 +93,7 @@ class Player( name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, enemyPlayer: typing.Union['Player', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Player': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py index d0e9126861c..f0e84cd0be3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -62,9 +62,9 @@ def one_of1() -> typing.Type['complex_quadrilateral.ComplexQuadrilateral']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Quadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi index d0e9126861c..f0e84cd0be3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -62,9 +62,9 @@ class Quadrilateral( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Quadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py index 2ad28343c1d..834fe12a918 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -110,11 +110,11 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'QuadrilateralInterface': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi index 8d12a76ab73..b686e9f5c37 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -101,11 +101,11 @@ class QuadrilateralInterface( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'QuadrilateralInterface': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py index 7fc271136af..63028b284e1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -89,7 +89,7 @@ def __new__( bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, baz: typing.Union[MetaOapg.Properties.Baz, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReadOnlyFirst': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi index c0edd66c0bd..b0c235125a7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,7 +88,7 @@ class ReadOnlyFirst( bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, baz: typing.Union[MetaOapg.Properties.Baz, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReadOnlyFirst': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.py index cf4301df48e..9ae4ca9e2c1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.pyi index c8b0ef665b8..d99fb137a35 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.py index 53624f09f05..04632f7545f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -85,9 +85,9 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - validName: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + validName: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'ReqPropsFromTrueAddProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.pyi index 9049321b409..768d950f519 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -84,9 +84,9 @@ class ReqPropsFromTrueAddProps( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - validName: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + validName: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'ReqPropsFromTrueAddProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py index 9767c51139a..65e6184a024 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -84,9 +84,9 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - validName: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + validName: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReqPropsFromUnsetAddProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi index 49f8af5357b..ccc0ba35fbf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -83,9 +83,9 @@ class ReqPropsFromUnsetAddProps( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - validName: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + validName: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReqPropsFromUnsetAddProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py index e4afb6b611c..690c8a63313 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -127,9 +127,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ScaleneTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi index f0031066cf5..635aad88dbf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ class ScaleneTriangle( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -117,9 +117,9 @@ class ScaleneTriangle( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ScaleneTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.py index 9d1b7a2ea26..03c8e03a6d2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.pyi index 9d1b7a2ea26..03c8e03a6d2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.py index 6a0a24ba184..62995e333c8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.pyi index 745ce62f41b..be4cf66c7eb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py index 5b6619d783e..294f6c18c29 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -62,9 +62,9 @@ def one_of1() -> typing.Type['quadrilateral.Quadrilateral']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Shape': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi index 5b6619d783e..294f6c18c29 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -62,9 +62,9 @@ class Shape( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Shape': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py index cec325aab0f..946ae392815 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -66,9 +66,9 @@ def one_of2() -> typing.Type['quadrilateral.Quadrilateral']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ShapeOrNull': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi index cec325aab0f..946ae392815 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -66,9 +66,9 @@ class ShapeOrNull( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ShapeOrNull': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py index 2d3e8c589f3..7ad083471d2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -127,9 +127,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SimpleQuadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi index 3bd62dde6c7..d90b947d876 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ class SimpleQuadrilateral( *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -117,9 +117,9 @@ class SimpleQuadrilateral( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SimpleQuadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py index 76fc5704f1e..2715bfae816 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -48,9 +48,9 @@ def all_of0() -> typing.Type['object_interface.ObjectInterface']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeObject': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi index 76fc5704f1e..2715bfae816 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -48,9 +48,9 @@ class SomeObject( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeObject': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py index f0d43b4393e..5de2a162114 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -80,7 +80,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], a: typing.Union[MetaOapg.Properties.A, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SpecialModelName': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi index c27744929ac..4949978ada7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -79,7 +79,7 @@ class SpecialModelName( *_args: typing.Union[dict, frozendict.frozendict, ], a: typing.Union[MetaOapg.Properties.A, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SpecialModelName': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string.py index 9e0907b4269..e9b44bb91ba 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string.pyi index 9e0907b4269..e9b44bb91ba 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.py index 78b77268b74..65e8f2db3b8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.pyi index 02671da99a6..04198034274 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.py index 341a2152799..16505771780 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.pyi index 341a2152799..16505771780 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum_with_default_value.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum_with_default_value.py index a9528b8c5a8..49681f57679 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum_with_default_value.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum_with_default_value.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum_with_default_value.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum_with_default_value.pyi index b0dd2870744..474eeeb702b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum_with_default_value.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum_with_default_value.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_with_validation.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_with_validation.py index 5465737664c..660e82a01f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_with_validation.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_with_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_with_validation.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_with_validation.pyi index df0be025130..f7093c12cf8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_with_validation.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_with_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py index a7445a9fd6d..44ded97fc9a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -89,7 +89,7 @@ def __new__( id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Tag': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi index a651e9ad2b5..3baa63e69d2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,7 +88,7 @@ class Tag( id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Tag': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py index acd20cbd9ed..e14087bdf14 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -68,9 +68,9 @@ def one_of2() -> typing.Type['scalene_triangle.ScaleneTriangle']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Triangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi index acd20cbd9ed..e14087bdf14 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -68,9 +68,9 @@ class Triangle( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Triangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py index b1832e91b0d..f3c24f45173 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -110,11 +110,11 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'TriangleInterface': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi index 980d059a12e..8247f6ea2dc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -101,11 +101,11 @@ class TriangleInterface( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'TriangleInterface': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py index 566d6129b30..fa8d9b24d60 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -67,7 +67,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithNoDeclaredPropsNullable': return super().__new__( cls, @@ -90,9 +90,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeExceptNullProp': return super().__new__( cls, @@ -257,11 +257,11 @@ def __new__( userStatus: typing.Union[MetaOapg.Properties.UserStatus, decimal.Decimal, int, schemas.Unset] = schemas.unset, objectWithNoDeclaredProps: typing.Union[MetaOapg.Properties.ObjectWithNoDeclaredProps, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, objectWithNoDeclaredPropsNullable: typing.Union[MetaOapg.Properties.ObjectWithNoDeclaredPropsNullable, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, - anyTypeProp: typing.Union[MetaOapg.Properties.AnyTypeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - anyTypeExceptNullProp: typing.Union[MetaOapg.Properties.AnyTypeExceptNullProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - anyTypePropNullable: typing.Union[MetaOapg.Properties.AnyTypePropNullable, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypeProp: typing.Union[MetaOapg.Properties.AnyTypeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypeExceptNullProp: typing.Union[MetaOapg.Properties.AnyTypeExceptNullProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypePropNullable: typing.Union[MetaOapg.Properties.AnyTypePropNullable, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'User': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi index f8059a3224a..7eaa1451d5b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -66,7 +66,7 @@ class User( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithNoDeclaredPropsNullable': return super().__new__( cls, @@ -89,9 +89,9 @@ class User( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeExceptNullProp': return super().__new__( cls, @@ -256,11 +256,11 @@ class User( userStatus: typing.Union[MetaOapg.Properties.UserStatus, decimal.Decimal, int, schemas.Unset] = schemas.unset, objectWithNoDeclaredProps: typing.Union[MetaOapg.Properties.ObjectWithNoDeclaredProps, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, objectWithNoDeclaredPropsNullable: typing.Union[MetaOapg.Properties.ObjectWithNoDeclaredPropsNullable, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, - anyTypeProp: typing.Union[MetaOapg.Properties.AnyTypeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - anyTypeExceptNullProp: typing.Union[MetaOapg.Properties.AnyTypeExceptNullProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - anyTypePropNullable: typing.Union[MetaOapg.Properties.AnyTypePropNullable, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypeProp: typing.Union[MetaOapg.Properties.AnyTypeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypeExceptNullProp: typing.Union[MetaOapg.Properties.AnyTypeExceptNullProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypePropNullable: typing.Union[MetaOapg.Properties.AnyTypePropNullable, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'User': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/uuid_string.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/uuid_string.py index e3431cbc950..53b39215b41 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/uuid_string.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/uuid_string.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/uuid_string.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/uuid_string.pyi index 80495060cf8..5db79ef7801 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/uuid_string.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/uuid_string.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py index 59750083448..e3bb9d9bb34 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -122,7 +122,7 @@ def __new__( hasBaleen: typing.Union[MetaOapg.Properties.HasBaleen, bool, schemas.Unset] = schemas.unset, hasTeeth: typing.Union[MetaOapg.Properties.HasTeeth, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Whale': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi index f9bf636dec8..33de17a22df 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -112,7 +112,7 @@ class Whale( hasBaleen: typing.Union[MetaOapg.Properties.HasBaleen, bool, schemas.Unset] = schemas.unset, hasTeeth: typing.Union[MetaOapg.Properties.HasTeeth, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Whale': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.py index 6095ebd1d46..f2ec22584e7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -139,7 +139,7 @@ def __new__( className: typing.Union[MetaOapg.Properties.ClassName, str, ], type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'Zebra': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.pyi index 8f6a077c6e9..0017425382c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -118,7 +118,7 @@ class Zebra( className: typing.Union[MetaOapg.Properties.ClassName, str, ], type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'Zebra': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.py index 23e3a8eb244..10390e827fe 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.pyi index 80ffabab49a..a94b0ff5266 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/response_for_200/__init__.py index 49ddc156cd7..a1285556b6d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.py index e1541285b82..59643f7a3e7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.pyi index 1d28e515b43..401510a1de9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_0/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_0/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_1/schema.py index 07a314101b5..58be4bca6b0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_1/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_1/schema.pyi index 42cb4dbbd78..08712837486 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_1/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_2/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_2/schema.py index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_2/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_2/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_2/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_2/schema.pyi index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_2/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_2/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_3/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_3/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_3/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_3/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_3/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_3/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_3/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_3/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_4/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_4/schema.py index 07a314101b5..58be4bca6b0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_4/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_4/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_4/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_4/schema.pyi index 42cb4dbbd78..08712837486 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_4/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_4/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_5/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_5/schema.py index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_5/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_5/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_5/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_5/schema.pyi index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_5/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/parameter_5/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.py index b60b4ef774d..b4731697d18 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.pyi index 81e46cb75b4..8d48cfe1097 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.py index 2571462d292..edf9acc0d8f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.pyi index 26f9bec7f5a..9fb1b2691a0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_1/schema.py index 732ad905764..a41443c6705 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_1/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_1/schema.pyi index e61e61ae246..348f499a675 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_1/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.py index 2571462d292..edf9acc0d8f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.pyi index 26f9bec7f5a..9fb1b2691a0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_3/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_3/schema.py index 732ad905764..a41443c6705 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_3/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_3/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_3/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_3/schema.pyi index e61e61ae246..348f499a675 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_3/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_3/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_4/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_4/schema.py index 99c81ceab5c..1232424ffaa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_4/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_4/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_4/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_4/schema.pyi index cf24bad31ec..ebd439f044d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_4/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_4/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_5/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_5/schema.py index a4da9233c2b..027be1b4467 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_5/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_5/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_5/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_5/schema.pyi index 1890f987e22..66fd9d4cd44 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_5/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_5/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py index 064b77e346c..f324de47bff 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -156,7 +156,7 @@ def __new__( enum_form_string_array: typing.Union[MetaOapg.Properties.EnumFormStringArray, list, tuple, schemas.Unset] = schemas.unset, enum_form_string: typing.Union[MetaOapg.Properties.EnumFormString, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi index 9094f1ebdc9..1e5e1d9f4b8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -134,7 +134,7 @@ class ApplicationXWwwFormUrlencoded( enum_form_string_array: typing.Union[MetaOapg.Properties.EnumFormStringArray, list, tuple, schemas.Unset] = schemas.unset, enum_form_string: typing.Union[MetaOapg.Properties.EnumFormString, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/__init__.py index 50e94a32109..b207179865c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/application_json.py index c7e06889313..bb6f295b2fc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/application_json.pyi index c7e06889313..bb6f295b2fc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_404/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.py index 470ac7b6674..7d815afe1b1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.pyi index de2978f1230..a4277b77f87 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/response_for_200/__init__.py index 49ddc156cd7..a1285556b6d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.py index 0aee5213ddc..a44465367ea 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.pyi index 5639fd329b9..b9a36b7bbca 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py index d3ee00805d5..0b65a4a196f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -326,12 +326,12 @@ def __new__( int64: typing.Union[MetaOapg.Properties.Int64, decimal.Decimal, int, schemas.Unset] = schemas.unset, string: typing.Union[MetaOapg.Properties.String, str, schemas.Unset] = schemas.unset, binary: typing.Union[MetaOapg.Properties.Binary, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - date: typing.Union[MetaOapg.Properties.Date, str, date, schemas.Unset] = schemas.unset, - dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime, schemas.Unset] = schemas.unset, + date: typing.Union[MetaOapg.Properties.Date, str, datetime.date, schemas.Unset] = schemas.unset, + dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, password: typing.Union[MetaOapg.Properties.Password, str, schemas.Unset] = schemas.unset, callback: typing.Union[MetaOapg.Properties.Callback, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi index ef7fbf501b1..f2f2cd702a4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -260,12 +260,12 @@ class ApplicationXWwwFormUrlencoded( int64: typing.Union[MetaOapg.Properties.Int64, decimal.Decimal, int, schemas.Unset] = schemas.unset, string: typing.Union[MetaOapg.Properties.String, str, schemas.Unset] = schemas.unset, binary: typing.Union[MetaOapg.Properties.Binary, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - date: typing.Union[MetaOapg.Properties.Date, str, date, schemas.Unset] = schemas.unset, - dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime, schemas.Unset] = schemas.unset, + date: typing.Union[MetaOapg.Properties.Date, str, datetime.date, schemas.Unset] = schemas.unset, + dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, password: typing.Union[MetaOapg.Properties.Password, str, schemas.Unset] = schemas.unset, callback: typing.Union[MetaOapg.Properties.Callback, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/response_for_404/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/response_for_404/__init__.py index e399fbcc707..39a3ba9a8c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/response_for_404/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/response_for_404/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py index db61ce4e54b..640e6b4b909 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.pyi index 6f9c8894b4b..6cb24350a4c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/response_for_200/__init__.py index 3a16cb928f8..ae6d84b5fc2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.py index 919014f7455..defa6e09403 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.pyi index 3885fbbf2d6..b6cbddc3b1e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.py index 11a75aecb9b..2919462b0c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.pyi index 98cd161e342..0ff847a6288 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/parameter_0/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/parameter_0/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.py index 056f825d7c7..56a85177238 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.py @@ -11,7 +11,7 @@ import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.pyi index 73b8399e43f..850cf0cdd53 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.pyi @@ -11,7 +11,7 @@ import typing_extensions import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_0/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_0/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_1/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_1/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_1/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_1/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_2/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_2/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_2/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_2/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_2/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_2/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_2/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/parameter_2/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.py index b47a4c063ab..87fef812a5b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.pyi index 301596b50b0..ce7fbef147c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/response_for_200/__init__.py index 49ddc156cd7..a1285556b6d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.py index af94a40900e..f9c97dfea0b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.py @@ -11,7 +11,7 @@ import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.pyi index 0ab8a1df761..a8c5cedb9e4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.pyi @@ -11,7 +11,7 @@ import typing_extensions import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/parameter_0/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/parameter_0/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/response_for_default/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/response_for_default/__init__.py index a9d06e3d016..baa72cf71bc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/response_for_default/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/response_for_default/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.py index 389ba7b5410..2ffa7ef48eb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.pyi index 9802bc4425a..7863e4634d9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/response_for_200/__init__.py index c6680424248..aede8128bbe 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.py index 015f78d62a4..ada8a80bd31 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.pyi index af6dee9a21b..cacf32ce7aa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.py index 0ba8ae20265..4220612ba16 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.pyi index bdbd9999266..0011d3a21d2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/__init__.py index 646aa187011..bba3c67f68b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -42,7 +42,7 @@ class RequestQueryParameters: OptionalParams = typing_extensions.TypedDict( 'OptionalParams', { - 'compositionAtRoot': typing.Union[parameter_0.schema.Schema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + 'compositionAtRoot': typing.Union[parameter_0.schema.Schema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], 'compositionInProperty': typing.Union[parameter_1.schema.Schema, dict, frozendict.frozendict, ], }, total=False @@ -78,7 +78,7 @@ class BaseApi(api_client.Api): def _inline_composition_oapg( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -106,7 +106,7 @@ def _inline_composition_oapg( def _inline_composition_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -122,7 +122,7 @@ def _inline_composition_oapg( self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -133,7 +133,7 @@ def _inline_composition_oapg( def _inline_composition_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -147,7 +147,7 @@ def _inline_composition_oapg( def _inline_composition_oapg( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -228,7 +228,7 @@ class InlineComposition(BaseApi): def inline_composition( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -256,7 +256,7 @@ def inline_composition( def inline_composition( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -272,7 +272,7 @@ def inline_composition( self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -283,7 +283,7 @@ def inline_composition( def inline_composition( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -297,7 +297,7 @@ def inline_composition( def inline_composition( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -322,7 +322,7 @@ class ApiForpost(BaseApi): def post( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -350,7 +350,7 @@ def post( def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -366,7 +366,7 @@ def post( self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -377,7 +377,7 @@ def post( def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -391,7 +391,7 @@ def post( def post( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/__init__.pyi index 7c029283c81..9b89e0d6f27 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -41,7 +41,7 @@ class RequestQueryParameters: OptionalParams = typing_extensions.TypedDict( 'OptionalParams', { - 'compositionAtRoot': typing.Union[parameter_0.schema.Schema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + 'compositionAtRoot': typing.Union[parameter_0.schema.Schema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], 'compositionInProperty': typing.Union[parameter_1.schema.Schema, dict, frozendict.frozendict, ], }, total=False @@ -66,7 +66,7 @@ class BaseApi(api_client.Api): def _inline_composition_oapg( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): def _inline_composition_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -110,7 +110,7 @@ class BaseApi(api_client.Api): self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -121,7 +121,7 @@ class BaseApi(api_client.Api): def _inline_composition_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -135,7 +135,7 @@ class BaseApi(api_client.Api): def _inline_composition_oapg( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -216,7 +216,7 @@ class InlineComposition(BaseApi): def inline_composition( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -244,7 +244,7 @@ class InlineComposition(BaseApi): def inline_composition( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -260,7 +260,7 @@ class InlineComposition(BaseApi): self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -271,7 +271,7 @@ class InlineComposition(BaseApi): def inline_composition( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -285,7 +285,7 @@ class InlineComposition(BaseApi): def inline_composition( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -310,7 +310,7 @@ class ApiForpost(BaseApi): def post( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -338,7 +338,7 @@ class ApiForpost(BaseApi): def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -354,7 +354,7 @@ class ApiForpost(BaseApi): self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -365,7 +365,7 @@ class ApiForpost(BaseApi): def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -379,7 +379,7 @@ class ApiForpost(BaseApi): def post( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, request_body.multipart_form_data.MultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py index 7c492a6080a..b8657e6a405 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -51,9 +51,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi index 909b62d9701..5248d9de1c4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -45,9 +45,9 @@ class Schema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py index 8f5d3d1a78c..360f3b81e9c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -62,9 +62,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -110,9 +110,9 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi index e675294e0c5..3fe6fdc7785 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -55,9 +55,9 @@ class Schema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -103,9 +103,9 @@ class Schema( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py index 2bc46f484f5..fb75b34df3a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -51,9 +51,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi index 8f2e384a1bc..149ee7adeeb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -45,9 +45,9 @@ class ApplicationJson( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py index 428b99cf7be..fe194a52878 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -62,9 +62,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -110,9 +110,9 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi index 9ec406a4c01..a304afda9f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -55,9 +55,9 @@ class MultipartFormData( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -103,9 +103,9 @@ class MultipartFormData( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/__init__.py index 3654fa41e3a..cd000c197cb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py index 2bc46f484f5..fb75b34df3a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -51,9 +51,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi index 8f2e384a1bc..149ee7adeeb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -45,9 +45,9 @@ class ApplicationJson( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py index 428b99cf7be..fe194a52878 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -62,9 +62,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -110,9 +110,9 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi index 9ec406a4c01..a304afda9f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -55,9 +55,9 @@ class MultipartFormData( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -103,9 +103,9 @@ class MultipartFormData( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.py index fc6b5deeede..fdb15328a06 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.pyi index 44ea3aff42e..511d9c82009 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py index 0e2fb541059..1afefef8a3b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -91,7 +91,7 @@ def __new__( param: typing.Union[MetaOapg.Properties.Param, str, ], param2: typing.Union[MetaOapg.Properties.Param2, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi index bd55e417911..27a3bba7f90 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -90,7 +90,7 @@ class ApplicationXWwwFormUrlencoded( param: typing.Union[MetaOapg.Properties.Param, str, ], param2: typing.Union[MetaOapg.Properties.Param2, str, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.py index ed5d94d6ec3..086b8229e22 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.pyi index d9dd34c7483..91283fd26f8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.py index 686c84d57b9..2b0f81ad387 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -50,7 +50,7 @@ class BaseApi(api_client.Api): def _json_with_charset_oapg( self, content_type: typing_extensions.Literal["application/json; charset=utf-8"] = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -63,7 +63,7 @@ def _json_with_charset_oapg( def _json_with_charset_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -78,7 +78,7 @@ def _json_with_charset_oapg( self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -88,7 +88,7 @@ def _json_with_charset_oapg( def _json_with_charset_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -101,7 +101,7 @@ def _json_with_charset_oapg( def _json_with_charset_oapg( self, content_type: str = 'application/json; charset=utf-8', - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -169,7 +169,7 @@ class JsonWithCharset(BaseApi): def json_with_charset( self, content_type: typing_extensions.Literal["application/json; charset=utf-8"] = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -182,7 +182,7 @@ def json_with_charset( def json_with_charset( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -197,7 +197,7 @@ def json_with_charset( self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -207,7 +207,7 @@ def json_with_charset( def json_with_charset( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -220,7 +220,7 @@ def json_with_charset( def json_with_charset( self, content_type: str = 'application/json; charset=utf-8', - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -243,7 +243,7 @@ class ApiForpost(BaseApi): def post( self, content_type: typing_extensions.Literal["application/json; charset=utf-8"] = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -256,7 +256,7 @@ def post( def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -271,7 +271,7 @@ def post( self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -281,7 +281,7 @@ def post( def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -294,7 +294,7 @@ def post( def post( self, content_type: str = 'application/json; charset=utf-8', - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.pyi index ddedf30a697..756279dc75c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -38,7 +38,7 @@ class BaseApi(api_client.Api): def _json_with_charset_oapg( self, content_type: typing_extensions.Literal["application/json; charset=utf-8"] = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -51,7 +51,7 @@ class BaseApi(api_client.Api): def _json_with_charset_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -66,7 +66,7 @@ class BaseApi(api_client.Api): self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -76,7 +76,7 @@ class BaseApi(api_client.Api): def _json_with_charset_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -89,7 +89,7 @@ class BaseApi(api_client.Api): def _json_with_charset_oapg( self, content_type: str = 'application/json; charset=utf-8', - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -157,7 +157,7 @@ class JsonWithCharset(BaseApi): def json_with_charset( self, content_type: typing_extensions.Literal["application/json; charset=utf-8"] = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -170,7 +170,7 @@ class JsonWithCharset(BaseApi): def json_with_charset( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -185,7 +185,7 @@ class JsonWithCharset(BaseApi): self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -195,7 +195,7 @@ class JsonWithCharset(BaseApi): def json_with_charset( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -208,7 +208,7 @@ class JsonWithCharset(BaseApi): def json_with_charset( self, content_type: str = 'application/json; charset=utf-8', - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -231,7 +231,7 @@ class ApiForpost(BaseApi): def post( self, content_type: typing_extensions.Literal["application/json; charset=utf-8"] = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -244,7 +244,7 @@ class ApiForpost(BaseApi): def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -259,7 +259,7 @@ class ApiForpost(BaseApi): self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -269,7 +269,7 @@ class ApiForpost(BaseApi): def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -282,7 +282,7 @@ class ApiForpost(BaseApi): def post( self, content_type: str = 'application/json; charset=utf-8', - body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json_charsetutf8.ApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/request_body/application_json_charsetutf8.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/request_body/application_json_charsetutf8.py index 7011a5a0a04..afc82709742 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/request_body/application_json_charsetutf8.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/request_body/application_json_charsetutf8.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/request_body/application_json_charsetutf8.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/request_body/application_json_charsetutf8.pyi index 7011a5a0a04..afc82709742 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/request_body/application_json_charsetutf8.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/request_body/application_json_charsetutf8.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/__init__.py index 3375951cfbf..476440cf046 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/application_json_charsetutf8.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/application_json_charsetutf8.py index 7011a5a0a04..afc82709742 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/application_json_charsetutf8.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/application_json_charsetutf8.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/application_json_charsetutf8.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/application_json_charsetutf8.pyi index 7011a5a0a04..afc82709742 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/application_json_charsetutf8.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/response_for_200/application_json_charsetutf8.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.py index 7cf95ef501a..0cae82815d0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.py @@ -11,7 +11,7 @@ import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.pyi index 21bd8194e82..807fcebefe4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.pyi @@ -11,7 +11,7 @@ import typing_extensions import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py index 2c0baaf3f4b..c5f350b96ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -73,7 +73,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], keyword: typing.Union[MetaOapg.Properties.Keyword, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi index 838db85a060..d76c19deeac 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -72,7 +72,7 @@ class Schema( *_args: typing.Union[dict, frozendict.frozendict, ], keyword: typing.Union[MetaOapg.Properties.Keyword, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py index 4490ab11ee8..0e47e7bb04e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -191,7 +191,7 @@ class BaseApi(api_client.Api): def _parameter_collisions_oapg( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -208,7 +208,7 @@ def _parameter_collisions_oapg( def _parameter_collisions_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -227,7 +227,7 @@ def _parameter_collisions_oapg( self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -241,7 +241,7 @@ def _parameter_collisions_oapg( def _parameter_collisions_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -258,7 +258,7 @@ def _parameter_collisions_oapg( def _parameter_collisions_oapg( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -362,7 +362,7 @@ class ParameterCollisions(BaseApi): def parameter_collisions( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -379,7 +379,7 @@ def parameter_collisions( def parameter_collisions( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -398,7 +398,7 @@ def parameter_collisions( self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -412,7 +412,7 @@ def parameter_collisions( def parameter_collisions( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -429,7 +429,7 @@ def parameter_collisions( def parameter_collisions( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -460,7 +460,7 @@ class ApiForpost(BaseApi): def post( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -477,7 +477,7 @@ def post( def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -496,7 +496,7 @@ def post( self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -510,7 +510,7 @@ def post( def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -527,7 +527,7 @@ def post( def post( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi index 5547417dedc..bdb9c455ddb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -179,7 +179,7 @@ class BaseApi(api_client.Api): def _parameter_collisions_oapg( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -196,7 +196,7 @@ class BaseApi(api_client.Api): def _parameter_collisions_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -215,7 +215,7 @@ class BaseApi(api_client.Api): self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -229,7 +229,7 @@ class BaseApi(api_client.Api): def _parameter_collisions_oapg( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -246,7 +246,7 @@ class BaseApi(api_client.Api): def _parameter_collisions_oapg( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -350,7 +350,7 @@ class ParameterCollisions(BaseApi): def parameter_collisions( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -367,7 +367,7 @@ class ParameterCollisions(BaseApi): def parameter_collisions( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -386,7 +386,7 @@ class ParameterCollisions(BaseApi): self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -400,7 +400,7 @@ class ParameterCollisions(BaseApi): def parameter_collisions( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -417,7 +417,7 @@ class ParameterCollisions(BaseApi): def parameter_collisions( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -448,7 +448,7 @@ class ApiForpost(BaseApi): def post( self, content_type: typing_extensions.Literal["application/json"] = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -465,7 +465,7 @@ class ApiForpost(BaseApi): def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -484,7 +484,7 @@ class ApiForpost(BaseApi): self, skip_deserialization: typing_extensions.Literal[True], content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -498,7 +498,7 @@ class ApiForpost(BaseApi): def post( self, content_type: str = ..., - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), @@ -515,7 +515,7 @@ class ApiForpost(BaseApi): def post( self, content_type: str = 'application/json', - body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + body: typing.Union[request_body.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParameters.Params = frozendict.frozendict(), header_params: RequestHeaderParameters.Params = frozendict.frozendict(), path_params: RequestPathParameters.Params = frozendict.frozendict(), diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_0/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_0/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_1/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_1/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_1/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_1/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_10/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_10/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_10/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_10/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_10/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_10/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_10/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_10/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_11/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_11/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_11/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_11/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_11/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_11/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_11/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_11/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_12/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_12/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_12/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_12/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_12/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_12/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_12/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_12/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_13/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_13/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_13/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_13/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_13/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_13/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_13/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_13/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_14/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_14/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_14/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_14/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_14/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_14/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_14/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_14/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_15/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_15/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_15/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_15/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_15/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_15/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_15/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_15/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_16/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_16/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_16/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_16/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_16/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_16/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_16/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_16/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_17/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_17/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_17/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_17/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_17/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_17/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_17/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_17/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_18/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_18/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_18/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_18/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_18/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_18/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_18/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_18/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_2/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_2/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_2/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_2/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_2/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_2/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_2/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_2/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_3/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_3/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_3/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_3/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_3/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_3/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_3/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_3/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_4/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_4/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_4/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_4/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_4/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_4/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_4/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_4/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_5/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_5/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_5/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_5/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_5/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_5/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_5/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_5/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_6/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_6/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_6/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_6/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_6/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_6/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_6/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_6/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_7/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_7/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_7/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_7/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_7/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_7/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_7/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_7/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_8/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_8/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_8/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_8/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_8/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_8/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_8/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_8/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_9/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_9/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_9/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_9/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_9/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_9/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_9/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameter_9/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/request_body/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/request_body/application_json.py index be6dbe46983..962029eead6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/request_body/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/request_body/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/request_body/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/request_body/application_json.pyi index be6dbe46983..962029eead6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/request_body/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/request_body/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/__init__.py index 2b6be265674..071467beb60 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/application_json.py index be6dbe46983..962029eead6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/application_json.pyi index be6dbe46983..962029eead6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/response_for_200/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.py index 28f2fb6f573..e21a048753f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.pyi index 65862bef5cb..36368f65248 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/parameter_0/schema.py index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/parameter_0/schema.pyi index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py index 3dc15c2d505..6f48c6f1349 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -89,7 +89,7 @@ def __new__( requiredFile: typing.Union[MetaOapg.Properties.RequiredFile, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi index bb0d2b77d20..01f8d4832b0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,7 +88,7 @@ class MultipartFormData( requiredFile: typing.Union[MetaOapg.Properties.RequiredFile, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/response_for_200/__init__.py index 594fc0e82e1..755d53ad184 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.py index 8b2b6eda429..a33e9865d7c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -35,7 +35,7 @@ class RequestQueryParameters: RequiredParams = typing_extensions.TypedDict( 'RequiredParams', { - 'someParam': typing.Union[parameter_0.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + 'someParam': typing.Union[parameter_0.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], } ) OptionalParams = typing_extensions.TypedDict( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.pyi index 16f7f6c71aa..daa732810d5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -34,7 +34,7 @@ class RequestQueryParameters: RequiredParams = typing_extensions.TypedDict( 'RequiredParams', { - 'someParam': typing.Union[parameter_0.application_json.ApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + 'someParam': typing.Union[parameter_0.application_json.ApplicationJson, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], } ) OptionalParams = typing_extensions.TypedDict( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/parameter_0/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/parameter_0/application_json.py index be6dbe46983..962029eead6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/parameter_0/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/parameter_0/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/parameter_0/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/parameter_0/application_json.pyi index be6dbe46983..962029eead6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/parameter_0/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/parameter_0/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/__init__.py index 2b6be265674..071467beb60 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/application_json.py index be6dbe46983..962029eead6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/application_json.pyi index be6dbe46983..962029eead6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/response_for_200/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.py index 9af6ea0bd83..e275f3fa0ad 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.py @@ -11,7 +11,7 @@ import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.pyi index e8d6d296a38..1fd9171a539 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.pyi @@ -11,7 +11,7 @@ import typing_extensions import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.py index 4ee23568103..cb331fd833b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.pyi index 9d1561e8700..8e863e561b6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/response_for_200/__init__.py index d8f659b8f9e..a1fb19b7f42 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.py index fec0a715554..cba7e9da71a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.pyi index dd5030f1cc4..56c97616cc9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/response_for_200/__init__.py index 18d9e5a003c..6f2ee1fbb3d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.py index 3937e6cbc8f..a4f8760ed49 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.pyi index 29d6cc46a11..4503df7d9bb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/response_for_200/__init__.py index 2470b5d0855..e6489a3d7eb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.py index 91830b17779..898afe22dbf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.pyi index 589b692b6f1..5420aa591f0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/response_for_200/__init__.py index 87b516941f2..7b80840a223 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.py index 0cf0745a3f9..9a65fb807b1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.pyi index e3845877b98..1c6faca1320 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/response_for_200/__init__.py index eca7985f13a..bc1f898fa90 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.py index eba120f62bd..f2db57004e9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.pyi index 90b3b6d6832..908226a9c00 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/response_for_200/__init__.py index 61403c1d88a..a5e025500af 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.py index 33e1a900446..4bc6b2525ba 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.pyi index a226103e327..5eb558b3069 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/response_for_200/__init__.py index df926a5ca82..4584bcfccd8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.py index c7dbc0b3921..3b946e651da 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.pyi index 2be3f4267de..79bbee6a47a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/response_for_200/__init__.py index df179dfc255..9a81e8f3d27 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.py index 7b48df503a0..30bf481e83f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.pyi index 559e2e9f3ad..dfb072e2202 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/response_for_200/__init__.py index ec8d8ecbbdd..b74e2ab6ab6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.py index 7f88fe79fdf..7ba5c59c4ff 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.pyi index b4fdaad57f0..3e0872ec384 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/response_for_200/__init__.py index d8d80a796c9..cb790abf002 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.py index 9abb87e77cf..057b9f8ad6d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.py @@ -11,7 +11,7 @@ import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.pyi index 8ee943d7754..3bc91f57b1f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.pyi @@ -11,7 +11,7 @@ import typing_extensions import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.py index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.pyi index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.py index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.pyi index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.py index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.pyi index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.py index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.pyi index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.py index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.pyi index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.py index 7723884718a..0af73cf2c5f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.pyi index b4b2843da06..6446d083dc8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/request_body/application_octet_stream.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/request_body/application_octet_stream.py index b23a3b826c8..5bcf33f7fb4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/request_body/application_octet_stream.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/request_body/application_octet_stream.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/request_body/application_octet_stream.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/request_body/application_octet_stream.pyi index b23a3b826c8..5bcf33f7fb4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/request_body/application_octet_stream.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/request_body/application_octet_stream.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/__init__.py index e7f10f5b38d..7909e611a38 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/application_octet_stream.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/application_octet_stream.py index b23a3b826c8..5bcf33f7fb4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/application_octet_stream.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/application_octet_stream.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/application_octet_stream.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/application_octet_stream.pyi index b23a3b826c8..5bcf33f7fb4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/application_octet_stream.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/response_for_200/application_octet_stream.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.py index 1b7c1277a53..5bddc0eebef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.pyi index 852d9255fe6..0b42584f181 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py index 6d80b7ce44b..4e8349fc573 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -89,7 +89,7 @@ def __new__( file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi index 1690edc134b..87ec7a38167 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,7 +88,7 @@ class MultipartFormData( file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/response_for_200/__init__.py index 594fc0e82e1..755d53ad184 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.py index 6f1401f28d4..f09a6f2f332 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.pyi index cace6d4a0ce..b50a2858e7c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py index 33910260a8f..30342ba5da3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -96,7 +96,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi index d204ca5f664..ec584a81645 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -95,7 +95,7 @@ class MultipartFormData( *_args: typing.Union[dict, frozendict.frozendict, ], files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/response_for_200/__init__.py index 594fc0e82e1..755d53ad184 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.py index 1ba7ba853b3..0042bcb534a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.pyi index e0d5b00c6fe..7d36e66c476 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/__init__.py index df72fa79e02..ffc9ce2b58a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py index a30c435efc8..b28d4887e14 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -76,7 +76,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], string: typing.Union['foo.Foo', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi index bd15e4555e3..dc97e12e7ca 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -75,7 +75,7 @@ class ApplicationJson( *_args: typing.Union[dict, frozendict.frozendict, ], string: typing.Union['foo.Foo', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.py index ceda0e0c9b2..a61cbf556dc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.pyi index 0011e71b7e2..9a9a6f2f4c8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/response_for_405/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/response_for_405/__init__.py index 2263083f0c9..cb93efb882c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/response_for_405/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/response_for_405/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.py index 1677e125e92..6f0c6260dd2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.pyi index 797cd55975a..c7ff6b1bd16 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_404/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_404/__init__.py index e399fbcc707..39a3ba9a8c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_404/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_404/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_405/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_405/__init__.py index 2263083f0c9..cb93efb882c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_405/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/response_for_405/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.py index 4f19f9048bd..ad370b65cd1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.pyi index d5753ce7d18..9926ac2fab3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.py index edb4083ddbb..27f6e0613d4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.pyi index 2d5152b80dd..8ce0c4986c4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/__init__.py index 8a0b1f0fe36..7f7cb14ebf6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.py index fa5c882e51a..08962065ca3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.pyi index fa5c882e51a..08962065ca3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.py index 684fde4a816..15551622ee4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.pyi index 684fde4a816..15551622ee4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.py index 05b9eb1ee0b..38da8f64f06 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.pyi index ce29c420cc0..b0394a79030 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.py index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.pyi index 6ec6ccd892a..6abcc3089ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/__init__.py index 8a0b1f0fe36..7f7cb14ebf6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.py index fa5c882e51a..08962065ca3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.pyi index fa5c882e51a..08962065ca3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.py index 684fde4a816..15551622ee4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.pyi index 684fde4a816..15551622ee4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.py index 7107608a106..062b93d7bfa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.pyi index 243ea532c2e..fed1865b34a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_0/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_0/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_1/schema.py index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_1/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_1/schema.pyi index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/parameter_1/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.py index 2def7b4a079..06e7a06d1ef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.pyi index 8f1fcc8dce5..c9042017eb8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/parameter_0/schema.py index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/parameter_0/schema.pyi index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_200/__init__.py index ed16fbb5200..3e61607cd0d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_404/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_404/__init__.py index e399fbcc707..39a3ba9a8c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_404/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/response_for_404/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.py index 824a3d169e0..2b6d0e125e8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.pyi index 3b849f1e205..cf561a6444f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/parameter_0/schema.py index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/parameter_0/schema.pyi index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py index 80e2df24945..0913fc5e0a5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -84,7 +84,7 @@ def __new__( name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi index 0ac75b2208b..2a5ba54a549 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -83,7 +83,7 @@ class ApplicationXWwwFormUrlencoded( name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/response_for_405/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/response_for_405/__init__.py index 2263083f0c9..cb93efb882c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/response_for_405/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/response_for_405/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.py index c5303d1bbdb..960194f55f4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.pyi index d2d7c6d729c..03a3387bc9a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/parameter_0/schema.py index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/parameter_0/schema.pyi index f7c29670869..bdd2752be84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py index ff0816a4f07..5c50682743f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -84,7 +84,7 @@ def __new__( additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi index b98e59eba4c..cad10c36829 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -83,7 +83,7 @@ class MultipartFormData( additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.py index 98f89483cc1..5961d4859e8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.pyi index 4648fa4beb5..1d8c16d34a7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.py index 111ee886000..d6c90305138 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.pyi index 85b6a1feaea..9db59f44188 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/response_for_200/__init__.py index a3b9783db96..781b4d9910a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.py index 7dac542d6e0..254abe2756a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.py @@ -11,7 +11,7 @@ import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.pyi index ab8f2b7f9f8..46914e5ca99 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.pyi @@ -11,7 +11,7 @@ import typing_extensions import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/parameter_0/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/parameter_0/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/response_for_404/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/response_for_404/__init__.py index e399fbcc707..39a3ba9a8c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/response_for_404/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/response_for_404/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.py index 70ae4f68432..278eb6bffbe 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.pyi index ac8a79bbe2d..6fc4d821240 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/parameter_0/schema.py index e0ef9ce3f7b..38be237a0f2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/parameter_0/schema.pyi index 20e407294a1..c91b08b1ca8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_200/__init__.py index a3b9783db96..781b4d9910a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_404/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_404/__init__.py index e399fbcc707..39a3ba9a8c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_404/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/response_for_404/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.py index 691d382df82..a2857ac3e29 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.pyi index 5e1495c8336..d71581a9752 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/response_for_default/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/response_for_default/__init__.py index a9d06e3d016..baa72cf71bc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/response_for_default/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/response_for_default/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.py index 317e49a6bbb..46af9297e7c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.pyi index 10c683efc99..f502a409222 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/response_for_default/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/response_for_default/__init__.py index a9d06e3d016..baa72cf71bc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/response_for_default/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/response_for_default/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.py index f88c0011771..b9629abcade 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.pyi index 50766e5a9c6..09b8c76d9d4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/response_for_default/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/response_for_default/__init__.py index a9d06e3d016..baa72cf71bc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/response_for_default/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/response_for_default/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.py index ca0e4cae42a..c52de991988 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.pyi index 47eb1d1a254..7ee16ee4aa2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_0/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_0/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_0/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_0/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_1/schema.py index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_1/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_1/schema.pyi index 0992cc3566a..33f5e90357d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/parameter_1/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/__init__.py index 89c1c75bd3a..ebf48ee876c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing @@ -36,7 +36,7 @@ class Header: OptionalParams = typing_extensions.TypedDict( 'OptionalParams', { - 'X-Expires-After': typing.Union[header_x_expires_after.schema.Schema, str, datetime, ], + 'X-Expires-After': typing.Union[header_x_expires_after.schema.Schema, str, datetime.datetime, ], 'numberHeader': typing.Union[header_number_header.schema.Schema, str, ], }, total=False diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_json.py index 7e6e8723853..e2b84b7fe24 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_json.pyi index 7e6e8723853..e2b84b7fe24 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_xml.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_xml.py index bf4af1a81fe..c85b52dc619 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_xml.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_xml.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_xml.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_xml.pyi index bf4af1a81fe..c85b52dc619 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_xml.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/application_xml.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_expires_after/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_expires_after/schema.py index cf35de0739f..bd03f980a39 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_expires_after/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_expires_after/schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_expires_after/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_expires_after/schema.pyi index cf35de0739f..bd03f980a39 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_expires_after/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_expires_after/schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_rate_limit/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_rate_limit/application_json.py index 914a64e8683..5e0c8bbae86 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_rate_limit/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_rate_limit/application_json.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_rate_limit/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_rate_limit/application_json.pyi index 914a64e8683..5e0c8bbae86 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_rate_limit/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_200/header_x_rate_limit/application_json.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.py index d297e4d56b0..b2d18e5d23f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.py @@ -11,7 +11,7 @@ import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.pyi index a5a80e913b3..8be8f903ead 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.pyi @@ -11,7 +11,7 @@ import typing_extensions import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.py index ad97ab0b1e3..ff56c5a3e4e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.py @@ -11,7 +11,7 @@ import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.pyi index 07a28640688..14c33fcf8ca 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.pyi @@ -11,7 +11,7 @@ import typing_extensions import urllib3 from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/response_for_404/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/response_for_404/__init__.py index e399fbcc707..39a3ba9a8c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/response_for_404/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/response_for_404/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.py index 56fbba853fd..4e315229295 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.pyi index 411704b5e8a..5c3f8cd69d6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_200/__init__.py index 51aa3ed966c..e3462d1b5da 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_404/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_404/__init__.py index e399fbcc707..39a3ba9a8c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_404/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/response_for_404/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.py index ef3e1c4a1e2..036c25750fa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.pyi index 9e87b287178..c0638d4e808 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from petstore_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/response_for_400/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/response_for_400/__init__.py index bd0d4cf9688..a2ebbad7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/response_for_400/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/response_for_400/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/response_for_404/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/response_for_404/__init__.py index e399fbcc707..39a3ba9a8c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/response_for_404/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/response_for_404/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/petstore/python/petstore_api/schemas.py b/samples/openapi3/client/petstore/python/petstore_api/schemas.py index 34ec4d9160a..fa7a8590348 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/schemas.py +++ b/samples/openapi3/client/petstore/python/petstore_api/schemas.py @@ -9,8 +9,8 @@ Generated by: https://openapi-generator.tech """ -from collections import defaultdict -from datetime import date, datetime, timedelta # noqa: F401 +import collections +import datetime import functools import decimal import io @@ -19,16 +19,10 @@ import typing import uuid -from dateutil.parser.isoparser import isoparser, _takes_ascii +from dateutil.parser import isoparser import frozendict -from petstore_api.exceptions import ( - ApiTypeError, - ApiValueError, -) -from petstore_api.configuration import ( - Configuration, -) +from petstore_api import configuration, exceptions class Unset(object): @@ -53,12 +47,12 @@ class FileIO(io.FileIO): def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader]): if isinstance(_arg, (io.FileIO, io.BufferedReader)): if _arg.closed: - raise ApiValueError('Invalid file state; file is closed and must be open') + raise exceptions.ApiValueError('Invalid file state; file is closed and must be open') _arg.close() inst = super(FileIO, cls).__new__(cls, _arg.name) super(FileIO, inst).__init__(_arg.name) return inst - raise ApiValueError('FileIO must be passed _arg which contains the open file') + raise exceptions.ApiValueError('FileIO must be passed _arg which contains the open file') def __init__(self, _arg: typing.Union[io.FileIO, io.BufferedReader]): pass @@ -67,7 +61,7 @@ def __init__(self, _arg: typing.Union[io.FileIO, io.BufferedReader]): def update(d: dict, u: dict): """ Adds u to d - Where each dict is defaultdict(set) + Where each dict is collections.defaultdict(set) """ if not u: return d @@ -85,7 +79,7 @@ class ValidationMetadata(frozendict.frozendict): def __new__( cls, path_to_item: typing.Tuple[typing.Union[str, int], ...], - configuration: Configuration, + configuration: configuration.Configuration, seen_classes: typing.FrozenSet[typing.Type] = frozenset(), validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Type]] = frozendict.frozendict() ): @@ -94,8 +88,8 @@ def __new__( path_to_item: the path to the current data being instantiated. For {'a': [1]} if the code is handling, 1, then the path is ('args[0]', 'a', 0) This changes from location to location - configuration: the Configuration instance to use - This is needed because in Configuration: + configuration: the configuration.Configuration instance to use + This is needed because in configuration.Configuration: - one can disable validation checking This does not change from location to location seen_classes: when deserializing data that matches multiple schemas, this is used to store @@ -126,7 +120,7 @@ def path_to_item(self) -> typing.Tuple[typing.Union[str, int], ...]: return self['path_to_item'] @property - def configuration(self) -> Configuration: + def configuration(self) -> configuration.Configuration: return self['configuration'] @property @@ -294,7 +288,7 @@ def __get_type_error(var_value, path_to_item, valid_classes, key_type=False): valid_classes=valid_classes, key_type=key_type, ) - return ApiTypeError( + return exceptions.ApiTypeError( error_msg, path_to_item=path_to_item, valid_classes=valid_classes, @@ -324,12 +318,12 @@ def validate_enum( validation_metadata: ValidationMetadata, ) -> None: if arg not in enum_value_to_name: - raise ApiValueError("Invalid value {} passed in to {}, allowed_values={}".format(arg, cls, enum_value_to_name.keys())) + raise exceptions.ApiValueError("Invalid value {} passed in to {}, allowed_values={}".format(arg, cls, enum_value_to_name.keys())) return None def _raise_validation_error_message_oapg(value, constraint_msg, constraint_value, path_to_item, additional_txt=""): - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value `{value}`, {constraint_msg} `{constraint_value}`{additional_txt} at {path_to_item}".format( value=value, constraint_msg=constraint_msg, @@ -602,20 +596,20 @@ def __validate_numeric_format( if format[:3] == 'int': # there is a json schema test where 1.0 validates as an integer if arg != int(arg): - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid non-integer value '{}' for type {} at {}".format( arg, format, validation_metadata.path_to_item ) ) if format == 'int32': if not __int32_inclusive_minimum <= arg <= __int32_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type int32 at {}".format(arg, validation_metadata.path_to_item) ) return None elif format == 'int64': if not __int64_inclusive_minimum <= arg <= __int64_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type int64 at {}".format(arg, validation_metadata.path_to_item) ) return None @@ -623,22 +617,22 @@ def __validate_numeric_format( elif format in {'float', 'double'}: if format == 'float': if not __float_inclusive_minimum <= arg <= __float_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type float at {}".format(arg, validation_metadata.path_to_item) ) return None # double if not __double_inclusive_minimum <= arg <= __double_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type double at {}".format(arg, validation_metadata.path_to_item) ) return None return None -class CustomIsoparser(isoparser): +class CustomIsoparser(isoparser.isoparser): - @_takes_ascii + @isoparser._takes_ascii def parse_isodatetime(self, dt_str): components, pos = self._parse_isodate(dt_str) if len(dt_str) > pos: @@ -649,14 +643,14 @@ def parse_isodatetime(self, dt_str): if len(components) > 3 and components[3] == 24: components[3] = 0 - return datetime(*components) + timedelta(days=1) + return datetime.datetime(*components) + datetime.timedelta(days=1) if len(components) <= 3: raise ValueError('Value is not a datetime') - return datetime(*components) + return datetime.datetime(*components) - @_takes_ascii + @isoparser._takes_ascii def parse_isodate(self, datestr): components, pos = self._parse_isodate(datestr) @@ -666,7 +660,7 @@ def parse_isodate(self, datestr): if len(components) > 3: raise ValueError('String contains invalid time components') - return date(*components) + return datetime.date(*components) DEFAULT_ISOPARSER = CustomIsoparser() @@ -682,7 +676,7 @@ def __validate_string_format( uuid.UUID(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type UUID at {}".format(arg, validation_metadata.path_to_item) ) elif format == 'number': @@ -690,7 +684,7 @@ def __validate_string_format( decimal.Decimal(arg) return None except decimal.InvalidOperation: - raise ApiValueError( + raise exceptions.ApiValueError( "Value cannot be converted to a decimal. " "Invalid value '{}' for type decimal at {}".format(arg, validation_metadata.path_to_item) ) @@ -699,7 +693,7 @@ def __validate_string_format( DEFAULT_ISOPARSER.parse_isodate(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Value does not conform to the required ISO-8601 date format. " "Invalid value '{}' for type date at {}".format(arg, validation_metadata.path_to_item) ) @@ -708,7 +702,7 @@ def __validate_string_format( DEFAULT_ISOPARSER.parse_isodatetime(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Value does not conform to the required ISO-8601 datetime format. " "Invalid value '{}' for type datetime at {}".format(arg, validation_metadata.path_to_item) ) @@ -749,7 +743,7 @@ def validate_required( if missing_required_arguments: missing_required_arguments = list(missing_required_arguments) missing_required_arguments.sort() - raise ApiTypeError( + raise exceptions.ApiTypeError( "{} is missing {} required argument{}: {}".format( cls.__name__, len(missing_required_arguments), @@ -856,7 +850,7 @@ def validate_one_of( validation_metadata: ValidationMetadata, ) -> PathToSchemasType: oneof_classes = [] - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for one_of_cls in one_of_container_cls.classes: schema = _get_class_oapg(one_of_cls) if schema in path_to_schemas[validation_metadata.path_to_item]: @@ -875,17 +869,17 @@ def validate_one_of( continue try: path_to_schemas = schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError) as ex: + except (exceptions.ApiValueError, exceptions.ApiTypeError) as ex: # silence exceptions because the code needs to accumulate oneof_classes continue oneof_classes.append(schema) if not oneof_classes: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. None " "of the oneOf schemas matched the input data.".format(cls) ) elif len(oneof_classes) > 1: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. Multiple " "oneOf schemas {} matched the inputs, but a max of one is allowed.".format(cls, oneof_classes) ) @@ -900,7 +894,7 @@ def validate_any_of( validation_metadata: ValidationMetadata, ) -> PathToSchemasType: anyof_classes = [] - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for any_of_cls in any_of_container_cls.classes: schema = _get_class_oapg(any_of_cls) if schema is cls: @@ -917,13 +911,13 @@ def validate_any_of( try: other_path_to_schemas = schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError) as ex: + except (exceptions.ApiValueError, exceptions.ApiTypeError) as ex: # silence exceptions because the code needs to accumulate anyof_classes continue anyof_classes.append(schema) update(path_to_schemas, other_path_to_schemas) if not anyof_classes: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. None " "of the anyOf schemas matched the input data.".format(cls) ) @@ -936,7 +930,7 @@ def validate_all_of( cls: typing.Type, validation_metadata: ValidationMetadata, ) -> PathToSchemasType: - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for allof_cls in all_of_cls.classes: schema = _get_class_oapg(allof_cls) if schema is cls: @@ -961,7 +955,7 @@ def validate_not( ) -> None: not_schema = _get_class_oapg(not_cls) other_path_to_schemas = None - not_exception = ApiValueError( + not_exception = exceptions.ApiValueError( "Invalid value '{}' was passed in to {}. Value is invalid because it is disallowed by {}".format( arg, cls.__name__, @@ -973,7 +967,7 @@ def validate_not( try: other_path_to_schemas = not_schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError): + except (exceptions.ApiValueError, exceptions.ApiTypeError): pass if other_path_to_schemas: raise not_exception @@ -987,7 +981,7 @@ def __ensure_discriminator_value_present( ): if disc_property_name not in arg: # The input data does not contain the discriminator property - raise ApiValueError( + raise exceptions.ApiValueError( "Cannot deserialize input data due to missing discriminator. " "The discriminator property '{}' is missing at path: {}".format(disc_property_name, validation_metadata.path_to_item) ) @@ -1051,7 +1045,7 @@ def validate_discriminator( cls, disc_property_name=disc_prop_name, disc_payload_value=arg[disc_prop_name] ) if discriminated_cls is None: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid discriminator value was passed in to {}.{} Only the values {} are allowed at {}".format( cls.__name__, disc_prop_name, @@ -1284,7 +1278,7 @@ def _get_new_instance_without_conversion_oapg( items = cls._get_items_oapg(arg, path_to_item, path_to_schemas) return super(Schema, cls).__new__(cls, items) """ - str = openapi str, date, and datetime + str = openapi str, datetime.date, and datetime.datetime decimal.Decimal = openapi int and float FileIO = openapi binary type and the user inputs a file bytes = openapi binary type and the user inputs bytes @@ -1306,7 +1300,7 @@ def from_openapi_data_oapg( io.BufferedReader, bytes ], - _configuration: typing.Optional[Configuration] = None + _configuration: typing.Optional[configuration.Configuration] = None ): """ Schema from_openapi_data_oapg @@ -1317,7 +1311,7 @@ def from_openapi_data_oapg( arg = cast_to_allowed_types(arg, from_server, validated_path_to_schemas, ('args[0]',), path_to_type) validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or Configuration(), + configuration=_configuration or configuration.Configuration(), validated_path_to_schemas=frozendict.frozendict(validated_path_to_schemas) ) path_to_schemas = cls.__get_new_cls(arg, validation_metadata, path_to_type) @@ -1353,13 +1347,15 @@ def __new__( float, int, str, - date, - datetime, + datetime.date, + datetime.datetime, + uuid.UUID, bool, None, - 'Schema' - ], - _configuration: typing.Optional[Configuration] = None, + io.FileIO, + io.BufferedReader, + 'Schema', ], + _configuration: typing.Optional[configuration.Configuration] = None, **kwargs: typing.Union[ dict, frozendict.frozendict, @@ -1369,12 +1365,14 @@ def __new__( float, int, str, - date, - datetime, + datetime.date, + datetime.datetime, + uuid.UUID, bool, None, - 'Schema', - Unset + io.FileIO, + io.BufferedReader, + 'Schema', Unset ] ): """ @@ -1383,7 +1381,7 @@ def __new__( Args: _args (int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): the value kwargs (str, int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): dict values - _configuration: contains the Configuration that enables json schema validation keywords + _configuration: contains the configuration.Configuration that enables json schema validation keywords like minItems, minLength etc Note: double underscores are used here because pycharm thinks that these variables @@ -1405,7 +1403,7 @@ def __new__( __arg, __from_server, __validated_path_to_schemas, ('args[0]',), __path_to_type) __validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or Configuration(), + configuration=_configuration or configuration.Configuration(), validated_path_to_schemas=frozendict.frozendict(__validated_path_to_schemas) ) __path_to_schemas = cls.__get_new_cls(__arg, __validation_metadata, __path_to_type) @@ -1419,10 +1417,10 @@ def __new__( def __init__( self, *_args: typing.Union[ - dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, 'Schema'], - _configuration: typing.Optional[Configuration] = None, + dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema'], + _configuration: typing.Optional[configuration.Configuration] = None, **kwargs: typing.Union[ - dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, 'Schema', Unset + dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema', Unset ] ): """ @@ -1769,11 +1767,11 @@ def as_str_oapg(self) -> str: return self @property - def as_date_oapg(self) -> date: + def as_date_oapg(self) -> datetime.date: raise Exception('not implemented') @property - def as_datetime_oapg(self) -> datetime: + def as_datetime_oapg(self) -> datetime.datetime: raise Exception('not implemented') @property @@ -1795,14 +1793,14 @@ def as_uuid_oapg(self) -> uuid.UUID: class DateBase: @property @functools.lru_cache() - def as_date_oapg(self) -> date: + def as_date_oapg(self) -> datetime.date: return DEFAULT_ISOPARSER.parse_isodate(self) class DateTimeBase: @property @functools.lru_cache() - def as_datetime_oapg(self) -> datetime: + def as_datetime_oapg(self) -> datetime.datetime: return DEFAULT_ISOPARSER.parse_isodatetime(self) @@ -1838,7 +1836,7 @@ def as_int_oapg(self) -> int: if self.as_tuple().exponent < 0: # this could be represented as an integer but should be represented as a float # because that's what it was serialized from - raise ApiValueError(f'{self} is not an integer') + raise exceptions.ApiValueError(f'{self} is not an integer') self._as_int = int(self) return self._as_int @@ -1848,7 +1846,7 @@ def as_float_oapg(self) -> float: return self._as_float except AttributeError: if self.as_tuple().exponent >= 0: - raise ApiValueError(f'{self} is not a float') + raise exceptions.ApiValueError(f'{self} is not a float') self._as_float = float(self) return self._as_float @@ -1938,12 +1936,36 @@ def get_item_oapg(self, name: str) -> typing.Union['AnyTypeSchema', Unset]: def cast_to_allowed_types( - arg: typing.Union[str, date, datetime, uuid.UUID, decimal.Decimal, int, float, None, dict, frozendict.frozendict, list, tuple, bytes, Schema, io.FileIO, io.BufferedReader], + arg: typing.Union[ + dict, + frozendict.frozendict, + list, + tuple, + decimal.Decimal, + float, + int, + str, + datetime.date, + datetime.datetime, + uuid.UUID, + bool, + None, + io.FileIO, + io.BufferedReader, + 'Schema', ], from_server: bool, validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Union['Schema', str, decimal.Decimal, BoolClass, NoneClass, frozendict.frozendict, tuple]]], path_to_item: typing.Tuple[typing.Union[str, int], ...], path_to_type: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Type] -) -> typing.Union[frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO]: +) -> typing.Union[ + frozendict.frozendict, + tuple, + decimal.Decimal, + str, + bytes, + BoolClass, + NoneClass, + FileIO]: """ Casts the input payload arg into the allowed types The input validated_path_to_schemas is mutated by running this function @@ -1977,7 +1999,7 @@ def cast_to_allowed_types( schema_classes.add(cls) validated_path_to_schemas[path_to_item] = schema_classes - type_error = ApiTypeError(f"Invalid type. Required value type is str and passed type was {type(arg)} at {path_to_item}") + type_error = exceptions.ApiTypeError(f"Invalid type. Required value type is str and passed type was {type(arg)} at {path_to_item}") if isinstance(arg, str): path_to_type[path_to_item] = str return str(arg) @@ -2032,7 +2054,7 @@ def cast_to_allowed_types( elif isinstance(arg, (none_type, NoneClass)): path_to_type[path_to_item] = NoneClass return NoneClass.NONE - elif isinstance(arg, (date, datetime)): + elif isinstance(arg, (datetime.date, datetime.datetime)): path_to_type[path_to_item] = str if not from_server: return arg.isoformat() @@ -2063,10 +2085,10 @@ class MetaOapg: types = {tuple} @classmethod - def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2079,10 +2101,10 @@ class MetaOapg: types = {NoneClass} @classmethod - def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: None, **kwargs: Configuration): + def __new__(cls, _arg: None, **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2099,10 +2121,10 @@ class MetaOapg: types = {decimal.Decimal} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2122,10 +2144,10 @@ class MetaOapg: format = 'int' @classmethod - def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2153,7 +2175,7 @@ class MetaOapg: format = 'float' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2165,7 +2187,7 @@ class MetaOapg: format = 'double' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2184,10 +2206,10 @@ class MetaOapg: types = {str} @classmethod - def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[Configuration] = None) -> 'StrSchema': + def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[configuration.Configuration] = None) -> 'StrSchema': return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[str, date, datetime, uuid.UUID], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2196,7 +2218,7 @@ class MetaOapg: types = {str} format = 'uuid' - def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2205,7 +2227,7 @@ class MetaOapg: types = {str} format = 'date' - def __new__(cls, _arg: typing.Union[str, date], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2214,7 +2236,7 @@ class MetaOapg: types = {str} format = 'date-time' - def __new__(cls, _arg: typing.Union[str, datetime], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: configuration.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2223,7 +2245,7 @@ class MetaOapg: types = {str} format = 'number' - def __new__(cls, _arg: str, **kwargs: Configuration): + def __new__(cls, _arg: str, **kwargs: configuration.Configuration): """ Note: Decimals may not be passed in because cast_to_allowed_types is only invoked once for payloads which can be simple (str) or complex (dicts or lists with nested values) @@ -2245,7 +2267,7 @@ class BytesSchema( class MetaOapg: types = {bytes} - def __new__(cls, _arg: bytes, **kwargs: Configuration): + def __new__(cls, _arg: bytes, **kwargs: configuration.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2272,7 +2294,7 @@ class FileSchema( class MetaOapg: types = {FileIO} - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: configuration.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2290,7 +2312,7 @@ class OneOf: FileSchema, ] - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: configuration.Configuration): return super().__new__(cls, _arg) @@ -2303,7 +2325,7 @@ class MetaOapg: types = {BoolClass} @classmethod - def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) def __new__(cls, _arg: bool, **kwargs: ValidationMetadata): @@ -2343,7 +2365,7 @@ class MetaOapg: def __new__( cls, *_args, - _configuration: typing.Optional[Configuration] = None, + _configuration: typing.Optional[configuration.Configuration] = None, ) -> 'NotAnyTypeSchema': return super().__new__( cls, @@ -2361,10 +2383,10 @@ class MetaOapg: types = {frozendict.frozendict} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[configuration.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): + def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): return super().__new__(cls, *_args, **kwargs) From 4737a314bd2ff182c0559f1d83043002981023af Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 29 Dec 2022 17:15:49 -0800 Subject: [PATCH 3/5] petstore regenerated --- .../resources/python/api_client.handlebars | 13 ++-- .../python/model_templates/new.handlebars | 2 +- .../main/resources/python/schemas.handlebars | 73 +++++++++---------- .../python/petstore_api/api_client.py | 13 ++-- .../application_json.py | 2 +- .../application_json.pyi | 2 +- .../application_json.py | 2 +- .../application_json.pyi | 2 +- .../components/schema/_200_response.py | 2 +- .../components/schema/_200_response.pyi | 2 +- .../petstore_api/components/schema/_return.py | 2 +- .../components/schema/_return.pyi | 2 +- .../schema/abstract_step_message.py | 2 +- .../schema/abstract_step_message.pyi | 2 +- .../schema/additional_properties_class.py | 14 ++-- .../schema/additional_properties_class.pyi | 14 ++-- .../schema/additional_properties_validator.py | 12 +-- .../additional_properties_validator.pyi | 12 +-- ...ditional_properties_with_array_of_enums.py | 4 +- ...itional_properties_with_array_of_enums.pyi | 4 +- .../petstore_api/components/schema/address.py | 2 +- .../components/schema/address.pyi | 2 +- .../petstore_api/components/schema/animal.py | 2 +- .../petstore_api/components/schema/animal.pyi | 2 +- .../components/schema/animal_farm.py | 2 +- .../components/schema/animal_farm.pyi | 2 +- .../components/schema/any_type_and_format.py | 20 ++--- .../components/schema/any_type_and_format.pyi | 20 ++--- .../components/schema/any_type_not_string.py | 2 +- .../components/schema/any_type_not_string.pyi | 2 +- .../components/schema/api_response.py | 2 +- .../components/schema/api_response.pyi | 2 +- .../petstore_api/components/schema/apple.py | 2 +- .../petstore_api/components/schema/apple.pyi | 2 +- .../components/schema/apple_req.py | 2 +- .../components/schema/apple_req.pyi | 2 +- .../schema/array_holding_any_type.py | 2 +- .../schema/array_holding_any_type.pyi | 2 +- .../schema/array_of_array_of_number_only.py | 6 +- .../schema/array_of_array_of_number_only.pyi | 6 +- .../components/schema/array_of_enums.py | 2 +- .../components/schema/array_of_enums.pyi | 2 +- .../components/schema/array_of_number_only.py | 4 +- .../schema/array_of_number_only.pyi | 4 +- .../components/schema/array_test.py | 12 +-- .../components/schema/array_test.pyi | 12 +-- .../schema/array_with_validations_in_items.py | 2 +- .../array_with_validations_in_items.pyi | 2 +- .../petstore_api/components/schema/banana.py | 2 +- .../petstore_api/components/schema/banana.pyi | 2 +- .../components/schema/banana_req.py | 2 +- .../components/schema/banana_req.pyi | 2 +- .../components/schema/basque_pig.py | 2 +- .../components/schema/basque_pig.pyi | 2 +- .../components/schema/capitalization.py | 2 +- .../components/schema/capitalization.pyi | 2 +- .../petstore_api/components/schema/cat.py | 4 +- .../petstore_api/components/schema/cat.pyi | 4 +- .../components/schema/category.py | 2 +- .../components/schema/category.pyi | 2 +- .../components/schema/child_cat.py | 4 +- .../components/schema/child_cat.pyi | 4 +- .../components/schema/class_model.py | 2 +- .../components/schema/class_model.pyi | 2 +- .../petstore_api/components/schema/client.py | 2 +- .../petstore_api/components/schema/client.pyi | 2 +- .../schema/complex_quadrilateral.py | 4 +- .../schema/complex_quadrilateral.pyi | 4 +- ...d_any_of_different_types_no_validations.py | 4 +- ..._any_of_different_types_no_validations.pyi | 4 +- .../components/schema/composed_array.py | 2 +- .../components/schema/composed_array.pyi | 2 +- .../components/schema/composed_bool.py | 2 +- .../components/schema/composed_bool.pyi | 2 +- .../components/schema/composed_none.py | 2 +- .../components/schema/composed_none.pyi | 2 +- .../components/schema/composed_number.py | 2 +- .../components/schema/composed_number.pyi | 2 +- .../components/schema/composed_object.py | 2 +- .../components/schema/composed_object.pyi | 2 +- .../schema/composed_one_of_different_types.py | 6 +- .../composed_one_of_different_types.pyi | 6 +- .../components/schema/composed_string.py | 2 +- .../components/schema/composed_string.pyi | 2 +- .../components/schema/danish_pig.py | 2 +- .../components/schema/danish_pig.pyi | 2 +- .../petstore_api/components/schema/dog.py | 4 +- .../petstore_api/components/schema/dog.pyi | 4 +- .../petstore_api/components/schema/drawing.py | 4 +- .../components/schema/drawing.pyi | 4 +- .../components/schema/enum_arrays.py | 4 +- .../components/schema/enum_arrays.pyi | 4 +- .../components/schema/enum_test.py | 2 +- .../components/schema/enum_test.pyi | 2 +- .../components/schema/equilateral_triangle.py | 4 +- .../schema/equilateral_triangle.pyi | 4 +- .../petstore_api/components/schema/file.py | 2 +- .../petstore_api/components/schema/file.pyi | 2 +- .../schema/file_schema_test_class.py | 4 +- .../schema/file_schema_test_class.pyi | 4 +- .../petstore_api/components/schema/foo.py | 2 +- .../petstore_api/components/schema/foo.pyi | 2 +- .../components/schema/format_test.py | 4 +- .../components/schema/format_test.pyi | 4 +- .../components/schema/from_schema.py | 2 +- .../components/schema/from_schema.pyi | 2 +- .../petstore_api/components/schema/fruit.py | 2 +- .../petstore_api/components/schema/fruit.pyi | 2 +- .../components/schema/fruit_req.py | 2 +- .../components/schema/fruit_req.pyi | 2 +- .../components/schema/gm_fruit.py | 2 +- .../components/schema/gm_fruit.pyi | 2 +- .../components/schema/grandparent_animal.py | 2 +- .../components/schema/grandparent_animal.pyi | 2 +- .../components/schema/has_only_read_only.py | 2 +- .../components/schema/has_only_read_only.pyi | 2 +- .../components/schema/health_check_result.py | 4 +- .../components/schema/health_check_result.pyi | 4 +- .../components/schema/isosceles_triangle.py | 4 +- .../components/schema/isosceles_triangle.pyi | 4 +- .../components/schema/json_patch_request.py | 4 +- .../components/schema/json_patch_request.pyi | 4 +- .../json_patch_request_add_replace_test.py | 2 +- .../json_patch_request_add_replace_test.pyi | 2 +- .../schema/json_patch_request_move_copy.py | 2 +- .../schema/json_patch_request_move_copy.pyi | 2 +- .../schema/json_patch_request_remove.py | 2 +- .../schema/json_patch_request_remove.pyi | 2 +- .../petstore_api/components/schema/mammal.py | 2 +- .../petstore_api/components/schema/mammal.pyi | 2 +- .../components/schema/map_test.py | 10 +-- .../components/schema/map_test.pyi | 10 +-- ...perties_and_additional_properties_class.py | 4 +- ...erties_and_additional_properties_class.pyi | 4 +- .../petstore_api/components/schema/money.py | 2 +- .../petstore_api/components/schema/money.pyi | 2 +- .../petstore_api/components/schema/name.py | 2 +- .../petstore_api/components/schema/name.pyi | 2 +- .../schema/no_additional_properties.py | 2 +- .../schema/no_additional_properties.pyi | 2 +- .../components/schema/nullable_class.py | 36 ++++----- .../components/schema/nullable_class.pyi | 36 ++++----- .../components/schema/nullable_shape.py | 2 +- .../components/schema/nullable_shape.pyi | 2 +- .../components/schema/nullable_string.py | 2 +- .../components/schema/nullable_string.pyi | 2 +- .../components/schema/number_only.py | 2 +- .../components/schema/number_only.pyi | 2 +- ...ject_model_with_arg_and_args_properties.py | 2 +- ...ect_model_with_arg_and_args_properties.pyi | 2 +- .../schema/object_model_with_ref_props.py | 2 +- .../schema/object_model_with_ref_props.pyi | 2 +- ..._with_req_test_prop_from_unset_add_prop.py | 4 +- ...with_req_test_prop_from_unset_add_prop.pyi | 4 +- .../schema/object_with_decimal_properties.py | 2 +- .../schema/object_with_decimal_properties.pyi | 2 +- .../object_with_difficultly_named_props.py | 2 +- .../object_with_difficultly_named_props.pyi | 2 +- ...object_with_inline_composition_property.py | 4 +- ...bject_with_inline_composition_property.pyi | 4 +- ...ect_with_invalid_named_refed_properties.py | 2 +- ...ct_with_invalid_named_refed_properties.pyi | 2 +- .../schema/object_with_optional_test_prop.py | 2 +- .../schema/object_with_optional_test_prop.pyi | 2 +- .../schema/object_with_validations.py | 2 +- .../schema/object_with_validations.pyi | 2 +- .../petstore_api/components/schema/order.py | 2 +- .../petstore_api/components/schema/order.pyi | 2 +- .../components/schema/parent_pet.py | 2 +- .../components/schema/parent_pet.pyi | 2 +- .../petstore_api/components/schema/pet.py | 6 +- .../petstore_api/components/schema/pet.pyi | 6 +- .../petstore_api/components/schema/pig.py | 2 +- .../petstore_api/components/schema/pig.pyi | 2 +- .../petstore_api/components/schema/player.py | 2 +- .../petstore_api/components/schema/player.pyi | 2 +- .../components/schema/quadrilateral.py | 2 +- .../components/schema/quadrilateral.pyi | 2 +- .../schema/quadrilateral_interface.py | 2 +- .../schema/quadrilateral_interface.pyi | 2 +- .../components/schema/read_only_first.py | 2 +- .../components/schema/read_only_first.pyi | 2 +- .../req_props_from_explicit_add_props.py | 2 +- .../req_props_from_explicit_add_props.pyi | 2 +- .../schema/req_props_from_true_add_props.py | 2 +- .../schema/req_props_from_true_add_props.pyi | 2 +- .../schema/req_props_from_unset_add_props.py | 2 +- .../schema/req_props_from_unset_add_props.pyi | 2 +- .../components/schema/scalene_triangle.py | 4 +- .../components/schema/scalene_triangle.pyi | 4 +- .../schema/self_referencing_array_model.py | 2 +- .../schema/self_referencing_array_model.pyi | 2 +- .../schema/self_referencing_object_model.py | 2 +- .../schema/self_referencing_object_model.pyi | 2 +- .../petstore_api/components/schema/shape.py | 2 +- .../petstore_api/components/schema/shape.pyi | 2 +- .../components/schema/shape_or_null.py | 2 +- .../components/schema/shape_or_null.pyi | 2 +- .../components/schema/simple_quadrilateral.py | 4 +- .../schema/simple_quadrilateral.pyi | 4 +- .../components/schema/some_object.py | 2 +- .../components/schema/some_object.pyi | 2 +- .../components/schema/special_model_name.py | 2 +- .../components/schema/special_model_name.pyi | 2 +- .../components/schema/string_boolean_map.py | 2 +- .../components/schema/string_boolean_map.pyi | 2 +- .../components/schema/string_enum.py | 2 +- .../components/schema/string_enum.pyi | 2 +- .../petstore_api/components/schema/tag.py | 2 +- .../petstore_api/components/schema/tag.pyi | 2 +- .../components/schema/triangle.py | 2 +- .../components/schema/triangle.pyi | 2 +- .../components/schema/triangle_interface.py | 2 +- .../components/schema/triangle_interface.pyi | 2 +- .../petstore_api/components/schema/user.py | 6 +- .../petstore_api/components/schema/user.pyi | 6 +- .../petstore_api/components/schema/whale.py | 2 +- .../petstore_api/components/schema/whale.pyi | 2 +- .../petstore_api/components/schema/zebra.py | 2 +- .../petstore_api/components/schema/zebra.pyi | 2 +- .../paths/fake/get/parameter_0/schema.py | 2 +- .../paths/fake/get/parameter_0/schema.pyi | 2 +- .../paths/fake/get/parameter_2/schema.py | 2 +- .../paths/fake/get/parameter_2/schema.pyi | 2 +- .../application_x_www_form_urlencoded.py | 4 +- .../application_x_www_form_urlencoded.pyi | 4 +- .../application_x_www_form_urlencoded.py | 2 +- .../application_x_www_form_urlencoded.pyi | 2 +- .../post/request_body/application_json.py | 2 +- .../post/request_body/application_json.pyi | 2 +- .../post/parameter_0/schema.py | 2 +- .../post/parameter_0/schema.pyi | 2 +- .../post/parameter_1/schema.py | 4 +- .../post/parameter_1/schema.pyi | 4 +- .../post/request_body/application_json.py | 2 +- .../post/request_body/application_json.pyi | 2 +- .../post/request_body/multipart_form_data.py | 4 +- .../post/request_body/multipart_form_data.pyi | 4 +- .../post/response_for_200/application_json.py | 2 +- .../response_for_200/application_json.pyi | 2 +- .../response_for_200/multipart_form_data.py | 4 +- .../response_for_200/multipart_form_data.pyi | 4 +- .../application_x_www_form_urlencoded.py | 2 +- .../application_x_www_form_urlencoded.pyi | 2 +- .../get/parameter_0/schema.py | 2 +- .../get/parameter_0/schema.pyi | 2 +- .../post/request_body/multipart_form_data.py | 2 +- .../post/request_body/multipart_form_data.pyi | 2 +- .../put/parameter_0/schema.py | 2 +- .../put/parameter_0/schema.pyi | 2 +- .../put/parameter_1/schema.py | 2 +- .../put/parameter_1/schema.pyi | 2 +- .../put/parameter_2/schema.py | 2 +- .../put/parameter_2/schema.pyi | 2 +- .../put/parameter_3/schema.py | 2 +- .../put/parameter_3/schema.pyi | 2 +- .../put/parameter_4/schema.py | 2 +- .../put/parameter_4/schema.pyi | 2 +- .../post/request_body/multipart_form_data.py | 2 +- .../post/request_body/multipart_form_data.pyi | 2 +- .../post/request_body/multipart_form_data.py | 4 +- .../post/request_body/multipart_form_data.pyi | 4 +- .../response_for_default/application_json.py | 2 +- .../response_for_default/application_json.pyi | 2 +- .../get/parameter_0/schema.py | 2 +- .../get/parameter_0/schema.pyi | 2 +- .../get/response_for_200/application_json.py | 2 +- .../get/response_for_200/application_json.pyi | 2 +- .../get/response_for_200/application_xml.py | 2 +- .../get/response_for_200/application_xml.pyi | 2 +- .../get/parameter_0/schema.py | 2 +- .../get/parameter_0/schema.pyi | 2 +- .../get/response_for_200/application_json.py | 2 +- .../get/response_for_200/application_json.pyi | 2 +- .../get/response_for_200/application_xml.py | 2 +- .../get/response_for_200/application_xml.pyi | 2 +- .../application_x_www_form_urlencoded.py | 2 +- .../application_x_www_form_urlencoded.pyi | 2 +- .../post/request_body/multipart_form_data.py | 2 +- .../post/request_body/multipart_form_data.pyi | 2 +- .../petstore/python/petstore_api/schemas.py | 73 +++++++++---------- .../python/tests_manual/test_validate.py | 39 +++++----- 282 files changed, 540 insertions(+), 541 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars index 9dc9aeab552..9a2692d03db 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/api_client.handlebars @@ -15,16 +15,17 @@ import re import tempfile import typing import typing_extensions +from urllib import parse import urllib3 from urllib3 import _collections, fields -import urllib3.parse as parse {{#if tornado}} import tornado.gen {{/if}} import frozendict -from {{packageName}} import configuration, exceptions, rest, schemas +from {{packageName}} import exceptions, rest, schemas +from {{packageName}} import configuration as configuration_module class RequestField(fields.RequestField): @@ -882,7 +883,7 @@ class OpenApiResponse(JSONDetector, TypedDictInputVerifier, typing.Generic[T]): } @classmethod - def deserialize(cls, response: urllib3.HTTPResponse, configuration: configuration.Configuration) -> T: + def deserialize(cls, response: urllib3.HTTPResponse, configuration: configuration_module.Configuration) -> T: content_type = response.getheader('content-type') deserialized_body = schemas.unset streamed = response.supports_chunked_reads() @@ -946,7 +947,7 @@ class ApiClient: Ref: https://openapi-generator.tech Do not edit the class manually. - :param configuration: configuration.Configuration object for this client + :param configuration: configuration_module.Configuration object for this client :param header_name: a header to pass when making calls to the API. :param header_value: a header value to pass when making calls to the API. @@ -960,14 +961,14 @@ class ApiClient: def __init__( self, - configuration: typing.Optional[configuration.Configuration] = None, + configuration: typing.Optional[configuration_module.Configuration] = None, header_name: typing.Optional[str] = None, header_value: typing.Optional[str] = None, cookie: typing.Optional[str] = None, pool_threads: int = 1 ): if configuration is None: - configuration = configuration.Configuration() + configuration = configuration_module.Configuration() self.configuration = configuration self.pool_threads = pool_threads diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/new.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/new.handlebars index 881745dbd9d..3e74c338d07 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/new.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/model_templates/new.handlebars @@ -41,7 +41,7 @@ def __new__( {{/if}} {{/if}} {{/each}} - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, {{#with additionalProperties}} {{#unless getIsBooleanSchemaFalse}} {{#if refClass}} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars index 68abb908458..412c58bb441 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars @@ -12,10 +12,11 @@ import types import typing import uuid -from dateutil.parser import isoparser +from dateutil import parser import frozendict -from {{packageName}} import configuration, exceptions +from {{packageName}} import exceptions +from {{packageName}} import configuration as configuration_module class Unset(object): @@ -72,7 +73,7 @@ class ValidationMetadata(frozendict.frozendict): def __new__( cls, path_to_item: typing.Tuple[typing.Union[str, int], ...], - configuration: configuration.Configuration, + configuration: configuration_module.Configuration, seen_classes: typing.FrozenSet[typing.Type] = frozenset(), validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Type]] = frozendict.frozendict() ): @@ -81,8 +82,8 @@ class ValidationMetadata(frozendict.frozendict): path_to_item: the path to the current data being instantiated. For {'a': [1]} if the code is handling, 1, then the path is ('args[0]', 'a', 0) This changes from location to location - configuration: the configuration.Configuration instance to use - This is needed because in configuration.Configuration: + configuration: the configuration_module.Configuration instance to use + This is needed because in configuration_module.Configuration: - one can disable validation checking This does not change from location to location seen_classes: when deserializing data that matches multiple schemas, this is used to store @@ -113,7 +114,7 @@ class ValidationMetadata(frozendict.frozendict): return self['path_to_item'] @property - def configuration(self) -> configuration.Configuration: + def configuration(self) -> configuration_module.Configuration: return self['configuration'] @property @@ -668,9 +669,8 @@ def __validate_numeric_format( return None -class CustomIsoparser(isoparser.isoparser): +class CustomIsoparser(parser.isoparser): - @isoparser._takes_ascii def parse_isodatetime(self, dt_str): components, pos = self._parse_isodate(dt_str) if len(dt_str) > pos: @@ -688,7 +688,6 @@ class CustomIsoparser(isoparser.isoparser): return datetime.datetime(*components) - @isoparser._takes_ascii def parse_isodate(self, datestr): components, pos = self._parse_isodate(datestr) @@ -1438,7 +1437,7 @@ class Schema: io.BufferedReader, bytes ], - _configuration: typing.Optional[configuration.Configuration] = None + _configuration: typing.Optional[configuration_module.Configuration] = None ): """ Schema from_openapi_data_oapg @@ -1449,7 +1448,7 @@ class Schema: arg = cast_to_allowed_types(arg, from_server, validated_path_to_schemas, ('args[0]',), path_to_type) validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or configuration.Configuration(), + configuration=_configuration or configuration_module.Configuration(), validated_path_to_schemas=frozendict.frozendict(validated_path_to_schemas) ) path_to_schemas = cls.__get_new_cls(arg, validation_metadata, path_to_type) @@ -1479,7 +1478,7 @@ class Schema: *_args: typing.Union[ {{> types_all_incl_schema }} ], - _configuration: typing.Optional[configuration.Configuration] = None, + _configuration: typing.Optional[configuration_module.Configuration] = None, **kwargs: typing.Union[ {{> types_all_incl_schema }} Unset @@ -1491,7 +1490,7 @@ class Schema: Args: _args (int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): the value kwargs (str, int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): dict values - _configuration: contains the configuration.Configuration that enables json schema validation keywords + _configuration: contains the configuration_module.Configuration that enables json schema validation keywords like minItems, minLength etc Note: double underscores are used here because pycharm thinks that these variables @@ -1513,7 +1512,7 @@ class Schema: __arg, __from_server, __validated_path_to_schemas, ('args[0]',), __path_to_type) __validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or configuration.Configuration(), + configuration=_configuration or configuration_module.Configuration(), validated_path_to_schemas=frozendict.frozendict(__validated_path_to_schemas) ) __path_to_schemas = cls.__get_new_cls(__arg, __validation_metadata, __path_to_type) @@ -1528,7 +1527,7 @@ class Schema: self, *_args: typing.Union[ dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema'], - _configuration: typing.Optional[configuration.Configuration] = None, + _configuration: typing.Optional[configuration_module.Configuration] = None, **kwargs: typing.Union[ dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema', Unset ] @@ -2175,10 +2174,10 @@ class ListSchema( types = {tuple} @classmethod - def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2191,10 +2190,10 @@ class NoneSchema( types = {NoneClass} @classmethod - def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: None, **kwargs: configuration.Configuration): + def __new__(cls, _arg: None, **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2211,10 +2210,10 @@ class NumberSchema( types = {decimal.Decimal} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2234,10 +2233,10 @@ class IntSchema(IntBase, NumberSchema): format = 'int' @classmethod - def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2265,7 +2264,7 @@ class Float32Schema( format = 'float' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2277,7 +2276,7 @@ class Float64Schema( format = 'double' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2296,10 +2295,10 @@ class StrSchema( types = {str} @classmethod - def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[configuration.Configuration] = None) -> 'StrSchema': + def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[configuration_module.Configuration] = None) -> 'StrSchema': return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2308,7 +2307,7 @@ class UUIDSchema(UUIDBase, StrSchema): types = {str} format = 'uuid' - def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2317,7 +2316,7 @@ class DateSchema(DateBase, StrSchema): types = {str} format = 'date' - def __new__(cls, _arg: typing.Union[str, datetime.date], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2326,7 +2325,7 @@ class DateTimeSchema(DateTimeBase, StrSchema): types = {str} format = 'date-time' - def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2335,7 +2334,7 @@ class DecimalSchema(DecimalBase, StrSchema): types = {str} format = 'number' - def __new__(cls, _arg: str, **kwargs: configuration.Configuration): + def __new__(cls, _arg: str, **kwargs: configuration_module.Configuration): """ Note: Decimals may not be passed in because cast_to_allowed_types is only invoked once for payloads which can be simple (str) or complex (dicts or lists with nested values) @@ -2357,7 +2356,7 @@ class BytesSchema( class MetaOapg: types = {bytes} - def __new__(cls, _arg: bytes, **kwargs: configuration.Configuration): + def __new__(cls, _arg: bytes, **kwargs: configuration_module.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2384,7 +2383,7 @@ class FileSchema( class MetaOapg: types = {FileIO} - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: configuration_module.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2402,7 +2401,7 @@ class BinarySchema( FileSchema, ] - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg) @@ -2415,7 +2414,7 @@ class BoolSchema( types = {BoolClass} @classmethod - def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) def __new__(cls, _arg: bool, **kwargs: ValidationMetadata): @@ -2455,7 +2454,7 @@ class NotAnyTypeSchema(AnyTypeSchema): def __new__( cls, *_args, - _configuration: typing.Optional[configuration.Configuration] = None, + _configuration: typing.Optional[configuration_module.Configuration] = None, ) -> 'NotAnyTypeSchema': return super().__new__( cls, @@ -2473,7 +2472,7 @@ class DictSchema( types = {frozendict.frozendict} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): diff --git a/samples/openapi3/client/petstore/python/petstore_api/api_client.py b/samples/openapi3/client/petstore/python/petstore_api/api_client.py index 241ab9fac5e..5816b092a47 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/api_client.py +++ b/samples/openapi3/client/petstore/python/petstore_api/api_client.py @@ -22,13 +22,14 @@ import tempfile import typing import typing_extensions +from urllib import parse import urllib3 from urllib3 import _collections, fields -import urllib3.parse as parse import frozendict -from petstore_api import configuration, exceptions, rest, schemas +from petstore_api import exceptions, rest, schemas +from petstore_api import configuration as configuration_module class RequestField(fields.RequestField): @@ -886,7 +887,7 @@ def __deserialize_multipart_form_data( } @classmethod - def deserialize(cls, response: urllib3.HTTPResponse, configuration: configuration.Configuration) -> T: + def deserialize(cls, response: urllib3.HTTPResponse, configuration: configuration_module.Configuration) -> T: content_type = response.getheader('content-type') deserialized_body = schemas.unset streamed = response.supports_chunked_reads() @@ -950,7 +951,7 @@ class ApiClient: Ref: https://openapi-generator.tech Do not edit the class manually. - :param configuration: configuration.Configuration object for this client + :param configuration: configuration_module.Configuration object for this client :param header_name: a header to pass when making calls to the API. :param header_value: a header value to pass when making calls to the API. @@ -964,14 +965,14 @@ class ApiClient: def __init__( self, - configuration: typing.Optional[configuration.Configuration] = None, + configuration: typing.Optional[configuration_module.Configuration] = None, header_name: typing.Optional[str] = None, header_value: typing.Optional[str] = None, cookie: typing.Optional[str] = None, pool_threads: int = 1 ): if configuration is None: - configuration = configuration.Configuration() + configuration = configuration_module.Configuration() self.configuration = configuration self.pool_threads = pool_threads diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.py index e60b62e71da..bf4e3166c76 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.py @@ -38,7 +38,7 @@ def items() -> typing.Type['user.User']: def __new__( cls, _arg: typing.Union[typing.Tuple['user.User'], typing.List['user.User']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.pyi index e60b62e71da..bf4e3166c76 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/request_bodies/request_body_user_array/application_json.pyi @@ -38,7 +38,7 @@ class ApplicationJson( def __new__( cls, _arg: typing.Union[typing.Tuple['user.User'], typing.List['user.User']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.py index 2f7fa7ddcd7..08ea8090509 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.py @@ -42,7 +42,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, decimal.Decimal, int, ], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.pyi index cd0282e7344..43ab102a27f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/response_success_inline_content_and_header/application_json.pyi @@ -41,7 +41,7 @@ class ApplicationJson( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, decimal.Decimal, int, ], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py index aaa577cede4..d8abeff6252 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py @@ -90,7 +90,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_200Response': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi index aaa577cede4..d8abeff6252 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi @@ -90,7 +90,7 @@ class _200Response( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_200Response': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py index ae95589c7ef..6810db6c8b8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py @@ -79,7 +79,7 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Return': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi index ae95589c7ef..6810db6c8b8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi @@ -79,7 +79,7 @@ class _Return( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Return': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py index 5038535cb9d..f6a91f355cb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py @@ -126,7 +126,7 @@ def __new__( description: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], discriminator: typing.Union[MetaOapg.Properties.Discriminator, str, ], sequenceNumber: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AbstractStepMessage': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi index 5038535cb9d..f6a91f355cb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi @@ -126,7 +126,7 @@ class AbstractStepMessage( description: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], discriminator: typing.Union[MetaOapg.Properties.Discriminator, str, ], sequenceNumber: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AbstractStepMessage': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py index b412a7498e7..111e9bdda6f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py @@ -58,7 +58,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'MapProperty': return super().__new__( @@ -97,7 +97,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'AdditionalProperties': return super().__new__( @@ -117,7 +117,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, ], ) -> 'MapOfMapProperty': return super().__new__( @@ -150,7 +150,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'MapWithUndeclaredPropertiesAnytype3': return super().__new__( @@ -173,7 +173,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'EmptyMap': return super().__new__( cls, @@ -201,7 +201,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'MapWithUndeclaredPropertiesString': return super().__new__( @@ -319,7 +319,7 @@ def __new__( map_with_undeclared_properties_anytype_3: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesAnytype3, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, empty_map: typing.Union[MetaOapg.Properties.EmptyMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_string: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesString, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesClass': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi index 4a897d77f93..8eecdf134c0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi @@ -56,7 +56,7 @@ class AdditionalPropertiesClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'MapProperty': return super().__new__( @@ -93,7 +93,7 @@ class AdditionalPropertiesClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'AdditionalProperties': return super().__new__( @@ -113,7 +113,7 @@ class AdditionalPropertiesClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, ], ) -> 'MapOfMapProperty': return super().__new__( @@ -145,7 +145,7 @@ class AdditionalPropertiesClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'MapWithUndeclaredPropertiesAnytype3': return super().__new__( @@ -167,7 +167,7 @@ class AdditionalPropertiesClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'EmptyMap': return super().__new__( cls, @@ -194,7 +194,7 @@ class AdditionalPropertiesClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'MapWithUndeclaredPropertiesString': return super().__new__( @@ -312,7 +312,7 @@ class AdditionalPropertiesClass( map_with_undeclared_properties_anytype_3: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesAnytype3, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, empty_map: typing.Union[MetaOapg.Properties.EmptyMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_string: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesString, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesClass': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py index 76bccf7418b..b07c8f4313d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py @@ -60,7 +60,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf0': return super().__new__( @@ -93,7 +93,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -113,7 +113,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf1': return super().__new__( @@ -146,7 +146,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -166,7 +166,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf2': return super().__new__( @@ -185,7 +185,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesValidator': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi index 31db6e1dc29..baa6f34c3f6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi @@ -59,7 +59,7 @@ class AdditionalPropertiesValidator( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf0': return super().__new__( @@ -90,7 +90,7 @@ class AdditionalPropertiesValidator( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -110,7 +110,7 @@ class AdditionalPropertiesValidator( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf1': return super().__new__( @@ -141,7 +141,7 @@ class AdditionalPropertiesValidator( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -161,7 +161,7 @@ class AdditionalPropertiesValidator( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'AllOf2': return super().__new__( @@ -180,7 +180,7 @@ class AdditionalPropertiesValidator( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesValidator': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.py index d41bb2f9998..1979cfdcd58 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.py @@ -52,7 +52,7 @@ def items() -> typing.Type['enum_class.EnumClass']: def __new__( cls, _arg: typing.Union[typing.Tuple['enum_class.EnumClass'], typing.List['enum_class.EnumClass']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AdditionalProperties': return super().__new__( cls, @@ -73,7 +73,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, list, tuple, ], ) -> 'AdditionalPropertiesWithArrayOfEnums': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.pyi index 9803a5bf059..6cd1d012abd 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_with_array_of_enums.pyi @@ -51,7 +51,7 @@ class AdditionalPropertiesWithArrayOfEnums( def __new__( cls, _arg: typing.Union[typing.Tuple['enum_class.EnumClass'], typing.List['enum_class.EnumClass']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AdditionalProperties': return super().__new__( cls, @@ -72,7 +72,7 @@ class AdditionalPropertiesWithArrayOfEnums( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, list, tuple, ], ) -> 'AdditionalPropertiesWithArrayOfEnums': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.py index 9023067c626..f1b26b64df9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.py @@ -47,7 +47,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, decimal.Decimal, int, ], ) -> 'Address': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.pyi index b1d4722f868..16182d0d6b3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/address.pyi @@ -46,7 +46,7 @@ class Address( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, decimal.Decimal, int, ], ) -> 'Address': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py index 787f8e9f7f3..cb2d939ae18 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py @@ -102,7 +102,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Animal': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi index 6f208ed793c..88dae5af4a0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi @@ -101,7 +101,7 @@ class Animal( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Animal': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.py index 0efbba4aae4..2299ea27b78 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.py @@ -43,7 +43,7 @@ def items() -> typing.Type['animal.Animal']: def __new__( cls, _arg: typing.Union[typing.Tuple['animal.Animal'], typing.List['animal.Animal']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AnimalFarm': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.pyi index 0efbba4aae4..2299ea27b78 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal_farm.pyi @@ -43,7 +43,7 @@ class AnimalFarm( def __new__( cls, _arg: typing.Union[typing.Tuple['animal.Animal'], typing.List['animal.Animal']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AnimalFarm': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py index 2f7d59aff7d..86605d163dc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py @@ -53,7 +53,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Uuid': return super().__new__( @@ -78,7 +78,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Date': return super().__new__( @@ -103,7 +103,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DateTime': return super().__new__( @@ -128,7 +128,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Number': return super().__new__( @@ -152,7 +152,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Binary': return super().__new__( @@ -176,7 +176,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int32': return super().__new__( @@ -200,7 +200,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int64': return super().__new__( @@ -224,7 +224,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Double': return super().__new__( @@ -248,7 +248,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Float': return super().__new__( @@ -374,7 +374,7 @@ def __new__( int32: typing.Union[MetaOapg.Properties.Int32, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, int64: typing.Union[MetaOapg.Properties.Int64, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, double: typing.Union[MetaOapg.Properties.Double, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeAndFormat': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi index f77afb2d6ab..2c88a32a470 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi @@ -52,7 +52,7 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Uuid': return super().__new__( @@ -77,7 +77,7 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Date': return super().__new__( @@ -102,7 +102,7 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DateTime': return super().__new__( @@ -127,7 +127,7 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Number': return super().__new__( @@ -151,7 +151,7 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Binary': return super().__new__( @@ -175,7 +175,7 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int32': return super().__new__( @@ -199,7 +199,7 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int64': return super().__new__( @@ -223,7 +223,7 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Double': return super().__new__( @@ -247,7 +247,7 @@ class AnyTypeAndFormat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Float': return super().__new__( @@ -373,7 +373,7 @@ class AnyTypeAndFormat( int32: typing.Union[MetaOapg.Properties.Int32, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, int64: typing.Union[MetaOapg.Properties.Int64, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, double: typing.Union[MetaOapg.Properties.Double, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeAndFormat': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py index d0f165cfc68..323b9dd636e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py @@ -41,7 +41,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeNotString': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi index d0f165cfc68..323b9dd636e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi @@ -41,7 +41,7 @@ class AnyTypeNotString( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeNotString': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py index 24d88b8636e..3dcaa5c5482 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py @@ -99,7 +99,7 @@ def __new__( code: typing.Union[MetaOapg.Properties.Code, decimal.Decimal, int, schemas.Unset] = schemas.unset, type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, message: typing.Union[MetaOapg.Properties.Message, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApiResponse': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi index 9cdcf47ee22..ee892666033 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi @@ -98,7 +98,7 @@ class ApiResponse( code: typing.Union[MetaOapg.Properties.Code, decimal.Decimal, int, schemas.Unset] = schemas.unset, type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, message: typing.Union[MetaOapg.Properties.Message, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApiResponse': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py index 566f69ddd90..fc77e1b38ba 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py @@ -128,7 +128,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], origin: typing.Union[MetaOapg.Properties.Origin, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Apple': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi index a91a732654a..33915be5b34 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi @@ -109,7 +109,7 @@ class Apple( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], origin: typing.Union[MetaOapg.Properties.Origin, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Apple': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.py index 3584b36b034..ddfebc53b70 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.py @@ -86,7 +86,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], cultivar: typing.Union[MetaOapg.Properties.Cultivar, str, ], mealy: typing.Union[MetaOapg.Properties.Mealy, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AppleReq': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.pyi index 1d48a228b83..9edd17dab96 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple_req.pyi @@ -85,7 +85,7 @@ class AppleReq( *_args: typing.Union[dict, frozendict.frozendict, ], cultivar: typing.Union[MetaOapg.Properties.Cultivar, str, ], mealy: typing.Union[MetaOapg.Properties.Mealy, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AppleReq': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.py index 6b6c3f0de47..e1307304692 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.py @@ -40,7 +40,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayHoldingAnyType': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.pyi index 6b6c3f0de47..e1307304692 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_holding_any_type.pyi @@ -40,7 +40,7 @@ class ArrayHoldingAnyType( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayHoldingAnyType': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py index 17f599b93d8..9ecea4f3153 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py @@ -60,7 +60,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -74,7 +74,7 @@ def __getitem__(self, i: int) -> MetaOapg.Items: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayArrayNumber': return super().__new__( cls, @@ -123,7 +123,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], ArrayArrayNumber: typing.Union[MetaOapg.Properties.ArrayArrayNumber, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfArrayOfNumberOnly': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi index 4c2202a4c16..0105c7b9f24 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi @@ -59,7 +59,7 @@ class ArrayOfArrayOfNumberOnly( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -73,7 +73,7 @@ class ArrayOfArrayOfNumberOnly( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayArrayNumber': return super().__new__( cls, @@ -122,7 +122,7 @@ class ArrayOfArrayOfNumberOnly( cls, *_args: typing.Union[dict, frozendict.frozendict, ], ArrayArrayNumber: typing.Union[MetaOapg.Properties.ArrayArrayNumber, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfArrayOfNumberOnly': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.py index a4a8c5681d5..516af70228b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.py @@ -43,7 +43,7 @@ def items() -> typing.Type['string_enum.StringEnum']: def __new__( cls, _arg: typing.Union[typing.Tuple['string_enum.StringEnum'], typing.List['string_enum.StringEnum']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayOfEnums': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.pyi index a4a8c5681d5..516af70228b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_enums.pyi @@ -43,7 +43,7 @@ class ArrayOfEnums( def __new__( cls, _arg: typing.Union[typing.Tuple['string_enum.StringEnum'], typing.List['string_enum.StringEnum']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayOfEnums': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py index e476f43cc03..12063525a32 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py @@ -51,7 +51,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayNumber': return super().__new__( cls, @@ -100,7 +100,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], ArrayNumber: typing.Union[MetaOapg.Properties.ArrayNumber, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfNumberOnly': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi index 82c48eba8f1..d326d395185 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi @@ -50,7 +50,7 @@ class ArrayOfNumberOnly( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayNumber': return super().__new__( cls, @@ -99,7 +99,7 @@ class ArrayOfNumberOnly( cls, *_args: typing.Union[dict, frozendict.frozendict, ], ArrayNumber: typing.Union[MetaOapg.Properties.ArrayNumber, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfNumberOnly': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py index cdfb898d04a..2f3134be1e9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py @@ -51,7 +51,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayOfString': return super().__new__( cls, @@ -84,7 +84,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -98,7 +98,7 @@ def __getitem__(self, i: int) -> MetaOapg.Items: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayArrayOfInteger': return super().__new__( cls, @@ -134,7 +134,7 @@ def items() -> typing.Type['read_only_first.ReadOnlyFirst']: def __new__( cls, _arg: typing.Union[typing.Tuple['read_only_first.ReadOnlyFirst'], typing.List['read_only_first.ReadOnlyFirst']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -148,7 +148,7 @@ def __getitem__(self, i: int) -> 'read_only_first.ReadOnlyFirst': def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayArrayOfModel': return super().__new__( cls, @@ -217,7 +217,7 @@ def __new__( array_of_string: typing.Union[MetaOapg.Properties.ArrayOfString, list, tuple, schemas.Unset] = schemas.unset, array_array_of_integer: typing.Union[MetaOapg.Properties.ArrayArrayOfInteger, list, tuple, schemas.Unset] = schemas.unset, array_array_of_model: typing.Union[MetaOapg.Properties.ArrayArrayOfModel, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi index 9c47375ffcb..2ec9830aed1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi @@ -50,7 +50,7 @@ class ArrayTest( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayOfString': return super().__new__( cls, @@ -83,7 +83,7 @@ class ArrayTest( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -97,7 +97,7 @@ class ArrayTest( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayArrayOfInteger': return super().__new__( cls, @@ -133,7 +133,7 @@ class ArrayTest( def __new__( cls, _arg: typing.Union[typing.Tuple['read_only_first.ReadOnlyFirst'], typing.List['read_only_first.ReadOnlyFirst']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -147,7 +147,7 @@ class ArrayTest( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayArrayOfModel': return super().__new__( cls, @@ -216,7 +216,7 @@ class ArrayTest( array_of_string: typing.Union[MetaOapg.Properties.ArrayOfString, list, tuple, schemas.Unset] = schemas.unset, array_array_of_integer: typing.Union[MetaOapg.Properties.ArrayArrayOfInteger, list, tuple, schemas.Unset] = schemas.unset, array_array_of_model: typing.Union[MetaOapg.Properties.ArrayArrayOfModel, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.py index 2264c360abe..215d30bbaef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.py @@ -53,7 +53,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayWithValidationsInItems': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.pyi index 3c0b5df8ea3..67f330186df 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_with_validations_in_items.pyi @@ -46,7 +46,7 @@ class ArrayWithValidationsInItems( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayWithValidationsInItems': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py index 276c3317526..cf9959eb55d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py @@ -82,7 +82,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], lengthCm: typing.Union[MetaOapg.Properties.LengthCm, decimal.Decimal, int, float, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Banana': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi index 513db9834c4..8472b1db708 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi @@ -81,7 +81,7 @@ class Banana( cls, *_args: typing.Union[dict, frozendict.frozendict, ], lengthCm: typing.Union[MetaOapg.Properties.LengthCm, decimal.Decimal, int, float, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Banana': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.py index 49dd97a9b4a..0587b82efbe 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.py @@ -86,7 +86,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], lengthCm: typing.Union[MetaOapg.Properties.LengthCm, decimal.Decimal, int, float, ], sweet: typing.Union[MetaOapg.Properties.Sweet, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'BananaReq': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.pyi index 680ef95fb43..349dcb4fe41 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana_req.pyi @@ -85,7 +85,7 @@ class BananaReq( *_args: typing.Union[dict, frozendict.frozendict, ], lengthCm: typing.Union[MetaOapg.Properties.LengthCm, decimal.Decimal, int, float, ], sweet: typing.Union[MetaOapg.Properties.Sweet, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'BananaReq': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py index 3549c8a1a21..03aff95ba49 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py @@ -99,7 +99,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'BasquePig': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi index 7b661c6af88..e600d39e91f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi @@ -89,7 +89,7 @@ class BasquePig( cls, *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'BasquePig': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py index 5dc0abe881d..fb7ced8ea16 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py @@ -132,7 +132,7 @@ def __new__( Capital_Snake: typing.Union[MetaOapg.Properties.CapitalSnake, str, schemas.Unset] = schemas.unset, SCA_ETH_Flow_Points: typing.Union[MetaOapg.Properties.SCAETHFlowPoints, str, schemas.Unset] = schemas.unset, ATT_NAME: typing.Union[MetaOapg.Properties.ATTNAME, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Capitalization': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi index 85b327f6ee9..7dfb709f4af 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi @@ -131,7 +131,7 @@ class Capitalization( Capital_Snake: typing.Union[MetaOapg.Properties.CapitalSnake, str, schemas.Unset] = schemas.unset, SCA_ETH_Flow_Points: typing.Union[MetaOapg.Properties.SCAETHFlowPoints, str, schemas.Unset] = schemas.unset, ATT_NAME: typing.Union[MetaOapg.Properties.ATTNAME, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Capitalization': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py index 10a52c127af..f813aa0abc3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py @@ -92,7 +92,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], declawed: typing.Union[MetaOapg.Properties.Declawed, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -111,7 +111,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Cat': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi index 0d1d9634b93..9b114bdcb0e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi @@ -91,7 +91,7 @@ class Cat( cls, *_args: typing.Union[dict, frozendict.frozendict, ], declawed: typing.Union[MetaOapg.Properties.Declawed, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -110,7 +110,7 @@ class Cat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Cat': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py index c802e8cd33d..e88e6b8c520 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Category': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi index dafbd00b2fc..5ac0b106cee 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi @@ -92,7 +92,7 @@ class Category( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Category': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py index 3cd5b0231c1..c5697f082a7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py @@ -92,7 +92,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -111,7 +111,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ChildCat': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi index d4f0e6e8b20..997e8fd7577 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi @@ -91,7 +91,7 @@ class ChildCat( cls, *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -110,7 +110,7 @@ class ChildCat( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ChildCat': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py index a45dc9f8d82..750fe48926e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py @@ -80,7 +80,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _class: typing.Union[MetaOapg.Properties._Class, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ClassModel': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi index a45dc9f8d82..750fe48926e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi @@ -80,7 +80,7 @@ class ClassModel( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _class: typing.Union[MetaOapg.Properties._Class, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ClassModel': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py index 31de1cddaf6..3b4b363c1f9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py @@ -77,7 +77,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], client: typing.Union[MetaOapg.Properties.Client, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Client': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi index 818087a33c9..0fe1139a5f5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi @@ -76,7 +76,7 @@ class Client( cls, *_args: typing.Union[dict, frozendict.frozendict, ], client: typing.Union[MetaOapg.Properties.Client, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Client': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py index 3631e0b55c6..6f4aa25248f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py @@ -109,7 +109,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -128,7 +128,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComplexQuadrilateral': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi index 3552968a25c..d0cf23b328b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi @@ -99,7 +99,7 @@ class ComplexQuadrilateral( cls, *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -118,7 +118,7 @@ class ComplexQuadrilateral( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComplexQuadrilateral': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py index 921a91ae724..39f1957b745 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py @@ -60,7 +60,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AnyOf9': return super().__new__( cls, @@ -99,7 +99,7 @@ def __getitem__(self, i: int) -> MetaOapg.Items: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedAnyOfDifferentTypesNoValidations': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi index 921a91ae724..39f1957b745 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi @@ -60,7 +60,7 @@ class ComposedAnyOfDifferentTypesNoValidations( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AnyOf9': return super().__new__( cls, @@ -99,7 +99,7 @@ class ComposedAnyOfDifferentTypesNoValidations( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedAnyOfDifferentTypesNoValidations': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.py index d3c4cb0ca0b..5a5c901be67 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.py @@ -40,7 +40,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedArray': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.pyi index d3c4cb0ca0b..5a5c901be67 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_array.pyi @@ -40,7 +40,7 @@ class ComposedArray( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedArray': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.py index 61186fe408e..107fa816d49 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.py @@ -48,7 +48,7 @@ class AllOf: def __new__( cls, *_args: typing.Union[bool, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedBool': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.pyi index 61186fe408e..107fa816d49 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_bool.pyi @@ -48,7 +48,7 @@ class ComposedBool( def __new__( cls, *_args: typing.Union[bool, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedBool': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.py index 7042005dc5c..1b529217df0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.py @@ -48,7 +48,7 @@ class AllOf: def __new__( cls, *_args: typing.Union[None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedNone': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.pyi index 7042005dc5c..1b529217df0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_none.pyi @@ -48,7 +48,7 @@ class ComposedNone( def __new__( cls, *_args: typing.Union[None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedNone': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.py index c454aa9fd66..d571665659d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.py @@ -48,7 +48,7 @@ class AllOf: def __new__( cls, *_args: typing.Union[decimal.Decimal, int, float, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedNumber': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.pyi index c454aa9fd66..d571665659d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_number.pyi @@ -48,7 +48,7 @@ class ComposedNumber( def __new__( cls, *_args: typing.Union[decimal.Decimal, int, float, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedNumber': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py index 3f27f662ab5..c0775539348 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py @@ -48,7 +48,7 @@ class AllOf: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedObject': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi index 3f27f662ab5..c0775539348 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi @@ -48,7 +48,7 @@ class ComposedObject( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedObject': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py index 53b4a6441fb..09174f02a78 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py @@ -64,7 +64,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf4': return super().__new__( @@ -89,7 +89,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'OneOf5': return super().__new__( cls, @@ -128,7 +128,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedOneOfDifferentTypes': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi index c2dbfcfa0da..466afc658c6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi @@ -58,7 +58,7 @@ class ComposedOneOfDifferentTypes( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf4': return super().__new__( @@ -83,7 +83,7 @@ class ComposedOneOfDifferentTypes( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'OneOf5': return super().__new__( cls, @@ -113,7 +113,7 @@ class ComposedOneOfDifferentTypes( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedOneOfDifferentTypes': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.py index ac0f9ae7c47..6dce303c18d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.py @@ -48,7 +48,7 @@ class AllOf: def __new__( cls, *_args: typing.Union[str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedString': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.pyi index ac0f9ae7c47..6dce303c18d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_string.pyi @@ -48,7 +48,7 @@ class ComposedString( def __new__( cls, *_args: typing.Union[str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ComposedString': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py index 6af24d53a57..8dbd76e829f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py @@ -99,7 +99,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DanishPig': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi index 693d0d31e94..2accf725503 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi @@ -89,7 +89,7 @@ class DanishPig( cls, *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DanishPig': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py index e1b5ced4bef..c05be6fb21e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py @@ -92,7 +92,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], breed: typing.Union[MetaOapg.Properties.Breed, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -111,7 +111,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Dog': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi index 7d6a832ceaf..410454e16db 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi @@ -91,7 +91,7 @@ class Dog( cls, *_args: typing.Union[dict, frozendict.frozendict, ], breed: typing.Union[MetaOapg.Properties.Breed, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -110,7 +110,7 @@ class Dog( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Dog': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.py index d39521d5156..caba8750ae2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.py @@ -66,7 +66,7 @@ def items() -> typing.Type['shape.Shape']: def __new__( cls, _arg: typing.Union[typing.Tuple['shape.Shape'], typing.List['shape.Shape']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Shapes': return super().__new__( cls, @@ -149,7 +149,7 @@ def __new__( shapeOrNull: typing.Union['shape_or_null.ShapeOrNull', schemas.Unset] = schemas.unset, nullableShape: typing.Union['nullable_shape.NullableShape', schemas.Unset] = schemas.unset, shapes: typing.Union[MetaOapg.Properties.Shapes, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: 'fruit.Fruit', ) -> 'Drawing': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.pyi index 82b7866197d..cc7410121cd 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/drawing.pyi @@ -65,7 +65,7 @@ class Drawing( def __new__( cls, _arg: typing.Union[typing.Tuple['shape.Shape'], typing.List['shape.Shape']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Shapes': return super().__new__( cls, @@ -148,7 +148,7 @@ class Drawing( shapeOrNull: typing.Union['shape_or_null.ShapeOrNull', schemas.Unset] = schemas.unset, nullableShape: typing.Union['nullable_shape.NullableShape', schemas.Unset] = schemas.unset, shapes: typing.Union[MetaOapg.Properties.Shapes, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: 'fruit.Fruit', ) -> 'Drawing': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py index 936c7807878..13485545690 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py @@ -96,7 +96,7 @@ def CRAB(cls): def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayEnum': return super().__new__( cls, @@ -155,7 +155,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], just_symbol: typing.Union[MetaOapg.Properties.JustSymbol, str, schemas.Unset] = schemas.unset, array_enum: typing.Union[MetaOapg.Properties.ArrayEnum, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumArrays': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi index 750e7d69fad..fb40ea3d8dc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi @@ -75,7 +75,7 @@ class EnumArrays( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayEnum': return super().__new__( cls, @@ -134,7 +134,7 @@ class EnumArrays( *_args: typing.Union[dict, frozendict.frozendict, ], just_symbol: typing.Union[MetaOapg.Properties.JustSymbol, str, schemas.Unset] = schemas.unset, array_enum: typing.Union[MetaOapg.Properties.ArrayEnum, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumArrays': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py index b2ef5088b65..1d241822997 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py @@ -285,7 +285,7 @@ def __new__( StringEnumWithDefaultValue: typing.Union['string_enum_with_default_value.StringEnumWithDefaultValue', schemas.Unset] = schemas.unset, IntegerEnumWithDefaultValue: typing.Union['integer_enum_with_default_value.IntegerEnumWithDefaultValue', schemas.Unset] = schemas.unset, IntegerEnumOneValue: typing.Union['integer_enum_one_value.IntegerEnumOneValue', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi index 69a29dfb5e7..a142d8c7a87 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi @@ -240,7 +240,7 @@ class EnumTest( StringEnumWithDefaultValue: typing.Union['string_enum_with_default_value.StringEnumWithDefaultValue', schemas.Unset] = schemas.unset, IntegerEnumWithDefaultValue: typing.Union['integer_enum_with_default_value.IntegerEnumWithDefaultValue', schemas.Unset] = schemas.unset, IntegerEnumOneValue: typing.Union['integer_enum_one_value.IntegerEnumOneValue', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py index 0abff3d1be3..28a61bdcbbc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py @@ -109,7 +109,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -128,7 +128,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EquilateralTriangle': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi index de687ef8482..95684b92aa1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi @@ -99,7 +99,7 @@ class EquilateralTriangle( cls, *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -118,7 +118,7 @@ class EquilateralTriangle( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EquilateralTriangle': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py index 33dfb3b704c..91782295ed2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py @@ -79,7 +79,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], sourceURI: typing.Union[MetaOapg.Properties.SourceURI, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'File': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi index 7a103a71e92..1b507097598 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi @@ -78,7 +78,7 @@ class File( cls, *_args: typing.Union[dict, frozendict.frozendict, ], sourceURI: typing.Union[MetaOapg.Properties.SourceURI, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'File': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py index be6083e354f..c51d10c9275 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py @@ -58,7 +58,7 @@ def items() -> typing.Type['file.File']: def __new__( cls, _arg: typing.Union[typing.Tuple['file.File'], typing.List['file.File']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Files': return super().__new__( cls, @@ -117,7 +117,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], file: typing.Union['file.File', schemas.Unset] = schemas.unset, files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FileSchemaTestClass': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi index 45e358d4fe8..3148798965a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi @@ -57,7 +57,7 @@ class FileSchemaTestClass( def __new__( cls, _arg: typing.Union[typing.Tuple['file.File'], typing.List['file.File']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Files': return super().__new__( cls, @@ -116,7 +116,7 @@ class FileSchemaTestClass( *_args: typing.Union[dict, frozendict.frozendict, ], file: typing.Union['file.File', schemas.Unset] = schemas.unset, files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FileSchemaTestClass': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py index 7530f4cf627..1affe1fd338 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py @@ -80,7 +80,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union['bar.Bar', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Foo': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi index 35cbb2d45f7..b3e8e81ec3c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi @@ -79,7 +79,7 @@ class Foo( cls, *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union['bar.Bar', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Foo': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py index 0c83c93067a..c10a2f0c1b4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py @@ -133,7 +133,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayWithUniqueItems': return super().__new__( cls, @@ -455,7 +455,7 @@ def __new__( pattern_with_digits: typing.Union[MetaOapg.Properties.PatternWithDigits, str, schemas.Unset] = schemas.unset, pattern_with_digits_and_delimiter: typing.Union[MetaOapg.Properties.PatternWithDigitsAndDelimiter, str, schemas.Unset] = schemas.unset, noneProp: typing.Union[MetaOapg.Properties.NoneProp, None, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FormatTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi index 15013482c78..fe400bdfd46 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi @@ -91,7 +91,7 @@ class FormatTest( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayWithUniqueItems': return super().__new__( cls, @@ -375,7 +375,7 @@ class FormatTest( pattern_with_digits: typing.Union[MetaOapg.Properties.PatternWithDigits, str, schemas.Unset] = schemas.unset, pattern_with_digits_and_delimiter: typing.Union[MetaOapg.Properties.PatternWithDigitsAndDelimiter, str, schemas.Unset] = schemas.unset, noneProp: typing.Union[MetaOapg.Properties.NoneProp, None, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FormatTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py index 0b6b866807b..88588ef5bb5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py @@ -88,7 +88,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], data: typing.Union[MetaOapg.Properties.Data, str, schemas.Unset] = schemas.unset, id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FromSchema': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi index ae92aa28cdc..e8b9eca480d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi @@ -87,7 +87,7 @@ class FromSchema( *_args: typing.Union[dict, frozendict.frozendict, ], data: typing.Union[MetaOapg.Properties.Data, str, schemas.Unset] = schemas.unset, id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FromSchema': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py index 93a083d0a04..227adef9ab9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py @@ -92,7 +92,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Fruit': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi index 93a083d0a04..227adef9ab9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi @@ -92,7 +92,7 @@ class Fruit( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Fruit': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py index 678aa0584f7..adbb82c9e46 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py @@ -56,7 +56,7 @@ def one_of2() -> typing.Type['banana_req.BananaReq']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FruitReq': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi index 678aa0584f7..adbb82c9e46 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi @@ -56,7 +56,7 @@ class FruitReq( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FruitReq': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py index f06c62a9070..677f2c82e3e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py @@ -92,7 +92,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GmFruit': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi index f06c62a9070..677f2c82e3e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi @@ -92,7 +92,7 @@ class GmFruit( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GmFruit': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py index e8eab53491d..4c668524d50 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py @@ -91,7 +91,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], pet_type: typing.Union[MetaOapg.Properties.PetType, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GrandparentAnimal': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi index ddfc5fa9db1..263d9f19bf3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi @@ -90,7 +90,7 @@ class GrandparentAnimal( cls, *_args: typing.Union[dict, frozendict.frozendict, ], pet_type: typing.Union[MetaOapg.Properties.PetType, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GrandparentAnimal': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py index 09f822141d7..142517f4d73 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py @@ -88,7 +88,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HasOnlyReadOnly': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi index 09497897fd2..a32f567fec0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi @@ -87,7 +87,7 @@ class HasOnlyReadOnly( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HasOnlyReadOnly': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py index 1bc74a9e14e..86dc9592c1c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py @@ -59,7 +59,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[None, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NullableMessage': return super().__new__( cls, @@ -105,7 +105,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], NullableMessage: typing.Union[MetaOapg.Properties.NullableMessage, None, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HealthCheckResult': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi index 63dd7e97bfa..17d95ab852d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi @@ -58,7 +58,7 @@ class HealthCheckResult( def __new__( cls, *_args: typing.Union[None, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NullableMessage': return super().__new__( cls, @@ -104,7 +104,7 @@ class HealthCheckResult( cls, *_args: typing.Union[dict, frozendict.frozendict, ], NullableMessage: typing.Union[MetaOapg.Properties.NullableMessage, None, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HealthCheckResult': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py index 9f28f29ee3b..f2f1dde1dec 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py @@ -109,7 +109,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -128,7 +128,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'IsoscelesTriangle': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi index 875124ffa09..5ffec1d18bb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi @@ -99,7 +99,7 @@ class IsoscelesTriangle( cls, *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -118,7 +118,7 @@ class IsoscelesTriangle( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'IsoscelesTriangle': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py index 27fd344174f..291bb193b61 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py @@ -68,7 +68,7 @@ def one_of2() -> typing.Type['json_patch_request_move_copy.JSONPatchRequestMoveC def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( @@ -81,7 +81,7 @@ def __new__( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'JSONPatchRequest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi index 27fd344174f..291bb193b61 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi @@ -68,7 +68,7 @@ class JSONPatchRequest( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( @@ -81,7 +81,7 @@ class JSONPatchRequest( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'JSONPatchRequest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.py index e52230e217f..40e9aa6e30e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.py @@ -128,7 +128,7 @@ def __new__( op: typing.Union[MetaOapg.Properties.Op, str, ], path: typing.Union[MetaOapg.Properties.Path, str, ], value: typing.Union[MetaOapg.Properties.Value, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'JSONPatchRequestAddReplaceTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.pyi index c9966de8ca0..1abacb913d9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_add_replace_test.pyi @@ -116,7 +116,7 @@ class JSONPatchRequestAddReplaceTest( op: typing.Union[MetaOapg.Properties.Op, str, ], path: typing.Union[MetaOapg.Properties.Path, str, ], value: typing.Union[MetaOapg.Properties.Value, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'JSONPatchRequestAddReplaceTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.py index 346e1bc8ed1..72a23be5fd3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.py @@ -121,7 +121,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], op: typing.Union[MetaOapg.Properties.Op, str, ], path: typing.Union[MetaOapg.Properties.Path, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'JSONPatchRequestMoveCopy': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.pyi index 74009266472..8cde2f69d8b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_move_copy.pyi @@ -110,7 +110,7 @@ class JSONPatchRequestMoveCopy( *_args: typing.Union[dict, frozendict.frozendict, ], op: typing.Union[MetaOapg.Properties.Op, str, ], path: typing.Union[MetaOapg.Properties.Path, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'JSONPatchRequestMoveCopy': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.py index c47c032de95..ff7d65b3392 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.py @@ -105,7 +105,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], op: typing.Union[MetaOapg.Properties.Op, str, ], path: typing.Union[MetaOapg.Properties.Path, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'JSONPatchRequestRemove': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.pyi index 59c01bc3cff..e79a6359686 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request_remove.pyi @@ -95,7 +95,7 @@ class JSONPatchRequestRemove( *_args: typing.Union[dict, frozendict.frozendict, ], op: typing.Union[MetaOapg.Properties.Op, str, ], path: typing.Union[MetaOapg.Properties.Path, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'JSONPatchRequestRemove': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py index 05ac5f7ea8f..1d34aa65484 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py @@ -69,7 +69,7 @@ def one_of2() -> typing.Type['pig.Pig']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Mammal': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi index 05ac5f7ea8f..1d34aa65484 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi @@ -69,7 +69,7 @@ class Mammal( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Mammal': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py index ac79eb6901c..9feec63d957 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py @@ -67,7 +67,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'AdditionalProperties': return super().__new__( @@ -87,7 +87,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, ], ) -> 'MapMapOfString': return super().__new__( @@ -139,7 +139,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'MapOfEnumString': return super().__new__( @@ -169,7 +169,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'DirectMap': return super().__new__( @@ -251,7 +251,7 @@ def __new__( map_of_enum_string: typing.Union[MetaOapg.Properties.MapOfEnumString, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, direct_map: typing.Union[MetaOapg.Properties.DirectMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, indirect_map: typing.Union['string_boolean_map.StringBooleanMap', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MapTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi index 5c83f56ab51..d1eaedc7ff7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi @@ -64,7 +64,7 @@ class MapTest( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'AdditionalProperties': return super().__new__( @@ -84,7 +84,7 @@ class MapTest( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, ], ) -> 'MapMapOfString': return super().__new__( @@ -125,7 +125,7 @@ class MapTest( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'MapOfEnumString': return super().__new__( @@ -154,7 +154,7 @@ class MapTest( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'DirectMap': return super().__new__( @@ -236,7 +236,7 @@ class MapTest( map_of_enum_string: typing.Union[MetaOapg.Properties.MapOfEnumString, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, direct_map: typing.Union[MetaOapg.Properties.DirectMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, indirect_map: typing.Union['string_boolean_map.StringBooleanMap', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MapTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py index d32cf3663f8..601ef387461 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py @@ -63,7 +63,7 @@ def get_item_oapg(self, name: str) -> 'animal.Animal': def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: 'animal.Animal', ) -> 'Map': return super().__new__( @@ -131,7 +131,7 @@ def __new__( uuid: typing.Union[MetaOapg.Properties.Uuid, str, uuid.UUID, schemas.Unset] = schemas.unset, dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, map: typing.Union[MetaOapg.Properties.Map, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MixedPropertiesAndAdditionalPropertiesClass': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi index c98da1ebbd2..37f71eb72d5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi @@ -61,7 +61,7 @@ class MixedPropertiesAndAdditionalPropertiesClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: 'animal.Animal', ) -> 'Map': return super().__new__( @@ -129,7 +129,7 @@ class MixedPropertiesAndAdditionalPropertiesClass( uuid: typing.Union[MetaOapg.Properties.Uuid, str, uuid.UUID, schemas.Unset] = schemas.unset, dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, map: typing.Union[MetaOapg.Properties.Map, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MixedPropertiesAndAdditionalPropertiesClass': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py index bda3fe2bb6b..752a21235ea 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py @@ -98,7 +98,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], amount: typing.Union[MetaOapg.Properties.Amount, str, ], currency: 'currency.Currency', - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Money': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi index 69d27ef1fc8..53965837e64 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi @@ -97,7 +97,7 @@ class Money( *_args: typing.Union[dict, frozendict.frozendict, ], amount: typing.Union[MetaOapg.Properties.Amount, str, ], currency: 'currency.Currency', - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Money': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py index 5c08e8a0612..9553cf612ac 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py @@ -106,7 +106,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, ], snake_case: typing.Union[MetaOapg.Properties.SnakeCase, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Name': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi index 5c08e8a0612..9553cf612ac 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi @@ -106,7 +106,7 @@ class Name( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, ], snake_case: typing.Union[MetaOapg.Properties.SnakeCase, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Name': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.py index b87f0fcc62c..e3a82222164 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.py @@ -86,7 +86,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, ], petId: typing.Union[MetaOapg.Properties.PetId, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NoAdditionalProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.pyi index a61c9c26450..17f34c3cb57 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/no_additional_properties.pyi @@ -85,7 +85,7 @@ class NoAdditionalProperties( *_args: typing.Union[dict, frozendict.frozendict, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, ], petId: typing.Union[MetaOapg.Properties.PetId, decimal.Decimal, int, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NoAdditionalProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py index 0292c3700ef..38decc5ef81 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py @@ -58,7 +58,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[None, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'IntegerProp': return super().__new__( cls, @@ -85,7 +85,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[None, decimal.Decimal, int, float, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NumberProp': return super().__new__( cls, @@ -112,7 +112,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[None, bool, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'BooleanProp': return super().__new__( cls, @@ -139,7 +139,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[None, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'StringProp': return super().__new__( cls, @@ -168,7 +168,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[None, str, datetime.date, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'DateProp': return super().__new__( cls, @@ -197,7 +197,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[None, str, datetime.datetime, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'DatetimeProp': return super().__new__( cls, @@ -225,7 +225,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[list, tuple, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayNullableProp': return super().__new__( cls, @@ -267,7 +267,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( @@ -281,7 +281,7 @@ def __new__( def __new__( cls, *_args: typing.Union[list, tuple, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayAndItemsNullableProp': return super().__new__( cls, @@ -317,7 +317,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( @@ -330,7 +330,7 @@ def __new__( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, None, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, None, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayItemsNullable': return super().__new__( cls, @@ -368,7 +368,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, ], ) -> 'ObjectNullableProp': return super().__new__( @@ -412,7 +412,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -433,7 +433,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, None, ], ) -> 'ObjectAndItemsNullableProp': return super().__new__( @@ -471,7 +471,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -491,7 +491,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, None, ], ) -> 'ObjectItemsNullable': return super().__new__( @@ -534,7 +534,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -678,7 +678,7 @@ def __new__( object_nullable_prop: typing.Union[MetaOapg.Properties.ObjectNullableProp, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, object_and_items_nullable_prop: typing.Union[MetaOapg.Properties.ObjectAndItemsNullableProp, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, object_items_nullable: typing.Union[MetaOapg.Properties.ObjectItemsNullable, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, None, ], ) -> 'NullableClass': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi index 27f9057f2da..818d55d667b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi @@ -57,7 +57,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[None, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'IntegerProp': return super().__new__( cls, @@ -84,7 +84,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[None, decimal.Decimal, int, float, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NumberProp': return super().__new__( cls, @@ -111,7 +111,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[None, bool, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'BooleanProp': return super().__new__( cls, @@ -138,7 +138,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[None, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'StringProp': return super().__new__( cls, @@ -167,7 +167,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[None, str, datetime.date, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'DateProp': return super().__new__( cls, @@ -196,7 +196,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[None, str, datetime.datetime, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'DatetimeProp': return super().__new__( cls, @@ -224,7 +224,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[list, tuple, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayNullableProp': return super().__new__( cls, @@ -266,7 +266,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( @@ -280,7 +280,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[list, tuple, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayAndItemsNullableProp': return super().__new__( cls, @@ -316,7 +316,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( @@ -329,7 +329,7 @@ class NullableClass( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, None, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, None, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayItemsNullable': return super().__new__( cls, @@ -367,7 +367,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, ], ) -> 'ObjectNullableProp': return super().__new__( @@ -411,7 +411,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -432,7 +432,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, None, ], ) -> 'ObjectAndItemsNullableProp': return super().__new__( @@ -469,7 +469,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -489,7 +489,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, None, ], ) -> 'ObjectItemsNullable': return super().__new__( @@ -532,7 +532,7 @@ class NullableClass( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( @@ -676,7 +676,7 @@ class NullableClass( object_nullable_prop: typing.Union[MetaOapg.Properties.ObjectNullableProp, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, object_and_items_nullable_prop: typing.Union[MetaOapg.Properties.ObjectAndItemsNullableProp, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, object_items_nullable: typing.Union[MetaOapg.Properties.ObjectItemsNullable, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, None, ], ) -> 'NullableClass': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py index 63a02a30028..44edf8d2fef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py @@ -58,7 +58,7 @@ def one_of1() -> typing.Type['quadrilateral.Quadrilateral']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NullableShape': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi index 63a02a30028..44edf8d2fef 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi @@ -58,7 +58,7 @@ class NullableShape( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NullableShape': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.py index c0974dd60a3..310a7b67cd8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.py @@ -46,7 +46,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[None, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NullableString': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.pyi index c0974dd60a3..310a7b67cd8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_string.pyi @@ -46,7 +46,7 @@ class NullableString( def __new__( cls, *_args: typing.Union[None, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NullableString': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py index fc47c1e6511..99d67d24432 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py @@ -77,7 +77,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], JustNumber: typing.Union[MetaOapg.Properties.JustNumber, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NumberOnly': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi index 17f9472cdf0..479955e30a6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi @@ -76,7 +76,7 @@ class NumberOnly( cls, *_args: typing.Union[dict, frozendict.frozendict, ], JustNumber: typing.Union[MetaOapg.Properties.JustNumber, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NumberOnly': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py index 2ea13684c29..6c833b7fa70 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py @@ -95,7 +95,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], arg: typing.Union[MetaOapg.Properties.Arg, str, ], args: typing.Union[MetaOapg.Properties.Args, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithArgAndArgsProperties': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi index d0f1247d49b..1b0457ed945 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi @@ -94,7 +94,7 @@ class ObjectModelWithArgAndArgsProperties( *_args: typing.Union[dict, frozendict.frozendict, ], arg: typing.Union[MetaOapg.Properties.Arg, str, ], args: typing.Union[MetaOapg.Properties.Args, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithArgAndArgsProperties': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py index b49cd12c44e..25aa5879640 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py @@ -110,7 +110,7 @@ def __new__( myNumber: typing.Union['number_with_validations.NumberWithValidations', schemas.Unset] = schemas.unset, myString: typing.Union['string.String', schemas.Unset] = schemas.unset, myBoolean: typing.Union['boolean.Boolean', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithRefProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi index 8fb19b2004b..75dcbffc7ae 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi @@ -109,7 +109,7 @@ class ObjectModelWithRefProps( myNumber: typing.Union['number_with_validations.NumberWithValidations', schemas.Unset] = schemas.unset, myString: typing.Union['string.String', schemas.Unset] = schemas.unset, myBoolean: typing.Union['boolean.Boolean', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithRefProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py index c6941639fe6..ad6b7912bb8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py @@ -106,7 +106,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], test: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -126,7 +126,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithAllOfWithReqTestPropFromUnsetAddProp': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi index d0a6ef555b2..c23334f25a6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi @@ -105,7 +105,7 @@ class ObjectWithAllOfWithReqTestPropFromUnsetAddProp( *_args: typing.Union[dict, frozendict.frozendict, ], test: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -125,7 +125,7 @@ class ObjectWithAllOfWithReqTestPropFromUnsetAddProp( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithAllOfWithReqTestPropFromUnsetAddProp': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py index f4a8972b796..4c3e5644ef4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py @@ -105,7 +105,7 @@ def __new__( length: typing.Union['decimal_payload.DecimalPayload', schemas.Unset] = schemas.unset, width: typing.Union[MetaOapg.Properties.Width, str, schemas.Unset] = schemas.unset, cost: typing.Union['money.Money', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDecimalProperties': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi index 93413f56b87..fbdf6ab7fc2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi @@ -104,7 +104,7 @@ class ObjectWithDecimalProperties( length: typing.Union['decimal_payload.DecimalPayload', schemas.Unset] = schemas.unset, width: typing.Union[MetaOapg.Properties.Width, str, schemas.Unset] = schemas.unset, cost: typing.Union['money.Money', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDecimalProperties': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py index 591fcb8bc47..1bd7ad5d35f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py @@ -102,7 +102,7 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDifficultlyNamedProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi index 254b092bb53..b79d168e133 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi @@ -101,7 +101,7 @@ class ObjectWithDifficultlyNamedProps( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDifficultlyNamedProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py index dc26d166878..7fa58c34fb5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py @@ -68,7 +68,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( @@ -116,7 +116,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInlineCompositionProperty': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi index 6f11a40b004..fa9214a0bba 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi @@ -61,7 +61,7 @@ class ObjectWithInlineCompositionProperty( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( @@ -109,7 +109,7 @@ class ObjectWithInlineCompositionProperty( cls, *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInlineCompositionProperty': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py index 910dff05bda..8229b3527a3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py @@ -97,7 +97,7 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInvalidNamedRefedProperties': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi index b8067346f13..ed1d6f05afc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi @@ -96,7 +96,7 @@ class ObjectWithInvalidNamedRefedProperties( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInvalidNamedRefedProperties': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py index 0060caacf91..00acdbedbd9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py @@ -77,7 +77,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], test: typing.Union[MetaOapg.Properties.Test, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithOptionalTestProp': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi index b5e675deb42..90f6d0bfe38 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi @@ -76,7 +76,7 @@ class ObjectWithOptionalTestProp( cls, *_args: typing.Union[dict, frozendict.frozendict, ], test: typing.Union[MetaOapg.Properties.Test, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithOptionalTestProp': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py index 601a848991e..c8caf76b226 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py @@ -40,7 +40,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithValidations': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi index 7788e22c02e..3e68a8a5e57 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi @@ -35,7 +35,7 @@ class ObjectWithValidations( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithValidations': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py index 21ccbf51b90..7b5e8ad234b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py @@ -159,7 +159,7 @@ def __new__( shipDate: typing.Union[MetaOapg.Properties.ShipDate, str, datetime.datetime, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, complete: typing.Union[MetaOapg.Properties.Complete, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Order': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi index 59e7206ca28..6a3abe1c25f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi @@ -147,7 +147,7 @@ class Order( shipDate: typing.Union[MetaOapg.Properties.ShipDate, str, datetime.datetime, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, complete: typing.Union[MetaOapg.Properties.Complete, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Order': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py index 20c55a6593f..4f09205ce65 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py @@ -59,7 +59,7 @@ def all_of0() -> typing.Type['grandparent_animal.GrandparentAnimal']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ParentPet': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi index 20c55a6593f..4f09205ce65 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi @@ -59,7 +59,7 @@ class ParentPet( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ParentPet': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py index fc70e2a69ef..ee1904bbfbf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py @@ -63,7 +63,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'PhotoUrls': return super().__new__( cls, @@ -90,7 +90,7 @@ def items() -> typing.Type['tag.Tag']: def __new__( cls, _arg: typing.Union[typing.Tuple['tag.Tag'], typing.List['tag.Tag']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Tags': return super().__new__( cls, @@ -220,7 +220,7 @@ def __new__( category: typing.Union['category.Category', schemas.Unset] = schemas.unset, tags: typing.Union[MetaOapg.Properties.Tags, list, tuple, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pet': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi index fd6e6f38327..6a70856d360 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi @@ -62,7 +62,7 @@ class Pet( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'PhotoUrls': return super().__new__( cls, @@ -89,7 +89,7 @@ class Pet( def __new__( cls, _arg: typing.Union[typing.Tuple['tag.Tag'], typing.List['tag.Tag']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Tags': return super().__new__( cls, @@ -208,7 +208,7 @@ class Pet( category: typing.Union['category.Category', schemas.Unset] = schemas.unset, tags: typing.Union[MetaOapg.Properties.Tags, list, tuple, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pet': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py index 173f555d8f7..7b888262d9b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py @@ -63,7 +63,7 @@ def one_of1() -> typing.Type['danish_pig.DanishPig']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pig': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi index 173f555d8f7..7b888262d9b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi @@ -63,7 +63,7 @@ class Pig( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pig': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py index 0463a500012..cffaaa07921 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, enemyPlayer: typing.Union['Player', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Player': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi index 47c159e7f62..bdab2a9b347 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi @@ -92,7 +92,7 @@ class Player( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, enemyPlayer: typing.Union['Player', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Player': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py index f0e84cd0be3..cf3d553f17f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py @@ -63,7 +63,7 @@ def one_of1() -> typing.Type['complex_quadrilateral.ComplexQuadrilateral']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Quadrilateral': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi index f0e84cd0be3..cf3d553f17f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi @@ -63,7 +63,7 @@ class Quadrilateral( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Quadrilateral': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py index 834fe12a918..76eb25f390a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py @@ -113,7 +113,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'QuadrilateralInterface': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi index b686e9f5c37..5c7780cb890 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi @@ -104,7 +104,7 @@ class QuadrilateralInterface( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'QuadrilateralInterface': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py index 63028b284e1..fe7d473f615 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py @@ -88,7 +88,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, baz: typing.Union[MetaOapg.Properties.Baz, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReadOnlyFirst': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi index b0c235125a7..c1b0108e9c6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi @@ -87,7 +87,7 @@ class ReadOnlyFirst( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, baz: typing.Union[MetaOapg.Properties.Baz, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReadOnlyFirst': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.py index 9ae4ca9e2c1..8e93deaa146 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.py @@ -86,7 +86,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], validName: typing.Union[MetaOapg.AdditionalProperties, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'ReqPropsFromExplicitAddProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.pyi index d99fb137a35..04295d6d65e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_explicit_add_props.pyi @@ -85,7 +85,7 @@ class ReqPropsFromExplicitAddProps( cls, *_args: typing.Union[dict, frozendict.frozendict, ], validName: typing.Union[MetaOapg.AdditionalProperties, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'ReqPropsFromExplicitAddProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.py index 04632f7545f..bb817157acf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.py @@ -86,7 +86,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], validName: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'ReqPropsFromTrueAddProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.pyi index 768d950f519..200b69a9e0b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_true_add_props.pyi @@ -85,7 +85,7 @@ class ReqPropsFromTrueAddProps( cls, *_args: typing.Union[dict, frozendict.frozendict, ], validName: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'ReqPropsFromTrueAddProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py index 65e6184a024..960a0384629 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py @@ -85,7 +85,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], validName: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReqPropsFromUnsetAddProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi index ccc0ba35fbf..252e1056ac9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi @@ -84,7 +84,7 @@ class ReqPropsFromUnsetAddProps( cls, *_args: typing.Union[dict, frozendict.frozendict, ], validName: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReqPropsFromUnsetAddProps': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py index 690c8a63313..39a90b3b44d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py @@ -109,7 +109,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -128,7 +128,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ScaleneTriangle': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi index 635aad88dbf..d40f209a066 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi @@ -99,7 +99,7 @@ class ScaleneTriangle( cls, *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -118,7 +118,7 @@ class ScaleneTriangle( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ScaleneTriangle': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.py index 03c8e03a6d2..2c46c2d3224 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.py @@ -43,7 +43,7 @@ def items() -> typing.Type['SelfReferencingArrayModel']: def __new__( cls, _arg: typing.Union[typing.Tuple['SelfReferencingArrayModel'], typing.List['SelfReferencingArrayModel']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'SelfReferencingArrayModel': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.pyi index 03c8e03a6d2..2c46c2d3224 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_array_model.pyi @@ -43,7 +43,7 @@ class SelfReferencingArrayModel( def __new__( cls, _arg: typing.Union[typing.Tuple['SelfReferencingArrayModel'], typing.List['SelfReferencingArrayModel']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'SelfReferencingArrayModel': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.py index 62995e333c8..2526793e215 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.py @@ -84,7 +84,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], selfRef: typing.Union['SelfReferencingObjectModel', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: 'SelfReferencingObjectModel', ) -> 'SelfReferencingObjectModel': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.pyi index be4cf66c7eb..4e84d3d8445 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/self_referencing_object_model.pyi @@ -83,7 +83,7 @@ class SelfReferencingObjectModel( cls, *_args: typing.Union[dict, frozendict.frozendict, ], selfRef: typing.Union['SelfReferencingObjectModel', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: 'SelfReferencingObjectModel', ) -> 'SelfReferencingObjectModel': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py index 294f6c18c29..d292b109f21 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py @@ -63,7 +63,7 @@ def one_of1() -> typing.Type['quadrilateral.Quadrilateral']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Shape': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi index 294f6c18c29..d292b109f21 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi @@ -63,7 +63,7 @@ class Shape( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Shape': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py index 946ae392815..ae736732a4a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py @@ -67,7 +67,7 @@ def one_of2() -> typing.Type['quadrilateral.Quadrilateral']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ShapeOrNull': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi index 946ae392815..ae736732a4a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi @@ -67,7 +67,7 @@ class ShapeOrNull( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ShapeOrNull': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py index 7ad083471d2..50954cdbd8a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py @@ -109,7 +109,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -128,7 +128,7 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SimpleQuadrilateral': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi index d90b947d876..6e6cbeb1a29 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi @@ -99,7 +99,7 @@ class SimpleQuadrilateral( cls, *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( @@ -118,7 +118,7 @@ class SimpleQuadrilateral( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SimpleQuadrilateral': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py index 2715bfae816..688929d29e3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py @@ -49,7 +49,7 @@ def all_of0() -> typing.Type['object_interface.ObjectInterface']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeObject': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi index 2715bfae816..688929d29e3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi @@ -49,7 +49,7 @@ class SomeObject( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeObject': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py index 5de2a162114..75b9204b163 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py @@ -79,7 +79,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], a: typing.Union[MetaOapg.Properties.A, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SpecialModelName': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi index 4949978ada7..1344464d53a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi @@ -78,7 +78,7 @@ class SpecialModelName( cls, *_args: typing.Union[dict, frozendict.frozendict, ], a: typing.Union[MetaOapg.Properties.A, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SpecialModelName': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.py index 65e8f2db3b8..a3ce24c2256 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.py @@ -47,7 +47,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'StringBooleanMap': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.pyi index 04198034274..97a5b0c63a2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_boolean_map.pyi @@ -46,7 +46,7 @@ class StringBooleanMap( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'StringBooleanMap': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.py index 16505771780..d039891e075 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.py @@ -83,7 +83,7 @@ def NONE(cls): def __new__( cls, *_args: typing.Union[None, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'StringEnum': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.pyi index 16505771780..d039891e075 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/string_enum.pyi @@ -83,7 +83,7 @@ class StringEnum( def __new__( cls, *_args: typing.Union[None, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'StringEnum': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py index 44ded97fc9a..5381cd37890 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py @@ -88,7 +88,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Tag': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi index 3baa63e69d2..790cc933c6a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi @@ -87,7 +87,7 @@ class Tag( *_args: typing.Union[dict, frozendict.frozendict, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Tag': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py index e14087bdf14..d3615f83022 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py @@ -69,7 +69,7 @@ def one_of2() -> typing.Type['scalene_triangle.ScaleneTriangle']: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Triangle': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi index e14087bdf14..d3615f83022 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi @@ -69,7 +69,7 @@ class Triangle( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Triangle': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py index f3c24f45173..a70eb62ebd0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py @@ -113,7 +113,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'TriangleInterface': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi index 8247f6ea2dc..6deffa2fd53 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi @@ -104,7 +104,7 @@ class TriangleInterface( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'TriangleInterface': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py index fa8d9b24d60..d6065ec1e80 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py @@ -66,7 +66,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithNoDeclaredPropsNullable': return super().__new__( @@ -91,7 +91,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeExceptNullProp': return super().__new__( @@ -260,7 +260,7 @@ def __new__( anyTypeProp: typing.Union[MetaOapg.Properties.AnyTypeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, anyTypeExceptNullProp: typing.Union[MetaOapg.Properties.AnyTypeExceptNullProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, anyTypePropNullable: typing.Union[MetaOapg.Properties.AnyTypePropNullable, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'User': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi index 7eaa1451d5b..923cdbb0f8e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi @@ -65,7 +65,7 @@ class User( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithNoDeclaredPropsNullable': return super().__new__( @@ -90,7 +90,7 @@ class User( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeExceptNullProp': return super().__new__( @@ -259,7 +259,7 @@ class User( anyTypeProp: typing.Union[MetaOapg.Properties.AnyTypeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, anyTypeExceptNullProp: typing.Union[MetaOapg.Properties.AnyTypeExceptNullProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, anyTypePropNullable: typing.Union[MetaOapg.Properties.AnyTypePropNullable, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'User': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py index e3bb9d9bb34..2a03481e658 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py @@ -121,7 +121,7 @@ def __new__( className: typing.Union[MetaOapg.Properties.ClassName, str, ], hasBaleen: typing.Union[MetaOapg.Properties.HasBaleen, bool, schemas.Unset] = schemas.unset, hasTeeth: typing.Union[MetaOapg.Properties.HasTeeth, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Whale': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi index 33de17a22df..a1cbc0fdde7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi @@ -111,7 +111,7 @@ class Whale( className: typing.Union[MetaOapg.Properties.ClassName, str, ], hasBaleen: typing.Union[MetaOapg.Properties.HasBaleen, bool, schemas.Unset] = schemas.unset, hasTeeth: typing.Union[MetaOapg.Properties.HasTeeth, bool, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Whale': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.py index f2ec22584e7..0053e944777 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.py @@ -138,7 +138,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'Zebra': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.pyi index 0017425382c..1f724dead4d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/zebra.pyi @@ -117,7 +117,7 @@ class Zebra( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'Zebra': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.py index edf9acc0d8f..a9592d3e308 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.py @@ -57,7 +57,7 @@ def DOLLAR(cls): def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.pyi index 9fb1b2691a0..dc3d06e6992 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_0/schema.pyi @@ -47,7 +47,7 @@ class Schema( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.py index edf9acc0d8f..a9592d3e308 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.py @@ -57,7 +57,7 @@ def DOLLAR(cls): def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.pyi index 9fb1b2691a0..dc3d06e6992 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/parameter_2/schema.pyi @@ -47,7 +47,7 @@ class Schema( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py index f324de47bff..4d385b856ee 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py @@ -68,7 +68,7 @@ def DOLLAR(cls): def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'EnumFormStringArray': return super().__new__( cls, @@ -155,7 +155,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], enum_form_string_array: typing.Union[MetaOapg.Properties.EnumFormStringArray, list, tuple, schemas.Unset] = schemas.unset, enum_form_string: typing.Union[MetaOapg.Properties.EnumFormString, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi index 1e5e1d9f4b8..cc6fe6e81c8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi @@ -57,7 +57,7 @@ class ApplicationXWwwFormUrlencoded( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'EnumFormStringArray': return super().__new__( cls, @@ -133,7 +133,7 @@ class ApplicationXWwwFormUrlencoded( *_args: typing.Union[dict, frozendict.frozendict, ], enum_form_string_array: typing.Union[MetaOapg.Properties.EnumFormStringArray, list, tuple, schemas.Unset] = schemas.unset, enum_form_string: typing.Union[MetaOapg.Properties.EnumFormString, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py index 0b65a4a196f..435e5c549a6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py @@ -330,7 +330,7 @@ def __new__( dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, password: typing.Union[MetaOapg.Properties.Password, str, schemas.Unset] = schemas.unset, callback: typing.Union[MetaOapg.Properties.Callback, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi index f2f2cd702a4..009fee3c39a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi @@ -264,7 +264,7 @@ class ApplicationXWwwFormUrlencoded( dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, password: typing.Union[MetaOapg.Properties.Password, str, schemas.Unset] = schemas.unset, callback: typing.Union[MetaOapg.Properties.Callback, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.py index 4220612ba16..1a1ecbc961d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.py @@ -42,7 +42,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.pyi index 0011d3a21d2..6f41da900d4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/request_body/application_json.pyi @@ -41,7 +41,7 @@ class ApplicationJson( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, str, ], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py index b8657e6a405..2c3ff50e547 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py @@ -52,7 +52,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi index 5248d9de1c4..dffc8f46e87 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi @@ -46,7 +46,7 @@ class Schema( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py index 360f3b81e9c..0f182d851f3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py @@ -63,7 +63,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( @@ -111,7 +111,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi index 3fe6fdc7785..44c8348f708 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi @@ -56,7 +56,7 @@ class Schema( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( @@ -104,7 +104,7 @@ class Schema( cls, *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py index fb75b34df3a..f3e4ebfde71 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py @@ -52,7 +52,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi index 149ee7adeeb..ab71708d971 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi @@ -46,7 +46,7 @@ class ApplicationJson( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py index fe194a52878..9f92ca0fa3e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py @@ -63,7 +63,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( @@ -111,7 +111,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi index a304afda9f7..ed639bfd437 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi @@ -56,7 +56,7 @@ class MultipartFormData( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( @@ -104,7 +104,7 @@ class MultipartFormData( cls, *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py index fb75b34df3a..f3e4ebfde71 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py @@ -52,7 +52,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi index 149ee7adeeb..ab71708d971 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi @@ -46,7 +46,7 @@ class ApplicationJson( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py index fe194a52878..9f92ca0fa3e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py @@ -63,7 +63,7 @@ class MetaOapg: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( @@ -111,7 +111,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi index a304afda9f7..ed639bfd437 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi @@ -56,7 +56,7 @@ class MultipartFormData( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( @@ -104,7 +104,7 @@ class MultipartFormData( cls, *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py index 1afefef8a3b..5498336e5af 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py @@ -90,7 +90,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], param: typing.Union[MetaOapg.Properties.Param, str, ], param2: typing.Union[MetaOapg.Properties.Param2, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi index 27a3bba7f90..2758e5a64ee 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi @@ -89,7 +89,7 @@ class ApplicationXWwwFormUrlencoded( *_args: typing.Union[dict, frozendict.frozendict, ], param: typing.Union[MetaOapg.Properties.Param, str, ], param2: typing.Union[MetaOapg.Properties.Param2, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py index c5f350b96ab..3dd1223a010 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py @@ -72,7 +72,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], keyword: typing.Union[MetaOapg.Properties.Keyword, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi index d76c19deeac..608a522e729 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi @@ -71,7 +71,7 @@ class Schema( cls, *_args: typing.Union[dict, frozendict.frozendict, ], keyword: typing.Union[MetaOapg.Properties.Keyword, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py index 6f48c6f1349..0a5306313cc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py @@ -88,7 +88,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], requiredFile: typing.Union[MetaOapg.Properties.RequiredFile, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi index 01f8d4832b0..40b849cf26e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi @@ -87,7 +87,7 @@ class MultipartFormData( *_args: typing.Union[dict, frozendict.frozendict, ], requiredFile: typing.Union[MetaOapg.Properties.RequiredFile, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.py index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.py @@ -35,7 +35,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.pyi index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_0/schema.pyi @@ -35,7 +35,7 @@ class Schema( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.py index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.py @@ -35,7 +35,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.pyi index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_1/schema.pyi @@ -35,7 +35,7 @@ class Schema( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.py index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.py @@ -35,7 +35,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.pyi index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_2/schema.pyi @@ -35,7 +35,7 @@ class Schema( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.py index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.py @@ -35,7 +35,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.pyi index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_3/schema.pyi @@ -35,7 +35,7 @@ class Schema( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.py index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.py @@ -35,7 +35,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.pyi index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/parameter_4/schema.pyi @@ -35,7 +35,7 @@ class Schema( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py index 4e8349fc573..7151ed50ecc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py @@ -88,7 +88,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi index 87ec7a38167..c3633d9b3a3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi @@ -87,7 +87,7 @@ class MultipartFormData( *_args: typing.Union[dict, frozendict.frozendict, ], file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py index 30342ba5da3..6bc42827a06 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py @@ -46,7 +46,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Files': return super().__new__( cls, @@ -95,7 +95,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi index ec584a81645..4db49365411 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi @@ -45,7 +45,7 @@ class MultipartFormData( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Files': return super().__new__( cls, @@ -94,7 +94,7 @@ class MultipartFormData( cls, *_args: typing.Union[dict, frozendict.frozendict, ], files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py index b28d4887e14..47875ae4c06 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py @@ -75,7 +75,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], string: typing.Union['foo.Foo', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi index dc97e12e7ca..f501b8b2748 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi @@ -74,7 +74,7 @@ class ApplicationJson( cls, *_args: typing.Union[dict, frozendict.frozendict, ], string: typing.Union['foo.Foo', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.py index 27f6e0613d4..58afc8dcb64 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.py @@ -62,7 +62,7 @@ def SOLD(cls): def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.pyi index 8ce0c4986c4..0331dd56312 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/parameter_0/schema.pyi @@ -51,7 +51,7 @@ class Schema( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.py index 08962065ca3..1e9be122970 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.py @@ -38,7 +38,7 @@ def items() -> typing.Type['pet.Pet']: def __new__( cls, _arg: typing.Union[typing.Tuple['pet.Pet'], typing.List['pet.Pet']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.pyi index 08962065ca3..1e9be122970 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_json.pyi @@ -38,7 +38,7 @@ class ApplicationJson( def __new__( cls, _arg: typing.Union[typing.Tuple['pet.Pet'], typing.List['pet.Pet']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.py index 15551622ee4..8cbb3c7dbd1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.py @@ -38,7 +38,7 @@ def items() -> typing.Type['pet.Pet']: def __new__( cls, _arg: typing.Union[typing.Tuple['pet.Pet'], typing.List['pet.Pet']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationXml': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.pyi index 15551622ee4..8cbb3c7dbd1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/response_for_200/application_xml.pyi @@ -38,7 +38,7 @@ class ApplicationXml( def __new__( cls, _arg: typing.Union[typing.Tuple['pet.Pet'], typing.List['pet.Pet']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationXml': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.py index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.py @@ -35,7 +35,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.pyi index 6abcc3089ab..220d6467193 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/parameter_0/schema.pyi @@ -35,7 +35,7 @@ class Schema( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, str, ]], typing.List[typing.Union[MetaOapg.Items, str, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.py index 08962065ca3..1e9be122970 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.py @@ -38,7 +38,7 @@ def items() -> typing.Type['pet.Pet']: def __new__( cls, _arg: typing.Union[typing.Tuple['pet.Pet'], typing.List['pet.Pet']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.pyi index 08962065ca3..1e9be122970 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_json.pyi @@ -38,7 +38,7 @@ class ApplicationJson( def __new__( cls, _arg: typing.Union[typing.Tuple['pet.Pet'], typing.List['pet.Pet']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.py index 15551622ee4..8cbb3c7dbd1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.py @@ -38,7 +38,7 @@ def items() -> typing.Type['pet.Pet']: def __new__( cls, _arg: typing.Union[typing.Tuple['pet.Pet'], typing.List['pet.Pet']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationXml': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.pyi index 15551622ee4..8cbb3c7dbd1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/response_for_200/application_xml.pyi @@ -38,7 +38,7 @@ class ApplicationXml( def __new__( cls, _arg: typing.Union[typing.Tuple['pet.Pet'], typing.List['pet.Pet']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ApplicationXml': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py index 0913fc5e0a5..53320170994 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py @@ -83,7 +83,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi index 2a5ba54a549..4a1ed1e6e5b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi @@ -82,7 +82,7 @@ class ApplicationXWwwFormUrlencoded( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py index 5c50682743f..01dc6cc88aa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py @@ -83,7 +83,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi index cad10c36829..31ff41efe37 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi @@ -82,7 +82,7 @@ class MultipartFormData( *_args: typing.Union[dict, frozendict.frozendict, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( diff --git a/samples/openapi3/client/petstore/python/petstore_api/schemas.py b/samples/openapi3/client/petstore/python/petstore_api/schemas.py index fa7a8590348..d2bdf038cbf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/schemas.py +++ b/samples/openapi3/client/petstore/python/petstore_api/schemas.py @@ -19,10 +19,11 @@ import typing import uuid -from dateutil.parser import isoparser +from dateutil import parser import frozendict -from petstore_api import configuration, exceptions +from petstore_api import exceptions +from petstore_api import configuration as configuration_module class Unset(object): @@ -79,7 +80,7 @@ class ValidationMetadata(frozendict.frozendict): def __new__( cls, path_to_item: typing.Tuple[typing.Union[str, int], ...], - configuration: configuration.Configuration, + configuration: configuration_module.Configuration, seen_classes: typing.FrozenSet[typing.Type] = frozenset(), validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Type]] = frozendict.frozendict() ): @@ -88,8 +89,8 @@ def __new__( path_to_item: the path to the current data being instantiated. For {'a': [1]} if the code is handling, 1, then the path is ('args[0]', 'a', 0) This changes from location to location - configuration: the configuration.Configuration instance to use - This is needed because in configuration.Configuration: + configuration: the configuration_module.Configuration instance to use + This is needed because in configuration_module.Configuration: - one can disable validation checking This does not change from location to location seen_classes: when deserializing data that matches multiple schemas, this is used to store @@ -120,7 +121,7 @@ def path_to_item(self) -> typing.Tuple[typing.Union[str, int], ...]: return self['path_to_item'] @property - def configuration(self) -> configuration.Configuration: + def configuration(self) -> configuration_module.Configuration: return self['configuration'] @property @@ -630,9 +631,8 @@ def __validate_numeric_format( return None -class CustomIsoparser(isoparser.isoparser): +class CustomIsoparser(parser.isoparser): - @isoparser._takes_ascii def parse_isodatetime(self, dt_str): components, pos = self._parse_isodate(dt_str) if len(dt_str) > pos: @@ -650,7 +650,6 @@ def parse_isodatetime(self, dt_str): return datetime.datetime(*components) - @isoparser._takes_ascii def parse_isodate(self, datestr): components, pos = self._parse_isodate(datestr) @@ -1300,7 +1299,7 @@ def from_openapi_data_oapg( io.BufferedReader, bytes ], - _configuration: typing.Optional[configuration.Configuration] = None + _configuration: typing.Optional[configuration_module.Configuration] = None ): """ Schema from_openapi_data_oapg @@ -1311,7 +1310,7 @@ def from_openapi_data_oapg( arg = cast_to_allowed_types(arg, from_server, validated_path_to_schemas, ('args[0]',), path_to_type) validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or configuration.Configuration(), + configuration=_configuration or configuration_module.Configuration(), validated_path_to_schemas=frozendict.frozendict(validated_path_to_schemas) ) path_to_schemas = cls.__get_new_cls(arg, validation_metadata, path_to_type) @@ -1355,7 +1354,7 @@ def __new__( io.FileIO, io.BufferedReader, 'Schema', ], - _configuration: typing.Optional[configuration.Configuration] = None, + _configuration: typing.Optional[configuration_module.Configuration] = None, **kwargs: typing.Union[ dict, frozendict.frozendict, @@ -1381,7 +1380,7 @@ def __new__( Args: _args (int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): the value kwargs (str, int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): dict values - _configuration: contains the configuration.Configuration that enables json schema validation keywords + _configuration: contains the configuration_module.Configuration that enables json schema validation keywords like minItems, minLength etc Note: double underscores are used here because pycharm thinks that these variables @@ -1403,7 +1402,7 @@ def __new__( __arg, __from_server, __validated_path_to_schemas, ('args[0]',), __path_to_type) __validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or configuration.Configuration(), + configuration=_configuration or configuration_module.Configuration(), validated_path_to_schemas=frozendict.frozendict(__validated_path_to_schemas) ) __path_to_schemas = cls.__get_new_cls(__arg, __validation_metadata, __path_to_type) @@ -1418,7 +1417,7 @@ def __init__( self, *_args: typing.Union[ dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema'], - _configuration: typing.Optional[configuration.Configuration] = None, + _configuration: typing.Optional[configuration_module.Configuration] = None, **kwargs: typing.Union[ dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema', Unset ] @@ -2085,10 +2084,10 @@ class MetaOapg: types = {tuple} @classmethod - def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2101,10 +2100,10 @@ class MetaOapg: types = {NoneClass} @classmethod - def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: None, **kwargs: configuration.Configuration): + def __new__(cls, _arg: None, **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2121,10 +2120,10 @@ class MetaOapg: types = {decimal.Decimal} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2144,10 +2143,10 @@ class MetaOapg: format = 'int' @classmethod - def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2175,7 +2174,7 @@ class MetaOapg: format = 'float' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2187,7 +2186,7 @@ class MetaOapg: format = 'double' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2206,10 +2205,10 @@ class MetaOapg: types = {str} @classmethod - def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[configuration.Configuration] = None) -> 'StrSchema': + def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[configuration_module.Configuration] = None) -> 'StrSchema': return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2218,7 +2217,7 @@ class MetaOapg: types = {str} format = 'uuid' - def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2227,7 +2226,7 @@ class MetaOapg: types = {str} format = 'date' - def __new__(cls, _arg: typing.Union[str, datetime.date], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2236,7 +2235,7 @@ class MetaOapg: types = {str} format = 'date-time' - def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2245,7 +2244,7 @@ class MetaOapg: types = {str} format = 'number' - def __new__(cls, _arg: str, **kwargs: configuration.Configuration): + def __new__(cls, _arg: str, **kwargs: configuration_module.Configuration): """ Note: Decimals may not be passed in because cast_to_allowed_types is only invoked once for payloads which can be simple (str) or complex (dicts or lists with nested values) @@ -2267,7 +2266,7 @@ class BytesSchema( class MetaOapg: types = {bytes} - def __new__(cls, _arg: bytes, **kwargs: configuration.Configuration): + def __new__(cls, _arg: bytes, **kwargs: configuration_module.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2294,7 +2293,7 @@ class FileSchema( class MetaOapg: types = {FileIO} - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: configuration_module.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2312,7 +2311,7 @@ class OneOf: FileSchema, ] - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: configuration.Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg) @@ -2325,7 +2324,7 @@ class MetaOapg: types = {BoolClass} @classmethod - def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) def __new__(cls, _arg: bool, **kwargs: ValidationMetadata): @@ -2365,7 +2364,7 @@ class MetaOapg: def __new__( cls, *_args, - _configuration: typing.Optional[configuration.Configuration] = None, + _configuration: typing.Optional[configuration_module.Configuration] = None, ) -> 'NotAnyTypeSchema': return super().__new__( cls, @@ -2383,7 +2382,7 @@ class MetaOapg: types = {frozendict.frozendict} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[configuration.Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): diff --git a/samples/openapi3/client/petstore/python/tests_manual/test_validate.py b/samples/openapi3/client/petstore/python/tests_manual/test_validate.py index 046efc61787..40dababdd43 100644 --- a/samples/openapi3/client/petstore/python/tests_manual/test_validate.py +++ b/samples/openapi3/client/petstore/python/tests_manual/test_validate.py @@ -23,12 +23,11 @@ from petstore_api.components.schema.gm_fruit import GmFruit from petstore_api.components.schema.apple import Apple from petstore_api.components.schema.banana import Banana -from petstore_api import schemas +from petstore_api import schemas, configuration from petstore_api.schemas import ( AnyTypeSchema, BoolClass, - Configuration, NoneClass, StrSchema, NumberSchema, @@ -39,36 +38,36 @@ class TestValidateResults(unittest.TestCase): def test_str_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = StringWithValidation._validate_oapg( "abcdefg", validation_metadata=vm ) assert path_to_schemas == {("args[0]",): {StringWithValidation, str}} def test_number_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = NumberWithValidations._validate_oapg( Decimal(11), validation_metadata=vm ) assert path_to_schemas == {("args[0]",): {NumberWithValidations, Decimal}} def test_str_enum_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = StringEnum._validate_oapg("placed", validation_metadata=vm) assert path_to_schemas == {("args[0]",): {str, StringEnum}} def test_nullable_enum_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = StringEnum._validate_oapg(NoneClass.NONE, validation_metadata=vm) assert path_to_schemas == {("args[0]",): {NoneClass, StringEnum}} def test_empty_list_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = ArrayHoldingAnyType._validate_oapg((), validation_metadata=vm) assert path_to_schemas == {("args[0]",): {ArrayHoldingAnyType, tuple}} def test_list_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = ArrayHoldingAnyType._validate_oapg( (Decimal(1), "a"), validation_metadata=vm ) @@ -79,12 +78,12 @@ def test_list_validate(self): } def test_empty_dict_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = Foo._validate_oapg(frozendict.frozendict({}), validation_metadata=vm) assert path_to_schemas == {("args[0]",): {Foo, frozendict.frozendict}} def test_dict_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = Foo._validate_oapg( frozendict.frozendict({"bar": "a", "additional": Decimal(0)}), validation_metadata=vm, @@ -95,7 +94,7 @@ def test_dict_validate(self): } def test_discriminated_dict_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = Animal._validate_oapg( frozendict.frozendict(className="Dog", color="black"), validation_metadata=vm ) @@ -108,12 +107,12 @@ def test_discriminated_dict_validate(self): } def test_bool_enum_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = BooleanEnum._validate_oapg(BoolClass.TRUE, validation_metadata=vm) assert path_to_schemas == {("args[0]",): {BoolClass, BooleanEnum}} def test_oneof_composition_pig_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = Pig._validate_oapg( frozendict.frozendict(className="DanishPig"), validation_metadata=vm ) @@ -125,7 +124,7 @@ def test_oneof_composition_pig_validate(self): } def test_anyof_composition_gm_fruit_validate(self): - vm = ValidationMetadata(path_to_item=("args[0]",), configuration=Configuration()) + vm = ValidationMetadata(path_to_item=("args[0]",), configuration=configuration.Configuration()) path_to_schemas = GmFruit._validate_oapg( frozendict.frozendict(cultivar="GoldenDelicious", lengthCm=Decimal(10)), validation_metadata=vm, @@ -179,7 +178,7 @@ def test_list_validate_direct_instantiation(self): "_validate_oapg", side_effect=ArrayWithValidationsInItems.MetaOapg.Items._validate_oapg, ) as mock_inner_validate: - configuration = Configuration() + configuration = configuration.Configuration() ArrayWithValidationsInItems([7], _configuration=configuration) mock_outer_validate.assert_called_once_with( (Decimal("7"),), @@ -203,7 +202,7 @@ def test_list_validate_direct_instantiation_cast_item(self): "_validate_oapg", side_effect=ArrayWithValidationsInItems.MetaOapg.Items._validate_oapg, ) as mock_inner_validate: - configuration = Configuration() + configuration = configuration.Configuration() ArrayWithValidationsInItems([item], _configuration=configuration) mock_outer_validate.assert_called_once_with( tuple([Decimal('7')]), @@ -226,7 +225,7 @@ def test_list_validate_from_openai_data_instantiation(self): "_validate_oapg", side_effect=ArrayWithValidationsInItems.MetaOapg.Items._validate_oapg, ) as mock_inner_validate: - configuration = Configuration() + configuration = configuration.Configuration() ArrayWithValidationsInItems.from_openapi_data_oapg([7], _configuration=configuration) mock_outer_validate.assert_called_once_with( (Decimal("7"),), @@ -244,7 +243,7 @@ def test_dict_validate_direct_instantiation(self): "_validate_oapg", side_effect=Bar._validate_oapg, ) as mock_inner_validate: - configuration = Configuration() + configuration = configuration.Configuration() Foo(bar="a", _configuration=configuration) mock_outer_validate.assert_called_once_with( frozendict.frozendict({"bar": "a"}), @@ -270,7 +269,7 @@ def test_dict_validate_direct_instantiation_cast_item(self): "_validate_oapg", side_effect=Bar._validate_oapg, ) as mock_inner_validate: - configuration = Configuration() + configuration = configuration.Configuration() Foo(bar=bar, _configuration=configuration) mock_outer_validate.assert_called_once_with( frozendict.frozendict(dict(bar='a')), @@ -289,7 +288,7 @@ def test_dict_validate_from_openapi_data_instantiation(self): "_validate_oapg", side_effect=Bar._validate_oapg, ) as mock_inner_validate: - configuration = Configuration() + configuration = configuration.Configuration() Foo.from_openapi_data_oapg({"bar": "a"}, _configuration=configuration) mock_outer_validate.assert_called_once_with( frozendict.frozendict({"bar": "a"}), From b913517e75b55683cfe4b1d8324c67326fd578b5 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 29 Dec 2022 17:56:07 -0800 Subject: [PATCH 4/5] Python tests fixed, samples regen --- .../main/resources/python/schemas.handlebars | 4 +- .../python/types_all_incl_schema.handlebars | 1 + .../types_all_incl_schema_oneline.handlebars | 2 +- .../docs/components/schema/_not._Not.md | 2 +- ...pertiesAllowsASchemaWhichShouldValidate.md | 4 +- ...AdditionalpropertiesAreAllowedByDefault.md | 8 +- ...nalpropertiesShouldNotLookInApplicators.md | 10 +- .../docs/components/schema/allof.Allof.md | 14 +- ...anyof_oneof.AllofCombinedWithAnyofOneof.md | 14 +- .../allof_simple_types.AllofSimpleTypes.md | 10 +- ...of_with_base_schema.AllofWithBaseSchema.md | 16 +- ...ne_empty_schema.AllofWithOneEmptySchema.md | 6 +- ...pty_schema.AllofWithTheFirstEmptySchema.md | 6 +- ...mpty_schema.AllofWithTheLastEmptySchema.md | 6 +- ..._empty_schemas.AllofWithTwoEmptySchemas.md | 10 +- .../docs/components/schema/anyof.Anyof.md | 6 +- .../anyof_complex_types.AnyofComplexTypes.md | 14 +- ...of_with_base_schema.AnyofWithBaseSchema.md | 8 +- ...ne_empty_schema.AnyofWithOneEmptySchema.md | 6 +- ...e_matches_arrays.ArrayTypeMatchesArrays.md | 2 +- .../docs/components/schema/by_int.ByInt.md | 2 +- .../components/schema/by_number.ByNumber.md | 2 +- .../schema/by_small_number.BySmallNumber.md | 2 +- .../schema/date_time_format.DateTimeFormat.md | 2 +- .../schema/email_format.EmailFormat.md | 2 +- .../enums_in_properties.EnumsInProperties.md | 2 +- .../forbidden_property.ForbiddenProperty.md | 12 +- .../schema/hostname_format.HostnameFormat.md | 2 +- ...or_default.InvalidStringValueForDefault.md | 4 +- .../schema/ipv4_format.Ipv4Format.md | 2 +- .../schema/ipv6_format.Ipv6Format.md | 2 +- .../json_pointer_format.JsonPointerFormat.md | 2 +- .../maximum_validation.MaximumValidation.md | 2 +- ...er.MaximumValidationWithUnsignedInteger.md | 2 +- .../maxitems_validation.MaxitemsValidation.md | 2 +- ...axlength_validation.MaxlengthValidation.md | 2 +- ...pty.Maxproperties0MeansTheObjectIsEmpty.md | 2 +- ...ties_validation.MaxpropertiesValidation.md | 2 +- .../minimum_validation.MinimumValidation.md | 2 +- ...eger.MinimumValidationWithSignedInteger.md | 2 +- .../minitems_validation.MinitemsValidation.md | 2 +- ...inlength_validation.MinlengthValidation.md | 2 +- ...ties_validation.MinpropertiesValidation.md | 2 +- ...s.NestedAllofToCheckValidationSemantics.md | 6 +- ...s.NestedAnyofToCheckValidationSemantics.md | 6 +- ...s.NestedOneofToCheckValidationSemantics.md | 6 +- ...ore_complex_schema.NotMoreComplexSchema.md | 4 +- ...s_validation.ObjectPropertiesValidation.md | 4 +- .../docs/components/schema/oneof.Oneof.md | 6 +- .../oneof_complex_types.OneofComplexTypes.md | 14 +- ...of_with_base_schema.OneofWithBaseSchema.md | 8 +- ..._with_empty_schema.OneofWithEmptySchema.md | 6 +- .../oneof_with_required.OneofWithRequired.md | 20 +- ...rn_is_not_anchored.PatternIsNotAnchored.md | 2 +- .../pattern_validation.PatternValidation.md | 2 +- ...racters.PropertiesWithEscapedCharacters.md | 4 +- ...nce.PropertyNamedRefThatIsNotAReference.md | 4 +- .../schema/ref_in_allof.RefInAllof.md | 2 +- .../schema/ref_in_anyof.RefInAnyof.md | 2 +- .../components/schema/ref_in_not.RefInNot.md | 2 +- .../schema/ref_in_oneof.RefInOneof.md | 2 +- .../schema/ref_in_property.RefInProperty.md | 4 +- ...lt_validation.RequiredDefaultValidation.md | 6 +- .../required_validation.RequiredValidation.md | 8 +- ...with_empty_array.RequiredWithEmptyArray.md | 6 +- ...haracters.RequiredWithEscapedCharacters.md | 16 +- ...DoesNotDoAnythingIfThePropertyIsMissing.md | 2 +- ...e_validation.UniqueitemsFalseValidation.md | 2 +- ...eitems_validation.UniqueitemsValidation.md | 2 +- .../components/schema/uri_format.UriFormat.md | 2 +- ...uri_reference_format.UriReferenceFormat.md | 2 +- .../uri_template_format.UriTemplateFormat.md | 2 +- .../python/unit_test_api/api_client.py | 177 +++++++------- .../unit_test_api/components/schema/_not.py | 8 +- .../unit_test_api/components/schema/_not.pyi | 8 +- ...s_allows_a_schema_which_should_validate.py | 8 +- ..._allows_a_schema_which_should_validate.pyi | 8 +- ...tionalproperties_are_allowed_by_default.py | 12 +- ...ionalproperties_are_allowed_by_default.pyi | 12 +- ...dditionalproperties_can_exist_by_itself.py | 4 +- ...ditionalproperties_can_exist_by_itself.pyi | 4 +- ...operties_should_not_look_in_applicators.py | 14 +- ...perties_should_not_look_in_applicators.pyi | 14 +- .../unit_test_api/components/schema/allof.py | 20 +- .../unit_test_api/components/schema/allof.pyi | 20 +- .../schema/allof_combined_with_anyof_oneof.py | 26 +- .../allof_combined_with_anyof_oneof.pyi | 26 +- .../components/schema/allof_simple_types.py | 20 +- .../components/schema/allof_simple_types.pyi | 20 +- .../schema/allof_with_base_schema.py | 20 +- .../schema/allof_with_base_schema.pyi | 20 +- .../schema/allof_with_one_empty_schema.py | 8 +- .../schema/allof_with_one_empty_schema.pyi | 8 +- .../allof_with_the_first_empty_schema.py | 8 +- .../allof_with_the_first_empty_schema.pyi | 8 +- .../allof_with_the_last_empty_schema.py | 8 +- .../allof_with_the_last_empty_schema.pyi | 8 +- .../schema/allof_with_two_empty_schemas.py | 8 +- .../schema/allof_with_two_empty_schemas.pyi | 8 +- .../unit_test_api/components/schema/anyof.py | 14 +- .../unit_test_api/components/schema/anyof.pyi | 14 +- .../components/schema/anyof_complex_types.py | 20 +- .../components/schema/anyof_complex_types.pyi | 20 +- .../schema/anyof_with_base_schema.py | 16 +- .../schema/anyof_with_base_schema.pyi | 16 +- .../schema/anyof_with_one_empty_schema.py | 8 +- .../schema/anyof_with_one_empty_schema.pyi | 8 +- .../schema/array_type_matches_arrays.py | 6 +- .../schema/array_type_matches_arrays.pyi | 6 +- .../schema/boolean_type_matches_booleans.py | 2 +- .../schema/boolean_type_matches_booleans.pyi | 2 +- .../unit_test_api/components/schema/by_int.py | 8 +- .../components/schema/by_int.pyi | 8 +- .../components/schema/by_number.py | 8 +- .../components/schema/by_number.pyi | 8 +- .../components/schema/by_small_number.py | 8 +- .../components/schema/by_small_number.pyi | 8 +- .../components/schema/date_time_format.py | 8 +- .../components/schema/date_time_format.pyi | 8 +- .../components/schema/email_format.py | 8 +- .../components/schema/email_format.pyi | 8 +- .../schema/enum_with0_does_not_match_false.py | 2 +- .../enum_with0_does_not_match_false.pyi | 2 +- .../schema/enum_with1_does_not_match_true.py | 2 +- .../schema/enum_with1_does_not_match_true.pyi | 2 +- .../schema/enum_with_escaped_characters.py | 2 +- .../schema/enum_with_escaped_characters.pyi | 2 +- .../schema/enum_with_false_does_not_match0.py | 2 +- .../enum_with_false_does_not_match0.pyi | 2 +- .../schema/enum_with_true_does_not_match1.py | 2 +- .../schema/enum_with_true_does_not_match1.pyi | 2 +- .../components/schema/enums_in_properties.py | 6 +- .../components/schema/enums_in_properties.pyi | 6 +- .../components/schema/forbidden_property.py | 10 +- .../components/schema/forbidden_property.pyi | 10 +- .../components/schema/hostname_format.py | 8 +- .../components/schema/hostname_format.pyi | 8 +- .../schema/integer_type_matches_integers.py | 2 +- .../schema/integer_type_matches_integers.pyi | 2 +- ...not_raise_error_when_float_division_inf.py | 2 +- ...ot_raise_error_when_float_division_inf.pyi | 2 +- .../invalid_string_value_for_default.py | 8 +- .../invalid_string_value_for_default.pyi | 8 +- .../components/schema/ipv4_format.py | 8 +- .../components/schema/ipv4_format.pyi | 8 +- .../components/schema/ipv6_format.py | 8 +- .../components/schema/ipv6_format.pyi | 8 +- .../components/schema/json_pointer_format.py | 8 +- .../components/schema/json_pointer_format.pyi | 8 +- .../components/schema/maximum_validation.py | 8 +- .../components/schema/maximum_validation.pyi | 8 +- ...aximum_validation_with_unsigned_integer.py | 8 +- ...ximum_validation_with_unsigned_integer.pyi | 8 +- .../components/schema/maxitems_validation.py | 8 +- .../components/schema/maxitems_validation.pyi | 8 +- .../components/schema/maxlength_validation.py | 8 +- .../schema/maxlength_validation.pyi | 8 +- ...axproperties0_means_the_object_is_empty.py | 8 +- ...xproperties0_means_the_object_is_empty.pyi | 8 +- .../schema/maxproperties_validation.py | 8 +- .../schema/maxproperties_validation.pyi | 8 +- .../components/schema/minimum_validation.py | 8 +- .../components/schema/minimum_validation.pyi | 8 +- .../minimum_validation_with_signed_integer.py | 8 +- ...minimum_validation_with_signed_integer.pyi | 8 +- .../components/schema/minitems_validation.py | 8 +- .../components/schema/minitems_validation.pyi | 8 +- .../components/schema/minlength_validation.py | 8 +- .../schema/minlength_validation.pyi | 8 +- .../schema/minproperties_validation.py | 8 +- .../schema/minproperties_validation.pyi | 8 +- ...ted_allof_to_check_validation_semantics.py | 14 +- ...ed_allof_to_check_validation_semantics.pyi | 14 +- ...ted_anyof_to_check_validation_semantics.py | 14 +- ...ed_anyof_to_check_validation_semantics.pyi | 14 +- .../components/schema/nested_items.py | 10 +- .../components/schema/nested_items.pyi | 10 +- ...ted_oneof_to_check_validation_semantics.py | 14 +- ...ed_oneof_to_check_validation_semantics.pyi | 14 +- .../schema/not_more_complex_schema.py | 12 +- .../schema/not_more_complex_schema.pyi | 12 +- .../schema/nul_characters_in_strings.py | 2 +- .../schema/nul_characters_in_strings.pyi | 2 +- .../null_type_matches_only_the_null_object.py | 2 +- ...null_type_matches_only_the_null_object.pyi | 2 +- .../schema/number_type_matches_numbers.py | 2 +- .../schema/number_type_matches_numbers.pyi | 2 +- .../schema/object_properties_validation.py | 8 +- .../schema/object_properties_validation.pyi | 8 +- .../schema/object_type_matches_objects.py | 2 +- .../schema/object_type_matches_objects.pyi | 2 +- .../unit_test_api/components/schema/oneof.py | 14 +- .../unit_test_api/components/schema/oneof.pyi | 14 +- .../components/schema/oneof_complex_types.py | 20 +- .../components/schema/oneof_complex_types.pyi | 20 +- .../schema/oneof_with_base_schema.py | 16 +- .../schema/oneof_with_base_schema.pyi | 16 +- .../schema/oneof_with_empty_schema.py | 8 +- .../schema/oneof_with_empty_schema.pyi | 8 +- .../components/schema/oneof_with_required.py | 26 +- .../components/schema/oneof_with_required.pyi | 26 +- .../schema/pattern_is_not_anchored.py | 8 +- .../schema/pattern_is_not_anchored.pyi | 8 +- .../components/schema/pattern_validation.py | 8 +- .../components/schema/pattern_validation.pyi | 8 +- .../properties_with_escaped_characters.py | 8 +- .../properties_with_escaped_characters.pyi | 8 +- ...perty_named_ref_that_is_not_a_reference.py | 8 +- ...erty_named_ref_that_is_not_a_reference.pyi | 8 +- .../schema/ref_in_additionalproperties.py | 4 +- .../schema/ref_in_additionalproperties.pyi | 4 +- .../components/schema/ref_in_allof.py | 8 +- .../components/schema/ref_in_allof.pyi | 8 +- .../components/schema/ref_in_anyof.py | 8 +- .../components/schema/ref_in_anyof.pyi | 8 +- .../components/schema/ref_in_items.py | 4 +- .../components/schema/ref_in_items.pyi | 4 +- .../components/schema/ref_in_not.py | 8 +- .../components/schema/ref_in_not.pyi | 8 +- .../components/schema/ref_in_oneof.py | 8 +- .../components/schema/ref_in_oneof.pyi | 8 +- .../components/schema/ref_in_property.py | 8 +- .../components/schema/ref_in_property.pyi | 8 +- .../schema/required_default_validation.py | 10 +- .../schema/required_default_validation.pyi | 10 +- .../components/schema/required_validation.py | 12 +- .../components/schema/required_validation.pyi | 12 +- .../schema/required_with_empty_array.py | 10 +- .../schema/required_with_empty_array.pyi | 10 +- .../required_with_escaped_characters.py | 8 +- .../required_with_escaped_characters.pyi | 8 +- .../schema/simple_enum_validation.py | 2 +- .../schema/simple_enum_validation.pyi | 2 +- .../schema/string_type_matches_strings.py | 2 +- .../schema/string_type_matches_strings.pyi | 2 +- ..._do_anything_if_the_property_is_missing.py | 6 +- ...do_anything_if_the_property_is_missing.pyi | 6 +- .../schema/uniqueitems_false_validation.py | 8 +- .../schema/uniqueitems_false_validation.pyi | 8 +- .../schema/uniqueitems_validation.py | 8 +- .../schema/uniqueitems_validation.pyi | 8 +- .../components/schema/uri_format.py | 8 +- .../components/schema/uri_format.pyi | 8 +- .../components/schema/uri_reference_format.py | 8 +- .../schema/uri_reference_format.pyi | 8 +- .../components/schema/uri_template_format.py | 8 +- .../components/schema/uri_template_format.pyi | 8 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../python/unit_test_api/schemas.py | 220 +++++++++-------- .../components/schema/operator.Operator.md | 2 +- .../python/this_package/api_client.py | 177 +++++++------- .../components/schema/addition_operator.py | 4 +- .../components/schema/addition_operator.pyi | 4 +- .../components/schema/operator.py | 8 +- .../components/schema/operator.pyi | 8 +- .../components/schema/subtraction_operator.py | 4 +- .../schema/subtraction_operator.pyi | 4 +- .../paths/operators/post/__init__.py | 2 +- .../paths/operators/post/__init__.pyi | 2 +- .../post/response_for_200/__init__.py | 2 +- .../python/this_package/schemas.py | 222 ++++++++++-------- .../python/.openapi-generator/VERSION | 2 +- .../docs/apis/tags/default_api/foo_get.md | 2 +- .../apis/tags/fake_api/endpoint_parameters.md | 2 +- .../apis/tags/fake_api/enum_parameters.md | 2 +- .../apis/tags/fake_api/inline_composition.md | 6 +- .../docs/apis/tags/fake_api/json_form_data.md | 2 +- .../apis/tags/fake_api/object_in_query.md | 2 +- .../docs/apis/tags/fake_api/upload_file.md | 2 +- .../docs/apis/tags/fake_api/upload_files.md | 2 +- .../apis/tags/pet_api/update_pet_with_form.md | 2 +- .../pet_api/upload_file_with_required_file.md | 2 +- .../docs/apis/tags/pet_api/upload_image.md | 2 +- .../schema/_200_response._200Response.md | 2 +- .../docs/components/schema/_return._Return.md | 2 +- ...stract_step_message.AbstractStepMessage.md | 2 +- ...perties_class.AdditionalPropertiesClass.md | 2 +- .../docs/components/schema/animal.Animal.md | 2 +- .../any_type_and_format.AnyTypeAndFormat.md | 2 +- .../schema/api_response.ApiResponse.md | 2 +- .../docs/components/schema/apple.Apple.md | 2 +- ...of_number_only.ArrayOfArrayOfNumberOnly.md | 2 +- .../array_of_number_only.ArrayOfNumberOnly.md | 2 +- .../components/schema/array_test.ArrayTest.md | 2 +- .../docs/components/schema/banana.Banana.md | 2 +- .../components/schema/basque_pig.BasquePig.md | 2 +- .../schema/capitalization.Capitalization.md | 2 +- .../python/docs/components/schema/cat.Cat.md | 2 +- .../components/schema/category.Category.md | 2 +- .../components/schema/child_cat.ChildCat.md | 2 +- .../schema/class_model.ClassModel.md | 2 +- .../docs/components/schema/client.Client.md | 2 +- ...plex_quadrilateral.ComplexQuadrilateral.md | 2 +- .../components/schema/danish_pig.DanishPig.md | 2 +- .../python/docs/components/schema/dog.Dog.md | 2 +- .../schema/enum_arrays.EnumArrays.md | 2 +- .../components/schema/enum_test.EnumTest.md | 2 +- ...quilateral_triangle.EquilateralTriangle.md | 2 +- .../docs/components/schema/file.File.md | 2 +- ...e_schema_test_class.FileSchemaTestClass.md | 2 +- .../python/docs/components/schema/foo.Foo.md | 2 +- .../schema/format_test.FormatTest.md | 2 +- .../schema/from_schema.FromSchema.md | 2 +- .../docs/components/schema/fruit.Fruit.md | 2 +- .../components/schema/gm_fruit.GmFruit.md | 2 +- .../grandparent_animal.GrandparentAnimal.md | 2 +- .../has_only_read_only.HasOnlyReadOnly.md | 2 +- .../health_check_result.HealthCheckResult.md | 2 +- .../isosceles_triangle.IsoscelesTriangle.md | 2 +- .../components/schema/map_test.MapTest.md | 2 +- ...dPropertiesAndAdditionalPropertiesClass.md | 2 +- .../docs/components/schema/money.Money.md | 2 +- .../docs/components/schema/name.Name.md | 2 +- .../schema/number_only.NumberOnly.md | 2 +- ...ies.ObjectModelWithArgAndArgsProperties.md | 2 +- ..._with_ref_props.ObjectModelWithRefProps.md | 2 +- ...ithAllOfWithReqTestPropFromUnsetAddProp.md | 2 +- ..._properties.ObjectWithDecimalProperties.md | 2 +- ...d_props.ObjectWithDifficultlyNamedProps.md | 2 +- ...rty.ObjectWithInlineCompositionProperty.md | 2 +- ...s.ObjectWithInvalidNamedRefedProperties.md | 2 +- ...al_test_prop.ObjectWithOptionalTestProp.md | 2 +- .../docs/components/schema/order.Order.md | 2 +- .../python/docs/components/schema/pet.Pet.md | 2 +- .../docs/components/schema/player.Player.md | 2 +- ...ateral_interface.QuadrilateralInterface.md | 2 +- .../schema/read_only_first.ReadOnlyFirst.md | 2 +- ...set_add_props.ReqPropsFromUnsetAddProps.md | 2 +- .../scalene_triangle.ScaleneTriangle.md | 2 +- ...imple_quadrilateral.SimpleQuadrilateral.md | 2 +- .../special_model_name.SpecialModelName.md | 2 +- .../python/docs/components/schema/tag.Tag.md | 2 +- .../triangle_interface.TriangleInterface.md | 2 +- .../docs/components/schema/user.User.md | 2 +- .../docs/components/schema/whale.Whale.md | 2 +- .../components/schema/_200_response.py | 2 +- .../components/schema/_200_response.pyi | 2 +- .../petstore_api/components/schema/_return.py | 2 +- .../components/schema/_return.pyi | 2 +- .../schema/abstract_step_message.py | 2 +- .../schema/abstract_step_message.pyi | 2 +- .../schema/additional_properties_class.py | 2 +- .../schema/additional_properties_class.pyi | 2 +- .../schema/additional_properties_validator.py | 6 +- .../additional_properties_validator.pyi | 6 +- .../petstore_api/components/schema/animal.py | 2 +- .../petstore_api/components/schema/animal.pyi | 2 +- .../components/schema/any_type_and_format.py | 20 +- .../components/schema/any_type_and_format.pyi | 20 +- .../components/schema/any_type_not_string.py | 2 +- .../components/schema/any_type_not_string.pyi | 2 +- .../components/schema/api_response.py | 2 +- .../components/schema/api_response.pyi | 2 +- .../petstore_api/components/schema/apple.py | 2 +- .../petstore_api/components/schema/apple.pyi | 2 +- .../schema/array_of_array_of_number_only.py | 2 +- .../schema/array_of_array_of_number_only.pyi | 2 +- .../components/schema/array_of_number_only.py | 2 +- .../schema/array_of_number_only.pyi | 2 +- .../components/schema/array_test.py | 2 +- .../components/schema/array_test.pyi | 2 +- .../petstore_api/components/schema/banana.py | 2 +- .../petstore_api/components/schema/banana.pyi | 2 +- .../components/schema/basque_pig.py | 2 +- .../components/schema/basque_pig.pyi | 2 +- .../components/schema/capitalization.py | 2 +- .../components/schema/capitalization.pyi | 2 +- .../petstore_api/components/schema/cat.py | 4 +- .../petstore_api/components/schema/cat.pyi | 4 +- .../components/schema/category.py | 2 +- .../components/schema/category.pyi | 2 +- .../components/schema/child_cat.py | 4 +- .../components/schema/child_cat.pyi | 4 +- .../components/schema/class_model.py | 2 +- .../components/schema/class_model.pyi | 2 +- .../petstore_api/components/schema/client.py | 2 +- .../petstore_api/components/schema/client.pyi | 2 +- .../schema/complex_quadrilateral.py | 4 +- .../schema/complex_quadrilateral.pyi | 4 +- ...d_any_of_different_types_no_validations.py | 2 +- ..._any_of_different_types_no_validations.pyi | 2 +- .../components/schema/composed_object.py | 2 +- .../components/schema/composed_object.pyi | 2 +- .../schema/composed_one_of_different_types.py | 4 +- .../composed_one_of_different_types.pyi | 4 +- .../components/schema/danish_pig.py | 2 +- .../components/schema/danish_pig.pyi | 2 +- .../petstore_api/components/schema/dog.py | 4 +- .../petstore_api/components/schema/dog.pyi | 4 +- .../components/schema/enum_arrays.py | 2 +- .../components/schema/enum_arrays.pyi | 2 +- .../components/schema/enum_test.py | 2 +- .../components/schema/enum_test.pyi | 2 +- .../components/schema/equilateral_triangle.py | 4 +- .../schema/equilateral_triangle.pyi | 4 +- .../petstore_api/components/schema/file.py | 2 +- .../petstore_api/components/schema/file.pyi | 2 +- .../schema/file_schema_test_class.py | 2 +- .../schema/file_schema_test_class.pyi | 2 +- .../petstore_api/components/schema/foo.py | 2 +- .../petstore_api/components/schema/foo.pyi | 2 +- .../components/schema/format_test.py | 2 +- .../components/schema/format_test.pyi | 2 +- .../components/schema/from_schema.py | 2 +- .../components/schema/from_schema.pyi | 2 +- .../petstore_api/components/schema/fruit.py | 2 +- .../petstore_api/components/schema/fruit.pyi | 2 +- .../components/schema/fruit_req.py | 2 +- .../components/schema/fruit_req.pyi | 2 +- .../components/schema/gm_fruit.py | 2 +- .../components/schema/gm_fruit.pyi | 2 +- .../components/schema/grandparent_animal.py | 2 +- .../components/schema/grandparent_animal.pyi | 2 +- .../components/schema/has_only_read_only.py | 2 +- .../components/schema/has_only_read_only.pyi | 2 +- .../components/schema/health_check_result.py | 2 +- .../components/schema/health_check_result.pyi | 2 +- .../components/schema/isosceles_triangle.py | 4 +- .../components/schema/isosceles_triangle.pyi | 4 +- .../components/schema/json_patch_request.py | 2 +- .../components/schema/json_patch_request.pyi | 2 +- .../petstore_api/components/schema/mammal.py | 2 +- .../petstore_api/components/schema/mammal.pyi | 2 +- .../components/schema/map_test.py | 2 +- .../components/schema/map_test.pyi | 2 +- ...perties_and_additional_properties_class.py | 2 +- ...erties_and_additional_properties_class.pyi | 2 +- .../petstore_api/components/schema/money.py | 2 +- .../petstore_api/components/schema/money.pyi | 2 +- .../petstore_api/components/schema/name.py | 2 +- .../petstore_api/components/schema/name.pyi | 2 +- .../components/schema/nullable_class.py | 10 +- .../components/schema/nullable_class.pyi | 10 +- .../components/schema/nullable_shape.py | 2 +- .../components/schema/nullable_shape.pyi | 2 +- .../components/schema/number_only.py | 2 +- .../components/schema/number_only.pyi | 2 +- ...ject_model_with_arg_and_args_properties.py | 2 +- ...ect_model_with_arg_and_args_properties.pyi | 2 +- .../schema/object_model_with_ref_props.py | 2 +- .../schema/object_model_with_ref_props.pyi | 2 +- ..._with_req_test_prop_from_unset_add_prop.py | 4 +- ...with_req_test_prop_from_unset_add_prop.pyi | 4 +- .../schema/object_with_decimal_properties.py | 2 +- .../schema/object_with_decimal_properties.pyi | 2 +- .../object_with_difficultly_named_props.py | 2 +- .../object_with_difficultly_named_props.pyi | 2 +- ...object_with_inline_composition_property.py | 4 +- ...bject_with_inline_composition_property.pyi | 4 +- ...ect_with_invalid_named_refed_properties.py | 2 +- ...ct_with_invalid_named_refed_properties.pyi | 2 +- .../schema/object_with_optional_test_prop.py | 2 +- .../schema/object_with_optional_test_prop.pyi | 2 +- .../schema/object_with_validations.py | 2 +- .../schema/object_with_validations.pyi | 2 +- .../petstore_api/components/schema/order.py | 2 +- .../petstore_api/components/schema/order.pyi | 2 +- .../components/schema/parent_pet.py | 2 +- .../components/schema/parent_pet.pyi | 2 +- .../petstore_api/components/schema/pet.py | 2 +- .../petstore_api/components/schema/pet.pyi | 2 +- .../petstore_api/components/schema/pig.py | 2 +- .../petstore_api/components/schema/pig.pyi | 2 +- .../petstore_api/components/schema/player.py | 2 +- .../petstore_api/components/schema/player.pyi | 2 +- .../components/schema/quadrilateral.py | 2 +- .../components/schema/quadrilateral.pyi | 2 +- .../schema/quadrilateral_interface.py | 2 +- .../schema/quadrilateral_interface.pyi | 2 +- .../components/schema/read_only_first.py | 2 +- .../components/schema/read_only_first.pyi | 2 +- .../schema/req_props_from_unset_add_props.py | 2 +- .../schema/req_props_from_unset_add_props.pyi | 2 +- .../components/schema/scalene_triangle.py | 4 +- .../components/schema/scalene_triangle.pyi | 4 +- .../petstore_api/components/schema/shape.py | 2 +- .../petstore_api/components/schema/shape.pyi | 2 +- .../components/schema/shape_or_null.py | 2 +- .../components/schema/shape_or_null.pyi | 2 +- .../components/schema/simple_quadrilateral.py | 4 +- .../schema/simple_quadrilateral.pyi | 4 +- .../components/schema/some_object.py | 2 +- .../components/schema/some_object.pyi | 2 +- .../components/schema/special_model_name.py | 2 +- .../components/schema/special_model_name.pyi | 2 +- .../petstore_api/components/schema/tag.py | 2 +- .../petstore_api/components/schema/tag.pyi | 2 +- .../components/schema/triangle.py | 2 +- .../components/schema/triangle.pyi | 2 +- .../components/schema/triangle_interface.py | 2 +- .../components/schema/triangle_interface.pyi | 2 +- .../petstore_api/components/schema/user.py | 6 +- .../petstore_api/components/schema/user.pyi | 6 +- .../petstore_api/components/schema/whale.py | 2 +- .../petstore_api/components/schema/whale.pyi | 2 +- .../application_x_www_form_urlencoded.py | 2 +- .../application_x_www_form_urlencoded.pyi | 2 +- .../application_x_www_form_urlencoded.py | 2 +- .../application_x_www_form_urlencoded.pyi | 2 +- .../post/parameter_0/schema.py | 2 +- .../post/parameter_0/schema.pyi | 2 +- .../post/parameter_1/schema.py | 4 +- .../post/parameter_1/schema.pyi | 4 +- .../post/request_body/application_json.py | 2 +- .../post/request_body/application_json.pyi | 2 +- .../post/request_body/multipart_form_data.py | 4 +- .../post/request_body/multipart_form_data.pyi | 4 +- .../post/response_for_200/application_json.py | 2 +- .../response_for_200/application_json.pyi | 2 +- .../response_for_200/multipart_form_data.py | 4 +- .../response_for_200/multipart_form_data.pyi | 4 +- .../application_x_www_form_urlencoded.py | 2 +- .../application_x_www_form_urlencoded.pyi | 2 +- .../get/parameter_0/schema.py | 2 +- .../get/parameter_0/schema.pyi | 2 +- .../post/request_body/multipart_form_data.py | 2 +- .../post/request_body/multipart_form_data.pyi | 2 +- .../post/request_body/multipart_form_data.py | 2 +- .../post/request_body/multipart_form_data.pyi | 2 +- .../post/request_body/multipart_form_data.py | 2 +- .../post/request_body/multipart_form_data.pyi | 2 +- .../response_for_default/application_json.py | 2 +- .../response_for_default/application_json.pyi | 2 +- .../application_x_www_form_urlencoded.py | 2 +- .../application_x_www_form_urlencoded.pyi | 2 +- .../post/request_body/multipart_form_data.py | 2 +- .../post/request_body/multipart_form_data.pyi | 2 +- .../petstore/python/petstore_api/schemas.py | 7 +- .../python/tests_manual/test_fake_api.py | 2 +- .../python/tests_manual/test_validate.py | 44 ++-- 1051 files changed, 2255 insertions(+), 2221 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars index 412c58bb441..937b17ae46c 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/schemas.handlebars @@ -13,6 +13,7 @@ import typing import uuid from dateutil import parser +from dateutil.parser.isoparser import _takes_ascii import frozendict from {{packageName}} import exceptions @@ -670,7 +671,7 @@ def __validate_numeric_format( class CustomIsoparser(parser.isoparser): - + @_takes_ascii def parse_isodatetime(self, dt_str): components, pos = self._parse_isodate(dt_str) if len(dt_str) > pos: @@ -688,6 +689,7 @@ class CustomIsoparser(parser.isoparser): return datetime.datetime(*components) + @_takes_ascii def parse_isodate(self, datestr): components, pos = self._parse_isodate(datestr) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema.handlebars index d79304a46ed..a4bb03bfb60 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema.handlebars @@ -11,6 +11,7 @@ datetime.datetime, uuid.UUID, bool, None, +bytes, io.FileIO, io.BufferedReader, 'Schema', \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema_oneline.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema_oneline.handlebars index b2b60b89b40..8d2abaa4c25 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema_oneline.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/types_all_incl_schema_oneline.handlebars @@ -1 +1 @@ -dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema \ No newline at end of file +dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/_not._Not.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/_not._Not.md index ef285c1b45a..ea7de73b743 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/_not._Not.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/_not._Not.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### not diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md index 3162586bd72..08396dd8051 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md @@ -10,8 +10,8 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] -**bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**foo** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**bar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] **any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md index 2a5a1b63f05..836be57f2be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md @@ -5,13 +5,13 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] -**bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**foo** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**bar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md index dbceefc770c..f94ed190277 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes @@ -16,19 +16,19 @@ Key | Input Type | Accessed Type | Description | Notes #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**foo** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof.Allof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof.Allof.md index 3de94804163..c72fa28db41 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof.Allof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof.Allof.md @@ -5,39 +5,39 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | decimal.Decimal, int, | decimal.Decimal, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # allOf_1 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **foo** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md index 6bc242eb132..64572abaf10 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md @@ -5,41 +5,41 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | #### anyOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[anyOf_0](#anyOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[anyOf_0](#anyOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # anyOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | #### oneOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # oneOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_simple_types.AllofSimpleTypes.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_simple_types.AllofSimpleTypes.md index c3fd162d294..a7a839256b3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_simple_types.AllofSimpleTypes.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_simple_types.AllofSimpleTypes.md @@ -5,27 +5,27 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_1 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_base_schema.AllofWithBaseSchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_base_schema.AllofWithBaseSchema.md index fcd70650f6a..367c554df35 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_base_schema.AllofWithBaseSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_base_schema.AllofWithBaseSchema.md @@ -5,45 +5,45 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | decimal.Decimal, int, | decimal.Decimal, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **foo** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # allOf_1 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **baz** | None, | NoneClass, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md index a6c656f11bc..9e710c8e62a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md @@ -5,19 +5,19 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md index 900a434b958..da4c8d6adf8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md @@ -5,13 +5,13 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [allOf_1](#allOf_1) | decimal.Decimal, int, float, | decimal.Decimal, | | # allOf_0 @@ -19,7 +19,7 @@ Class Name | Input Type | Accessed Type | Description | Notes ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_1 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md index a10ced02fe1..744db08e15c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md @@ -5,14 +5,14 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [allOf_0](#allOf_0) | decimal.Decimal, int, float, | decimal.Decimal, | | -[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 @@ -26,6 +26,6 @@ decimal.Decimal, int, float, | decimal.Decimal, | | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md index 9577e8527c3..521341d96b4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md @@ -5,27 +5,27 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_1](#allOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_1 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof.Anyof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof.Anyof.md index 0635c76fb35..ee1b910a9c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof.Anyof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof.Anyof.md @@ -5,14 +5,14 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [anyOf_0](#anyOf_0) | decimal.Decimal, int, | decimal.Decimal, | | -[anyOf_1](#anyOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[anyOf_1](#anyOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # anyOf_0 @@ -26,6 +26,6 @@ decimal.Decimal, int, | decimal.Decimal, | | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_complex_types.AnyofComplexTypes.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_complex_types.AnyofComplexTypes.md index c4b676f9d57..fff7eec2d38 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_complex_types.AnyofComplexTypes.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_complex_types.AnyofComplexTypes.md @@ -5,39 +5,39 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[anyOf_0](#anyOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[anyOf_1](#anyOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[anyOf_0](#anyOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[anyOf_1](#anyOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # anyOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | decimal.Decimal, int, | decimal.Decimal, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # anyOf_1 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **foo** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md index d99346ebac7..44a2465ba27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md @@ -11,21 +11,21 @@ str, | str, | | #### anyOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[anyOf_0](#anyOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[anyOf_1](#anyOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[anyOf_0](#anyOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[anyOf_1](#anyOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # anyOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # anyOf_1 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md index 443fc0ca9fc..e610d6df954 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md @@ -5,14 +5,14 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [anyOf_0](#anyOf_0) | decimal.Decimal, int, float, | decimal.Decimal, | | -[anyOf_1](#anyOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[anyOf_1](#anyOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # anyOf_0 @@ -26,6 +26,6 @@ decimal.Decimal, int, float, | decimal.Decimal, | | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md index 44f9bee087c..d477cfa9869 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md @@ -10,6 +10,6 @@ list, tuple, | tuple, | | ### Tuple Items Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +items | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_int.ByInt.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_int.ByInt.md index d8652692329..256c4e68284 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_int.ByInt.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_int.ByInt.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_number.ByNumber.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_number.ByNumber.md index 3cfa07bf316..e1e6e2302eb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_number.ByNumber.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_number.ByNumber.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_small_number.BySmallNumber.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_small_number.BySmallNumber.md index 18ae998fcdd..289c0b2ec58 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_small_number.BySmallNumber.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_small_number.BySmallNumber.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/date_time_format.DateTimeFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/date_time_format.DateTimeFormat.md index 48a405cc798..8d1c6887421 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/date_time_format.DateTimeFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/date_time_format.DateTimeFormat.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | value must conform to RFC-3339 date-time +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | value must conform to RFC-3339 date-time [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/email_format.EmailFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/email_format.EmailFormat.md index 7c57e97e924..25219b76c2c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/email_format.EmailFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/email_format.EmailFormat.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enums_in_properties.EnumsInProperties.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enums_in_properties.EnumsInProperties.md index c69418bf7a8..d110ed0848c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enums_in_properties.EnumsInProperties.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enums_in_properties.EnumsInProperties.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | str, | str, | | must be one of ["bar", ] **foo** | str, | str, | | [optional] must be one of ["foo", ] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/forbidden_property.ForbiddenProperty.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/forbidden_property.ForbiddenProperty.md index ae1bf57b219..a58352e5b5c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/forbidden_property.ForbiddenProperty.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/forbidden_property.ForbiddenProperty.md @@ -5,32 +5,32 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**foo** | [dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#foo) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#foo) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**foo** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#foo) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#foo) | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # foo ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### not Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[_not](#_not) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[_not](#_not) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # _not ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/hostname_format.HostnameFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/hostname_format.HostnameFormat.md index e3f9b0d6397..e21bc67337f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/hostname_format.HostnameFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/hostname_format.HostnameFormat.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md index 3e19c00e72e..c3b2b1d2c10 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md @@ -5,12 +5,12 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | str, | str, | | [optional] if omitted the server will use the default value of "bad" -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv4_format.Ipv4Format.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv4_format.Ipv4Format.md index 6b5dd979615..ff07f91eb86 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv4_format.Ipv4Format.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv4_format.Ipv4Format.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv6_format.Ipv6Format.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv6_format.Ipv6Format.md index 3525f5b9b6f..cdb41b48c9f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv6_format.Ipv6Format.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv6_format.Ipv6Format.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/json_pointer_format.JsonPointerFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/json_pointer_format.JsonPointerFormat.md index 7dc2b36419b..9fc57347782 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/json_pointer_format.JsonPointerFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/json_pointer_format.JsonPointerFormat.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation.MaximumValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation.MaximumValidation.md index f9fe9574e03..2acf0937364 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation.MaximumValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation.MaximumValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md index be947a99fce..b284e6f2c5a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxitems_validation.MaxitemsValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxitems_validation.MaxitemsValidation.md index b53aa47e765..56cdef58e3d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxitems_validation.MaxitemsValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxitems_validation.MaxitemsValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxlength_validation.MaxlengthValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxlength_validation.MaxlengthValidation.md index 14fd5e40506..d1cc454e69b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxlength_validation.MaxlengthValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxlength_validation.MaxlengthValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md index d76bde51224..8d8e908ccd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties_validation.MaxpropertiesValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties_validation.MaxpropertiesValidation.md index 8f4718402a3..83a0c31df21 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties_validation.MaxpropertiesValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties_validation.MaxpropertiesValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation.MinimumValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation.MinimumValidation.md index 46053fc93b9..137822b0337 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation.MinimumValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation.MinimumValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md index 6d4fac50c6f..dceb6cda1e6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minitems_validation.MinitemsValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minitems_validation.MinitemsValidation.md index c8b296482df..7addbf25b9b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minitems_validation.MinitemsValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minitems_validation.MinitemsValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minlength_validation.MinlengthValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minlength_validation.MinlengthValidation.md index a5af43a425f..078bfde6ac2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minlength_validation.MinlengthValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minlength_validation.MinlengthValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minproperties_validation.MinpropertiesValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minproperties_validation.MinpropertiesValidation.md index e38eab2859e..e7278a4f297 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minproperties_validation.MinpropertiesValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minproperties_validation.MinpropertiesValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md index 6d20d65736a..22b4a79cbf2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md @@ -5,20 +5,20 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[allOf_0](#allOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # allOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md index 98d6ba13aa6..e450239f470 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md @@ -5,20 +5,20 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[anyOf_0](#anyOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[anyOf_0](#anyOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # anyOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md index fc6bce28650..f778adfa806 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md @@ -5,20 +5,20 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # oneOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/not_more_complex_schema.NotMoreComplexSchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/not_more_complex_schema.NotMoreComplexSchema.md index 349dce86588..c0f3e051c5b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/not_more_complex_schema.NotMoreComplexSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/not_more_complex_schema.NotMoreComplexSchema.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### not @@ -24,6 +24,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **foo** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_properties_validation.ObjectPropertiesValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_properties_validation.ObjectPropertiesValidation.md index 60647240e15..25a1e59c668 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_properties_validation.ObjectPropertiesValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_properties_validation.ObjectPropertiesValidation.md @@ -5,13 +5,13 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **foo** | decimal.Decimal, int, | decimal.Decimal, | | [optional] **bar** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof.Oneof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof.Oneof.md index 2c588a6adb2..c079b10b56a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof.Oneof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof.Oneof.md @@ -5,14 +5,14 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [oneOf_0](#oneOf_0) | decimal.Decimal, int, | decimal.Decimal, | | -[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # oneOf_0 @@ -26,6 +26,6 @@ decimal.Decimal, int, | decimal.Decimal, | | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_complex_types.OneofComplexTypes.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_complex_types.OneofComplexTypes.md index cb48dcb30c8..95ed2dd1120 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_complex_types.OneofComplexTypes.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_complex_types.OneofComplexTypes.md @@ -5,39 +5,39 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # oneOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | decimal.Decimal, int, | decimal.Decimal, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # oneOf_1 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **foo** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_base_schema.OneofWithBaseSchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_base_schema.OneofWithBaseSchema.md index eb4d5e5ef47..9bad48545f8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_base_schema.OneofWithBaseSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_base_schema.OneofWithBaseSchema.md @@ -11,21 +11,21 @@ str, | str, | | #### oneOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # oneOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # oneOf_1 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md index f877920553f..558d15806c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md @@ -5,14 +5,14 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [oneOf_0](#oneOf_0) | decimal.Decimal, int, float, | decimal.Decimal, | | -[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # oneOf_0 @@ -26,6 +26,6 @@ decimal.Decimal, int, float, | decimal.Decimal, | | ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_required.OneofWithRequired.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_required.OneofWithRequired.md index f6b6b777d02..64aceb82bc2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_required.OneofWithRequired.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_required.OneofWithRequired.md @@ -11,35 +11,35 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | #### oneOf Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_0](#oneOf_0) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +[oneOf_1](#oneOf_1) | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | # oneOf_0 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**bar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**foo** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # oneOf_1 ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**baz** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**baz** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**foo** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md index 147e431150a..41977ada72d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_validation.PatternValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_validation.PatternValidation.md index e70f93fe1f6..b18c458bd25 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_validation.PatternValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_validation.PatternValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md index 6ce31daa6d8..bc22f0cc833 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes @@ -16,6 +16,6 @@ Key | Input Type | Accessed Type | Description | Notes **foo\rbar** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] **foo\tbar** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] **foo\fbar** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md index 3ad106db325..3a42d245440 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md @@ -5,12 +5,12 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **$ref** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_allof.RefInAllof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_allof.RefInAllof.md index 11a98768f33..750943d7833 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_allof.RefInAllof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_allof.RefInAllof.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### allOf diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_anyof.RefInAnyof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_anyof.RefInAnyof.md index a597ef20159..0194e40d321 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_anyof.RefInAnyof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_anyof.RefInAnyof.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_not.RefInNot.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_not.RefInNot.md index 8c164c9af17..c160c33c2a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_not.RefInNot.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_not.RefInNot.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### not diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_oneof.RefInOneof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_oneof.RefInOneof.md index cb173596fd8..f208159780a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_oneof.RefInOneof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_oneof.RefInOneof.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_property.RefInProperty.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_property.RefInProperty.md index 1ec69044021..7b07534c79c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_property.RefInProperty.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_property.RefInProperty.md @@ -5,12 +5,12 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **a** | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_default_validation.RequiredDefaultValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_default_validation.RequiredDefaultValidation.md index 9f0ff01c4e5..126f7099a23 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_default_validation.RequiredDefaultValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_default_validation.RequiredDefaultValidation.md @@ -5,12 +5,12 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**foo** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_validation.RequiredValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_validation.RequiredValidation.md index 588b8c02766..477fa8cfbea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_validation.RequiredValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_validation.RequiredValidation.md @@ -5,13 +5,13 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**foo** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**bar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_empty_array.RequiredWithEmptyArray.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_empty_array.RequiredWithEmptyArray.md index 8603ae9c58d..74a3d67b3af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_empty_array.RequiredWithEmptyArray.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_empty_array.RequiredWithEmptyArray.md @@ -5,12 +5,12 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**foo** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md index afbae841c97..2595089b6a9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md @@ -5,17 +5,17 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Dictionary Keys Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- -**foo\tbar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**foo\nbar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**foo\fbar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**foo\rbar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**foo\"bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**foo\\bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**foo\tbar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**foo\nbar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**foo\fbar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**foo\rbar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**foo\"bar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**foo\\bar** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md index 7f28361d78c..3facffdead8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **alpha** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] if omitted the server will use the default value of 5 -**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md index cf5792de3f1..dec86a3536d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_validation.UniqueitemsValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_validation.UniqueitemsValidation.md index cf7d5c2a97f..eda04866547 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_validation.UniqueitemsValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_validation.UniqueitemsValidation.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_format.UriFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_format.UriFormat.md index 433d837014c..d3080c2cce0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_format.UriFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_format.UriFormat.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_reference_format.UriReferenceFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_reference_format.UriReferenceFormat.md index 8d0087ba366..1475e7aed6e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_reference_format.UriReferenceFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_reference_format.UriReferenceFormat.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_template_format.UriTemplateFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_template_format.UriTemplateFormat.md index ebf6a0faa7a..fb60dedee40 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_template_format.UriTemplateFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_template_format.UriTemplateFormat.md @@ -5,6 +5,6 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/api_client.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/api_client.py index 26642aff7aa..68e3486511f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/api_client.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/api_client.py @@ -8,44 +8,31 @@ Generated by: https://openapi-generator.tech """ +import datetime import dataclasses -from decimal import Decimal +import decimal import enum import email import json import os import io import atexit -from multiprocessing.pool import ThreadPool +from multiprocessing import pool import re import tempfile import typing import typing_extensions +from urllib import parse import urllib3 -from urllib3._collections import HTTPHeaderDict -from urllib.parse import urlparse, quote -from urllib3.fields import RequestField as RequestFieldBase +from urllib3 import _collections, fields import frozendict -from unit_test_api import rest -from unit_test_api.configuration import Configuration -from unit_test_api.exceptions import ApiTypeError, ApiValueError -from unit_test_api.schemas import ( - NoneClass, - BoolClass, - Schema, - FileIO, - BinarySchema, - date, - datetime, - none_type, - Unset, - unset, -) - - -class RequestField(RequestFieldBase): +from unit_test_api import exceptions, rest, schemas +from unit_test_api import configuration as configuration_module + + +class RequestField(fields.RequestField): def __eq__(self, other): if not isinstance(other, RequestField): return False @@ -62,19 +49,19 @@ def default(self, obj): return float(obj) elif isinstance(obj, int): return int(obj) - elif isinstance(obj, Decimal): + elif isinstance(obj, decimal.Decimal): if obj.as_tuple().exponent >= 0: return int(obj) return float(obj) - elif isinstance(obj, NoneClass): + elif isinstance(obj, schemas.NoneClass): return None - elif isinstance(obj, BoolClass): + elif isinstance(obj, schemas.BoolClass): return bool(obj) elif isinstance(obj, (dict, frozendict.frozendict)): return {key: self.default(val) for key, val in obj.items()} elif isinstance(obj, (list, tuple)): return [self.default(item) for item in obj] - raise ApiValueError('Unable to prepare type {} for serialization'.format(obj.__class__.__name__)) + raise exceptions.ApiValueError('Unable to prepare type {} for serialization'.format(obj.__class__.__name__)) class ParameterInType(enum.Enum): @@ -131,9 +118,9 @@ def __ref6570_item_value(in_data: typing.Any, percent_encode: bool): """ if type(in_data) in {str, float, int}: if percent_encode: - return quote(str(in_data)) + return parse.quote(str(in_data)) return str(in_data) - elif isinstance(in_data, none_type): + elif isinstance(in_data, schemas.none_type): # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return None elif isinstance(in_data, list) and not in_data: @@ -142,7 +129,7 @@ def __ref6570_item_value(in_data: typing.Any, percent_encode: bool): elif isinstance(in_data, dict) and not in_data: # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return None - raise ApiValueError('Unable to generate a ref6570 item representation of {}'.format(in_data)) + raise exceptions.ApiValueError('Unable to generate a ref6570 item representation of {}'.format(in_data)) @staticmethod def _to_dict(name: str, value: str): @@ -250,7 +237,7 @@ def _ref6570_expansion( var_name_piece, named_parameter_expansion ) - elif isinstance(in_data, none_type): + elif isinstance(in_data, schemas.none_type): # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return "" elif isinstance(in_data, list): @@ -274,7 +261,7 @@ def _ref6570_expansion( named_parameter_expansion ) # bool, bytes, etc - raise ApiValueError('Unable to generate a ref6570 representation of {}'.format(in_data)) + raise exceptions.ApiValueError('Unable to generate a ref6570 representation of {}'.format(in_data)) class StyleFormSerializer(ParameterSerializerBase): @@ -355,8 +342,8 @@ class ParameterBase(JSONDetector): style: typing.Optional[ParameterStyle] explode: typing.Optional[bool] allow_reserved: typing.Optional[bool] - schema: typing.Optional[typing.Type[Schema]] - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] + schema: typing.Optional[typing.Type[schemas.Schema]] + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] _json_encoder = JSONEncoder() @@ -385,8 +372,8 @@ class PathParameter(ParameterBase, StyleSimpleSerializer): style: ParameterStyle = ParameterStyle.SIMPLE explode: bool = False allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def __serialize_label( @@ -435,7 +422,7 @@ def __serialize_simple( def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -473,8 +460,8 @@ class QueryParameter(ParameterBase, StyleFormSerializer): style: ParameterStyle = ParameterStyle.FORM explode: typing.Optional[bool] = None allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def __serialize_space_delimited( @@ -540,7 +527,7 @@ def get_prefix_separator_iterator(cls) -> typing.Optional[PrefixSeparatorIterato def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict], + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], prefix_separator_iterator: typing.Optional[PrefixSeparatorIterator] = None ) -> typing.Dict[str, str]: if cls.schema: @@ -577,7 +564,7 @@ def serialize( value = cls._serialize_json(cast_in_data, eliminate_whitespace=True) return cls._to_dict( cls.name, - next(prefix_separator_iterator) + cls.name + '=' + quote(value) + next(prefix_separator_iterator) + cls.name + '=' + parse.quote(value) ) raise NotImplementedError('Serialization of {} has not yet been implemented'.format(content_type)) @@ -589,14 +576,14 @@ class CookieParameter(ParameterBase, StyleFormSerializer): in_type: ParameterInType = ParameterInType.COOKIE explode: typing.Optional[bool] = None allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -634,13 +621,13 @@ class HeaderParameterWithoutName(ParameterBase, StyleSimpleSerializer): in_type: ParameterInType = ParameterInType.HEADER explode: bool = False allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @staticmethod - def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> HTTPHeaderDict: + def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> _collections.HTTPHeaderDict: data = tuple(t for t in in_data if t) - headers = HTTPHeaderDict() + headers = _collections.HTTPHeaderDict() if not data: return headers headers.extend(data) @@ -650,9 +637,9 @@ def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> HTTPHead def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict], + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], name: str - ) -> HTTPHeaderDict: + ) -> _collections.HTTPHeaderDict: if cls.schema: cast_in_data = cls.schema(in_data) cast_in_data = cls._json_encoder.default(cast_in_data) @@ -678,7 +665,7 @@ def deserialize( cls, in_data: str, name: str - ) -> Schema: + ) -> schemas.Schema: if cls.schema: """ simple -> header @@ -703,8 +690,8 @@ class HeaderParameter(HeaderParameterWithoutName): def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] - ) -> HTTPHeaderDict: + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] + ) -> _collections.HTTPHeaderDict: return super().serialize( in_data, cls.name @@ -737,21 +724,21 @@ class MediaType: The encoding object SHALL only apply to requestBody objects when the media type is multipart or application/x-www-form-urlencoded. """ - schema: typing.Optional[typing.Type[Schema]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None encoding: typing.Optional[typing.Dict[str, Encoding]] = None @dataclasses.dataclass class ApiResponse: response: urllib3.HTTPResponse - body: typing.Union[Unset, Schema] = unset - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset def __init__( self, response: urllib3.HTTPResponse, - body: typing.Union[Unset, Schema] = unset, - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset, + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset ): """ pycharm needs this to prevent 'Unexpected argument' warnings @@ -764,8 +751,8 @@ def __init__( @dataclasses.dataclass class ApiResponseWithoutDeserialization(ApiResponse): response: urllib3.HTTPResponse - body: typing.Union[Unset, Schema] = unset - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset class TypedDictInputVerifier: @@ -775,7 +762,7 @@ def _verify_typed_dict_inputs_oapg(cls: typing.Type[typing_extensions.TypedDict] Ensures that: - required keys are present - additional properties are not input - - value stored under required keys do not have the value unset + - value stored under required keys do not have the value schemas.unset Note: detailed value checking is done in schema classes """ missing_required_keys = [] @@ -785,16 +772,16 @@ def _verify_typed_dict_inputs_oapg(cls: typing.Type[typing_extensions.TypedDict] missing_required_keys.append(required_key) continue value = data[required_key] - if value is unset: + if value is schemas.unset: required_keys_with_unset_values.append(required_key) if missing_required_keys: - raise ApiTypeError( + raise exceptions.ApiTypeError( '{} missing {} required arguments: {}'.format( cls.__name__, len(missing_required_keys), missing_required_keys ) ) if required_keys_with_unset_values: - raise ApiValueError( + raise exceptions.ApiValueError( '{} contains invalid unset values for {} required keys: {}'.format( cls.__name__, len(required_keys_with_unset_values), required_keys_with_unset_values ) @@ -806,7 +793,7 @@ def _verify_typed_dict_inputs_oapg(cls: typing.Type[typing_extensions.TypedDict] continue disallowed_additional_keys.append(key) if disallowed_additional_keys: - raise ApiTypeError( + raise exceptions.ApiTypeError( '{} got {} unexpected keyword arguments: {}'.format( cls.__name__, len(disallowed_additional_keys), disallowed_additional_keys ) @@ -832,7 +819,7 @@ def __deserialize_json(response: urllib3.HTTPResponse) -> typing.Any: def __file_name_from_response_url(response_url: typing.Optional[str]) -> typing.Optional[str]: if response_url is None: return None - url_path = urlparse(response_url).path + url_path = parse.urlparse(response_url).path if url_path: path_basename = os.path.basename(url_path) if path_basename: @@ -900,12 +887,12 @@ def __deserialize_multipart_form_data( } @classmethod - def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuration) -> T: + def deserialize(cls, response: urllib3.HTTPResponse, configuration: configuration_module.Configuration) -> T: content_type = response.getheader('content-type') - deserialized_body = unset + deserialized_body = schemas.unset streamed = response.supports_chunked_reads() - deserialized_headers = unset + deserialized_headers = schemas.unset if cls.headers is not None: cls._verify_typed_dict_inputs_oapg(cls.response_cls.headers, response.headers) deserialized_headers = {} @@ -918,7 +905,7 @@ def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuratio if cls.content is not None: if content_type not in cls.content: - raise ApiValueError( + raise exceptions.ApiValueError( f"Invalid content_type returned. Content_type='{content_type}' was returned " f"when only {str(set(cls.content))} are defined for status_code={str(response.status)}" ) @@ -928,7 +915,7 @@ def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuratio return cls.response_cls( response=response, headers=deserialized_headers, - body=unset + body=schemas.unset ) if cls._content_type_is_json(content_type): @@ -964,7 +951,7 @@ class ApiClient: Ref: https://openapi-generator.tech Do not edit the class manually. - :param configuration: .Configuration object for this client + :param configuration: configuration_module.Configuration object for this client :param header_name: a header to pass when making calls to the API. :param header_value: a header value to pass when making calls to the API. @@ -978,19 +965,19 @@ class ApiClient: def __init__( self, - configuration: typing.Optional[Configuration] = None, + configuration: typing.Optional[configuration_module.Configuration] = None, header_name: typing.Optional[str] = None, header_value: typing.Optional[str] = None, cookie: typing.Optional[str] = None, pool_threads: int = 1 ): if configuration is None: - configuration = Configuration() + configuration = configuration_module.Configuration() self.configuration = configuration self.pool_threads = pool_threads self.rest_client = rest.RESTClientObject(configuration) - self.default_headers = HTTPHeaderDict() + self.default_headers = _collections.HTTPHeaderDict() if header_name is not None: self.default_headers[header_name] = header_value self.cookie = cookie @@ -1018,7 +1005,7 @@ def pool(self): """ if self._pool is None: atexit.register(self.close) - self._pool = ThreadPool(self.pool_threads) + self._pool = pool.ThreadPool(self.pool_threads) return self._pool @property @@ -1037,7 +1024,7 @@ def __call_api( self, resource_path: str, method: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, body: typing.Optional[typing.Union[str, bytes]] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, auth_settings: typing.Optional[typing.List[str]] = None, @@ -1047,7 +1034,7 @@ def __call_api( ) -> urllib3.HTTPResponse: # header parameters - used_headers = HTTPHeaderDict(self.default_headers) + used_headers = _collections.HTTPHeaderDict(self.default_headers) if self.cookie: headers['Cookie'] = self.cookie @@ -1082,7 +1069,7 @@ def call_api( self, resource_path: str, method: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, body: typing.Optional[typing.Union[str, bytes]] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, auth_settings: typing.Optional[typing.List[str]] = None, @@ -1108,8 +1095,8 @@ def call_api( :param stream: if True, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Also when True, if the openapi spec describes a file download, - the data will be written to a local filesystme file and the BinarySchema - instance will also inherit from FileSchema and FileIO + the data will be written to a local filesystme file and the schemas.BinarySchema + instance will also inherit from FileSchema and schemas.FileIO Default is False. :type stream: bool, optional :param timeout: timeout setting for this request. If one @@ -1158,7 +1145,7 @@ def request( self, method: str, url: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, body: typing.Optional[typing.Union[str, bytes]] = None, stream: bool = False, @@ -1210,7 +1197,7 @@ def request( timeout=timeout, body=body) else: - raise ApiValueError( + raise exceptions.ApiValueError( "http method must be `GET`, `HEAD`, `OPTIONS`," " `POST`, `PATCH`, `PUT` or `DELETE`." ) @@ -1243,9 +1230,9 @@ def update_params_for_auth(self, headers, auth_settings, need to pass in prefix_separator_iterator and need to output resource_path with query params added """ - raise ApiValueError("Auth in query not yet implemented") + raise exceptions.ApiValueError("Auth in query not yet implemented") else: - raise ApiValueError( + raise exceptions.ApiValueError( 'Authentication token must be in `query` or `header`' ) @@ -1284,7 +1271,7 @@ def _get_host_oapg( ) except IndexError: if servers: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid host index. Must be 0 <= index < %s" % len(servers) ) @@ -1300,7 +1287,7 @@ class SerializedRequestBody(typing_extensions.TypedDict, total=False): class RequestBody(StyleFormSerializer, JSONDetector): """ A request body parameter - content: content_type to MediaType Schema info + content: content_type to MediaType schemas.Schema info """ __json_encoder = JSONEncoder() content: typing.Dict[str, MediaType] @@ -1323,28 +1310,28 @@ def __serialize_text_plain(in_data: typing.Any) -> typing.Dict[str, str]: raise ValueError('Unable to serialize type frozendict.frozendict to text/plain') elif isinstance(in_data, tuple): raise ValueError('Unable to serialize type tuple to text/plain') - elif isinstance(in_data, NoneClass): + elif isinstance(in_data, schemas.NoneClass): raise ValueError('Unable to serialize type NoneClass to text/plain') - elif isinstance(in_data, BoolClass): + elif isinstance(in_data, schemas.BoolClass): raise ValueError('Unable to serialize type BoolClass to text/plain') return dict(body=str(in_data)) @classmethod - def __multipart_json_item(cls, key: str, value: Schema) -> RequestField: + def __multipart_json_item(cls, key: str, value: schemas.Schema) -> RequestField: json_value = cls.__json_encoder.default(value) request_field = RequestField(name=key, data=json.dumps(json_value)) request_field.make_multipart(content_type='application/json') return request_field @classmethod - def __multipart_form_item(cls, key: str, value: Schema) -> RequestField: + def __multipart_form_item(cls, key: str, value: schemas.Schema) -> RequestField: if isinstance(value, str): request_field = RequestField(name=key, data=str(value)) request_field.make_multipart(content_type='text/plain') elif isinstance(value, bytes): request_field = RequestField(name=key, data=value) request_field.make_multipart(content_type='application/octet-stream') - elif isinstance(value, FileIO): + elif isinstance(value, schemas.FileIO): # TODO use content.encoding to limit allowed content types if they are present request_field = RequestField.from_tuples(key, (os.path.basename(value.name), value.read())) value.close() @@ -1354,7 +1341,7 @@ def __multipart_form_item(cls, key: str, value: Schema) -> RequestField: @classmethod def __serialize_multipart_form_data( - cls, in_data: Schema + cls, in_data: schemas.Schema ) -> typing.Dict[str, typing.Tuple[RequestField, ...]]: if not isinstance(in_data, frozendict.frozendict): raise ValueError(f'Unable to serialize {in_data} to multipart/form-data because it is not a dict of data') @@ -1390,10 +1377,10 @@ def __serialize_multipart_form_data( return dict(fields=tuple(fields)) @staticmethod - def __serialize_application_octet_stream(in_data: BinarySchema) -> typing.Dict[str, bytes]: + def __serialize_application_octet_stream(in_data: schemas.BinarySchema) -> typing.Dict[str, bytes]: if isinstance(in_data, bytes): return dict(body=in_data) - # FileIO type + # schemas.FileIO type result = dict(body=in_data.read()) in_data.close() return result diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/_not.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/_not.py index e92c9049e16..21f1c2487d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/_not.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/_not.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Not': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/_not.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/_not.pyi index e92c9049e16..21f1c2487d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/_not.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/_not.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class _Not( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Not': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_allows_a_schema_which_should_validate.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_allows_a_schema_which_should_validate.py index 665639ca334..98543333cd5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_allows_a_schema_which_should_validate.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_allows_a_schema_which_should_validate.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -87,9 +87,9 @@ def get_item_oapg( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'AdditionalpropertiesAllowsASchemaWhichShouldValidate': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_allows_a_schema_which_should_validate.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_allows_a_schema_which_should_validate.pyi index 78855b41373..f977d045908 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_allows_a_schema_which_should_validate.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_allows_a_schema_which_should_validate.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -86,9 +86,9 @@ class AdditionalpropertiesAllowsASchemaWhichShouldValidate( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'AdditionalpropertiesAllowsASchemaWhichShouldValidate': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_are_allowed_by_default.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_are_allowed_by_default.py index 92751dae3cf..db1607ec605 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_are_allowed_by_default.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_are_allowed_by_default.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -86,11 +86,11 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalpropertiesAreAllowedByDefault': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_are_allowed_by_default.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_are_allowed_by_default.pyi index 92751dae3cf..db1607ec605 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_are_allowed_by_default.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_are_allowed_by_default.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -86,11 +86,11 @@ class AdditionalpropertiesAreAllowedByDefault( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalpropertiesAreAllowedByDefault': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_can_exist_by_itself.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_can_exist_by_itself.py index 08dd9cea16f..979cbed68f1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_can_exist_by_itself.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_can_exist_by_itself.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,7 +47,7 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'AdditionalpropertiesCanExistByItself': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_can_exist_by_itself.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_can_exist_by_itself.pyi index 1cb796e8d14..7f6bd8a893b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_can_exist_by_itself.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_can_exist_by_itself.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -46,7 +46,7 @@ class AdditionalpropertiesCanExistByItself( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'AdditionalpropertiesCanExistByItself': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_should_not_look_in_applicators.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_should_not_look_in_applicators.py index 81ed1a2b8ef..f232095fa18 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_should_not_look_in_applicators.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_should_not_look_in_applicators.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,10 +88,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -114,8 +114,8 @@ def get_item_oapg(self, name: str) -> MetaOapg.AdditionalProperties: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'AdditionalpropertiesShouldNotLookInApplicators': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_should_not_look_in_applicators.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_should_not_look_in_applicators.pyi index 81ed1a2b8ef..f232095fa18 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_should_not_look_in_applicators.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/additionalproperties_should_not_look_in_applicators.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,10 +88,10 @@ class AdditionalpropertiesShouldNotLookInApplicators( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -114,8 +114,8 @@ class AdditionalpropertiesShouldNotLookInApplicators( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: typing.Union[MetaOapg.AdditionalProperties, bool, ], ) -> 'AdditionalpropertiesShouldNotLookInApplicators': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof.py index 9d50a5be7c4..1cfe58eba57 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,10 +92,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -159,10 +159,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -179,9 +179,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Allof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof.pyi index 9d50a5be7c4..1cfe58eba57 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,10 +92,10 @@ class Allof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -159,10 +159,10 @@ class Allof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -179,9 +179,9 @@ class Allof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Allof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_combined_with_anyof_oneof.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_combined_with_anyof_oneof.py index 05a7f8d66bc..859b066a050 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_combined_with_anyof_oneof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_combined_with_anyof_oneof.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -51,9 +51,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -80,9 +80,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -109,9 +109,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf0': return super().__new__( cls, @@ -126,9 +126,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofCombinedWithAnyofOneof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_combined_with_anyof_oneof.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_combined_with_anyof_oneof.pyi index 34c98766652..57e27f19b9e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_combined_with_anyof_oneof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_combined_with_anyof_oneof.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -50,9 +50,9 @@ class AllofCombinedWithAnyofOneof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -78,9 +78,9 @@ class AllofCombinedWithAnyofOneof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -106,9 +106,9 @@ class AllofCombinedWithAnyofOneof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf0': return super().__new__( cls, @@ -123,9 +123,9 @@ class AllofCombinedWithAnyofOneof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofCombinedWithAnyofOneof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_simple_types.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_simple_types.py index e5c6d9a35c5..49c126c2876 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_simple_types.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_simple_types.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -51,9 +51,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -75,9 +75,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -93,9 +93,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofSimpleTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_simple_types.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_simple_types.pyi index c38ef8bc0ef..3cf0c70bda1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_simple_types.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_simple_types.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -50,9 +50,9 @@ class AllofSimpleTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -73,9 +73,9 @@ class AllofSimpleTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -91,9 +91,9 @@ class AllofSimpleTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofSimpleTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_base_schema.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_base_schema.py index 363fc825131..081f1a5459a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_base_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_base_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -101,10 +101,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -168,10 +168,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], baz: typing.Union[MetaOapg.Properties.Baz, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -221,10 +221,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithBaseSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_base_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_base_schema.pyi index 363fc825131..081f1a5459a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_base_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_base_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -101,10 +101,10 @@ class AllofWithBaseSchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -168,10 +168,10 @@ class AllofWithBaseSchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], baz: typing.Union[MetaOapg.Properties.Baz, None, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -221,10 +221,10 @@ class AllofWithBaseSchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithBaseSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_one_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_one_empty_schema.py index e0920847aa6..ae8937951b9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_one_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_one_empty_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -45,9 +45,9 @@ class AllOf: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithOneEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_one_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_one_empty_schema.pyi index e0920847aa6..ae8937951b9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_one_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_one_empty_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -45,9 +45,9 @@ class AllofWithOneEmptySchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithOneEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_first_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_first_empty_schema.py index dea66c5a102..468afff993d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_first_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_first_empty_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class AllOf: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithTheFirstEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_first_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_first_empty_schema.pyi index dea66c5a102..468afff993d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_first_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_first_empty_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class AllofWithTheFirstEmptySchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithTheFirstEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_last_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_last_empty_schema.py index c611e644746..07dc36b05a6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_last_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_last_empty_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class AllOf: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithTheLastEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_last_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_last_empty_schema.pyi index c611e644746..07dc36b05a6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_last_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_the_last_empty_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class AllofWithTheLastEmptySchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithTheLastEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_two_empty_schemas.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_two_empty_schemas.py index a553a08fc02..c703bc20349 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_two_empty_schemas.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_two_empty_schemas.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class AllOf: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithTwoEmptySchemas': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_two_empty_schemas.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_two_empty_schemas.pyi index a553a08fc02..c703bc20349 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_two_empty_schemas.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/allof_with_two_empty_schemas.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class AllofWithTwoEmptySchemas( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllofWithTwoEmptySchemas': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof.py index 6739cc95cff..e2b53c11230 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -52,9 +52,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf1': return super().__new__( cls, @@ -70,9 +70,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Anyof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof.pyi index d0897a97b07..b41ca2ec448 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -51,9 +51,9 @@ class Anyof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf1': return super().__new__( cls, @@ -69,9 +69,9 @@ class Anyof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Anyof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_complex_types.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_complex_types.py index 03681352e2b..3934f2204e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_complex_types.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_complex_types.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,10 +92,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf0': return super().__new__( cls, @@ -159,10 +159,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf1': return super().__new__( cls, @@ -179,9 +179,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyofComplexTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_complex_types.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_complex_types.pyi index 03681352e2b..3934f2204e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_complex_types.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_complex_types.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,10 +92,10 @@ class AnyofComplexTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf0': return super().__new__( cls, @@ -159,10 +159,10 @@ class AnyofComplexTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf1': return super().__new__( cls, @@ -179,9 +179,9 @@ class AnyofComplexTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyofComplexTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_base_schema.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_base_schema.py index d67f6eff162..06a62653a38 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_base_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_base_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -53,9 +53,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf0': return super().__new__( cls, @@ -77,9 +77,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf1': return super().__new__( cls, @@ -96,7 +96,7 @@ def __new__( def __new__( cls, *_args: typing.Union[str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AnyofWithBaseSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_base_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_base_schema.pyi index 01719ae1fe6..8cf52b2a672 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_base_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_base_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -52,9 +52,9 @@ class AnyofWithBaseSchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf0': return super().__new__( cls, @@ -75,9 +75,9 @@ class AnyofWithBaseSchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf1': return super().__new__( cls, @@ -94,7 +94,7 @@ class AnyofWithBaseSchema( def __new__( cls, *_args: typing.Union[str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AnyofWithBaseSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_one_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_one_empty_schema.py index 6bac67957de..8cce4eea864 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_one_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_one_empty_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class AnyOf: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyofWithOneEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_one_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_one_empty_schema.pyi index 6bac67957de..8cce4eea864 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_one_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/anyof_with_one_empty_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class AnyofWithOneEmptySchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyofWithOneEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/array_type_matches_arrays.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/array_type_matches_arrays.py index 737af2f43a0..34cb91aecdf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/array_type_matches_arrays.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/array_type_matches_arrays.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,8 +39,8 @@ class MetaOapg: def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayTypeMatchesArrays': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/array_type_matches_arrays.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/array_type_matches_arrays.pyi index 737af2f43a0..34cb91aecdf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/array_type_matches_arrays.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/array_type_matches_arrays.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,8 +39,8 @@ class ArrayTypeMatchesArrays( def __new__( cls, - _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.Items, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'ArrayTypeMatchesArrays': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/boolean_type_matches_booleans.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/boolean_type_matches_booleans.py index 8e9d55f91a4..63b703e34f5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/boolean_type_matches_booleans.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/boolean_type_matches_booleans.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/boolean_type_matches_booleans.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/boolean_type_matches_booleans.pyi index 8e9d55f91a4..63b703e34f5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/boolean_type_matches_booleans.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/boolean_type_matches_booleans.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_int.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_int.py index db022e5cde9..94429ba4792 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_int.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_int.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ByInt': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_int.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_int.pyi index a832724b92b..a42b3651c1f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_int.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_int.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class ByInt( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ByInt': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_number.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_number.py index 7fbdadef466..294981e0521 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_number.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_number.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ByNumber': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_number.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_number.pyi index 476efbc9d2c..fc4bcf7b863 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_number.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_number.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class ByNumber( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ByNumber': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_small_number.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_small_number.py index 790338b2d1a..bd7235a8608 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_small_number.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_small_number.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'BySmallNumber': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_small_number.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_small_number.pyi index 35867a5eacb..9cef848d75e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_small_number.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/by_small_number.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class BySmallNumber( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'BySmallNumber': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/date_time_format.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/date_time_format.py index 76b503e68eb..6d54dbb9119 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/date_time_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/date_time_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -41,9 +41,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DateTimeFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/date_time_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/date_time_format.pyi index 76b503e68eb..6d54dbb9119 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/date_time_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/date_time_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -41,9 +41,9 @@ class DateTimeFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DateTimeFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/email_format.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/email_format.py index ef97eb5eb9d..2f31058f10c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/email_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/email_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EmailFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/email_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/email_format.pyi index ef97eb5eb9d..2f31058f10c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/email_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/email_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class EmailFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EmailFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with0_does_not_match_false.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with0_does_not_match_false.py index 15c3e33f0af..5acbbcada4f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with0_does_not_match_false.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with0_does_not_match_false.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with0_does_not_match_false.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with0_does_not_match_false.pyi index f9bcc200172..cc2aa5d451e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with0_does_not_match_false.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with0_does_not_match_false.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with1_does_not_match_true.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with1_does_not_match_true.py index 6f35733f3b0..9e2880276a1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with1_does_not_match_true.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with1_does_not_match_true.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with1_does_not_match_true.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with1_does_not_match_true.pyi index e40aff69d83..be1bd39705b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with1_does_not_match_true.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with1_does_not_match_true.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_escaped_characters.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_escaped_characters.py index 3226e47fd54..be96a4f5d1d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_escaped_characters.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_escaped_characters.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_escaped_characters.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_escaped_characters.pyi index 3d517edc8eb..e837e7f7a3b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_escaped_characters.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_escaped_characters.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_false_does_not_match0.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_false_does_not_match0.py index ba0019a31d0..688d9b7ac07 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_false_does_not_match0.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_false_does_not_match0.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_false_does_not_match0.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_false_does_not_match0.pyi index 0f93b23acbb..3387f1f6a32 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_false_does_not_match0.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_false_does_not_match0.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_true_does_not_match1.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_true_does_not_match1.py index 867b40b1bb7..68f8992c089 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_true_does_not_match1.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_true_does_not_match1.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_true_does_not_match1.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_true_does_not_match1.pyi index ec09d23e3ab..c5ac9684ae4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_true_does_not_match1.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enum_with_true_does_not_match1.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enums_in_properties.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enums_in_properties.py index 2d3bb6e3d10..1eb67d23c6b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enums_in_properties.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enums_in_properties.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -127,8 +127,8 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union[MetaOapg.Properties.Bar, str, ], foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumsInProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enums_in_properties.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enums_in_properties.pyi index 62ce9b44bdc..345087dd38e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enums_in_properties.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/enums_in_properties.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -108,8 +108,8 @@ class EnumsInProperties( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union[MetaOapg.Properties.Bar, str, ], foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumsInProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/forbidden_property.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/forbidden_property.py index d5948573a44..77eb36ab0cc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/forbidden_property.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/forbidden_property.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -76,10 +76,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ForbiddenProperty': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/forbidden_property.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/forbidden_property.pyi index d5948573a44..77eb36ab0cc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/forbidden_property.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/forbidden_property.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -76,10 +76,10 @@ class ForbiddenProperty( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ForbiddenProperty': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/hostname_format.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/hostname_format.py index 94d395721d0..c01e7367874 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/hostname_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/hostname_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HostnameFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/hostname_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/hostname_format.pyi index 94d395721d0..c01e7367874 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/hostname_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/hostname_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class HostnameFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HostnameFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/integer_type_matches_integers.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/integer_type_matches_integers.py index ccb986ac466..cea95b997a7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/integer_type_matches_integers.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/integer_type_matches_integers.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/integer_type_matches_integers.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/integer_type_matches_integers.pyi index ccb986ac466..cea95b997a7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/integer_type_matches_integers.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/integer_type_matches_integers.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.py index 5b3efef7918..cb5c462b72b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.pyi index 33c88d10402..5fec352c9b0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_string_value_for_default.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_string_value_for_default.py index ca128bf42bd..1255624f572 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_string_value_for_default.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_string_value_for_default.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -87,10 +87,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'InvalidStringValueForDefault': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_string_value_for_default.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_string_value_for_default.pyi index 17fc00853bc..40570855b51 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_string_value_for_default.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/invalid_string_value_for_default.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -81,10 +81,10 @@ class InvalidStringValueForDefault( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'InvalidStringValueForDefault': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv4_format.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv4_format.py index e938833d5df..b817d1872ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv4_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv4_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Ipv4Format': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv4_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv4_format.pyi index e938833d5df..b817d1872ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv4_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv4_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class Ipv4Format( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Ipv4Format': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv6_format.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv6_format.py index 235272d72c8..564f2df79f5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv6_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv6_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Ipv6Format': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv6_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv6_format.pyi index 235272d72c8..564f2df79f5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv6_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ipv6_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class Ipv6Format( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Ipv6Format': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/json_pointer_format.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/json_pointer_format.py index f695ff63128..9009dc8b90e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/json_pointer_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/json_pointer_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'JsonPointerFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/json_pointer_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/json_pointer_format.pyi index f695ff63128..9009dc8b90e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/json_pointer_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/json_pointer_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class JsonPointerFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'JsonPointerFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation.py index fef85976f83..35bee6ae0b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaximumValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation.pyi index c6b2233bff9..2fd7b658d93 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MaximumValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaximumValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation_with_unsigned_integer.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation_with_unsigned_integer.py index 8b2c42d85be..d3025328b4d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation_with_unsigned_integer.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation_with_unsigned_integer.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaximumValidationWithUnsignedInteger': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation_with_unsigned_integer.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation_with_unsigned_integer.pyi index 5b5d4f2271b..d672129addc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation_with_unsigned_integer.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maximum_validation_with_unsigned_integer.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MaximumValidationWithUnsignedInteger( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaximumValidationWithUnsignedInteger': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxitems_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxitems_validation.py index 29fbff62cdf..72a34d34575 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxitems_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxitems_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaxitemsValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxitems_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxitems_validation.pyi index f10877604f2..387679ba237 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxitems_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxitems_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MaxitemsValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaxitemsValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxlength_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxlength_validation.py index 7da20227860..d64307668b0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxlength_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxlength_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaxlengthValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxlength_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxlength_validation.pyi index d8a3d0f9599..73d0907261c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxlength_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxlength_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MaxlengthValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaxlengthValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties0_means_the_object_is_empty.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties0_means_the_object_is_empty.py index a28f991a123..a5e24079d6f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties0_means_the_object_is_empty.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties0_means_the_object_is_empty.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Maxproperties0MeansTheObjectIsEmpty': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties0_means_the_object_is_empty.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties0_means_the_object_is_empty.pyi index a7098ae65f7..d5419861905 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties0_means_the_object_is_empty.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties0_means_the_object_is_empty.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class Maxproperties0MeansTheObjectIsEmpty( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Maxproperties0MeansTheObjectIsEmpty': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties_validation.py index b29dad29aa1..cc75ac86edb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaxpropertiesValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties_validation.pyi index c6939aff2de..f1b6b59cd85 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/maxproperties_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MaxpropertiesValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MaxpropertiesValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation.py index a28dd7f0414..ccc7eba1848 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinimumValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation.pyi index 6eb0d919d38..990cf282c29 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MinimumValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinimumValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation_with_signed_integer.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation_with_signed_integer.py index 272f18415c5..5e3e6fbdd94 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation_with_signed_integer.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation_with_signed_integer.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinimumValidationWithSignedInteger': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation_with_signed_integer.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation_with_signed_integer.pyi index 8af075443f1..cc85066b51e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation_with_signed_integer.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minimum_validation_with_signed_integer.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MinimumValidationWithSignedInteger( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinimumValidationWithSignedInteger': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minitems_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minitems_validation.py index 711a65fb3fc..dc6c9cc9597 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minitems_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minitems_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinitemsValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minitems_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minitems_validation.pyi index 30ab5327e09..04e74e479b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minitems_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minitems_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MinitemsValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinitemsValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minlength_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minlength_validation.py index 9be861b8b92..b39e4d26c4b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minlength_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minlength_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinlengthValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minlength_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minlength_validation.pyi index d99c8b902cc..bd33a934312 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minlength_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minlength_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MinlengthValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinlengthValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minproperties_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minproperties_validation.py index 6902b4db032..35c079a4df1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minproperties_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minproperties_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinpropertiesValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minproperties_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minproperties_validation.pyi index 1eb4f17fe4a..55369425841 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minproperties_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/minproperties_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class MinpropertiesValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MinpropertiesValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_allof_to_check_validation_semantics.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_allof_to_check_validation_semantics.py index 4101fbbf98e..e8ab913655d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_allof_to_check_validation_semantics.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_allof_to_check_validation_semantics.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -56,9 +56,9 @@ class AllOf: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -73,9 +73,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NestedAllofToCheckValidationSemantics': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_allof_to_check_validation_semantics.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_allof_to_check_validation_semantics.pyi index 4101fbbf98e..e8ab913655d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_allof_to_check_validation_semantics.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_allof_to_check_validation_semantics.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -56,9 +56,9 @@ class NestedAllofToCheckValidationSemantics( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf0': return super().__new__( cls, @@ -73,9 +73,9 @@ class NestedAllofToCheckValidationSemantics( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NestedAllofToCheckValidationSemantics': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_anyof_to_check_validation_semantics.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_anyof_to_check_validation_semantics.py index a9f6dec7414..1c2f034f5b0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_anyof_to_check_validation_semantics.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_anyof_to_check_validation_semantics.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -56,9 +56,9 @@ class AnyOf: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf0': return super().__new__( cls, @@ -73,9 +73,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NestedAnyofToCheckValidationSemantics': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_anyof_to_check_validation_semantics.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_anyof_to_check_validation_semantics.pyi index a9f6dec7414..1c2f034f5b0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_anyof_to_check_validation_semantics.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_anyof_to_check_validation_semantics.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -56,9 +56,9 @@ class NestedAnyofToCheckValidationSemantics( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyOf0': return super().__new__( cls, @@ -73,9 +73,9 @@ class NestedAnyofToCheckValidationSemantics( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NestedAnyofToCheckValidationSemantics': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_items.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_items.py index 7cecab97e42..16efee1c7b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_items.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_items.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -67,7 +67,7 @@ class MetaOapg: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -81,7 +81,7 @@ def __getitem__(self, i: int) -> MetaOapg.Items: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -95,7 +95,7 @@ def __getitem__(self, i: int) -> MetaOapg.Items: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -109,7 +109,7 @@ def __getitem__(self, i: int) -> MetaOapg.Items: def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NestedItems': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_items.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_items.pyi index 7cecab97e42..16efee1c7b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_items.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_items.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -67,7 +67,7 @@ class NestedItems( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]], typing.List[typing.Union[MetaOapg.Items, decimal.Decimal, int, float, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -81,7 +81,7 @@ class NestedItems( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -95,7 +95,7 @@ class NestedItems( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'Items': return super().__new__( cls, @@ -109,7 +109,7 @@ class NestedItems( def __new__( cls, _arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.Items, list, tuple, ]], typing.List[typing.Union[MetaOapg.Items, list, tuple, ]]], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'NestedItems': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_oneof_to_check_validation_semantics.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_oneof_to_check_validation_semantics.py index dc9f074e5d5..be49af1ad15 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_oneof_to_check_validation_semantics.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_oneof_to_check_validation_semantics.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -56,9 +56,9 @@ class OneOf: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -73,9 +73,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NestedOneofToCheckValidationSemantics': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_oneof_to_check_validation_semantics.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_oneof_to_check_validation_semantics.pyi index dc9f074e5d5..be49af1ad15 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_oneof_to_check_validation_semantics.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nested_oneof_to_check_validation_semantics.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -56,9 +56,9 @@ class NestedOneofToCheckValidationSemantics( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -73,9 +73,9 @@ class NestedOneofToCheckValidationSemantics( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NestedOneofToCheckValidationSemantics': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/not_more_complex_schema.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/not_more_complex_schema.py index 60e10ac63cb..8fe6a176bac 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/not_more_complex_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/not_more_complex_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -86,8 +86,8 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Not': return super().__new__( cls, @@ -100,9 +100,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NotMoreComplexSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/not_more_complex_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/not_more_complex_schema.pyi index 295f81c0c3e..a82a219f578 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/not_more_complex_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/not_more_complex_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -85,8 +85,8 @@ class NotMoreComplexSchema( cls, *_args: typing.Union[dict, frozendict.frozendict, ], foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Not': return super().__new__( cls, @@ -99,9 +99,9 @@ class NotMoreComplexSchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NotMoreComplexSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nul_characters_in_strings.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nul_characters_in_strings.py index 903b60f4b62..aaa44bc5bb6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nul_characters_in_strings.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nul_characters_in_strings.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nul_characters_in_strings.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nul_characters_in_strings.pyi index caaa5a56b91..058b9ef6b9e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nul_characters_in_strings.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/nul_characters_in_strings.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/null_type_matches_only_the_null_object.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/null_type_matches_only_the_null_object.py index 4b1bff62a13..d31facc7b85 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/null_type_matches_only_the_null_object.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/null_type_matches_only_the_null_object.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/null_type_matches_only_the_null_object.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/null_type_matches_only_the_null_object.pyi index 4b1bff62a13..d31facc7b85 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/null_type_matches_only_the_null_object.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/null_type_matches_only_the_null_object.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/number_type_matches_numbers.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/number_type_matches_numbers.py index e4d1d79b975..75bb37f0a62 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/number_type_matches_numbers.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/number_type_matches_numbers.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/number_type_matches_numbers.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/number_type_matches_numbers.pyi index e4d1d79b975..75bb37f0a62 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/number_type_matches_numbers.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/number_type_matches_numbers.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_properties_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_properties_validation.py index 04546b25aab..a7534961efb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_properties_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_properties_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -86,11 +86,11 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, decimal.Decimal, int, schemas.Unset] = schemas.unset, bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectPropertiesValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_properties_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_properties_validation.pyi index 04546b25aab..a7534961efb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_properties_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_properties_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -86,11 +86,11 @@ class ObjectPropertiesValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, decimal.Decimal, int, schemas.Unset] = schemas.unset, bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectPropertiesValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_type_matches_objects.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_type_matches_objects.py index a7c70ef5648..db6b7b2ef43 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_type_matches_objects.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_type_matches_objects.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_type_matches_objects.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_type_matches_objects.pyi index a7c70ef5648..db6b7b2ef43 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_type_matches_objects.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/object_type_matches_objects.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof.py index 778a2ab0885..31770037645 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -52,9 +52,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf1': return super().__new__( cls, @@ -70,9 +70,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Oneof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof.pyi index 8fabfe3f6b8..f065c726ddc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -51,9 +51,9 @@ class Oneof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf1': return super().__new__( cls, @@ -69,9 +69,9 @@ class Oneof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Oneof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_complex_types.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_complex_types.py index 629c99dfc4f..ea9764e3dca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_complex_types.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_complex_types.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,10 +92,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -159,10 +159,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf1': return super().__new__( cls, @@ -179,9 +179,9 @@ def __new__( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneofComplexTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_complex_types.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_complex_types.pyi index 629c99dfc4f..ea9764e3dca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_complex_types.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_complex_types.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -92,10 +92,10 @@ class OneofComplexTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.Properties.Bar, decimal.Decimal, int, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -159,10 +159,10 @@ class OneofComplexTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.Properties.Foo, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf1': return super().__new__( cls, @@ -179,9 +179,9 @@ class OneofComplexTypes( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneofComplexTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_base_schema.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_base_schema.py index 0dae9975b06..cc54985b56d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_base_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_base_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -53,9 +53,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -77,9 +77,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf1': return super().__new__( cls, @@ -96,7 +96,7 @@ def __new__( def __new__( cls, *_args: typing.Union[str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'OneofWithBaseSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_base_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_base_schema.pyi index 0d67eb0b100..5795d8e3b7b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_base_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_base_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -52,9 +52,9 @@ class OneofWithBaseSchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -75,9 +75,9 @@ class OneofWithBaseSchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf1': return super().__new__( cls, @@ -94,7 +94,7 @@ class OneofWithBaseSchema( def __new__( cls, *_args: typing.Union[str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'OneofWithBaseSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_empty_schema.py index c79d15d5efe..d4fb4670a0e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_empty_schema.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class OneOf: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneofWithEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_empty_schema.pyi index c79d15d5efe..d4fb4670a0e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_empty_schema.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -47,9 +47,9 @@ class OneofWithEmptySchema( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneofWithEmptySchema': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_required.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_required.py index 7dc1d12ca41..660f2954564 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_required.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_required.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -98,11 +98,11 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - bar: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + bar: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -171,11 +171,11 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - baz: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + baz: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf1': return super().__new__( cls, @@ -194,8 +194,8 @@ def __new__( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneofWithRequired': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_required.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_required.pyi index 7dc1d12ca41..660f2954564 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_required.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/oneof_with_required.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -98,11 +98,11 @@ class OneofWithRequired( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - bar: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + bar: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf0': return super().__new__( cls, @@ -171,11 +171,11 @@ class OneofWithRequired( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - baz: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + baz: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf1': return super().__new__( cls, @@ -194,8 +194,8 @@ class OneofWithRequired( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneofWithRequired': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_is_not_anchored.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_is_not_anchored.py index 09fbb6550ab..2d79aff606a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_is_not_anchored.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_is_not_anchored.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -42,9 +42,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'PatternIsNotAnchored': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_is_not_anchored.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_is_not_anchored.pyi index 68c14dc5d7b..1bf851858bc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_is_not_anchored.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_is_not_anchored.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class PatternIsNotAnchored( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'PatternIsNotAnchored': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_validation.py index 9a67a1cd8d4..a6e4ee132d6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -42,9 +42,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'PatternValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_validation.pyi index 66651ea5f33..496e4a106bf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/pattern_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class PatternValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'PatternValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/properties_with_escaped_characters.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/properties_with_escaped_characters.py index a73b31deac5..0f5aac527de 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/properties_with_escaped_characters.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/properties_with_escaped_characters.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -126,9 +126,9 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'PropertiesWithEscapedCharacters': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/properties_with_escaped_characters.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/properties_with_escaped_characters.pyi index a73b31deac5..0f5aac527de 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/properties_with_escaped_characters.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/properties_with_escaped_characters.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -126,9 +126,9 @@ class PropertiesWithEscapedCharacters( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'PropertiesWithEscapedCharacters': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/property_named_ref_that_is_not_a_reference.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/property_named_ref_that_is_not_a_reference.py index f7732da5e20..26b0d29e3d6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/property_named_ref_that_is_not_a_reference.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/property_named_ref_that_is_not_a_reference.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -76,9 +76,9 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'PropertyNamedRefThatIsNotAReference': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/property_named_ref_that_is_not_a_reference.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/property_named_ref_that_is_not_a_reference.pyi index f7732da5e20..26b0d29e3d6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/property_named_ref_that_is_not_a_reference.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/property_named_ref_that_is_not_a_reference.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -76,9 +76,9 @@ class PropertyNamedRefThatIsNotAReference( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'PropertyNamedRefThatIsNotAReference': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_additionalproperties.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_additionalproperties.py index 8a2afdf29f4..5dd69c16f05 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_additionalproperties.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_additionalproperties.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -50,7 +50,7 @@ def get_item_oapg(self, name: str) -> 'property_named_ref_that_is_not_a_referenc def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: 'property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference', ) -> 'RefInAdditionalproperties': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_additionalproperties.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_additionalproperties.pyi index 062428fb591..37e82ea07fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_additionalproperties.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_additionalproperties.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -49,7 +49,7 @@ class RefInAdditionalproperties( def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, **kwargs: 'property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference', ) -> 'RefInAdditionalproperties': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_allof.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_allof.py index 6fc83b7a044..f4aa63e7a0e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_allof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_allof.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -48,9 +48,9 @@ def all_of0() -> typing.Type['property_named_ref_that_is_not_a_reference.Propert def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInAllof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_allof.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_allof.pyi index 6fc83b7a044..f4aa63e7a0e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_allof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_allof.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -48,9 +48,9 @@ class RefInAllof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInAllof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_anyof.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_anyof.py index 7ca3ae3b783..63fdd70a404 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_anyof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_anyof.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -48,9 +48,9 @@ def any_of0() -> typing.Type['property_named_ref_that_is_not_a_reference.Propert def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInAnyof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_anyof.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_anyof.pyi index 7ca3ae3b783..63fdd70a404 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_anyof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_anyof.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -48,9 +48,9 @@ class RefInAnyof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInAnyof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_items.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_items.py index 23a21de4b78..686ac9fb997 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_items.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_items.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -43,7 +43,7 @@ def items() -> typing.Type['property_named_ref_that_is_not_a_reference.PropertyN def __new__( cls, _arg: typing.Union[typing.Tuple['property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference'], typing.List['property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'RefInItems': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_items.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_items.pyi index 23a21de4b78..686ac9fb997 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_items.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_items.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -43,7 +43,7 @@ class RefInItems( def __new__( cls, _arg: typing.Union[typing.Tuple['property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference'], typing.List['property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference']], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'RefInItems': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_not.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_not.py index e97095ad7cf..05c084218b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_not.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_not.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -43,9 +43,9 @@ def _not() -> typing.Type['property_named_ref_that_is_not_a_reference.PropertyNa def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInNot': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_not.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_not.pyi index e97095ad7cf..05c084218b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_not.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_not.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -43,9 +43,9 @@ class RefInNot( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInNot': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_oneof.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_oneof.py index 767d67ed4d2..a227ab116e7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_oneof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_oneof.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -48,9 +48,9 @@ def one_of0() -> typing.Type['property_named_ref_that_is_not_a_reference.Propert def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInOneof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_oneof.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_oneof.pyi index 767d67ed4d2..a227ab116e7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_oneof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_oneof.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -48,9 +48,9 @@ class RefInOneof( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInOneof': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_property.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_property.py index d2e29cd7d23..8e5b6005aa2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_property.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_property.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -79,10 +79,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], a: typing.Union['property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInProperty': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_property.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_property.pyi index d2e29cd7d23..8e5b6005aa2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_property.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/ref_in_property.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -79,10 +79,10 @@ class RefInProperty( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], a: typing.Union['property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference', schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RefInProperty': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_default_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_default_validation.py index 2f4af473093..b46c1cd9821 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_default_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_default_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -76,10 +76,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RequiredDefaultValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_default_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_default_validation.pyi index 2f4af473093..b46c1cd9821 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_default_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_default_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -76,10 +76,10 @@ class RequiredDefaultValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RequiredDefaultValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_validation.py index e16f7827d81..b7f8225f5c8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -91,11 +91,11 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RequiredValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_validation.pyi index e16f7827d81..b7f8225f5c8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -91,11 +91,11 @@ class RequiredValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + bar: typing.Union[MetaOapg.Properties.Bar, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RequiredValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_empty_array.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_empty_array.py index 4697ff285ca..a6ac5e9e00a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_empty_array.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_empty_array.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -76,10 +76,10 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RequiredWithEmptyArray': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_empty_array.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_empty_array.pyi index 4697ff285ca..a6ac5e9e00a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_empty_array.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_empty_array.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -76,10 +76,10 @@ class RequiredWithEmptyArray( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.Properties.Foo, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RequiredWithEmptyArray': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_escaped_characters.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_escaped_characters.py index 28a3bd77b8a..dc067ea3a0d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_escaped_characters.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_escaped_characters.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -119,9 +119,9 @@ def get_item_oapg( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RequiredWithEscapedCharacters': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_escaped_characters.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_escaped_characters.pyi index 28a3bd77b8a..dc067ea3a0d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_escaped_characters.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/required_with_escaped_characters.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -119,9 +119,9 @@ class RequiredWithEscapedCharacters( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'RequiredWithEscapedCharacters': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/simple_enum_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/simple_enum_validation.py index 4534fbae077..90f6799e972 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/simple_enum_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/simple_enum_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/simple_enum_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/simple_enum_validation.pyi index 9ba398b2b8f..32ed4a698d2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/simple_enum_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/simple_enum_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/string_type_matches_strings.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/string_type_matches_strings.py index 573e83bc999..967fa85259f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/string_type_matches_strings.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/string_type_matches_strings.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/string_type_matches_strings.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/string_type_matches_strings.pyi index 573e83bc999..967fa85259f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/string_type_matches_strings.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/string_type_matches_strings.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.py index 51374dfb96c..afebbfa1163 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -88,8 +88,8 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], alpha: typing.Union[MetaOapg.Properties.Alpha, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.pyi index affdcf8877f..b3172735747 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -81,8 +81,8 @@ class TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing( cls, *_args: typing.Union[dict, frozendict.frozendict, ], alpha: typing.Union[MetaOapg.Properties.Alpha, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_false_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_false_validation.py index 7461a751677..7afeb27050b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_false_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_false_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UniqueitemsFalseValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_false_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_false_validation.pyi index 8f136eacddb..421089b8c2f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_false_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_false_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class UniqueitemsFalseValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UniqueitemsFalseValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_validation.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_validation.py index f708a5ea429..9a4c99ab779 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_validation.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UniqueitemsValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_validation.pyi index 5e7c997f6b2..d061a8b935a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uniqueitems_validation.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -39,9 +39,9 @@ class UniqueitemsValidation( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UniqueitemsValidation': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_format.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_format.py index a0510980e77..a78c3e56cd9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UriFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_format.pyi index a0510980e77..a78c3e56cd9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class UriFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UriFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_reference_format.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_reference_format.py index 4fd3b41e44e..057006b6575 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_reference_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_reference_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UriReferenceFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_reference_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_reference_format.pyi index 4fd3b41e44e..057006b6575 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_reference_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_reference_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class UriReferenceFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UriReferenceFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_template_format.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_template_format.py index 572b2a6b19e..56ce7d311c4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_template_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_template_format.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class MetaOapg: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UriTemplateFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_template_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_template_format.pyi index 572b2a6b19e..56ce7d311c4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_template_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/components/schema/uri_template_format.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -40,9 +40,9 @@ class UriTemplateFormat( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'UriTemplateFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.py index 1202b1cb060..730e3bd41ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.pyi index e4a3bd3e7f5..02062fd182d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.py index 9ab40fd2f45..82f82cd5c14 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.pyi index b77d4b59d31..93ea7151432 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.py index 2f11fecf84e..6e6962e035f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.pyi index 55476520447..e971435d136 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.py index 136e5e6557b..aa817b42ca7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.pyi index 102fd2539f6..46820b2a55f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.py index 7e6d3482155..ebc0341fc8d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.pyi index a390f9ea78c..8f6631f5bd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.py index d0122891b53..b5a7a0033c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.pyi index 27b5c846a61..1213eeca113 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.py index 728b40af863..818cd3d9304 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.pyi index 284eb1727c0..c8d1153f1f0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.py index 52723a6ce29..fe9006fff21 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.pyi index 370a07f6414..8f5f032bf35 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.py index d19688e69a4..5fef1e42d33 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.pyi index dc285cfc6d8..82f33fd3fc6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.py index 92159acfc03..f7f9029360f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.pyi index 31f5529e63c..08acdd75d93 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.py index 0402e040131..165e320cac7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.pyi index bceb7bdb7e6..19a2cf7069d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.py index 243d19cd531..aa82d774ef9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.pyi index 6c2838cfa17..0e72a4d60ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.py index 4c1c0f2f8bb..89b5b458578 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.pyi index d86758afc04..e5a684a4ee8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.py index ca8be418056..b1397a1c96f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.pyi index b9f75a054b0..0b033ca2259 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.py index 045f04609d8..fce00ca549e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.pyi index a1ee771747d..cb83cc394bc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.py index f922785121a..42964b186b7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.pyi index 35364689b36..0741df2a5d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.py index 00075979e20..61c2822b767 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.pyi index 4ce30fe432b..db79cfab6a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.py index e0e8d2d333b..c25e29eb92b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.pyi index 9246492a0c7..c048eb5de6d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.py index 8a5453c2e35..f8eaf52a1d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.pyi index 303494fcefa..7fb2956b589 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.py index e0403106527..63fd89240ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.pyi index 1c52970d159..312dad9bfef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.py index b8fa20b1490..735eb698c9d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.pyi index ed00ef66093..3a28581d855 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.py index 4dad6f2b3e1..822ce2ad8da 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.pyi index 0d319f0fe3d..1565e6c33ad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.py index 71da6dc9818..503b78f5d7b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.pyi index fa9121be33b..d0a9a5c0339 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.py index a588ff7bfc3..9cc1fd4f550 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.pyi index c1d684aa370..a6079fd86f9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.py index 93ec3852067..498f8257696 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.pyi index 41f80fb9f4c..4cc5e8b40af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.py index d331c44e686..3eab60e014e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.pyi index b0298a693f0..269f804d003 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.py index f5bd16125d4..59dc71775a3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.pyi index ee81db8fc09..4c3c7856098 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.py index ed32ae7eb54..f0fcac24eb2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.pyi index 96413719084..00754beaaf8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.py index a3387dd4670..4626e274b9d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.pyi index 9bfd225c1ea..db1bbc51384 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.py index 80d16348bfd..6ecd7491757 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.pyi index 707eb316382..51c6cb8b65d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.py index 7a3bd961266..6d32a33e859 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.pyi index fbbb903a091..389be2db6f6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.py index c75e5d1ea3a..682f2a525e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.pyi index ae2cba02a46..054043fb2e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.py index d21a67e4137..516fbe6e5b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.pyi index efa1bd776e7..6ade7aff187 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.py index 27a096b0f85..3ff2a76da47 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.pyi index 1fdd2797070..ef9be0f2232 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.py index 2f53cc553cc..ae5fa3d4ba1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.pyi index 899dcc7b4cd..bd46c32db4a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.py index c3862aa8ab8..e4521beadc7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.pyi index 93114f6e549..22e2e162d16 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.py index ea82f5fce37..b8b5e9daae4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.pyi index 7bbea7b613c..c593bdcd8ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.py index e723b976c44..07190ee8abd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.pyi index a5da258a44f..8e386931852 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.py index b62ca470caa..1fcc35b0f0c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.pyi index bdd98ef8adb..869c53adef2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.py index b5322ba9289..acc75662d8e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.pyi index 40373ad2129..090989ca581 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.py index d94abe9c731..89f53cb9809 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.pyi index 490079cdd37..fb361733737 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.py index 89f1be29082..c230052e39c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.pyi index 830eabd8b1d..96a682d1f07 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.py index 4cf2cd29d08..974a516968b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.pyi index 24a99c861d0..b2159c2106b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.py index 34acdcb76f7..b946b8f3856 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.pyi index df42d1ac24c..a272ec6bc30 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.py index 8b61ae7829a..7bd34dc5c3c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.pyi index 6db32998439..d87c10ff21b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.py index 4f4755ce124..4bbf5a9e332 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.pyi index 66f2caa3074..0e1f136459e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.py index 99ebca1145d..8e13536eecc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.pyi index e4387af2694..cbf77ef71dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.py index b7b62317241..722037db9d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.pyi index 1609813daa6..64946536c26 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.py index 6945e5add6c..f27f7825cf9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.pyi index ceaa7f9c494..50991b8ac59 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.py index 8737065caf3..7ef1d3b9873 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.pyi index 96d2cd40082..a3545285f8d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.py index 32117eedec1..8e5d2252489 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.pyi index 5e6acb6cdda..afd76098d6d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.py index fec29342dae..224d55f9b78 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.pyi index da1a089c273..c81399a485a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.py index 61e24805bed..c6cde38aa4e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.pyi index b2924428726..a8d8586b154 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.py index 6e9bc669c24..b5b14331e9b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.pyi index cf951101117..92bce18105c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.py index aec11be0cb8..18ca1211505 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.pyi index a07e3f44808..ee4a61164df 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.py index 44cd360be66..e0bee2a744d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.pyi index f1b4574a13a..f7194a6bbb0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.py index 0bfcc505000..ab5334122ea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.pyi index a2df6da3484..8e4c08580ab 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.py index 03db84b5f30..625714b814f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.pyi index 356f4fb2876..833d8ee016f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.py index e50043e4a79..0ed330615e4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.pyi index 0d1aac1aed5..cb6dd783d7d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.py index 6ec805e1a0d..62aab5582d8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.pyi index 3ed16f86073..323edf6f8d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.py index 913b82e5afb..29f5cc110dd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.pyi index 78645c1df18..f05ebd6d582 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.py index b51e89040ff..65df812f256 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.pyi index 7ea6f9a84d3..a41133de2e9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.py index 39d4b7e12bd..536c9ececa9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.pyi index 145980a3758..ca959430c41 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.py index c91d07043d8..450f3d7a5b9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.pyi index 3e7f66c31a5..e0b11a90551 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.py index 8f932d6e641..8425322cb40 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.pyi index e30a8ea20d0..8b7e0d10d45 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.py index 1d78b5138be..27a467456ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.pyi index cc443f568af..7c604f7d161 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.py index 57f25545823..a52296b778d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.pyi index 029b65ad24f..21838f3a2e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.py index 00a452d91f4..ce8cae6c1fd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.pyi index 76ec1dae231..b06859c8541 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.py index 0993a06f770..8c1d5d41262 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.pyi index 5412e5d47c5..fcde4ebaa7f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.py index 6e843c40c5b..ca4a28f0d78 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.pyi index bb9a0902ca5..3dc0c73cac5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.py index ead957d3b79..33cc2928267 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.pyi index 775fa28f96b..7d82f4ebff1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.py index d4f2ebe055a..2b07c57bf68 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.pyi index 99d21bc8c8b..24afedbd656 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.py index 3e5657016dd..af49f6fdb02 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.pyi index b1daa768c5f..e6036457556 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.py index 568b2b0f888..d4bb17164dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.pyi index fad2565f801..2f7b3e9c4a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.py index 04643c4fbb4..4b02d400cf5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.pyi index c421d37e375..2da209948cc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.py index 6ee46ed00f6..d548d5688aa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.pyi index e6706b3a4b6..9f0d49c53a1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.py index 38425470a09..76e140bb3f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.pyi index ae8358a3440..b1145dbd364 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.py index 65b7b054064..3c9d732fe18 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.pyi index 4105412d179..30343acbfb2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.py index 0ac25b19c67..1313132e8b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.pyi index 81c86eb249c..e623bc1e57f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.py index 595b87fcd65..6187b677c47 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.pyi index a23c2a49820..d6e33609960 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.py index d2e4bfe25ad..7aef4d2a96b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.pyi index e94075f6eb1..8345c0ec16c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.py index 89d3fd1a36f..fc3a696c509 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.pyi index 645977914c1..50516e4a4a6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.py index 31a7e3c72a4..baf8c56e406 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.pyi index 15a6ebf8537..a773f0c23dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.py index e955862522e..645d380d8c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.pyi index 24f00e847c6..3d17813af89 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.py index c88ab4223d4..b1719699ff7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.pyi index f46be38365d..ef6e3c97d51 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.py index 59be165b6f1..09c7f563a41 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.pyi index 8396b45cc14..89270a486e5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.py index 061ee340585..2dea8c5b4dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.pyi index 431c0a8e4f1..1a9660b5cad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/response_for_200/__init__.py index 2c6719d0e2b..b72048118a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.py index 79b46b736d8..ba9e9f788de 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.pyi index 575687f3397..3bb578905bb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/response_for_200/__init__.py index bcfd0d12ef7..0dee7cef8de 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.py index 8a440c4c548..744050fbb74 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.pyi index 6fd9189267a..48cf078e4bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/response_for_200/__init__.py index 824944bdc63..d413473dd59 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.py index 7f64230cb2f..98ec8f1bbd8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.pyi index 4265748a195..641028fbba3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/response_for_200/__init__.py index d44454e9024..0778c2a726c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.py index a39b3dbce8a..4a217974244 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.pyi index 0a247d74298..d0d42da5ead 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/response_for_200/__init__.py index f7d476c3ced..e579fc72e5d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.py index d86d6772c7f..8299a450c87 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.pyi index e61770a0afb..acd3d3d2106 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/response_for_200/__init__.py index ff0397a4aad..ba4643bc8c6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.py index 00fd4730d6c..858ebd67755 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.pyi index 0846d9c8219..29fb409b911 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/response_for_200/__init__.py index 52efaee75d7..44d2bf894f7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.py index 72f4d29f73c..decc873d822 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.pyi index 8f9a2210e9f..5e77e5fbc2f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/response_for_200/__init__.py index 85581756623..2d8442e54b3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.py index 862837e6554..8781865ae43 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.pyi index 5b8a7abc8c1..95064bf777a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py index ab69119694d..9e731111010 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.py index 69ddd6070b2..1052f6b7d81 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi index 1c4346b7d18..96e5243e00a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py index 5077bbb4d73..a729e05ce1c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.py index bea523ae029..7da950af702 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.pyi index 224888d3dc7..1915314e606 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py index 9e331525a9f..9bebefbea2b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.py index b68e2fd4721..045f94bb7d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.pyi index bcb028a1d2d..ef507249969 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py index 31fd913cba3..8d2ac1c4f69 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.py index 03daeeb9f53..0f66345d7e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.pyi index 4ba3db0b338..b2f1c9980a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/response_for_200/__init__.py index 41601d243c1..7ec46ab3346 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.py index 5555bc17746..c2b38ac3557 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.pyi index 00f6f22f78e..e3766291245 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/response_for_200/__init__.py index e6ad923ad6d..ec321690edc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.py index 64d0cf2fe4f..a9d03264eed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.pyi index 49d5122262c..ec0e85cfa28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/response_for_200/__init__.py index b0028e25f2b..352869e1cbb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.py index b0e0d40547f..de96c057c1d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.pyi index 2851e42a38d..9471bd62374 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py index 6e5339e062d..1f83136eea7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.py index 1ff66855da0..8c052903689 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi index dd419f4d7a8..0bd460c55f8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py index d8169fdab20..5d6c050e681 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.py index ea9ce102795..66743dcc543 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.pyi index da240e2ca53..ce751573c0a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/response_for_200/__init__.py index 9025022ee41..80f6fdf5701 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.py index f1ddd2a13bf..719cc1a53d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.pyi index 9a07dbbeba5..ec6447985cd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/response_for_200/__init__.py index 8628fee8c59..1168cc39d1e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.py index 03f39f26f8f..4e4b81507ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.pyi index 3335d1abe73..37ba71981f0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/response_for_200/__init__.py index e0768f12fa3..b9897070f0d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.py index 19aaf45bba4..84e22709e41 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.pyi index 60cfd4f544b..5fa80bbef25 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/response_for_200/__init__.py index 38a25e107fb..4a3458dba70 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.py index 7fb782be547..801e0edf49d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.pyi index 0d3538a305c..9b19be058c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/response_for_200/__init__.py index 7098def0954..49f74359236 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.py index 4a3fc15c2d4..790c3b15d83 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.pyi index 797a1771246..5f6a6cddd75 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/response_for_200/__init__.py index 10e960901ea..66e8d0eab50 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.py index 7b9cee8bf49..46f828a984b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.pyi index e90c931c51f..98fc26fdbd6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/response_for_200/__init__.py index 41f61431504..17378b489c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.py index 5fd11ae4e10..8a30fa55241 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.pyi index 78e926259ac..1a3a1b04993 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/response_for_200/__init__.py index 72bbf1a679a..3496d3e6ff1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.py index 2cc01965bcc..deedcfacab0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.pyi index a7e0b33d16a..4202de7d8f1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/response_for_200/__init__.py index d7bfefd0ee6..9b5aceb7d9c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.py index 393d057badf..22d784e834b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.pyi index 0e4501084fe..38c29b4319e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py index 644da696785..fe12b5a954f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.py index 45800391c06..4b154e02ca8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.pyi index 456b54604f3..af68c36d618 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/response_for_200/__init__.py index e23f0c8164c..1736b93b1d8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.py index 45dad557855..a2441e8f5ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.pyi index 550650b182d..b29d07ec6ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/response_for_200/__init__.py index 872ecd6cac3..9751d0c1e5c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.py index b2aa67d60ae..fec8b66e6b0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.pyi index f7890394dde..9f75894f5db 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/response_for_200/__init__.py index 3beb5335e36..52b1c68219e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.py index 3a389aa4f98..86e22e20f0d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.pyi index 85a8919d0d4..2a089289858 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/response_for_200/__init__.py index 496b0a2dc9b..2f9dd67183d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.py index b5fe89d0130..9f1752c0e98 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.pyi index 651906cefa1..6b0bf756638 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/response_for_200/__init__.py index c19b8c99fa9..c03c0b0390d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.py index 51169875bf5..fbdbbebf95e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.pyi index 089c31cedf2..b6fd45e2fd8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/response_for_200/__init__.py index c101870f55a..36fa6e87ca9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.py index cdb7da82b99..1f5fbb676ac 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.pyi index dc8c9688845..47e705f8ae1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/response_for_200/__init__.py index 2a358e3749e..6d52e5b5911 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.py index d88aa3f1ade..85220589fc1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.pyi index 19afc387aa9..d818c27cbee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/response_for_200/__init__.py index 66ac14999db..30f3e08c251 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.py index a06dee664fa..f8b88870d34 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.pyi index d107980b50e..9b0852a13d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/response_for_200/__init__.py index 31b74876a20..e9a22e6ae28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.py index 03b1c2f3ef8..daa9403c190 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.pyi index ed4a5a2fa5a..feb7dd5a258 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/response_for_200/__init__.py index 6b36a6ac7c3..3b5b9978521 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.py index 7e4ab929fc3..da78762ecd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.pyi index 827aa2d17b2..72a2a7f0415 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/response_for_200/__init__.py index cefbee96515..dd0b7ecffad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.py index d8910ec991c..dda95d297c2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.pyi index fea9803fe09..d1f0c5dbb0f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/response_for_200/__init__.py index 220832e8aca..2ff5e8024ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.py index d18d59477a9..63352fb7588 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.pyi index bcc0cab5481..baf4b47cbf8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/response_for_200/__init__.py index 7be6ad08f41..7754e8e42b0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.py index 1870b5053f8..8b12a2f5b78 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.pyi index dde95fd5cc9..5cc671847e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/response_for_200/__init__.py index f6e715fdbc6..15a3889ef34 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.py index 23d197760bc..7f8be647b3c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.pyi index f4b1884f972..ec761ecd160 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/response_for_200/__init__.py index 684dab8a1f2..f1f8654b464 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.py index 9a768386bee..e961b945d8e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.pyi index 542d294d3a8..d8db07b42ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/response_for_200/__init__.py index ade5081e18f..7679e49b504 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.py index a149968c0ae..af3a2bbd676 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.pyi index f08da941e22..4a6cc99c8e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/response_for_200/__init__.py index 92a54307d58..26fc7eb90ea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.py index fda1d956aca..feb429c5c86 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.pyi index 57a9f99a5e0..d61a14c72be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/response_for_200/__init__.py index 1cbdbd4870d..e63426ff7d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.py index 6521b344ed5..bf535ac331c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.pyi index 7d8b061b36e..0b60ad20f42 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/response_for_200/__init__.py index a22d9bbc9b3..bd7d0e5a894 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.py index e2bbbb2a979..1e1ab1ff98f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.pyi index 782af8717de..1e5c20e22ff 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/response_for_200/__init__.py index 383a7edb219..50ddc35d0ad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.py index d3df1d2ee34..1a73312706a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.pyi index 61dcbdf6d70..bc04458c874 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/response_for_200/__init__.py index ac7130150dd..4ec83bb64b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.py index ee1ffdc4e98..5eed2938616 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.pyi index cb2a736a976..1397fb2ad32 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/response_for_200/__init__.py index 9d6c661d39f..67821006638 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py index 6fcc50e4d58..44df2911cf8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi index 5b20afd0c2c..f4f3a8934d7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py index 1f32355f8d2..d336c22669f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py index a51fc9606f4..1ef0db72954 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi index ab89be4469b..ef244c9159a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py index ee1c5c500e3..87e7b237612 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.py index cfd6e03a2de..b8ad9dd021f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.pyi index d8b557c46c4..15ac51ae5d7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/response_for_200/__init__.py index 32649e87938..b80988f4daa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py index 06bf8a74bff..75ca3024985 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi index 48b83907fde..279e439bc36 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py index 19719dddbad..95e556af8e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.py index fb1eab65c86..8fc435cf676 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.pyi index 90026f9156d..3af7853aa76 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/response_for_200/__init__.py index 7a7f72cd6d7..988f5d27cf6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.py index cfffc962969..85b28e62df6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.pyi index 96219cf09fa..986344112d9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/response_for_200/__init__.py index 366bf377aff..0a6f51c015e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.py index d3213a6451a..b12c9b7d6d9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.pyi index 38149ed7c86..e1624a2642b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/response_for_200/__init__.py index 17e4ecf48c1..6788a75cacc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.py index d451f22df05..66e5bf12416 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.pyi index f8294b24fd6..9790e3c14a8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/response_for_200/__init__.py index aeeb80943e3..8557b098456 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.py index af9e2a99465..4fbec1ecdd0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.pyi index f04a1737803..fc34ec0fbe7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/response_for_200/__init__.py index 7b631bd9df6..e722f31b012 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.py index 000d117b5fa..fe2b4664ae3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.pyi index 4bf07caeee8..18dce986127 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/response_for_200/__init__.py index 975a8bce9dd..e190bc01716 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.py index 5ce33d5d9bc..e8f3202a22a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.pyi index 8cc5909dd9e..1ecf7ac9bd9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/response_for_200/__init__.py index 3e345238006..5850f695e88 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.py index 14c5e59faf4..b04788151bf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.pyi index ba407db80c9..1372c89f653 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/response_for_200/__init__.py index 5f16a96b2c9..7a52f37053f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.py index b577074ab50..ffd4e7c55f8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.pyi index 3a934528e32..c3824102f63 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/response_for_200/__init__.py index d5cab78850b..3e4931b886c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.py index 176a957c35d..1aff8592d4c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.pyi index ffd4c5ae47f..dcb1261886e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py index a1c3fb22c39..25ebf80c494 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.py index cf36226a551..0bd24f2a13c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.pyi index 2a04e08937d..be5209b1546 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py index e8459ea19dc..1ccebc8da1a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.py index 803493409f1..a4aa0e53872 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.pyi index aed8f4f15bd..4e05ec666ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/response_for_200/__init__.py index f7b0a8dce5a..e6ac8e18e8b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.py index 6f341544c0d..4e03eecc9de 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.pyi index 085c9d4c762..e99a5b048a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/response_for_200/__init__.py index 19495782b7c..90a904fe70f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.py index a8b9833d122..e32cbc25783 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.pyi index de80e502361..8fc9f83c233 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/response_for_200/__init__.py index 7a8c32fc7fc..787bdac1ad8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.py index 8b3056ee283..5847e0ed306 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.pyi index 33e5999af55..1063d498acc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py index e84f6a64885..1f6b4af9307 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.py index 79f7df66362..3ef96f2779e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.pyi index 77c1181c5e0..05870862eaa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/response_for_200/__init__.py index 8204a72d3d1..e893d2af50a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.py index b2381f9192b..715d56afe80 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.pyi index e9e81a857e5..e114dc01f23 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/response_for_200/__init__.py index 1d2dec5cb30..32a401f9a30 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.py index e91a4a33f95..6560d9efd61 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.pyi index 391122d30ed..982b657ad45 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/response_for_200/__init__.py index 56815fcb0ed..907b331f935 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.py index fb330332da5..c7389074c22 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.pyi index 80794f84f50..f48931d0ed7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/response_for_200/__init__.py index 70361fc6943..1d66cbebba6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.py index c9a139dcd56..2a81d90d44f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.pyi index 237346efceb..ce3244fa6bf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/response_for_200/__init__.py index 7b5069cb26a..173284ad369 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.py index f26f1366b3b..105dabd8f19 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.pyi index b5011175ff5..1076808a7ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/response_for_200/__init__.py index 10eaaf7b48b..2e48dea71a1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.py index 0db7f691baa..5cb1c3e6f6e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.pyi index 7b3f45cda81..ef839759c80 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/response_for_200/__init__.py index 4553c6752d7..11884c6d3e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.py index 3d70d7d112f..001a4bb36ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.pyi index a4793663a02..0f4142d016a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/response_for_200/__init__.py index 557ac69dcee..a5cbf4c2f3b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.py index 102e546b8a4..7dfe6e3f08e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.pyi index e76f52ae788..2d34d20afea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/response_for_200/__init__.py index fd889427565..7516a5c8ce3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.py index 7741589e7ee..a925fff2120 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.pyi index 58d4ee9a9b1..f07d27cbb7c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/response_for_200/__init__.py index c458a7e9a19..8f087f48266 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.py index f67274b1f22..a04b1f04f49 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.pyi index bc9f9596fc2..4500c56f650 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/response_for_200/__init__.py index faa86768b0f..e0403b60824 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.py index 653e7c00941..fb7f8999ab5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.pyi index 908c6ed5162..1f9440dbd56 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py index 626739c5417..5216ece6101 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.py index 073e9fffd76..7936a8ea2ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.pyi index 2a228469ade..4e9caefec67 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/response_for_200/__init__.py index e5bac443c86..d570098c24d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.py index 66b6f72ed72..ed2d72c6a21 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.pyi index e2e6b109121..f2918f9959e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/response_for_200/__init__.py index a9b9560e61f..ade3e28f2dd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.py index 3b83496d51b..26b7481eff8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.pyi index ea3d1bb621f..8d6f805f588 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/response_for_200/__init__.py index a2cd53ad428..727cd278add 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.py index 854432e9edc..59ca0c13f28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.pyi index cfba61c97d6..6a14b0aee6a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/response_for_200/__init__.py index 975e6c550d4..e7f42c288e2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.py index d0dda6c701c..6c77b2a9922 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.pyi index d61521dc985..46900ec08a7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/response_for_200/__init__.py index 078de0d13c1..56382cdc0cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.py index dc565aff091..faa0b01b370 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.pyi index 074db1c5b39..40f7e0b1910 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/response_for_200/__init__.py index f37cd9e3706..b6183f3095a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.py index c1d6469cf54..247c6868f13 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.pyi index bbaf6d83418..cc896c64ba4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/response_for_200/__init__.py index df8f875dcbe..cb378643743 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.py index 9cccfad769c..c9fff509f8d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.pyi index a8b5dbbd81c..fca54893123 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from unit_test_api import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/response_for_200/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/response_for_200/__init__.py index 65a5971abf7..8161b24378a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/response_for_200/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/schemas.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/schemas.py index 6d2698990d9..31554fd76c6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/schemas.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/schemas.py @@ -9,8 +9,8 @@ Generated by: https://openapi-generator.tech """ -from collections import defaultdict -from datetime import date, datetime, timedelta # noqa: F401 +import collections +import datetime import functools import decimal import io @@ -19,16 +19,12 @@ import typing import uuid -from dateutil.parser.isoparser import isoparser, _takes_ascii +from dateutil import parser +from dateutil.parser.isoparser import _takes_ascii import frozendict -from unit_test_api.exceptions import ( - ApiTypeError, - ApiValueError, -) -from unit_test_api.configuration import ( - Configuration, -) +from unit_test_api import exceptions +from unit_test_api import configuration as configuration_module class Unset(object): @@ -53,12 +49,12 @@ class FileIO(io.FileIO): def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader]): if isinstance(_arg, (io.FileIO, io.BufferedReader)): if _arg.closed: - raise ApiValueError('Invalid file state; file is closed and must be open') + raise exceptions.ApiValueError('Invalid file state; file is closed and must be open') _arg.close() inst = super(FileIO, cls).__new__(cls, _arg.name) super(FileIO, inst).__init__(_arg.name) return inst - raise ApiValueError('FileIO must be passed _arg which contains the open file') + raise exceptions.ApiValueError('FileIO must be passed _arg which contains the open file') def __init__(self, _arg: typing.Union[io.FileIO, io.BufferedReader]): pass @@ -67,7 +63,7 @@ def __init__(self, _arg: typing.Union[io.FileIO, io.BufferedReader]): def update(d: dict, u: dict): """ Adds u to d - Where each dict is defaultdict(set) + Where each dict is collections.defaultdict(set) """ if not u: return d @@ -85,7 +81,7 @@ class ValidationMetadata(frozendict.frozendict): def __new__( cls, path_to_item: typing.Tuple[typing.Union[str, int], ...], - configuration: Configuration, + configuration: configuration_module.Configuration, seen_classes: typing.FrozenSet[typing.Type] = frozenset(), validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Type]] = frozendict.frozendict() ): @@ -94,8 +90,8 @@ def __new__( path_to_item: the path to the current data being instantiated. For {'a': [1]} if the code is handling, 1, then the path is ('args[0]', 'a', 0) This changes from location to location - configuration: the Configuration instance to use - This is needed because in Configuration: + configuration: the configuration_module.Configuration instance to use + This is needed because in configuration_module.Configuration: - one can disable validation checking This does not change from location to location seen_classes: when deserializing data that matches multiple schemas, this is used to store @@ -126,7 +122,7 @@ def path_to_item(self) -> typing.Tuple[typing.Union[str, int], ...]: return self['path_to_item'] @property - def configuration(self) -> Configuration: + def configuration(self) -> configuration_module.Configuration: return self['configuration'] @property @@ -294,7 +290,7 @@ def __get_type_error(var_value, path_to_item, valid_classes, key_type=False): valid_classes=valid_classes, key_type=key_type, ) - return ApiTypeError( + return exceptions.ApiTypeError( error_msg, path_to_item=path_to_item, valid_classes=valid_classes, @@ -324,12 +320,12 @@ def validate_enum( validation_metadata: ValidationMetadata, ) -> None: if arg not in enum_value_to_name: - raise ApiValueError("Invalid value {} passed in to {}, allowed_values={}".format(arg, cls, enum_value_to_name.keys())) + raise exceptions.ApiValueError("Invalid value {} passed in to {}, allowed_values={}".format(arg, cls, enum_value_to_name.keys())) return None def _raise_validation_error_message_oapg(value, constraint_msg, constraint_value, path_to_item, additional_txt=""): - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value `{value}`, {constraint_msg} `{constraint_value}`{additional_txt} at {path_to_item}".format( value=value, constraint_msg=constraint_msg, @@ -602,20 +598,20 @@ def __validate_numeric_format( if format[:3] == 'int': # there is a json schema test where 1.0 validates as an integer if arg != int(arg): - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid non-integer value '{}' for type {} at {}".format( arg, format, validation_metadata.path_to_item ) ) if format == 'int32': if not __int32_inclusive_minimum <= arg <= __int32_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type int32 at {}".format(arg, validation_metadata.path_to_item) ) return None elif format == 'int64': if not __int64_inclusive_minimum <= arg <= __int64_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type int64 at {}".format(arg, validation_metadata.path_to_item) ) return None @@ -623,21 +619,20 @@ def __validate_numeric_format( elif format in {'float', 'double'}: if format == 'float': if not __float_inclusive_minimum <= arg <= __float_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type float at {}".format(arg, validation_metadata.path_to_item) ) return None # double if not __double_inclusive_minimum <= arg <= __double_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type double at {}".format(arg, validation_metadata.path_to_item) ) return None return None -class CustomIsoparser(isoparser): - +class CustomIsoparser(parser.isoparser): @_takes_ascii def parse_isodatetime(self, dt_str): components, pos = self._parse_isodate(dt_str) @@ -649,12 +644,12 @@ def parse_isodatetime(self, dt_str): if len(components) > 3 and components[3] == 24: components[3] = 0 - return datetime(*components) + timedelta(days=1) + return datetime.datetime(*components) + datetime.timedelta(days=1) if len(components) <= 3: raise ValueError('Value is not a datetime') - return datetime(*components) + return datetime.datetime(*components) @_takes_ascii def parse_isodate(self, datestr): @@ -666,7 +661,7 @@ def parse_isodate(self, datestr): if len(components) > 3: raise ValueError('String contains invalid time components') - return date(*components) + return datetime.date(*components) DEFAULT_ISOPARSER = CustomIsoparser() @@ -682,7 +677,7 @@ def __validate_string_format( uuid.UUID(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type UUID at {}".format(arg, validation_metadata.path_to_item) ) elif format == 'number': @@ -690,7 +685,7 @@ def __validate_string_format( decimal.Decimal(arg) return None except decimal.InvalidOperation: - raise ApiValueError( + raise exceptions.ApiValueError( "Value cannot be converted to a decimal. " "Invalid value '{}' for type decimal at {}".format(arg, validation_metadata.path_to_item) ) @@ -699,7 +694,7 @@ def __validate_string_format( DEFAULT_ISOPARSER.parse_isodate(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Value does not conform to the required ISO-8601 date format. " "Invalid value '{}' for type date at {}".format(arg, validation_metadata.path_to_item) ) @@ -708,7 +703,7 @@ def __validate_string_format( DEFAULT_ISOPARSER.parse_isodatetime(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Value does not conform to the required ISO-8601 datetime format. " "Invalid value '{}' for type datetime at {}".format(arg, validation_metadata.path_to_item) ) @@ -749,7 +744,7 @@ def validate_required( if missing_required_arguments: missing_required_arguments = list(missing_required_arguments) missing_required_arguments.sort() - raise ApiTypeError( + raise exceptions.ApiTypeError( "{} is missing {} required argument{}: {}".format( cls.__name__, len(missing_required_arguments), @@ -856,7 +851,7 @@ def validate_one_of( validation_metadata: ValidationMetadata, ) -> PathToSchemasType: oneof_classes = [] - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for one_of_cls in one_of_container_cls.classes: schema = _get_class_oapg(one_of_cls) if schema in path_to_schemas[validation_metadata.path_to_item]: @@ -875,17 +870,17 @@ def validate_one_of( continue try: path_to_schemas = schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError) as ex: + except (exceptions.ApiValueError, exceptions.ApiTypeError) as ex: # silence exceptions because the code needs to accumulate oneof_classes continue oneof_classes.append(schema) if not oneof_classes: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. None " "of the oneOf schemas matched the input data.".format(cls) ) elif len(oneof_classes) > 1: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. Multiple " "oneOf schemas {} matched the inputs, but a max of one is allowed.".format(cls, oneof_classes) ) @@ -900,7 +895,7 @@ def validate_any_of( validation_metadata: ValidationMetadata, ) -> PathToSchemasType: anyof_classes = [] - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for any_of_cls in any_of_container_cls.classes: schema = _get_class_oapg(any_of_cls) if schema is cls: @@ -917,13 +912,13 @@ def validate_any_of( try: other_path_to_schemas = schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError) as ex: + except (exceptions.ApiValueError, exceptions.ApiTypeError) as ex: # silence exceptions because the code needs to accumulate anyof_classes continue anyof_classes.append(schema) update(path_to_schemas, other_path_to_schemas) if not anyof_classes: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. None " "of the anyOf schemas matched the input data.".format(cls) ) @@ -936,7 +931,7 @@ def validate_all_of( cls: typing.Type, validation_metadata: ValidationMetadata, ) -> PathToSchemasType: - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for allof_cls in all_of_cls.classes: schema = _get_class_oapg(allof_cls) if schema is cls: @@ -961,7 +956,7 @@ def validate_not( ) -> None: not_schema = _get_class_oapg(not_cls) other_path_to_schemas = None - not_exception = ApiValueError( + not_exception = exceptions.ApiValueError( "Invalid value '{}' was passed in to {}. Value is invalid because it is disallowed by {}".format( arg, cls.__name__, @@ -973,7 +968,7 @@ def validate_not( try: other_path_to_schemas = not_schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError): + except (exceptions.ApiValueError, exceptions.ApiTypeError): pass if other_path_to_schemas: raise not_exception @@ -987,7 +982,7 @@ def __ensure_discriminator_value_present( ): if disc_property_name not in arg: # The input data does not contain the discriminator property - raise ApiValueError( + raise exceptions.ApiValueError( "Cannot deserialize input data due to missing discriminator. " "The discriminator property '{}' is missing at path: {}".format(disc_property_name, validation_metadata.path_to_item) ) @@ -1051,7 +1046,7 @@ def validate_discriminator( cls, disc_property_name=disc_prop_name, disc_payload_value=arg[disc_prop_name] ) if discriminated_cls is None: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid discriminator value was passed in to {}.{} Only the values {} are allowed at {}".format( cls.__name__, disc_prop_name, @@ -1284,7 +1279,7 @@ def _get_new_instance_without_conversion_oapg( items = cls._get_items_oapg(arg, path_to_item, path_to_schemas) return super(Schema, cls).__new__(cls, items) """ - str = openapi str, date, and datetime + str = openapi str, datetime.date, and datetime.datetime decimal.Decimal = openapi int and float FileIO = openapi binary type and the user inputs a file bytes = openapi binary type and the user inputs bytes @@ -1306,7 +1301,7 @@ def from_openapi_data_oapg( io.BufferedReader, bytes ], - _configuration: typing.Optional[Configuration] = None + _configuration: typing.Optional[configuration_module.Configuration] = None ): """ Schema from_openapi_data_oapg @@ -1317,7 +1312,7 @@ def from_openapi_data_oapg( arg = cast_to_allowed_types(arg, from_server, validated_path_to_schemas, ('args[0]',), path_to_type) validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or Configuration(), + configuration=_configuration or configuration_module.Configuration(), validated_path_to_schemas=frozendict.frozendict(validated_path_to_schemas) ) path_to_schemas = cls.__get_new_cls(arg, validation_metadata, path_to_type) @@ -1353,13 +1348,16 @@ def __new__( float, int, str, - date, - datetime, + datetime.date, + datetime.datetime, + uuid.UUID, bool, None, - 'Schema' - ], - _configuration: typing.Optional[Configuration] = None, + bytes, + io.FileIO, + io.BufferedReader, + 'Schema', ], + _configuration: typing.Optional[configuration_module.Configuration] = None, **kwargs: typing.Union[ dict, frozendict.frozendict, @@ -1369,12 +1367,15 @@ def __new__( float, int, str, - date, - datetime, + datetime.date, + datetime.datetime, + uuid.UUID, bool, None, - 'Schema', - Unset + bytes, + io.FileIO, + io.BufferedReader, + 'Schema', Unset ] ): """ @@ -1383,7 +1384,7 @@ def __new__( Args: _args (int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): the value kwargs (str, int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): dict values - _configuration: contains the Configuration that enables json schema validation keywords + _configuration: contains the configuration_module.Configuration that enables json schema validation keywords like minItems, minLength etc Note: double underscores are used here because pycharm thinks that these variables @@ -1405,7 +1406,7 @@ def __new__( __arg, __from_server, __validated_path_to_schemas, ('args[0]',), __path_to_type) __validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or Configuration(), + configuration=_configuration or configuration_module.Configuration(), validated_path_to_schemas=frozendict.frozendict(__validated_path_to_schemas) ) __path_to_schemas = cls.__get_new_cls(__arg, __validation_metadata, __path_to_type) @@ -1419,10 +1420,10 @@ def __new__( def __init__( self, *_args: typing.Union[ - dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, 'Schema'], - _configuration: typing.Optional[Configuration] = None, + dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema'], + _configuration: typing.Optional[configuration_module.Configuration] = None, **kwargs: typing.Union[ - dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, 'Schema', Unset + dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema', Unset ] ): """ @@ -1769,11 +1770,11 @@ def as_str_oapg(self) -> str: return self @property - def as_date_oapg(self) -> date: + def as_date_oapg(self) -> datetime.date: raise Exception('not implemented') @property - def as_datetime_oapg(self) -> datetime: + def as_datetime_oapg(self) -> datetime.datetime: raise Exception('not implemented') @property @@ -1795,14 +1796,14 @@ def as_uuid_oapg(self) -> uuid.UUID: class DateBase: @property @functools.lru_cache() - def as_date_oapg(self) -> date: + def as_date_oapg(self) -> datetime.date: return DEFAULT_ISOPARSER.parse_isodate(self) class DateTimeBase: @property @functools.lru_cache() - def as_datetime_oapg(self) -> datetime: + def as_datetime_oapg(self) -> datetime.datetime: return DEFAULT_ISOPARSER.parse_isodatetime(self) @@ -1838,7 +1839,7 @@ def as_int_oapg(self) -> int: if self.as_tuple().exponent < 0: # this could be represented as an integer but should be represented as a float # because that's what it was serialized from - raise ApiValueError(f'{self} is not an integer') + raise exceptions.ApiValueError(f'{self} is not an integer') self._as_int = int(self) return self._as_int @@ -1848,7 +1849,7 @@ def as_float_oapg(self) -> float: return self._as_float except AttributeError: if self.as_tuple().exponent >= 0: - raise ApiValueError(f'{self} is not a float') + raise exceptions.ApiValueError(f'{self} is not a float') self._as_float = float(self) return self._as_float @@ -1938,12 +1939,37 @@ def get_item_oapg(self, name: str) -> typing.Union['AnyTypeSchema', Unset]: def cast_to_allowed_types( - arg: typing.Union[str, date, datetime, uuid.UUID, decimal.Decimal, int, float, None, dict, frozendict.frozendict, list, tuple, bytes, Schema, io.FileIO, io.BufferedReader], + arg: typing.Union[ + dict, + frozendict.frozendict, + list, + tuple, + decimal.Decimal, + float, + int, + str, + datetime.date, + datetime.datetime, + uuid.UUID, + bool, + None, + bytes, + io.FileIO, + io.BufferedReader, + 'Schema', ], from_server: bool, validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Union['Schema', str, decimal.Decimal, BoolClass, NoneClass, frozendict.frozendict, tuple]]], path_to_item: typing.Tuple[typing.Union[str, int], ...], path_to_type: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Type] -) -> typing.Union[frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO]: +) -> typing.Union[ + frozendict.frozendict, + tuple, + decimal.Decimal, + str, + bytes, + BoolClass, + NoneClass, + FileIO]: """ Casts the input payload arg into the allowed types The input validated_path_to_schemas is mutated by running this function @@ -1977,7 +2003,7 @@ def cast_to_allowed_types( schema_classes.add(cls) validated_path_to_schemas[path_to_item] = schema_classes - type_error = ApiTypeError(f"Invalid type. Required value type is str and passed type was {type(arg)} at {path_to_item}") + type_error = exceptions.ApiTypeError(f"Invalid type. Required value type is str and passed type was {type(arg)} at {path_to_item}") if isinstance(arg, str): path_to_type[path_to_item] = str return str(arg) @@ -2032,7 +2058,7 @@ def cast_to_allowed_types( elif isinstance(arg, (none_type, NoneClass)): path_to_type[path_to_item] = NoneClass return NoneClass.NONE - elif isinstance(arg, (date, datetime)): + elif isinstance(arg, (datetime.date, datetime.datetime)): path_to_type[path_to_item] = str if not from_server: return arg.isoformat() @@ -2063,10 +2089,10 @@ class MetaOapg: types = {tuple} @classmethod - def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2079,10 +2105,10 @@ class MetaOapg: types = {NoneClass} @classmethod - def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: None, **kwargs: Configuration): + def __new__(cls, _arg: None, **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2099,10 +2125,10 @@ class MetaOapg: types = {decimal.Decimal} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2122,10 +2148,10 @@ class MetaOapg: format = 'int' @classmethod - def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2153,7 +2179,7 @@ class MetaOapg: format = 'float' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2165,7 +2191,7 @@ class MetaOapg: format = 'double' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2184,10 +2210,10 @@ class MetaOapg: types = {str} @classmethod - def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[Configuration] = None) -> 'StrSchema': + def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[configuration_module.Configuration] = None) -> 'StrSchema': return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[str, date, datetime, uuid.UUID], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2196,7 +2222,7 @@ class MetaOapg: types = {str} format = 'uuid' - def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2205,7 +2231,7 @@ class MetaOapg: types = {str} format = 'date' - def __new__(cls, _arg: typing.Union[str, date], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2214,7 +2240,7 @@ class MetaOapg: types = {str} format = 'date-time' - def __new__(cls, _arg: typing.Union[str, datetime], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2223,7 +2249,7 @@ class MetaOapg: types = {str} format = 'number' - def __new__(cls, _arg: str, **kwargs: Configuration): + def __new__(cls, _arg: str, **kwargs: configuration_module.Configuration): """ Note: Decimals may not be passed in because cast_to_allowed_types is only invoked once for payloads which can be simple (str) or complex (dicts or lists with nested values) @@ -2245,7 +2271,7 @@ class BytesSchema( class MetaOapg: types = {bytes} - def __new__(cls, _arg: bytes, **kwargs: Configuration): + def __new__(cls, _arg: bytes, **kwargs: configuration_module.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2272,7 +2298,7 @@ class FileSchema( class MetaOapg: types = {FileIO} - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: configuration_module.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2290,7 +2316,7 @@ class OneOf: FileSchema, ] - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg) @@ -2303,7 +2329,7 @@ class MetaOapg: types = {BoolClass} @classmethod - def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) def __new__(cls, _arg: bool, **kwargs: ValidationMetadata): @@ -2343,7 +2369,7 @@ class MetaOapg: def __new__( cls, *_args, - _configuration: typing.Optional[Configuration] = None, + _configuration: typing.Optional[configuration_module.Configuration] = None, ) -> 'NotAnyTypeSchema': return super().__new__( cls, @@ -2361,10 +2387,10 @@ class MetaOapg: types = {frozendict.frozendict} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): + def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): return super().__new__(cls, *_args, **kwargs) diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/operator.Operator.md b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/operator.Operator.md index 7b4d11b6165..eba9af20c66 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/operator.Operator.md +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/operator.Operator.md @@ -5,7 +5,7 @@ ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | +dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/api_client.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/api_client.py index 26d22adefb9..3e926e1a84d 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/api_client.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/api_client.py @@ -8,44 +8,31 @@ Generated by: https://openapi-generator.tech """ +import datetime import dataclasses -from decimal import Decimal +import decimal import enum import email import json import os import io import atexit -from multiprocessing.pool import ThreadPool +from multiprocessing import pool import re import tempfile import typing import typing_extensions +from urllib import parse import urllib3 -from urllib3._collections import HTTPHeaderDict -from urllib.parse import urlparse, quote -from urllib3.fields import RequestField as RequestFieldBase +from urllib3 import _collections, fields import frozendict -from this_package import rest -from this_package.configuration import Configuration -from this_package.exceptions import ApiTypeError, ApiValueError -from this_package.schemas import ( - NoneClass, - BoolClass, - Schema, - FileIO, - BinarySchema, - date, - datetime, - none_type, - Unset, - unset, -) - - -class RequestField(RequestFieldBase): +from this_package import exceptions, rest, schemas +from this_package import configuration as configuration_module + + +class RequestField(fields.RequestField): def __eq__(self, other): if not isinstance(other, RequestField): return False @@ -62,19 +49,19 @@ def default(self, obj): return float(obj) elif isinstance(obj, int): return int(obj) - elif isinstance(obj, Decimal): + elif isinstance(obj, decimal.Decimal): if obj.as_tuple().exponent >= 0: return int(obj) return float(obj) - elif isinstance(obj, NoneClass): + elif isinstance(obj, schemas.NoneClass): return None - elif isinstance(obj, BoolClass): + elif isinstance(obj, schemas.BoolClass): return bool(obj) elif isinstance(obj, (dict, frozendict.frozendict)): return {key: self.default(val) for key, val in obj.items()} elif isinstance(obj, (list, tuple)): return [self.default(item) for item in obj] - raise ApiValueError('Unable to prepare type {} for serialization'.format(obj.__class__.__name__)) + raise exceptions.ApiValueError('Unable to prepare type {} for serialization'.format(obj.__class__.__name__)) class ParameterInType(enum.Enum): @@ -131,9 +118,9 @@ def __ref6570_item_value(in_data: typing.Any, percent_encode: bool): """ if type(in_data) in {str, float, int}: if percent_encode: - return quote(str(in_data)) + return parse.quote(str(in_data)) return str(in_data) - elif isinstance(in_data, none_type): + elif isinstance(in_data, schemas.none_type): # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return None elif isinstance(in_data, list) and not in_data: @@ -142,7 +129,7 @@ def __ref6570_item_value(in_data: typing.Any, percent_encode: bool): elif isinstance(in_data, dict) and not in_data: # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return None - raise ApiValueError('Unable to generate a ref6570 item representation of {}'.format(in_data)) + raise exceptions.ApiValueError('Unable to generate a ref6570 item representation of {}'.format(in_data)) @staticmethod def _to_dict(name: str, value: str): @@ -250,7 +237,7 @@ def _ref6570_expansion( var_name_piece, named_parameter_expansion ) - elif isinstance(in_data, none_type): + elif isinstance(in_data, schemas.none_type): # ignored by the expansion process https://datatracker.ietf.org/doc/html/rfc6570#section-3.2.1 return "" elif isinstance(in_data, list): @@ -274,7 +261,7 @@ def _ref6570_expansion( named_parameter_expansion ) # bool, bytes, etc - raise ApiValueError('Unable to generate a ref6570 representation of {}'.format(in_data)) + raise exceptions.ApiValueError('Unable to generate a ref6570 representation of {}'.format(in_data)) class StyleFormSerializer(ParameterSerializerBase): @@ -355,8 +342,8 @@ class ParameterBase(JSONDetector): style: typing.Optional[ParameterStyle] explode: typing.Optional[bool] allow_reserved: typing.Optional[bool] - schema: typing.Optional[typing.Type[Schema]] - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] + schema: typing.Optional[typing.Type[schemas.Schema]] + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] _json_encoder = JSONEncoder() @@ -385,8 +372,8 @@ class PathParameter(ParameterBase, StyleSimpleSerializer): style: ParameterStyle = ParameterStyle.SIMPLE explode: bool = False allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def __serialize_label( @@ -435,7 +422,7 @@ def __serialize_simple( def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -473,8 +460,8 @@ class QueryParameter(ParameterBase, StyleFormSerializer): style: ParameterStyle = ParameterStyle.FORM explode: typing.Optional[bool] = None allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def __serialize_space_delimited( @@ -540,7 +527,7 @@ def get_prefix_separator_iterator(cls) -> typing.Optional[PrefixSeparatorIterato def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict], + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], prefix_separator_iterator: typing.Optional[PrefixSeparatorIterator] = None ) -> typing.Dict[str, str]: if cls.schema: @@ -577,7 +564,7 @@ def serialize( value = cls._serialize_json(cast_in_data, eliminate_whitespace=True) return cls._to_dict( cls.name, - next(prefix_separator_iterator) + cls.name + '=' + quote(value) + next(prefix_separator_iterator) + cls.name + '=' + parse.quote(value) ) raise NotImplementedError('Serialization of {} has not yet been implemented'.format(content_type)) @@ -589,14 +576,14 @@ class CookieParameter(ParameterBase, StyleFormSerializer): in_type: ParameterInType = ParameterInType.COOKIE explode: typing.Optional[bool] = None allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @classmethod def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] ) -> typing.Dict[str, str]: if cls.schema: cast_in_data = cls.schema(in_data) @@ -634,13 +621,13 @@ class HeaderParameterWithoutName(ParameterBase, StyleSimpleSerializer): in_type: ParameterInType = ParameterInType.HEADER explode: bool = False allow_reserved: typing.Optional[bool] = None - schema: typing.Optional[typing.Type[Schema]] = None - content: typing.Optional[typing.Dict[str, typing.Type[Schema]]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None + content: typing.Optional[typing.Dict[str, typing.Type[schemas.Schema]]] = None @staticmethod - def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> HTTPHeaderDict: + def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> _collections.HTTPHeaderDict: data = tuple(t for t in in_data if t) - headers = HTTPHeaderDict() + headers = _collections.HTTPHeaderDict() if not data: return headers headers.extend(data) @@ -650,9 +637,9 @@ def __to_headers(in_data: typing.Tuple[typing.Tuple[str, str], ...]) -> HTTPHead def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict], + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict], name: str - ) -> HTTPHeaderDict: + ) -> _collections.HTTPHeaderDict: if cls.schema: cast_in_data = cls.schema(in_data) cast_in_data = cls._json_encoder.default(cast_in_data) @@ -678,7 +665,7 @@ def deserialize( cls, in_data: str, name: str - ) -> Schema: + ) -> schemas.Schema: if cls.schema: """ simple -> header @@ -703,8 +690,8 @@ class HeaderParameter(HeaderParameterWithoutName): def serialize( cls, in_data: typing.Union[ - Schema, Decimal, int, float, str, date, datetime, None, bool, list, tuple, dict, frozendict.frozendict] - ) -> HTTPHeaderDict: + schemas.Schema, decimal.Decimal, int, float, str, datetime.date, datetime.datetime, None, bool, list, tuple, dict, frozendict.frozendict] + ) -> _collections.HTTPHeaderDict: return super().serialize( in_data, cls.name @@ -737,21 +724,21 @@ class MediaType: The encoding object SHALL only apply to requestBody objects when the media type is multipart or application/x-www-form-urlencoded. """ - schema: typing.Optional[typing.Type[Schema]] = None + schema: typing.Optional[typing.Type[schemas.Schema]] = None encoding: typing.Optional[typing.Dict[str, Encoding]] = None @dataclasses.dataclass class ApiResponse: response: urllib3.HTTPResponse - body: typing.Union[Unset, Schema] = unset - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset def __init__( self, response: urllib3.HTTPResponse, - body: typing.Union[Unset, Schema] = unset, - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset, + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset ): """ pycharm needs this to prevent 'Unexpected argument' warnings @@ -764,8 +751,8 @@ def __init__( @dataclasses.dataclass class ApiResponseWithoutDeserialization(ApiResponse): response: urllib3.HTTPResponse - body: typing.Union[Unset, Schema] = unset - headers: typing.Union[Unset, typing.Dict[str, Schema]] = unset + body: typing.Union[schemas.Unset, schemas.Schema] = schemas.unset + headers: typing.Union[schemas.Unset, typing.Dict[str, schemas.Schema]] = schemas.unset class TypedDictInputVerifier: @@ -775,7 +762,7 @@ def _verify_typed_dict_inputs_oapg(cls: typing.Type[typing_extensions.TypedDict] Ensures that: - required keys are present - additional properties are not input - - value stored under required keys do not have the value unset + - value stored under required keys do not have the value schemas.unset Note: detailed value checking is done in schema classes """ missing_required_keys = [] @@ -785,16 +772,16 @@ def _verify_typed_dict_inputs_oapg(cls: typing.Type[typing_extensions.TypedDict] missing_required_keys.append(required_key) continue value = data[required_key] - if value is unset: + if value is schemas.unset: required_keys_with_unset_values.append(required_key) if missing_required_keys: - raise ApiTypeError( + raise exceptions.ApiTypeError( '{} missing {} required arguments: {}'.format( cls.__name__, len(missing_required_keys), missing_required_keys ) ) if required_keys_with_unset_values: - raise ApiValueError( + raise exceptions.ApiValueError( '{} contains invalid unset values for {} required keys: {}'.format( cls.__name__, len(required_keys_with_unset_values), required_keys_with_unset_values ) @@ -806,7 +793,7 @@ def _verify_typed_dict_inputs_oapg(cls: typing.Type[typing_extensions.TypedDict] continue disallowed_additional_keys.append(key) if disallowed_additional_keys: - raise ApiTypeError( + raise exceptions.ApiTypeError( '{} got {} unexpected keyword arguments: {}'.format( cls.__name__, len(disallowed_additional_keys), disallowed_additional_keys ) @@ -832,7 +819,7 @@ def __deserialize_json(response: urllib3.HTTPResponse) -> typing.Any: def __file_name_from_response_url(response_url: typing.Optional[str]) -> typing.Optional[str]: if response_url is None: return None - url_path = urlparse(response_url).path + url_path = parse.urlparse(response_url).path if url_path: path_basename = os.path.basename(url_path) if path_basename: @@ -900,12 +887,12 @@ def __deserialize_multipart_form_data( } @classmethod - def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuration) -> T: + def deserialize(cls, response: urllib3.HTTPResponse, configuration: configuration_module.Configuration) -> T: content_type = response.getheader('content-type') - deserialized_body = unset + deserialized_body = schemas.unset streamed = response.supports_chunked_reads() - deserialized_headers = unset + deserialized_headers = schemas.unset if cls.headers is not None: cls._verify_typed_dict_inputs_oapg(cls.response_cls.headers, response.headers) deserialized_headers = {} @@ -918,7 +905,7 @@ def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuratio if cls.content is not None: if content_type not in cls.content: - raise ApiValueError( + raise exceptions.ApiValueError( f"Invalid content_type returned. Content_type='{content_type}' was returned " f"when only {str(set(cls.content))} are defined for status_code={str(response.status)}" ) @@ -928,7 +915,7 @@ def deserialize(cls, response: urllib3.HTTPResponse, configuration: Configuratio return cls.response_cls( response=response, headers=deserialized_headers, - body=unset + body=schemas.unset ) if cls._content_type_is_json(content_type): @@ -964,7 +951,7 @@ class ApiClient: Ref: https://openapi-generator.tech Do not edit the class manually. - :param configuration: .Configuration object for this client + :param configuration: configuration_module.Configuration object for this client :param header_name: a header to pass when making calls to the API. :param header_value: a header value to pass when making calls to the API. @@ -978,19 +965,19 @@ class ApiClient: def __init__( self, - configuration: typing.Optional[Configuration] = None, + configuration: typing.Optional[configuration_module.Configuration] = None, header_name: typing.Optional[str] = None, header_value: typing.Optional[str] = None, cookie: typing.Optional[str] = None, pool_threads: int = 1 ): if configuration is None: - configuration = Configuration() + configuration = configuration_module.Configuration() self.configuration = configuration self.pool_threads = pool_threads self.rest_client = rest.RESTClientObject(configuration) - self.default_headers = HTTPHeaderDict() + self.default_headers = _collections.HTTPHeaderDict() if header_name is not None: self.default_headers[header_name] = header_value self.cookie = cookie @@ -1018,7 +1005,7 @@ def pool(self): """ if self._pool is None: atexit.register(self.close) - self._pool = ThreadPool(self.pool_threads) + self._pool = pool.ThreadPool(self.pool_threads) return self._pool @property @@ -1037,7 +1024,7 @@ def __call_api( self, resource_path: str, method: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, body: typing.Optional[typing.Union[str, bytes]] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, auth_settings: typing.Optional[typing.List[str]] = None, @@ -1047,7 +1034,7 @@ def __call_api( ) -> urllib3.HTTPResponse: # header parameters - used_headers = HTTPHeaderDict(self.default_headers) + used_headers = _collections.HTTPHeaderDict(self.default_headers) if self.cookie: headers['Cookie'] = self.cookie @@ -1082,7 +1069,7 @@ def call_api( self, resource_path: str, method: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, body: typing.Optional[typing.Union[str, bytes]] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, auth_settings: typing.Optional[typing.List[str]] = None, @@ -1108,8 +1095,8 @@ def call_api( :param stream: if True, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Also when True, if the openapi spec describes a file download, - the data will be written to a local filesystme file and the BinarySchema - instance will also inherit from FileSchema and FileIO + the data will be written to a local filesystme file and the schemas.BinarySchema + instance will also inherit from FileSchema and schemas.FileIO Default is False. :type stream: bool, optional :param timeout: timeout setting for this request. If one @@ -1158,7 +1145,7 @@ def request( self, method: str, url: str, - headers: typing.Optional[HTTPHeaderDict] = None, + headers: typing.Optional[_collections.HTTPHeaderDict] = None, fields: typing.Optional[typing.Tuple[typing.Tuple[str, str], ...]] = None, body: typing.Optional[typing.Union[str, bytes]] = None, stream: bool = False, @@ -1210,7 +1197,7 @@ def request( timeout=timeout, body=body) else: - raise ApiValueError( + raise exceptions.ApiValueError( "http method must be `GET`, `HEAD`, `OPTIONS`," " `POST`, `PATCH`, `PUT` or `DELETE`." ) @@ -1243,9 +1230,9 @@ def update_params_for_auth(self, headers, auth_settings, need to pass in prefix_separator_iterator and need to output resource_path with query params added """ - raise ApiValueError("Auth in query not yet implemented") + raise exceptions.ApiValueError("Auth in query not yet implemented") else: - raise ApiValueError( + raise exceptions.ApiValueError( 'Authentication token must be in `query` or `header`' ) @@ -1284,7 +1271,7 @@ def _get_host_oapg( ) except IndexError: if servers: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid host index. Must be 0 <= index < %s" % len(servers) ) @@ -1300,7 +1287,7 @@ class SerializedRequestBody(typing_extensions.TypedDict, total=False): class RequestBody(StyleFormSerializer, JSONDetector): """ A request body parameter - content: content_type to MediaType Schema info + content: content_type to MediaType schemas.Schema info """ __json_encoder = JSONEncoder() content: typing.Dict[str, MediaType] @@ -1323,28 +1310,28 @@ def __serialize_text_plain(in_data: typing.Any) -> typing.Dict[str, str]: raise ValueError('Unable to serialize type frozendict.frozendict to text/plain') elif isinstance(in_data, tuple): raise ValueError('Unable to serialize type tuple to text/plain') - elif isinstance(in_data, NoneClass): + elif isinstance(in_data, schemas.NoneClass): raise ValueError('Unable to serialize type NoneClass to text/plain') - elif isinstance(in_data, BoolClass): + elif isinstance(in_data, schemas.BoolClass): raise ValueError('Unable to serialize type BoolClass to text/plain') return dict(body=str(in_data)) @classmethod - def __multipart_json_item(cls, key: str, value: Schema) -> RequestField: + def __multipart_json_item(cls, key: str, value: schemas.Schema) -> RequestField: json_value = cls.__json_encoder.default(value) request_field = RequestField(name=key, data=json.dumps(json_value)) request_field.make_multipart(content_type='application/json') return request_field @classmethod - def __multipart_form_item(cls, key: str, value: Schema) -> RequestField: + def __multipart_form_item(cls, key: str, value: schemas.Schema) -> RequestField: if isinstance(value, str): request_field = RequestField(name=key, data=str(value)) request_field.make_multipart(content_type='text/plain') elif isinstance(value, bytes): request_field = RequestField(name=key, data=value) request_field.make_multipart(content_type='application/octet-stream') - elif isinstance(value, FileIO): + elif isinstance(value, schemas.FileIO): # TODO use content.encoding to limit allowed content types if they are present request_field = RequestField.from_tuples(key, (os.path.basename(value.name), value.read())) value.close() @@ -1354,7 +1341,7 @@ def __multipart_form_item(cls, key: str, value: Schema) -> RequestField: @classmethod def __serialize_multipart_form_data( - cls, in_data: Schema + cls, in_data: schemas.Schema ) -> typing.Dict[str, typing.Tuple[RequestField, ...]]: if not isinstance(in_data, frozendict.frozendict): raise ValueError(f'Unable to serialize {in_data} to multipart/form-data because it is not a dict of data') @@ -1390,10 +1377,10 @@ def __serialize_multipart_form_data( return dict(fields=tuple(fields)) @staticmethod - def __serialize_application_octet_stream(in_data: BinarySchema) -> typing.Dict[str, bytes]: + def __serialize_application_octet_stream(in_data: schemas.BinarySchema) -> typing.Dict[str, bytes]: if isinstance(in_data, bytes): return dict(body=in_data) - # FileIO type + # schemas.FileIO type result = dict(body=in_data.read()) in_data.close() return result diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/addition_operator.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/addition_operator.py index 9af36fd9e28..637761a6dac 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/addition_operator.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/addition_operator.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -101,7 +101,7 @@ def __new__( a: typing.Union[MetaOapg.Properties.A, decimal.Decimal, int, float, ], b: typing.Union[MetaOapg.Properties.B, decimal.Decimal, int, float, ], operator_id: typing.Union[MetaOapg.Properties.OperatorId, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AdditionOperator': return super().__new__( cls, diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/addition_operator.pyi b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/addition_operator.pyi index 269df44690b..6ee186f7d8f 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/addition_operator.pyi +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/addition_operator.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ class AdditionOperator( a: typing.Union[MetaOapg.Properties.A, decimal.Decimal, int, float, ], b: typing.Union[MetaOapg.Properties.B, decimal.Decimal, int, float, ], operator_id: typing.Union[MetaOapg.Properties.OperatorId, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'AdditionOperator': return super().__new__( cls, diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/operator.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/operator.py index f8c0ea9d5a4..fc34b9b4973 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/operator.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/operator.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -64,9 +64,9 @@ def one_of1() -> typing.Type['subtraction_operator.SubtractionOperator']: def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Operator': return super().__new__( cls, diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/operator.pyi b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/operator.pyi index f8c0ea9d5a4..fc34b9b4973 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/operator.pyi +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/operator.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -64,9 +64,9 @@ class Operator( def __new__( cls, - *_args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], - _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], + *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Operator': return super().__new__( cls, diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/subtraction_operator.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/subtraction_operator.py index b75d8412c46..476e0626b81 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/subtraction_operator.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/subtraction_operator.py @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -101,7 +101,7 @@ def __new__( a: typing.Union[MetaOapg.Properties.A, decimal.Decimal, int, float, ], b: typing.Union[MetaOapg.Properties.B, decimal.Decimal, int, float, ], operator_id: typing.Union[MetaOapg.Properties.OperatorId, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'SubtractionOperator': return super().__new__( cls, diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/subtraction_operator.pyi b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/subtraction_operator.pyi index e70c210d88f..80d4e6ffb0d 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/subtraction_operator.pyi +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/components/schema/subtraction_operator.pyi @@ -9,7 +9,7 @@ Generated by: https://openapi-generator.tech """ -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 @@ -100,7 +100,7 @@ class SubtractionOperator( a: typing.Union[MetaOapg.Properties.A, decimal.Decimal, int, float, ], b: typing.Union[MetaOapg.Properties.B, decimal.Decimal, int, float, ], operator_id: typing.Union[MetaOapg.Properties.OperatorId, str, ], - _configuration: typing.Optional[schemas.Configuration] = None, + _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, ) -> 'SubtractionOperator': return super().__new__( cls, diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.py index 128992791aa..d5179cf1192 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.py @@ -12,7 +12,7 @@ from urllib3._collections import HTTPHeaderDict from this_package import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.pyi b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.pyi index 607258bf28a..ae3ed5d4856 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.pyi +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.pyi @@ -12,7 +12,7 @@ import urllib3 from urllib3._collections import HTTPHeaderDict from this_package import api_client, exceptions -from datetime import date, datetime # noqa: F401 +import datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/response_for_200/__init__.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/response_for_200/__init__.py index ff1dfe1915d..897efa154a1 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/response_for_200/__init__.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/response_for_200/__init__.py @@ -1,5 +1,5 @@ import dataclasses -from datetime import date, datetime +import datetime import decimal import io import typing diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/schemas.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/schemas.py index f776b1da14a..aa3e8ebc53a 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/schemas.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/schemas.py @@ -9,8 +9,8 @@ Generated by: https://openapi-generator.tech """ -from collections import defaultdict -from datetime import date, datetime, timedelta # noqa: F401 +import collections +import datetime import functools import decimal import io @@ -19,16 +19,12 @@ import typing import uuid -from dateutil.parser.isoparser import isoparser, _takes_ascii +from dateutil import parser +from dateutil.parser.isoparser import _takes_ascii import frozendict -from this_package.exceptions import ( - ApiTypeError, - ApiValueError, -) -from this_package.configuration import ( - Configuration, -) +from this_package import exceptions +from this_package import configuration as configuration_module class Unset(object): @@ -53,12 +49,12 @@ class FileIO(io.FileIO): def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader]): if isinstance(_arg, (io.FileIO, io.BufferedReader)): if _arg.closed: - raise ApiValueError('Invalid file state; file is closed and must be open') + raise exceptions.ApiValueError('Invalid file state; file is closed and must be open') _arg.close() inst = super(FileIO, cls).__new__(cls, _arg.name) super(FileIO, inst).__init__(_arg.name) return inst - raise ApiValueError('FileIO must be passed _arg which contains the open file') + raise exceptions.ApiValueError('FileIO must be passed _arg which contains the open file') def __init__(self, _arg: typing.Union[io.FileIO, io.BufferedReader]): pass @@ -67,7 +63,7 @@ def __init__(self, _arg: typing.Union[io.FileIO, io.BufferedReader]): def update(d: dict, u: dict): """ Adds u to d - Where each dict is defaultdict(set) + Where each dict is collections.defaultdict(set) """ if not u: return d @@ -85,7 +81,7 @@ class ValidationMetadata(frozendict.frozendict): def __new__( cls, path_to_item: typing.Tuple[typing.Union[str, int], ...], - configuration: Configuration, + configuration: configuration_module.Configuration, seen_classes: typing.FrozenSet[typing.Type] = frozenset(), validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Type]] = frozendict.frozendict() ): @@ -94,8 +90,8 @@ def __new__( path_to_item: the path to the current data being instantiated. For {'a': [1]} if the code is handling, 1, then the path is ('args[0]', 'a', 0) This changes from location to location - configuration: the Configuration instance to use - This is needed because in Configuration: + configuration: the configuration_module.Configuration instance to use + This is needed because in configuration_module.Configuration: - one can disable validation checking This does not change from location to location seen_classes: when deserializing data that matches multiple schemas, this is used to store @@ -126,7 +122,7 @@ def path_to_item(self) -> typing.Tuple[typing.Union[str, int], ...]: return self['path_to_item'] @property - def configuration(self) -> Configuration: + def configuration(self) -> configuration_module.Configuration: return self['configuration'] @property @@ -294,7 +290,7 @@ def __get_type_error(var_value, path_to_item, valid_classes, key_type=False): valid_classes=valid_classes, key_type=key_type, ) - return ApiTypeError( + return exceptions.ApiTypeError( error_msg, path_to_item=path_to_item, valid_classes=valid_classes, @@ -326,12 +322,12 @@ def validate_enum( **kwargs ) -> None: if arg not in enum_value_to_name: - raise ApiValueError("Invalid value {} passed in to {}, allowed_values={}".format(arg, cls, enum_value_to_name.keys())) + raise exceptions.ApiValueError("Invalid value {} passed in to {}, allowed_values={}".format(arg, cls, enum_value_to_name.keys())) return None def _raise_validation_error_message_oapg(value, constraint_msg, constraint_value, path_to_item, additional_txt=""): - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value `{value}`, {constraint_msg} `{constraint_value}`{additional_txt} at {path_to_item}".format( value=value, constraint_msg=constraint_msg, @@ -617,20 +613,20 @@ def __validate_numeric_format( if format[:3] == 'int': # there is a json schema test where 1.0 validates as an integer if arg != int(arg): - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid non-integer value '{}' for type {} at {}".format( arg, format, validation_metadata.path_to_item ) ) if format == 'int32': if not __int32_inclusive_minimum <= arg <= __int32_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type int32 at {}".format(arg, validation_metadata.path_to_item) ) return None elif format == 'int64': if not __int64_inclusive_minimum <= arg <= __int64_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type int64 at {}".format(arg, validation_metadata.path_to_item) ) return None @@ -638,21 +634,20 @@ def __validate_numeric_format( elif format in {'float', 'double'}: if format == 'float': if not __float_inclusive_minimum <= arg <= __float_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type float at {}".format(arg, validation_metadata.path_to_item) ) return None # double if not __double_inclusive_minimum <= arg <= __double_inclusive_maximum: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type double at {}".format(arg, validation_metadata.path_to_item) ) return None return None -class CustomIsoparser(isoparser): - +class CustomIsoparser(parser.isoparser): @_takes_ascii def parse_isodatetime(self, dt_str): components, pos = self._parse_isodate(dt_str) @@ -664,12 +659,12 @@ def parse_isodatetime(self, dt_str): if len(components) > 3 and components[3] == 24: components[3] = 0 - return datetime(*components) + timedelta(days=1) + return datetime.datetime(*components) + datetime.timedelta(days=1) if len(components) <= 3: raise ValueError('Value is not a datetime') - return datetime(*components) + return datetime.datetime(*components) @_takes_ascii def parse_isodate(self, datestr): @@ -681,7 +676,7 @@ def parse_isodate(self, datestr): if len(components) > 3: raise ValueError('String contains invalid time components') - return date(*components) + return datetime.date(*components) DEFAULT_ISOPARSER = CustomIsoparser() @@ -697,7 +692,7 @@ def __validate_string_format( uuid.UUID(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid value '{}' for type UUID at {}".format(arg, validation_metadata.path_to_item) ) elif format == 'number': @@ -705,7 +700,7 @@ def __validate_string_format( decimal.Decimal(arg) return None except decimal.InvalidOperation: - raise ApiValueError( + raise exceptions.ApiValueError( "Value cannot be converted to a decimal. " "Invalid value '{}' for type decimal at {}".format(arg, validation_metadata.path_to_item) ) @@ -714,7 +709,7 @@ def __validate_string_format( DEFAULT_ISOPARSER.parse_isodate(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Value does not conform to the required ISO-8601 date format. " "Invalid value '{}' for type date at {}".format(arg, validation_metadata.path_to_item) ) @@ -723,7 +718,7 @@ def __validate_string_format( DEFAULT_ISOPARSER.parse_isodatetime(arg) return None except ValueError: - raise ApiValueError( + raise exceptions.ApiValueError( "Value does not conform to the required ISO-8601 datetime format. " "Invalid value '{}' for type datetime at {}".format(arg, validation_metadata.path_to_item) ) @@ -766,7 +761,7 @@ def validate_required( if missing_required_arguments: missing_required_arguments = list(missing_required_arguments) missing_required_arguments.sort() - raise ApiTypeError( + raise exceptions.ApiTypeError( "{} is missing {} required argument{}: {}".format( cls.__name__, len(missing_required_arguments), @@ -878,7 +873,7 @@ def validate_one_of( **kwargs ) -> PathToSchemasType: oneof_classes = [] - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for one_of_cls in one_of_container_cls.classes: schema = _get_class_oapg(one_of_cls) if schema in path_to_schemas[validation_metadata.path_to_item]: @@ -897,7 +892,7 @@ def validate_one_of( continue try: path_to_schemas = schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError) as ex: + except (exceptions.ApiValueError, exceptions.ApiTypeError) as ex: # silence exceptions because the code needs to accumulate oneof_classes continue oneof_classes.append(schema) @@ -908,7 +903,7 @@ def validate_one_of( nonCompliantUseDiscriminatorIfCompositionFails=true """ return {} - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. None " "of the oneOf schemas matched the input data.".format(cls) ) @@ -919,7 +914,7 @@ def validate_one_of( nonCompliantUseDiscriminatorIfCompositionFails=true """ return {} - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. Multiple " "oneOf schemas {} matched the inputs, but a max of one is allowed.".format(cls, oneof_classes) ) @@ -936,7 +931,7 @@ def validate_any_of( **kwargs ) -> PathToSchemasType: anyof_classes = [] - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for any_of_cls in any_of_container_cls.classes: schema = _get_class_oapg(any_of_cls) if schema is cls: @@ -953,7 +948,7 @@ def validate_any_of( try: other_path_to_schemas = schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError) as ex: + except (exceptions.ApiValueError, exceptions.ApiTypeError) as ex: # silence exceptions because the code needs to accumulate anyof_classes continue anyof_classes.append(schema) @@ -965,7 +960,7 @@ def validate_any_of( nonCompliantUseDiscriminatorIfCompositionFails=true """ return {} - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid inputs given to generate an instance of {}. None " "of the anyOf schemas matched the input data.".format(cls) ) @@ -979,7 +974,7 @@ def validate_all_of( validation_metadata: ValidationMetadata, **kwargs ) -> PathToSchemasType: - path_to_schemas = defaultdict(set) + path_to_schemas = collections.defaultdict(set) for allof_cls in all_of_cls.classes: schema = _get_class_oapg(allof_cls) if schema is cls: @@ -1005,7 +1000,7 @@ def validate_not( ) -> None: not_schema = _get_class_oapg(not_cls) other_path_to_schemas = None - not_exception = ApiValueError( + not_exception = exceptions.ApiValueError( "Invalid value '{}' was passed in to {}. Value is invalid because it is disallowed by {}".format( arg, cls.__name__, @@ -1017,7 +1012,7 @@ def validate_not( try: other_path_to_schemas = not_schema._validate_oapg(arg, validation_metadata=validation_metadata) - except (ApiValueError, ApiTypeError): + except (exceptions.ApiValueError, exceptions.ApiTypeError): pass if other_path_to_schemas: raise not_exception @@ -1031,7 +1026,7 @@ def __ensure_discriminator_value_present( ): if disc_property_name not in arg: # The input data does not contain the discriminator property - raise ApiValueError( + raise exceptions.ApiValueError( "Cannot deserialize input data due to missing discriminator. " "The discriminator property '{}' is missing at path: {}".format(disc_property_name, validation_metadata.path_to_item) ) @@ -1090,7 +1085,7 @@ def _get_discriminated_class_and_exception( disc_prop_name = list(discriminator.keys())[0] try: __ensure_discriminator_value_present(disc_prop_name, validation_metadata, arg) - except ApiValueError as ex: + except exceptions.ApiValueError as ex: return None, ex return ( __get_discriminated_class( @@ -1115,7 +1110,7 @@ def validate_discriminator( if ensure_discriminator_value_present_exc: raise ensure_discriminator_value_present_exc if discriminated_cls is None: - raise ApiValueError( + raise exceptions.ApiValueError( "Invalid discriminator value was passed in to {}.{} Only the values {} are allowed at {}".format( cls.__name__, disc_prop_name, @@ -1360,7 +1355,7 @@ def _get_new_instance_without_conversion_oapg( items = cls._get_items_oapg(arg, path_to_item, path_to_schemas) return super(Schema, cls).__new__(cls, items) """ - str = openapi str, date, and datetime + str = openapi str, datetime.date, and datetime.datetime decimal.Decimal = openapi int and float FileIO = openapi binary type and the user inputs a file bytes = openapi binary type and the user inputs bytes @@ -1382,7 +1377,7 @@ def from_openapi_data_oapg( io.BufferedReader, bytes ], - _configuration: typing.Optional[Configuration] = None + _configuration: typing.Optional[configuration_module.Configuration] = None ): """ Schema from_openapi_data_oapg @@ -1393,7 +1388,7 @@ def from_openapi_data_oapg( arg = cast_to_allowed_types(arg, from_server, validated_path_to_schemas, ('args[0]',), path_to_type) validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or Configuration(), + configuration=_configuration or configuration_module.Configuration(), validated_path_to_schemas=frozendict.frozendict(validated_path_to_schemas) ) path_to_schemas = cls.__get_new_cls(arg, validation_metadata, path_to_type) @@ -1429,13 +1424,16 @@ def __new__( float, int, str, - date, - datetime, + datetime.date, + datetime.datetime, + uuid.UUID, bool, None, - 'Schema' - ], - _configuration: typing.Optional[Configuration] = None, + bytes, + io.FileIO, + io.BufferedReader, + 'Schema', ], + _configuration: typing.Optional[configuration_module.Configuration] = None, **kwargs: typing.Union[ dict, frozendict.frozendict, @@ -1445,12 +1443,15 @@ def __new__( float, int, str, - date, - datetime, + datetime.date, + datetime.datetime, + uuid.UUID, bool, None, - 'Schema', - Unset + bytes, + io.FileIO, + io.BufferedReader, + 'Schema', Unset ] ): """ @@ -1459,7 +1460,7 @@ def __new__( Args: _args (int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): the value kwargs (str, int/float/decimal.Decimal/str/list/tuple/dict/frozendict.frozendict/bool/None): dict values - _configuration: contains the Configuration that enables json schema validation keywords + _configuration: contains the configuration_module.Configuration that enables json schema validation keywords like minItems, minLength etc Note: double underscores are used here because pycharm thinks that these variables @@ -1481,7 +1482,7 @@ def __new__( __arg, __from_server, __validated_path_to_schemas, ('args[0]',), __path_to_type) __validation_metadata = ValidationMetadata( path_to_item=('args[0]',), - configuration=_configuration or Configuration(), + configuration=_configuration or configuration_module.Configuration(), validated_path_to_schemas=frozendict.frozendict(__validated_path_to_schemas) ) __path_to_schemas = cls.__get_new_cls(__arg, __validation_metadata, __path_to_type) @@ -1495,10 +1496,10 @@ def __new__( def __init__( self, *_args: typing.Union[ - dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, 'Schema'], - _configuration: typing.Optional[Configuration] = None, + dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema'], + _configuration: typing.Optional[configuration_module.Configuration] = None, **kwargs: typing.Union[ - dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, 'Schema', Unset + dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, 'Schema', Unset ] ): """ @@ -1845,11 +1846,11 @@ def as_str_oapg(self) -> str: return self @property - def as_date_oapg(self) -> date: + def as_date_oapg(self) -> datetime.date: raise Exception('not implemented') @property - def as_datetime_oapg(self) -> datetime: + def as_datetime_oapg(self) -> datetime.datetime: raise Exception('not implemented') @property @@ -1871,14 +1872,14 @@ def as_uuid_oapg(self) -> uuid.UUID: class DateBase: @property @functools.lru_cache() - def as_date_oapg(self) -> date: + def as_date_oapg(self) -> datetime.date: return DEFAULT_ISOPARSER.parse_isodate(self) class DateTimeBase: @property @functools.lru_cache() - def as_datetime_oapg(self) -> datetime: + def as_datetime_oapg(self) -> datetime.datetime: return DEFAULT_ISOPARSER.parse_isodatetime(self) @@ -1914,7 +1915,7 @@ def as_int_oapg(self) -> int: if self.as_tuple().exponent < 0: # this could be represented as an integer but should be represented as a float # because that's what it was serialized from - raise ApiValueError(f'{self} is not an integer') + raise exceptions.ApiValueError(f'{self} is not an integer') self._as_int = int(self) return self._as_int @@ -1924,7 +1925,7 @@ def as_float_oapg(self) -> float: return self._as_float except AttributeError: if self.as_tuple().exponent >= 0: - raise ApiValueError(f'{self} is not a float') + raise exceptions.ApiValueError(f'{self} is not a float') self._as_float = float(self) return self._as_float @@ -2014,12 +2015,37 @@ def get_item_oapg(self, name: str) -> typing.Union['AnyTypeSchema', Unset]: def cast_to_allowed_types( - arg: typing.Union[str, date, datetime, uuid.UUID, decimal.Decimal, int, float, None, dict, frozendict.frozendict, list, tuple, bytes, Schema, io.FileIO, io.BufferedReader], + arg: typing.Union[ + dict, + frozendict.frozendict, + list, + tuple, + decimal.Decimal, + float, + int, + str, + datetime.date, + datetime.datetime, + uuid.UUID, + bool, + None, + bytes, + io.FileIO, + io.BufferedReader, + 'Schema', ], from_server: bool, validated_path_to_schemas: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Set[typing.Union['Schema', str, decimal.Decimal, BoolClass, NoneClass, frozendict.frozendict, tuple]]], path_to_item: typing.Tuple[typing.Union[str, int], ...], path_to_type: typing.Dict[typing.Tuple[typing.Union[str, int], ...], typing.Type] -) -> typing.Union[frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO]: +) -> typing.Union[ + frozendict.frozendict, + tuple, + decimal.Decimal, + str, + bytes, + BoolClass, + NoneClass, + FileIO]: """ Casts the input payload arg into the allowed types The input validated_path_to_schemas is mutated by running this function @@ -2053,7 +2079,7 @@ def cast_to_allowed_types( schema_classes.add(cls) validated_path_to_schemas[path_to_item] = schema_classes - type_error = ApiTypeError(f"Invalid type. Required value type is str and passed type was {type(arg)} at {path_to_item}") + type_error = exceptions.ApiTypeError(f"Invalid type. Required value type is str and passed type was {type(arg)} at {path_to_item}") if isinstance(arg, str): path_to_type[path_to_item] = str return str(arg) @@ -2108,7 +2134,7 @@ def cast_to_allowed_types( elif isinstance(arg, (none_type, NoneClass)): path_to_type[path_to_item] = NoneClass return NoneClass.NONE - elif isinstance(arg, (date, datetime)): + elif isinstance(arg, (datetime.date, datetime.datetime)): path_to_type[path_to_item] = str if not from_server: return arg.isoformat() @@ -2139,10 +2165,10 @@ class MetaOapg: types = {tuple} @classmethod - def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.List[typing.Any], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[typing.List[typing.Any], typing.Tuple[typing.Any]], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2155,10 +2181,10 @@ class MetaOapg: types = {NoneClass} @classmethod - def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: None, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: None, **kwargs: Configuration): + def __new__(cls, _arg: None, **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2175,10 +2201,10 @@ class MetaOapg: types = {decimal.Decimal} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Union[int, float], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int, float], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2198,10 +2224,10 @@ class MetaOapg: format = 'int' @classmethod - def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: int, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[decimal.Decimal, int], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2229,7 +2255,7 @@ class MetaOapg: format = 'float' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2241,7 +2267,7 @@ class MetaOapg: format = 'double' @classmethod - def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: float, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) @@ -2260,10 +2286,10 @@ class MetaOapg: types = {str} @classmethod - def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[Configuration] = None) -> 'StrSchema': + def from_openapi_data_oapg(cls, arg: str, _configuration: typing.Optional[configuration_module.Configuration] = None) -> 'StrSchema': return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, _arg: typing.Union[str, date, datetime, uuid.UUID], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date, datetime.datetime, uuid.UUID], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2272,7 +2298,7 @@ class MetaOapg: types = {str} format = 'uuid' - def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, uuid.UUID], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2281,7 +2307,7 @@ class MetaOapg: types = {str} format = 'date' - def __new__(cls, _arg: typing.Union[str, date], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.date], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2290,7 +2316,7 @@ class MetaOapg: types = {str} format = 'date-time' - def __new__(cls, _arg: typing.Union[str, datetime], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[str, datetime.datetime], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg, **kwargs) @@ -2299,7 +2325,7 @@ class MetaOapg: types = {str} format = 'number' - def __new__(cls, _arg: str, **kwargs: Configuration): + def __new__(cls, _arg: str, **kwargs: configuration_module.Configuration): """ Note: Decimals may not be passed in because cast_to_allowed_types is only invoked once for payloads which can be simple (str) or complex (dicts or lists with nested values) @@ -2321,7 +2347,7 @@ class BytesSchema( class MetaOapg: types = {bytes} - def __new__(cls, _arg: bytes, **kwargs: Configuration): + def __new__(cls, _arg: bytes, **kwargs: configuration_module.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2348,7 +2374,7 @@ class FileSchema( class MetaOapg: types = {FileIO} - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader], **kwargs: configuration_module.Configuration): return super(Schema, cls).__new__(cls, _arg) @@ -2366,7 +2392,7 @@ class OneOf: FileSchema, ] - def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: Configuration): + def __new__(cls, _arg: typing.Union[io.FileIO, io.BufferedReader, bytes], **kwargs: configuration_module.Configuration): return super().__new__(cls, _arg) @@ -2379,7 +2405,7 @@ class MetaOapg: types = {BoolClass} @classmethod - def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: bool, _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) def __new__(cls, _arg: bool, **kwargs: ValidationMetadata): @@ -2419,7 +2445,7 @@ class MetaOapg: def __new__( cls, *_args, - _configuration: typing.Optional[Configuration] = None, + _configuration: typing.Optional[configuration_module.Configuration] = None, ) -> 'NotAnyTypeSchema': return super().__new__( cls, @@ -2437,10 +2463,10 @@ class MetaOapg: types = {frozendict.frozendict} @classmethod - def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[Configuration] = None): + def from_openapi_data_oapg(cls, arg: typing.Dict[str, typing.Any], _configuration: typing.Optional[configuration_module.Configuration] = None): return super().from_openapi_data_oapg(arg, _configuration=_configuration) - def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, date, datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): + def __new__(cls, *_args: typing.Union[dict, frozendict.frozendict], **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, bool, None, bytes, Schema, Unset, ValidationMetadata]): return super().__new__(cls, *_args, **kwargs) diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/VERSION b/samples/openapi3/client/petstore/python/.openapi-generator/VERSION index 717311e32e3..359a5b952d4 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/VERSION +++ b/samples/openapi3/client/petstore/python/.openapi-generator/VERSION @@ -1 +1 @@ -unset \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index 2cdfb55e6a6..25d5cf37299 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -55,7 +55,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **string** | [**Foo**](../../../components/schema/foo.Foo.md) | [**Foo**](../../../components/schema/foo.Foo.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md index ecc133d7c68..29dd81a6ae0 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md @@ -95,7 +95,7 @@ Key | Input Type | Accessed Type | Description | Notes **dateTime** | str, datetime.datetime, | str, | None | [optional] if omitted the server will use the default value of 2010-02-01T10:20:10.11111+01:00 value must conform to RFC-3339 date-time **password** | str, | str, | None | [optional] **callback** | str, | str, | None | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index b38c292cb28..ca565c57937 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -81,7 +81,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **enum_form_string_array** | [list, tuple, ](#enum_form_string_array) | [tuple, ](#enum_form_string_array) | Form parameter enum test (string array) | [optional] **enum_form_string** | str, | str, | Form parameter enum test (string) | [optional] must be one of ["_abc", "-efg", "(xyz)", ] if omitted the server will use the default value of "-efg" -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # enum_form_string_array diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md index 5159e0995fa..24dbdd59e5c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md @@ -82,7 +82,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **someProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # someProp @@ -144,7 +144,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **someProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # someProp @@ -211,7 +211,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **someProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # someProp diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index 046d8b84df7..33a17982703 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -58,7 +58,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **param** | str, | str, | field1 | **param2** | str, | str, | field2 | -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index 66ede3e9ae7..6ed6b5d4683 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -64,7 +64,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **keyword** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md index f50dd5ae59b..3e5bfe84645 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md @@ -59,7 +59,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **file** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | **additionalMetadata** | str, | str, | Additional data to pass to server | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md index d678bc4d994..76353a9f6f6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md @@ -59,7 +59,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **files** | [list, tuple, ](#files) | [tuple, ](#files) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # files diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md index 6fa88c02e42..46f59c0e899 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md @@ -87,7 +87,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | str, | str, | Updated name of the pet | [optional] **status** | str, | str, | Updated status of the pet | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### path_params #### RequestPathParameters.Params diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md index 86a00078939..61b48f1b3b9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md @@ -88,7 +88,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **requiredFile** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | **additionalMetadata** | str, | str, | Additional data to pass to server | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### path_params #### RequestPathParameters.Params diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index 02f0a932ed9..600e334bed6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -88,7 +88,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **additionalMetadata** | str, | str, | Additional data to pass to server | [optional] **file** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### path_params #### RequestPathParameters.Params diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/_200_response._200Response.md b/samples/openapi3/client/petstore/python/docs/components/schema/_200_response._200Response.md index 6bd0c0f348a..bf302fbaa4b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/_200_response._200Response.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/_200_response._200Response.md @@ -14,6 +14,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer **class** | str, | str, | this is a reserved python keyword | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/_return._Return.md b/samples/openapi3/client/petstore/python/docs/components/schema/_return._Return.md index ec43d000991..9e1750cc8dd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/_return._Return.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/_return._Return.md @@ -13,6 +13,6 @@ dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, i Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **return** | decimal.Decimal, int, | decimal.Decimal, | this is a reserved python keyword | [optional] value must be a 32 bit integer -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md b/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md index ee451f49dfd..185fe2be6fe 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md @@ -15,7 +15,7 @@ Key | Input Type | Accessed Type | Description | Notes **description** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | **discriminator** | str, | str, | | **sequenceNumber** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md index 22b30ef79fe..2c8c07940f0 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md @@ -18,7 +18,7 @@ Key | Input Type | Accessed Type | Description | Notes **map_with_undeclared_properties_anytype_3** | [dict, frozendict.frozendict, ](#map_with_undeclared_properties_anytype_3) | [frozendict.frozendict, ](#map_with_undeclared_properties_anytype_3) | | [optional] **empty_map** | [dict, frozendict.frozendict, ](#empty_map) | [frozendict.frozendict, ](#empty_map) | an object with no declared properties and no undeclared properties, hence it's an empty map. | [optional] **map_with_undeclared_properties_string** | [dict, frozendict.frozendict, ](#map_with_undeclared_properties_string) | [frozendict.frozendict, ](#map_with_undeclared_properties_string) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # map_property diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md b/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md index 158337963b5..008a45a4377 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **className** | str, | str, | | **color** | str, | str, | | [optional] if omitted the server will use the default value of "red" -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md index 4aea06f9956..e642bbb44d6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md @@ -19,6 +19,6 @@ Key | Input Type | Accessed Type | Description | Notes **int64** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 64 bit integer **double** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 64 bit float **float** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 32 bit float -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md b/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md index cb5ba1e3166..e1ad96b186c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md @@ -13,6 +13,6 @@ Key | Input Type | Accessed Type | Description | Notes **code** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer **type** | str, | str, | | [optional] **message** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md b/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md index 32243438374..71c6fb0c1ac 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **cultivar** | str, | str, | | **origin** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md index b2a30a800ca..805334eef6b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md @@ -11,7 +11,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **ArrayArrayNumber** | [list, tuple, ](#ArrayArrayNumber) | [tuple, ](#ArrayArrayNumber) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # ArrayArrayNumber diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md index 1255b355c1d..73b8cf7f542 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md @@ -11,7 +11,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **ArrayNumber** | [list, tuple, ](#ArrayNumber) | [tuple, ](#ArrayNumber) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # ArrayNumber diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md index 348acb61180..58df0f915c2 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md @@ -13,7 +13,7 @@ Key | Input Type | Accessed Type | Description | Notes **array_of_string** | [list, tuple, ](#array_of_string) | [tuple, ](#array_of_string) | | [optional] **array_array_of_integer** | [list, tuple, ](#array_array_of_integer) | [tuple, ](#array_array_of_integer) | | [optional] **array_array_of_model** | [list, tuple, ](#array_array_of_model) | [tuple, ](#array_array_of_model) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # array_of_string diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md b/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md index d88bea81a5f..ea0a404c224 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **lengthCm** | decimal.Decimal, int, float, | decimal.Decimal, | | -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md b/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md index 2dff48e27ce..0432ca741e9 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **className** | str, | str, | | must be one of ["BasquePig", ] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md b/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md index b516d3ffe14..6013594d800 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md @@ -16,6 +16,6 @@ Key | Input Type | Accessed Type | Description | Notes **Capital_Snake** | str, | str, | | [optional] **SCA_ETH_Flow_Points** | str, | str, | | [optional] **ATT_NAME** | str, | str, | Name of the pet | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md b/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md index 58f2cbcc216..544ae12a110 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **declawed** | bool, | BoolClass, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md b/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md index 84b31bf0a87..8d45f54b41d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | str, | str, | | if omitted the server will use the default value of "default-name" **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md b/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md index 395bdc454cd..cb715a3e0ca 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md b/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md index 5e35233c03c..a15affec0bc 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md @@ -13,6 +13,6 @@ dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, i Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **_class** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md b/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md index a8ab957aa71..bcbff93510e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **client** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md index 4065a8baba6..0524a1356c7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **quadrilateralType** | str, | str, | | [optional] must be one of ["ComplexQuadrilateral", ] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md b/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md index 5af47b679e0..3d78196a76f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **className** | str, | str, | | must be one of ["DanishPig", ] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md b/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md index c6ec327626f..8ebf9a96660 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **breed** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md index 4461c590c04..8ba0dd7086e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md @@ -12,7 +12,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **just_symbol** | str, | str, | | [optional] must be one of [">=", "$", ] **array_enum** | [list, tuple, ](#array_enum) | [tuple, ](#array_enum) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # array_enum diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md index 8e459b6d5c4..037ef93bddd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md @@ -19,6 +19,6 @@ Key | Input Type | Accessed Type | Description | Notes **StringEnumWithDefaultValue** | [**StringEnumWithDefaultValue**](string_enum_with_default_value.StringEnumWithDefaultValue.md) | [**StringEnumWithDefaultValue**](string_enum_with_default_value.StringEnumWithDefaultValue.md) | | [optional] **IntegerEnumWithDefaultValue** | [**IntegerEnumWithDefaultValue**](integer_enum_with_default_value.IntegerEnumWithDefaultValue.md) | [**IntegerEnumWithDefaultValue**](integer_enum_with_default_value.IntegerEnumWithDefaultValue.md) | | [optional] **IntegerEnumOneValue** | [**IntegerEnumOneValue**](integer_enum_one_value.IntegerEnumOneValue.md) | [**IntegerEnumOneValue**](integer_enum_one_value.IntegerEnumOneValue.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md index 6224b353f8a..16918bba4d7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **triangleType** | str, | str, | | [optional] must be one of ["EquilateralTriangle", ] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md b/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md index db8e7c44f71..be7302e12c5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md @@ -13,6 +13,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | Must be named `Fi Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **sourceURI** | str, | str, | Test capitalization | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md index 274394503de..8683d416eec 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md @@ -12,7 +12,7 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **file** | [**File**](file.File.md) | [**File**](file.File.md) | | [optional] **files** | [list, tuple, ](#files) | [tuple, ](#files) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # files diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md b/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md index d7197422de6..27e03d5a9a6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | [**Bar**](bar.Bar.md) | [**Bar**](bar.Bar.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md index 5fe0907e843..e3ac5f923ea 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md @@ -31,7 +31,7 @@ Key | Input Type | Accessed Type | Description | Notes **pattern_with_digits** | str, | str, | A string that is a 10 digit number. Can have leading zeros. | [optional] **pattern_with_digits_and_delimiter** | str, | str, | A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. | [optional] **noneProp** | None, | NoneClass, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # arrayWithUniqueItems diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md b/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md index c1907005130..e6b0ec0f73a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **data** | str, | str, | | [optional] **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md b/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md index bd27ef575b7..cc22e06d2e8 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md @@ -11,7 +11,7 @@ dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, i Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **color** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Composed Schemas (allOf/anyOf/oneOf/not) #### oneOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md b/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md index 980643b07c2..e5f1c7e36a2 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md @@ -11,7 +11,7 @@ dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, i Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **color** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] ### Composed Schemas (allOf/anyOf/oneOf/not) #### anyOf diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md b/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md index d3ac63669ac..412c8630a9d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **pet_type** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md index 73d164b5c67..70c7714975f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | str, | str, | | [optional] **foo** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md b/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md index f0ee5ccf338..61f14420733 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md @@ -13,6 +13,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | Just a string to infor Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **NullableMessage** | None, str, | NoneClass, str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md index 1163135efaa..462affc7927 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **triangleType** | str, | str, | | [optional] must be one of ["IsoscelesTriangle", ] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md index cadc2c37a6e..38d3bff8482 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md @@ -14,7 +14,7 @@ Key | Input Type | Accessed Type | Description | Notes **map_of_enum_string** | [dict, frozendict.frozendict, ](#map_of_enum_string) | [frozendict.frozendict, ](#map_of_enum_string) | | [optional] **direct_map** | [dict, frozendict.frozendict, ](#direct_map) | [frozendict.frozendict, ](#direct_map) | | [optional] **indirect_map** | [**StringBooleanMap**](string_boolean_map.StringBooleanMap.md) | [**StringBooleanMap**](string_boolean_map.StringBooleanMap.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # map_map_of_string diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md index 1a371dd03cb..5c79665abf5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md @@ -13,7 +13,7 @@ Key | Input Type | Accessed Type | Description | Notes **uuid** | str, uuid.UUID, | str, | | [optional] value must be a uuid **dateTime** | str, datetime.datetime, | str, | | [optional] value must conform to RFC-3339 date-time **map** | [dict, frozendict.frozendict, ](#map) | [frozendict.frozendict, ](#map) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # map diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md b/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md index 11f4a387197..12e8059ae2e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **amount** | str, | str, | | value must be numeric and storable in decimal.Decimal **currency** | [**Currency**](currency.Currency.md) | [**Currency**](currency.Currency.md) | | -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md b/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md index c1a453d9e44..4267a4eb5a5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md @@ -15,6 +15,6 @@ Key | Input Type | Accessed Type | Description | Notes **name** | decimal.Decimal, int, | decimal.Decimal, | | value must be a 32 bit integer **snake_case** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer **property** | str, | str, | this is a reserved python keyword | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md index 40bd4dcb794..1d066fae32b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **JustNumber** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md index 619466eb50e..816a8ba7ac8 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **arg** | str, | str, | | **args** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md index e0ed83b81b7..fb63e6a2ecd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md @@ -15,6 +15,6 @@ Key | Input Type | Accessed Type | Description | Notes **myNumber** | [**NumberWithValidations**](number_with_validations.NumberWithValidations.md) | [**NumberWithValidations**](number_with_validations.NumberWithValidations.md) | | [optional] **myString** | [**String**](string.String.md) | [**String**](string.String.md) | | [optional] **myBoolean** | [**Boolean**](boolean.Boolean.md) | [**Boolean**](boolean.Boolean.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md index 6e27d0a81a8..0aeb8ddd921 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md @@ -26,6 +26,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **test** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | **name** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md index 6654441d76f..4aeacc55ea1 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md @@ -13,6 +13,6 @@ Key | Input Type | Accessed Type | Description | Notes **length** | [**DecimalPayload**](decimal_payload.DecimalPayload.md) | [**DecimalPayload**](decimal_payload.DecimalPayload.md) | | [optional] **width** | str, | str, | | [optional] value must be numeric and storable in decimal.Decimal **cost** | [**Money**](money.Money.md) | [**Money**](money.Money.md) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md index 465a9aa098e..9a8f4ddb0ed 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md @@ -15,6 +15,6 @@ Key | Input Type | Accessed Type | Description | Notes **123-list** | str, | str, | | **$special[property.name]** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer **123Number** | decimal.Decimal, int, | decimal.Decimal, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md index 25944cfecc8..db9fefb8feb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md @@ -11,7 +11,7 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **someProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#someProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#someProp) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # someProp diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md index 41461ffca2f..9bb69134875 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **!reference** | [**ArrayWithValidationsInItems**](array_with_validations_in_items.ArrayWithValidationsInItems.md) | [**ArrayWithValidationsInItems**](array_with_validations_in_items.ArrayWithValidationsInItems.md) | | **from** | [**FromSchema**](from_schema.FromSchema.md) | [**FromSchema**](from_schema.FromSchema.md) | | -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md index 9a9d59daca9..80bbaf5d8d5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md @@ -11,6 +11,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **test** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md b/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md index a722515d694..0e89b2c9730 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md @@ -16,6 +16,6 @@ Key | Input Type | Accessed Type | Description | Notes **shipDate** | str, datetime.datetime, | str, | | [optional] value must conform to RFC-3339 date-time **status** | str, | str, | Order Status | [optional] must be one of ["placed", "approved", "delivered", ] **complete** | bool, | BoolClass, | | [optional] if omitted the server will use the default value of False -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md b/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md index 80ff56fa6c9..1725197d3b4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md @@ -18,7 +18,7 @@ Key | Input Type | Accessed Type | Description | Notes **category** | [**Category**](category.Category.md) | [**Category**](category.Category.md) | | [optional] **tags** | [list, tuple, ](#tags) | [tuple, ](#tags) | | [optional] **status** | str, | str, | pet status in the store | [optional] must be one of ["available", "pending", "sold", ] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # photoUrls diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md b/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md index 9d697939dad..49c56dc503b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md @@ -14,6 +14,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **name** | str, | str, | | [optional] **enemyPlayer** | [**Player**](#Player) | [**Player**](#Player) | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md index 48a3eeeca3d..e94865fcc76 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **quadrilateralType** | str, | str, | | **shapeType** | str, | str, | | must be one of ["Quadrilateral", ] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md b/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md index 5c92e5e448d..3cad33c75f6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **bar** | str, | str, | | [optional] **baz** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_unset_add_props.ReqPropsFromUnsetAddProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_unset_add_props.ReqPropsFromUnsetAddProps.md index 847009f0b9c..736d3fffc6e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_unset_add_props.ReqPropsFromUnsetAddProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/req_props_from_unset_add_props.ReqPropsFromUnsetAddProps.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **invalid-name** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | **validName** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md index 57a5c1f213d..aea3c894366 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **triangleType** | str, | str, | | [optional] must be one of ["ScaleneTriangle", ] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md index 90fcde5b245..cac330f6863 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md @@ -25,6 +25,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **quadrilateralType** | str, | str, | | [optional] must be one of ["SimpleQuadrilateral", ] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md b/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md index e732f9dcbaf..c50e39ced14 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md @@ -13,6 +13,6 @@ dict, frozendict.frozendict, | frozendict.frozendict, | model with an invalid Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **a** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md b/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md index 273c37c2251..6ab1d9f8424 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer **name** | str, | str, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md index 907bc29ef46..3d2b0e54cf8 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md @@ -12,6 +12,6 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **shapeType** | str, | str, | | must be one of ["Triangle", ] **triangleType** | str, | str, | | -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md b/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md index 13cad06d3fd..ce8191f5e2c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md @@ -23,7 +23,7 @@ Key | Input Type | Accessed Type | Description | Notes **anyTypeProp** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389 | [optional] **anyTypeExceptNullProp** | [dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ](#anyTypeExceptNullProp) | [frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO](#anyTypeExceptNullProp) | any type except 'null' Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. | [optional] **anyTypePropNullable** | dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values. | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] # objectWithNoDeclaredProps diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md b/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md index 24e32223378..27131e0c679 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md @@ -13,6 +13,6 @@ Key | Input Type | Accessed Type | Description | Notes **className** | str, | str, | | must be one of ["whale", ] **hasBaleen** | bool, | BoolClass, | | [optional] **hasTeeth** | bool, | BoolClass, | | [optional] -**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] +**any_string_name** | dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema | frozendict.frozendict, tuple, decimal.Decimal, str, bytes, BoolClass, NoneClass, FileIO | any string name can be used but the value must be the correct type | [optional] [[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py index d8abeff6252..f6f8a7632d8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.py @@ -91,7 +91,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_200Response': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi index d8abeff6252..f6f8a7632d8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_200_response.pyi @@ -91,7 +91,7 @@ class _200Response( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_200Response': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py index 6810db6c8b8..8e4c924ec6a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.py @@ -80,7 +80,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Return': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi index 6810db6c8b8..8e4c924ec6a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/_return.pyi @@ -80,7 +80,7 @@ class _Return( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Return': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py index f6a91f355cb..5bac4f872a0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.py @@ -127,7 +127,7 @@ def __new__( discriminator: typing.Union[MetaOapg.Properties.Discriminator, str, ], sequenceNumber: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AbstractStepMessage': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi index f6a91f355cb..5bac4f872a0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/abstract_step_message.pyi @@ -127,7 +127,7 @@ class AbstractStepMessage( discriminator: typing.Union[MetaOapg.Properties.Discriminator, str, ], sequenceNumber: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AbstractStepMessage': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py index 111e9bdda6f..7f5cb43b79c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.py @@ -320,7 +320,7 @@ def __new__( empty_map: typing.Union[MetaOapg.Properties.EmptyMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_string: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesString, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi index 8eecdf134c0..6a78b3954b8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_class.pyi @@ -313,7 +313,7 @@ class AdditionalPropertiesClass( empty_map: typing.Union[MetaOapg.Properties.EmptyMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_string: typing.Union[MetaOapg.Properties.MapWithUndeclaredPropertiesString, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py index b07c8f4313d..d15afde2aa1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.py @@ -94,7 +94,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -147,7 +147,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -186,7 +186,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesValidator': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi index baa6f34c3f6..bd58e78e9e0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/additional_properties_validator.pyi @@ -91,7 +91,7 @@ class AdditionalPropertiesValidator( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -142,7 +142,7 @@ class AdditionalPropertiesValidator( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -181,7 +181,7 @@ class AdditionalPropertiesValidator( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalPropertiesValidator': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py index cb2d939ae18..3cca15976ec 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.py @@ -103,7 +103,7 @@ def __new__( className: typing.Union[MetaOapg.Properties.ClassName, str, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Animal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi index 88dae5af4a0..74b07464baa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/animal.pyi @@ -102,7 +102,7 @@ class Animal( className: typing.Union[MetaOapg.Properties.ClassName, str, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Animal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py index 86605d163dc..bbcfe1ddd7e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.py @@ -54,7 +54,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Uuid': return super().__new__( cls, @@ -79,7 +79,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Date': return super().__new__( cls, @@ -104,7 +104,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DateTime': return super().__new__( cls, @@ -129,7 +129,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Number': return super().__new__( cls, @@ -153,7 +153,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Binary': return super().__new__( cls, @@ -177,7 +177,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int32': return super().__new__( cls, @@ -201,7 +201,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int64': return super().__new__( cls, @@ -225,7 +225,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Double': return super().__new__( cls, @@ -249,7 +249,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Float': return super().__new__( cls, @@ -375,7 +375,7 @@ def __new__( int64: typing.Union[MetaOapg.Properties.Int64, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, double: typing.Union[MetaOapg.Properties.Double, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeAndFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi index 2c88a32a470..53a0ef42ecd 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_and_format.pyi @@ -53,7 +53,7 @@ class AnyTypeAndFormat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Uuid': return super().__new__( cls, @@ -78,7 +78,7 @@ class AnyTypeAndFormat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Date': return super().__new__( cls, @@ -103,7 +103,7 @@ class AnyTypeAndFormat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DateTime': return super().__new__( cls, @@ -128,7 +128,7 @@ class AnyTypeAndFormat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Number': return super().__new__( cls, @@ -152,7 +152,7 @@ class AnyTypeAndFormat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Binary': return super().__new__( cls, @@ -176,7 +176,7 @@ class AnyTypeAndFormat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int32': return super().__new__( cls, @@ -200,7 +200,7 @@ class AnyTypeAndFormat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Int64': return super().__new__( cls, @@ -224,7 +224,7 @@ class AnyTypeAndFormat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Double': return super().__new__( cls, @@ -248,7 +248,7 @@ class AnyTypeAndFormat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> '_Float': return super().__new__( cls, @@ -374,7 +374,7 @@ class AnyTypeAndFormat( int64: typing.Union[MetaOapg.Properties.Int64, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, double: typing.Union[MetaOapg.Properties.Double, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeAndFormat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py index 323b9dd636e..e380ed0088b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.py @@ -42,7 +42,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeNotString': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi index 323b9dd636e..e380ed0088b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/any_type_not_string.pyi @@ -42,7 +42,7 @@ class AnyTypeNotString( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeNotString': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py index 3dcaa5c5482..fde689f8ce9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.py @@ -100,7 +100,7 @@ def __new__( type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, message: typing.Union[MetaOapg.Properties.Message, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApiResponse': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi index ee892666033..ae919e8d9db 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/api_response.pyi @@ -99,7 +99,7 @@ class ApiResponse( type: typing.Union[MetaOapg.Properties.Type, str, schemas.Unset] = schemas.unset, message: typing.Union[MetaOapg.Properties.Message, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApiResponse': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py index fc77e1b38ba..dd3888bc6c0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.py @@ -129,7 +129,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, None, ], origin: typing.Union[MetaOapg.Properties.Origin, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Apple': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi index 33915be5b34..2700d4f8474 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/apple.pyi @@ -110,7 +110,7 @@ class Apple( *_args: typing.Union[dict, frozendict.frozendict, None, ], origin: typing.Union[MetaOapg.Properties.Origin, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Apple': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py index 9ecea4f3153..b0a88a89cff 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.py @@ -124,7 +124,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], ArrayArrayNumber: typing.Union[MetaOapg.Properties.ArrayArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfArrayOfNumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi index 0105c7b9f24..b30f35145a9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_array_of_number_only.pyi @@ -123,7 +123,7 @@ class ArrayOfArrayOfNumberOnly( *_args: typing.Union[dict, frozendict.frozendict, ], ArrayArrayNumber: typing.Union[MetaOapg.Properties.ArrayArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfArrayOfNumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py index 12063525a32..2e282591909 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.py @@ -101,7 +101,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], ArrayNumber: typing.Union[MetaOapg.Properties.ArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfNumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi index d326d395185..a4458d6e044 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_of_number_only.pyi @@ -100,7 +100,7 @@ class ArrayOfNumberOnly( *_args: typing.Union[dict, frozendict.frozendict, ], ArrayNumber: typing.Union[MetaOapg.Properties.ArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayOfNumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py index 2f3134be1e9..0344dbaeacc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.py @@ -218,7 +218,7 @@ def __new__( array_array_of_integer: typing.Union[MetaOapg.Properties.ArrayArrayOfInteger, list, tuple, schemas.Unset] = schemas.unset, array_array_of_model: typing.Union[MetaOapg.Properties.ArrayArrayOfModel, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi index 2ec9830aed1..6367d989634 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/array_test.pyi @@ -217,7 +217,7 @@ class ArrayTest( array_array_of_integer: typing.Union[MetaOapg.Properties.ArrayArrayOfInteger, list, tuple, schemas.Unset] = schemas.unset, array_array_of_model: typing.Union[MetaOapg.Properties.ArrayArrayOfModel, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ArrayTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py index cf9959eb55d..a1bbeb81e05 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.py @@ -83,7 +83,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], lengthCm: typing.Union[MetaOapg.Properties.LengthCm, decimal.Decimal, int, float, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Banana': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi index 8472b1db708..7796c3081c2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/banana.pyi @@ -82,7 +82,7 @@ class Banana( *_args: typing.Union[dict, frozendict.frozendict, ], lengthCm: typing.Union[MetaOapg.Properties.LengthCm, decimal.Decimal, int, float, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Banana': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py index 03aff95ba49..5c8ceca403d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.py @@ -100,7 +100,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'BasquePig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi index e600d39e91f..59e0bda26d7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/basque_pig.pyi @@ -90,7 +90,7 @@ class BasquePig( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'BasquePig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py index fb7ced8ea16..db19ea8e5c1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.py @@ -133,7 +133,7 @@ def __new__( SCA_ETH_Flow_Points: typing.Union[MetaOapg.Properties.SCAETHFlowPoints, str, schemas.Unset] = schemas.unset, ATT_NAME: typing.Union[MetaOapg.Properties.ATTNAME, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Capitalization': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi index 7dfb709f4af..bba8535d6af 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/capitalization.pyi @@ -132,7 +132,7 @@ class Capitalization( SCA_ETH_Flow_Points: typing.Union[MetaOapg.Properties.SCAETHFlowPoints, str, schemas.Unset] = schemas.unset, ATT_NAME: typing.Union[MetaOapg.Properties.ATTNAME, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Capitalization': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py index f813aa0abc3..fbcb866dece 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.py @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], declawed: typing.Union[MetaOapg.Properties.Declawed, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -112,7 +112,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Cat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi index 9b114bdcb0e..3677461d1fe 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/cat.pyi @@ -92,7 +92,7 @@ class Cat( *_args: typing.Union[dict, frozendict.frozendict, ], declawed: typing.Union[MetaOapg.Properties.Declawed, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -111,7 +111,7 @@ class Cat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Cat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py index e88e6b8c520..b44bc015a6c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.py @@ -94,7 +94,7 @@ def __new__( name: typing.Union[MetaOapg.Properties.Name, str, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Category': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi index 5ac0b106cee..7984b8ff1eb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/category.pyi @@ -93,7 +93,7 @@ class Category( name: typing.Union[MetaOapg.Properties.Name, str, ], id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Category': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py index c5697f082a7..69f162553a0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.py @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -112,7 +112,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ChildCat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi index 997e8fd7577..df1f495bcb8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/child_cat.pyi @@ -92,7 +92,7 @@ class ChildCat( *_args: typing.Union[dict, frozendict.frozendict, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -111,7 +111,7 @@ class ChildCat( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ChildCat': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py index 750fe48926e..24a6c99896c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.py @@ -81,7 +81,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _class: typing.Union[MetaOapg.Properties._Class, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ClassModel': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi index 750fe48926e..24a6c99896c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/class_model.pyi @@ -81,7 +81,7 @@ class ClassModel( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _class: typing.Union[MetaOapg.Properties._Class, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ClassModel': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py index 3b4b363c1f9..a9c399d1a98 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.py @@ -78,7 +78,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], client: typing.Union[MetaOapg.Properties.Client, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Client': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi index 0fe1139a5f5..5c8bc0559c2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/client.pyi @@ -77,7 +77,7 @@ class Client( *_args: typing.Union[dict, frozendict.frozendict, ], client: typing.Union[MetaOapg.Properties.Client, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Client': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py index 6f4aa25248f..07ed026ee99 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.py @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -129,7 +129,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComplexQuadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi index d0cf23b328b..79be1b79c7b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/complex_quadrilateral.pyi @@ -100,7 +100,7 @@ class ComplexQuadrilateral( *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -119,7 +119,7 @@ class ComplexQuadrilateral( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComplexQuadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py index 39f1957b745..065872e46cd 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.py @@ -100,7 +100,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedAnyOfDifferentTypesNoValidations': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi index 39f1957b745..065872e46cd 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi @@ -100,7 +100,7 @@ class ComposedAnyOfDifferentTypesNoValidations( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedAnyOfDifferentTypesNoValidations': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py index c0775539348..0fef1d0a45b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.py @@ -49,7 +49,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedObject': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi index c0775539348..0fef1d0a45b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_object.pyi @@ -49,7 +49,7 @@ class ComposedObject( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedObject': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py index 09174f02a78..8dcfd9d12c3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.py @@ -65,7 +65,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf4': return super().__new__( cls, @@ -129,7 +129,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedOneOfDifferentTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi index 466afc658c6..a471f465468 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/composed_one_of_different_types.pyi @@ -59,7 +59,7 @@ class ComposedOneOfDifferentTypes( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'OneOf4': return super().__new__( cls, @@ -114,7 +114,7 @@ class ComposedOneOfDifferentTypes( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ComposedOneOfDifferentTypes': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py index 8dbd76e829f..a874f1b4c2e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.py @@ -100,7 +100,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DanishPig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi index 2accf725503..59d3c9768a8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/danish_pig.pyi @@ -90,7 +90,7 @@ class DanishPig( *_args: typing.Union[dict, frozendict.frozendict, ], className: typing.Union[MetaOapg.Properties.ClassName, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'DanishPig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py index c05be6fb21e..fa4ebd14499 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.py @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], breed: typing.Union[MetaOapg.Properties.Breed, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -112,7 +112,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Dog': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi index 410454e16db..f805d96c31c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/dog.pyi @@ -92,7 +92,7 @@ class Dog( *_args: typing.Union[dict, frozendict.frozendict, ], breed: typing.Union[MetaOapg.Properties.Breed, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -111,7 +111,7 @@ class Dog( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Dog': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py index 13485545690..8ff29dc66ae 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.py @@ -156,7 +156,7 @@ def __new__( just_symbol: typing.Union[MetaOapg.Properties.JustSymbol, str, schemas.Unset] = schemas.unset, array_enum: typing.Union[MetaOapg.Properties.ArrayEnum, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumArrays': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi index fb40ea3d8dc..6acfd1290e9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_arrays.pyi @@ -135,7 +135,7 @@ class EnumArrays( just_symbol: typing.Union[MetaOapg.Properties.JustSymbol, str, schemas.Unset] = schemas.unset, array_enum: typing.Union[MetaOapg.Properties.ArrayEnum, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumArrays': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py index 1d241822997..e10462240b9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.py @@ -286,7 +286,7 @@ def __new__( IntegerEnumWithDefaultValue: typing.Union['integer_enum_with_default_value.IntegerEnumWithDefaultValue', schemas.Unset] = schemas.unset, IntegerEnumOneValue: typing.Union['integer_enum_one_value.IntegerEnumOneValue', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi index a142d8c7a87..093d597acdd 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/enum_test.pyi @@ -241,7 +241,7 @@ class EnumTest( IntegerEnumWithDefaultValue: typing.Union['integer_enum_with_default_value.IntegerEnumWithDefaultValue', schemas.Unset] = schemas.unset, IntegerEnumOneValue: typing.Union['integer_enum_one_value.IntegerEnumOneValue', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EnumTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py index 28a61bdcbbc..9e7f3cf4e23 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.py @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -129,7 +129,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EquilateralTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi index 95684b92aa1..eab5c1247cc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/equilateral_triangle.pyi @@ -100,7 +100,7 @@ class EquilateralTriangle( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -119,7 +119,7 @@ class EquilateralTriangle( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'EquilateralTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py index 91782295ed2..7e73d2d5df3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.py @@ -80,7 +80,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], sourceURI: typing.Union[MetaOapg.Properties.SourceURI, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'File': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi index 1b507097598..c153f1fe340 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file.pyi @@ -79,7 +79,7 @@ class File( *_args: typing.Union[dict, frozendict.frozendict, ], sourceURI: typing.Union[MetaOapg.Properties.SourceURI, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'File': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py index c51d10c9275..7c8590f25de 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.py @@ -118,7 +118,7 @@ def __new__( file: typing.Union['file.File', schemas.Unset] = schemas.unset, files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FileSchemaTestClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi index 3148798965a..31e5cffd8fb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/file_schema_test_class.pyi @@ -117,7 +117,7 @@ class FileSchemaTestClass( file: typing.Union['file.File', schemas.Unset] = schemas.unset, files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FileSchemaTestClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py index 1affe1fd338..8cf1842f23a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.py @@ -81,7 +81,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union['bar.Bar', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Foo': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi index b3e8e81ec3c..138b2f38771 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/foo.pyi @@ -80,7 +80,7 @@ class Foo( *_args: typing.Union[dict, frozendict.frozendict, ], bar: typing.Union['bar.Bar', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Foo': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py index c10a2f0c1b4..6703af59e5f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.py @@ -456,7 +456,7 @@ def __new__( pattern_with_digits_and_delimiter: typing.Union[MetaOapg.Properties.PatternWithDigitsAndDelimiter, str, schemas.Unset] = schemas.unset, noneProp: typing.Union[MetaOapg.Properties.NoneProp, None, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FormatTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi index fe400bdfd46..98d6718c606 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/format_test.pyi @@ -376,7 +376,7 @@ class FormatTest( pattern_with_digits_and_delimiter: typing.Union[MetaOapg.Properties.PatternWithDigitsAndDelimiter, str, schemas.Unset] = schemas.unset, noneProp: typing.Union[MetaOapg.Properties.NoneProp, None, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FormatTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py index 88588ef5bb5..104608ab312 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.py @@ -89,7 +89,7 @@ def __new__( data: typing.Union[MetaOapg.Properties.Data, str, schemas.Unset] = schemas.unset, id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FromSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi index e8b9eca480d..abc586916cb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/from_schema.pyi @@ -88,7 +88,7 @@ class FromSchema( data: typing.Union[MetaOapg.Properties.Data, str, schemas.Unset] = schemas.unset, id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FromSchema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py index 227adef9ab9..756e37dd0ad 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.py @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Fruit': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi index 227adef9ab9..756e37dd0ad 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit.pyi @@ -93,7 +93,7 @@ class Fruit( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Fruit': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py index adbb82c9e46..59f6564223e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.py @@ -57,7 +57,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FruitReq': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi index adbb82c9e46..59f6564223e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/fruit_req.pyi @@ -57,7 +57,7 @@ class FruitReq( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'FruitReq': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py index 677f2c82e3e..3f0e6959465 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.py @@ -93,7 +93,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GmFruit': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi index 677f2c82e3e..3f0e6959465 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/gm_fruit.pyi @@ -93,7 +93,7 @@ class GmFruit( *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.Properties.Color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GmFruit': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py index 4c668524d50..ea3d8c31ba5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.py @@ -92,7 +92,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], pet_type: typing.Union[MetaOapg.Properties.PetType, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GrandparentAnimal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi index 263d9f19bf3..6cd0b979682 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/grandparent_animal.pyi @@ -91,7 +91,7 @@ class GrandparentAnimal( *_args: typing.Union[dict, frozendict.frozendict, ], pet_type: typing.Union[MetaOapg.Properties.PetType, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'GrandparentAnimal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py index 142517f4d73..3cd0549188a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.py @@ -89,7 +89,7 @@ def __new__( bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HasOnlyReadOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi index a32f567fec0..803256277d9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/has_only_read_only.pyi @@ -88,7 +88,7 @@ class HasOnlyReadOnly( bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, foo: typing.Union[MetaOapg.Properties.Foo, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HasOnlyReadOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py index 86dc9592c1c..a314ee6899f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.py @@ -106,7 +106,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], NullableMessage: typing.Union[MetaOapg.Properties.NullableMessage, None, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HealthCheckResult': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi index 17d95ab852d..af427bb80a7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/health_check_result.pyi @@ -105,7 +105,7 @@ class HealthCheckResult( *_args: typing.Union[dict, frozendict.frozendict, ], NullableMessage: typing.Union[MetaOapg.Properties.NullableMessage, None, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'HealthCheckResult': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py index f2f1dde1dec..412ba33623e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.py @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -129,7 +129,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'IsoscelesTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi index 5ffec1d18bb..e045968c386 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/isosceles_triangle.pyi @@ -100,7 +100,7 @@ class IsoscelesTriangle( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -119,7 +119,7 @@ class IsoscelesTriangle( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'IsoscelesTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py index 291bb193b61..f077592790f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.py @@ -69,7 +69,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi index 291bb193b61..f077592790f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/json_patch_request.pyi @@ -69,7 +69,7 @@ class JSONPatchRequest( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py index 1d34aa65484..51da6f7e3cb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.py @@ -70,7 +70,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Mammal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi index 1d34aa65484..51da6f7e3cb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mammal.pyi @@ -70,7 +70,7 @@ class Mammal( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Mammal': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py index 9feec63d957..95c5f0f7ef7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.py @@ -252,7 +252,7 @@ def __new__( direct_map: typing.Union[MetaOapg.Properties.DirectMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, indirect_map: typing.Union['string_boolean_map.StringBooleanMap', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MapTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi index d1eaedc7ff7..cef6092d940 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/map_test.pyi @@ -237,7 +237,7 @@ class MapTest( direct_map: typing.Union[MetaOapg.Properties.DirectMap, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, indirect_map: typing.Union['string_boolean_map.StringBooleanMap', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MapTest': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py index 601ef387461..c29bd041304 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py @@ -132,7 +132,7 @@ def __new__( dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, map: typing.Union[MetaOapg.Properties.Map, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MixedPropertiesAndAdditionalPropertiesClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi index 37f71eb72d5..e94ca3720a6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi @@ -130,7 +130,7 @@ class MixedPropertiesAndAdditionalPropertiesClass( dateTime: typing.Union[MetaOapg.Properties.DateTime, str, datetime.datetime, schemas.Unset] = schemas.unset, map: typing.Union[MetaOapg.Properties.Map, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MixedPropertiesAndAdditionalPropertiesClass': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py index 752a21235ea..c3c76dd2afa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.py @@ -99,7 +99,7 @@ def __new__( amount: typing.Union[MetaOapg.Properties.Amount, str, ], currency: 'currency.Currency', _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Money': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi index 53965837e64..ab418e3ed24 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/money.pyi @@ -98,7 +98,7 @@ class Money( amount: typing.Union[MetaOapg.Properties.Amount, str, ], currency: 'currency.Currency', _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Money': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py index 9553cf612ac..a1026f87ab7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.py @@ -107,7 +107,7 @@ def __new__( name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, ], snake_case: typing.Union[MetaOapg.Properties.SnakeCase, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Name': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi index 9553cf612ac..a1026f87ab7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/name.pyi @@ -107,7 +107,7 @@ class Name( name: typing.Union[MetaOapg.Properties.Name, decimal.Decimal, int, ], snake_case: typing.Union[MetaOapg.Properties.SnakeCase, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Name': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py index 38decc5ef81..40a345c964b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.py @@ -268,7 +268,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -318,7 +318,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -413,7 +413,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -472,7 +472,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -535,7 +535,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi index 818d55d667b..90770aa976d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_class.pyi @@ -267,7 +267,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -317,7 +317,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Items': return super().__new__( cls, @@ -412,7 +412,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -470,7 +470,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, @@ -533,7 +533,7 @@ class NullableClass( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AdditionalProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py index 44edf8d2fef..00b66370d97 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.py @@ -59,7 +59,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NullableShape': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi index 44edf8d2fef..00b66370d97 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/nullable_shape.pyi @@ -59,7 +59,7 @@ class NullableShape( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NullableShape': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py index 99d67d24432..9f7883b2def 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.py @@ -78,7 +78,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], JustNumber: typing.Union[MetaOapg.Properties.JustNumber, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi index 479955e30a6..b5d43f88b57 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/number_only.pyi @@ -77,7 +77,7 @@ class NumberOnly( *_args: typing.Union[dict, frozendict.frozendict, ], JustNumber: typing.Union[MetaOapg.Properties.JustNumber, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'NumberOnly': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py index 6c833b7fa70..b81b1fc7d5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.py @@ -96,7 +96,7 @@ def __new__( arg: typing.Union[MetaOapg.Properties.Arg, str, ], args: typing.Union[MetaOapg.Properties.Args, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithArgAndArgsProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi index 1b0457ed945..1edb57b6fd1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi @@ -95,7 +95,7 @@ class ObjectModelWithArgAndArgsProperties( arg: typing.Union[MetaOapg.Properties.Arg, str, ], args: typing.Union[MetaOapg.Properties.Args, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithArgAndArgsProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py index 25aa5879640..4eef533bbd8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.py @@ -111,7 +111,7 @@ def __new__( myString: typing.Union['string.String', schemas.Unset] = schemas.unset, myBoolean: typing.Union['boolean.Boolean', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithRefProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi index 75dcbffc7ae..a0d974f95cb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_model_with_ref_props.pyi @@ -110,7 +110,7 @@ class ObjectModelWithRefProps( myString: typing.Union['string.String', schemas.Unset] = schemas.unset, myBoolean: typing.Union['boolean.Boolean', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectModelWithRefProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py index ad6b7912bb8..8843911195a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py @@ -107,7 +107,7 @@ def __new__( test: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -127,7 +127,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithAllOfWithReqTestPropFromUnsetAddProp': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi index c23334f25a6..2e05893c9cf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi @@ -106,7 +106,7 @@ class ObjectWithAllOfWithReqTestPropFromUnsetAddProp( test: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -126,7 +126,7 @@ class ObjectWithAllOfWithReqTestPropFromUnsetAddProp( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithAllOfWithReqTestPropFromUnsetAddProp': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py index 4c3e5644ef4..42748dae5ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.py @@ -106,7 +106,7 @@ def __new__( width: typing.Union[MetaOapg.Properties.Width, str, schemas.Unset] = schemas.unset, cost: typing.Union['money.Money', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDecimalProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi index fbdf6ab7fc2..8a5c2e7d76f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_decimal_properties.pyi @@ -105,7 +105,7 @@ class ObjectWithDecimalProperties( width: typing.Union[MetaOapg.Properties.Width, str, schemas.Unset] = schemas.unset, cost: typing.Union['money.Money', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDecimalProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py index 1bd7ad5d35f..f5bcc57e7cb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.py @@ -103,7 +103,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDifficultlyNamedProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi index b79d168e133..f2f280bb651 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_difficultly_named_props.pyi @@ -102,7 +102,7 @@ class ObjectWithDifficultlyNamedProps( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithDifficultlyNamedProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py index 7fa58c34fb5..c28c7af48c8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.py @@ -69,7 +69,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -117,7 +117,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInlineCompositionProperty': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi index fa9214a0bba..14063c12db2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_inline_composition_property.pyi @@ -62,7 +62,7 @@ class ObjectWithInlineCompositionProperty( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -110,7 +110,7 @@ class ObjectWithInlineCompositionProperty( *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInlineCompositionProperty': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py index 8229b3527a3..18b8a53b31e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.py @@ -98,7 +98,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInvalidNamedRefedProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi index ed1d6f05afc..26a5c35cc34 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi @@ -97,7 +97,7 @@ class ObjectWithInvalidNamedRefedProperties( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithInvalidNamedRefedProperties': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py index 00acdbedbd9..8297af42474 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.py @@ -78,7 +78,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], test: typing.Union[MetaOapg.Properties.Test, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithOptionalTestProp': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi index 90f6d0bfe38..7d942388ccc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_optional_test_prop.pyi @@ -77,7 +77,7 @@ class ObjectWithOptionalTestProp( *_args: typing.Union[dict, frozendict.frozendict, ], test: typing.Union[MetaOapg.Properties.Test, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithOptionalTestProp': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py index c8caf76b226..2ba22f1b3a0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.py @@ -41,7 +41,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithValidations': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi index 3e68a8a5e57..29e8accd9c9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/object_with_validations.pyi @@ -36,7 +36,7 @@ class ObjectWithValidations( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithValidations': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py index 7b5e8ad234b..d37a35f4e84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.py @@ -160,7 +160,7 @@ def __new__( status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, complete: typing.Union[MetaOapg.Properties.Complete, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Order': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi index 6a3abe1c25f..7f29fa31874 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/order.pyi @@ -148,7 +148,7 @@ class Order( status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, complete: typing.Union[MetaOapg.Properties.Complete, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Order': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py index 4f09205ce65..1a2b1101b2f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.py @@ -60,7 +60,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ParentPet': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi index 4f09205ce65..1a2b1101b2f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/parent_pet.pyi @@ -60,7 +60,7 @@ class ParentPet( cls, *_args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ParentPet': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py index ee1904bbfbf..e1ebf35ac69 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.py @@ -221,7 +221,7 @@ def __new__( tags: typing.Union[MetaOapg.Properties.Tags, list, tuple, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pet': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi index 6a70856d360..1b7a94ed05d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pet.pyi @@ -209,7 +209,7 @@ class Pet( tags: typing.Union[MetaOapg.Properties.Tags, list, tuple, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pet': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py index 7b888262d9b..d16157e29e5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.py @@ -64,7 +64,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi index 7b888262d9b..d16157e29e5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/pig.pyi @@ -64,7 +64,7 @@ class Pig( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Pig': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py index cffaaa07921..a6aff5414c1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.py @@ -94,7 +94,7 @@ def __new__( name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, enemyPlayer: typing.Union['Player', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Player': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi index bdab2a9b347..c0de2c01445 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/player.pyi @@ -93,7 +93,7 @@ class Player( name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, enemyPlayer: typing.Union['Player', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Player': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py index cf3d553f17f..9ebe7e07ca4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.py @@ -64,7 +64,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Quadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi index cf3d553f17f..9ebe7e07ca4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral.pyi @@ -64,7 +64,7 @@ class Quadrilateral( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Quadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py index 76eb25f390a..e9b6244b7b2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.py @@ -114,7 +114,7 @@ def __new__( quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'QuadrilateralInterface': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi index 5c7780cb890..b039f0e452a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/quadrilateral_interface.pyi @@ -105,7 +105,7 @@ class QuadrilateralInterface( quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, ], shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'QuadrilateralInterface': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py index fe7d473f615..3744b6ed0b2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.py @@ -89,7 +89,7 @@ def __new__( bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, baz: typing.Union[MetaOapg.Properties.Baz, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReadOnlyFirst': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi index c1b0108e9c6..3cdf0a82619 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/read_only_first.pyi @@ -88,7 +88,7 @@ class ReadOnlyFirst( bar: typing.Union[MetaOapg.Properties.Bar, str, schemas.Unset] = schemas.unset, baz: typing.Union[MetaOapg.Properties.Baz, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReadOnlyFirst': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py index 960a0384629..e99cf5bebd1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.py @@ -86,7 +86,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], validName: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReqPropsFromUnsetAddProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi index 252e1056ac9..c87f3b36fd6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/req_props_from_unset_add_props.pyi @@ -85,7 +85,7 @@ class ReqPropsFromUnsetAddProps( *_args: typing.Union[dict, frozendict.frozendict, ], validName: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ReqPropsFromUnsetAddProps': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py index 39a90b3b44d..36402ad82b7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.py @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -129,7 +129,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ScaleneTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi index d40f209a066..e9ddcbba2f0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/scalene_triangle.pyi @@ -100,7 +100,7 @@ class ScaleneTriangle( *_args: typing.Union[dict, frozendict.frozendict, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -119,7 +119,7 @@ class ScaleneTriangle( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ScaleneTriangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py index d292b109f21..900ca4f70e2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.py @@ -64,7 +64,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Shape': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi index d292b109f21..900ca4f70e2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape.pyi @@ -64,7 +64,7 @@ class Shape( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Shape': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py index ae736732a4a..b16abe77fac 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.py @@ -68,7 +68,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ShapeOrNull': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi index ae736732a4a..b16abe77fac 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/shape_or_null.pyi @@ -68,7 +68,7 @@ class ShapeOrNull( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ShapeOrNull': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py index 50954cdbd8a..757220706eb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.py @@ -110,7 +110,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -129,7 +129,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SimpleQuadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi index 6e6cbeb1a29..4d40dc086ba 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/simple_quadrilateral.pyi @@ -100,7 +100,7 @@ class SimpleQuadrilateral( *_args: typing.Union[dict, frozendict.frozendict, ], quadrilateralType: typing.Union[MetaOapg.Properties.QuadrilateralType, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AllOf1': return super().__new__( cls, @@ -119,7 +119,7 @@ class SimpleQuadrilateral( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SimpleQuadrilateral': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py index 688929d29e3..755856e031f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.py @@ -50,7 +50,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeObject': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi index 688929d29e3..755856e031f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/some_object.pyi @@ -50,7 +50,7 @@ class SomeObject( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeObject': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py index 75b9204b163..d97cdb9d171 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.py @@ -80,7 +80,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], a: typing.Union[MetaOapg.Properties.A, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SpecialModelName': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi index 1344464d53a..483685f42e7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/special_model_name.pyi @@ -79,7 +79,7 @@ class SpecialModelName( *_args: typing.Union[dict, frozendict.frozendict, ], a: typing.Union[MetaOapg.Properties.A, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SpecialModelName': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py index 5381cd37890..06a373e11f4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.py @@ -89,7 +89,7 @@ def __new__( id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Tag': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi index 790cc933c6a..19f163c7506 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/tag.pyi @@ -88,7 +88,7 @@ class Tag( id: typing.Union[MetaOapg.Properties.Id, decimal.Decimal, int, schemas.Unset] = schemas.unset, name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Tag': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py index d3615f83022..1cdd2661274 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.py @@ -70,7 +70,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Triangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi index d3615f83022..1cdd2661274 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle.pyi @@ -70,7 +70,7 @@ class Triangle( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Triangle': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py index a70eb62ebd0..3cdbfa2873c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.py @@ -114,7 +114,7 @@ def __new__( shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'TriangleInterface': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi index 6deffa2fd53..bc91975284d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/triangle_interface.pyi @@ -105,7 +105,7 @@ class TriangleInterface( shapeType: typing.Union[MetaOapg.Properties.ShapeType, str, ], triangleType: typing.Union[MetaOapg.Properties.TriangleType, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'TriangleInterface': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py index d6065ec1e80..556c2cb9ca4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.py @@ -67,7 +67,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithNoDeclaredPropsNullable': return super().__new__( cls, @@ -92,7 +92,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeExceptNullProp': return super().__new__( cls, @@ -261,7 +261,7 @@ def __new__( anyTypeExceptNullProp: typing.Union[MetaOapg.Properties.AnyTypeExceptNullProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, anyTypePropNullable: typing.Union[MetaOapg.Properties.AnyTypePropNullable, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'User': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi index 923cdbb0f8e..8ffac09429b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/user.pyi @@ -66,7 +66,7 @@ class User( cls, *_args: typing.Union[dict, frozendict.frozendict, None, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ObjectWithNoDeclaredPropsNullable': return super().__new__( cls, @@ -91,7 +91,7 @@ class User( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'AnyTypeExceptNullProp': return super().__new__( cls, @@ -260,7 +260,7 @@ class User( anyTypeExceptNullProp: typing.Union[MetaOapg.Properties.AnyTypeExceptNullProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, anyTypePropNullable: typing.Union[MetaOapg.Properties.AnyTypePropNullable, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'User': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py index 2a03481e658..1d02584aa09 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.py @@ -122,7 +122,7 @@ def __new__( hasBaleen: typing.Union[MetaOapg.Properties.HasBaleen, bool, schemas.Unset] = schemas.unset, hasTeeth: typing.Union[MetaOapg.Properties.HasTeeth, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Whale': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi index a1cbc0fdde7..f228a2fe869 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/components/schema/whale.pyi @@ -112,7 +112,7 @@ class Whale( hasBaleen: typing.Union[MetaOapg.Properties.HasBaleen, bool, schemas.Unset] = schemas.unset, hasTeeth: typing.Union[MetaOapg.Properties.HasTeeth, bool, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Whale': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py index 4d385b856ee..0466eb024ed 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.py @@ -156,7 +156,7 @@ def __new__( enum_form_string_array: typing.Union[MetaOapg.Properties.EnumFormStringArray, list, tuple, schemas.Unset] = schemas.unset, enum_form_string: typing.Union[MetaOapg.Properties.EnumFormString, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi index cc6fe6e81c8..0ad44e2ca44 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/request_body/application_x_www_form_urlencoded.pyi @@ -134,7 +134,7 @@ class ApplicationXWwwFormUrlencoded( enum_form_string_array: typing.Union[MetaOapg.Properties.EnumFormStringArray, list, tuple, schemas.Unset] = schemas.unset, enum_form_string: typing.Union[MetaOapg.Properties.EnumFormString, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py index 435e5c549a6..c93db4fd8e0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.py @@ -331,7 +331,7 @@ def __new__( password: typing.Union[MetaOapg.Properties.Password, str, schemas.Unset] = schemas.unset, callback: typing.Union[MetaOapg.Properties.Callback, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi index 009fee3c39a..1868c597476 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/request_body/application_x_www_form_urlencoded.pyi @@ -265,7 +265,7 @@ class ApplicationXWwwFormUrlencoded( password: typing.Union[MetaOapg.Properties.Password, str, schemas.Unset] = schemas.unset, callback: typing.Union[MetaOapg.Properties.Callback, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py index 2c3ff50e547..92386ccbb3d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.py @@ -53,7 +53,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi index dffc8f46e87..5b2eb9bd71e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_0/schema.pyi @@ -47,7 +47,7 @@ class Schema( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py index 0f182d851f3..1576a1d96f5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.py @@ -64,7 +64,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -112,7 +112,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi index 44c8348f708..52575f1de84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/parameter_1/schema.pyi @@ -57,7 +57,7 @@ class Schema( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -105,7 +105,7 @@ class Schema( *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py index f3e4ebfde71..7fd4fc47124 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.py @@ -53,7 +53,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi index ab71708d971..07de20480d6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/application_json.pyi @@ -47,7 +47,7 @@ class ApplicationJson( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py index 9f92ca0fa3e..f00a59c4eee 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.py @@ -64,7 +64,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -112,7 +112,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi index ed639bfd437..78022db420a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/request_body/multipart_form_data.pyi @@ -57,7 +57,7 @@ class MultipartFormData( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -105,7 +105,7 @@ class MultipartFormData( *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py index f3e4ebfde71..7fd4fc47124 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.py @@ -53,7 +53,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi index ab71708d971..07de20480d6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/application_json.pyi @@ -47,7 +47,7 @@ class ApplicationJson( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py index 9f92ca0fa3e..f00a59c4eee 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.py @@ -64,7 +64,7 @@ def __new__( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -112,7 +112,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi index ed639bfd437..78022db420a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition/post/response_for_200/multipart_form_data.pyi @@ -57,7 +57,7 @@ class MultipartFormData( cls, *_args: typing.Union[dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'SomeProp': return super().__new__( cls, @@ -105,7 +105,7 @@ class MultipartFormData( *_args: typing.Union[dict, frozendict.frozendict, ], someProp: typing.Union[MetaOapg.Properties.SomeProp, dict, frozendict.frozendict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py index 5498336e5af..aacb8104745 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.py @@ -91,7 +91,7 @@ def __new__( param: typing.Union[MetaOapg.Properties.Param, str, ], param2: typing.Union[MetaOapg.Properties.Param2, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi index 2758e5a64ee..bcb4fbe3b5c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/request_body/application_x_www_form_urlencoded.pyi @@ -90,7 +90,7 @@ class ApplicationXWwwFormUrlencoded( param: typing.Union[MetaOapg.Properties.Param, str, ], param2: typing.Union[MetaOapg.Properties.Param2, str, ], _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py index 3dd1223a010..3a306b7356e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.py @@ -73,7 +73,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], keyword: typing.Union[MetaOapg.Properties.Keyword, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi index 608a522e729..6dc34d8f08f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/parameter_0/schema.pyi @@ -72,7 +72,7 @@ class Schema( *_args: typing.Union[dict, frozendict.frozendict, ], keyword: typing.Union[MetaOapg.Properties.Keyword, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'Schema': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py index 0a5306313cc..840ae3d999b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.py @@ -89,7 +89,7 @@ def __new__( requiredFile: typing.Union[MetaOapg.Properties.RequiredFile, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi index 40b849cf26e..584b5ab459b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/request_body/multipart_form_data.pyi @@ -88,7 +88,7 @@ class MultipartFormData( requiredFile: typing.Union[MetaOapg.Properties.RequiredFile, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py index 7151ed50ecc..2789cd5b86c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.py @@ -89,7 +89,7 @@ def __new__( file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi index c3633d9b3a3..26d812e9b27 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/request_body/multipart_form_data.pyi @@ -88,7 +88,7 @@ class MultipartFormData( file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, ], additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py index 6bc42827a06..b971b9d605e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.py @@ -96,7 +96,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi index 4db49365411..50bf6a1c157 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/request_body/multipart_form_data.pyi @@ -95,7 +95,7 @@ class MultipartFormData( *_args: typing.Union[dict, frozendict.frozendict, ], files: typing.Union[MetaOapg.Properties.Files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py index 47875ae4c06..fcc3409adbf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.py @@ -76,7 +76,7 @@ def __new__( *_args: typing.Union[dict, frozendict.frozendict, ], string: typing.Union['foo.Foo', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi index f501b8b2748..58daffac96f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/response_for_default/application_json.pyi @@ -75,7 +75,7 @@ class ApplicationJson( *_args: typing.Union[dict, frozendict.frozendict, ], string: typing.Union['foo.Foo', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationJson': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py index 53320170994..3c2930f3f79 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.py @@ -84,7 +84,7 @@ def __new__( name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi index 4a1ed1e6e5b..309fff1e2a0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/request_body/application_x_www_form_urlencoded.pyi @@ -83,7 +83,7 @@ class ApplicationXWwwFormUrlencoded( name: typing.Union[MetaOapg.Properties.Name, str, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.Properties.Status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'ApplicationXWwwFormUrlencoded': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py index 01dc6cc88aa..9e84fbdcde1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.py @@ -84,7 +84,7 @@ def __new__( additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi index 31ff41efe37..4a6cc2878ee 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/request_body/multipart_form_data.pyi @@ -83,7 +83,7 @@ class MultipartFormData( additionalMetadata: typing.Union[MetaOapg.Properties.AdditionalMetadata, str, schemas.Unset] = schemas.unset, file: typing.Union[MetaOapg.Properties.File, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.configuration_module.Configuration] = None, - **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, io.FileIO, io.BufferedReader, schemas.Schema], + **kwargs: typing.Union[dict, frozendict.frozendict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.Schema], ) -> 'MultipartFormData': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python/petstore_api/schemas.py b/samples/openapi3/client/petstore/python/petstore_api/schemas.py index d2bdf038cbf..7d37d2fad98 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/schemas.py +++ b/samples/openapi3/client/petstore/python/petstore_api/schemas.py @@ -20,6 +20,7 @@ import uuid from dateutil import parser +from dateutil.parser.isoparser import _takes_ascii import frozendict from petstore_api import exceptions @@ -632,7 +633,7 @@ def __validate_numeric_format( class CustomIsoparser(parser.isoparser): - + @_takes_ascii def parse_isodatetime(self, dt_str): components, pos = self._parse_isodate(dt_str) if len(dt_str) > pos: @@ -650,6 +651,7 @@ def parse_isodatetime(self, dt_str): return datetime.datetime(*components) + @_takes_ascii def parse_isodate(self, datestr): components, pos = self._parse_isodate(datestr) @@ -1351,6 +1353,7 @@ def __new__( uuid.UUID, bool, None, + bytes, io.FileIO, io.BufferedReader, 'Schema', ], @@ -1369,6 +1372,7 @@ def __new__( uuid.UUID, bool, None, + bytes, io.FileIO, io.BufferedReader, 'Schema', Unset @@ -1949,6 +1953,7 @@ def cast_to_allowed_types( uuid.UUID, bool, None, + bytes, io.FileIO, io.BufferedReader, 'Schema', ], diff --git a/samples/openapi3/client/petstore/python/tests_manual/test_fake_api.py b/samples/openapi3/client/petstore/python/tests_manual/test_fake_api.py index ab0aa49bcac..398bd658d3e 100644 --- a/samples/openapi3/client/petstore/python/tests_manual/test_fake_api.py +++ b/samples/openapi3/client/petstore/python/tests_manual/test_fake_api.py @@ -261,7 +261,7 @@ def test_body_with_query_params(self): accept_content_type=None ) - assert isinstance(api_response.body, api_client.Unset) + assert isinstance(api_response.body, schemas.Unset) assert api_response.response.status == 200 def test_upload_download_file_tx_bytes_and_file(self): diff --git a/samples/openapi3/client/petstore/python/tests_manual/test_validate.py b/samples/openapi3/client/petstore/python/tests_manual/test_validate.py index 40dababdd43..19bd954f0b8 100644 --- a/samples/openapi3/client/petstore/python/tests_manual/test_validate.py +++ b/samples/openapi3/client/petstore/python/tests_manual/test_validate.py @@ -178,15 +178,15 @@ def test_list_validate_direct_instantiation(self): "_validate_oapg", side_effect=ArrayWithValidationsInItems.MetaOapg.Items._validate_oapg, ) as mock_inner_validate: - configuration = configuration.Configuration() - ArrayWithValidationsInItems([7], _configuration=configuration) + used_configuration = configuration.Configuration() + ArrayWithValidationsInItems([7], _configuration=used_configuration) mock_outer_validate.assert_called_once_with( (Decimal("7"),), - validation_metadata=ValidationMetadata(path_to_item=("args[0]",), configuration=configuration) + validation_metadata=ValidationMetadata(path_to_item=("args[0]",), configuration=used_configuration) ) mock_inner_validate.assert_called_once_with( Decimal("7"), - validation_metadata=ValidationMetadata(path_to_item=("args[0]", 0), configuration=configuration) + validation_metadata=ValidationMetadata(path_to_item=("args[0]", 0), configuration=used_configuration) ) def test_list_validate_direct_instantiation_cast_item(self): @@ -202,13 +202,13 @@ def test_list_validate_direct_instantiation_cast_item(self): "_validate_oapg", side_effect=ArrayWithValidationsInItems.MetaOapg.Items._validate_oapg, ) as mock_inner_validate: - configuration = configuration.Configuration() - ArrayWithValidationsInItems([item], _configuration=configuration) + used_configuration = configuration.Configuration() + ArrayWithValidationsInItems([item], _configuration=used_configuration) mock_outer_validate.assert_called_once_with( tuple([Decimal('7')]), validation_metadata=ValidationMetadata( path_to_item=("args[0]",), - configuration=configuration, + configuration=used_configuration, validated_path_to_schemas={('args[0]', 0): {ArrayWithValidationsInItems.MetaOapg.Items, Decimal}} ) ) @@ -225,15 +225,15 @@ def test_list_validate_from_openai_data_instantiation(self): "_validate_oapg", side_effect=ArrayWithValidationsInItems.MetaOapg.Items._validate_oapg, ) as mock_inner_validate: - configuration = configuration.Configuration() - ArrayWithValidationsInItems.from_openapi_data_oapg([7], _configuration=configuration) + used_configuration = configuration.Configuration() + ArrayWithValidationsInItems.from_openapi_data_oapg([7], _configuration=used_configuration) mock_outer_validate.assert_called_once_with( (Decimal("7"),), - validation_metadata=ValidationMetadata(path_to_item=("args[0]",), configuration=configuration) + validation_metadata=ValidationMetadata(path_to_item=("args[0]",), configuration=used_configuration) ) mock_inner_validate.assert_called_once_with( Decimal("7"), - validation_metadata=ValidationMetadata(path_to_item=("args[0]", 0), configuration=configuration) + validation_metadata=ValidationMetadata(path_to_item=("args[0]", 0), configuration=used_configuration) ) def test_dict_validate_direct_instantiation(self): @@ -243,20 +243,20 @@ def test_dict_validate_direct_instantiation(self): "_validate_oapg", side_effect=Bar._validate_oapg, ) as mock_inner_validate: - configuration = configuration.Configuration() - Foo(bar="a", _configuration=configuration) + used_configuration = configuration.Configuration() + Foo(bar="a", _configuration=used_configuration) mock_outer_validate.assert_called_once_with( frozendict.frozendict({"bar": "a"}), validation_metadata=ValidationMetadata( path_to_item=("args[0]",), - configuration=configuration + configuration=used_configuration ) ) mock_inner_validate.assert_called_once_with( "a", validation_metadata=ValidationMetadata( path_to_item=("args[0]", "bar"), - configuration=configuration + configuration=used_configuration ), ) @@ -269,13 +269,13 @@ def test_dict_validate_direct_instantiation_cast_item(self): "_validate_oapg", side_effect=Bar._validate_oapg, ) as mock_inner_validate: - configuration = configuration.Configuration() - Foo(bar=bar, _configuration=configuration) + used_configuration = configuration.Configuration() + Foo(bar=bar, _configuration=used_configuration) mock_outer_validate.assert_called_once_with( frozendict.frozendict(dict(bar='a')), validation_metadata=ValidationMetadata( path_to_item=('args[0]',), - configuration=configuration, + configuration=used_configuration, validated_path_to_schemas={('args[0]', 'bar'): {str, StrSchema}} ) ) @@ -288,20 +288,20 @@ def test_dict_validate_from_openapi_data_instantiation(self): "_validate_oapg", side_effect=Bar._validate_oapg, ) as mock_inner_validate: - configuration = configuration.Configuration() - Foo.from_openapi_data_oapg({"bar": "a"}, _configuration=configuration) + used_configuration = configuration.Configuration() + Foo.from_openapi_data_oapg({"bar": "a"}, _configuration=used_configuration) mock_outer_validate.assert_called_once_with( frozendict.frozendict({"bar": "a"}), validation_metadata=ValidationMetadata( path_to_item=("args[0]",), - configuration=configuration + configuration=used_configuration ) ) mock_inner_validate.assert_called_once_with( "a", validation_metadata=ValidationMetadata( path_to_item=("args[0]", "bar"), - configuration=configuration + configuration=used_configuration ), ) From 39e5968a8b0c7b39f06f9f69cb788dc7dd0a9fa6 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 29 Dec 2022 21:44:32 -0800 Subject: [PATCH 5/5] FIxes java test --- .../java/org/openapitools/codegen/DefaultGeneratorTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java index 9984cf1cb2f..531d5267125 100644 --- a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java +++ b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java @@ -739,7 +739,7 @@ public void testProcessUserDefinedTemplatesWithConfig() throws IOException { // Generated file should contain our custom packageName TestUtils.assertFileContains(apiClient.toPath(), - "from io.something import rest" + "from io.something import exceptions, rest, schemas" ); } finally { output.delete();