@emilgroup/payment-sdk 1.16.1-beta.95 → 1.16.1-beta.97

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.
Files changed (43) hide show
  1. package/README.md +2 -2
  2. package/api/payment-requests-api.ts +12 -12
  3. package/dist/api/payment-requests-api.d.ts +12 -12
  4. package/dist/api/payment-requests-api.js +9 -9
  5. package/dist/models/bank-transaction-entity.d.ts +2 -4
  6. package/dist/models/create-payment-order-dto.d.ts +2 -4
  7. package/dist/models/create-payment-order-request-dto.d.ts +2 -4
  8. package/dist/models/create-payment-request-dto.d.ts +2 -4
  9. package/dist/models/create-payment-request-request-dto.d.ts +0 -6
  10. package/dist/models/credit-allocation-class.d.ts +0 -6
  11. package/dist/models/credit-allocation-entity.d.ts +0 -6
  12. package/dist/models/invoice-match-suggestion-entity.d.ts +2 -4
  13. package/dist/models/list-billing-addresses-response-class.d.ts +9 -9
  14. package/dist/models/list-exceeding-credits-response-class.d.ts +18 -6
  15. package/dist/models/list-payment-receipts-response-class.d.ts +9 -9
  16. package/dist/models/list-payment-requests-response-class.d.ts +18 -6
  17. package/dist/models/list-payout-methods-response-class.d.ts +9 -9
  18. package/dist/models/list-refunds-response-class.d.ts +18 -6
  19. package/dist/models/payment-class-without-expand-properties.d.ts +1 -1
  20. package/dist/models/payment-class.d.ts +1 -1
  21. package/dist/models/payment-entity.d.ts +3 -5
  22. package/dist/models/payment-request-class.d.ts +0 -12
  23. package/dist/models/validate-pspconfig-request-dto.d.ts +2 -4
  24. package/models/bank-transaction-entity.ts +2 -2
  25. package/models/create-payment-order-dto.ts +2 -2
  26. package/models/create-payment-order-request-dto.ts +2 -2
  27. package/models/create-payment-request-dto.ts +2 -2
  28. package/models/create-payment-request-request-dto.ts +0 -6
  29. package/models/credit-allocation-class.ts +0 -6
  30. package/models/credit-allocation-entity.ts +0 -6
  31. package/models/invoice-match-suggestion-entity.ts +2 -2
  32. package/models/list-billing-addresses-response-class.ts +9 -9
  33. package/models/list-exceeding-credits-response-class.ts +18 -6
  34. package/models/list-payment-receipts-response-class.ts +9 -9
  35. package/models/list-payment-requests-response-class.ts +18 -6
  36. package/models/list-payout-methods-response-class.ts +9 -9
  37. package/models/list-refunds-response-class.ts +18 -6
  38. package/models/payment-class-without-expand-properties.ts +1 -1
  39. package/models/payment-class.ts +1 -1
  40. package/models/payment-entity.ts +3 -3
  41. package/models/payment-request-class.ts +0 -12
  42. package/models/validate-pspconfig-request-dto.ts +2 -2
  43. package/package.json +1 -1
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/payment-sdk@1.16.1-beta.95 --save
20
+ npm install @emilgroup/payment-sdk@1.16.1-beta.97 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk@1.16.1-beta.95
24
+ yarn add @emilgroup/payment-sdk@1.16.1-beta.97
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.
@@ -188,11 +188,11 @@ export const PaymentRequestsApiAxiosParamCreator = function (configuration?: Con
188
188
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
189
189
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
190
190
  * @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.
191
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
192
- * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
191
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
192
+ * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
193
193
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status</i>
194
194
  * @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: paymentReceipts<i>
195
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
195
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
196
196
  * @param {*} [options] Override http request option.
197
197
  * @throws {RequiredError}
198
198
  */
@@ -362,11 +362,11 @@ export const PaymentRequestsApiFp = function(configuration?: Configuration) {
362
362
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
363
363
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
364
364
  * @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.
365
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
366
- * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
365
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
366
+ * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
367
367
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status</i>
368
368
  * @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: paymentReceipts<i>
369
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
369
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
370
370
  * @param {*} [options] Override http request option.
371
371
  * @throws {RequiredError}
372
372
  */
@@ -437,11 +437,11 @@ export const PaymentRequestsApiFactory = function (configuration?: Configuration
437
437
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
438
438
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
439
439
  * @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.
440
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
441
- * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
440
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
441
+ * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
442
442
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status</i>
443
443
  * @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: paymentReceipts<i>
444
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
444
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
445
445
  * @param {*} [options] Override http request option.
446
446
  * @throws {RequiredError}
447
447
  */
@@ -561,14 +561,14 @@ export interface PaymentRequestsApiListPaymentRequestsRequest {
561
561
  readonly pageToken?: string
562
562
 
563
563
  /**
564
- * 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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
564
+ * 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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
565
565
  * @type {string}
566
566
  * @memberof PaymentRequestsApiListPaymentRequests
567
567
  */
568
568
  readonly filter?: string
569
569
 
570
570
  /**
571
- * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
571
+ * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
572
572
  * @type {string}
573
573
  * @memberof PaymentRequestsApiListPaymentRequests
574
574
  */
@@ -589,7 +589,7 @@ export interface PaymentRequestsApiListPaymentRequestsRequest {
589
589
  readonly expand?: string
590
590
 
591
591
  /**
592
- * 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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
592
+ * 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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
593
593
  * @type {string}
594
594
  * @memberof PaymentRequestsApiListPaymentRequests
595
595
  */
@@ -57,11 +57,11 @@ export declare const PaymentRequestsApiAxiosParamCreator: (configuration?: Confi
57
57
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
58
58
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
59
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.
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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
61
- * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
61
+ * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
62
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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status</i>
63
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/> <i>Allowed values: paymentReceipts<i>
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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
65
65
  * @param {*} [options] Override http request option.
66
66
  * @throws {RequiredError}
67
67
  */
@@ -116,11 +116,11 @@ export declare const PaymentRequestsApiFp: (configuration?: Configuration) => {
116
116
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
117
117
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
118
118
  * @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.
119
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
120
- * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
119
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
120
+ * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
121
121
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status</i>
122
122
  * @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: paymentReceipts<i>
123
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
123
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
124
124
  * @param {*} [options] Override http request option.
125
125
  * @throws {RequiredError}
126
126
  */
@@ -175,11 +175,11 @@ export declare const PaymentRequestsApiFactory: (configuration?: Configuration,
175
175
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
176
176
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
177
177
  * @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.
178
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
179
- * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
178
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
179
+ * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
180
180
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status</i>
181
181
  * @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: paymentReceipts<i>
182
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
182
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
183
183
  * @param {*} [options] Override http request option.
184
184
  * @throws {RequiredError}
185
185
  */
@@ -283,13 +283,13 @@ export interface PaymentRequestsApiListPaymentRequestsRequest {
283
283
  */
284
284
  readonly pageToken?: string;
285
285
  /**
286
- * 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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
286
+ * 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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
287
287
  * @type {string}
288
288
  * @memberof PaymentRequestsApiListPaymentRequests
289
289
  */
290
290
  readonly filter?: string;
291
291
  /**
292
- * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
292
+ * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
293
293
  * @type {string}
294
294
  * @memberof PaymentRequestsApiListPaymentRequests
295
295
  */
@@ -307,7 +307,7 @@ export interface PaymentRequestsApiListPaymentRequestsRequest {
307
307
  */
308
308
  readonly expand?: string;
309
309
  /**
310
- * 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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
310
+ * 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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
311
311
  * @type {string}
312
312
  * @memberof PaymentRequestsApiListPaymentRequests
313
313
  */
@@ -249,11 +249,11 @@ var PaymentRequestsApiAxiosParamCreator = function (configuration) {
249
249
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
250
250
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
251
251
  * @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.
252
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
253
- * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
252
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
253
+ * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
254
254
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status</i>
255
255
  * @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: paymentReceipts<i>
256
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
256
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
257
257
  * @param {*} [options] Override http request option.
258
258
  * @throws {RequiredError}
259
259
  */
@@ -448,11 +448,11 @@ var PaymentRequestsApiFp = function (configuration) {
448
448
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
449
449
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
450
450
  * @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.
451
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
452
- * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
451
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
452
+ * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
453
453
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status</i>
454
454
  * @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: paymentReceipts<i>
455
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
455
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
456
456
  * @param {*} [options] Override http request option.
457
457
  * @throws {RequiredError}
458
458
  */
@@ -541,11 +541,11 @@ var PaymentRequestsApiFactory = function (configuration, basePath, axios) {
541
541
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
542
542
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
543
543
  * @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.
544
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
545
- * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode</i>
544
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
545
+ * @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: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber</i>
546
546
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status</i>
547
547
  * @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: paymentReceipts<i>
548
- * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode</i>
548
+ * @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, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt</i>
549
549
  * @param {*} [options] Override http request option.
550
550
  * @throws {RequiredError}
551
551
  */
@@ -95,12 +95,10 @@ export interface BankTransactionEntity {
95
95
  'transactionReference': string;
96
96
  /**
97
97
  *
98
- * @type {{ [key: string]: object; }}
98
+ * @type {object}
99
99
  * @memberof BankTransactionEntity
100
100
  */
101
- 'metadata'?: {
102
- [key: string]: object;
103
- };
101
+ 'metadata'?: object;
104
102
  /**
105
103
  *
106
104
  * @type {string}
@@ -41,10 +41,8 @@ export interface CreatePaymentOrderDto {
41
41
  'referenceNumber'?: string;
42
42
  /**
43
43
  * Optional field contain extra information.
44
- * @type {{ [key: string]: string; }}
44
+ * @type {object}
45
45
  * @memberof CreatePaymentOrderDto
46
46
  */
47
- 'metadata': {
48
- [key: string]: string;
49
- };
47
+ 'metadata': object;
50
48
  }
@@ -41,10 +41,8 @@ export interface CreatePaymentOrderRequestDto {
41
41
  'referenceNumber'?: string;
42
42
  /**
43
43
  *
44
- * @type {{ [key: string]: string; }}
44
+ * @type {object}
45
45
  * @memberof CreatePaymentOrderRequestDto
46
46
  */
47
- 'metadata': {
48
- [key: string]: string;
49
- };
47
+ 'metadata': object;
50
48
  }
@@ -47,12 +47,10 @@ export interface CreatePaymentRequestDto {
47
47
  'invoiceIds': Array<number>;
48
48
  /**
49
49
  * Optional field contain extra information.
50
- * @type {{ [key: string]: string; }}
50
+ * @type {object}
51
51
  * @memberof CreatePaymentRequestDto
52
52
  */
53
- 'metadata': {
54
- [key: string]: string;
55
- };
53
+ 'metadata': object;
56
54
  /**
57
55
  * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
58
56
  * @type {string}
@@ -75,12 +75,6 @@ export interface CreatePaymentRequestRequestDto {
75
75
  * @memberof CreatePaymentRequestRequestDto
76
76
  */
77
77
  'settlementCode'?: string;
78
- /**
79
- * Code of the partner the payment request was created for.
80
- * @type {string}
81
- * @memberof CreatePaymentRequestRequestDto
82
- */
83
- 'partnerCode': string;
84
78
  /**
85
79
  * Code of the payment method to be used for this payment request. If not provided, a default payment method may be selected.
86
80
  * @type {string}
@@ -34,12 +34,6 @@ export interface CreditAllocationClass {
34
34
  * @memberof CreditAllocationClass
35
35
  */
36
36
  'exceedingCreditCodes': Array<string>;
37
- /**
38
- * Partner code derived from the policy related to the exceeding credits.
39
- * @type {string}
40
- * @memberof CreditAllocationClass
41
- */
42
- 'partnerCode': string;
43
37
  /**
44
38
  * Policy code associated with the credit.
45
39
  * @type {string}
@@ -28,12 +28,6 @@ export interface CreditAllocationEntity {
28
28
  * @memberof CreditAllocationEntity
29
29
  */
30
30
  'code': string;
31
- /**
32
- *
33
- * @type {string}
34
- * @memberof CreditAllocationEntity
35
- */
36
- 'partnerCode': string;
37
31
  /**
38
32
  *
39
33
  * @type {string}
@@ -54,12 +54,10 @@ export interface InvoiceMatchSuggestionEntity {
54
54
  'confidenceScore': number;
55
55
  /**
56
56
  *
57
- * @type {{ [key: string]: object; }}
57
+ * @type {object}
58
58
  * @memberof InvoiceMatchSuggestionEntity
59
59
  */
60
- 'matchCriteria'?: {
61
- [key: string]: object;
62
- };
60
+ 'matchCriteria'?: object;
63
61
  /**
64
62
  *
65
63
  * @type {string}
@@ -16,18 +16,18 @@ import { BillingAddressClass } from './billing-address-class';
16
16
  * @interface ListBillingAddressesResponseClass
17
17
  */
18
18
  export interface ListBillingAddressesResponseClass {
19
- /**
20
- * The billing addresses
21
- * @type {Array<BillingAddressClass>}
22
- * @memberof ListBillingAddressesResponseClass
23
- */
24
- 'items': Array<BillingAddressClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListBillingAddressesResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListBillingAddressesResponseClass
29
+ */
30
+ 'totalItems': number;
31
31
  /**
32
32
  * Items per page.
33
33
  * @type {number}
@@ -35,9 +35,9 @@ export interface ListBillingAddressesResponseClass {
35
35
  */
36
36
  'itemsPerPage': number;
37
37
  /**
38
- * Total amount of items.
39
- * @type {number}
38
+ * The billing addresses
39
+ * @type {Array<BillingAddressClass>}
40
40
  * @memberof ListBillingAddressesResponseClass
41
41
  */
42
- 'totalItems': number;
42
+ 'items': Array<BillingAddressClass>;
43
43
  }
@@ -16,16 +16,28 @@ import { ExceedingCreditClass } from './exceeding-credit-class';
16
16
  * @interface ListExceedingCreditsResponseClass
17
17
  */
18
18
  export interface ListExceedingCreditsResponseClass {
19
- /**
20
- * The list of exceeding credits.
21
- * @type {Array<ExceedingCreditClass>}
22
- * @memberof ListExceedingCreditsResponseClass
23
- */
24
- 'items': Array<ExceedingCreditClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListExceedingCreditsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListExceedingCreditsResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListExceedingCreditsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of exceeding credits.
39
+ * @type {Array<ExceedingCreditClass>}
40
+ * @memberof ListExceedingCreditsResponseClass
41
+ */
42
+ 'items': Array<ExceedingCreditClass>;
31
43
  }
@@ -16,18 +16,18 @@ import { PaymentReceiptClass } from './payment-receipt-class';
16
16
  * @interface ListPaymentReceiptsResponseClass
17
17
  */
18
18
  export interface ListPaymentReceiptsResponseClass {
19
- /**
20
- * The list of payment receipts.
21
- * @type {Array<PaymentReceiptClass>}
22
- * @memberof ListPaymentReceiptsResponseClass
23
- */
24
- 'items': Array<PaymentReceiptClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPaymentReceiptsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPaymentReceiptsResponseClass
29
+ */
30
+ 'totalItems': number;
31
31
  /**
32
32
  * Items per page.
33
33
  * @type {number}
@@ -35,9 +35,9 @@ export interface ListPaymentReceiptsResponseClass {
35
35
  */
36
36
  'itemsPerPage': number;
37
37
  /**
38
- * Total amount of items.
39
- * @type {number}
38
+ * The list of payment receipts.
39
+ * @type {Array<PaymentReceiptClass>}
40
40
  * @memberof ListPaymentReceiptsResponseClass
41
41
  */
42
- 'totalItems': number;
42
+ 'items': Array<PaymentReceiptClass>;
43
43
  }
@@ -16,16 +16,28 @@ import { PaymentRequestClass } from './payment-request-class';
16
16
  * @interface ListPaymentRequestsResponseClass
17
17
  */
18
18
  export interface ListPaymentRequestsResponseClass {
19
- /**
20
- * The list of payment requests.
21
- * @type {Array<PaymentRequestClass>}
22
- * @memberof ListPaymentRequestsResponseClass
23
- */
24
- 'items': Array<PaymentRequestClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPaymentRequestsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPaymentRequestsResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPaymentRequestsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of payment requests.
39
+ * @type {Array<PaymentRequestClass>}
40
+ * @memberof ListPaymentRequestsResponseClass
41
+ */
42
+ 'items': Array<PaymentRequestClass>;
31
43
  }
@@ -16,18 +16,18 @@ import { PayoutMethodClass } from './payout-method-class';
16
16
  * @interface ListPayoutMethodsResponseClass
17
17
  */
18
18
  export interface ListPayoutMethodsResponseClass {
19
- /**
20
- * The payout methods
21
- * @type {Array<PayoutMethodClass>}
22
- * @memberof ListPayoutMethodsResponseClass
23
- */
24
- 'items': Array<PayoutMethodClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPayoutMethodsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPayoutMethodsResponseClass
29
+ */
30
+ 'totalItems': number;
31
31
  /**
32
32
  * Items per page.
33
33
  * @type {number}
@@ -35,9 +35,9 @@ export interface ListPayoutMethodsResponseClass {
35
35
  */
36
36
  'itemsPerPage': number;
37
37
  /**
38
- * Total amount of items.
39
- * @type {number}
38
+ * The payout methods
39
+ * @type {Array<PayoutMethodClass>}
40
40
  * @memberof ListPayoutMethodsResponseClass
41
41
  */
42
- 'totalItems': number;
42
+ 'items': Array<PayoutMethodClass>;
43
43
  }
@@ -16,16 +16,28 @@ import { RefundClass } from './refund-class';
16
16
  * @interface ListRefundsResponseClass
17
17
  */
18
18
  export interface ListRefundsResponseClass {
19
- /**
20
- * The list of refunds.
21
- * @type {Array<RefundClass>}
22
- * @memberof ListRefundsResponseClass
23
- */
24
- 'items': Array<RefundClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListRefundsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListRefundsResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListRefundsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of refunds.
39
+ * @type {Array<RefundClass>}
40
+ * @memberof ListRefundsResponseClass
41
+ */
42
+ 'items': Array<RefundClass>;
31
43
  }
@@ -44,7 +44,7 @@ export interface PaymentClassWithoutExpandProperties {
44
44
  * @type {string}
45
45
  * @memberof PaymentClassWithoutExpandProperties
46
46
  */
47
- 'partnerCode': string;
47
+ 'partnerCode'?: string;
48
48
  /**
49
49
  * Amount to be paid in cents. 100 to charge 1€.
50
50
  * @type {number}
@@ -45,7 +45,7 @@ export interface PaymentClass {
45
45
  * @type {string}
46
46
  * @memberof PaymentClass
47
47
  */
48
- 'partnerCode': string;
48
+ 'partnerCode'?: string;
49
49
  /**
50
50
  * Amount to be paid in cents. 100 to charge 1€.
51
51
  * @type {number}
@@ -51,7 +51,7 @@ export interface PaymentEntity {
51
51
  * @type {string}
52
52
  * @memberof PaymentEntity
53
53
  */
54
- 'partnerCode': string;
54
+ 'partnerCode'?: string;
55
55
  /**
56
56
  *
57
57
  * @type {string}
@@ -84,12 +84,10 @@ export interface PaymentEntity {
84
84
  'transactions': Array<TransactionEntity>;
85
85
  /**
86
86
  *
87
- * @type {{ [key: string]: string; }}
87
+ * @type {object}
88
88
  * @memberof PaymentEntity
89
89
  */
90
- 'metadata': {
91
- [key: string]: string;
92
- };
90
+ 'metadata': object;
93
91
  /**
94
92
  *
95
93
  * @type {string}
@@ -94,18 +94,6 @@ export interface PaymentRequestClass {
94
94
  * @memberof PaymentRequestClass
95
95
  */
96
96
  'status': PaymentRequestClassStatusEnum;
97
- /**
98
- * Code of the settlement the payment request was created for.
99
- * @type {string}
100
- * @memberof PaymentRequestClass
101
- */
102
- 'settlementCode'?: string;
103
- /**
104
- * Code of the partner the payment request was created for.
105
- * @type {string}
106
- * @memberof PaymentRequestClass
107
- */
108
- 'partnerCode': string;
109
97
  /**
110
98
  * Code of the payment method used for this payment request.
111
99
  * @type {string}
@@ -23,12 +23,10 @@ export interface ValidatePSPConfigRequestDto {
23
23
  'type': ValidatePSPConfigRequestDtoTypeEnum;
24
24
  /**
25
25
  * Map containing various necessary keys to properly use the payment service provider. In the form of <api key name, api key value>.
26
- * @type {{ [key: string]: string; }}
26
+ * @type {object}
27
27
  * @memberof ValidatePSPConfigRequestDto
28
28
  */
29
- 'apiKeys': {
30
- [key: string]: string;
31
- };
29
+ 'apiKeys': object;
32
30
  /**
33
31
  * List of payment methods that should be accepted by the payment service provider.
34
32
  * @type {Array<string>}
@@ -100,10 +100,10 @@ export interface BankTransactionEntity {
100
100
  'transactionReference': string;
101
101
  /**
102
102
  *
103
- * @type {{ [key: string]: object; }}
103
+ * @type {object}
104
104
  * @memberof BankTransactionEntity
105
105
  */
106
- 'metadata'?: { [key: string]: object; };
106
+ 'metadata'?: object;
107
107
  /**
108
108
  *
109
109
  * @type {string}
@@ -46,9 +46,9 @@ export interface CreatePaymentOrderDto {
46
46
  'referenceNumber'?: string;
47
47
  /**
48
48
  * Optional field contain extra information.
49
- * @type {{ [key: string]: string; }}
49
+ * @type {object}
50
50
  * @memberof CreatePaymentOrderDto
51
51
  */
52
- 'metadata': { [key: string]: string; };
52
+ 'metadata': object;
53
53
  }
54
54
 
@@ -46,9 +46,9 @@ export interface CreatePaymentOrderRequestDto {
46
46
  'referenceNumber'?: string;
47
47
  /**
48
48
  *
49
- * @type {{ [key: string]: string; }}
49
+ * @type {object}
50
50
  * @memberof CreatePaymentOrderRequestDto
51
51
  */
52
- 'metadata': { [key: string]: string; };
52
+ 'metadata': object;
53
53
  }
54
54
 
@@ -52,10 +52,10 @@ export interface CreatePaymentRequestDto {
52
52
  'invoiceIds': Array<number>;
53
53
  /**
54
54
  * Optional field contain extra information.
55
- * @type {{ [key: string]: string; }}
55
+ * @type {object}
56
56
  * @memberof CreatePaymentRequestDto
57
57
  */
58
- 'metadata': { [key: string]: string; };
58
+ 'metadata': object;
59
59
  /**
60
60
  * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
61
61
  * @type {string}
@@ -80,12 +80,6 @@ export interface CreatePaymentRequestRequestDto {
80
80
  * @memberof CreatePaymentRequestRequestDto
81
81
  */
82
82
  'settlementCode'?: string;
83
- /**
84
- * Code of the partner the payment request was created for.
85
- * @type {string}
86
- * @memberof CreatePaymentRequestRequestDto
87
- */
88
- 'partnerCode': string;
89
83
  /**
90
84
  * Code of the payment method to be used for this payment request. If not provided, a default payment method may be selected.
91
85
  * @type {string}
@@ -39,12 +39,6 @@ export interface CreditAllocationClass {
39
39
  * @memberof CreditAllocationClass
40
40
  */
41
41
  'exceedingCreditCodes': Array<string>;
42
- /**
43
- * Partner code derived from the policy related to the exceeding credits.
44
- * @type {string}
45
- * @memberof CreditAllocationClass
46
- */
47
- 'partnerCode': string;
48
42
  /**
49
43
  * Policy code associated with the credit.
50
44
  * @type {string}
@@ -33,12 +33,6 @@ export interface CreditAllocationEntity {
33
33
  * @memberof CreditAllocationEntity
34
34
  */
35
35
  'code': string;
36
- /**
37
- *
38
- * @type {string}
39
- * @memberof CreditAllocationEntity
40
- */
41
- 'partnerCode': string;
42
36
  /**
43
37
  *
44
38
  * @type {string}
@@ -59,10 +59,10 @@ export interface InvoiceMatchSuggestionEntity {
59
59
  'confidenceScore': number;
60
60
  /**
61
61
  *
62
- * @type {{ [key: string]: object; }}
62
+ * @type {object}
63
63
  * @memberof InvoiceMatchSuggestionEntity
64
64
  */
65
- 'matchCriteria'?: { [key: string]: object; };
65
+ 'matchCriteria'?: object;
66
66
  /**
67
67
  *
68
68
  * @type {string}
@@ -21,18 +21,18 @@ import { BillingAddressClass } from './billing-address-class';
21
21
  * @interface ListBillingAddressesResponseClass
22
22
  */
23
23
  export interface ListBillingAddressesResponseClass {
24
- /**
25
- * The billing addresses
26
- * @type {Array<BillingAddressClass>}
27
- * @memberof ListBillingAddressesResponseClass
28
- */
29
- 'items': Array<BillingAddressClass>;
30
24
  /**
31
25
  * Next page token.
32
26
  * @type {string}
33
27
  * @memberof ListBillingAddressesResponseClass
34
28
  */
35
29
  'nextPageToken': string;
30
+ /**
31
+ * Total amount of items.
32
+ * @type {number}
33
+ * @memberof ListBillingAddressesResponseClass
34
+ */
35
+ 'totalItems': number;
36
36
  /**
37
37
  * Items per page.
38
38
  * @type {number}
@@ -40,10 +40,10 @@ export interface ListBillingAddressesResponseClass {
40
40
  */
41
41
  'itemsPerPage': number;
42
42
  /**
43
- * Total amount of items.
44
- * @type {number}
43
+ * The billing addresses
44
+ * @type {Array<BillingAddressClass>}
45
45
  * @memberof ListBillingAddressesResponseClass
46
46
  */
47
- 'totalItems': number;
47
+ 'items': Array<BillingAddressClass>;
48
48
  }
49
49
 
@@ -21,17 +21,29 @@ import { ExceedingCreditClass } from './exceeding-credit-class';
21
21
  * @interface ListExceedingCreditsResponseClass
22
22
  */
23
23
  export interface ListExceedingCreditsResponseClass {
24
- /**
25
- * The list of exceeding credits.
26
- * @type {Array<ExceedingCreditClass>}
27
- * @memberof ListExceedingCreditsResponseClass
28
- */
29
- 'items': Array<ExceedingCreditClass>;
30
24
  /**
31
25
  * Next page token.
32
26
  * @type {string}
33
27
  * @memberof ListExceedingCreditsResponseClass
34
28
  */
35
29
  'nextPageToken': string;
30
+ /**
31
+ * Total amount of items.
32
+ * @type {number}
33
+ * @memberof ListExceedingCreditsResponseClass
34
+ */
35
+ 'totalItems': number;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListExceedingCreditsResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * The list of exceeding credits.
44
+ * @type {Array<ExceedingCreditClass>}
45
+ * @memberof ListExceedingCreditsResponseClass
46
+ */
47
+ 'items': Array<ExceedingCreditClass>;
36
48
  }
37
49
 
@@ -21,18 +21,18 @@ import { PaymentReceiptClass } from './payment-receipt-class';
21
21
  * @interface ListPaymentReceiptsResponseClass
22
22
  */
23
23
  export interface ListPaymentReceiptsResponseClass {
24
- /**
25
- * The list of payment receipts.
26
- * @type {Array<PaymentReceiptClass>}
27
- * @memberof ListPaymentReceiptsResponseClass
28
- */
29
- 'items': Array<PaymentReceiptClass>;
30
24
  /**
31
25
  * Next page token.
32
26
  * @type {string}
33
27
  * @memberof ListPaymentReceiptsResponseClass
34
28
  */
35
29
  'nextPageToken': string;
30
+ /**
31
+ * Total amount of items.
32
+ * @type {number}
33
+ * @memberof ListPaymentReceiptsResponseClass
34
+ */
35
+ 'totalItems': number;
36
36
  /**
37
37
  * Items per page.
38
38
  * @type {number}
@@ -40,10 +40,10 @@ export interface ListPaymentReceiptsResponseClass {
40
40
  */
41
41
  'itemsPerPage': number;
42
42
  /**
43
- * Total amount of items.
44
- * @type {number}
43
+ * The list of payment receipts.
44
+ * @type {Array<PaymentReceiptClass>}
45
45
  * @memberof ListPaymentReceiptsResponseClass
46
46
  */
47
- 'totalItems': number;
47
+ 'items': Array<PaymentReceiptClass>;
48
48
  }
49
49
 
@@ -21,17 +21,29 @@ import { PaymentRequestClass } from './payment-request-class';
21
21
  * @interface ListPaymentRequestsResponseClass
22
22
  */
23
23
  export interface ListPaymentRequestsResponseClass {
24
- /**
25
- * The list of payment requests.
26
- * @type {Array<PaymentRequestClass>}
27
- * @memberof ListPaymentRequestsResponseClass
28
- */
29
- 'items': Array<PaymentRequestClass>;
30
24
  /**
31
25
  * Next page token.
32
26
  * @type {string}
33
27
  * @memberof ListPaymentRequestsResponseClass
34
28
  */
35
29
  'nextPageToken': string;
30
+ /**
31
+ * Total amount of items.
32
+ * @type {number}
33
+ * @memberof ListPaymentRequestsResponseClass
34
+ */
35
+ 'totalItems': number;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListPaymentRequestsResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * The list of payment requests.
44
+ * @type {Array<PaymentRequestClass>}
45
+ * @memberof ListPaymentRequestsResponseClass
46
+ */
47
+ 'items': Array<PaymentRequestClass>;
36
48
  }
37
49
 
@@ -21,18 +21,18 @@ import { PayoutMethodClass } from './payout-method-class';
21
21
  * @interface ListPayoutMethodsResponseClass
22
22
  */
23
23
  export interface ListPayoutMethodsResponseClass {
24
- /**
25
- * The payout methods
26
- * @type {Array<PayoutMethodClass>}
27
- * @memberof ListPayoutMethodsResponseClass
28
- */
29
- 'items': Array<PayoutMethodClass>;
30
24
  /**
31
25
  * Next page token.
32
26
  * @type {string}
33
27
  * @memberof ListPayoutMethodsResponseClass
34
28
  */
35
29
  'nextPageToken': string;
30
+ /**
31
+ * Total amount of items.
32
+ * @type {number}
33
+ * @memberof ListPayoutMethodsResponseClass
34
+ */
35
+ 'totalItems': number;
36
36
  /**
37
37
  * Items per page.
38
38
  * @type {number}
@@ -40,10 +40,10 @@ export interface ListPayoutMethodsResponseClass {
40
40
  */
41
41
  'itemsPerPage': number;
42
42
  /**
43
- * Total amount of items.
44
- * @type {number}
43
+ * The payout methods
44
+ * @type {Array<PayoutMethodClass>}
45
45
  * @memberof ListPayoutMethodsResponseClass
46
46
  */
47
- 'totalItems': number;
47
+ 'items': Array<PayoutMethodClass>;
48
48
  }
49
49
 
@@ -21,17 +21,29 @@ import { RefundClass } from './refund-class';
21
21
  * @interface ListRefundsResponseClass
22
22
  */
23
23
  export interface ListRefundsResponseClass {
24
- /**
25
- * The list of refunds.
26
- * @type {Array<RefundClass>}
27
- * @memberof ListRefundsResponseClass
28
- */
29
- 'items': Array<RefundClass>;
30
24
  /**
31
25
  * Next page token.
32
26
  * @type {string}
33
27
  * @memberof ListRefundsResponseClass
34
28
  */
35
29
  'nextPageToken': string;
30
+ /**
31
+ * Total amount of items.
32
+ * @type {number}
33
+ * @memberof ListRefundsResponseClass
34
+ */
35
+ 'totalItems': number;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListRefundsResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * The list of refunds.
44
+ * @type {Array<RefundClass>}
45
+ * @memberof ListRefundsResponseClass
46
+ */
47
+ 'items': Array<RefundClass>;
36
48
  }
37
49
 
@@ -49,7 +49,7 @@ export interface PaymentClassWithoutExpandProperties {
49
49
  * @type {string}
50
50
  * @memberof PaymentClassWithoutExpandProperties
51
51
  */
52
- 'partnerCode': string;
52
+ 'partnerCode'?: string;
53
53
  /**
54
54
  * Amount to be paid in cents. 100 to charge 1€.
55
55
  * @type {number}
@@ -50,7 +50,7 @@ export interface PaymentClass {
50
50
  * @type {string}
51
51
  * @memberof PaymentClass
52
52
  */
53
- 'partnerCode': string;
53
+ 'partnerCode'?: string;
54
54
  /**
55
55
  * Amount to be paid in cents. 100 to charge 1€.
56
56
  * @type {number}
@@ -56,7 +56,7 @@ export interface PaymentEntity {
56
56
  * @type {string}
57
57
  * @memberof PaymentEntity
58
58
  */
59
- 'partnerCode': string;
59
+ 'partnerCode'?: string;
60
60
  /**
61
61
  *
62
62
  * @type {string}
@@ -89,10 +89,10 @@ export interface PaymentEntity {
89
89
  'transactions': Array<TransactionEntity>;
90
90
  /**
91
91
  *
92
- * @type {{ [key: string]: string; }}
92
+ * @type {object}
93
93
  * @memberof PaymentEntity
94
94
  */
95
- 'metadata': { [key: string]: string; };
95
+ 'metadata': object;
96
96
  /**
97
97
  *
98
98
  * @type {string}
@@ -99,18 +99,6 @@ export interface PaymentRequestClass {
99
99
  * @memberof PaymentRequestClass
100
100
  */
101
101
  'status': PaymentRequestClassStatusEnum;
102
- /**
103
- * Code of the settlement the payment request was created for.
104
- * @type {string}
105
- * @memberof PaymentRequestClass
106
- */
107
- 'settlementCode'?: string;
108
- /**
109
- * Code of the partner the payment request was created for.
110
- * @type {string}
111
- * @memberof PaymentRequestClass
112
- */
113
- 'partnerCode': string;
114
102
  /**
115
103
  * Code of the payment method used for this payment request.
116
104
  * @type {string}
@@ -28,10 +28,10 @@ export interface ValidatePSPConfigRequestDto {
28
28
  'type': ValidatePSPConfigRequestDtoTypeEnum;
29
29
  /**
30
30
  * Map containing various necessary keys to properly use the payment service provider. In the form of <api key name, api key value>.
31
- * @type {{ [key: string]: string; }}
31
+ * @type {object}
32
32
  * @memberof ValidatePSPConfigRequestDto
33
33
  */
34
- 'apiKeys': { [key: string]: string; };
34
+ 'apiKeys': object;
35
35
  /**
36
36
  * List of payment methods that should be accepted by the payment service provider.
37
37
  * @type {Array<string>}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.16.1-beta.95",
3
+ "version": "1.16.1-beta.97",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [