@sp-api-sdk/seller-wallet-api-2024-03-01 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +106 -0
- package/dist/cjs/api-model/api/seller-wallet-api.js +910 -0
- package/dist/cjs/api-model/api.js +30 -0
- package/dist/cjs/api-model/base.js +71 -0
- package/dist/cjs/api-model/common.js +145 -0
- package/dist/cjs/api-model/configuration.js +104 -0
- package/dist/cjs/api-model/index.js +32 -0
- package/dist/cjs/api-model/models/account-holder-address.js +15 -0
- package/dist/cjs/api-model/models/balance-listing.js +15 -0
- package/dist/cjs/api-model/models/balance-type.js +27 -0
- package/dist/cjs/api-model/models/balance.js +15 -0
- package/dist/cjs/api-model/models/bank-account-holder-status.js +27 -0
- package/dist/cjs/api-model/models/bank-account-listing.js +15 -0
- package/dist/cjs/api-model/models/bank-account-number-format.js +25 -0
- package/dist/cjs/api-model/models/bank-account-ownership-type.js +26 -0
- package/dist/cjs/api-model/models/bank-account.js +15 -0
- package/dist/cjs/api-model/models/bank-number-format.js +25 -0
- package/dist/cjs/api-model/models/currency.js +15 -0
- package/dist/cjs/api-model/models/delete-transfer-schedule.js +15 -0
- package/dist/cjs/api-model/models/error-list.js +15 -0
- package/dist/cjs/api-model/models/fee-type.js +26 -0
- package/dist/cjs/api-model/models/fee.js +15 -0
- package/dist/cjs/api-model/models/fx-rate-details.js +15 -0
- package/dist/cjs/api-model/models/index.js +54 -0
- package/dist/cjs/api-model/models/model-error.js +15 -0
- package/dist/cjs/api-model/models/payment-preference-payment-type.js +25 -0
- package/dist/cjs/api-model/models/payment-preference.js +15 -0
- package/dist/cjs/api-model/models/rate-direction.js +25 -0
- package/dist/cjs/api-model/models/recurring-frequency.js +27 -0
- package/dist/cjs/api-model/models/schedule-expression-type.js +25 -0
- package/dist/cjs/api-model/models/schedule-expression.js +15 -0
- package/dist/cjs/api-model/models/schedule-transfer-type.js +24 -0
- package/dist/cjs/api-model/models/transaction-account.js +15 -0
- package/dist/cjs/api-model/models/transaction-initiation-request.js +15 -0
- package/dist/cjs/api-model/models/transaction-instrument-details.js +15 -0
- package/dist/cjs/api-model/models/transaction-listing.js +15 -0
- package/dist/cjs/api-model/models/transaction-status.js +29 -0
- package/dist/cjs/api-model/models/transaction-type.js +25 -0
- package/dist/cjs/api-model/models/transaction.js +15 -0
- package/dist/cjs/api-model/models/transfer-rate-preview.js +15 -0
- package/dist/cjs/api-model/models/transfer-schedule-failures.js +15 -0
- package/dist/cjs/api-model/models/transfer-schedule-information.js +15 -0
- package/dist/cjs/api-model/models/transfer-schedule-listing.js +15 -0
- package/dist/cjs/api-model/models/transfer-schedule-request.js +15 -0
- package/dist/cjs/api-model/models/transfer-schedule-status.js +27 -0
- package/dist/cjs/api-model/models/transfer-schedule.js +15 -0
- package/dist/cjs/client.js +13 -0
- package/dist/cjs/index.js +19 -0
- package/dist/es/api-model/api/seller-wallet-api.js +900 -0
- package/dist/es/api-model/api.js +14 -0
- package/dist/es/api-model/base.js +63 -0
- package/dist/es/api-model/common.js +133 -0
- package/dist/es/api-model/configuration.js +100 -0
- package/dist/es/api-model/index.js +16 -0
- package/dist/es/api-model/models/account-holder-address.js +14 -0
- package/dist/es/api-model/models/balance-listing.js +14 -0
- package/dist/es/api-model/models/balance-type.js +24 -0
- package/dist/es/api-model/models/balance.js +14 -0
- package/dist/es/api-model/models/bank-account-holder-status.js +24 -0
- package/dist/es/api-model/models/bank-account-listing.js +14 -0
- package/dist/es/api-model/models/bank-account-number-format.js +22 -0
- package/dist/es/api-model/models/bank-account-ownership-type.js +23 -0
- package/dist/es/api-model/models/bank-account.js +14 -0
- package/dist/es/api-model/models/bank-number-format.js +22 -0
- package/dist/es/api-model/models/currency.js +14 -0
- package/dist/es/api-model/models/delete-transfer-schedule.js +14 -0
- package/dist/es/api-model/models/error-list.js +14 -0
- package/dist/es/api-model/models/fee-type.js +23 -0
- package/dist/es/api-model/models/fee.js +14 -0
- package/dist/es/api-model/models/fx-rate-details.js +14 -0
- package/dist/es/api-model/models/index.js +38 -0
- package/dist/es/api-model/models/model-error.js +14 -0
- package/dist/es/api-model/models/payment-preference-payment-type.js +22 -0
- package/dist/es/api-model/models/payment-preference.js +14 -0
- package/dist/es/api-model/models/rate-direction.js +22 -0
- package/dist/es/api-model/models/recurring-frequency.js +24 -0
- package/dist/es/api-model/models/schedule-expression-type.js +22 -0
- package/dist/es/api-model/models/schedule-expression.js +14 -0
- package/dist/es/api-model/models/schedule-transfer-type.js +21 -0
- package/dist/es/api-model/models/transaction-account.js +14 -0
- package/dist/es/api-model/models/transaction-initiation-request.js +14 -0
- package/dist/es/api-model/models/transaction-instrument-details.js +14 -0
- package/dist/es/api-model/models/transaction-listing.js +14 -0
- package/dist/es/api-model/models/transaction-status.js +26 -0
- package/dist/es/api-model/models/transaction-type.js +22 -0
- package/dist/es/api-model/models/transaction.js +14 -0
- package/dist/es/api-model/models/transfer-rate-preview.js +14 -0
- package/dist/es/api-model/models/transfer-schedule-failures.js +14 -0
- package/dist/es/api-model/models/transfer-schedule-information.js +14 -0
- package/dist/es/api-model/models/transfer-schedule-listing.js +14 -0
- package/dist/es/api-model/models/transfer-schedule-request.js +14 -0
- package/dist/es/api-model/models/transfer-schedule-status.js +24 -0
- package/dist/es/api-model/models/transfer-schedule.js +14 -0
- package/dist/es/client.js +9 -0
- package/dist/es/index.js +3 -0
- package/dist/types/api-model/api/seller-wallet-api.d.ts +700 -0
- package/dist/types/api-model/api.d.ts +12 -0
- package/dist/types/api-model/base.d.ts +66 -0
- package/dist/types/api-model/common.d.ts +65 -0
- package/dist/types/api-model/configuration.d.ts +91 -0
- package/dist/types/api-model/index.d.ts +14 -0
- package/dist/types/api-model/models/account-holder-address.d.ts +60 -0
- package/dist/types/api-model/models/balance-listing.d.ts +25 -0
- package/dist/types/api-model/models/balance-type.d.ts +23 -0
- package/dist/types/api-model/models/balance.d.ts +49 -0
- package/dist/types/api-model/models/bank-account-holder-status.d.ts +23 -0
- package/dist/types/api-model/models/bank-account-listing.d.ts +25 -0
- package/dist/types/api-model/models/bank-account-number-format.d.ts +21 -0
- package/dist/types/api-model/models/bank-account-ownership-type.d.ts +22 -0
- package/dist/types/api-model/models/bank-account.d.ts +88 -0
- package/dist/types/api-model/models/bank-number-format.d.ts +21 -0
- package/dist/types/api-model/models/currency.d.ts +30 -0
- package/dist/types/api-model/models/delete-transfer-schedule.d.ts +36 -0
- package/dist/types/api-model/models/error-list.d.ts +24 -0
- package/dist/types/api-model/models/fee-type.d.ts +22 -0
- package/dist/types/api-model/models/fee.d.ts +44 -0
- package/dist/types/api-model/models/fx-rate-details.d.ts +43 -0
- package/dist/types/api-model/models/index.d.ts +38 -0
- package/dist/types/api-model/models/model-error.d.ts +36 -0
- package/dist/types/api-model/models/payment-preference-payment-type.d.ts +21 -0
- package/dist/types/api-model/models/payment-preference.d.ts +31 -0
- package/dist/types/api-model/models/rate-direction.d.ts +21 -0
- package/dist/types/api-model/models/recurring-frequency.d.ts +23 -0
- package/dist/types/api-model/models/schedule-expression-type.d.ts +21 -0
- package/dist/types/api-model/models/schedule-expression.d.ts +32 -0
- package/dist/types/api-model/models/schedule-transfer-type.d.ts +20 -0
- package/dist/types/api-model/models/transaction-account.d.ts +61 -0
- package/dist/types/api-model/models/transaction-initiation-request.d.ts +70 -0
- package/dist/types/api-model/models/transaction-instrument-details.d.ts +31 -0
- package/dist/types/api-model/models/transaction-listing.d.ts +31 -0
- package/dist/types/api-model/models/transaction-status.d.ts +25 -0
- package/dist/types/api-model/models/transaction-type.d.ts +21 -0
- package/dist/types/api-model/models/transaction.d.ts +119 -0
- package/dist/types/api-model/models/transfer-rate-preview.d.ts +45 -0
- package/dist/types/api-model/models/transfer-schedule-failures.d.ts +30 -0
- package/dist/types/api-model/models/transfer-schedule-information.d.ts +44 -0
- package/dist/types/api-model/models/transfer-schedule-listing.d.ts +31 -0
- package/dist/types/api-model/models/transfer-schedule-request.d.ts +71 -0
- package/dist/types/api-model/models/transfer-schedule-status.d.ts +23 -0
- package/dist/types/api-model/models/transfer-schedule.d.ts +72 -0
- package/dist/types/client.d.ts +6 -0
- package/dist/types/index.d.ts +3 -0
- package/package.json +44 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export * from './account-holder-address';
|
|
2
|
+
export * from './balance';
|
|
3
|
+
export * from './balance-listing';
|
|
4
|
+
export * from './balance-type';
|
|
5
|
+
export * from './bank-account';
|
|
6
|
+
export * from './bank-account-holder-status';
|
|
7
|
+
export * from './bank-account-listing';
|
|
8
|
+
export * from './bank-account-number-format';
|
|
9
|
+
export * from './bank-account-ownership-type';
|
|
10
|
+
export * from './bank-number-format';
|
|
11
|
+
export * from './currency';
|
|
12
|
+
export * from './delete-transfer-schedule';
|
|
13
|
+
export * from './error-list';
|
|
14
|
+
export * from './fee';
|
|
15
|
+
export * from './fee-type';
|
|
16
|
+
export * from './fx-rate-details';
|
|
17
|
+
export * from './model-error';
|
|
18
|
+
export * from './payment-preference';
|
|
19
|
+
export * from './payment-preference-payment-type';
|
|
20
|
+
export * from './rate-direction';
|
|
21
|
+
export * from './recurring-frequency';
|
|
22
|
+
export * from './schedule-expression';
|
|
23
|
+
export * from './schedule-expression-type';
|
|
24
|
+
export * from './schedule-transfer-type';
|
|
25
|
+
export * from './transaction';
|
|
26
|
+
export * from './transaction-account';
|
|
27
|
+
export * from './transaction-initiation-request';
|
|
28
|
+
export * from './transaction-instrument-details';
|
|
29
|
+
export * from './transaction-listing';
|
|
30
|
+
export * from './transaction-status';
|
|
31
|
+
export * from './transaction-type';
|
|
32
|
+
export * from './transfer-rate-preview';
|
|
33
|
+
export * from './transfer-schedule';
|
|
34
|
+
export * from './transfer-schedule-failures';
|
|
35
|
+
export * from './transfer-schedule-information';
|
|
36
|
+
export * from './transfer-schedule-listing';
|
|
37
|
+
export * from './transfer-schedule-request';
|
|
38
|
+
export * from './transfer-schedule-status';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* The type of payment preference.
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const PaymentPreferencePaymentType = {
|
|
20
|
+
Percentage: 'PERCENTAGE',
|
|
21
|
+
Amount: 'AMOUNT'
|
|
22
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Whether the customer is buying or selling the source currency.
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const RateDirection = {
|
|
20
|
+
Buy: 'BUY',
|
|
21
|
+
Sell: 'SELL'
|
|
22
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* The frequency at which the transaction is repeated.
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const RecurringFrequency = {
|
|
20
|
+
Biweekly: 'BIWEEKLY',
|
|
21
|
+
Daily: 'DAILY',
|
|
22
|
+
Monthly: 'MONTHLY',
|
|
23
|
+
Weekly: 'WEEKLY'
|
|
24
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* The type of scheduled transfer expression.
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const ScheduleExpressionType = {
|
|
20
|
+
Recurring: 'RECURRING',
|
|
21
|
+
OneTime: 'ONE_TIME'
|
|
22
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* The type of schedule the transfer is on. Schedules based on time patterns use EventBridge.
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const ScheduleTransferType = {
|
|
20
|
+
TimeBased: 'TIME_BASED'
|
|
21
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* The current status of the transaction.
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const TransactionStatus = {
|
|
20
|
+
Failed: 'FAILED',
|
|
21
|
+
FailedCreditsApplied: 'FAILED_CREDITS_APPLIED',
|
|
22
|
+
Initiated: 'INITIATED',
|
|
23
|
+
InProgress: 'IN_PROGRESS',
|
|
24
|
+
PayeeUnderReview: 'PAYEE_UNDER_REVIEW',
|
|
25
|
+
Successful: 'SUCCESSFUL'
|
|
26
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* The type of transaction.
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const TransactionType = {
|
|
20
|
+
Credit: 'CREDIT',
|
|
21
|
+
Debit: 'DEBIT'
|
|
22
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* The schedule status of the transfer.
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const TransferScheduleStatus = {
|
|
20
|
+
Enabled: 'ENABLED',
|
|
21
|
+
Disabled: 'DISABLED',
|
|
22
|
+
Expired: 'EXPIRED',
|
|
23
|
+
Deleted: 'DELETED'
|
|
24
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* The Selling Partner API for Amazon Seller Wallet Open Banking API
|
|
5
|
+
* This is a Amazon open banking api specification based on the Swagger 2.0 standard. It specifies all the api\'s that the third party will have to connect to in order to receive information from Amazon related to their customer\'s financial data. _Please note the authentication & authorization api\'s are not part of this section and would be created & shared separately_ Some useful links: - [The SP-API repository](https://swagger-editor.dovydenk.people.a2z.com/) - [The source API definition for the Amazon Seller Wallet Open Banking API](https://swagger-editor.dovydenk.people.a2z.com/)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2024-03-01
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { createAxiosInstance } from '@sp-api-sdk/common';
|
|
2
|
+
import { Configuration, SellerWalletApi } from './api-model';
|
|
3
|
+
export const clientRateLimits = [];
|
|
4
|
+
export class SellerWalletApiClient extends SellerWalletApi {
|
|
5
|
+
constructor(configuration) {
|
|
6
|
+
const { axios, endpoint } = createAxiosInstance(configuration, clientRateLimits);
|
|
7
|
+
super(new Configuration(), endpoint, axios);
|
|
8
|
+
}
|
|
9
|
+
}
|
package/dist/es/index.js
ADDED