Skip to content

Commit d1860ff

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0, Speakeay CLI 1.45.0
1 parent aba1a4d commit d1860ff

File tree

14 files changed

+36
-27
lines changed

14 files changed

+36
-27
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ from sdk.models import operations
3333

3434
s = sdk.SDK(
3535
security=shared.Security(
36-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
36+
bearer_auth="",
3737
),
3838
)
3939

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,4 +238,12 @@ Based on:
238238
- OpenAPI Doc 1.0 https://prod.speakeasyapi.dev/v1/apis/Structure/version/1.0.0/schema/download
239239
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
240240
### Releases
241-
- [PyPI v0.16.1] https://pypi.org/project/structure_py/0.16.1 - .
241+
- [PyPI v0.16.1] https://pypi.org/project/structure_py/0.16.1 - .
242+
243+
## 2023-06-08 01:07:44
244+
### Changes
245+
Based on:
246+
- OpenAPI Doc 1.0 https://prod.speakeasyapi.dev/v1/apis/Structure/version/1.0.0/schema/download
247+
- Speakeasy CLI 1.45.0 (2.37.0) https://github.com/speakeasy-api/speakeasy
248+
### Releases
249+
- [PyPI v0.17.0] https://pypi.org/project/structure_py/0.17.0 - .

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ from sdk.models import operations
55

66
s = sdk.SDK(
77
security=shared.Security(
8-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
8+
bearer_auth="",
99
),
1010
)
1111

docs/accounts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import sdk
2020

2121
s = sdk.SDK(
2222
security=shared.Security(
23-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
23+
bearer_auth="",
2424
),
2525
)
2626

docs/companies/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ from sdk.models import operations
2323

2424
s = sdk.SDK(
2525
security=shared.Security(
26-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
26+
bearer_auth="",
2727
),
2828
)
2929

@@ -49,7 +49,7 @@ from sdk.models import operations
4949

5050
s = sdk.SDK(
5151
security=shared.Security(
52-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
52+
bearer_auth="",
5353
),
5454
)
5555

@@ -77,7 +77,7 @@ from sdk.models import operations
7777

7878
s = sdk.SDK(
7979
security=shared.Security(
80-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
80+
bearer_auth="",
8181
),
8282
)
8383

@@ -105,7 +105,7 @@ from sdk.models import operations
105105

106106
s = sdk.SDK(
107107
security=shared.Security(
108-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
108+
bearer_auth="",
109109
),
110110
)
111111

docs/people/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ from sdk.models import operations
2121

2222
s = sdk.SDK(
2323
security=shared.Security(
24-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
24+
bearer_auth="",
2525
),
2626
)
2727

@@ -47,7 +47,7 @@ from sdk.models import operations
4747

4848
s = sdk.SDK(
4949
security=shared.Security(
50-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
50+
bearer_auth="",
5151
),
5252
)
5353

docs/user/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ from sdk.models import operations
2121

2222
s = sdk.SDK(
2323
security=shared.Security(
24-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
24+
bearer_auth="",
2525
),
2626
)
2727

@@ -48,7 +48,7 @@ import sdk
4848

4949
s = sdk.SDK(
5050
security=shared.Security(
51-
bearer_auth="YOUR_BEARER_TOKEN_HERE",
51+
bearer_auth="",
5252
),
5353
)
5454

gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ configVersion: 1.0.0
22
management:
33
docChecksum: e0bf2d205ca94a0d32bd91d6ea558d5b
44
docVersion: "1.0"
5-
speakeasyVersion: 1.44.2
6-
generationVersion: 2.35.9
5+
speakeasyVersion: 1.45.0
6+
generationVersion: 2.37.0
77
generation:
88
sdkClassName: SDK
99
singleTagPerOp: false
1010
telemetryEnabled: false
1111
python:
12-
version: 0.16.1
12+
version: 0.17.0
1313
author: Structure
1414
description: Python Client SDK Generated by Speakeasy
1515
maxMethodParams: 0

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="structure_py",
13-
version="0.16.1",
13+
version="0.17.0",
1414
author="Structure",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

src/sdk/accounts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def list_users(self) -> operations.ListUsersResponse:
1919
url = base_url + '/accounts'
2020
headers = {}
2121
headers['Accept'] = '*/*'
22-
headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version}'
22+
headers['user-agent'] = f'speakeasy-sdk/{self.sdk_configuration.language} {self.sdk_configuration.sdk_version} {self.sdk_configuration.gen_version} {self.sdk_configuration.openapi_doc_version}'
2323

2424
client = self.sdk_configuration.security_client
2525

0 commit comments

Comments
 (0)