Skip to content

Commit 556e0d4

Browse files
committed
ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.45.0
1 parent 3d98336 commit 556e0d4

26 files changed

Lines changed: 253 additions & 129 deletions

common/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ from codatcommon.models import shared
1616

1717
s = codatcommon.CodatCommon(
1818
security=shared.Security(
19-
auth_header="YOUR_API_KEY_HERE",
19+
auth_header="",
2020
),
2121
)
2222

@@ -76,8 +76,9 @@ if res.company is not None:
7676
### [settings](docs/settings/README.md)
7777

7878
* [~~get_profile~~](docs/settings/README.md#get_profile) - Get profile :warning: **Deprecated**
79-
* [get_sync_settings](docs/settings/README.md#get_sync_settings) - Update all sync settings
79+
* [get_sync_settings](docs/settings/README.md#get_sync_settings) - Get sync settings
8080
* [update_profile](docs/settings/README.md#update_profile) - Update profile
81+
* [update_sync_settings](docs/settings/README.md#update_sync_settings) - Update all sync settings
8182

8283
### [webhooks](docs/webhooks/README.md)
8384

common/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,4 +414,12 @@ Based on:
414414
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Common.yaml
415415
- Speakeasy CLI 1.44.2 (2.35.9) https://github.com/speakeasy-api/speakeasy
416416
### Releases
417-
- [PyPI v0.21.1] https://pypi.org/project/codat-common/0.21.1 - common
417+
- [PyPI v0.21.1] https://pypi.org/project/codat-common/0.21.1 - common
418+
419+
## 2023-06-08 00:18:42
420+
### Changes
421+
Based on:
422+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Common.yaml
423+
- Speakeasy CLI 1.45.0 (2.37.0) https://github.com/speakeasy-api/speakeasy
424+
### Releases
425+
- [PyPI v0.22.0] https://pypi.org/project/codat-common/0.22.0 - common

common/USAGE.md

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

66
s = codatcommon.CodatCommon(
77
security=shared.Security(
8-
auth_header="YOUR_API_KEY_HERE",
8+
auth_header="",
99
),
1010
)
1111

common/docs/companies/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ from codatcommon.models import shared
2424

2525
s = codatcommon.CodatCommon(
2626
security=shared.Security(
27-
auth_header="YOUR_API_KEY_HERE",
27+
auth_header="",
2828
),
2929
)
3030

@@ -52,7 +52,7 @@ from codatcommon.models import operations
5252

5353
s = codatcommon.CodatCommon(
5454
security=shared.Security(
55-
auth_header="YOUR_API_KEY_HERE",
55+
auth_header="",
5656
),
5757
)
5858

@@ -78,7 +78,7 @@ from codatcommon.models import operations
7878

7979
s = codatcommon.CodatCommon(
8080
security=shared.Security(
81-
auth_header="YOUR_API_KEY_HERE",
81+
auth_header="",
8282
),
8383
)
8484

@@ -104,7 +104,7 @@ from codatcommon.models import operations
104104

105105
s = codatcommon.CodatCommon(
106106
security=shared.Security(
107-
auth_header="YOUR_API_KEY_HERE",
107+
auth_header="",
108108
),
109109
)
110110

@@ -133,7 +133,7 @@ from codatcommon.models import operations, shared
133133

134134
s = codatcommon.CodatCommon(
135135
security=shared.Security(
136-
auth_header="YOUR_API_KEY_HERE",
136+
auth_header="",
137137
),
138138
)
139139

common/docs/connections/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ from codatcommon.models import operations
2525

2626
s = codatcommon.CodatCommon(
2727
security=shared.Security(
28-
auth_header="YOUR_API_KEY_HERE",
28+
auth_header="",
2929
),
3030
)
3131

@@ -55,7 +55,7 @@ from codatcommon.models import operations
5555

5656
s = codatcommon.CodatCommon(
5757
security=shared.Security(
58-
auth_header="YOUR_API_KEY_HERE",
58+
auth_header="",
5959
),
6060
)
6161

@@ -82,7 +82,7 @@ from codatcommon.models import operations
8282

8383
s = codatcommon.CodatCommon(
8484
security=shared.Security(
85-
auth_header="YOUR_API_KEY_HERE",
85+
auth_header="",
8686
),
8787
)
8888

@@ -109,7 +109,7 @@ from codatcommon.models import operations
109109

110110
s = codatcommon.CodatCommon(
111111
security=shared.Security(
112-
auth_header="YOUR_API_KEY_HERE",
112+
auth_header="",
113113
),
114114
)
115115

@@ -139,7 +139,7 @@ from codatcommon.models import operations
139139

140140
s = codatcommon.CodatCommon(
141141
security=shared.Security(
142-
auth_header="YOUR_API_KEY_HERE",
142+
auth_header="",
143143
),
144144
)
145145

@@ -169,7 +169,7 @@ from codatcommon.models import operations
169169

170170
s = codatcommon.CodatCommon(
171171
security=shared.Security(
172-
auth_header="YOUR_API_KEY_HERE",
172+
auth_header="",
173173
),
174174
)
175175

common/docs/integrations/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ from codatcommon.models import operations
2222

2323
s = codatcommon.CodatCommon(
2424
security=shared.Security(
25-
auth_header="YOUR_API_KEY_HERE",
25+
auth_header="",
2626
),
2727
)
2828

@@ -48,7 +48,7 @@ from codatcommon.models import operations
4848

4949
s = codatcommon.CodatCommon(
5050
security=shared.Security(
51-
auth_header="YOUR_API_KEY_HERE",
51+
auth_header="",
5252
),
5353
)
5454

@@ -74,7 +74,7 @@ from codatcommon.models import operations
7474

7575
s = codatcommon.CodatCommon(
7676
security=shared.Security(
77-
auth_header="YOUR_API_KEY_HERE",
77+
auth_header="",
7878
),
7979
)
8080

common/docs/pushdata/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ from codatcommon.models import operations, shared
3131

3232
s = codatcommon.CodatCommon(
3333
security=shared.Security(
34-
auth_header="YOUR_API_KEY_HERE",
34+
auth_header="",
3535
),
3636
)
3737

@@ -59,7 +59,7 @@ from codatcommon.models import operations
5959

6060
s = codatcommon.CodatCommon(
6161
security=shared.Security(
62-
auth_header="YOUR_API_KEY_HERE",
62+
auth_header="",
6363
),
6464
)
6565

@@ -86,7 +86,7 @@ from codatcommon.models import operations
8686

8787
s = codatcommon.CodatCommon(
8888
security=shared.Security(
89-
auth_header="YOUR_API_KEY_HERE",
89+
auth_header="",
9090
),
9191
)
9292

common/docs/refreshdata/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ from codatcommon.models import operations
2828

2929
s = codatcommon.CodatCommon(
3030
security=shared.Security(
31-
auth_header="YOUR_API_KEY_HERE",
31+
auth_header="",
3232
),
3333
)
3434

@@ -56,7 +56,7 @@ from codatcommon.models import operations, shared
5656

5757
s = codatcommon.CodatCommon(
5858
security=shared.Security(
59-
auth_header="YOUR_API_KEY_HERE",
59+
auth_header="",
6060
),
6161
)
6262

@@ -84,7 +84,7 @@ from codatcommon.models import operations
8484

8585
s = codatcommon.CodatCommon(
8686
security=shared.Security(
87-
auth_header="YOUR_API_KEY_HERE",
87+
auth_header="",
8888
),
8989
)
9090

@@ -110,7 +110,7 @@ from codatcommon.models import operations
110110

111111
s = codatcommon.CodatCommon(
112112
security=shared.Security(
113-
auth_header="YOUR_API_KEY_HERE",
113+
auth_header="",
114114
),
115115
)
116116

@@ -137,7 +137,7 @@ from codatcommon.models import operations
137137

138138
s = codatcommon.CodatCommon(
139139
security=shared.Security(
140-
auth_header="YOUR_API_KEY_HERE",
140+
auth_header="",
141141
),
142142
)
143143

0 commit comments

Comments
 (0)