@emilgroup/payment-sdk-node 1.21.1-beta.4 → 1.21.1-beta.40
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/.openapi-generator/FILES +14 -0
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +55 -13
- package/api/bank-orders-api.ts +695 -0
- package/api/bank-transaction-api.ts +171 -40
- package/api/payment-methods-api.ts +59 -17
- package/api/payment-reminders-api.ts +55 -13
- package/api/payments-api.ts +59 -17
- package/api/refunds-api.ts +45 -17
- package/api/tenant-bank-account-api.ts +45 -17
- package/api.ts +2 -0
- package/base.ts +46 -4
- package/dist/api/bank-accounts-api.d.ts +35 -8
- package/dist/api/bank-accounts-api.js +29 -11
- package/dist/api/bank-orders-api.d.ts +393 -0
- package/dist/api/bank-orders-api.js +646 -0
- package/dist/api/bank-transaction-api.d.ts +107 -33
- package/dist/api/bank-transaction-api.js +135 -31
- package/dist/api/payment-methods-api.d.ts +39 -12
- package/dist/api/payment-methods-api.js +32 -14
- package/dist/api/payment-reminders-api.d.ts +35 -8
- package/dist/api/payment-reminders-api.js +29 -11
- package/dist/api/payments-api.d.ts +39 -12
- package/dist/api/payments-api.js +32 -14
- package/dist/api/refunds-api.d.ts +28 -10
- package/dist/api/refunds-api.js +24 -12
- package/dist/api/tenant-bank-account-api.d.ts +28 -10
- package/dist/api/tenant-bank-account-api.js +24 -12
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/base.d.ts +11 -2
- package/dist/base.js +42 -3
- package/dist/models/bank-order-class.d.ts +115 -0
- package/dist/models/bank-order-class.js +15 -0
- package/dist/models/bank-transaction-class.d.ts +14 -0
- package/dist/models/complete-adyen-payment-setup-request-dto.d.ts +1 -0
- package/dist/models/complete-adyen-payment-setup-request-dto.js +2 -1
- package/dist/models/complete-eis-payment-setup-request-dto.d.ts +36 -0
- package/dist/models/complete-eis-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-payment-setup-request-dto.d.ts +7 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +1 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.js +2 -1
- package/dist/models/create-bank-order-request-dto.d.ts +74 -0
- package/dist/models/create-bank-order-request-dto.js +28 -0
- package/dist/models/create-bank-order-response-class.d.ts +25 -0
- package/dist/models/create-bank-order-response-class.js +15 -0
- package/dist/models/create-payment-reminder-request-dto.d.ts +7 -1
- package/dist/models/create-payment-request-dto.d.ts +7 -1
- package/dist/models/create-psp-payment-method-request-dto.d.ts +14 -1
- package/dist/models/create-psp-payment-method-request-dto.js +2 -1
- package/dist/models/deactivated-payment-reminder-class.d.ts +7 -1
- package/dist/models/financial-account-class.d.ts +111 -0
- package/dist/models/financial-account-class.js +24 -0
- package/dist/models/generate-invoice-match-suggestions-response-class.d.ts +25 -0
- package/dist/models/generate-invoice-match-suggestions-response-class.js +15 -0
- package/dist/models/get-bank-order-response-class.d.ts +25 -0
- package/dist/models/get-bank-order-response-class.js +15 -0
- package/dist/models/index.d.ts +13 -0
- package/dist/models/index.js +13 -0
- package/dist/models/initiate-adyen-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/initiate-eis-payment-setup-request-dto.d.ts +36 -0
- package/dist/models/initiate-eis-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-payment-setup-request-dto.d.ts +3 -2
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/invoice-match-suggestion-class.d.ts +60 -0
- package/dist/models/invoice-match-suggestion-class.js +15 -0
- package/dist/models/list-bank-orders-response-class.d.ts +31 -0
- package/dist/models/list-bank-orders-response-class.js +15 -0
- package/dist/models/payment-class-without-expand-properties.d.ts +7 -1
- package/dist/models/payment-class.d.ts +7 -1
- package/dist/models/payment-method-class.d.ts +6 -0
- package/dist/models/payment-reminder-class.d.ts +7 -1
- package/dist/models/refund-class.d.ts +7 -1
- package/dist/models/suggestion-generation-progress-class.d.ts +43 -0
- package/dist/models/suggestion-generation-progress-class.js +22 -0
- package/dist/models/update-bank-order-request-dto.d.ts +56 -0
- package/dist/models/update-bank-order-request-dto.js +23 -0
- package/dist/models/update-bank-order-response-class.d.ts +25 -0
- package/dist/models/update-bank-order-response-class.js +15 -0
- package/models/bank-order-class.ts +121 -0
- package/models/bank-transaction-class.ts +14 -0
- package/models/complete-adyen-payment-setup-request-dto.ts +2 -1
- package/models/complete-eis-payment-setup-request-dto.ts +42 -0
- package/models/complete-payment-setup-request-dto.ts +7 -0
- package/models/complete-stripe-payment-setup-request-dto.ts +2 -1
- package/models/create-bank-order-request-dto.ts +84 -0
- package/models/create-bank-order-response-class.ts +31 -0
- package/models/create-payment-reminder-request-dto.ts +7 -1
- package/models/create-payment-request-dto.ts +7 -1
- package/models/create-psp-payment-method-request-dto.ts +15 -2
- package/models/deactivated-payment-reminder-class.ts +7 -1
- package/models/financial-account-class.ts +120 -0
- package/models/generate-invoice-match-suggestions-response-class.ts +31 -0
- package/models/get-bank-order-response-class.ts +31 -0
- package/models/index.ts +13 -0
- package/models/initiate-adyen-payment-setup-request-dto.ts +6 -0
- package/models/initiate-braintree-payment-setup-request-dto.ts +6 -0
- package/models/initiate-eis-payment-setup-request-dto.ts +42 -0
- package/models/initiate-payment-setup-request-dto.ts +3 -2
- package/models/initiate-stripe-payment-setup-request-dto.ts +6 -0
- package/models/invoice-match-suggestion-class.ts +66 -0
- package/models/list-bank-orders-response-class.ts +37 -0
- package/models/payment-class-without-expand-properties.ts +7 -1
- package/models/payment-class.ts +7 -1
- package/models/payment-method-class.ts +6 -0
- package/models/payment-reminder-class.ts +7 -1
- package/models/refund-class.ts +7 -1
- package/models/suggestion-generation-progress-class.ts +52 -0
- package/models/update-bank-order-request-dto.ts +65 -0
- package/models/update-bank-order-response-class.ts +31 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -0
|
@@ -55,14 +55,17 @@ export declare const PaymentRemindersApiAxiosParamCreator: (configuration?: Conf
|
|
|
55
55
|
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
|
|
56
56
|
* @summary List payment reminders
|
|
57
57
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
58
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
59
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
58
60
|
* @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, policyCode, nextReminderDate</i>
|
|
59
|
-
* @param {string} [
|
|
61
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
60
62
|
* @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, updatedAt</i>
|
|
61
63
|
* @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/>
|
|
64
|
+
* @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, policyCode, nextReminderDate</i>
|
|
62
65
|
* @param {*} [options] Override http request option.
|
|
63
66
|
* @throws {RequiredError}
|
|
64
67
|
*/
|
|
65
|
-
listPaymentReminders: (authorization?: string, filter?: string,
|
|
68
|
+
listPaymentReminders: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
69
|
};
|
|
67
70
|
/**
|
|
68
71
|
* PaymentRemindersApi - functional programming interface
|
|
@@ -101,14 +104,17 @@ export declare const PaymentRemindersApiFp: (configuration?: Configuration) => {
|
|
|
101
104
|
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
|
|
102
105
|
* @summary List payment reminders
|
|
103
106
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
107
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
108
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
104
109
|
* @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, policyCode, nextReminderDate</i>
|
|
105
|
-
* @param {string} [
|
|
110
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
106
111
|
* @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, updatedAt</i>
|
|
107
112
|
* @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/>
|
|
113
|
+
* @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, policyCode, nextReminderDate</i>
|
|
108
114
|
* @param {*} [options] Override http request option.
|
|
109
115
|
* @throws {RequiredError}
|
|
110
116
|
*/
|
|
111
|
-
listPaymentReminders(authorization?: string, filter?: string,
|
|
117
|
+
listPaymentReminders(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPaymentRemindersResponseClass>>;
|
|
112
118
|
};
|
|
113
119
|
/**
|
|
114
120
|
* PaymentRemindersApi - factory interface
|
|
@@ -147,14 +153,17 @@ export declare const PaymentRemindersApiFactory: (configuration?: Configuration,
|
|
|
147
153
|
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
|
|
148
154
|
* @summary List payment reminders
|
|
149
155
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
156
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
157
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
150
158
|
* @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, policyCode, nextReminderDate</i>
|
|
151
|
-
* @param {string} [
|
|
159
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
152
160
|
* @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, updatedAt</i>
|
|
153
161
|
* @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/>
|
|
162
|
+
* @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, policyCode, nextReminderDate</i>
|
|
154
163
|
* @param {*} [options] Override http request option.
|
|
155
164
|
* @throws {RequiredError}
|
|
156
165
|
*/
|
|
157
|
-
listPaymentReminders(authorization?: string, filter?: string,
|
|
166
|
+
listPaymentReminders(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPaymentRemindersResponseClass>;
|
|
158
167
|
};
|
|
159
168
|
/**
|
|
160
169
|
* Request parameters for createPaymentReminder operation in PaymentRemindersApi.
|
|
@@ -231,6 +240,18 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
|
|
|
231
240
|
* @memberof PaymentRemindersApiListPaymentReminders
|
|
232
241
|
*/
|
|
233
242
|
readonly authorization?: string;
|
|
243
|
+
/**
|
|
244
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
245
|
+
* @type {number}
|
|
246
|
+
* @memberof PaymentRemindersApiListPaymentReminders
|
|
247
|
+
*/
|
|
248
|
+
readonly pageSize?: number;
|
|
249
|
+
/**
|
|
250
|
+
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
251
|
+
* @type {string}
|
|
252
|
+
* @memberof PaymentRemindersApiListPaymentReminders
|
|
253
|
+
*/
|
|
254
|
+
readonly pageToken?: string;
|
|
234
255
|
/**
|
|
235
256
|
* 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, policyCode, nextReminderDate</i>
|
|
236
257
|
* @type {string}
|
|
@@ -238,11 +259,11 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
|
|
|
238
259
|
*/
|
|
239
260
|
readonly filter?: string;
|
|
240
261
|
/**
|
|
241
|
-
*
|
|
262
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
242
263
|
* @type {string}
|
|
243
264
|
* @memberof PaymentRemindersApiListPaymentReminders
|
|
244
265
|
*/
|
|
245
|
-
readonly
|
|
266
|
+
readonly search?: string;
|
|
246
267
|
/**
|
|
247
268
|
* 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, updatedAt</i>
|
|
248
269
|
* @type {string}
|
|
@@ -255,6 +276,12 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
|
|
|
255
276
|
* @memberof PaymentRemindersApiListPaymentReminders
|
|
256
277
|
*/
|
|
257
278
|
readonly expand?: string;
|
|
279
|
+
/**
|
|
280
|
+
* 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, policyCode, nextReminderDate</i>
|
|
281
|
+
* @type {string}
|
|
282
|
+
* @memberof PaymentRemindersApiListPaymentReminders
|
|
283
|
+
*/
|
|
284
|
+
readonly filters?: string;
|
|
258
285
|
}
|
|
259
286
|
/**
|
|
260
287
|
* PaymentRemindersApi - object-oriented interface
|
|
@@ -250,14 +250,17 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
250
250
|
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
|
|
251
251
|
* @summary List payment reminders
|
|
252
252
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
253
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
254
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
253
255
|
* @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, policyCode, nextReminderDate</i>
|
|
254
|
-
* @param {string} [
|
|
256
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
255
257
|
* @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, updatedAt</i>
|
|
256
258
|
* @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/>
|
|
259
|
+
* @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, policyCode, nextReminderDate</i>
|
|
257
260
|
* @param {*} [options] Override http request option.
|
|
258
261
|
* @throws {RequiredError}
|
|
259
262
|
*/
|
|
260
|
-
listPaymentReminders: function (authorization, filter,
|
|
263
|
+
listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
261
264
|
if (options === void 0) { options = {}; }
|
|
262
265
|
return __awaiter(_this, void 0, void 0, function () {
|
|
263
266
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -280,11 +283,17 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
280
283
|
// authentication bearer required
|
|
281
284
|
// http bearer authentication required
|
|
282
285
|
_a.sent();
|
|
286
|
+
if (pageSize !== undefined) {
|
|
287
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
288
|
+
}
|
|
289
|
+
if (pageToken !== undefined) {
|
|
290
|
+
localVarQueryParameter['pageToken'] = pageToken;
|
|
291
|
+
}
|
|
283
292
|
if (filter !== undefined) {
|
|
284
293
|
localVarQueryParameter['filter'] = filter;
|
|
285
294
|
}
|
|
286
|
-
if (
|
|
287
|
-
localVarQueryParameter['
|
|
295
|
+
if (search !== undefined) {
|
|
296
|
+
localVarQueryParameter['search'] = search;
|
|
288
297
|
}
|
|
289
298
|
if (order !== undefined) {
|
|
290
299
|
localVarQueryParameter['order'] = order;
|
|
@@ -292,6 +301,9 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
292
301
|
if (expand !== undefined) {
|
|
293
302
|
localVarQueryParameter['expand'] = expand;
|
|
294
303
|
}
|
|
304
|
+
if (filters !== undefined) {
|
|
305
|
+
localVarQueryParameter['filters'] = filters;
|
|
306
|
+
}
|
|
295
307
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
296
308
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
297
309
|
}
|
|
@@ -384,19 +396,22 @@ var PaymentRemindersApiFp = function (configuration) {
|
|
|
384
396
|
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
|
|
385
397
|
* @summary List payment reminders
|
|
386
398
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
399
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
400
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
387
401
|
* @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, policyCode, nextReminderDate</i>
|
|
388
|
-
* @param {string} [
|
|
402
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
389
403
|
* @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, updatedAt</i>
|
|
390
404
|
* @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/>
|
|
405
|
+
* @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, policyCode, nextReminderDate</i>
|
|
391
406
|
* @param {*} [options] Override http request option.
|
|
392
407
|
* @throws {RequiredError}
|
|
393
408
|
*/
|
|
394
|
-
listPaymentReminders: function (authorization, filter,
|
|
409
|
+
listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
395
410
|
return __awaiter(this, void 0, void 0, function () {
|
|
396
411
|
var localVarAxiosArgs;
|
|
397
412
|
return __generator(this, function (_a) {
|
|
398
413
|
switch (_a.label) {
|
|
399
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization, filter,
|
|
414
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
400
415
|
case 1:
|
|
401
416
|
localVarAxiosArgs = _a.sent();
|
|
402
417
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -452,15 +467,18 @@ var PaymentRemindersApiFactory = function (configuration, basePath, axios) {
|
|
|
452
467
|
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
|
|
453
468
|
* @summary List payment reminders
|
|
454
469
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
470
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
471
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
455
472
|
* @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, policyCode, nextReminderDate</i>
|
|
456
|
-
* @param {string} [
|
|
473
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
457
474
|
* @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, updatedAt</i>
|
|
458
475
|
* @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/>
|
|
476
|
+
* @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, policyCode, nextReminderDate</i>
|
|
459
477
|
* @param {*} [options] Override http request option.
|
|
460
478
|
* @throws {RequiredError}
|
|
461
479
|
*/
|
|
462
|
-
listPaymentReminders: function (authorization, filter,
|
|
463
|
-
return localVarFp.listPaymentReminders(authorization, filter,
|
|
480
|
+
listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
481
|
+
return localVarFp.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
464
482
|
},
|
|
465
483
|
};
|
|
466
484
|
};
|
|
@@ -523,7 +541,7 @@ var PaymentRemindersApi = /** @class */ (function (_super) {
|
|
|
523
541
|
PaymentRemindersApi.prototype.listPaymentReminders = function (requestParameters, options) {
|
|
524
542
|
var _this = this;
|
|
525
543
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
526
|
-
return (0, exports.PaymentRemindersApiFp)(this.configuration).listPaymentReminders(requestParameters.authorization, requestParameters.filter, requestParameters.
|
|
544
|
+
return (0, exports.PaymentRemindersApiFp)(this.configuration).listPaymentReminders(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
527
545
|
};
|
|
528
546
|
return PaymentRemindersApi;
|
|
529
547
|
}(base_1.BaseAPI));
|
|
@@ -45,14 +45,17 @@ export declare const PaymentsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
45
45
|
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
|
|
46
46
|
* @summary List payments
|
|
47
47
|
* @param {string} [authorization] Bearer Token
|
|
48
|
-
* @param {
|
|
49
|
-
* @param {string} [
|
|
48
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
49
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
50
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
51
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
50
52
|
* @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, code, amount</i>
|
|
51
53
|
* @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: transactions<i>
|
|
54
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
52
55
|
* @param {*} [options] Override http request option.
|
|
53
56
|
* @throws {RequiredError}
|
|
54
57
|
*/
|
|
55
|
-
listPayments: (authorization?: string, filter?: string,
|
|
58
|
+
listPayments: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
59
|
};
|
|
57
60
|
/**
|
|
58
61
|
* PaymentsApi - functional programming interface
|
|
@@ -83,14 +86,17 @@ export declare const PaymentsApiFp: (configuration?: Configuration) => {
|
|
|
83
86
|
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
|
|
84
87
|
* @summary List payments
|
|
85
88
|
* @param {string} [authorization] Bearer Token
|
|
86
|
-
* @param {
|
|
87
|
-
* @param {string} [
|
|
89
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
90
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
91
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
92
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
88
93
|
* @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, code, amount</i>
|
|
89
94
|
* @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: transactions<i>
|
|
95
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
90
96
|
* @param {*} [options] Override http request option.
|
|
91
97
|
* @throws {RequiredError}
|
|
92
98
|
*/
|
|
93
|
-
listPayments(authorization?: string, filter?: string,
|
|
99
|
+
listPayments(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPaymentsResponseClass>>;
|
|
94
100
|
};
|
|
95
101
|
/**
|
|
96
102
|
* PaymentsApi - factory interface
|
|
@@ -121,14 +127,17 @@ export declare const PaymentsApiFactory: (configuration?: Configuration, basePat
|
|
|
121
127
|
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
|
|
122
128
|
* @summary List payments
|
|
123
129
|
* @param {string} [authorization] Bearer Token
|
|
124
|
-
* @param {
|
|
125
|
-
* @param {string} [
|
|
130
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
131
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
132
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
133
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
126
134
|
* @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, code, amount</i>
|
|
127
135
|
* @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: transactions<i>
|
|
136
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
128
137
|
* @param {*} [options] Override http request option.
|
|
129
138
|
* @throws {RequiredError}
|
|
130
139
|
*/
|
|
131
|
-
listPayments(authorization?: string, filter?: string,
|
|
140
|
+
listPayments(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPaymentsResponseClass>;
|
|
132
141
|
};
|
|
133
142
|
/**
|
|
134
143
|
* Request parameters for createPayment operation in PaymentsApi.
|
|
@@ -193,17 +202,29 @@ export interface PaymentsApiListPaymentsRequest {
|
|
|
193
202
|
*/
|
|
194
203
|
readonly authorization?: string;
|
|
195
204
|
/**
|
|
196
|
-
*
|
|
205
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
206
|
+
* @type {number}
|
|
207
|
+
* @memberof PaymentsApiListPayments
|
|
208
|
+
*/
|
|
209
|
+
readonly pageSize?: number;
|
|
210
|
+
/**
|
|
211
|
+
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
212
|
+
* @type {string}
|
|
213
|
+
* @memberof PaymentsApiListPayments
|
|
214
|
+
*/
|
|
215
|
+
readonly pageToken?: string;
|
|
216
|
+
/**
|
|
217
|
+
* 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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
197
218
|
* @type {string}
|
|
198
219
|
* @memberof PaymentsApiListPayments
|
|
199
220
|
*/
|
|
200
221
|
readonly filter?: string;
|
|
201
222
|
/**
|
|
202
|
-
*
|
|
223
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
203
224
|
* @type {string}
|
|
204
225
|
* @memberof PaymentsApiListPayments
|
|
205
226
|
*/
|
|
206
|
-
readonly
|
|
227
|
+
readonly search?: string;
|
|
207
228
|
/**
|
|
208
229
|
* 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, code, amount</i>
|
|
209
230
|
* @type {string}
|
|
@@ -216,6 +237,12 @@ export interface PaymentsApiListPaymentsRequest {
|
|
|
216
237
|
* @memberof PaymentsApiListPayments
|
|
217
238
|
*/
|
|
218
239
|
readonly expand?: string;
|
|
240
|
+
/**
|
|
241
|
+
* 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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
242
|
+
* @type {string}
|
|
243
|
+
* @memberof PaymentsApiListPayments
|
|
244
|
+
*/
|
|
245
|
+
readonly filters?: string;
|
|
219
246
|
}
|
|
220
247
|
/**
|
|
221
248
|
* PaymentsApi - object-oriented interface
|
package/dist/api/payments-api.js
CHANGED
|
@@ -207,14 +207,17 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
|
|
|
207
207
|
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
|
|
208
208
|
* @summary List payments
|
|
209
209
|
* @param {string} [authorization] Bearer Token
|
|
210
|
-
* @param {
|
|
211
|
-
* @param {string} [
|
|
210
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
211
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
212
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
213
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
212
214
|
* @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, code, amount</i>
|
|
213
215
|
* @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: transactions<i>
|
|
216
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
214
217
|
* @param {*} [options] Override http request option.
|
|
215
218
|
* @throws {RequiredError}
|
|
216
219
|
*/
|
|
217
|
-
listPayments: function (authorization, filter,
|
|
220
|
+
listPayments: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
218
221
|
if (options === void 0) { options = {}; }
|
|
219
222
|
return __awaiter(_this, void 0, void 0, function () {
|
|
220
223
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -237,11 +240,17 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
|
|
|
237
240
|
// authentication bearer required
|
|
238
241
|
// http bearer authentication required
|
|
239
242
|
_a.sent();
|
|
243
|
+
if (pageSize !== undefined) {
|
|
244
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
245
|
+
}
|
|
246
|
+
if (pageToken !== undefined) {
|
|
247
|
+
localVarQueryParameter['pageToken'] = pageToken;
|
|
248
|
+
}
|
|
240
249
|
if (filter !== undefined) {
|
|
241
250
|
localVarQueryParameter['filter'] = filter;
|
|
242
251
|
}
|
|
243
|
-
if (
|
|
244
|
-
localVarQueryParameter['
|
|
252
|
+
if (search !== undefined) {
|
|
253
|
+
localVarQueryParameter['search'] = search;
|
|
245
254
|
}
|
|
246
255
|
if (order !== undefined) {
|
|
247
256
|
localVarQueryParameter['order'] = order;
|
|
@@ -249,6 +258,9 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
|
|
|
249
258
|
if (expand !== undefined) {
|
|
250
259
|
localVarQueryParameter['expand'] = expand;
|
|
251
260
|
}
|
|
261
|
+
if (filters !== undefined) {
|
|
262
|
+
localVarQueryParameter['filters'] = filters;
|
|
263
|
+
}
|
|
252
264
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
253
265
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
254
266
|
}
|
|
@@ -321,19 +333,22 @@ var PaymentsApiFp = function (configuration) {
|
|
|
321
333
|
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
|
|
322
334
|
* @summary List payments
|
|
323
335
|
* @param {string} [authorization] Bearer Token
|
|
324
|
-
* @param {
|
|
325
|
-
* @param {string} [
|
|
336
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
337
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
338
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
339
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
326
340
|
* @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, code, amount</i>
|
|
327
341
|
* @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: transactions<i>
|
|
342
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
328
343
|
* @param {*} [options] Override http request option.
|
|
329
344
|
* @throws {RequiredError}
|
|
330
345
|
*/
|
|
331
|
-
listPayments: function (authorization, filter,
|
|
346
|
+
listPayments: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
332
347
|
return __awaiter(this, void 0, void 0, function () {
|
|
333
348
|
var localVarAxiosArgs;
|
|
334
349
|
return __generator(this, function (_a) {
|
|
335
350
|
switch (_a.label) {
|
|
336
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPayments(authorization, filter,
|
|
351
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPayments(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
337
352
|
case 1:
|
|
338
353
|
localVarAxiosArgs = _a.sent();
|
|
339
354
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -379,15 +394,18 @@ var PaymentsApiFactory = function (configuration, basePath, axios) {
|
|
|
379
394
|
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
|
|
380
395
|
* @summary List payments
|
|
381
396
|
* @param {string} [authorization] Bearer Token
|
|
382
|
-
* @param {
|
|
383
|
-
* @param {string} [
|
|
397
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
398
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
399
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
400
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
384
401
|
* @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, code, amount</i>
|
|
385
402
|
* @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: transactions<i>
|
|
403
|
+
* @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, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
|
|
386
404
|
* @param {*} [options] Override http request option.
|
|
387
405
|
* @throws {RequiredError}
|
|
388
406
|
*/
|
|
389
|
-
listPayments: function (authorization, filter,
|
|
390
|
-
return localVarFp.listPayments(authorization, filter,
|
|
407
|
+
listPayments: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
408
|
+
return localVarFp.listPayments(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
391
409
|
},
|
|
392
410
|
};
|
|
393
411
|
};
|
|
@@ -438,7 +456,7 @@ var PaymentsApi = /** @class */ (function (_super) {
|
|
|
438
456
|
PaymentsApi.prototype.listPayments = function (requestParameters, options) {
|
|
439
457
|
var _this = this;
|
|
440
458
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
441
|
-
return (0, exports.PaymentsApiFp)(this.configuration).listPayments(requestParameters.authorization, requestParameters.filter, requestParameters.
|
|
459
|
+
return (0, exports.PaymentsApiFp)(this.configuration).listPayments(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
442
460
|
};
|
|
443
461
|
return PaymentsApi;
|
|
444
462
|
}(base_1.BaseAPI));
|