openapi-python-client 0.24.0__py3-none-any.whl → 0.24.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -508,10 +508,10 @@ class GeneratorData:
508
508
  title: str
509
509
  description: Optional[str]
510
510
  version: str
511
- models: Iterator[ModelProperty]
511
+ models: list[ModelProperty]
512
512
  errors: list[ParseError]
513
513
  endpoint_collections_by_tag: dict[utils.PythonIdentifier, EndpointCollection]
514
- enums: Iterator[Union[EnumProperty, LiteralEnumProperty]]
514
+ enums: list[Union[EnumProperty, LiteralEnumProperty]]
515
515
 
516
516
  @staticmethod
517
517
  def from_dict(data: dict[str, Any], *, config: Config) -> Union["GeneratorData", GeneratorError]:
@@ -546,10 +546,10 @@ class GeneratorData:
546
546
  config=config,
547
547
  )
548
548
 
549
- enums = (
549
+ enums = [
550
550
  prop for prop in schemas.classes_by_name.values() if isinstance(prop, (EnumProperty, LiteralEnumProperty))
551
- )
552
- models = (prop for prop in schemas.classes_by_name.values() if isinstance(prop, ModelProperty))
551
+ ]
552
+ models = [prop for prop in schemas.classes_by_name.values() if isinstance(prop, ModelProperty)]
553
553
 
554
554
  return GeneratorData(
555
555
  title=openapi.info.title,
@@ -1,4 +1,4 @@
1
- from typing import Optional, Union
1
+ from typing import Optional
2
2
 
3
3
  from pydantic import BaseModel, ConfigDict
4
4
 
@@ -7,7 +7,7 @@ from .example import Example
7
7
  from .header import Header
8
8
  from .link import Link
9
9
  from .parameter import Parameter
10
- from .reference import Reference
10
+ from .reference import ReferenceOr
11
11
  from .request_body import RequestBody
12
12
  from .response import Response
13
13
  from .schema import Schema
@@ -25,15 +25,15 @@ class Components(BaseModel):
25
25
  - https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#componentsObject
26
26
  """
27
27
 
28
- schemas: Optional[dict[str, Union[Schema, Reference]]] = None
29
- responses: Optional[dict[str, Union[Response, Reference]]] = None
30
- parameters: Optional[dict[str, Union[Parameter, Reference]]] = None
31
- examples: Optional[dict[str, Union[Example, Reference]]] = None
32
- requestBodies: Optional[dict[str, Union[RequestBody, Reference]]] = None
33
- headers: Optional[dict[str, Union[Header, Reference]]] = None
34
- securitySchemes: Optional[dict[str, Union[SecurityScheme, Reference]]] = None
35
- links: Optional[dict[str, Union[Link, Reference]]] = None
36
- callbacks: Optional[dict[str, Union[Callback, Reference]]] = None
28
+ schemas: Optional[dict[str, ReferenceOr[Schema]]] = None
29
+ responses: Optional[dict[str, ReferenceOr[Response]]] = None
30
+ parameters: Optional[dict[str, ReferenceOr[Parameter]]] = None
31
+ examples: Optional[dict[str, ReferenceOr[Example]]] = None
32
+ requestBodies: Optional[dict[str, ReferenceOr[RequestBody]]] = None
33
+ headers: Optional[dict[str, ReferenceOr[Header]]] = None
34
+ securitySchemes: Optional[dict[str, ReferenceOr[SecurityScheme]]] = None
35
+ links: Optional[dict[str, ReferenceOr[Link]]] = None
36
+ callbacks: Optional[dict[str, ReferenceOr[Callback]]] = None
37
37
  model_config = ConfigDict(
38
38
  # `Callback` contains an unresolvable forward reference, will rebuild in `__init__.py`:
39
39
  defer_build=True,
@@ -1,8 +1,8 @@
1
- from typing import TYPE_CHECKING, Optional, Union
1
+ from typing import TYPE_CHECKING, Optional
2
2
 
3
3
  from pydantic import BaseModel, ConfigDict
4
4
 
5
- from .reference import Reference
5
+ from .reference import ReferenceOr
6
6
 
7
7
  if TYPE_CHECKING: # pragma: no cover
8
8
  from .header import Header
@@ -17,7 +17,7 @@ class Encoding(BaseModel):
17
17
  """
18
18
 
19
19
  contentType: Optional[str] = None
20
- headers: Optional[dict[str, Union["Header", Reference]]] = None
20
+ headers: Optional[dict[str, ReferenceOr["Header"]]] = None
21
21
  style: Optional[str] = None
22
22
  explode: bool = False
23
23
  allowReserved: bool = False
@@ -1,10 +1,10 @@
1
- from typing import Any, Optional, Union
1
+ from typing import Any, Optional
2
2
 
3
3
  from pydantic import BaseModel, ConfigDict, Field
4
4
 
5
5
  from .encoding import Encoding
6
6
  from .example import Example
7
- from .reference import Reference
7
+ from .reference import ReferenceOr
8
8
  from .schema import Schema
9
9
 
10
10
 
@@ -16,9 +16,9 @@ class MediaType(BaseModel):
16
16
  - https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#mediaTypeObject
17
17
  """
18
18
 
19
- media_type_schema: Optional[Union[Reference, Schema]] = Field(default=None, alias="schema")
19
+ media_type_schema: Optional[ReferenceOr[Schema]] = Field(default=None, alias="schema")
20
20
  example: Optional[Any] = None
21
- examples: Optional[dict[str, Union[Example, Reference]]] = None
21
+ examples: Optional[dict[str, ReferenceOr[Example]]] = None
22
22
  encoding: Optional[dict[str, Encoding]] = None
23
23
  model_config = ConfigDict(
24
24
  # `Encoding` is not build yet, will rebuild in `__init__.py`:
@@ -1,11 +1,11 @@
1
- from typing import Optional, Union
1
+ from typing import Optional
2
2
 
3
3
  from pydantic import BaseModel, ConfigDict, Field
4
4
 
5
5
  from .callback import Callback
6
6
  from .external_documentation import ExternalDocumentation
7
7
  from .parameter import Parameter
8
- from .reference import Reference
8
+ from .reference import ReferenceOr
9
9
  from .request_body import RequestBody
10
10
  from .responses import Responses
11
11
  from .security_requirement import SecurityRequirement
@@ -25,8 +25,8 @@ class Operation(BaseModel):
25
25
  description: Optional[str] = None
26
26
  externalDocs: Optional[ExternalDocumentation] = None
27
27
  operationId: Optional[str] = None
28
- parameters: Optional[list[Union[Parameter, Reference]]] = None
29
- request_body: Optional[Union[RequestBody, Reference]] = Field(None, alias="requestBody")
28
+ parameters: Optional[list[ReferenceOr[Parameter]]] = None
29
+ request_body: Optional[ReferenceOr[RequestBody]] = Field(None, alias="requestBody")
30
30
  responses: Responses
31
31
  callbacks: Optional[dict[str, Callback]] = None
32
32
 
@@ -1,11 +1,11 @@
1
- from typing import Any, Optional, Union
1
+ from typing import Any, Optional
2
2
 
3
3
  from pydantic import BaseModel, ConfigDict, Field
4
4
 
5
5
  from ..parameter_location import ParameterLocation
6
6
  from .example import Example
7
7
  from .media_type import MediaType
8
- from .reference import Reference
8
+ from .reference import ReferenceOr
9
9
  from .schema import Schema
10
10
 
11
11
 
@@ -30,9 +30,9 @@ class Parameter(BaseModel):
30
30
  style: Optional[str] = None
31
31
  explode: bool = False
32
32
  allowReserved: bool = False
33
- param_schema: Optional[Union[Reference, Schema]] = Field(default=None, alias="schema")
33
+ param_schema: Optional[ReferenceOr[Schema]] = Field(default=None, alias="schema")
34
34
  example: Optional[Any] = None
35
- examples: Optional[dict[str, Union[Example, Reference]]] = None
35
+ examples: Optional[dict[str, ReferenceOr[Example]]] = None
36
36
  content: Optional[dict[str, MediaType]] = None
37
37
  model_config = ConfigDict(
38
38
  # `MediaType` is not build yet, will rebuild in `__init__.py`:
@@ -1,9 +1,9 @@
1
- from typing import TYPE_CHECKING, Optional, Union
1
+ from typing import TYPE_CHECKING, Optional
2
2
 
3
3
  from pydantic import BaseModel, ConfigDict, Field
4
4
 
5
5
  from .parameter import Parameter
6
- from .reference import Reference
6
+ from .reference import ReferenceOr
7
7
  from .server import Server
8
8
 
9
9
  if TYPE_CHECKING:
@@ -34,7 +34,7 @@ class PathItem(BaseModel):
34
34
  patch: Optional["Operation"] = None
35
35
  trace: Optional["Operation"] = None
36
36
  servers: Optional[list[Server]] = None
37
- parameters: Optional[list[Union[Parameter, Reference]]] = None
37
+ parameters: Optional[list[ReferenceOr[Parameter]]] = None
38
38
  model_config = ConfigDict(
39
39
  # `Operation` is an unresolvable forward reference, will rebuild in `__init__.py`:
40
40
  defer_build=True,
@@ -1,4 +1,7 @@
1
- from pydantic import BaseModel, ConfigDict, Field
1
+ from typing import Annotated, Any, Literal, TypeVar, Union
2
+
3
+ from pydantic import BaseModel, ConfigDict, Discriminator, Field, Tag
4
+ from typing_extensions import TypeAlias
2
5
 
3
6
 
4
7
  class Reference(BaseModel):
@@ -24,3 +27,17 @@ class Reference(BaseModel):
24
27
  "examples": [{"$ref": "#/components/schemas/Pet"}, {"$ref": "Pet.json"}, {"$ref": "definitions.json#/Pet"}]
25
28
  },
26
29
  )
30
+
31
+
32
+ T = TypeVar("T")
33
+
34
+
35
+ def _reference_discriminator(obj: Any) -> Literal["ref", "other"]:
36
+ if isinstance(obj, dict):
37
+ return "ref" if "$ref" in obj else "other"
38
+ return "ref" if isinstance(obj, Reference) else "other"
39
+
40
+
41
+ ReferenceOr: TypeAlias = Annotated[
42
+ Union[Annotated[Reference, Tag("ref")], Annotated[T, Tag("other")]], Discriminator(_reference_discriminator)
43
+ ]
@@ -1,11 +1,11 @@
1
- from typing import Optional, Union
1
+ from typing import Optional
2
2
 
3
3
  from pydantic import BaseModel, ConfigDict
4
4
 
5
5
  from .header import Header
6
6
  from .link import Link
7
7
  from .media_type import MediaType
8
- from .reference import Reference
8
+ from .reference import ReferenceOr
9
9
 
10
10
 
11
11
  class Response(BaseModel):
@@ -19,9 +19,9 @@ class Response(BaseModel):
19
19
  """
20
20
 
21
21
  description: str
22
- headers: Optional[dict[str, Union[Header, Reference]]] = None
22
+ headers: Optional[dict[str, ReferenceOr[Header]]] = None
23
23
  content: Optional[dict[str, MediaType]] = None
24
- links: Optional[dict[str, Union[Link, Reference]]] = None
24
+ links: Optional[dict[str, ReferenceOr[Link]]] = None
25
25
  model_config = ConfigDict(
26
26
  # `MediaType` is not build yet, will rebuild in `__init__.py`:
27
27
  defer_build=True,
@@ -1,9 +1,7 @@
1
- from typing import Union
2
-
3
- from .reference import Reference
1
+ from .reference import ReferenceOr
4
2
  from .response import Response
5
3
 
6
- Responses = dict[str, Union[Response, Reference]]
4
+ Responses = dict[str, ReferenceOr[Response]]
7
5
  """
8
6
  A container for the expected responses of an operation.
9
7
  The container maps a HTTP response code to the expected response.
@@ -5,7 +5,7 @@ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, Stri
5
5
  from ..data_type import DataType
6
6
  from .discriminator import Discriminator
7
7
  from .external_documentation import ExternalDocumentation
8
- from .reference import Reference
8
+ from .reference import ReferenceOr
9
9
  from .xml import XML
10
10
 
11
11
 
@@ -38,14 +38,14 @@ class Schema(BaseModel):
38
38
  enum: Union[None, list[Any]] = Field(default=None, min_length=1)
39
39
  const: Union[None, StrictStr, StrictInt, StrictFloat, StrictBool] = None
40
40
  type: Union[DataType, list[DataType], None] = Field(default=None)
41
- allOf: list[Union[Reference, "Schema"]] = Field(default_factory=list)
42
- oneOf: list[Union[Reference, "Schema"]] = Field(default_factory=list)
43
- anyOf: list[Union[Reference, "Schema"]] = Field(default_factory=list)
44
- schema_not: Optional[Union[Reference, "Schema"]] = Field(default=None, alias="not")
45
- items: Optional[Union[Reference, "Schema"]] = None
46
- prefixItems: list[Union[Reference, "Schema"]] = Field(default_factory=list)
47
- properties: Optional[dict[str, Union[Reference, "Schema"]]] = None
48
- additionalProperties: Optional[Union[bool, Reference, "Schema"]] = None
41
+ allOf: list[ReferenceOr["Schema"]] = Field(default_factory=list)
42
+ oneOf: list[ReferenceOr["Schema"]] = Field(default_factory=list)
43
+ anyOf: list[ReferenceOr["Schema"]] = Field(default_factory=list)
44
+ schema_not: Optional[ReferenceOr["Schema"]] = Field(default=None, alias="not")
45
+ items: Optional[ReferenceOr["Schema"]] = None
46
+ prefixItems: list[ReferenceOr["Schema"]] = Field(default_factory=list)
47
+ properties: Optional[dict[str, ReferenceOr["Schema"]]] = None
48
+ additionalProperties: Optional[Union[bool, ReferenceOr["Schema"]]] = None
49
49
  description: Optional[str] = None
50
50
  schema_format: Optional[str] = Field(default=None, alias="format")
51
51
  default: Optional[Any] = None
@@ -0,0 +1 @@
1
+ """ Contains endpoint functions for accessing the API """
@@ -1,3 +1,4 @@
1
+ from collections.abc import Mapping
1
2
  from typing import Any, TypeVar, Optional, BinaryIO, TextIO, TYPE_CHECKING
2
3
 
3
4
  from attrs import define as _attrs_define
@@ -138,12 +139,12 @@ return field_dict
138
139
  {% endif %}
139
140
 
140
141
  @classmethod
141
- def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
142
+ def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
142
143
  {% for lazy_import in model.lazy_imports %}
143
144
  {{ lazy_import }}
144
145
  {% endfor %}
145
146
  {% if (model.required_properties or model.optional_properties or model.additional_properties) %}
146
- d = src_dict.copy()
147
+ d = dict(src_dict)
147
148
  {% for property in model.required_properties + model.optional_properties %}
148
149
  {% if property.required %}
149
150
  {% set property_source = 'd.pop("' + property.name + '")' %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openapi-python-client
3
- Version: 0.24.0
3
+ Version: 0.24.2
4
4
  Summary: Generate modern Python clients from OpenAPI
5
5
  Project-URL: repository, https://github.com/openapi-generators/openapi-python-client
6
6
  Author-email: Dylan Anthony <contact@dylananthony.com>
@@ -23,10 +23,10 @@ Requires-Dist: attrs>=22.2.0
23
23
  Requires-Dist: colorama>=0.4.3; sys_platform == 'win32'
24
24
  Requires-Dist: httpx<0.29.0,>=0.20.0
25
25
  Requires-Dist: jinja2<4.0.0,>=3.0.0
26
- Requires-Dist: pydantic<3.0.0,>=2.1.1
26
+ Requires-Dist: pydantic<3.0.0,>=2.10
27
27
  Requires-Dist: python-dateutil<3.0.0,>=2.8.1
28
28
  Requires-Dist: ruamel-yaml<0.19.0,>=0.18.6
29
- Requires-Dist: ruff<0.10,>=0.2
29
+ Requires-Dist: ruff<0.12,>=0.2
30
30
  Requires-Dist: shellingham<2.0.0,>=1.3.2
31
31
  Requires-Dist: typer<0.16,>0.6
32
32
  Requires-Dist: typing-extensions<5.0.0,>=4.8.0
@@ -7,7 +7,7 @@ openapi_python_client/utils.py,sha256=axPyIeoEq3I8QSGtFPgZR3sDOpmGsguDZO3y0pnjp8
7
7
  openapi_python_client/parser/__init__.py,sha256=dpY1jYmWFPBubtjKCZIlg2uHC_DLC-KpfuMNdQF8RUc,177
8
8
  openapi_python_client/parser/bodies.py,sha256=HALIpRqSkwZCxknYGXSCmxbaH0-l19MZOra56Z2y56k,4788
9
9
  openapi_python_client/parser/errors.py,sha256=HzX7fLhGJEgTY12N9ICjS3KDBnfn-AlCTBRqXmVeoqI,1225
10
- openapi_python_client/parser/openapi.py,sha256=llI6hDCmNPlxZd-dYLikh62iKvnRCIHbRgrnjBl8-zg,23309
10
+ openapi_python_client/parser/openapi.py,sha256=CIq1YfEF9kZdKDIzYV967rk1nKNgzf9sQfO_uwvdO0Y,23301
11
11
  openapi_python_client/parser/responses.py,sha256=AqKP2dEE9CyvY7I0OMEPfHXQm0DeiZgS43MBnGPfgLI,5028
12
12
  openapi_python_client/parser/properties/__init__.py,sha256=DL6miAjN2XhEvi7DkAaZrTD4p7ej_waD8AaIySjhRBM,16376
13
13
  openapi_python_client/parser/properties/any.py,sha256=ZkBan9M4uvgRy0JHnzBFLGzLzIDsnjyaHPVVrS2Nvck,1322
@@ -39,29 +39,29 @@ openapi_python_client/schema/openapi_schema_pydantic/LICENSE,sha256=yoy6owJ7bArV
39
39
  openapi_python_client/schema/openapi_schema_pydantic/README.md,sha256=LamzQvAYwLzJxutVBn1hffpquePeKoJdqZSXKfzwE_s,1996
40
40
  openapi_python_client/schema/openapi_schema_pydantic/__init__.py,sha256=n06seSNejSl9FhIBZ-RGUp0hLEz9adX1Hdbhjg3OqJY,2076
41
41
  openapi_python_client/schema/openapi_schema_pydantic/callback.py,sha256=tO7C1SjAkPXeXyrznjhyw7wFKRFjLi9h24BMb_2Uh10,568
42
- openapi_python_client/schema/openapi_schema_pydantic/components.py,sha256=ZlhcMFq-SeOnVb4nthJGUoUqlx7nn29z8OMp-sDJEMo,4617
42
+ openapi_python_client/schema/openapi_schema_pydantic/components.py,sha256=KFS8j5ZgIkJeMRV3Y4Yu2e_9ciNT5iNcE-nK_soABZs,4567
43
43
  openapi_python_client/schema/openapi_schema_pydantic/contact.py,sha256=K3QWV4oMsTYJLp7u8WotScrczQ5loS7ne7YzjzPerIM,619
44
44
  openapi_python_client/schema/openapi_schema_pydantic/discriminator.py,sha256=_q9Ax3qjSwsQ2LhZuKjkqEjgvnYAgHKw-EBBeNW671E,1278
45
- openapi_python_client/schema/openapi_schema_pydantic/encoding.py,sha256=VvfcKQFVh24CimjtFiRH9ARmpTH9nwv30HHrp7B5ftk,1330
45
+ openapi_python_client/schema/openapi_schema_pydantic/encoding.py,sha256=o0T8h2B0pxjonZEEkSX8qD8Du7rtDCRHs9afYCc5YeA,1320
46
46
  openapi_python_client/schema/openapi_schema_pydantic/example.py,sha256=FxzWAY6SCz_FFUZtlwfkZUo__ODihFn7ezheFoqPHho,1023
47
47
  openapi_python_client/schema/openapi_schema_pydantic/external_documentation.py,sha256=TrHffgkyMOW-C5IQY-QLxyPzSZJfugRsYKVVgKBM8kQ,549
48
48
  openapi_python_client/schema/openapi_schema_pydantic/header.py,sha256=9c2Y1T774PR8zVpM51dXgiM1qbcf17WX-h2p1lUtBf4,1290
49
49
  openapi_python_client/schema/openapi_schema_pydantic/info.py,sha256=EVi_xgONNqJui0iTQZRr8ZyCYPocisFLQN9WQh1aFKA,1478
50
50
  openapi_python_client/schema/openapi_schema_pydantic/license.py,sha256=8SDf4vKvJeeyxKWTQWaXuxsBIJDCExRSH-eWDuenzEk,527
51
51
  openapi_python_client/schema/openapi_schema_pydantic/link.py,sha256=BqzdTMl4T7qJG4tLGWjpPevCz6JqRzR9oZQSS0RwVAA,1675
52
- openapi_python_client/schema/openapi_schema_pydantic/media_type.py,sha256=xc0Gi-yTmNBcEp8mhvuBwMU6S2qXt_hCO4qQkLcBszY,2109
52
+ openapi_python_client/schema/openapi_schema_pydantic/media_type.py,sha256=lQft6yiw4x9w70UtxP1kR4stZGruKyAucU7fAZaY7m0,2094
53
53
  openapi_python_client/schema/openapi_schema_pydantic/oauth_flow.py,sha256=x48FMmJ2wC3wBbyAKeQRwS5_MBFynleMYmKqHZcXnQU,1161
54
54
  openapi_python_client/schema/openapi_schema_pydantic/oauth_flows.py,sha256=wcfs87M2TQQNIqJyNMIs5ICh3dU_VV5po0kTrkv0J-o,625
55
55
  openapi_python_client/schema/openapi_schema_pydantic/open_api.py,sha256=-sZb4TbOB-ndAB7kY3vUn6rG1X39w_6dUMgMC-VAvvA,1656
56
- openapi_python_client/schema/openapi_schema_pydantic/operation.py,sha256=yz0AhUI9f6DQpWvVPFjG_F3AWmPKvHjoqEDCCN0TLpM,3639
57
- openapi_python_client/schema/openapi_schema_pydantic/parameter.py,sha256=lpE_LVLv9EUpfSTHgrqirnJMhmY1tt7lHtlDNNOHlIk,3253
58
- openapi_python_client/schema/openapi_schema_pydantic/path_item.py,sha256=Jdky9596_JMOmyZ7fkCOhRCMml1cCZDsIK-7Z9-RdWI,2967
56
+ openapi_python_client/schema/openapi_schema_pydantic/operation.py,sha256=pZYO91b8QAH0lRau3vT0-pNIKj0PsCjwazZA3j9aXh0,3624
57
+ openapi_python_client/schema/openapi_schema_pydantic/parameter.py,sha256=YLMmbbCf_F5Zx1kjnynuK5fFnXyz_Lq1FGGNsD88E-I,3238
58
+ openapi_python_client/schema/openapi_schema_pydantic/path_item.py,sha256=3UEqi9G46HgZ7S_TeDV0x3qpx3fJjO_u5pxQOfCLc6A,2957
59
59
  openapi_python_client/schema/openapi_schema_pydantic/paths.py,sha256=_gh4d6oTd1FuoCziGgc6RgiULHyZW56ftwWfkj08EKU,495
60
- openapi_python_client/schema/openapi_schema_pydantic/reference.py,sha256=JVNaFChySLLHM9_p2Ai50u-IUEesO5xbaLStsh2lDt8,994
60
+ openapi_python_client/schema/openapi_schema_pydantic/reference.py,sha256=1h_HTF3QFWDcgf9xIyfQfCO9kmmbBYgjUdMrh38JMn4,1496
61
61
  openapi_python_client/schema/openapi_schema_pydantic/request_body.py,sha256=BbQFmHvKm5KZtizItfryAsQdwdU4BhM00lMy1C4NCV8,2782
62
- openapi_python_client/schema/openapi_schema_pydantic/response.py,sha256=BZdt-l04JTJDRrLe31PYQ-OvJjH5RVt-vTFDiHOY6uw,2475
63
- openapi_python_client/schema/openapi_schema_pydantic/responses.py,sha256=_vdebeD4vd7vKyyYUmd6HgXeidun4X-3RbFzeexXbac,838
64
- openapi_python_client/schema/openapi_schema_pydantic/schema.py,sha256=SkgrCyqw3OCWBygFZN028QvByVGa_tnxOHhr7_3bRWY,9002
62
+ openapi_python_client/schema/openapi_schema_pydantic/response.py,sha256=AQbqBAC4Zgo-uybCyI7KrngYodalKGHjRVamwoTQ4Y8,2460
63
+ openapi_python_client/schema/openapi_schema_pydantic/responses.py,sha256=OwKR_SgkMT7uLwnVDbwhnmmnQTL0sIikXEDfJxdWO9E,809
64
+ openapi_python_client/schema/openapi_schema_pydantic/schema.py,sha256=1xFwIBhqrxyrrp5ZgEaxl7Pac_5qNM7IgkfF4DzCe4Q,8971
65
65
  openapi_python_client/schema/openapi_schema_pydantic/security_requirement.py,sha256=NMvHwXqo0wMHtB-usUXucmjugJgvXVCeoxsETqvElYs,870
66
66
  openapi_python_client/schema/openapi_schema_pydantic/security_scheme.py,sha256=TBiinJ2-W7vSMzQ39VHP5S49jnnNOROJq2GKiVu6pTU,1871
67
67
  openapi_python_client/schema/openapi_schema_pydantic/server.py,sha256=8WmOML6ugX9EBM4PgjeJcGJmzXK9wKL1TKfKDdYI6do,1388
@@ -72,14 +72,14 @@ openapi_python_client/templates/.gitignore.jinja,sha256=SwZvl9qyKaHN9YjwaQrBsmpA
72
72
  openapi_python_client/templates/README.md.jinja,sha256=Ht7n3bEff22HtCt892wqZf9xClqNLWPvQ83a8nyz_Jc,5047
73
73
  openapi_python_client/templates/api_init.py.jinja,sha256=87ApBzKyGb5zsgTMOkQXDqsLZCmaSFoJMwbGzCDQZMw,47
74
74
  openapi_python_client/templates/client.py.jinja,sha256=M8mSxfo5slqDb3vZNl4lLzKfIRZKrJz3hn27CcLzNC8,8347
75
- openapi_python_client/templates/endpoint_init.py.jinja,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ openapi_python_client/templates/endpoint_init.py.jinja,sha256=wYN6A3_bvYW13B1J9YvYCmcv5Els-q-E07kZJwJ7Vto,58
76
76
  openapi_python_client/templates/endpoint_macros.py.jinja,sha256=Z2nnEQcLOpJAHkIuGYBVaNyTIZ7Bxw2jOMmQLPuQ4lU,6165
77
77
  openapi_python_client/templates/endpoint_module.py.jinja,sha256=DkJIArm92XxF5N06S6K37AgXdLDVyC32ZjNmvPt2hrc,5098
78
78
  openapi_python_client/templates/errors.py.jinja,sha256=trp-p5qn1_JLRxGZhdHtICaNPaCrcDCe4TgIihBravk,546
79
79
  openapi_python_client/templates/helpers.jinja,sha256=sgspXEG683IhJ0hdcnWx9M9S7-Wgrdev7YuAxf_rZ0k,339
80
80
  openapi_python_client/templates/int_enum.py.jinja,sha256=z4d2hVsdgmlxUB1fbVs4w8tJaq2SdmhLjs4mjbZ5GLw,224
81
81
  openapi_python_client/templates/literal_enum.py.jinja,sha256=KY2aadYZYFjIMAFXDX8ZsUCGmKiiPR36GmFSBqXWEk8,658
82
- openapi_python_client/templates/model.py.jinja,sha256=sHfj8Lqvk8VxVvrGxjQp8HvZQ-DtRCokqD80_0nUf_A,7550
82
+ openapi_python_client/templates/model.py.jinja,sha256=EpAQzzgVk89nAgj7NVAWzizS0UUiLK1WPoYr6xXSvKo,7588
83
83
  openapi_python_client/templates/models_init.py.jinja,sha256=T2Sj1uGxWlYb5Vc8G3cC65KMDk-mtnEH0g5Xp0xE1Ro,233
84
84
  openapi_python_client/templates/package_init.py.jinja,sha256=EMOU4q7ceaoKJItVKu52vrRTD-BzhrNBjB8VZHN5LgY,196
85
85
  openapi_python_client/templates/pyproject.toml.jinja,sha256=XdF0lbtYI75XggzzouwpeQmmF7HHzLF9KM-1KX1GTcI,1053
@@ -103,8 +103,8 @@ openapi_python_client/templates/property_templates/model_property.py.jinja,sha25
103
103
  openapi_python_client/templates/property_templates/property_macros.py.jinja,sha256=s0DqGOc8rbEKptUtH1tAht08wahN3xXpaGfyzVa3Kog,580
104
104
  openapi_python_client/templates/property_templates/union_property.py.jinja,sha256=5Ccbj4ceGEap48NO08cVFCwUli0Rdh-xqbT1Rte4bEw,4186
105
105
  openapi_python_client/templates/property_templates/uuid_property.py.jinja,sha256=132WXSoRPqZRkactw-QPdjpaGV4Mbbbu2mRqXh2c8Nc,1265
106
- openapi_python_client-0.24.0.dist-info/METADATA,sha256=muHO-m8V3Zho1JButqotTLBbZgHohjI4l2lbjB3HHCY,11114
107
- openapi_python_client-0.24.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
108
- openapi_python_client-0.24.0.dist-info/entry_points.txt,sha256=iRfSdN2foASZXr8GghkYa6KRXkDgO0EFfLut5IXoBTU,72
109
- openapi_python_client-0.24.0.dist-info/licenses/LICENSE,sha256=4dpxQYqY0DB3aTauRrqYRuu6BVNsPSJdYeUT3sH6pQY,1075
110
- openapi_python_client-0.24.0.dist-info/RECORD,,
106
+ openapi_python_client-0.24.2.dist-info/METADATA,sha256=ZfEUNh7PvCne0adDaCdfTtUnR-U25KgmW2ap1fpHKMM,11113
107
+ openapi_python_client-0.24.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
108
+ openapi_python_client-0.24.2.dist-info/entry_points.txt,sha256=iRfSdN2foASZXr8GghkYa6KRXkDgO0EFfLut5IXoBTU,72
109
+ openapi_python_client-0.24.2.dist-info/licenses/LICENSE,sha256=4dpxQYqY0DB3aTauRrqYRuu6BVNsPSJdYeUT3sH6pQY,1075
110
+ openapi_python_client-0.24.2.dist-info/RECORD,,