Skip to content

Commit f1798cc

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.542.3
1 parent cffb72b commit f1798cc

27 files changed

+161
-49
lines changed

.speakeasy/gen.lock

Lines changed: 10 additions & 6 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ generation:
1616
oAuth2ClientCredentialsEnabled: true
1717
oAuth2PasswordEnabled: true
1818
python:
19-
version: 0.8.1
19+
version: 0.8.2
2020
additionalDependencies:
2121
dev: {}
2222
main: {}

.speakeasy/workflow.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ speakeasyVersion: 1.542.3
22
sources:
33
latest:
44
sourceNamespace: api-latest
5-
sourceRevisionDigest: sha256:59bc2ebfebedb1ee70a9818851442a79353c3a77d3d2dd38e3e3327fa6c00d26
6-
sourceBlobDigest: sha256:7cd628afcd0767bdf002e9a3bb941621d942dc8eef329b3fe7c7e6b19b5afa56
5+
sourceRevisionDigest: sha256:39ccfb8d56ac689ab8a3774a2d8fa47857205d18ccb4e54ad1b9653a6c4700e6
6+
sourceBlobDigest: sha256:1a544f2bde385f5fa7f5465fa41111d1aa01e48475a454673fde248f3b230900
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1746576727
9+
- speakeasy-sdk-regen-1746663136
1010
targets:
1111
latest:
1212
source: latest
1313
sourceNamespace: api-latest
14-
sourceRevisionDigest: sha256:59bc2ebfebedb1ee70a9818851442a79353c3a77d3d2dd38e3e3327fa6c00d26
15-
sourceBlobDigest: sha256:7cd628afcd0767bdf002e9a3bb941621d942dc8eef329b3fe7c7e6b19b5afa56
14+
sourceRevisionDigest: sha256:39ccfb8d56ac689ab8a3774a2d8fa47857205d18ccb4e54ad1b9653a6c4700e6
15+
sourceBlobDigest: sha256:1a544f2bde385f5fa7f5465fa41111d1aa01e48475a454673fde248f3b230900
1616
codeSamplesNamespace: latest-python-code-samples
17-
codeSamplesRevisionDigest: sha256:95e47573cd3ebbdbdb4ea3001907fd322d673a94a932dda7c8b8b79285e73e49
17+
codeSamplesRevisionDigest: sha256:b340a9bf404d95f5b316074afe9336d7c6ed553bb6910da5984154a57556aec1
1818
workflow:
1919
workflowVersion: 1.0.0
2020
speakeasyVersion: latest

README-PYPI.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ with Moov(
126126
),
127127
) as moov:
128128

129-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
129+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
130130
individual=components.CreateIndividualProfile(
131131
name=components.IndividualName(
132132
first_name="Jordan",
@@ -230,7 +230,7 @@ async def main():
230230
),
231231
) as moov:
232232

233-
res = await moov.accounts.create_async(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
233+
res = await moov.accounts.create_async(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
234234
individual=components.CreateIndividualProfile(
235235
name=components.IndividualName(
236236
first_name="Jordan",
@@ -343,7 +343,7 @@ with Moov(
343343
),
344344
) as moov:
345345

346-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
346+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
347347
individual=components.CreateIndividualProfile(
348348
name=components.IndividualName(
349349
first_name="Jordan",
@@ -1333,7 +1333,7 @@ with Moov(
13331333
),
13341334
) as moov:
13351335

1336-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1336+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
13371337
individual=components.CreateIndividualProfile(
13381338
name=components.IndividualName(
13391339
first_name="Jordan",
@@ -1436,7 +1436,7 @@ with Moov(
14361436
),
14371437
) as moov:
14381438

1439-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1439+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
14401440
individual=components.CreateIndividualProfile(
14411441
name=components.IndividualName(
14421442
first_name="Jordan",
@@ -1562,7 +1562,7 @@ with Moov(
15621562
res = None
15631563
try:
15641564

1565-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1565+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
15661566
individual=components.CreateIndividualProfile(
15671567
name=components.IndividualName(
15681568
first_name="Jordan",
@@ -1678,7 +1678,7 @@ with Moov(
16781678
),
16791679
) as moov:
16801680

1681-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1681+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
16821682
individual=components.CreateIndividualProfile(
16831683
name=components.IndividualName(
16841684
first_name="Jordan",

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ with Moov(
126126
),
127127
) as moov:
128128

129-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
129+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
130130
individual=components.CreateIndividualProfile(
131131
name=components.IndividualName(
132132
first_name="Jordan",
@@ -230,7 +230,7 @@ async def main():
230230
),
231231
) as moov:
232232

233-
res = await moov.accounts.create_async(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
233+
res = await moov.accounts.create_async(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
234234
individual=components.CreateIndividualProfile(
235235
name=components.IndividualName(
236236
first_name="Jordan",
@@ -343,7 +343,7 @@ with Moov(
343343
),
344344
) as moov:
345345

346-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
346+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
347347
individual=components.CreateIndividualProfile(
348348
name=components.IndividualName(
349349
first_name="Jordan",
@@ -1333,7 +1333,7 @@ with Moov(
13331333
),
13341334
) as moov:
13351335

1336-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1336+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
13371337
individual=components.CreateIndividualProfile(
13381338
name=components.IndividualName(
13391339
first_name="Jordan",
@@ -1436,7 +1436,7 @@ with Moov(
14361436
),
14371437
) as moov:
14381438

1439-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1439+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
14401440
individual=components.CreateIndividualProfile(
14411441
name=components.IndividualName(
14421442
first_name="Jordan",
@@ -1562,7 +1562,7 @@ with Moov(
15621562
res = None
15631563
try:
15641564

1565-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1565+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
15661566
individual=components.CreateIndividualProfile(
15671567
name=components.IndividualName(
15681568
first_name="Jordan",
@@ -1678,7 +1678,7 @@ with Moov(
16781678
),
16791679
) as moov:
16801680

1681-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1681+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
16821682
individual=components.CreateIndividualProfile(
16831683
name=components.IndividualName(
16841684
first_name="Jordan",

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,4 +356,14 @@ Based on:
356356
### Generated
357357
- [python v0.8.1] .
358358
### Releases
359-
- [PyPI v0.8.1] https://pypi.org/project/moovio_sdk/0.8.1 - .
359+
- [PyPI v0.8.1] https://pypi.org/project/moovio_sdk/0.8.1 - .
360+
361+
## 2025-05-08 00:12:00
362+
### Changes
363+
Based on:
364+
- OpenAPI Doc
365+
- Speakeasy CLI 1.542.3 (2.597.9) https://github.com/speakeasy-api/speakeasy
366+
### Generated
367+
- [python v0.8.2] .
368+
### Releases
369+
- [PyPI v0.8.2] https://pypi.org/project/moovio_sdk/0.8.2 - .

USAGE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ with Moov(
1212
),
1313
) as moov:
1414

15-
res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
15+
res = moov.accounts.create(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
1616
individual=components.CreateIndividualProfile(
1717
name=components.IndividualName(
1818
first_name="Jordan",
@@ -116,7 +116,7 @@ async def main():
116116
),
117117
) as moov:
118118

119-
res = await moov.accounts.create_async(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
119+
res = await moov.accounts.create_async(account_type=components.CreateAccountType.BUSINESS, profile=components.CreateProfile(
120120
individual=components.CreateIndividualProfile(
121121
name=components.IndividualName(
122122
first_name="Jordan",

docs/models/components/accounttype.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ The type of entity represented by this account.
88
| Name | Value |
99
| ------------ | ------------ |
1010
| `INDIVIDUAL` | individual |
11-
| `BUSINESS` | business |
11+
| `BUSINESS` | business |
12+
| `GUEST` | guest |

docs/models/components/bankaccountholdertype.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ The type of holder on a funding source.
88
| Name | Value |
99
| ------------ | ------------ |
1010
| `INDIVIDUAL` | individual |
11-
| `BUSINESS` | business |
11+
| `BUSINESS` | business |
12+
| `GUEST` | guest |

docs/models/components/createaccount.md

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

66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
8-
| `account_type` | [components.AccountType](../../models/components/accounttype.md) | :heavy_check_mark: | The type of entity represented by this account. | business |
8+
| `account_type` | [components.CreateAccountType](../../models/components/createaccounttype.md) | :heavy_check_mark: | N/A | |
99
| `profile` | [components.CreateProfile](../../models/components/createprofile.md) | :heavy_check_mark: | N/A | |
1010
| `metadata` | Dict[str, *str*] | :heavy_minus_sign: | Free-form key-value pair list. Useful for storing information that is not captured elsewhere. | {<br/>"optional": "metadata"<br/>} |
1111
| `terms_of_service` | [Optional[components.CreateAccountTermsOfService]](../../models/components/createaccounttermsofservice.md) | :heavy_minus_sign: | N/A | |

0 commit comments

Comments
 (0)