-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: sync SDK to OpenAPI doc v1.6.0 (#61)
- Loading branch information
1 parent
8439551
commit b69592c
Showing
19 changed files
with
266 additions
and
10 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 |
---|---|---|
@@ -1 +1 @@ | ||
1.1.1 | ||
1.6.0 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
6.2.1 | ||
6.3.0 |
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,31 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
// May contain unused imports in some cases | ||
// @ts-ignore | ||
import { Chain } from "./chain"; | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface CryptoPaymentFromAddresses | ||
*/ | ||
export interface CryptoPaymentFromAddresses { | ||
/** | ||
* | ||
* @type {Chain} | ||
* @memberof CryptoPaymentFromAddresses | ||
*/ | ||
chain?: Chain; | ||
/** | ||
* | ||
* @type {Array<string>} | ||
* @memberof CryptoPaymentFromAddresses | ||
*/ | ||
addresses?: Array<string>; | ||
} |
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,50 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface CryptoPaymentNetworkFee | ||
*/ | ||
export interface CryptoPaymentNetworkFee { | ||
/** | ||
* Magnitude of the amount, in units of the currency, with a `.`. | ||
* @type {string} | ||
* @memberof CryptoPaymentNetworkFee | ||
*/ | ||
amount: string; | ||
/** | ||
* Currency code for the amount. | ||
* @type {string} | ||
* @memberof CryptoPaymentNetworkFee | ||
*/ | ||
currency: CryptoPaymentNetworkFeeCurrencyEnum; | ||
/** | ||
* The party that pays the network fee based on merchant configuration. | ||
* @type {string} | ||
* @memberof CryptoPaymentNetworkFee | ||
*/ | ||
feePayer?: CryptoPaymentNetworkFeeFeePayerEnum; | ||
} | ||
|
||
export const CryptoPaymentNetworkFeeCurrencyEnum = { | ||
Usd: "USD", | ||
Eur: "EUR", | ||
Btc: "BTC", | ||
Eth: "ETH" | ||
} as const; | ||
|
||
export type CryptoPaymentNetworkFeeCurrencyEnum = | ||
typeof CryptoPaymentNetworkFeeCurrencyEnum[keyof typeof CryptoPaymentNetworkFeeCurrencyEnum]; | ||
export const CryptoPaymentNetworkFeeFeePayerEnum = { | ||
EndUser: "endUser", | ||
Merchant: "merchant" | ||
} as const; | ||
|
||
export type CryptoPaymentNetworkFeeFeePayerEnum = | ||
typeof CryptoPaymentNetworkFeeFeePayerEnum[keyof typeof CryptoPaymentNetworkFeeFeePayerEnum]; |
Oops, something went wrong.