Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc 3.0.1, Speakeasy CLI 1.123.0
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Nov 28, 2023
1 parent 5d65327 commit 6ea536a
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 11 deletions.
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,14 @@ Based on:
### Generated
- [typescript v0.2.0] .
### Releases
- [NPM v0.2.0] https://www.npmjs.com/package/@boltpay/bolt-typescript-sdk/v/0.2.0 - .
- [NPM v0.2.0] https://www.npmjs.com/package/@boltpay/bolt-typescript-sdk/v/0.2.0 - .

## 2023-11-28 02:00:41
### Changes
Based on:
- OpenAPI Doc 3.0.1
- Speakeasy CLI 1.123.0 (2.202.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.2.1] .
### Releases
- [NPM v0.2.1] https://www.npmjs.com/package/@boltpay/bolt-typescript-sdk/v/0.2.1 - .
7 changes: 4 additions & 3 deletions docs/models/components/paymentactionrequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

## Fields

| Field | Type | Required | Description | Example |
| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ |
| `dotTag` | [components.DotTag](../../models/components/dottag.md) | :heavy_check_mark: | N/A | finalize |
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
| `dotTag` | [components.DotTag](../../models/components/dottag.md) | :heavy_check_mark: | N/A | finalize |
| `redirectResult` | *string* | :heavy_minus_sign: | Optional redirect result token required for an APM payment (excluding PayPal). | eyJ0cmFuc |
1 change: 1 addition & 0 deletions docs/sdks/guest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ const id: string = "iKv7t5bgt1gg";
const xPublishableKey: string = "string";
const paymentActionRequest: PaymentActionRequest = {
dotTag: DotTag.Finalize,
redirectResult: "eyJ0cmFuc",
};
const operationSecurity: GuestPaymentsActionSecurity = "";

Expand Down
1 change: 1 addition & 0 deletions docs/sdks/loggedin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ const id: string = "iKv7t5bgt1gg";
const xPublishableKey: string = "string";
const paymentActionRequest: PaymentActionRequest = {
dotTag: DotTag.Finalize,
redirectResult: "eyJ0cmFuc",
};

const res = await sdk.payments.loggedIn.performAction(id, xPublishableKey, paymentActionRequest);
Expand Down
4 changes: 2 additions & 2 deletions gen.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
configVersion: 1.0.0
management:
docChecksum: c533e0586c292fea4f0573a073d085fc
docChecksum: 572cb5b3f9a2294ef34e751840b0be14
docVersion: 3.0.1
speakeasyVersion: 1.123.0
generationVersion: 2.202.2
Expand All @@ -23,7 +23,7 @@ features:
methodSecurity: 2.82.0
nameOverrides: 2.81.1
typescript:
version: 0.2.0
version: 0.2.1
author: BoltPublicAPI
clientServerStatusCodesAsErrors: true
flattenGlobalSecurity: true
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@boltpay/bolt-typescript-sdk",
"version": "0.2.0",
"version": "0.2.1",
"author": "BoltPublicAPI",
"scripts": {
"prepare": "tsc --build",
Expand Down
7 changes: 7 additions & 0 deletions src/models/components/paymentactionrequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,11 @@ export class PaymentActionRequest extends SpeakeasyBase {
@SpeakeasyMetadata()
@Expose({ name: ".tag" })
dotTag: DotTag;

/**
* Optional redirect result token required for an APM payment (excluding PayPal).
*/
@SpeakeasyMetadata()
@Expose({ name: "redirect_result" })
redirectResult?: string;
}
4 changes: 2 additions & 2 deletions src/sdk/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ export class SDKConfiguration {
serverDefaults: any;
language = "typescript";
openapiDocVersion = "3.0.1";
sdkVersion = "0.2.0";
sdkVersion = "0.2.1";
genVersion = "2.202.2";
userAgent = "speakeasy-sdk/typescript 0.2.0 2.202.2 3.0.1 @boltpay/bolt-typescript-sdk";
userAgent = "speakeasy-sdk/typescript 0.2.1 2.202.2 3.0.1 @boltpay/bolt-typescript-sdk";
retryConfig?: utils.RetryConfig;
public constructor(init?: Partial<SDKConfiguration>) {
Object.assign(this, init);
Expand Down

0 comments on commit 6ea536a

Please sign in to comment.