Skip to content

Commit 699e092

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.109.2
1 parent 81f1851 commit 699e092

File tree

8 files changed

+21
-19
lines changed

8 files changed

+21
-19
lines changed

entity/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ Here's an example of one such pagination call:
127127
# Error Handling
128128

129129
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.
130-
131-
132130
<!-- End Error Handling -->
133131

134132

@@ -222,8 +220,6 @@ http_client = requests.Session()
222220
http_client.headers.update({'x-custom-header': 'someValue'})
223221
s = epilot.Epilot(client: http_client)
224222
```
225-
226-
227223
<!-- End Custom HTTP Client -->
228224

229225
<!-- Placeholder for Future Speakeasy SDK Sections -->

entity/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,4 +404,12 @@ Based on:
404404
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/entity.yaml
405405
- Speakeasy CLI 1.109.0 (2.173.0) https://github.com/speakeasy-api/speakeasy
406406
### Generated
407-
- [python v2.1.4] entity
407+
- [python v2.1.4] entity
408+
409+
## 2023-11-01 01:18:34
410+
### Changes
411+
Based on:
412+
- OpenAPI Doc 1.0.0 https://docs.api.epilot.io/entity.yaml
413+
- Speakeasy CLI 1.109.2 (2.173.0) https://github.com/speakeasy-api/speakeasy
414+
### Generated
415+
- [python v2.1.5] entity

entity/docs/models/shared/entitydefaulttable.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
| Field | Type | Required | Description |
77
| ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
8-
| `classic_view` | *Optional[str]* | :heavy_minus_sign: | N/A |
98
| `dropdown_items` | List[[Union[EntityDefaultTableDropdownItems1, EntityDefaultTableDropdownItems2]](../../models/shared/entitydefaulttabledropdownitems.md)] | :heavy_minus_sign: | N/A |
109
| `enable_thumbnails` | *Optional[bool]* | :heavy_minus_sign: | Enable the thumbnail column |
1110
| `navbar_actions` | List[[EntityDefaultTableNavbarActions](../../models/shared/entitydefaulttablenavbaractions.md)] | :heavy_minus_sign: | N/A |

entity/docs/sdks/entities/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,14 @@ s = epilot.Epilot(
102102
req = operations.CreateEntityRequest(
103103
entity=shared.Entity(
104104
additional_properties={
105+
"_acl": 'string',
105106
"_id": 'string',
106107
"_org": 'string',
107108
"_owners": 'string',
108109
"_schema": 'string',
109110
"_tags": 'string',
110111
"_created_at": 'string',
111112
"_updated_at": 'string',
112-
"_acl": 'string',
113113
},
114114
acl=shared.EntityACL(
115115
additional_properties={
@@ -373,14 +373,14 @@ s = epilot.Epilot(
373373
req = operations.PatchEntityRequest(
374374
entity=shared.Entity(
375375
additional_properties={
376-
"_owners": 'string',
377-
"_schema": 'string',
378-
"_tags": 'string',
379-
"_created_at": 'string',
380376
"_updated_at": 'string',
381377
"_acl": 'string',
382378
"_id": 'string',
383379
"_org": 'string',
380+
"_owners": 'string',
381+
"_schema": 'string',
382+
"_tags": 'string',
383+
"_created_at": 'string',
384384
},
385385
acl=shared.EntityACL(
386386
additional_properties={
@@ -605,14 +605,14 @@ s = epilot.Epilot(
605605
req = operations.UpdateEntityRequest(
606606
entity=shared.Entity(
607607
additional_properties={
608-
"_owners": 'string',
609608
"_schema": 'string',
610609
"_tags": 'string',
611610
"_created_at": 'string',
612611
"_updated_at": 'string',
613612
"_acl": 'string',
614613
"_id": 'string',
615614
"_org": 'string',
615+
"_owners": 'string',
616616
},
617617
acl=shared.EntityACL(
618618
additional_properties={

entity/gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: 550354d0dee9f8f9cab62872a5a6becf
3+
docChecksum: e8adb604a2c9aaf4c8973aa40510b5c2
44
docVersion: 1.0.0
5-
speakeasyVersion: 1.109.0
5+
speakeasyVersion: 1.109.2
66
generationVersion: 2.173.0
77
generation:
88
repoURL: https://github.com/epilot-dev/sdk-python.git
@@ -17,7 +17,7 @@ features:
1717
globalSecurity: 2.82.0
1818
globalServerURLs: 2.82.0
1919
python:
20-
version: 2.1.4
20+
version: 2.1.5
2121
author: epilot
2222
description: Python Client SDK for Epilot
2323
flattenGlobalSecurity: false

entity/setup.py

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

1111
setuptools.setup(
1212
name="epilot-entity",
13-
version="2.1.4",
13+
version="2.1.5",
1414
author="epilot",
1515
description="Python Client SDK for Epilot",
1616
long_description=long_description,

entity/src/epilot/models/shared/entitydefaulttable.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ class EntityDefaultTableViewType(str, Enum):
8282
@dataclass_json(undefined=Undefined.EXCLUDE)
8383
@dataclasses.dataclass
8484
class EntityDefaultTable:
85-
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 }})
8685
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 }})
8786
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 }})
8887
r"""Enable the thumbnail column"""

entity/src/epilot/sdkconfiguration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class SDKConfiguration:
2020
server_idx: int = 0
2121
language: str = 'python'
2222
openapi_doc_version: str = '1.0.0'
23-
sdk_version: str = '2.1.4'
23+
sdk_version: str = '2.1.5'
2424
gen_version: str = '2.173.0'
25-
user_agent: str = 'speakeasy-sdk/python 2.1.4 2.173.0 1.0.0 epilot-entity'
25+
user_agent: str = 'speakeasy-sdk/python 2.1.5 2.173.0 1.0.0 epilot-entity'
2626
retry_config: RetryConfig = None
2727

2828
def get_server_details(self) -> Tuple[str, Dict[str, str]]:

0 commit comments

Comments
 (0)