From e9fef9d7b43bfae7195ef41eb54af4571fdd2825 Mon Sep 17 00:00:00 2001 From: timonrieger Date: Tue, 28 Apr 2026 16:07:59 +0200 Subject: [PATCH] use builtin types for python --- docs/generators/python-aiohttp.md | 2 - docs/generators/python-blueplanet.md | 2 - docs/generators/python-fastapi.md | 2 - docs/generators/python-flask.md | 2 - docs/generators/python-pydantic-v1.md | 2 - docs/generators/python.md | 2 - .../openapitools/codegen/DefaultCodegen.java | 17 +- .../languages/AbstractPythonCodegen.java | 61 +- .../AbstractPythonConnexionServerCodegen.java | 6 - .../AbstractPythonPydanticV1Codegen.java | 50 +- .../languages/PythonClientCodegen.java | 5 +- .../languages/PythonFastAPIServerCodegen.java | 5 - .../PythonPydanticV1ClientCodegen.java | 5 +- .../python-aiohttp/controller.mustache | 5 +- .../resources/python-aiohttp/model.mustache | 2 - .../security_controller.mustache | 4 +- .../python-aiohttp/typing_utils.mustache | 8 +- .../resources/python-aiohttp/util.mustache | 2 +- .../controllers/controller.mustache | 4 +- .../models/base_model.mustache | 2 +- .../app/{{packageName}}/models/model.mustache | 2 - .../app/{{packageName}}/typing_utils.mustache | 8 +- .../resources/python-fastapi/api.mustache | 1 - .../python-fastapi/base_api.mustache | 4 +- .../python-fastapi/model_anyof.mustache | 8 +- .../python-fastapi/model_generic.mustache | 14 +- .../python-fastapi/model_oneof.mustache | 8 +- .../python-fastapi/security_api.mustache | 8 +- .../python-flask/base_model.mustache | 6 +- .../python-flask/controller.mustache | 8 +- .../resources/python-flask/model.mustache | 2 - .../python-flask/security_controller.mustache | 6 +- .../python-flask/typing_utils.mustache | 8 +- .../python-pydantic-v1/api_client.mustache | 8 +- .../python-pydantic-v1/api_response.mustache | 4 +- .../python-pydantic-v1/model_anyof.mustache | 4 +- .../python-pydantic-v1/model_generic.mustache | 2 +- .../python-pydantic-v1/model_oneof.mustache | 4 +- .../src/main/resources/python/api.mustache | 18 +- .../main/resources/python/api_client.mustache | 26 +- .../resources/python/configuration.mustache | 22 +- .../resources/python/model_anyof.mustache | 10 +- .../resources/python/model_generic.mustache | 18 +- .../resources/python/model_oneof.mustache | 10 +- .../resources/python/partial_api.mustache | 2 +- .../python/partial_api_args.mustache | 6 +- .../main/resources/python/signing.mustache | 4 +- .../python/PythonClientCodegenTest.java | 36 +- .../PythonFastAPIServerCodegenTest.java | 2 +- .../PythonPydanticV1ClientCodegenTest.java | 36 +- .../3_0/unit_test_spec/spec_writer.py | 48 +- .../docs/BodyApi.md | 4 +- .../docs/DefaultValue.md | 14 +- .../docs/Pet.md | 4 +- .../docs/Query.md | 2 +- .../docs/QueryApi.md | 12 +- ...lodeTrueArrayStringQueryObjectParameter.md | 2 +- .../openapi_client/api/auth_api.py | 82 +- .../openapi_client/api/body_api.py | 434 ++--- .../openapi_client/api/form_api.py | 122 +- .../openapi_client/api/header_api.py | 42 +- .../openapi_client/api/path_api.py | 42 +- .../openapi_client/api/query_api.py | 480 ++--- .../openapi_client/api_client.py | 26 +- .../openapi_client/configuration.py | 22 +- .../openapi_client/models/bird.py | 12 +- .../openapi_client/models/category.py | 12 +- .../openapi_client/models/data_query.py | 12 +- .../openapi_client/models/default_value.py | 26 +- .../models/number_properties_only.py | 12 +- .../openapi_client/models/pet.py | 16 +- .../openapi_client/models/query.py | 14 +- .../openapi_client/models/tag.py | 12 +- ...st_form_object_multipart_request_marker.py | 12 +- ...ue_object_all_of_query_object_parameter.py | 12 +- ...rue_array_string_query_object_parameter.py | 14 +- .../python-pydantic-v1/docs/BodyApi.md | 4 +- .../python-pydantic-v1/docs/DefaultValue.md | 14 +- .../echo_api/python-pydantic-v1/docs/Pet.md | 4 +- .../echo_api/python-pydantic-v1/docs/Query.md | 2 +- .../python-pydantic-v1/docs/QueryApi.md | 12 +- ...lodeTrueArrayStringQueryObjectParameter.md | 2 +- .../openapi_client/api/body_api.py | 10 +- .../openapi_client/api/query_api.py | 12 +- .../openapi_client/api_client.py | 8 +- .../openapi_client/api_response.py | 4 +- .../openapi_client/models/default_value.py | 2 +- .../openapi_client/models/pet.py | 2 +- .../openapi_client/models/query.py | 2 +- ...rue_array_string_query_object_parameter.py | 2 +- .../client/echo_api/python/docs/BodyApi.md | 4 +- .../echo_api/python/docs/DefaultValue.md | 14 +- samples/client/echo_api/python/docs/Pet.md | 4 +- samples/client/echo_api/python/docs/Query.md | 2 +- .../client/echo_api/python/docs/QueryApi.md | 12 +- ...lodeTrueArrayStringQueryObjectParameter.md | 2 +- .../python/openapi_client/api/auth_api.py | 82 +- .../python/openapi_client/api/body_api.py | 434 ++--- .../python/openapi_client/api/form_api.py | 122 +- .../python/openapi_client/api/header_api.py | 42 +- .../python/openapi_client/api/path_api.py | 42 +- .../python/openapi_client/api/query_api.py | 480 ++--- .../python/openapi_client/api_client.py | 26 +- .../python/openapi_client/configuration.py | 22 +- .../python/openapi_client/models/bird.py | 12 +- .../python/openapi_client/models/category.py | 12 +- .../openapi_client/models/data_query.py | 12 +- .../openapi_client/models/default_value.py | 26 +- .../models/number_properties_only.py | 12 +- .../python/openapi_client/models/pet.py | 16 +- .../python/openapi_client/models/query.py | 14 +- .../python/openapi_client/models/tag.py | 12 +- ...st_form_object_multipart_request_marker.py | 12 +- ...ue_object_all_of_query_object_parameter.py | 12 +- ...rue_array_string_query_object_parameter.py | 14 +- .../others/c/bearerAuth/api/DefaultAPI.h | 1 - .../docs/AdditionalPropertiesClass.md | 6 +- .../docs/ArrayOfArrayOfModel.md | 2 +- .../docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../python-aiohttp/docs/ArrayOfMapModel.md | 2 +- .../python-aiohttp/docs/ArrayOfNumberOnly.md | 2 +- .../petstore/python-aiohttp/docs/ArrayTest.md | 8 +- .../python-aiohttp/docs/CircularAllOfRef.md | 2 +- .../python-aiohttp/docs/EnumArrays.md | 2 +- .../petstore/python-aiohttp/docs/FakeApi.md | 44 +- .../docs/FileSchemaTestClass.md | 2 +- .../python-aiohttp/docs/InputAllOf.md | 2 +- .../python-aiohttp/docs/MapOfArrayOfModel.md | 2 +- .../petstore/python-aiohttp/docs/MapTest.md | 8 +- ...dPropertiesAndAdditionalPropertiesClass.md | 2 +- .../python-aiohttp/docs/MultiArrays.md | 4 +- .../python-aiohttp/docs/NullableClass.md | 12 +- .../docs/ObjectWithDeprecatedFields.md | 2 +- .../petstore/python-aiohttp/docs/Parent.md | 2 +- .../docs/ParentWithOptionalDict.md | 2 +- .../petstore/python-aiohttp/docs/Pet.md | 4 +- .../petstore/python-aiohttp/docs/PetApi.md | 16 +- .../python-aiohttp/docs/PropertyMap.md | 2 +- .../docs/SecondCircularAllOfRef.md | 2 +- .../petstore/python-aiohttp/docs/StoreApi.md | 4 +- ...edDictWithAdditionalModelListProperties.md | 2 +- ...dDictWithAdditionalStringListProperties.md | 2 +- .../petstore/python-aiohttp/docs/UserApi.md | 8 +- .../petstore_api/api/another_fake_api.py | 42 +- .../petstore_api/api/default_api.py | 42 +- .../petstore_api/api/fake_api.py | 1638 ++++++++--------- .../api/fake_classname_tags123_api.py | 42 +- .../api/import_test_datetime_api.py | 42 +- .../petstore_api/api/pet_api.py | 420 ++--- .../petstore_api/api/store_api.py | 173 +- .../petstore_api/api/user_api.py | 347 ++-- .../python-aiohttp/petstore_api/api_client.py | 26 +- .../petstore_api/configuration.py | 22 +- .../models/additional_properties_any_type.py | 14 +- .../models/additional_properties_class.py | 18 +- .../models/additional_properties_object.py | 14 +- ...tional_properties_with_description_only.py | 14 +- .../petstore_api/models/all_of_super_model.py | 12 +- .../models/all_of_with_single_ref.py | 12 +- .../petstore_api/models/animal.py | 16 +- .../petstore_api/models/any_of_color.py | 34 +- .../petstore_api/models/any_of_pig.py | 8 +- .../models/array_of_array_of_model.py | 14 +- .../models/array_of_array_of_number_only.py | 14 +- .../petstore_api/models/array_of_map_model.py | 14 +- .../models/array_of_number_only.py | 14 +- .../petstore_api/models/array_test.py | 20 +- .../petstore_api/models/base_discriminator.py | 16 +- .../petstore_api/models/basque_pig.py | 12 +- .../petstore_api/models/bathing.py | 12 +- .../petstore_api/models/capitalization.py | 12 +- .../python-aiohttp/petstore_api/models/cat.py | 12 +- .../petstore_api/models/category.py | 12 +- .../models/circular_all_of_ref.py | 14 +- .../models/circular_reference_model.py | 12 +- .../petstore_api/models/class_model.py | 12 +- .../petstore_api/models/client.py | 12 +- .../petstore_api/models/color.py | 38 +- .../petstore_api/models/creature.py | 16 +- .../petstore_api/models/creature_info.py | 12 +- .../petstore_api/models/danish_pig.py | 12 +- .../petstore_api/models/deprecated_object.py | 12 +- .../models/discriminator_all_of_sub.py | 12 +- .../models/discriminator_all_of_super.py | 16 +- .../python-aiohttp/petstore_api/models/dog.py | 12 +- .../petstore_api/models/dummy_model.py | 12 +- .../petstore_api/models/enum_arrays.py | 14 +- .../models/enum_ref_with_default_value.py | 12 +- .../petstore_api/models/enum_test.py | 12 +- .../petstore_api/models/feeding.py | 12 +- .../petstore_api/models/file.py | 12 +- .../models/file_schema_test_class.py | 14 +- .../petstore_api/models/first_ref.py | 12 +- .../python-aiohttp/petstore_api/models/foo.py | 12 +- .../models/foo_get_default_response.py | 12 +- .../petstore_api/models/format_test.py | 14 +- .../petstore_api/models/has_only_read_only.py | 12 +- .../models/health_check_result.py | 12 +- .../petstore_api/models/hunting_dog.py | 12 +- .../petstore_api/models/info.py | 12 +- .../models/inner_dict_with_property.py | 14 +- .../petstore_api/models/input_all_of.py | 14 +- .../petstore_api/models/int_or_string.py | 10 +- .../petstore_api/models/list_class.py | 12 +- .../models/map_of_array_of_model.py | 14 +- .../petstore_api/models/map_test.py | 20 +- ...perties_and_additional_properties_class.py | 14 +- .../petstore_api/models/model200_response.py | 12 +- .../petstore_api/models/model_api_response.py | 12 +- .../petstore_api/models/model_field.py | 12 +- .../petstore_api/models/model_return.py | 12 +- .../petstore_api/models/multi_arrays.py | 16 +- .../petstore_api/models/name.py | 12 +- .../petstore_api/models/nullable_class.py | 26 +- .../petstore_api/models/nullable_property.py | 12 +- .../petstore_api/models/number_only.py | 12 +- .../object_to_test_additional_properties.py | 12 +- .../models/object_with_deprecated_fields.py | 14 +- .../petstore_api/models/order.py | 12 +- .../petstore_api/models/outer_composite.py | 12 +- .../models/outer_object_with_enum_property.py | 12 +- .../petstore_api/models/parent.py | 14 +- .../models/parent_with_optional_dict.py | 14 +- .../python-aiohttp/petstore_api/models/pet.py | 16 +- .../python-aiohttp/petstore_api/models/pig.py | 12 +- .../petstore_api/models/pony_sizes.py | 12 +- .../petstore_api/models/poop_cleaning.py | 12 +- .../petstore_api/models/primitive_string.py | 12 +- .../petstore_api/models/property_map.py | 14 +- .../models/property_name_collision.py | 12 +- .../petstore_api/models/read_only_first.py | 12 +- .../models/second_circular_all_of_ref.py | 14 +- .../petstore_api/models/second_ref.py | 12 +- .../models/self_reference_model.py | 12 +- .../petstore_api/models/special_model_name.py | 12 +- .../petstore_api/models/special_name.py | 12 +- .../python-aiohttp/petstore_api/models/tag.py | 12 +- .../petstore_api/models/task.py | 12 +- .../petstore_api/models/task_activity.py | 10 +- ..._error_responses_with_model400_response.py | 12 +- ..._error_responses_with_model404_response.py | 12 +- ..._freeform_additional_properties_request.py | 14 +- .../models/test_model_with_enum_default.py | 12 +- ...t_for_multipart_requests_request_marker.py | 12 +- .../petstore_api/models/tiger.py | 12 +- ...t_with_additional_model_list_properties.py | 14 +- ..._with_additional_string_list_properties.py | 14 +- ...th_additional_properties_request_object.py | 12 +- .../petstore_api/models/user.py | 12 +- .../petstore_api/models/uuid_with_pattern.py | 12 +- .../petstore_api/models/with_nested_one_of.py | 12 +- .../python-aiohttp/petstore_api/signing.py | 4 +- .../python-aiohttp/tests/test_model.py | 2 +- .../docs/AdditionalPropertiesClass.md | 6 +- .../python-httpx/docs/ArrayOfArrayOfModel.md | 2 +- .../docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../python-httpx/docs/ArrayOfMapModel.md | 2 +- .../python-httpx/docs/ArrayOfNumberOnly.md | 2 +- .../petstore/python-httpx/docs/ArrayTest.md | 8 +- .../python-httpx/docs/CircularAllOfRef.md | 2 +- .../petstore/python-httpx/docs/EnumArrays.md | 2 +- .../petstore/python-httpx/docs/FakeApi.md | 44 +- .../python-httpx/docs/FileSchemaTestClass.md | 2 +- .../petstore/python-httpx/docs/InputAllOf.md | 2 +- .../python-httpx/docs/MapOfArrayOfModel.md | 2 +- .../petstore/python-httpx/docs/MapTest.md | 8 +- ...dPropertiesAndAdditionalPropertiesClass.md | 2 +- .../petstore/python-httpx/docs/MultiArrays.md | 4 +- .../python-httpx/docs/NullableClass.md | 12 +- .../docs/ObjectWithDeprecatedFields.md | 2 +- .../petstore/python-httpx/docs/Parent.md | 2 +- .../docs/ParentWithOptionalDict.md | 2 +- .../client/petstore/python-httpx/docs/Pet.md | 4 +- .../petstore/python-httpx/docs/PetApi.md | 16 +- .../petstore/python-httpx/docs/PropertyMap.md | 2 +- .../docs/SecondCircularAllOfRef.md | 2 +- .../petstore/python-httpx/docs/StoreApi.md | 4 +- ...edDictWithAdditionalModelListProperties.md | 2 +- ...dDictWithAdditionalStringListProperties.md | 2 +- .../petstore/python-httpx/docs/UserApi.md | 8 +- .../petstore_api/api/another_fake_api.py | 42 +- .../petstore_api/api/default_api.py | 42 +- .../python-httpx/petstore_api/api/fake_api.py | 1638 ++++++++--------- .../api/fake_classname_tags123_api.py | 42 +- .../api/import_test_datetime_api.py | 42 +- .../python-httpx/petstore_api/api/pet_api.py | 420 ++--- .../petstore_api/api/store_api.py | 173 +- .../python-httpx/petstore_api/api/user_api.py | 347 ++-- .../python-httpx/petstore_api/api_client.py | 26 +- .../petstore_api/configuration.py | 22 +- .../models/additional_properties_any_type.py | 14 +- .../models/additional_properties_class.py | 18 +- .../models/additional_properties_object.py | 14 +- ...tional_properties_with_description_only.py | 14 +- .../petstore_api/models/all_of_super_model.py | 12 +- .../models/all_of_with_single_ref.py | 12 +- .../petstore_api/models/animal.py | 16 +- .../petstore_api/models/any_of_color.py | 34 +- .../petstore_api/models/any_of_pig.py | 8 +- .../models/array_of_array_of_model.py | 14 +- .../models/array_of_array_of_number_only.py | 14 +- .../petstore_api/models/array_of_map_model.py | 14 +- .../models/array_of_number_only.py | 14 +- .../petstore_api/models/array_test.py | 20 +- .../petstore_api/models/base_discriminator.py | 16 +- .../petstore_api/models/basque_pig.py | 12 +- .../petstore_api/models/bathing.py | 12 +- .../petstore_api/models/capitalization.py | 12 +- .../python-httpx/petstore_api/models/cat.py | 12 +- .../petstore_api/models/category.py | 12 +- .../models/circular_all_of_ref.py | 14 +- .../models/circular_reference_model.py | 12 +- .../petstore_api/models/class_model.py | 12 +- .../petstore_api/models/client.py | 12 +- .../python-httpx/petstore_api/models/color.py | 38 +- .../petstore_api/models/creature.py | 16 +- .../petstore_api/models/creature_info.py | 12 +- .../petstore_api/models/danish_pig.py | 12 +- .../petstore_api/models/deprecated_object.py | 12 +- .../models/discriminator_all_of_sub.py | 12 +- .../models/discriminator_all_of_super.py | 16 +- .../python-httpx/petstore_api/models/dog.py | 12 +- .../petstore_api/models/dummy_model.py | 12 +- .../petstore_api/models/enum_arrays.py | 14 +- .../models/enum_ref_with_default_value.py | 12 +- .../petstore_api/models/enum_test.py | 12 +- .../petstore_api/models/feeding.py | 12 +- .../python-httpx/petstore_api/models/file.py | 12 +- .../models/file_schema_test_class.py | 14 +- .../petstore_api/models/first_ref.py | 12 +- .../python-httpx/petstore_api/models/foo.py | 12 +- .../models/foo_get_default_response.py | 12 +- .../petstore_api/models/format_test.py | 14 +- .../petstore_api/models/has_only_read_only.py | 12 +- .../models/health_check_result.py | 12 +- .../petstore_api/models/hunting_dog.py | 12 +- .../python-httpx/petstore_api/models/info.py | 12 +- .../models/inner_dict_with_property.py | 14 +- .../petstore_api/models/input_all_of.py | 14 +- .../petstore_api/models/int_or_string.py | 10 +- .../petstore_api/models/list_class.py | 12 +- .../models/map_of_array_of_model.py | 14 +- .../petstore_api/models/map_test.py | 20 +- ...perties_and_additional_properties_class.py | 14 +- .../petstore_api/models/model200_response.py | 12 +- .../petstore_api/models/model_api_response.py | 12 +- .../petstore_api/models/model_field.py | 12 +- .../petstore_api/models/model_return.py | 12 +- .../petstore_api/models/multi_arrays.py | 16 +- .../python-httpx/petstore_api/models/name.py | 12 +- .../petstore_api/models/nullable_class.py | 26 +- .../petstore_api/models/nullable_property.py | 12 +- .../petstore_api/models/number_only.py | 12 +- .../object_to_test_additional_properties.py | 12 +- .../models/object_with_deprecated_fields.py | 14 +- .../python-httpx/petstore_api/models/order.py | 12 +- .../petstore_api/models/outer_composite.py | 12 +- .../models/outer_object_with_enum_property.py | 12 +- .../petstore_api/models/parent.py | 14 +- .../models/parent_with_optional_dict.py | 14 +- .../python-httpx/petstore_api/models/pet.py | 16 +- .../python-httpx/petstore_api/models/pig.py | 12 +- .../petstore_api/models/pony_sizes.py | 12 +- .../petstore_api/models/poop_cleaning.py | 12 +- .../petstore_api/models/primitive_string.py | 12 +- .../petstore_api/models/property_map.py | 14 +- .../models/property_name_collision.py | 12 +- .../petstore_api/models/read_only_first.py | 12 +- .../models/second_circular_all_of_ref.py | 14 +- .../petstore_api/models/second_ref.py | 12 +- .../models/self_reference_model.py | 12 +- .../petstore_api/models/special_model_name.py | 12 +- .../petstore_api/models/special_name.py | 12 +- .../python-httpx/petstore_api/models/tag.py | 12 +- .../python-httpx/petstore_api/models/task.py | 12 +- .../petstore_api/models/task_activity.py | 10 +- ..._error_responses_with_model400_response.py | 12 +- ..._error_responses_with_model404_response.py | 12 +- ..._freeform_additional_properties_request.py | 14 +- .../models/test_model_with_enum_default.py | 12 +- ...t_for_multipart_requests_request_marker.py | 12 +- .../python-httpx/petstore_api/models/tiger.py | 12 +- ...t_with_additional_model_list_properties.py | 14 +- ..._with_additional_string_list_properties.py | 14 +- ...th_additional_properties_request_object.py | 12 +- .../python-httpx/petstore_api/models/user.py | 12 +- .../petstore_api/models/uuid_with_pattern.py | 12 +- .../petstore_api/models/with_nested_one_of.py | 12 +- .../python-httpx/petstore_api/signing.py | 4 +- .../petstore/python-httpx/tests/test_model.py | 2 +- .../docs/AdditionalPropertiesClass.md | 6 +- .../docs/ArrayOfArrayOfModel.md | 2 +- .../docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../docs/ArrayOfMapModel.md | 2 +- .../docs/ArrayOfNumberOnly.md | 2 +- .../python-lazyImports/docs/ArrayTest.md | 8 +- .../docs/CircularAllOfRef.md | 2 +- .../python-lazyImports/docs/EnumArrays.md | 2 +- .../python-lazyImports/docs/FakeApi.md | 44 +- .../docs/FileSchemaTestClass.md | 2 +- .../python-lazyImports/docs/InputAllOf.md | 2 +- .../docs/MapOfArrayOfModel.md | 2 +- .../python-lazyImports/docs/MapTest.md | 8 +- ...dPropertiesAndAdditionalPropertiesClass.md | 2 +- .../python-lazyImports/docs/MultiArrays.md | 4 +- .../python-lazyImports/docs/NullableClass.md | 12 +- .../docs/ObjectWithDeprecatedFields.md | 2 +- .../python-lazyImports/docs/Parent.md | 2 +- .../docs/ParentWithOptionalDict.md | 2 +- .../petstore/python-lazyImports/docs/Pet.md | 4 +- .../python-lazyImports/docs/PetApi.md | 16 +- .../python-lazyImports/docs/PropertyMap.md | 2 +- .../docs/SecondCircularAllOfRef.md | 2 +- .../python-lazyImports/docs/StoreApi.md | 4 +- ...edDictWithAdditionalModelListProperties.md | 2 +- ...dDictWithAdditionalStringListProperties.md | 2 +- .../python-lazyImports/docs/UserApi.md | 8 +- .../petstore_api/api/another_fake_api.py | 42 +- .../petstore_api/api/default_api.py | 42 +- .../petstore_api/api/fake_api.py | 1638 ++++++++--------- .../api/fake_classname_tags123_api.py | 42 +- .../api/import_test_datetime_api.py | 42 +- .../petstore_api/api/pet_api.py | 420 ++--- .../petstore_api/api/store_api.py | 173 +- .../petstore_api/api/user_api.py | 347 ++-- .../petstore_api/api_client.py | 26 +- .../petstore_api/configuration.py | 22 +- .../models/additional_properties_any_type.py | 14 +- .../models/additional_properties_class.py | 20 +- .../models/additional_properties_object.py | 14 +- ...tional_properties_with_description_only.py | 14 +- .../petstore_api/models/all_of_super_model.py | 14 +- .../models/all_of_with_single_ref.py | 14 +- .../petstore_api/models/animal.py | 18 +- .../petstore_api/models/any_of_color.py | 34 +- .../petstore_api/models/any_of_pig.py | 8 +- .../models/array_of_array_of_model.py | 16 +- .../models/array_of_array_of_number_only.py | 16 +- .../petstore_api/models/array_of_map_model.py | 16 +- .../models/array_of_number_only.py | 16 +- .../petstore_api/models/array_test.py | 22 +- .../petstore_api/models/base_discriminator.py | 18 +- .../petstore_api/models/basque_pig.py | 14 +- .../petstore_api/models/bathing.py | 14 +- .../petstore_api/models/capitalization.py | 14 +- .../petstore_api/models/cat.py | 14 +- .../petstore_api/models/category.py | 14 +- .../models/circular_all_of_ref.py | 16 +- .../models/circular_reference_model.py | 14 +- .../petstore_api/models/class_model.py | 14 +- .../petstore_api/models/client.py | 14 +- .../petstore_api/models/color.py | 38 +- .../petstore_api/models/creature.py | 18 +- .../petstore_api/models/creature_info.py | 14 +- .../petstore_api/models/danish_pig.py | 14 +- .../petstore_api/models/deprecated_object.py | 14 +- .../models/discriminator_all_of_sub.py | 14 +- .../models/discriminator_all_of_super.py | 18 +- .../petstore_api/models/dog.py | 14 +- .../petstore_api/models/dummy_model.py | 14 +- .../petstore_api/models/enum_arrays.py | 16 +- .../models/enum_ref_with_default_value.py | 14 +- .../petstore_api/models/enum_test.py | 14 +- .../petstore_api/models/feeding.py | 14 +- .../petstore_api/models/file.py | 14 +- .../models/file_schema_test_class.py | 16 +- .../petstore_api/models/first_ref.py | 14 +- .../petstore_api/models/foo.py | 14 +- .../models/foo_get_default_response.py | 14 +- .../petstore_api/models/format_test.py | 16 +- .../petstore_api/models/has_only_read_only.py | 14 +- .../models/health_check_result.py | 14 +- .../petstore_api/models/hunting_dog.py | 14 +- .../petstore_api/models/info.py | 14 +- .../models/inner_dict_with_property.py | 16 +- .../petstore_api/models/input_all_of.py | 16 +- .../petstore_api/models/int_or_string.py | 10 +- .../petstore_api/models/list_class.py | 14 +- .../models/map_of_array_of_model.py | 16 +- .../petstore_api/models/map_test.py | 22 +- ...perties_and_additional_properties_class.py | 16 +- .../petstore_api/models/model200_response.py | 14 +- .../petstore_api/models/model_api_response.py | 14 +- .../petstore_api/models/model_field.py | 14 +- .../petstore_api/models/model_return.py | 14 +- .../petstore_api/models/multi_arrays.py | 18 +- .../petstore_api/models/name.py | 14 +- .../petstore_api/models/nullable_class.py | 26 +- .../petstore_api/models/nullable_property.py | 14 +- .../petstore_api/models/number_only.py | 14 +- .../object_to_test_additional_properties.py | 14 +- .../models/object_with_deprecated_fields.py | 16 +- .../petstore_api/models/one_of_enum_string.py | 10 +- .../petstore_api/models/order.py | 14 +- .../petstore_api/models/outer_composite.py | 14 +- .../models/outer_object_with_enum_property.py | 14 +- .../petstore_api/models/parent.py | 16 +- .../models/parent_with_optional_dict.py | 16 +- .../petstore_api/models/pet.py | 18 +- .../petstore_api/models/pig.py | 12 +- .../petstore_api/models/pony_sizes.py | 14 +- .../petstore_api/models/poop_cleaning.py | 14 +- .../petstore_api/models/primitive_string.py | 14 +- .../petstore_api/models/property_map.py | 16 +- .../models/property_name_collision.py | 14 +- .../petstore_api/models/read_only_first.py | 14 +- .../models/second_circular_all_of_ref.py | 16 +- .../petstore_api/models/second_ref.py | 14 +- .../models/self_reference_model.py | 14 +- .../petstore_api/models/special_model_name.py | 14 +- .../petstore_api/models/special_name.py | 14 +- .../petstore_api/models/tag.py | 14 +- .../petstore_api/models/task.py | 14 +- .../petstore_api/models/task_activity.py | 10 +- ..._error_responses_with_model400_response.py | 14 +- ..._error_responses_with_model404_response.py | 14 +- ..._freeform_additional_properties_request.py | 14 +- .../models/test_model_with_enum_default.py | 14 +- ...t_for_multipart_requests_request_marker.py | 14 +- .../petstore_api/models/tiger.py | 14 +- ...t_with_additional_model_list_properties.py | 16 +- ..._with_additional_string_list_properties.py | 16 +- ...th_additional_properties_request_object.py | 14 +- .../petstore_api/models/user.py | 14 +- .../petstore_api/models/uuid_with_pattern.py | 14 +- .../petstore_api/models/with_nested_one_of.py | 14 +- .../petstore_api/signing.py | 4 +- .../tests/test_deserialization.py | 38 +- .../docs/AdditionalPropertiesClass.md | 6 +- .../docs/ArrayOfArrayOfModel.md | 2 +- .../docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../docs/ArrayOfMapModel.md | 2 +- .../docs/ArrayOfNumberOnly.md | 2 +- .../docs/ArrayTest.md | 8 +- .../docs/CircularAllOfRef.md | 2 +- .../docs/EnumArrays.md | 2 +- .../docs/FakeApi.md | 44 +- .../docs/FileSchemaTestClass.md | 2 +- .../docs/InputAllOf.md | 2 +- .../docs/MapOfArrayOfModel.md | 2 +- .../docs/MapTest.md | 8 +- ...dPropertiesAndAdditionalPropertiesClass.md | 2 +- .../docs/MultiArrays.md | 4 +- .../docs/NullableClass.md | 12 +- .../docs/ObjectWithDeprecatedFields.md | 2 +- .../python-pydantic-v1-aiohttp/docs/Parent.md | 2 +- .../docs/ParentWithOptionalDict.md | 2 +- .../python-pydantic-v1-aiohttp/docs/Pet.md | 4 +- .../python-pydantic-v1-aiohttp/docs/PetApi.md | 16 +- .../docs/PropertyMap.md | 2 +- .../docs/SecondCircularAllOfRef.md | 2 +- .../docs/StoreApi.md | 4 +- ...edDictWithAdditionalModelListProperties.md | 2 +- ...dDictWithAdditionalStringListProperties.md | 2 +- .../docs/UserApi.md | 8 +- .../petstore_api/api/fake_api.py | 70 +- .../petstore_api/api/pet_api.py | 26 +- .../petstore_api/api/store_api.py | 10 +- .../petstore_api/api/user_api.py | 8 +- .../petstore_api/api_client.py | 8 +- .../petstore_api/api_response.py | 4 +- .../models/additional_properties_any_type.py | 2 +- .../models/additional_properties_class.py | 8 +- .../models/additional_properties_object.py | 2 +- ...tional_properties_with_description_only.py | 2 +- .../petstore_api/models/any_of_color.py | 26 +- .../petstore_api/models/any_of_pig.py | 4 +- .../models/array_of_array_of_model.py | 2 +- .../models/array_of_array_of_number_only.py | 2 +- .../petstore_api/models/array_of_map_model.py | 4 +- .../models/array_of_number_only.py | 2 +- .../petstore_api/models/array_test.py | 2 +- .../models/circular_all_of_ref.py | 2 +- .../petstore_api/models/color.py | 30 +- .../petstore_api/models/enum_arrays.py | 2 +- .../models/file_schema_test_class.py | 2 +- .../models/inner_dict_with_property.py | 4 +- .../petstore_api/models/input_all_of.py | 4 +- .../petstore_api/models/int_or_string.py | 6 +- .../models/map_of_array_of_model.py | 4 +- .../petstore_api/models/map_test.py | 10 +- ...perties_and_additional_properties_class.py | 4 +- .../petstore_api/models/multi_arrays.py | 2 +- .../petstore_api/models/nullable_class.py | 16 +- .../models/object_with_deprecated_fields.py | 2 +- .../petstore_api/models/parent.py | 4 +- .../models/parent_with_optional_dict.py | 4 +- .../petstore_api/models/pet.py | 2 +- .../petstore_api/models/pig.py | 6 +- .../petstore_api/models/property_map.py | 4 +- .../models/second_circular_all_of_ref.py | 2 +- .../petstore_api/models/task_activity.py | 6 +- ..._freeform_additional_properties_request.py | 2 +- ...t_with_additional_model_list_properties.py | 4 +- ..._with_additional_string_list_properties.py | 4 +- .../tests/test_model.py | 2 +- .../docs/AdditionalPropertiesClass.md | 6 +- .../docs/ArrayOfArrayOfModel.md | 2 +- .../docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../docs/ArrayOfMapModel.md | 2 +- .../docs/ArrayOfNumberOnly.md | 2 +- .../python-pydantic-v1/docs/ArrayTest.md | 8 +- .../docs/CircularAllOfRef.md | 2 +- .../python-pydantic-v1/docs/EnumArrays.md | 2 +- .../python-pydantic-v1/docs/FakeApi.md | 44 +- .../docs/FileSchemaTestClass.md | 2 +- .../python-pydantic-v1/docs/InputAllOf.md | 2 +- .../docs/MapOfArrayOfModel.md | 2 +- .../python-pydantic-v1/docs/MapTest.md | 8 +- ...dPropertiesAndAdditionalPropertiesClass.md | 2 +- .../python-pydantic-v1/docs/MultiArrays.md | 4 +- .../python-pydantic-v1/docs/NullableClass.md | 12 +- .../docs/ObjectWithDeprecatedFields.md | 2 +- .../python-pydantic-v1/docs/Parent.md | 2 +- .../docs/ParentWithOptionalDict.md | 2 +- .../petstore/python-pydantic-v1/docs/Pet.md | 4 +- .../python-pydantic-v1/docs/PetApi.md | 16 +- .../python-pydantic-v1/docs/PropertyMap.md | 2 +- .../docs/SecondCircularAllOfRef.md | 2 +- .../python-pydantic-v1/docs/StoreApi.md | 4 +- ...edDictWithAdditionalModelListProperties.md | 2 +- ...dDictWithAdditionalStringListProperties.md | 2 +- .../python-pydantic-v1/docs/UserApi.md | 8 +- .../petstore_api/api/fake_api.py | 70 +- .../petstore_api/api/pet_api.py | 26 +- .../petstore_api/api/store_api.py | 10 +- .../petstore_api/api/user_api.py | 8 +- .../petstore_api/api_client.py | 8 +- .../petstore_api/api_response.py | 4 +- .../models/additional_properties_any_type.py | 4 +- .../models/additional_properties_class.py | 10 +- .../models/additional_properties_object.py | 4 +- ...tional_properties_with_description_only.py | 4 +- .../petstore_api/models/all_of_super_model.py | 4 +- .../models/all_of_with_single_ref.py | 4 +- .../petstore_api/models/animal.py | 4 +- .../petstore_api/models/any_of_color.py | 26 +- .../petstore_api/models/any_of_pig.py | 4 +- .../petstore_api/models/api_response.py | 4 +- .../models/array_of_array_of_model.py | 4 +- .../models/array_of_array_of_number_only.py | 4 +- .../petstore_api/models/array_of_map_model.py | 6 +- .../models/array_of_number_only.py | 4 +- .../petstore_api/models/array_test.py | 4 +- .../petstore_api/models/base_discriminator.py | 4 +- .../petstore_api/models/basque_pig.py | 4 +- .../petstore_api/models/bathing.py | 4 +- .../petstore_api/models/capitalization.py | 4 +- .../petstore_api/models/cat.py | 4 +- .../petstore_api/models/category.py | 4 +- .../models/circular_all_of_ref.py | 4 +- .../models/circular_reference_model.py | 4 +- .../petstore_api/models/class_model.py | 4 +- .../petstore_api/models/client.py | 4 +- .../petstore_api/models/color.py | 30 +- .../petstore_api/models/creature.py | 4 +- .../petstore_api/models/creature_info.py | 4 +- .../petstore_api/models/danish_pig.py | 4 +- .../petstore_api/models/deprecated_object.py | 4 +- .../models/discriminator_all_of_sub.py | 4 +- .../models/discriminator_all_of_super.py | 4 +- .../petstore_api/models/dog.py | 4 +- .../petstore_api/models/dummy_model.py | 4 +- .../petstore_api/models/enum_arrays.py | 4 +- .../models/enum_ref_with_default_value.py | 4 +- .../petstore_api/models/enum_test.py | 4 +- .../petstore_api/models/feeding.py | 4 +- .../petstore_api/models/field.py | 4 +- .../petstore_api/models/file.py | 4 +- .../models/file_schema_test_class.py | 4 +- .../petstore_api/models/first_ref.py | 4 +- .../petstore_api/models/foo.py | 4 +- .../models/foo_get_default_response.py | 4 +- .../petstore_api/models/format_test.py | 4 +- .../petstore_api/models/has_only_read_only.py | 4 +- .../models/health_check_result.py | 4 +- .../petstore_api/models/hunting_dog.py | 4 +- .../petstore_api/models/info.py | 4 +- .../models/inner_dict_with_property.py | 6 +- .../petstore_api/models/input_all_of.py | 6 +- .../petstore_api/models/int_or_string.py | 6 +- .../petstore_api/models/list_class.py | 4 +- .../models/map_of_array_of_model.py | 6 +- .../petstore_api/models/map_test.py | 12 +- ...perties_and_additional_properties_class.py | 6 +- .../petstore_api/models/model200_response.py | 4 +- .../petstore_api/models/model_return.py | 4 +- .../petstore_api/models/multi_arrays.py | 4 +- .../petstore_api/models/name.py | 4 +- .../petstore_api/models/nullable_class.py | 16 +- .../petstore_api/models/nullable_property.py | 4 +- .../petstore_api/models/number_only.py | 4 +- .../object_to_test_additional_properties.py | 4 +- .../models/object_with_deprecated_fields.py | 4 +- .../petstore_api/models/one_of_enum_string.py | 6 +- .../petstore_api/models/order.py | 4 +- .../petstore_api/models/outer_composite.py | 4 +- .../models/outer_object_with_enum_property.py | 4 +- .../petstore_api/models/parent.py | 6 +- .../models/parent_with_optional_dict.py | 6 +- .../petstore_api/models/pet.py | 4 +- .../petstore_api/models/pig.py | 6 +- .../petstore_api/models/pony_sizes.py | 4 +- .../petstore_api/models/poop_cleaning.py | 4 +- .../petstore_api/models/primitive_string.py | 4 +- .../petstore_api/models/property_map.py | 6 +- .../models/property_name_collision.py | 4 +- .../petstore_api/models/read_only_first.py | 4 +- .../models/second_circular_all_of_ref.py | 4 +- .../petstore_api/models/second_ref.py | 4 +- .../models/self_reference_model.py | 4 +- .../petstore_api/models/special_model_name.py | 4 +- .../petstore_api/models/special_name.py | 4 +- .../petstore_api/models/tag.py | 4 +- .../petstore_api/models/task.py | 4 +- .../petstore_api/models/task_activity.py | 6 +- ..._error_responses_with_model400_response.py | 4 +- ..._error_responses_with_model404_response.py | 4 +- ..._freeform_additional_properties_request.py | 4 +- .../models/test_model_with_enum_default.py | 4 +- ...t_for_multipart_requests_request_marker.py | 4 +- .../petstore_api/models/tiger.py | 4 +- ...t_with_additional_model_list_properties.py | 6 +- ..._with_additional_string_list_properties.py | 6 +- ...th_additional_properties_request_object.py | 4 +- .../petstore_api/models/user.py | 4 +- .../petstore_api/models/uuid_with_pattern.py | 4 +- .../petstore_api/models/with_nested_one_of.py | 4 +- .../tests/test_deserialization.py | 24 +- .../python-pydantic-v1/tests/test_model.py | 2 +- .../python/docs/AdditionalPropertiesClass.md | 6 +- .../python/docs/ArrayOfArrayOfModel.md | 2 +- .../python/docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../petstore/python/docs/ArrayOfMapModel.md | 2 +- .../petstore/python/docs/ArrayOfNumberOnly.md | 2 +- .../client/petstore/python/docs/ArrayTest.md | 8 +- .../petstore/python/docs/CircularAllOfRef.md | 2 +- .../client/petstore/python/docs/EnumArrays.md | 2 +- .../client/petstore/python/docs/FakeApi.md | 44 +- .../python/docs/FileSchemaTestClass.md | 2 +- .../client/petstore/python/docs/InputAllOf.md | 2 +- .../petstore/python/docs/MapOfArrayOfModel.md | 2 +- .../client/petstore/python/docs/MapTest.md | 8 +- ...dPropertiesAndAdditionalPropertiesClass.md | 2 +- .../petstore/python/docs/MultiArrays.md | 4 +- .../petstore/python/docs/NullableClass.md | 12 +- .../python/docs/ObjectWithDeprecatedFields.md | 2 +- .../client/petstore/python/docs/Parent.md | 2 +- .../python/docs/ParentWithOptionalDict.md | 2 +- .../client/petstore/python/docs/Pet.md | 4 +- .../client/petstore/python/docs/PetApi.md | 16 +- .../petstore/python/docs/PropertyMap.md | 2 +- .../python/docs/SecondCircularAllOfRef.md | 2 +- .../client/petstore/python/docs/StoreApi.md | 4 +- ...edDictWithAdditionalModelListProperties.md | 2 +- ...dDictWithAdditionalStringListProperties.md | 2 +- .../client/petstore/python/docs/UserApi.md | 8 +- .../petstore_api/api/another_fake_api.py | 42 +- .../python/petstore_api/api/default_api.py | 42 +- .../python/petstore_api/api/fake_api.py | 1638 ++++++++--------- .../api/fake_classname_tags123_api.py | 42 +- .../api/import_test_datetime_api.py | 42 +- .../python/petstore_api/api/pet_api.py | 420 ++--- .../python/petstore_api/api/store_api.py | 173 +- .../python/petstore_api/api/user_api.py | 347 ++-- .../python/petstore_api/api_client.py | 26 +- .../python/petstore_api/configuration.py | 22 +- .../models/additional_properties_any_type.py | 14 +- .../models/additional_properties_class.py | 20 +- .../models/additional_properties_object.py | 14 +- ...tional_properties_with_description_only.py | 14 +- .../petstore_api/models/all_of_super_model.py | 14 +- .../models/all_of_with_single_ref.py | 14 +- .../python/petstore_api/models/animal.py | 18 +- .../petstore_api/models/any_of_color.py | 34 +- .../python/petstore_api/models/any_of_pig.py | 8 +- .../models/array_of_array_of_model.py | 16 +- .../models/array_of_array_of_number_only.py | 16 +- .../petstore_api/models/array_of_map_model.py | 16 +- .../models/array_of_number_only.py | 16 +- .../python/petstore_api/models/array_test.py | 22 +- .../petstore_api/models/base_discriminator.py | 18 +- .../python/petstore_api/models/basque_pig.py | 14 +- .../python/petstore_api/models/bathing.py | 14 +- .../petstore_api/models/capitalization.py | 14 +- .../python/petstore_api/models/cat.py | 14 +- .../python/petstore_api/models/category.py | 14 +- .../models/circular_all_of_ref.py | 16 +- .../models/circular_reference_model.py | 14 +- .../python/petstore_api/models/class_model.py | 14 +- .../python/petstore_api/models/client.py | 14 +- .../python/petstore_api/models/color.py | 38 +- .../python/petstore_api/models/creature.py | 18 +- .../petstore_api/models/creature_info.py | 14 +- .../python/petstore_api/models/danish_pig.py | 14 +- .../petstore_api/models/deprecated_object.py | 14 +- .../models/discriminator_all_of_sub.py | 14 +- .../models/discriminator_all_of_super.py | 18 +- .../python/petstore_api/models/dog.py | 14 +- .../python/petstore_api/models/dummy_model.py | 14 +- .../python/petstore_api/models/enum_arrays.py | 16 +- .../models/enum_ref_with_default_value.py | 14 +- .../python/petstore_api/models/enum_test.py | 14 +- .../python/petstore_api/models/feeding.py | 14 +- .../python/petstore_api/models/file.py | 14 +- .../models/file_schema_test_class.py | 16 +- .../python/petstore_api/models/first_ref.py | 14 +- .../python/petstore_api/models/foo.py | 14 +- .../models/foo_get_default_response.py | 14 +- .../python/petstore_api/models/format_test.py | 16 +- .../petstore_api/models/has_only_read_only.py | 14 +- .../models/health_check_result.py | 14 +- .../python/petstore_api/models/hunting_dog.py | 14 +- .../python/petstore_api/models/info.py | 14 +- .../models/inner_dict_with_property.py | 16 +- .../petstore_api/models/input_all_of.py | 16 +- .../petstore_api/models/int_or_string.py | 10 +- .../python/petstore_api/models/list_class.py | 14 +- .../models/map_of_array_of_model.py | 16 +- .../python/petstore_api/models/map_test.py | 22 +- ...perties_and_additional_properties_class.py | 16 +- .../petstore_api/models/model200_response.py | 14 +- .../petstore_api/models/model_api_response.py | 14 +- .../python/petstore_api/models/model_field.py | 14 +- .../petstore_api/models/model_return.py | 14 +- .../petstore_api/models/multi_arrays.py | 18 +- .../python/petstore_api/models/name.py | 14 +- .../petstore_api/models/nullable_class.py | 26 +- .../petstore_api/models/nullable_property.py | 14 +- .../python/petstore_api/models/number_only.py | 14 +- .../object_to_test_additional_properties.py | 14 +- .../models/object_with_deprecated_fields.py | 16 +- .../petstore_api/models/one_of_enum_string.py | 10 +- .../python/petstore_api/models/order.py | 14 +- .../petstore_api/models/outer_composite.py | 14 +- .../models/outer_object_with_enum_property.py | 14 +- .../python/petstore_api/models/parent.py | 16 +- .../models/parent_with_optional_dict.py | 16 +- .../python/petstore_api/models/pet.py | 18 +- .../python/petstore_api/models/pig.py | 12 +- .../python/petstore_api/models/pony_sizes.py | 14 +- .../petstore_api/models/poop_cleaning.py | 14 +- .../petstore_api/models/primitive_string.py | 14 +- .../petstore_api/models/property_map.py | 16 +- .../models/property_name_collision.py | 14 +- .../petstore_api/models/read_only_first.py | 14 +- .../models/second_circular_all_of_ref.py | 16 +- .../python/petstore_api/models/second_ref.py | 14 +- .../models/self_reference_model.py | 14 +- .../petstore_api/models/special_model_name.py | 14 +- .../petstore_api/models/special_name.py | 14 +- .../python/petstore_api/models/tag.py | 14 +- .../python/petstore_api/models/task.py | 14 +- .../petstore_api/models/task_activity.py | 10 +- ..._error_responses_with_model400_response.py | 14 +- ..._error_responses_with_model404_response.py | 14 +- ..._freeform_additional_properties_request.py | 14 +- .../models/test_model_with_enum_default.py | 14 +- ...t_for_multipart_requests_request_marker.py | 14 +- .../python/petstore_api/models/tiger.py | 14 +- ...t_with_additional_model_list_properties.py | 16 +- ..._with_additional_string_list_properties.py | 16 +- ...th_additional_properties_request_object.py | 14 +- .../python/petstore_api/models/user.py | 14 +- .../petstore_api/models/uuid_with_pattern.py | 14 +- .../petstore_api/models/with_nested_one_of.py | 14 +- .../petstore/python/petstore_api/signing.py | 4 +- .../python/tests/test_deserialization.py | 38 +- .../feature-test/models/Address.h | 1 - .../feature-test/models/Animal.h | 1 - .../feature-test/models/ArrayTypes.h | 3 - .../feature-test/models/BankAccount.h | 1 - .../feature-test/models/Company.h | 2 - .../feature-test/models/CreatedResponse.h | 2 - .../feature-test/models/CreditCard.h | 1 - .../feature-test/models/Department.h | 2 - .../feature-test/models/Dog.h | 2 - .../feature-test/models/Employee.h | 3 - .../feature-test/models/EnumTypes.h | 2 - .../feature-test/models/ErrorResponse.h | 3 - .../feature-test/models/NotFoundResponse.h | 1 - .../models/NullableOptionalTypes.h | 2 - .../feature-test/models/PaymentMethod.h | 1 - .../feature-test/models/PrimitiveTypes.h | 1 - .../feature-test/models/SimpleObject.h | 2 - .../feature-test/models/SuccessResponse.h | 1 - .../models/TestAllParameterTypes200Response.h | 2 - .../models/TestApiKeySecurity200Response.h | 1 - .../models/TestBasicSecurity200Response.h | 1 - .../models/TestBearerSecurity200Response.h | 1 - .../models/TestCookieParameters200Response.h | 1 - .../models/TestHeaderParameters200Response.h | 1 - .../models/TestHeaderParameters401Response.h | 1 - .../models/TestOAuth2Security200Response.h | 1 - .../models/TestQueryParameters200Response.h | 1 - .../TestQueryParametersDeepObjectParameter.h | 2 - .../petstore/models/ApiResponse.h | 2 - .../petstore/models/Category.h | 1 - .../petstore/models/ComplexParamsResponse.h | 3 - .../petstore/models/DeepObj.h | 2 - .../petstore/models/DeepObjBaz.h | 2 - .../petstore/models/NullableExample.h | 1 - .../petstore/models/Order.h | 2 - .../cpp-httplib-server/petstore/models/Pet.h | 2 - .../petstore/models/PetOrCategory.h | 2 - .../cpp-httplib-server/petstore/models/Tag.h | 1 - .../cpp-httplib-server/petstore/models/User.h | 2 - .../controllers/pet_controller.py | 5 +- .../controllers/security_controller.py | 4 +- .../controllers/store_controller.py | 1 - .../controllers/user_controller.py | 1 - .../src/openapi_server/models/api_response.py | 2 - .../src/openapi_server/models/category.py | 2 - .../src/openapi_server/models/order.py | 2 - .../src/openapi_server/models/pet.py | 16 +- .../src/openapi_server/models/tag.py | 2 - .../src/openapi_server/models/user.py | 2 - .../src/openapi_server/typing_utils.py | 8 +- .../src/openapi_server/util.py | 2 +- .../controllers/pet_controller.py | 8 +- .../controllers/store_controller.py | 2 +- .../app/openapi_server/models/api_response.py | 2 - .../app/openapi_server/models/base_model.py | 2 +- .../app/openapi_server/models/category.py | 2 - .../app/openapi_server/models/order.py | 2 - .../app/openapi_server/models/pet.py | 28 +- .../app/openapi_server/models/tag.py | 2 - .../app/openapi_server/models/user.py | 2 - .../app/openapi_server/typing_utils.py | 8 +- .../src/openapi_server/apis/fake_api.py | 1 - .../src/openapi_server/apis/fake_api_base.py | 4 +- .../src/openapi_server/apis/pet_api.py | 17 +- .../src/openapi_server/apis/pet_api_base.py | 16 +- .../src/openapi_server/apis/store_api.py | 7 +- .../src/openapi_server/apis/store_api_base.py | 8 +- .../src/openapi_server/apis/user_api.py | 7 +- .../src/openapi_server/apis/user_api_base.py | 10 +- .../src/openapi_server/models/api_response.py | 8 +- .../src/openapi_server/models/category.py | 8 +- .../src/openapi_server/models/order.py | 8 +- .../src/openapi_server/models/pet.py | 12 +- .../src/openapi_server/models/tag.py | 8 +- .../src/openapi_server/models/user.py | 8 +- .../src/openapi_server/security_api.py | 8 +- .../controllers/fake_controller.py | 4 +- .../controllers/pet_controller.py | 22 +- .../controllers/security_controller.py | 6 +- .../controllers/store_controller.py | 10 +- .../controllers/user_controller.py | 18 +- .../openapi_server/models/api_response.py | 2 - .../openapi_server/models/base_model.py | 6 +- .../openapi_server/models/category.py | 2 - .../openapi_server/models/order.py | 2 - .../python-flask/openapi_server/models/pet.py | 26 +- .../python-flask/openapi_server/models/tag.py | 2 - .../openapi_server/models/test_enum.py | 2 - .../models/test_enum_with_default.py | 2 - .../openapi_server/models/test_model.py | 2 - .../openapi_server/models/user.py | 2 - .../openapi_server/typing_utils.py | 8 +- 960 files changed, 11294 insertions(+), 11392 deletions(-) diff --git a/docs/generators/python-aiohttp.md b/docs/generators/python-aiohttp.md index 147e816197ce..7d152f9fd274 100644 --- a/docs/generators/python-aiohttp.md +++ b/docs/generators/python-aiohttp.md @@ -53,8 +53,6 @@ These options may be applied as additional-properties (cli) or configOptions (pl ## LANGUAGE PRIMITIVES