Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.330.0
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Jul 10, 2024
1 parent 84534bb commit 579a70e
Show file tree
Hide file tree
Showing 48 changed files with 518 additions and 189 deletions.
9 changes: 5 additions & 4 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 79fa0df9-852a-493c-b998-1d82654b5f18
management:
docChecksum: 52a4491de6268327ef41bf826024fc20
docVersion: 3.0.3
docChecksum: 8134778d948a05652350ab91383aff9c
docVersion: 3.1.0
speakeasyVersion: 1.330.0
generationVersion: 2.361.10
releaseVersion: 0.16.0
configChecksum: 06c0913f66052b2f0f95ae4af72aa941
releaseVersion: 0.17.0
configChecksum: 47c54d980192b3aa56690c4f8dc8b849
repoURL: https://github.com/BoltApp/Bolt-Typescript-SDK.git
repoSubDirectory: .
installationURL: https://github.com/BoltApp/Bolt-Typescript-SDK
Expand Down Expand Up @@ -176,6 +176,7 @@ generatedFiles:
- docs/models/operations/paymentsupdateresponse.md
- docs/models/operations/paymentsactionrequest.md
- docs/models/operations/paymentsactionresponse.md
- docs/models/operations/oauthgettokenrequest.md
- docs/models/operations/oauthgettokenresponse.md
- docs/models/operations/orderscreatesecurity.md
- docs/models/operations/orderscreaterequest.md
Expand Down
8 changes: 4 additions & 4 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ speakeasyVersion: 1.330.0
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:47b71ad6d2f84986e469471e8aa56f969d33fdd4372ee12711f9f63f74ee82b1
sourceBlobDigest: sha256:96a31f5276e75178c60aeb427b2c17db7da9eab137d4cbd6623bee5a38d00dd6
sourceRevisionDigest: sha256:be16af9e7adaff0c5ee636e2bc66694124e30b4a4df21a9c42d91408a9cb4651
sourceBlobDigest: sha256:9cbc6783195cd1f3cfa71791e6367e430628e3860002a40df47705c474dfebd5
tags:
- latest
- main
targets:
bolt-typescript:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:47b71ad6d2f84986e469471e8aa56f969d33fdd4372ee12711f9f63f74ee82b1
sourceBlobDigest: sha256:96a31f5276e75178c60aeb427b2c17db7da9eab137d4cbd6623bee5a38d00dd6
sourceRevisionDigest: sha256:be16af9e7adaff0c5ee636e2bc66694124e30b4a4df21a9c42d91408a9cb4651
sourceBlobDigest: sha256:9cbc6783195cd1f3cfa71791e6367e430628e3860002a40df47705c474dfebd5
outLocation: /github/workspace/repo
workflow:
workflowVersion: 1.0.0
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const boltTypescriptSDK = new BoltTypescriptSDK({
});

async function run() {
const result = await boltTypescriptSDK.account.getDetails("<value>");
const result = await boltTypescriptSDK.account.getDetails("<value>", "<value>");

// Handle the result
console.log(result);
Expand Down Expand Up @@ -127,7 +127,7 @@ const boltTypescriptSDK = new BoltTypescriptSDK({
async function run() {
let result;
try {
result = await boltTypescriptSDK.account.getDetails("<value>");
result = await boltTypescriptSDK.account.getDetails("<value>", "<value>");
} catch (err) {
switch (true) {
case err instanceof SDKValidationError: {
Expand Down Expand Up @@ -178,7 +178,7 @@ const boltTypescriptSDK = new BoltTypescriptSDK({
});

async function run() {
const result = await boltTypescriptSDK.account.getDetails("<value>");
const result = await boltTypescriptSDK.account.getDetails("<value>", "<value>");

// Handle the result
console.log(result);
Expand Down Expand Up @@ -208,7 +208,7 @@ const boltTypescriptSDK = new BoltTypescriptSDK({
});

async function run() {
const result = await boltTypescriptSDK.account.getDetails("<value>");
const result = await boltTypescriptSDK.account.getDetails("<value>", "<value>");

// Handle the result
console.log(result);
Expand Down Expand Up @@ -291,7 +291,7 @@ const boltTypescriptSDK = new BoltTypescriptSDK({
});

async function run() {
const result = await boltTypescriptSDK.account.getDetails("<value>");
const result = await boltTypescriptSDK.account.getDetails("<value>", "<value>");

// Handle the result
console.log(result);
Expand Down Expand Up @@ -319,6 +319,7 @@ async function run() {
const result = await boltTypescriptSDK.payments.guest.initialize(
"<YOUR_API_KEY_HERE>",
"<value>",
"<value>",
{
profile: {
createAccount: true,
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -508,4 +508,14 @@ Based on:
### Generated
- [typescript v0.16.0] .
### Releases
- [NPM v0.16.0] https://www.npmjs.com/package/@boltpay/bolt-typescript-sdk/v/0.16.0 - .
- [NPM v0.16.0] https://www.npmjs.com/package/@boltpay/bolt-typescript-sdk/v/0.16.0 - .

## 2024-07-10 00:18:43
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.330.0 (2.361.10) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.17.0] .
### Releases
- [NPM v0.17.0] https://www.npmjs.com/package/@boltpay/bolt-typescript-sdk/v/0.17.0 - .
2 changes: 1 addition & 1 deletion USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const boltTypescriptSDK = new BoltTypescriptSDK({
});

async function run() {
const result = await boltTypescriptSDK.account.getDetails("<value>");
const result = await boltTypescriptSDK.account.getDetails("<value>", "<value>");

// Handle the result
console.log(result);
Expand Down
9 changes: 5 additions & 4 deletions docs/models/operations/accountaddpaymentmethodrequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

## Fields

| Field | Type | Required | Description |
| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- |
| `xPublishableKey` | *string* | :heavy_check_mark: | The publicly viewable identifier used to identify a merchant division. |
| `paymentMethod` | *components.PaymentMethodInput* | :heavy_check_mark: | N/A |
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `xPublishableKey` | *string* | :heavy_check_mark: | The publicly viewable identifier used to identify a merchant division. |
| `xMerchantClientId` | *string* | :heavy_check_mark: | A unique identifier for a shopper's device, generated by Bolt. This header is required for proper attribution of this operation to your analytics reports. Omitting this header may result in incorrect statistics. |
| `paymentMethod` | *components.PaymentMethodInput* | :heavy_check_mark: | N/A |
9 changes: 5 additions & 4 deletions docs/models/operations/accountaddresscreaterequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

## Fields

| Field | Type | Required | Description |
| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
| `xPublishableKey` | *string* | :heavy_check_mark: | The publicly viewable identifier used to identify a merchant division. |
| `addressListing` | [components.AddressListingInput](../../models/components/addresslistinginput.md) | :heavy_check_mark: | N/A |
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `xPublishableKey` | *string* | :heavy_check_mark: | The publicly viewable identifier used to identify a merchant division. |
| `xMerchantClientId` | *string* | :heavy_check_mark: | A unique identifier for a shopper's device, generated by Bolt. This header is required for proper attribution of this operation to your analytics reports. Omitting this header may result in incorrect statistics. |
| `addressListing` | [components.AddressListingInput](../../models/components/addresslistinginput.md) | :heavy_check_mark: | N/A |
Loading

0 comments on commit 579a70e

Please sign in to comment.