File tree Expand file tree Collapse file tree 7 files changed +21
-12
lines changed Expand file tree Collapse file tree 7 files changed +21
-12
lines changed Original file line number Diff line number Diff line change 11lockVersion: 2.0.0
22id: b0b519b1-d1d3-43b2-82dd-b4292eadd4b0
33management:
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
Original file line number Diff line number Diff 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 - .
Original file line number Diff line number Diff line change 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 |
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ generation:
1010 auth :
1111 oAuth2ClientCredentialsEnabled : false
1212python :
13- version : 5.9.1
13+ version : 5.9.2
1414 additionalDependencies :
1515 dependencies : {}
1616 extraDependencies :
Original file line number Diff line number Diff line change 1919
2020setuptools .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' ,
Original file line number Diff line number Diff line change 22
33from __future__ import annotations
44import dataclasses
5- from .featureflag import FeatureFlag
65from dataclasses_json import Undefined , dataclass_json
76from enum import Enum
87from speakeasy import utils
@@ -19,7 +18,7 @@ class AccountType(str, Enum):
1918@dataclasses .dataclass
2019class 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' ) }})
Original file line number Diff line number Diff 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 ):
You can’t perform that action at this time.
0 commit comments