Skip to content

Commit eb7cc54

Browse files
chore: speakeasy sdk regeneration - Generate Commerce SDK (#33)
* ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.8.2 * ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.8.4 * ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.8.5 * ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.8.6 * ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.8.7 * ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.9.1 * ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.9.2 * ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.11.0 --------- Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
1 parent 03ca9b9 commit eb7cc54

34 files changed

+1417
-763
lines changed

commerce/README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,16 @@ pip install codat-commerce
1414
import codat
1515
from codat.models import operations, shared
1616

17-
s = codat.Codat()
18-
s.config_security(
17+
s = codat.Codat(
1918
security=shared.Security(
20-
api_key="YOUR_API_KEY_HERE",
21-
)
19+
auth_header="YOUR_API_KEY_HERE",
20+
),
2221
)
23-
22+
23+
2424
req = operations.GetCommerceInfoRequest(
25-
path_params=operations.GetCommerceInfoPathParams(
26-
company_id="unde",
27-
connection_id="deserunt",
28-
),
25+
company_id="unde",
26+
connection_id="deserunt",
2927
)
3028

3129
res = s.company_info.get_commerce_info(req)

commerce/RELEASES.md

Lines changed: 65 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,68 @@ Based on:
1414
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
1515
- Speakeasy CLI 1.7.1 https://github.com/speakeasy-api/speakeasy
1616
### Releases
17-
- [PyPI v0.1.1] https://pypi.org/project/codat-commerce/0.1.1 - commerce
17+
- [PyPI v0.1.1] https://pypi.org/project/codat-commerce/0.1.1 - commerce
18+
19+
## 2023-03-04 00:19:30
20+
### Changes
21+
Based on:
22+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
23+
- Speakeasy CLI 1.8.2 https://github.com/speakeasy-api/speakeasy
24+
### Releases
25+
- [PyPI v0.2.0] https://pypi.org/project/codat-commerce/0.2.0 - commerce
26+
27+
## 2023-03-06 00:21:29
28+
### Changes
29+
Based on:
30+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
31+
- Speakeasy CLI 1.8.4 https://github.com/speakeasy-api/speakeasy
32+
### Releases
33+
- [PyPI v0.2.1] https://pypi.org/project/codat-commerce/0.2.1 - commerce
34+
35+
## 2023-03-07 00:22:12
36+
### Changes
37+
Based on:
38+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
39+
- Speakeasy CLI 1.8.5 https://github.com/speakeasy-api/speakeasy
40+
### Releases
41+
- [PyPI v0.2.2] https://pypi.org/project/codat-commerce/0.2.2 - commerce
42+
43+
## 2023-03-08 00:21:18
44+
### Changes
45+
Based on:
46+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
47+
- Speakeasy CLI 1.8.6 https://github.com/speakeasy-api/speakeasy
48+
### Releases
49+
- [PyPI v0.2.3] https://pypi.org/project/codat-commerce/0.2.3 - commerce
50+
51+
## 2023-03-09 00:21:17
52+
### Changes
53+
Based on:
54+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
55+
- Speakeasy CLI 1.8.7 https://github.com/speakeasy-api/speakeasy
56+
### Releases
57+
- [PyPI v0.2.4] https://pypi.org/project/codat-commerce/0.2.4 - commerce
58+
59+
## 2023-03-10 00:21:10
60+
### Changes
61+
Based on:
62+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
63+
- Speakeasy CLI 1.9.1 https://github.com/speakeasy-api/speakeasy
64+
### Releases
65+
- [PyPI v0.3.0] https://pypi.org/project/codat-commerce/0.3.0 - commerce
66+
67+
## 2023-03-11 00:18:10
68+
### Changes
69+
Based on:
70+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
71+
- Speakeasy CLI 1.9.2 https://github.com/speakeasy-api/speakeasy
72+
### Releases
73+
- [PyPI v0.3.1] https://pypi.org/project/codat-commerce/0.3.1 - commerce
74+
75+
## 2023-03-15 00:20:31
76+
### Changes
77+
Based on:
78+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Commerce.yaml
79+
- Speakeasy CLI 1.11.0 https://github.com/speakeasy-api/speakeasy
80+
### Releases
81+
- [PyPI v0.4.0] https://pypi.org/project/codat-commerce/0.4.0 - commerce

commerce/USAGE.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,16 @@
33
import codat
44
from codat.models import operations, shared
55

6-
s = codat.Codat()
7-
s.config_security(
6+
s = codat.Codat(
87
security=shared.Security(
9-
api_key="YOUR_API_KEY_HERE",
10-
)
8+
auth_header="YOUR_API_KEY_HERE",
9+
),
1110
)
12-
11+
12+
1313
req = operations.GetCommerceInfoRequest(
14-
path_params=operations.GetCommerceInfoPathParams(
15-
company_id="unde",
16-
connection_id="deserunt",
17-
),
14+
company_id="unde",
15+
connection_id="deserunt",
1816
)
1917

2018
res = s.company_info.get_commerce_info(req)

commerce/files.gen

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ src/codat/products.py
88
src/codat/tax_components.py
99
src/codat/transactions.py
1010
src/codat/sdk.py
11+
pylintrc
1112
setup.py
1213
src/codat/__init__.py
1314
src/codat/models/__init__.py

commerce/gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: 4998343b752fd589b9667d9eef1feb73
3+
docChecksum: 5aaec830e294b860612be1a7afc096e3
44
docVersion: 2.1.0
5-
speakeasyVersion: 1.7.1
5+
speakeasyVersion: 1.11.0
66
generation:
77
telemetryEnabled: false
88
sdkClassName: codat
99
sdkFlattening: true
1010
python:
11-
version: 0.1.1
11+
version: 0.4.0
1212
author: Speakeasy
1313
description: Python Client SDK Generated by Speakeasy
1414
packageName: codat-commerce

0 commit comments

Comments
 (0)