diff --git a/entity/README.md b/entity/README.md index 27a607795..fd12c1886 100755 --- a/entity/README.md +++ b/entity/README.md @@ -127,8 +127,6 @@ Here's an example of one such pagination call: # Error Handling Handling errors in your SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type. - - @@ -222,8 +220,6 @@ http_client = requests.Session() http_client.headers.update({'x-custom-header': 'someValue'}) s = epilot.Epilot(client: http_client) ``` - - diff --git a/entity/RELEASES.md b/entity/RELEASES.md index 498ac9197..ec54217ca 100644 --- a/entity/RELEASES.md +++ b/entity/RELEASES.md @@ -404,4 +404,12 @@ Based on: - OpenAPI Doc 1.0.0 https://docs.api.epilot.io/entity.yaml - Speakeasy CLI 1.109.0 (2.173.0) https://github.com/speakeasy-api/speakeasy ### Generated -- [python v2.1.4] entity \ No newline at end of file +- [python v2.1.4] entity + +## 2023-11-01 01:18:34 +### Changes +Based on: +- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/entity.yaml +- Speakeasy CLI 1.109.2 (2.173.0) https://github.com/speakeasy-api/speakeasy +### Generated +- [python v2.1.5] entity \ No newline at end of file diff --git a/entity/docs/models/shared/entitydefaulttable.md b/entity/docs/models/shared/entitydefaulttable.md index 05dc8b09b..a3ce3412d 100755 --- a/entity/docs/models/shared/entitydefaulttable.md +++ b/entity/docs/models/shared/entitydefaulttable.md @@ -5,7 +5,6 @@ | Field | Type | Required | Description | | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | -| `classic_view` | *Optional[str]* | :heavy_minus_sign: | N/A | | `dropdown_items` | List[[Union[EntityDefaultTableDropdownItems1, EntityDefaultTableDropdownItems2]](../../models/shared/entitydefaulttabledropdownitems.md)] | :heavy_minus_sign: | N/A | | `enable_thumbnails` | *Optional[bool]* | :heavy_minus_sign: | Enable the thumbnail column | | `navbar_actions` | List[[EntityDefaultTableNavbarActions](../../models/shared/entitydefaulttablenavbaractions.md)] | :heavy_minus_sign: | N/A | diff --git a/entity/docs/sdks/entities/README.md b/entity/docs/sdks/entities/README.md index f8fe7cef0..a0b83567b 100755 --- a/entity/docs/sdks/entities/README.md +++ b/entity/docs/sdks/entities/README.md @@ -102,6 +102,7 @@ s = epilot.Epilot( req = operations.CreateEntityRequest( entity=shared.Entity( additional_properties={ + "_acl": 'string', "_id": 'string', "_org": 'string', "_owners": 'string', @@ -109,7 +110,6 @@ req = operations.CreateEntityRequest( "_tags": 'string', "_created_at": 'string', "_updated_at": 'string', - "_acl": 'string', }, acl=shared.EntityACL( additional_properties={ @@ -373,14 +373,14 @@ s = epilot.Epilot( req = operations.PatchEntityRequest( entity=shared.Entity( additional_properties={ - "_owners": 'string', - "_schema": 'string', - "_tags": 'string', - "_created_at": 'string', "_updated_at": 'string', "_acl": 'string', "_id": 'string', "_org": 'string', + "_owners": 'string', + "_schema": 'string', + "_tags": 'string', + "_created_at": 'string', }, acl=shared.EntityACL( additional_properties={ @@ -605,7 +605,6 @@ s = epilot.Epilot( req = operations.UpdateEntityRequest( entity=shared.Entity( additional_properties={ - "_owners": 'string', "_schema": 'string', "_tags": 'string', "_created_at": 'string', @@ -613,6 +612,7 @@ req = operations.UpdateEntityRequest( "_acl": 'string', "_id": 'string', "_org": 'string', + "_owners": 'string', }, acl=shared.EntityACL( additional_properties={ diff --git a/entity/gen.yaml b/entity/gen.yaml index b36704df1..0854e421b 100644 --- a/entity/gen.yaml +++ b/entity/gen.yaml @@ -1,8 +1,8 @@ configVersion: 1.0.0 management: - docChecksum: 550354d0dee9f8f9cab62872a5a6becf + docChecksum: e8adb604a2c9aaf4c8973aa40510b5c2 docVersion: 1.0.0 - speakeasyVersion: 1.109.0 + speakeasyVersion: 1.109.2 generationVersion: 2.173.0 generation: repoURL: https://github.com/epilot-dev/sdk-python.git @@ -17,7 +17,7 @@ features: globalSecurity: 2.82.0 globalServerURLs: 2.82.0 python: - version: 2.1.4 + version: 2.1.5 author: epilot description: Python Client SDK for Epilot flattenGlobalSecurity: false diff --git a/entity/setup.py b/entity/setup.py index db99856e1..1fd614041 100755 --- a/entity/setup.py +++ b/entity/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="epilot-entity", - version="2.1.4", + version="2.1.5", author="epilot", description="Python Client SDK for Epilot", long_description=long_description, diff --git a/entity/src/epilot/models/shared/entitydefaulttable.py b/entity/src/epilot/models/shared/entitydefaulttable.py index f841933fa..18e9a2f26 100755 --- a/entity/src/epilot/models/shared/entitydefaulttable.py +++ b/entity/src/epilot/models/shared/entitydefaulttable.py @@ -82,7 +82,6 @@ class EntityDefaultTableViewType(str, Enum): @dataclass_json(undefined=Undefined.EXCLUDE) @dataclasses.dataclass class EntityDefaultTable: - classic_view: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('classic_view'), 'exclude': lambda f: f is None }}) dropdown_items: Optional[List[Union[EntityDefaultTableDropdownItems1, EntityDefaultTableDropdownItems2]]] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('dropdown_items'), 'exclude': lambda f: f is None }}) enable_thumbnails: Optional[bool] = dataclasses.field(default=False, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('enable_thumbnails'), 'exclude': lambda f: f is None }}) r"""Enable the thumbnail column""" diff --git a/entity/src/epilot/sdkconfiguration.py b/entity/src/epilot/sdkconfiguration.py index 66d9c63d1..b05d51411 100755 --- a/entity/src/epilot/sdkconfiguration.py +++ b/entity/src/epilot/sdkconfiguration.py @@ -20,9 +20,9 @@ class SDKConfiguration: server_idx: int = 0 language: str = 'python' openapi_doc_version: str = '1.0.0' - sdk_version: str = '2.1.4' + sdk_version: str = '2.1.5' gen_version: str = '2.173.0' - user_agent: str = 'speakeasy-sdk/python 2.1.4 2.173.0 1.0.0 epilot-entity' + user_agent: str = 'speakeasy-sdk/python 2.1.5 2.173.0 1.0.0 epilot-entity' retry_config: RetryConfig = None def get_server_details(self) -> Tuple[str, Dict[str, str]]: