File tree Expand file tree Collapse file tree 10 files changed +53
-26
lines changed
Expand file tree Collapse file tree 10 files changed +53
-26
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ generation:
1616 oAuth2ClientCredentialsEnabled : false
1717 oAuth2PasswordEnabled : false
1818python :
19- version : 1.0.0-beta.5
19+ version : 1.0.0-beta.6
2020 additionalDependencies :
2121 dev :
2222 freezegun : ^1.5.1
Original file line number Diff line number Diff line change @@ -2,20 +2,20 @@ speakeasyVersion: 1.545.0
22sources:
33 openapi:
44 sourceNamespace: openapi
5- sourceRevisionDigest: sha256:ebc1d709096533e6e35417ed8045aea04a79680840aea7503f26d2c83c2f2e76
6- sourceBlobDigest: sha256:829dafb0ea4f20a71ab1ec278d1dcc9f00d3756a4df3faeee2962c181e52d20e
5+ sourceRevisionDigest: sha256:a13e3fb29dd9350c13a7fc5565d8dab163c27ebc379dd24c7d173d06b8c9f82a
6+ sourceBlobDigest: sha256:e61cb351f757d275c72b7d8f17a42285f569b21f95831057dbc42f3caea1b0e2
77 tags:
88 - latest
9- - speakeasy-sdk-regen-1747268910
9+ - speakeasy-sdk-regen-1747355374
1010 - 1.0.0
1111targets:
1212 python:
1313 source: openapi
1414 sourceNamespace: openapi
15- sourceRevisionDigest: sha256:ebc1d709096533e6e35417ed8045aea04a79680840aea7503f26d2c83c2f2e76
16- sourceBlobDigest: sha256:829dafb0ea4f20a71ab1ec278d1dcc9f00d3756a4df3faeee2962c181e52d20e
15+ sourceRevisionDigest: sha256:a13e3fb29dd9350c13a7fc5565d8dab163c27ebc379dd24c7d173d06b8c9f82a
16+ sourceBlobDigest: sha256:e61cb351f757d275c72b7d8f17a42285f569b21f95831057dbc42f3caea1b0e2
1717 codeSamplesNamespace: oas-python-code-samples
18- codeSamplesRevisionDigest: sha256:825b8d9e05d88f1580d7b130c63fe56af4e8ddaaecb67a724ac52ed446666485
18+ codeSamplesRevisionDigest: sha256:fc09847b168d53844266c2522531708795f144176d4aa94ccb0a75ba0ba5e61c
1919workflow:
2020 workflowVersion: 1.0.0
2121 speakeasyVersion: latest
Original file line number Diff line number Diff line change @@ -38,4 +38,14 @@ Based on:
3838### Generated
3939- [ python v1.0.0-beta.5] .
4040### Releases
41- - [ PyPI v1.0.0-beta.5] https://pypi.org/project/gr4vy/1.0.0-beta.5 - .
41+ - [ PyPI v1.0.0-beta.5] https://pypi.org/project/gr4vy/1.0.0-beta.5 - .
42+
43+ ## 2025-05-16 00:29:19
44+ ### Changes
45+ Based on:
46+ - OpenAPI Doc
47+ - Speakeasy CLI 1.545.0 (2.599.0) https://github.com/speakeasy-api/speakeasy
48+ ### Generated
49+ - [ python v1.0.0-beta.6] .
50+ ### Releases
51+ - [ PyPI v1.0.0-beta.6] https://pypi.org/project/gr4vy/1.0.0-beta.6 - .
Original file line number Diff line number Diff line change 2525| ` flight_class ` | * OptionalNullable[ str] * | :heavy_minus_sign : | Indicates service class (first class, business class, etc.). | E |
2626| ` flight_number ` | * OptionalNullable[ str] * | :heavy_minus_sign : | Unique identifier of the flight number. | 101 |
2727| ` route_type ` | [ OptionalNullable[ models.RouteType]] ( ../models/routetype.md ) | :heavy_minus_sign : | The route type of the flight. | round_trip |
28+ | ` seat_class ` | * OptionalNullable[ str] * | :heavy_minus_sign : | Indicates seat class (first class, business class, etc.). | F |
2829| ` stop_over ` | * OptionalNullable[ bool] * | :heavy_minus_sign : | Indicates whether a stopover is allowed on this ticket. | false |
2930| ` tax_amount ` | * OptionalNullable[ int] * | :heavy_minus_sign : | Amount of the taxes for current leg of the trip. | 1200 |
Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ with Gr4vy(
143143 flight_class = " E" ,
144144 flight_number = " 101" ,
145145 route_type = " round_trip" ,
146+ seat_class = " F" ,
146147 stop_over = False ,
147148 tax_amount = 1200 ,
148149 ),
@@ -167,6 +168,7 @@ with Gr4vy(
167168 flight_class = " E" ,
168169 flight_number = " 101" ,
169170 route_type = " round_trip" ,
171+ seat_class = " F" ,
170172 stop_over = False ,
171173 tax_amount = 1200 ,
172174 ),
@@ -191,6 +193,7 @@ with Gr4vy(
191193 flight_class = " E" ,
192194 flight_number = " 101" ,
193195 route_type = " round_trip" ,
196+ seat_class = " F" ,
194197 stop_over = False ,
195198 tax_amount = 1200 ,
196199 ),
@@ -433,6 +436,7 @@ with Gr4vy(
433436 " flight_class" : " E" ,
434437 " flight_number" : " 101" ,
435438 " route_type" : " round_trip" ,
439+ " seat_class" : " F" ,
436440 " stop_over" : False ,
437441 " tax_amount" : 1200 ,
438442 },
@@ -457,6 +461,7 @@ with Gr4vy(
457461 " flight_class" : " E" ,
458462 " flight_number" : " 101" ,
459463 " route_type" : " round_trip" ,
464+ " seat_class" : " F" ,
460465 " stop_over" : False ,
461466 " tax_amount" : 1200 ,
462467 },
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ with Gr4vy(
237237 " flight_class" : " E" ,
238238 " flight_number" : " 101" ,
239239 " route_type" : " round_trip" ,
240+ " seat_class" : " F" ,
240241 " stop_over" : False ,
241242 " tax_amount" : 1200 ,
242243 },
@@ -261,6 +262,7 @@ with Gr4vy(
261262 " flight_class" : " E" ,
262263 " flight_number" : " 101" ,
263264 " route_type" : " round_trip" ,
265+ " seat_class" : " F" ,
264266 " stop_over" : False ,
265267 " tax_amount" : 1200 ,
266268 },
@@ -285,6 +287,7 @@ with Gr4vy(
285287 " flight_class" : " E" ,
286288 " flight_number" : " 101" ,
287289 " route_type" : " round_trip" ,
290+ " seat_class" : " F" ,
288291 " stop_over" : False ,
289292 " tax_amount" : 1200 ,
290293 },
@@ -538,6 +541,7 @@ with Gr4vy(
538541 " flight_class" : " E" ,
539542 " flight_number" : " 101" ,
540543 " route_type" : " round_trip" ,
544+ " seat_class" : " F" ,
541545 " stop_over" : False ,
542546 " tax_amount" : 1200 ,
543547 },
Original file line number Diff line number Diff line change 11[project ]
22name = " gr4vy"
3- version = " 1.0.0-beta.5 "
3+ version = " 1.0.0-beta.6 "
44description = " Python Client SDK Generated by Speakeasy."
55authors = [{ name = " Gr4vy" },]
66readme = " README-PYPI.md"
Original file line number Diff line number Diff line change 33import importlib .metadata
44
55__title__ : str = "gr4vy"
6- __version__ : str = "1.0.0-beta.5 "
6+ __version__ : str = "1.0.0-beta.6 "
77__openapi_doc_version__ : str = "1.0.0"
88__gen_version__ : str = "2.599.0"
9- __user_agent__ : str = "speakeasy-sdk/python 1.0.0-beta.5 2.599.0 1.0.0 gr4vy"
9+ __user_agent__ : str = "speakeasy-sdk/python 1.0.0-beta.6 2.599.0 1.0.0 gr4vy"
1010
1111try :
1212 if __package__ is not None :
Original file line number Diff line number Diff line change @@ -61,6 +61,8 @@ class AirlineLegTypedDict(TypedDict):
6161 r"""Unique identifier of the flight number."""
6262 route_type : NotRequired [Nullable [RouteType ]]
6363 r"""The route type of the flight."""
64+ seat_class : NotRequired [Nullable [str ]]
65+ r"""Indicates seat class (first class, business class, etc.)."""
6466 stop_over : NotRequired [Nullable [bool ]]
6567 r"""Indicates whether a stopover is allowed on this ticket."""
6668 tax_amount : NotRequired [Nullable [int ]]
@@ -130,6 +132,9 @@ class AirlineLeg(BaseModel):
130132 ] = UNSET
131133 r"""The route type of the flight."""
132134
135+ seat_class : OptionalNullable [str ] = UNSET
136+ r"""Indicates seat class (first class, business class, etc.)."""
137+
133138 stop_over : OptionalNullable [bool ] = UNSET
134139 r"""Indicates whether a stopover is allowed on this ticket."""
135140
@@ -159,6 +164,7 @@ def serialize_model(self, handler):
159164 "flight_class" ,
160165 "flight_number" ,
161166 "route_type" ,
167+ "seat_class" ,
162168 "stop_over" ,
163169 "tax_amount" ,
164170 ]
@@ -183,6 +189,7 @@ def serialize_model(self, handler):
183189 "flight_class" ,
184190 "flight_number" ,
185191 "route_type" ,
192+ "seat_class" ,
186193 "stop_over" ,
187194 "tax_amount" ,
188195 ]
You can’t perform that action at this time.
0 commit comments