Skip to content

Commit 16c65eb

Browse files
committed
ci: regenerated with OpenAPI Doc 0.4.0 ., Speakeasy CLI 1.294.0
1 parent 1f4c8c5 commit 16c65eb

File tree

7 files changed

+21
-12
lines changed

7 files changed

+21
-12
lines changed

.speakeasy/gen.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: b0b519b1-d1d3-43b2-82dd-b4292eadd4b0
33
management:
4-
docChecksum: 5dd84d4ef84bb4a4426881954f176d08
4+
docChecksum: f85cf38fea71c78f79ca43b23b176863
55
docVersion: 0.4.0 .
6-
speakeasyVersion: 1.293.1
6+
speakeasyVersion: 1.294.0
77
generationVersion: 2.333.3
8-
releaseVersion: 5.9.1
9-
configChecksum: e16961395bd72b354338bd64a93ff0d8
8+
releaseVersion: 5.9.2
9+
configChecksum: ba70d1ae6d374cdd64f994b6df537096
1010
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1566,4 +1566,14 @@ Based on:
15661566
### Generated
15671567
- [python v5.9.1] .
15681568
### Releases
1569-
- [PyPI v5.9.1] https://pypi.org/project/speakeasy-client-sdk-python/5.9.1 - .
1569+
- [PyPI v5.9.1] https://pypi.org/project/speakeasy-client-sdk-python/5.9.1 - .
1570+
1571+
## 2024-05-21 00:11:13
1572+
### Changes
1573+
Based on:
1574+
- OpenAPI Doc 0.4.0 . https://docs.speakeasyapi.dev/openapi.yaml
1575+
- Speakeasy CLI 1.294.0 (2.333.3) https://github.com/speakeasy-api/speakeasy
1576+
### Generated
1577+
- [python v5.9.2] .
1578+
### Releases
1579+
- [PyPI v5.9.2] https://pypi.org/project/speakeasy-client-sdk-python/5.9.2 - .

docs/models/shared/apikeydetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| Field | Type | Required | Description |
77
| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
88
| `account_type` | [shared.AccountType](../../models/shared/accounttype.md) | :heavy_check_mark: | N/A |
9-
| `enabled_features` | List[[shared.FeatureFlag](../../models/shared/featureflag.md)] | :heavy_check_mark: | N/A |
9+
| `enabled_features` | List[*str*] | :heavy_check_mark: | N/A |
1010
| `org_slug` | *str* | :heavy_check_mark: | N/A |
1111
| `workspace_id` | *str* | :heavy_check_mark: | N/A |
1212
| `workspace_slug` | *str* | :heavy_check_mark: | N/A |

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ generation:
1010
auth:
1111
oAuth2ClientCredentialsEnabled: false
1212
python:
13-
version: 5.9.1
13+
version: 5.9.2
1414
additionalDependencies:
1515
dependencies: {}
1616
extraDependencies:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setuptools.setup(
2121
name='speakeasy-client-sdk-python',
22-
version='5.9.1',
22+
version='5.9.2',
2323
author='Speakeasy',
2424
description='Speakeasy API Client SDK for Python',
2525
url='https://github.com/speakeasy-api/speakeasy-client-sdk-python.git',

src/speakeasy/models/shared/apikeydetails.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from __future__ import annotations
44
import dataclasses
5-
from .featureflag import FeatureFlag
65
from dataclasses_json import Undefined, dataclass_json
76
from enum import Enum
87
from speakeasy import utils
@@ -19,7 +18,7 @@ class AccountType(str, Enum):
1918
@dataclasses.dataclass
2019
class APIKeyDetails:
2120
account_type: AccountType = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('account_type') }})
22-
enabled_features: List[FeatureFlag] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enabled_features') }})
21+
enabled_features: List[str] = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enabled_features') }})
2322
org_slug: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('org_slug') }})
2423
workspace_id: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('workspace_id') }})
2524
workspace_slug: str = dataclasses.field(metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('workspace_slug') }})

src/speakeasy/sdkconfiguration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ class SDKConfiguration:
2626
server: Optional[str] = ''
2727
language: str = 'python'
2828
openapi_doc_version: str = '0.4.0 .'
29-
sdk_version: str = '5.9.1'
29+
sdk_version: str = '5.9.2'
3030
gen_version: str = '2.333.3'
31-
user_agent: str = 'speakeasy-sdk/python 5.9.1 2.333.3 0.4.0 . speakeasy-client-sdk-python'
31+
user_agent: str = 'speakeasy-sdk/python 5.9.2 2.333.3 0.4.0 . speakeasy-client-sdk-python'
3232
retry_config: Optional[RetryConfig] = None
3333

3434
def __post_init__(self):

0 commit comments

Comments
 (0)