-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.330.0
- Loading branch information
1 parent
e229359
commit 84534bb
Showing
257 changed files
with
13,148 additions
and
1,358 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# This allows generated code to be indexed correctly | ||
*.ts linguist-generated=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
/esm | ||
/dist | ||
/.tshy | ||
/.tshy-* | ||
/hooks | ||
/models | ||
/models/errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!-- Start SDK Example Usage [usage] --> | ||
```typescript | ||
import { BoltTypescriptSDK } from "@boltpay/bolt-typescript-sdk"; | ||
|
||
const boltTypescriptSDK = new BoltTypescriptSDK({ | ||
security: { | ||
oauth: "<YOUR_OAUTH_HERE>", | ||
}, | ||
}); | ||
|
||
async function run() { | ||
const result = await boltTypescriptSDK.account.getDetails("<value>"); | ||
|
||
// Handle the result | ||
console.log(result); | ||
} | ||
|
||
run(); | ||
|
||
``` | ||
<!-- End SDK Example Usage [usage] --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Account | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | | ||
| `addresses` | [components.AddressListing](../../models/components/addresslisting.md)[] | :heavy_check_mark: | A list of addresses associated with this account. | | ||
| `paymentMethods` | *components.PaymentMethod*[] | :heavy_check_mark: | A list of payment methods associated with this account. | | ||
| `profile` | [components.Profile](../../models/components/profile.md) | :heavy_minus_sign: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# AccountTestCreationData | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | | ||
| `emailState` | [components.EmailState](../../models/components/emailstate.md) | :heavy_check_mark: | N/A | unverified | | ||
| `phoneState` | [components.PhoneState](../../models/components/phonestate.md) | :heavy_check_mark: | N/A | verified | | ||
| `isMigrated` | *boolean* | :heavy_minus_sign: | N/A | true | | ||
| `hasAddress` | *boolean* | :heavy_minus_sign: | N/A | true | | ||
| `hasCreditCard` | *boolean* | :heavy_minus_sign: | N/A | true | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# AccountTestCreationDataOutput | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | | ||
| `email` | *string* | :heavy_check_mark: | N/A | [email protected] | | ||
| `emailState` | [components.EmailState](../../models/components/emailstate.md) | :heavy_check_mark: | N/A | unverified | | ||
| `phone` | *string* | :heavy_check_mark: | N/A | +14155550199 | | ||
| `phoneState` | [components.PhoneState](../../models/components/phonestate.md) | :heavy_check_mark: | N/A | verified | | ||
| `otpCode` | *string* | :heavy_check_mark: | N/A | 123456 | | ||
| `oauthCode` | *string* | :heavy_check_mark: | N/A | 7GSjMRSHs6Ak7C_zvVW6P2IhZOHxMK7HZKW1fMX85ms | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# AccountTestPhoneData | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | | ||
| `phone` | *string* | :heavy_check_mark: | A random, fictitious, unassigned phone number. | +14155550199 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Action | ||
|
||
|
||
## Values | ||
|
||
| Name | Value | | ||
| ---------- | ---------- | | ||
| `Redirect` | redirect | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# AddressListing | ||
|
||
An address saved on an account, i.e. a physical address plus any additional account-specific metadata. | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | Example | | ||
| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | | ||
| `id` | *string* | :heavy_minus_sign: | The address's unique identifier. | D4g3h5tBuVYK9 | | ||
| `firstName` | *string* | :heavy_check_mark: | The first name of the person associated with this address. | Alice | | ||
| `lastName` | *string* | :heavy_check_mark: | The last name of the person associated with this address. | Baker | | ||
| `company` | *string* | :heavy_minus_sign: | The company associated with this address. | ACME Corporation | | ||
| `streetAddress1` | *string* | :heavy_check_mark: | The street address associated with this address. | 535 Mission St, Ste 1401 | | ||
| `streetAddress2` | *string* | :heavy_minus_sign: | Any additional, optional, street address information associated with this address. | c/o Shipping Department | | ||
| `locality` | *string* | :heavy_check_mark: | The locality (e.g. city, town, etc...) associated with this address. | San Francisco | | ||
| `postalCode` | *string* | :heavy_check_mark: | The postal code associated with this address. | 94105 | | ||
| `region` | *string* | :heavy_minus_sign: | The region or administrative area (e.g. state, province, county, etc...) associated with this address. | CA | | ||
| `countryCode` | [components.CountryCode](../../models/components/countrycode.md) | :heavy_check_mark: | The country (in its ISO 3166 alpha-2 format) associated with this address. | US | | ||
| `email` | *string* | :heavy_minus_sign: | The email address associated with this address. | [email protected] | | ||
| `phone` | *string* | :heavy_minus_sign: | The phone number associated with this address. | +14155550199 | | ||
| `isDefault` | *boolean* | :heavy_minus_sign: | Whether or not this is the default address saved. | true | |
Oops, something went wrong.