mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
Merge branch 'master' of https://github.com/AAraKKe/openapi-generator into AAraKKe-master
This commit is contained in:
commit
c88a7f8c7d
@ -6,6 +6,23 @@
|
|||||||
|
|
||||||
__version__ = "{{packageVersion}}"
|
__version__ = "{{packageVersion}}"
|
||||||
|
|
||||||
|
# Define package exports
|
||||||
|
__all__ = [
|
||||||
|
{{#apiInfo}}{{#apis}}"{{classname}}",
|
||||||
|
{{/apis}}{{/apiInfo}}"ApiResponse",
|
||||||
|
"ApiClient",
|
||||||
|
"Configuration",
|
||||||
|
"OpenApiException",
|
||||||
|
"ApiTypeError",
|
||||||
|
"ApiValueError",
|
||||||
|
"ApiKeyError",
|
||||||
|
"ApiAttributeError",
|
||||||
|
"ApiException",
|
||||||
|
{{#hasHttpSignatureMethods}}"HttpSigningConfiguration",
|
||||||
|
{{/hasHttpSignatureMethods}}{{#models}}{{#model}}"{{classname}}"{{^-last}},
|
||||||
|
{{/-last}}{{#-last}},{{/-last}}{{/model}}{{/models}}
|
||||||
|
]
|
||||||
|
|
||||||
# import apis into sdk package
|
# import apis into sdk package
|
||||||
{{#apiInfo}}{{#apis}}from {{apiPackage}}.{{classFilename}} import {{classname}}
|
{{#apiInfo}}{{#apis}}from {{apiPackage}}.{{classFilename}} import {{classname}}
|
||||||
{{/apis}}{{/apiInfo}}
|
{{/apis}}{{/apiInfo}}
|
||||||
|
@ -6,6 +6,23 @@
|
|||||||
|
|
||||||
__version__ = "{{packageVersion}}"
|
__version__ = "{{packageVersion}}"
|
||||||
|
|
||||||
|
# Define package exports
|
||||||
|
__all__ = [
|
||||||
|
{{#apiInfo}}{{#apis}}"{{classname}}",
|
||||||
|
{{/apis}}{{/apiInfo}}"ApiResponse",
|
||||||
|
"ApiClient",
|
||||||
|
"Configuration",
|
||||||
|
"OpenApiException",
|
||||||
|
"ApiTypeError",
|
||||||
|
"ApiValueError",
|
||||||
|
"ApiKeyError",
|
||||||
|
"ApiAttributeError",
|
||||||
|
"ApiException",
|
||||||
|
{{#hasHttpSignatureMethods}}"HttpSigningConfiguration",
|
||||||
|
{{/hasHttpSignatureMethods}}{{#models}}{{#model}}"{{classname}}"{{^-last}},
|
||||||
|
{{/-last}}{{#-last}},{{/-last}}{{/model}}{{/models}}
|
||||||
|
]
|
||||||
|
|
||||||
# import apis into sdk package
|
# import apis into sdk package
|
||||||
{{#apiInfo}}{{#apis}}from {{apiPackage}}.{{classFilename}} import {{classname}}
|
{{#apiInfo}}{{#apis}}from {{apiPackage}}.{{classFilename}} import {{classname}}
|
||||||
{{/apis}}{{/apiInfo}}
|
{{/apis}}{{/apiInfo}}
|
||||||
|
@ -17,6 +17,37 @@
|
|||||||
|
|
||||||
__version__ = "1.0.0"
|
__version__ = "1.0.0"
|
||||||
|
|
||||||
|
# Define package exports
|
||||||
|
__all__ = [
|
||||||
|
"AuthApi",
|
||||||
|
"BodyApi",
|
||||||
|
"FormApi",
|
||||||
|
"HeaderApi",
|
||||||
|
"PathApi",
|
||||||
|
"QueryApi",
|
||||||
|
"ApiResponse",
|
||||||
|
"ApiClient",
|
||||||
|
"Configuration",
|
||||||
|
"OpenApiException",
|
||||||
|
"ApiTypeError",
|
||||||
|
"ApiValueError",
|
||||||
|
"ApiKeyError",
|
||||||
|
"ApiAttributeError",
|
||||||
|
"ApiException",
|
||||||
|
"Bird",
|
||||||
|
"Category",
|
||||||
|
"DataQuery",
|
||||||
|
"DefaultValue",
|
||||||
|
"NumberPropertiesOnly",
|
||||||
|
"Pet",
|
||||||
|
"Query",
|
||||||
|
"StringEnumRef",
|
||||||
|
"Tag",
|
||||||
|
"TestFormObjectMultipartRequestMarker",
|
||||||
|
"TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter",
|
||||||
|
"TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter",
|
||||||
|
]
|
||||||
|
|
||||||
# import apis into sdk package
|
# import apis into sdk package
|
||||||
from openapi_client.api.auth_api import AuthApi
|
from openapi_client.api.auth_api import AuthApi
|
||||||
from openapi_client.api.body_api import BodyApi
|
from openapi_client.api.body_api import BodyApi
|
||||||
|
@ -17,6 +17,37 @@
|
|||||||
|
|
||||||
__version__ = "1.0.0"
|
__version__ = "1.0.0"
|
||||||
|
|
||||||
|
# Define package exports
|
||||||
|
__all__ = [
|
||||||
|
"AuthApi",
|
||||||
|
"BodyApi",
|
||||||
|
"FormApi",
|
||||||
|
"HeaderApi",
|
||||||
|
"PathApi",
|
||||||
|
"QueryApi",
|
||||||
|
"ApiResponse",
|
||||||
|
"ApiClient",
|
||||||
|
"Configuration",
|
||||||
|
"OpenApiException",
|
||||||
|
"ApiTypeError",
|
||||||
|
"ApiValueError",
|
||||||
|
"ApiKeyError",
|
||||||
|
"ApiAttributeError",
|
||||||
|
"ApiException",
|
||||||
|
"Bird",
|
||||||
|
"Category",
|
||||||
|
"DataQuery",
|
||||||
|
"DefaultValue",
|
||||||
|
"NumberPropertiesOnly",
|
||||||
|
"Pet",
|
||||||
|
"Query",
|
||||||
|
"StringEnumRef",
|
||||||
|
"Tag",
|
||||||
|
"TestFormObjectMultipartRequestMarker",
|
||||||
|
"TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter",
|
||||||
|
"TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter",
|
||||||
|
]
|
||||||
|
|
||||||
# import apis into sdk package
|
# import apis into sdk package
|
||||||
from openapi_client.api.auth_api import AuthApi
|
from openapi_client.api.auth_api import AuthApi
|
||||||
from openapi_client.api.body_api import BodyApi
|
from openapi_client.api.body_api import BodyApi
|
||||||
|
@ -17,6 +17,37 @@
|
|||||||
|
|
||||||
__version__ = "1.0.0"
|
__version__ = "1.0.0"
|
||||||
|
|
||||||
|
# Define package exports
|
||||||
|
__all__ = [
|
||||||
|
"AuthApi",
|
||||||
|
"BodyApi",
|
||||||
|
"FormApi",
|
||||||
|
"HeaderApi",
|
||||||
|
"PathApi",
|
||||||
|
"QueryApi",
|
||||||
|
"ApiResponse",
|
||||||
|
"ApiClient",
|
||||||
|
"Configuration",
|
||||||
|
"OpenApiException",
|
||||||
|
"ApiTypeError",
|
||||||
|
"ApiValueError",
|
||||||
|
"ApiKeyError",
|
||||||
|
"ApiAttributeError",
|
||||||
|
"ApiException",
|
||||||
|
"Bird",
|
||||||
|
"Category",
|
||||||
|
"DataQuery",
|
||||||
|
"DefaultValue",
|
||||||
|
"NumberPropertiesOnly",
|
||||||
|
"Pet",
|
||||||
|
"Query",
|
||||||
|
"StringEnumRef",
|
||||||
|
"Tag",
|
||||||
|
"TestFormObjectMultipartRequestMarker",
|
||||||
|
"TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter",
|
||||||
|
"TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter",
|
||||||
|
]
|
||||||
|
|
||||||
# import apis into sdk package
|
# import apis into sdk package
|
||||||
from openapi_client.api.auth_api import AuthApi
|
from openapi_client.api.auth_api import AuthApi
|
||||||
from openapi_client.api.body_api import BodyApi
|
from openapi_client.api.body_api import BodyApi
|
||||||
|
@ -16,6 +16,136 @@
|
|||||||
|
|
||||||
__version__ = "1.0.0"
|
__version__ = "1.0.0"
|
||||||
|
|
||||||
|
# Define package exports
|
||||||
|
__all__ = [
|
||||||
|
"AnotherFakeApi",
|
||||||
|
"DefaultApi",
|
||||||
|
"FakeApi",
|
||||||
|
"FakeClassnameTags123Api",
|
||||||
|
"ImportTestDatetimeApi",
|
||||||
|
"PetApi",
|
||||||
|
"StoreApi",
|
||||||
|
"UserApi",
|
||||||
|
"ApiResponse",
|
||||||
|
"ApiClient",
|
||||||
|
"Configuration",
|
||||||
|
"OpenApiException",
|
||||||
|
"ApiTypeError",
|
||||||
|
"ApiValueError",
|
||||||
|
"ApiKeyError",
|
||||||
|
"ApiAttributeError",
|
||||||
|
"ApiException",
|
||||||
|
"HttpSigningConfiguration",
|
||||||
|
"AdditionalPropertiesAnyType",
|
||||||
|
"AdditionalPropertiesClass",
|
||||||
|
"AdditionalPropertiesObject",
|
||||||
|
"AdditionalPropertiesWithDescriptionOnly",
|
||||||
|
"AllOfSuperModel",
|
||||||
|
"AllOfWithSingleRef",
|
||||||
|
"Animal",
|
||||||
|
"AnyOfColor",
|
||||||
|
"AnyOfPig",
|
||||||
|
"ArrayOfArrayOfModel",
|
||||||
|
"ArrayOfArrayOfNumberOnly",
|
||||||
|
"ArrayOfNumberOnly",
|
||||||
|
"ArrayTest",
|
||||||
|
"BaseDiscriminator",
|
||||||
|
"BasquePig",
|
||||||
|
"Bathing",
|
||||||
|
"Capitalization",
|
||||||
|
"Cat",
|
||||||
|
"Category",
|
||||||
|
"CircularAllOfRef",
|
||||||
|
"CircularReferenceModel",
|
||||||
|
"ClassModel",
|
||||||
|
"Client",
|
||||||
|
"Color",
|
||||||
|
"Creature",
|
||||||
|
"CreatureInfo",
|
||||||
|
"DanishPig",
|
||||||
|
"DeprecatedObject",
|
||||||
|
"DiscriminatorAllOfSub",
|
||||||
|
"DiscriminatorAllOfSuper",
|
||||||
|
"Dog",
|
||||||
|
"DummyModel",
|
||||||
|
"EnumArrays",
|
||||||
|
"EnumClass",
|
||||||
|
"EnumNumberVendorExt",
|
||||||
|
"EnumString1",
|
||||||
|
"EnumString2",
|
||||||
|
"EnumStringVendorExt",
|
||||||
|
"EnumTest",
|
||||||
|
"Feeding",
|
||||||
|
"File",
|
||||||
|
"FileSchemaTestClass",
|
||||||
|
"FirstRef",
|
||||||
|
"Foo",
|
||||||
|
"FooGetDefaultResponse",
|
||||||
|
"FormatTest",
|
||||||
|
"HasOnlyReadOnly",
|
||||||
|
"HealthCheckResult",
|
||||||
|
"HuntingDog",
|
||||||
|
"Info",
|
||||||
|
"InnerDictWithProperty",
|
||||||
|
"InputAllOf",
|
||||||
|
"IntOrString",
|
||||||
|
"ListClass",
|
||||||
|
"MapOfArrayOfModel",
|
||||||
|
"MapTest",
|
||||||
|
"MixedPropertiesAndAdditionalPropertiesClass",
|
||||||
|
"Model200Response",
|
||||||
|
"ModelApiResponse",
|
||||||
|
"ModelField",
|
||||||
|
"ModelReturn",
|
||||||
|
"MultiArrays",
|
||||||
|
"Name",
|
||||||
|
"NullableClass",
|
||||||
|
"NullableProperty",
|
||||||
|
"NumberOnly",
|
||||||
|
"ObjectToTestAdditionalProperties",
|
||||||
|
"ObjectWithDeprecatedFields",
|
||||||
|
"OneOfEnumString",
|
||||||
|
"Order",
|
||||||
|
"OuterComposite",
|
||||||
|
"OuterEnum",
|
||||||
|
"OuterEnumDefaultValue",
|
||||||
|
"OuterEnumInteger",
|
||||||
|
"OuterEnumIntegerDefaultValue",
|
||||||
|
"OuterObjectWithEnumProperty",
|
||||||
|
"Parent",
|
||||||
|
"ParentWithOptionalDict",
|
||||||
|
"Pet",
|
||||||
|
"Pig",
|
||||||
|
"PoopCleaning",
|
||||||
|
"PrimitiveString",
|
||||||
|
"PropertyMap",
|
||||||
|
"PropertyNameCollision",
|
||||||
|
"ReadOnlyFirst",
|
||||||
|
"SecondCircularAllOfRef",
|
||||||
|
"SecondRef",
|
||||||
|
"SelfReferenceModel",
|
||||||
|
"SingleRefType",
|
||||||
|
"SpecialCharacterEnum",
|
||||||
|
"SpecialModelName",
|
||||||
|
"SpecialName",
|
||||||
|
"Tag",
|
||||||
|
"Task",
|
||||||
|
"TaskActivity",
|
||||||
|
"TestEnum",
|
||||||
|
"TestEnumWithDefault",
|
||||||
|
"TestErrorResponsesWithModel400Response",
|
||||||
|
"TestErrorResponsesWithModel404Response",
|
||||||
|
"TestInlineFreeformAdditionalPropertiesRequest",
|
||||||
|
"TestModelWithEnumDefault",
|
||||||
|
"TestObjectForMultipartRequestsRequestMarker",
|
||||||
|
"Tiger",
|
||||||
|
"UnnamedDictWithAdditionalModelListProperties",
|
||||||
|
"UnnamedDictWithAdditionalStringListProperties",
|
||||||
|
"UploadFileWithAdditionalPropertiesRequestObject",
|
||||||
|
"User",
|
||||||
|
"WithNestedOneOf",
|
||||||
|
]
|
||||||
|
|
||||||
# import apis into sdk package
|
# import apis into sdk package
|
||||||
from petstore_api.api.another_fake_api import AnotherFakeApi
|
from petstore_api.api.another_fake_api import AnotherFakeApi
|
||||||
from petstore_api.api.default_api import DefaultApi
|
from petstore_api.api.default_api import DefaultApi
|
||||||
|
@ -16,6 +16,136 @@
|
|||||||
|
|
||||||
__version__ = "1.0.0"
|
__version__ = "1.0.0"
|
||||||
|
|
||||||
|
# Define package exports
|
||||||
|
__all__ = [
|
||||||
|
"AnotherFakeApi",
|
||||||
|
"DefaultApi",
|
||||||
|
"FakeApi",
|
||||||
|
"FakeClassnameTags123Api",
|
||||||
|
"ImportTestDatetimeApi",
|
||||||
|
"PetApi",
|
||||||
|
"StoreApi",
|
||||||
|
"UserApi",
|
||||||
|
"ApiResponse",
|
||||||
|
"ApiClient",
|
||||||
|
"Configuration",
|
||||||
|
"OpenApiException",
|
||||||
|
"ApiTypeError",
|
||||||
|
"ApiValueError",
|
||||||
|
"ApiKeyError",
|
||||||
|
"ApiAttributeError",
|
||||||
|
"ApiException",
|
||||||
|
"HttpSigningConfiguration",
|
||||||
|
"AdditionalPropertiesAnyType",
|
||||||
|
"AdditionalPropertiesClass",
|
||||||
|
"AdditionalPropertiesObject",
|
||||||
|
"AdditionalPropertiesWithDescriptionOnly",
|
||||||
|
"AllOfSuperModel",
|
||||||
|
"AllOfWithSingleRef",
|
||||||
|
"Animal",
|
||||||
|
"AnyOfColor",
|
||||||
|
"AnyOfPig",
|
||||||
|
"ApiResponse",
|
||||||
|
"ArrayOfArrayOfModel",
|
||||||
|
"ArrayOfArrayOfNumberOnly",
|
||||||
|
"ArrayOfNumberOnly",
|
||||||
|
"ArrayTest",
|
||||||
|
"BaseDiscriminator",
|
||||||
|
"BasquePig",
|
||||||
|
"Bathing",
|
||||||
|
"Capitalization",
|
||||||
|
"Cat",
|
||||||
|
"Category",
|
||||||
|
"CircularAllOfRef",
|
||||||
|
"CircularReferenceModel",
|
||||||
|
"ClassModel",
|
||||||
|
"Client",
|
||||||
|
"Color",
|
||||||
|
"Creature",
|
||||||
|
"CreatureInfo",
|
||||||
|
"DanishPig",
|
||||||
|
"DeprecatedObject",
|
||||||
|
"DiscriminatorAllOfSub",
|
||||||
|
"DiscriminatorAllOfSuper",
|
||||||
|
"Dog",
|
||||||
|
"DummyModel",
|
||||||
|
"EnumArrays",
|
||||||
|
"EnumClass",
|
||||||
|
"EnumNumberVendorExt",
|
||||||
|
"EnumString1",
|
||||||
|
"EnumString2",
|
||||||
|
"EnumStringVendorExt",
|
||||||
|
"EnumTest",
|
||||||
|
"Feeding",
|
||||||
|
"Field",
|
||||||
|
"File",
|
||||||
|
"FileSchemaTestClass",
|
||||||
|
"FirstRef",
|
||||||
|
"Foo",
|
||||||
|
"FooGetDefaultResponse",
|
||||||
|
"FormatTest",
|
||||||
|
"HasOnlyReadOnly",
|
||||||
|
"HealthCheckResult",
|
||||||
|
"HuntingDog",
|
||||||
|
"Info",
|
||||||
|
"InnerDictWithProperty",
|
||||||
|
"InputAllOf",
|
||||||
|
"IntOrString",
|
||||||
|
"ListClass",
|
||||||
|
"MapOfArrayOfModel",
|
||||||
|
"MapTest",
|
||||||
|
"MixedPropertiesAndAdditionalPropertiesClass",
|
||||||
|
"Model200Response",
|
||||||
|
"ModelReturn",
|
||||||
|
"MultiArrays",
|
||||||
|
"Name",
|
||||||
|
"NullableClass",
|
||||||
|
"NullableProperty",
|
||||||
|
"NumberOnly",
|
||||||
|
"ObjectToTestAdditionalProperties",
|
||||||
|
"ObjectWithDeprecatedFields",
|
||||||
|
"OneOfEnumString",
|
||||||
|
"Order",
|
||||||
|
"OuterComposite",
|
||||||
|
"OuterEnum",
|
||||||
|
"OuterEnumDefaultValue",
|
||||||
|
"OuterEnumInteger",
|
||||||
|
"OuterEnumIntegerDefaultValue",
|
||||||
|
"OuterObjectWithEnumProperty",
|
||||||
|
"Parent",
|
||||||
|
"ParentWithOptionalDict",
|
||||||
|
"Pet",
|
||||||
|
"Pig",
|
||||||
|
"PoopCleaning",
|
||||||
|
"PrimitiveString",
|
||||||
|
"PropertyMap",
|
||||||
|
"PropertyNameCollision",
|
||||||
|
"ReadOnlyFirst",
|
||||||
|
"SecondCircularAllOfRef",
|
||||||
|
"SecondRef",
|
||||||
|
"SelfReferenceModel",
|
||||||
|
"SingleRefType",
|
||||||
|
"SpecialCharacterEnum",
|
||||||
|
"SpecialModelName",
|
||||||
|
"SpecialName",
|
||||||
|
"Tag",
|
||||||
|
"Task",
|
||||||
|
"TaskActivity",
|
||||||
|
"TestEnum",
|
||||||
|
"TestEnumWithDefault",
|
||||||
|
"TestErrorResponsesWithModel400Response",
|
||||||
|
"TestErrorResponsesWithModel404Response",
|
||||||
|
"TestInlineFreeformAdditionalPropertiesRequest",
|
||||||
|
"TestModelWithEnumDefault",
|
||||||
|
"TestObjectForMultipartRequestsRequestMarker",
|
||||||
|
"Tiger",
|
||||||
|
"UnnamedDictWithAdditionalModelListProperties",
|
||||||
|
"UnnamedDictWithAdditionalStringListProperties",
|
||||||
|
"UploadFileWithAdditionalPropertiesRequestObject",
|
||||||
|
"User",
|
||||||
|
"WithNestedOneOf",
|
||||||
|
]
|
||||||
|
|
||||||
# import apis into sdk package
|
# import apis into sdk package
|
||||||
from petstore_api.api.another_fake_api import AnotherFakeApi
|
from petstore_api.api.another_fake_api import AnotherFakeApi
|
||||||
from petstore_api.api.default_api import DefaultApi
|
from petstore_api.api.default_api import DefaultApi
|
||||||
|
@ -16,6 +16,136 @@
|
|||||||
|
|
||||||
__version__ = "1.0.0"
|
__version__ = "1.0.0"
|
||||||
|
|
||||||
|
# Define package exports
|
||||||
|
__all__ = [
|
||||||
|
"AnotherFakeApi",
|
||||||
|
"DefaultApi",
|
||||||
|
"FakeApi",
|
||||||
|
"FakeClassnameTags123Api",
|
||||||
|
"ImportTestDatetimeApi",
|
||||||
|
"PetApi",
|
||||||
|
"StoreApi",
|
||||||
|
"UserApi",
|
||||||
|
"ApiResponse",
|
||||||
|
"ApiClient",
|
||||||
|
"Configuration",
|
||||||
|
"OpenApiException",
|
||||||
|
"ApiTypeError",
|
||||||
|
"ApiValueError",
|
||||||
|
"ApiKeyError",
|
||||||
|
"ApiAttributeError",
|
||||||
|
"ApiException",
|
||||||
|
"HttpSigningConfiguration",
|
||||||
|
"AdditionalPropertiesAnyType",
|
||||||
|
"AdditionalPropertiesClass",
|
||||||
|
"AdditionalPropertiesObject",
|
||||||
|
"AdditionalPropertiesWithDescriptionOnly",
|
||||||
|
"AllOfSuperModel",
|
||||||
|
"AllOfWithSingleRef",
|
||||||
|
"Animal",
|
||||||
|
"AnyOfColor",
|
||||||
|
"AnyOfPig",
|
||||||
|
"ApiResponse",
|
||||||
|
"ArrayOfArrayOfModel",
|
||||||
|
"ArrayOfArrayOfNumberOnly",
|
||||||
|
"ArrayOfNumberOnly",
|
||||||
|
"ArrayTest",
|
||||||
|
"BaseDiscriminator",
|
||||||
|
"BasquePig",
|
||||||
|
"Bathing",
|
||||||
|
"Capitalization",
|
||||||
|
"Cat",
|
||||||
|
"Category",
|
||||||
|
"CircularAllOfRef",
|
||||||
|
"CircularReferenceModel",
|
||||||
|
"ClassModel",
|
||||||
|
"Client",
|
||||||
|
"Color",
|
||||||
|
"Creature",
|
||||||
|
"CreatureInfo",
|
||||||
|
"DanishPig",
|
||||||
|
"DeprecatedObject",
|
||||||
|
"DiscriminatorAllOfSub",
|
||||||
|
"DiscriminatorAllOfSuper",
|
||||||
|
"Dog",
|
||||||
|
"DummyModel",
|
||||||
|
"EnumArrays",
|
||||||
|
"EnumClass",
|
||||||
|
"EnumNumberVendorExt",
|
||||||
|
"EnumString1",
|
||||||
|
"EnumString2",
|
||||||
|
"EnumStringVendorExt",
|
||||||
|
"EnumTest",
|
||||||
|
"Feeding",
|
||||||
|
"Field",
|
||||||
|
"File",
|
||||||
|
"FileSchemaTestClass",
|
||||||
|
"FirstRef",
|
||||||
|
"Foo",
|
||||||
|
"FooGetDefaultResponse",
|
||||||
|
"FormatTest",
|
||||||
|
"HasOnlyReadOnly",
|
||||||
|
"HealthCheckResult",
|
||||||
|
"HuntingDog",
|
||||||
|
"Info",
|
||||||
|
"InnerDictWithProperty",
|
||||||
|
"InputAllOf",
|
||||||
|
"IntOrString",
|
||||||
|
"ListClass",
|
||||||
|
"MapOfArrayOfModel",
|
||||||
|
"MapTest",
|
||||||
|
"MixedPropertiesAndAdditionalPropertiesClass",
|
||||||
|
"Model200Response",
|
||||||
|
"ModelReturn",
|
||||||
|
"MultiArrays",
|
||||||
|
"Name",
|
||||||
|
"NullableClass",
|
||||||
|
"NullableProperty",
|
||||||
|
"NumberOnly",
|
||||||
|
"ObjectToTestAdditionalProperties",
|
||||||
|
"ObjectWithDeprecatedFields",
|
||||||
|
"OneOfEnumString",
|
||||||
|
"Order",
|
||||||
|
"OuterComposite",
|
||||||
|
"OuterEnum",
|
||||||
|
"OuterEnumDefaultValue",
|
||||||
|
"OuterEnumInteger",
|
||||||
|
"OuterEnumIntegerDefaultValue",
|
||||||
|
"OuterObjectWithEnumProperty",
|
||||||
|
"Parent",
|
||||||
|
"ParentWithOptionalDict",
|
||||||
|
"Pet",
|
||||||
|
"Pig",
|
||||||
|
"PoopCleaning",
|
||||||
|
"PrimitiveString",
|
||||||
|
"PropertyMap",
|
||||||
|
"PropertyNameCollision",
|
||||||
|
"ReadOnlyFirst",
|
||||||
|
"SecondCircularAllOfRef",
|
||||||
|
"SecondRef",
|
||||||
|
"SelfReferenceModel",
|
||||||
|
"SingleRefType",
|
||||||
|
"SpecialCharacterEnum",
|
||||||
|
"SpecialModelName",
|
||||||
|
"SpecialName",
|
||||||
|
"Tag",
|
||||||
|
"Task",
|
||||||
|
"TaskActivity",
|
||||||
|
"TestEnum",
|
||||||
|
"TestEnumWithDefault",
|
||||||
|
"TestErrorResponsesWithModel400Response",
|
||||||
|
"TestErrorResponsesWithModel404Response",
|
||||||
|
"TestInlineFreeformAdditionalPropertiesRequest",
|
||||||
|
"TestModelWithEnumDefault",
|
||||||
|
"TestObjectForMultipartRequestsRequestMarker",
|
||||||
|
"Tiger",
|
||||||
|
"UnnamedDictWithAdditionalModelListProperties",
|
||||||
|
"UnnamedDictWithAdditionalStringListProperties",
|
||||||
|
"UploadFileWithAdditionalPropertiesRequestObject",
|
||||||
|
"User",
|
||||||
|
"WithNestedOneOf",
|
||||||
|
]
|
||||||
|
|
||||||
# import apis into sdk package
|
# import apis into sdk package
|
||||||
from petstore_api.api.another_fake_api import AnotherFakeApi
|
from petstore_api.api.another_fake_api import AnotherFakeApi
|
||||||
from petstore_api.api.default_api import DefaultApi
|
from petstore_api.api.default_api import DefaultApi
|
||||||
|
@ -16,6 +16,136 @@
|
|||||||
|
|
||||||
__version__ = "1.0.0"
|
__version__ = "1.0.0"
|
||||||
|
|
||||||
|
# Define package exports
|
||||||
|
__all__ = [
|
||||||
|
"AnotherFakeApi",
|
||||||
|
"DefaultApi",
|
||||||
|
"FakeApi",
|
||||||
|
"FakeClassnameTags123Api",
|
||||||
|
"ImportTestDatetimeApi",
|
||||||
|
"PetApi",
|
||||||
|
"StoreApi",
|
||||||
|
"UserApi",
|
||||||
|
"ApiResponse",
|
||||||
|
"ApiClient",
|
||||||
|
"Configuration",
|
||||||
|
"OpenApiException",
|
||||||
|
"ApiTypeError",
|
||||||
|
"ApiValueError",
|
||||||
|
"ApiKeyError",
|
||||||
|
"ApiAttributeError",
|
||||||
|
"ApiException",
|
||||||
|
"HttpSigningConfiguration",
|
||||||
|
"AdditionalPropertiesAnyType",
|
||||||
|
"AdditionalPropertiesClass",
|
||||||
|
"AdditionalPropertiesObject",
|
||||||
|
"AdditionalPropertiesWithDescriptionOnly",
|
||||||
|
"AllOfSuperModel",
|
||||||
|
"AllOfWithSingleRef",
|
||||||
|
"Animal",
|
||||||
|
"AnyOfColor",
|
||||||
|
"AnyOfPig",
|
||||||
|
"ArrayOfArrayOfModel",
|
||||||
|
"ArrayOfArrayOfNumberOnly",
|
||||||
|
"ArrayOfNumberOnly",
|
||||||
|
"ArrayTest",
|
||||||
|
"BaseDiscriminator",
|
||||||
|
"BasquePig",
|
||||||
|
"Bathing",
|
||||||
|
"Capitalization",
|
||||||
|
"Cat",
|
||||||
|
"Category",
|
||||||
|
"CircularAllOfRef",
|
||||||
|
"CircularReferenceModel",
|
||||||
|
"ClassModel",
|
||||||
|
"Client",
|
||||||
|
"Color",
|
||||||
|
"Creature",
|
||||||
|
"CreatureInfo",
|
||||||
|
"DanishPig",
|
||||||
|
"DeprecatedObject",
|
||||||
|
"DiscriminatorAllOfSub",
|
||||||
|
"DiscriminatorAllOfSuper",
|
||||||
|
"Dog",
|
||||||
|
"DummyModel",
|
||||||
|
"EnumArrays",
|
||||||
|
"EnumClass",
|
||||||
|
"EnumNumberVendorExt",
|
||||||
|
"EnumString1",
|
||||||
|
"EnumString2",
|
||||||
|
"EnumStringVendorExt",
|
||||||
|
"EnumTest",
|
||||||
|
"Feeding",
|
||||||
|
"File",
|
||||||
|
"FileSchemaTestClass",
|
||||||
|
"FirstRef",
|
||||||
|
"Foo",
|
||||||
|
"FooGetDefaultResponse",
|
||||||
|
"FormatTest",
|
||||||
|
"HasOnlyReadOnly",
|
||||||
|
"HealthCheckResult",
|
||||||
|
"HuntingDog",
|
||||||
|
"Info",
|
||||||
|
"InnerDictWithProperty",
|
||||||
|
"InputAllOf",
|
||||||
|
"IntOrString",
|
||||||
|
"ListClass",
|
||||||
|
"MapOfArrayOfModel",
|
||||||
|
"MapTest",
|
||||||
|
"MixedPropertiesAndAdditionalPropertiesClass",
|
||||||
|
"Model200Response",
|
||||||
|
"ModelApiResponse",
|
||||||
|
"ModelField",
|
||||||
|
"ModelReturn",
|
||||||
|
"MultiArrays",
|
||||||
|
"Name",
|
||||||
|
"NullableClass",
|
||||||
|
"NullableProperty",
|
||||||
|
"NumberOnly",
|
||||||
|
"ObjectToTestAdditionalProperties",
|
||||||
|
"ObjectWithDeprecatedFields",
|
||||||
|
"OneOfEnumString",
|
||||||
|
"Order",
|
||||||
|
"OuterComposite",
|
||||||
|
"OuterEnum",
|
||||||
|
"OuterEnumDefaultValue",
|
||||||
|
"OuterEnumInteger",
|
||||||
|
"OuterEnumIntegerDefaultValue",
|
||||||
|
"OuterObjectWithEnumProperty",
|
||||||
|
"Parent",
|
||||||
|
"ParentWithOptionalDict",
|
||||||
|
"Pet",
|
||||||
|
"Pig",
|
||||||
|
"PoopCleaning",
|
||||||
|
"PrimitiveString",
|
||||||
|
"PropertyMap",
|
||||||
|
"PropertyNameCollision",
|
||||||
|
"ReadOnlyFirst",
|
||||||
|
"SecondCircularAllOfRef",
|
||||||
|
"SecondRef",
|
||||||
|
"SelfReferenceModel",
|
||||||
|
"SingleRefType",
|
||||||
|
"SpecialCharacterEnum",
|
||||||
|
"SpecialModelName",
|
||||||
|
"SpecialName",
|
||||||
|
"Tag",
|
||||||
|
"Task",
|
||||||
|
"TaskActivity",
|
||||||
|
"TestEnum",
|
||||||
|
"TestEnumWithDefault",
|
||||||
|
"TestErrorResponsesWithModel400Response",
|
||||||
|
"TestErrorResponsesWithModel404Response",
|
||||||
|
"TestInlineFreeformAdditionalPropertiesRequest",
|
||||||
|
"TestModelWithEnumDefault",
|
||||||
|
"TestObjectForMultipartRequestsRequestMarker",
|
||||||
|
"Tiger",
|
||||||
|
"UnnamedDictWithAdditionalModelListProperties",
|
||||||
|
"UnnamedDictWithAdditionalStringListProperties",
|
||||||
|
"UploadFileWithAdditionalPropertiesRequestObject",
|
||||||
|
"User",
|
||||||
|
"WithNestedOneOf",
|
||||||
|
]
|
||||||
|
|
||||||
# import apis into sdk package
|
# import apis into sdk package
|
||||||
from petstore_api.api.another_fake_api import AnotherFakeApi
|
from petstore_api.api.another_fake_api import AnotherFakeApi
|
||||||
from petstore_api.api.default_api import DefaultApi
|
from petstore_api.api.default_api import DefaultApi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user