Skip to content

Commit 79c640f

Browse files
committed
ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.59.0
1 parent 23816a9 commit 79c640f

14 files changed

Lines changed: 42 additions & 30 deletions

File tree

common/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ pip install codat-common
1010

1111
## SDK Example Usage
1212
<!-- Start SDK Example Usage -->
13+
14+
1315
```python
1416
import codatcommon
1517
from codatcommon.models import shared

common/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,4 +574,12 @@ Based on:
574574
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Common.yaml
575575
- Speakeasy CLI 1.57.0 (2.62.1) https://github.com/speakeasy-api/speakeasy
576576
### Releases
577-
- [PyPI v0.32.0] https://pypi.org/project/codat-common/0.32.0 - common
577+
- [PyPI v0.32.0] https://pypi.org/project/codat-common/0.32.0 - common
578+
579+
## 2023-07-14 00:21:05
580+
### Changes
581+
Based on:
582+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Common.yaml
583+
- Speakeasy CLI 1.59.0 (2.65.0) https://github.com/speakeasy-api/speakeasy
584+
### Releases
585+
- [PyPI v0.33.0] https://pypi.org/project/codat-common/0.33.0 - common

common/USAGE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<!-- Start SDK Example Usage -->
2+
3+
24
```python
35
import codatcommon
46
from codatcommon.models import shared

common/docs/sdks/companies/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Permanently deletes a company, its connections and any cached data. This operati
6565

6666
```python
6767
import codatcommon
68-
from codatcommon.models import operations
68+
from codatcommon.models import operations, shared
6969

7070
s = codatcommon.CodatCommon(
7171
security=shared.Security(
@@ -104,7 +104,7 @@ if res.status_code == 200:
104104

105105
```python
106106
import codatcommon
107-
from codatcommon.models import operations
107+
from codatcommon.models import operations, shared
108108

109109
s = codatcommon.CodatCommon(
110110
security=shared.Security(
@@ -143,7 +143,7 @@ if res.company is not None:
143143

144144
```python
145145
import codatcommon
146-
from codatcommon.models import operations
146+
from codatcommon.models import operations, shared
147147

148148
s = codatcommon.CodatCommon(
149149
security=shared.Security(

common/docs/sdks/connections/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Use the [List Integrations](https://docs.codat.io/codat-api#/operations/list-int
2323

2424
```python
2525
import codatcommon
26-
from codatcommon.models import operations
26+
from codatcommon.models import operations, shared
2727

2828
s = codatcommon.CodatCommon(
2929
security=shared.Security(
@@ -66,7 +66,7 @@ This operation is not reversible. The end user would need to reauthorize a new d
6666

6767
```python
6868
import codatcommon
69-
from codatcommon.models import operations
69+
from codatcommon.models import operations, shared
7070

7171
s = codatcommon.CodatCommon(
7272
security=shared.Security(
@@ -106,7 +106,7 @@ if res.status_code == 200:
106106

107107
```python
108108
import codatcommon
109-
from codatcommon.models import operations
109+
from codatcommon.models import operations, shared
110110

111111
s = codatcommon.CodatCommon(
112112
security=shared.Security(
@@ -146,7 +146,7 @@ if res.connection is not None:
146146

147147
```python
148148
import codatcommon
149-
from codatcommon.models import operations
149+
from codatcommon.models import operations, shared
150150

151151
s = codatcommon.CodatCommon(
152152
security=shared.Security(
@@ -189,7 +189,7 @@ if res.connections is not None:
189189

190190
```python
191191
import codatcommon
192-
from codatcommon.models import operations
192+
from codatcommon.models import operations, shared
193193

194194
s = codatcommon.CodatCommon(
195195
security=shared.Security(
@@ -232,7 +232,7 @@ Update data connection's authorization.
232232

233233
```python
234234
import codatcommon
235-
from codatcommon.models import operations
235+
from codatcommon.models import operations, shared
236236

237237
s = codatcommon.CodatCommon(
238238
security=shared.Security(

common/docs/sdks/integrations/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Get single integration, by platformKey
1818

1919
```python
2020
import codatcommon
21-
from codatcommon.models import operations
21+
from codatcommon.models import operations, shared
2222

2323
s = codatcommon.CodatCommon(
2424
security=shared.Security(
@@ -57,7 +57,7 @@ Get branding for platform.
5757

5858
```python
5959
import codatcommon
60-
from codatcommon.models import operations
60+
from codatcommon.models import operations, shared
6161

6262
s = codatcommon.CodatCommon(
6363
security=shared.Security(
@@ -96,7 +96,7 @@ List your available integrations
9696

9797
```python
9898
import codatcommon
99-
from codatcommon.models import operations
99+
from codatcommon.models import operations, shared
100100

101101
s = codatcommon.CodatCommon(
102102
security=shared.Security(

common/docs/sdks/pushdata/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Retrieve push operation.
6868

6969
```python
7070
import codatcommon
71-
from codatcommon.models import operations
71+
from codatcommon.models import operations, shared
7272

7373
s = codatcommon.CodatCommon(
7474
security=shared.Security(
@@ -108,7 +108,7 @@ List push operation records.
108108

109109
```python
110110
import codatcommon
111-
from codatcommon.models import operations
111+
from codatcommon.models import operations, shared
112112

113113
s = codatcommon.CodatCommon(
114114
security=shared.Security(

common/docs/sdks/refreshdata/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This is an asynchronous operation, and will bring updated data into Codat from t
2424

2525
```python
2626
import codatcommon
27-
from codatcommon.models import operations
27+
from codatcommon.models import operations, shared
2828

2929
s = codatcommon.CodatCommon(
3030
security=shared.Security(
@@ -106,7 +106,7 @@ Get the state of each data type for a company
106106

107107
```python
108108
import codatcommon
109-
from codatcommon.models import operations
109+
from codatcommon.models import operations, shared
110110

111111
s = codatcommon.CodatCommon(
112112
security=shared.Security(
@@ -145,7 +145,7 @@ Retrieve information about a single dataset or pull operation.
145145

146146
```python
147147
import codatcommon
148-
from codatcommon.models import operations
148+
from codatcommon.models import operations, shared
149149

150150
s = codatcommon.CodatCommon(
151151
security=shared.Security(
@@ -185,7 +185,7 @@ Gets the pull operation history (datasets) for a given company.
185185

186186
```python
187187
import codatcommon
188-
from codatcommon.models import operations
188+
from codatcommon.models import operations, shared
189189

190190
s = codatcommon.CodatCommon(
191191
security=shared.Security(

common/docs/sdks/settings/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Fetch your Codat profile.
2121

2222
```python
2323
import codatcommon
24-
24+
from codatcommon.models import shared
2525

2626
s = codatcommon.CodatCommon(
2727
security=shared.Security(
@@ -56,7 +56,7 @@ Retrieve the sync settings for your client. This includes how often data types s
5656

5757
```python
5858
import codatcommon
59-
59+
from codatcommon.models import shared
6060

6161
s = codatcommon.CodatCommon(
6262
security=shared.Security(

common/docs/sdks/supplementaldata/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The *Get configuration* endpoint returns supplemental data configuration previou
8080

8181
```python
8282
import codatcommon
83-
from codatcommon.models import operations
83+
from codatcommon.models import operations, shared
8484

8585
s = codatcommon.CodatCommon(
8686
security=shared.Security(

0 commit comments

Comments
 (0)