@emilgroup/payment-sdk 1.4.1-beta.34 → 1.4.1-beta.36
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/README.md +2 -2
- package/api/bank-accounts-api.ts +16 -16
- package/api/bank-transaction-api.ts +16 -16
- package/api/payment-methods-api.ts +18 -32
- package/api/payment-reminders-api.ts +18 -32
- package/api/payments-api.ts +16 -16
- package/api/refunds-api.ts +16 -16
- package/api/tenant-bank-account-api.ts +16 -16
- package/dist/api/bank-accounts-api.d.ts +16 -16
- package/dist/api/bank-accounts-api.js +13 -13
- package/dist/api/bank-transaction-api.d.ts +16 -16
- package/dist/api/bank-transaction-api.js +13 -13
- package/dist/api/payment-methods-api.d.ts +15 -24
- package/dist/api/payment-methods-api.js +16 -22
- package/dist/api/payment-reminders-api.d.ts +15 -24
- package/dist/api/payment-reminders-api.js +16 -22
- package/dist/api/payments-api.d.ts +16 -16
- package/dist/api/payments-api.js +13 -13
- package/dist/api/refunds-api.d.ts +16 -16
- package/dist/api/refunds-api.js +13 -13
- package/dist/api/tenant-bank-account-api.d.ts +16 -16
- package/dist/api/tenant-bank-account-api.js +13 -13
- package/package.json +1 -1
|
@@ -20,11 +20,11 @@ import { UnlinkBankTransactionRequestDtoRest } from '../models';
|
|
|
20
20
|
*/
|
|
21
21
|
export declare const BankTransactionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
22
|
/**
|
|
23
|
-
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code
|
|
23
|
+
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information.
|
|
24
24
|
* @summary Retrieve the bank transaction
|
|
25
|
-
* @param {string} code
|
|
25
|
+
* @param {string} code
|
|
26
26
|
* @param {string} [authorization] Bearer Token
|
|
27
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
27
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
28
28
|
* @param {*} [options] Override http request option.
|
|
29
29
|
* @throws {RequiredError}
|
|
30
30
|
*/
|
|
@@ -57,7 +57,7 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
57
57
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
58
58
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
59
59
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, amount, transactionDate, entryDate</i>
|
|
60
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
60
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
61
61
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
62
62
|
* @param {*} [options] Override http request option.
|
|
63
63
|
* @throws {RequiredError}
|
|
@@ -80,11 +80,11 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
80
80
|
*/
|
|
81
81
|
export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
82
82
|
/**
|
|
83
|
-
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code
|
|
83
|
+
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information.
|
|
84
84
|
* @summary Retrieve the bank transaction
|
|
85
|
-
* @param {string} code
|
|
85
|
+
* @param {string} code
|
|
86
86
|
* @param {string} [authorization] Bearer Token
|
|
87
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
87
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
88
88
|
* @param {*} [options] Override http request option.
|
|
89
89
|
* @throws {RequiredError}
|
|
90
90
|
*/
|
|
@@ -117,7 +117,7 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
117
117
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
118
118
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
119
119
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, amount, transactionDate, entryDate</i>
|
|
120
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
120
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
121
121
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
122
122
|
* @param {*} [options] Override http request option.
|
|
123
123
|
* @throws {RequiredError}
|
|
@@ -140,11 +140,11 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
140
140
|
*/
|
|
141
141
|
export declare const BankTransactionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
142
142
|
/**
|
|
143
|
-
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code
|
|
143
|
+
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information.
|
|
144
144
|
* @summary Retrieve the bank transaction
|
|
145
|
-
* @param {string} code
|
|
145
|
+
* @param {string} code
|
|
146
146
|
* @param {string} [authorization] Bearer Token
|
|
147
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
147
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
148
148
|
* @param {*} [options] Override http request option.
|
|
149
149
|
* @throws {RequiredError}
|
|
150
150
|
*/
|
|
@@ -177,7 +177,7 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
177
177
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
178
178
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
179
179
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, amount, transactionDate, entryDate</i>
|
|
180
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
180
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
181
181
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
182
182
|
* @param {*} [options] Override http request option.
|
|
183
183
|
* @throws {RequiredError}
|
|
@@ -201,7 +201,7 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
201
201
|
*/
|
|
202
202
|
export interface BankTransactionApiGetBankTransactionRequest {
|
|
203
203
|
/**
|
|
204
|
-
*
|
|
204
|
+
*
|
|
205
205
|
* @type {string}
|
|
206
206
|
* @memberof BankTransactionApiGetBankTransaction
|
|
207
207
|
*/
|
|
@@ -213,7 +213,7 @@ export interface BankTransactionApiGetBankTransactionRequest {
|
|
|
213
213
|
*/
|
|
214
214
|
readonly authorization?: string;
|
|
215
215
|
/**
|
|
216
|
-
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
216
|
+
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
217
217
|
* @type {string}
|
|
218
218
|
* @memberof BankTransactionApiGetBankTransaction
|
|
219
219
|
*/
|
|
@@ -306,7 +306,7 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
306
306
|
*/
|
|
307
307
|
readonly order?: string;
|
|
308
308
|
/**
|
|
309
|
-
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
309
|
+
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
310
310
|
* @type {string}
|
|
311
311
|
* @memberof BankTransactionApiListBankTransactions
|
|
312
312
|
*/
|
|
@@ -351,7 +351,7 @@ export interface BankTransactionApiUnlinkBankTransactionRequest {
|
|
|
351
351
|
*/
|
|
352
352
|
export declare class BankTransactionApi extends BaseAPI {
|
|
353
353
|
/**
|
|
354
|
-
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code
|
|
354
|
+
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information.
|
|
355
355
|
* @summary Retrieve the bank transaction
|
|
356
356
|
* @param {BankTransactionApiGetBankTransactionRequest} requestParameters Request parameters.
|
|
357
357
|
* @param {*} [options] Override http request option.
|
|
@@ -93,11 +93,11 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code
|
|
96
|
+
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information.
|
|
97
97
|
* @summary Retrieve the bank transaction
|
|
98
|
-
* @param {string} code
|
|
98
|
+
* @param {string} code
|
|
99
99
|
* @param {string} [authorization] Bearer Token
|
|
100
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
100
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
101
101
|
* @param {*} [options] Override http request option.
|
|
102
102
|
* @throws {RequiredError}
|
|
103
103
|
*/
|
|
@@ -258,7 +258,7 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
258
258
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
259
259
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
260
260
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, amount, transactionDate, entryDate</i>
|
|
261
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
261
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
262
262
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
263
263
|
* @param {*} [options] Override http request option.
|
|
264
264
|
* @throws {RequiredError}
|
|
@@ -385,11 +385,11 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
385
385
|
var localVarAxiosParamCreator = (0, exports.BankTransactionApiAxiosParamCreator)(configuration);
|
|
386
386
|
return {
|
|
387
387
|
/**
|
|
388
|
-
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code
|
|
388
|
+
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information.
|
|
389
389
|
* @summary Retrieve the bank transaction
|
|
390
|
-
* @param {string} code
|
|
390
|
+
* @param {string} code
|
|
391
391
|
* @param {string} [authorization] Bearer Token
|
|
392
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
392
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
393
393
|
* @param {*} [options] Override http request option.
|
|
394
394
|
* @throws {RequiredError}
|
|
395
395
|
*/
|
|
@@ -458,7 +458,7 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
458
458
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
459
459
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
460
460
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, amount, transactionDate, entryDate</i>
|
|
461
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
461
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
462
462
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
463
463
|
* @param {*} [options] Override http request option.
|
|
464
464
|
* @throws {RequiredError}
|
|
@@ -509,11 +509,11 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
509
509
|
var localVarFp = (0, exports.BankTransactionApiFp)(configuration);
|
|
510
510
|
return {
|
|
511
511
|
/**
|
|
512
|
-
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code
|
|
512
|
+
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information.
|
|
513
513
|
* @summary Retrieve the bank transaction
|
|
514
|
-
* @param {string} code
|
|
514
|
+
* @param {string} code
|
|
515
515
|
* @param {string} [authorization] Bearer Token
|
|
516
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
516
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
517
517
|
* @param {*} [options] Override http request option.
|
|
518
518
|
* @throws {RequiredError}
|
|
519
519
|
*/
|
|
@@ -552,7 +552,7 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
552
552
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
553
553
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
554
554
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, amount, transactionDate, entryDate</i>
|
|
555
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction
|
|
555
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
556
556
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
557
557
|
* @param {*} [options] Override http request option.
|
|
558
558
|
* @throws {RequiredError}
|
|
@@ -587,7 +587,7 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
587
587
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
588
588
|
}
|
|
589
589
|
/**
|
|
590
|
-
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code
|
|
590
|
+
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information.
|
|
591
591
|
* @summary Retrieve the bank transaction
|
|
592
592
|
* @param {BankTransactionApiGetBankTransactionRequest} requestParameters Request parameters.
|
|
593
593
|
* @param {*} [options] Override http request option.
|
|
@@ -27,15 +27,14 @@ export declare const PaymentMethodsApiAxiosParamCreator: (configuration?: Config
|
|
|
27
27
|
*/
|
|
28
28
|
createPaymentMethod: (body: object, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
29
29
|
/**
|
|
30
|
-
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code
|
|
30
|
+
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code that was returned when you created it and Emil Api will return the corresponding payment method information.
|
|
31
31
|
* @summary Retrieve the payment method
|
|
32
|
-
* @param {string} code
|
|
32
|
+
* @param {string} code
|
|
33
33
|
* @param {string} [authorization] Bearer Token
|
|
34
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: .<i>
|
|
35
34
|
* @param {*} [options] Override http request option.
|
|
36
35
|
* @throws {RequiredError}
|
|
37
36
|
*/
|
|
38
|
-
getPaymentMethod: (code: string, authorization?: string,
|
|
37
|
+
getPaymentMethod: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
38
|
/**
|
|
40
39
|
* Returns a list of payment methods you have previously created. The payment methods are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
41
40
|
* @summary List payment methods
|
|
@@ -45,7 +44,7 @@ export declare const PaymentMethodsApiAxiosParamCreator: (configuration?: Config
|
|
|
45
44
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
46
45
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
47
46
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
48
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values:
|
|
47
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
49
48
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
50
49
|
* @param {*} [options] Override http request option.
|
|
51
50
|
* @throws {RequiredError}
|
|
@@ -67,15 +66,14 @@ export declare const PaymentMethodsApiFp: (configuration?: Configuration) => {
|
|
|
67
66
|
*/
|
|
68
67
|
createPaymentMethod(body: object, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
69
68
|
/**
|
|
70
|
-
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code
|
|
69
|
+
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code that was returned when you created it and Emil Api will return the corresponding payment method information.
|
|
71
70
|
* @summary Retrieve the payment method
|
|
72
|
-
* @param {string} code
|
|
71
|
+
* @param {string} code
|
|
73
72
|
* @param {string} [authorization] Bearer Token
|
|
74
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: .<i>
|
|
75
73
|
* @param {*} [options] Override http request option.
|
|
76
74
|
* @throws {RequiredError}
|
|
77
75
|
*/
|
|
78
|
-
getPaymentMethod(code: string, authorization?: string,
|
|
76
|
+
getPaymentMethod(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
79
77
|
/**
|
|
80
78
|
* Returns a list of payment methods you have previously created. The payment methods are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
81
79
|
* @summary List payment methods
|
|
@@ -85,7 +83,7 @@ export declare const PaymentMethodsApiFp: (configuration?: Configuration) => {
|
|
|
85
83
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
86
84
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
87
85
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
88
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values:
|
|
86
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
89
87
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
90
88
|
* @param {*} [options] Override http request option.
|
|
91
89
|
* @throws {RequiredError}
|
|
@@ -107,15 +105,14 @@ export declare const PaymentMethodsApiFactory: (configuration?: Configuration, b
|
|
|
107
105
|
*/
|
|
108
106
|
createPaymentMethod(body: object, authorization?: string, options?: any): AxiosPromise<void>;
|
|
109
107
|
/**
|
|
110
|
-
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code
|
|
108
|
+
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code that was returned when you created it and Emil Api will return the corresponding payment method information.
|
|
111
109
|
* @summary Retrieve the payment method
|
|
112
|
-
* @param {string} code
|
|
110
|
+
* @param {string} code
|
|
113
111
|
* @param {string} [authorization] Bearer Token
|
|
114
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: .<i>
|
|
115
112
|
* @param {*} [options] Override http request option.
|
|
116
113
|
* @throws {RequiredError}
|
|
117
114
|
*/
|
|
118
|
-
getPaymentMethod(code: string, authorization?: string,
|
|
115
|
+
getPaymentMethod(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
119
116
|
/**
|
|
120
117
|
* Returns a list of payment methods you have previously created. The payment methods are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
121
118
|
* @summary List payment methods
|
|
@@ -125,7 +122,7 @@ export declare const PaymentMethodsApiFactory: (configuration?: Configuration, b
|
|
|
125
122
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
126
123
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
127
124
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
128
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values:
|
|
125
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
129
126
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
130
127
|
* @param {*} [options] Override http request option.
|
|
131
128
|
* @throws {RequiredError}
|
|
@@ -158,7 +155,7 @@ export interface PaymentMethodsApiCreatePaymentMethodRequest {
|
|
|
158
155
|
*/
|
|
159
156
|
export interface PaymentMethodsApiGetPaymentMethodRequest {
|
|
160
157
|
/**
|
|
161
|
-
*
|
|
158
|
+
*
|
|
162
159
|
* @type {string}
|
|
163
160
|
* @memberof PaymentMethodsApiGetPaymentMethod
|
|
164
161
|
*/
|
|
@@ -169,12 +166,6 @@ export interface PaymentMethodsApiGetPaymentMethodRequest {
|
|
|
169
166
|
* @memberof PaymentMethodsApiGetPaymentMethod
|
|
170
167
|
*/
|
|
171
168
|
readonly authorization?: string;
|
|
172
|
-
/**
|
|
173
|
-
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: .<i>
|
|
174
|
-
* @type {string}
|
|
175
|
-
* @memberof PaymentMethodsApiGetPaymentMethod
|
|
176
|
-
*/
|
|
177
|
-
readonly expand?: string;
|
|
178
169
|
}
|
|
179
170
|
/**
|
|
180
171
|
* Request parameters for listPaymentMethods operation in PaymentMethodsApi.
|
|
@@ -219,7 +210,7 @@ export interface PaymentMethodsApiListPaymentMethodsRequest {
|
|
|
219
210
|
*/
|
|
220
211
|
readonly order?: string;
|
|
221
212
|
/**
|
|
222
|
-
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values:
|
|
213
|
+
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
223
214
|
* @type {string}
|
|
224
215
|
* @memberof PaymentMethodsApiListPaymentMethods
|
|
225
216
|
*/
|
|
@@ -248,7 +239,7 @@ export declare class PaymentMethodsApi extends BaseAPI {
|
|
|
248
239
|
*/
|
|
249
240
|
createPaymentMethod(requestParameters: PaymentMethodsApiCreatePaymentMethodRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
250
241
|
/**
|
|
251
|
-
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code
|
|
242
|
+
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code that was returned when you created it and Emil Api will return the corresponding payment method information.
|
|
252
243
|
* @summary Retrieve the payment method
|
|
253
244
|
* @param {PaymentMethodsApiGetPaymentMethodRequest} requestParameters Request parameters.
|
|
254
245
|
* @param {*} [options] Override http request option.
|
|
@@ -142,15 +142,14 @@ var PaymentMethodsApiAxiosParamCreator = function (configuration) {
|
|
|
142
142
|
});
|
|
143
143
|
},
|
|
144
144
|
/**
|
|
145
|
-
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code
|
|
145
|
+
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code that was returned when you created it and Emil Api will return the corresponding payment method information.
|
|
146
146
|
* @summary Retrieve the payment method
|
|
147
|
-
* @param {string} code
|
|
147
|
+
* @param {string} code
|
|
148
148
|
* @param {string} [authorization] Bearer Token
|
|
149
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: .<i>
|
|
150
149
|
* @param {*} [options] Override http request option.
|
|
151
150
|
* @throws {RequiredError}
|
|
152
151
|
*/
|
|
153
|
-
getPaymentMethod: function (code, authorization,
|
|
152
|
+
getPaymentMethod: function (code, authorization, options) {
|
|
154
153
|
if (options === void 0) { options = {}; }
|
|
155
154
|
return __awaiter(_this, void 0, void 0, function () {
|
|
156
155
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -176,9 +175,6 @@ var PaymentMethodsApiAxiosParamCreator = function (configuration) {
|
|
|
176
175
|
// authentication bearer required
|
|
177
176
|
// http bearer authentication required
|
|
178
177
|
_a.sent();
|
|
179
|
-
if (expand !== undefined) {
|
|
180
|
-
localVarQueryParameter['expand'] = expand;
|
|
181
|
-
}
|
|
182
178
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
183
179
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
184
180
|
}
|
|
@@ -202,7 +198,7 @@ var PaymentMethodsApiAxiosParamCreator = function (configuration) {
|
|
|
202
198
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
203
199
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
204
200
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
205
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values:
|
|
201
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
206
202
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
207
203
|
* @param {*} [options] Override http request option.
|
|
208
204
|
* @throws {RequiredError}
|
|
@@ -297,20 +293,19 @@ var PaymentMethodsApiFp = function (configuration) {
|
|
|
297
293
|
});
|
|
298
294
|
},
|
|
299
295
|
/**
|
|
300
|
-
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code
|
|
296
|
+
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code that was returned when you created it and Emil Api will return the corresponding payment method information.
|
|
301
297
|
* @summary Retrieve the payment method
|
|
302
|
-
* @param {string} code
|
|
298
|
+
* @param {string} code
|
|
303
299
|
* @param {string} [authorization] Bearer Token
|
|
304
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: .<i>
|
|
305
300
|
* @param {*} [options] Override http request option.
|
|
306
301
|
* @throws {RequiredError}
|
|
307
302
|
*/
|
|
308
|
-
getPaymentMethod: function (code, authorization,
|
|
303
|
+
getPaymentMethod: function (code, authorization, options) {
|
|
309
304
|
return __awaiter(this, void 0, void 0, function () {
|
|
310
305
|
var localVarAxiosArgs;
|
|
311
306
|
return __generator(this, function (_a) {
|
|
312
307
|
switch (_a.label) {
|
|
313
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPaymentMethod(code, authorization,
|
|
308
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPaymentMethod(code, authorization, options)];
|
|
314
309
|
case 1:
|
|
315
310
|
localVarAxiosArgs = _a.sent();
|
|
316
311
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -327,7 +322,7 @@ var PaymentMethodsApiFp = function (configuration) {
|
|
|
327
322
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
328
323
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
329
324
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
330
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values:
|
|
325
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
331
326
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
332
327
|
* @param {*} [options] Override http request option.
|
|
333
328
|
* @throws {RequiredError}
|
|
@@ -367,16 +362,15 @@ var PaymentMethodsApiFactory = function (configuration, basePath, axios) {
|
|
|
367
362
|
return localVarFp.createPaymentMethod(body, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
368
363
|
},
|
|
369
364
|
/**
|
|
370
|
-
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code
|
|
365
|
+
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code that was returned when you created it and Emil Api will return the corresponding payment method information.
|
|
371
366
|
* @summary Retrieve the payment method
|
|
372
|
-
* @param {string} code
|
|
367
|
+
* @param {string} code
|
|
373
368
|
* @param {string} [authorization] Bearer Token
|
|
374
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: .<i>
|
|
375
369
|
* @param {*} [options] Override http request option.
|
|
376
370
|
* @throws {RequiredError}
|
|
377
371
|
*/
|
|
378
|
-
getPaymentMethod: function (code, authorization,
|
|
379
|
-
return localVarFp.getPaymentMethod(code, authorization,
|
|
372
|
+
getPaymentMethod: function (code, authorization, options) {
|
|
373
|
+
return localVarFp.getPaymentMethod(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
380
374
|
},
|
|
381
375
|
/**
|
|
382
376
|
* Returns a list of payment methods you have previously created. The payment methods are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
@@ -387,7 +381,7 @@ var PaymentMethodsApiFactory = function (configuration, basePath, axios) {
|
|
|
387
381
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
388
382
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
389
383
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
390
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values:
|
|
384
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
391
385
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type</i>
|
|
392
386
|
* @param {*} [options] Override http request option.
|
|
393
387
|
* @throws {RequiredError}
|
|
@@ -422,7 +416,7 @@ var PaymentMethodsApi = /** @class */ (function (_super) {
|
|
|
422
416
|
return (0, exports.PaymentMethodsApiFp)(this.configuration).createPaymentMethod(requestParameters.body, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
423
417
|
};
|
|
424
418
|
/**
|
|
425
|
-
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code
|
|
419
|
+
* Retrieves the details of the payment method that was previously created. Supply the unique payment method code that was returned when you created it and Emil Api will return the corresponding payment method information.
|
|
426
420
|
* @summary Retrieve the payment method
|
|
427
421
|
* @param {PaymentMethodsApiGetPaymentMethodRequest} requestParameters Request parameters.
|
|
428
422
|
* @param {*} [options] Override http request option.
|
|
@@ -431,7 +425,7 @@ var PaymentMethodsApi = /** @class */ (function (_super) {
|
|
|
431
425
|
*/
|
|
432
426
|
PaymentMethodsApi.prototype.getPaymentMethod = function (requestParameters, options) {
|
|
433
427
|
var _this = this;
|
|
434
|
-
return (0, exports.PaymentMethodsApiFp)(this.configuration).getPaymentMethod(requestParameters.code, requestParameters.authorization,
|
|
428
|
+
return (0, exports.PaymentMethodsApiFp)(this.configuration).getPaymentMethod(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
435
429
|
};
|
|
436
430
|
/**
|
|
437
431
|
* Returns a list of payment methods you have previously created. The payment methods are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|