@emilgroup/payment-sdk 1.16.1-beta.9 → 1.16.1-beta.91

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 (114) hide show
  1. package/.openapi-generator/FILES +12 -0
  2. package/README.md +2 -2
  3. package/api/bank-accounts-api.ts +16 -16
  4. package/api/bank-orders-api.ts +16 -16
  5. package/api/bank-transaction-api.ts +12 -12
  6. package/api/billing-addresses-api.ts +12 -12
  7. package/api/credit-allocation-api.ts +12 -12
  8. package/api/exceeding-credits-api.ts +12 -12
  9. package/api/ibanvalidator-api.ts +165 -0
  10. package/api/payment-methods-api.ts +12 -12
  11. package/api/payment-receipts-api.ts +676 -0
  12. package/api/payment-reminders-api.ts +16 -16
  13. package/api/payment-requests-api.ts +20 -20
  14. package/api/payments-api.ts +12 -12
  15. package/api/payout-methods-api.ts +138 -20
  16. package/api/refunds-api.ts +12 -12
  17. package/api/tenant-bank-account-api.ts +12 -12
  18. package/api/webhooks-api.ts +143 -19
  19. package/api.ts +4 -0
  20. package/dist/api/bank-accounts-api.d.ts +16 -16
  21. package/dist/api/bank-accounts-api.js +13 -13
  22. package/dist/api/bank-orders-api.d.ts +16 -16
  23. package/dist/api/bank-orders-api.js +14 -14
  24. package/dist/api/bank-transaction-api.d.ts +12 -12
  25. package/dist/api/bank-transaction-api.js +10 -10
  26. package/dist/api/billing-addresses-api.d.ts +12 -12
  27. package/dist/api/billing-addresses-api.js +10 -10
  28. package/dist/api/credit-allocation-api.d.ts +12 -12
  29. package/dist/api/credit-allocation-api.js +10 -10
  30. package/dist/api/exceeding-credits-api.d.ts +12 -12
  31. package/dist/api/exceeding-credits-api.js +10 -10
  32. package/dist/api/ibanvalidator-api.d.ts +97 -0
  33. package/dist/api/ibanvalidator-api.js +224 -0
  34. package/dist/api/payment-methods-api.d.ts +12 -12
  35. package/dist/api/payment-methods-api.js +10 -10
  36. package/dist/api/payment-receipts-api.d.ts +383 -0
  37. package/dist/api/payment-receipts-api.js +637 -0
  38. package/dist/api/payment-reminders-api.d.ts +16 -16
  39. package/dist/api/payment-reminders-api.js +13 -13
  40. package/dist/api/payment-requests-api.d.ts +20 -20
  41. package/dist/api/payment-requests-api.js +15 -15
  42. package/dist/api/payments-api.d.ts +12 -12
  43. package/dist/api/payments-api.js +10 -10
  44. package/dist/api/payout-methods-api.d.ts +85 -20
  45. package/dist/api/payout-methods-api.js +115 -16
  46. package/dist/api/refunds-api.d.ts +12 -12
  47. package/dist/api/refunds-api.js +10 -10
  48. package/dist/api/tenant-bank-account-api.d.ts +12 -12
  49. package/dist/api/tenant-bank-account-api.js +10 -10
  50. package/dist/api/webhooks-api.d.ts +85 -12
  51. package/dist/api/webhooks-api.js +107 -12
  52. package/dist/api.d.ts +2 -0
  53. package/dist/api.js +2 -0
  54. package/dist/models/bank-account-class-without-expand-properties.d.ts +6 -0
  55. package/dist/models/bank-account-class.d.ts +6 -0
  56. package/dist/models/bank-data-class.d.ts +36 -0
  57. package/dist/models/bank-data-class.js +15 -0
  58. package/dist/models/create-payment-receipt-request-dto.d.ts +65 -0
  59. package/dist/models/create-payment-receipt-request-dto.js +20 -0
  60. package/dist/models/create-payment-receipt-response-class.d.ts +25 -0
  61. package/dist/models/create-payment-receipt-response-class.js +15 -0
  62. package/dist/models/create-payment-request-request-dto.d.ts +14 -8
  63. package/dist/models/create-payment-request-request-dto.js +3 -5
  64. package/dist/models/create-payout-method-by-bank-account-request-dto.d.ts +36 -0
  65. package/dist/models/create-payout-method-by-bank-account-request-dto.js +15 -0
  66. package/dist/models/create-payout-method-request-dto.d.ts +8 -2
  67. package/dist/models/get-payment-receipt-response-class.d.ts +25 -0
  68. package/dist/models/get-payment-receipt-response-class.js +15 -0
  69. package/dist/models/index.d.ts +10 -0
  70. package/dist/models/index.js +10 -0
  71. package/dist/models/list-billing-addresses-response-class.d.ts +9 -9
  72. package/dist/models/list-exceeding-credits-response-class.d.ts +18 -6
  73. package/dist/models/list-payment-receipts-response-class.d.ts +43 -0
  74. package/dist/models/list-payment-receipts-response-class.js +15 -0
  75. package/dist/models/list-payment-requests-response-class.d.ts +18 -6
  76. package/dist/models/list-payout-methods-response-class.d.ts +9 -9
  77. package/dist/models/list-refunds-response-class.d.ts +18 -6
  78. package/dist/models/payment-receipt-class.d.ts +101 -0
  79. package/dist/models/payment-receipt-class.js +20 -0
  80. package/dist/models/payment-request-class.d.ts +17 -10
  81. package/dist/models/payment-request-class.js +4 -6
  82. package/dist/models/payout-method-class.d.ts +6 -0
  83. package/dist/models/update-payment-receipt-response-class.d.ts +25 -0
  84. package/dist/models/update-payment-receipt-response-class.js +15 -0
  85. package/dist/models/update-payment-request-request-dto.d.ts +2 -2
  86. package/dist/models/update-payment-request-request-dto.js +1 -1
  87. package/dist/models/validate-iban-request-dto.d.ts +24 -0
  88. package/dist/models/validate-iban-request-dto.js +15 -0
  89. package/dist/models/validate-iban-response-class.d.ts +31 -0
  90. package/dist/models/validate-iban-response-class.js +15 -0
  91. package/models/bank-account-class-without-expand-properties.ts +6 -0
  92. package/models/bank-account-class.ts +6 -0
  93. package/models/bank-data-class.ts +42 -0
  94. package/models/create-payment-receipt-request-dto.ts +74 -0
  95. package/models/create-payment-receipt-response-class.ts +31 -0
  96. package/models/create-payment-request-request-dto.ts +12 -8
  97. package/models/create-payout-method-by-bank-account-request-dto.ts +42 -0
  98. package/models/create-payout-method-request-dto.ts +8 -2
  99. package/models/get-payment-receipt-response-class.ts +31 -0
  100. package/models/index.ts +10 -0
  101. package/models/list-billing-addresses-response-class.ts +9 -9
  102. package/models/list-exceeding-credits-response-class.ts +18 -6
  103. package/models/list-payment-receipts-response-class.ts +49 -0
  104. package/models/list-payment-requests-response-class.ts +18 -6
  105. package/models/list-payout-methods-response-class.ts +9 -9
  106. package/models/list-refunds-response-class.ts +18 -6
  107. package/models/payment-receipt-class.ts +110 -0
  108. package/models/payment-request-class.ts +15 -10
  109. package/models/payout-method-class.ts +6 -0
  110. package/models/update-payment-receipt-response-class.ts +31 -0
  111. package/models/update-payment-request-request-dto.ts +2 -2
  112. package/models/validate-iban-request-dto.ts +30 -0
  113. package/models/validate-iban-response-class.ts +37 -0
  114. package/package.json +2 -2
@@ -194,16 +194,16 @@ var RefundsApiAxiosParamCreator = function (configuration) {
194
194
  });
195
195
  },
196
196
  /**
197
- * Returns a list of refunds you have previously created. The refunds 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\"
197
+ * Returns a list of refunds you have previously created. The refunds 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\"
198
198
  * @summary List refunds
199
199
  * @param {string} [authorization] Bearer Token
200
200
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
201
201
  * @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.
202
- * @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, status, reason, psp, accountCode, invoiceCode</i>
202
+ * @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, status, reason, psp, accountCode, invoiceCode</i>
203
203
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
204
204
  * @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, amount</i>
205
205
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: refundItems<i>
206
- * @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, status, reason, psp, accountCode, invoiceCode</i>
206
+ * @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, status, reason, psp, accountCode, invoiceCode</i>
207
207
  * @param {*} [options] Override http request option.
208
208
  * @throws {RequiredError}
209
209
  */
@@ -319,16 +319,16 @@ var RefundsApiFp = function (configuration) {
319
319
  });
320
320
  },
321
321
  /**
322
- * Returns a list of refunds you have previously created. The refunds 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
+ * Returns a list of refunds you have previously created. The refunds 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\"
323
323
  * @summary List refunds
324
324
  * @param {string} [authorization] Bearer Token
325
325
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
326
326
  * @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.
327
- * @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, status, reason, psp, accountCode, invoiceCode</i>
327
+ * @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, status, reason, psp, accountCode, invoiceCode</i>
328
328
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
329
329
  * @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, amount</i>
330
330
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: refundItems<i>
331
- * @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, status, reason, psp, accountCode, invoiceCode</i>
331
+ * @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, status, reason, psp, accountCode, invoiceCode</i>
332
332
  * @param {*} [options] Override http request option.
333
333
  * @throws {RequiredError}
334
334
  */
@@ -379,16 +379,16 @@ var RefundsApiFactory = function (configuration, basePath, axios) {
379
379
  return localVarFp.getRefund(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
380
380
  },
381
381
  /**
382
- * Returns a list of refunds you have previously created. The refunds 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\"
382
+ * Returns a list of refunds you have previously created. The refunds 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\"
383
383
  * @summary List refunds
384
384
  * @param {string} [authorization] Bearer Token
385
385
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
386
386
  * @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
- * @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, status, reason, psp, accountCode, invoiceCode</i>
387
+ * @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, status, reason, psp, accountCode, invoiceCode</i>
388
388
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
389
389
  * @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, amount</i>
390
390
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: refundItems<i>
391
- * @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, status, reason, psp, accountCode, invoiceCode</i>
391
+ * @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, status, reason, psp, accountCode, invoiceCode</i>
392
392
  * @param {*} [options] Override http request option.
393
393
  * @throws {RequiredError}
394
394
  */
@@ -434,7 +434,7 @@ var RefundsApi = /** @class */ (function (_super) {
434
434
  return (0, exports.RefundsApiFp)(this.configuration).getRefund(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
435
435
  };
436
436
  /**
437
- * Returns a list of refunds you have previously created. The refunds 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\"
437
+ * Returns a list of refunds you have previously created. The refunds 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\"
438
438
  * @summary List refunds
439
439
  * @param {RefundsApiListRefundsRequest} requestParameters Request parameters.
440
440
  * @param {*} [options] Override http request option.
@@ -52,16 +52,16 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
52
52
  */
53
53
  getTenantBankAccount: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
54
54
  /**
55
- * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
55
+ * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
56
56
  * @summary List tenant bank accounts
57
57
  * @param {string} [authorization] Bearer Token
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&#x3D;1, your subsequent call can include pageToken&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
60
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
61
61
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, iban, bankName, accountName&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, bankName, accountName&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: bankTransactions&lt;i&gt;
64
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
64
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
65
65
  * @param {*} [options] Override http request option.
66
66
  * @throws {RequiredError}
67
67
  */
@@ -111,16 +111,16 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
111
111
  */
112
112
  getTenantBankAccount(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>>;
113
113
  /**
114
- * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
114
+ * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
115
115
  * @summary List tenant bank accounts
116
116
  * @param {string} [authorization] Bearer Token
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&#x3D;1, your subsequent call can include pageToken&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
119
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
120
120
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, iban, bankName, accountName&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, bankName, accountName&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: bankTransactions&lt;i&gt;
123
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
123
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
124
124
  * @param {*} [options] Override http request option.
125
125
  * @throws {RequiredError}
126
126
  */
@@ -170,16 +170,16 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
170
170
  */
171
171
  getTenantBankAccount(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetTenantBankAccountResponseClass>;
172
172
  /**
173
- * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
173
+ * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
174
174
  * @summary List tenant bank accounts
175
175
  * @param {string} [authorization] Bearer Token
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&#x3D;1, your subsequent call can include pageToken&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
178
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
179
179
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, iban, bankName, accountName&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, bankName, accountName&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: bankTransactions&lt;i&gt;
182
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
182
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
183
183
  * @param {*} [options] Override http request option.
184
184
  * @throws {RequiredError}
185
185
  */
@@ -283,7 +283,7 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
286
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
287
287
  * @type {string}
288
288
  * @memberof TenantBankAccountApiListTenantBankAccounts
289
289
  */
@@ -307,7 +307,7 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
310
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
311
311
  * @type {string}
312
312
  * @memberof TenantBankAccountApiListTenantBankAccounts
313
313
  */
@@ -373,7 +373,7 @@ export declare class TenantBankAccountApi extends BaseAPI {
373
373
  */
374
374
  getTenantBankAccount(requestParameters: TenantBankAccountApiGetTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetTenantBankAccountResponseClass, any, {}>>;
375
375
  /**
376
- * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
376
+ * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
377
377
  * @summary List tenant bank accounts
378
378
  * @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
379
379
  * @param {*} [options] Override http request option.
@@ -242,16 +242,16 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
242
242
  });
243
243
  },
244
244
  /**
245
- * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
245
+ * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
246
246
  * @summary List tenant bank accounts
247
247
  * @param {string} [authorization] Bearer Token
248
248
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
249
249
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
250
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
250
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
251
251
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, iban, bankName, accountName&lt;/i&gt;
252
252
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, bankName, accountName&lt;/i&gt;
253
253
  * @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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: bankTransactions&lt;i&gt;
254
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
254
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
255
255
  * @param {*} [options] Override http request option.
256
256
  * @throws {RequiredError}
257
257
  */
@@ -441,16 +441,16 @@ var TenantBankAccountApiFp = function (configuration) {
441
441
  });
442
442
  },
443
443
  /**
444
- * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
444
+ * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
445
445
  * @summary List tenant bank accounts
446
446
  * @param {string} [authorization] Bearer Token
447
447
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
448
448
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
449
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
449
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
450
450
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, iban, bankName, accountName&lt;/i&gt;
451
451
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, bankName, accountName&lt;/i&gt;
452
452
  * @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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: bankTransactions&lt;i&gt;
453
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
453
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
454
454
  * @param {*} [options] Override http request option.
455
455
  * @throws {RequiredError}
456
456
  */
@@ -534,16 +534,16 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
534
534
  return localVarFp.getTenantBankAccount(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
535
535
  },
536
536
  /**
537
- * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
537
+ * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
538
538
  * @summary List tenant bank accounts
539
539
  * @param {string} [authorization] Bearer Token
540
540
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
541
541
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
542
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
542
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
543
543
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, iban, bankName, accountName&lt;/i&gt;
544
544
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, bankName, accountName&lt;/i&gt;
545
545
  * @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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: bankTransactions&lt;i&gt;
546
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
546
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion&lt;/i&gt;
547
547
  * @param {*} [options] Override http request option.
548
548
  * @throws {RequiredError}
549
549
  */
@@ -613,7 +613,7 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
613
613
  return (0, exports.TenantBankAccountApiFp)(this.configuration).getTenantBankAccount(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
614
614
  };
615
615
  /**
616
- * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
616
+ * Returns a list of tenant bank accounts you have previously created. The tenant bank accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
617
617
  * @summary List tenant bank accounts
618
618
  * @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
619
619
  * @param {*} [options] Override http request option.
@@ -27,7 +27,18 @@ export declare const WebhooksApiAxiosParamCreator: (configuration?: Configuratio
27
27
  * @param {*} [options] Override http request option.
28
28
  * @throws {RequiredError}
29
29
  */
30
- postWebhook: (pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
30
+ postWebhook0: (pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
31
+ /**
32
+ * This will processes the webhook from external payment service provider. **Required Permissions** none
33
+ * @summary Handle the webhook from PSP
34
+ * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
35
+ * @param {string} tenantSlug Unique slug identifier representing a tenant.
36
+ * @param {string} productSlug
37
+ * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
38
+ * @param {*} [options] Override http request option.
39
+ * @throws {RequiredError}
40
+ */
41
+ postWebhook1: (pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
31
42
  };
32
43
  /**
33
44
  * WebhooksApi - functional programming interface
@@ -44,7 +55,18 @@ export declare const WebhooksApiFp: (configuration?: Configuration) => {
44
55
  * @param {*} [options] Override http request option.
45
56
  * @throws {RequiredError}
46
57
  */
47
- postWebhook(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
58
+ postWebhook0(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
59
+ /**
60
+ * This will processes the webhook from external payment service provider. **Required Permissions** none
61
+ * @summary Handle the webhook from PSP
62
+ * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
63
+ * @param {string} tenantSlug Unique slug identifier representing a tenant.
64
+ * @param {string} productSlug
65
+ * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
66
+ * @param {*} [options] Override http request option.
67
+ * @throws {RequiredError}
68
+ */
69
+ postWebhook1(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
48
70
  };
49
71
  /**
50
72
  * WebhooksApi - factory interface
@@ -61,36 +83,78 @@ export declare const WebhooksApiFactory: (configuration?: Configuration, basePat
61
83
  * @param {*} [options] Override http request option.
62
84
  * @throws {RequiredError}
63
85
  */
64
- postWebhook(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: any): AxiosPromise<void>;
86
+ postWebhook0(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: any): AxiosPromise<void>;
87
+ /**
88
+ * This will processes the webhook from external payment service provider. **Required Permissions** none
89
+ * @summary Handle the webhook from PSP
90
+ * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
91
+ * @param {string} tenantSlug Unique slug identifier representing a tenant.
92
+ * @param {string} productSlug
93
+ * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
94
+ * @param {*} [options] Override http request option.
95
+ * @throws {RequiredError}
96
+ */
97
+ postWebhook1(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: any): AxiosPromise<void>;
65
98
  };
66
99
  /**
67
- * Request parameters for postWebhook operation in WebhooksApi.
100
+ * Request parameters for postWebhook0 operation in WebhooksApi.
68
101
  * @export
69
- * @interface WebhooksApiPostWebhookRequest
102
+ * @interface WebhooksApiPostWebhook0Request
70
103
  */
71
- export interface WebhooksApiPostWebhookRequest {
104
+ export interface WebhooksApiPostWebhook0Request {
72
105
  /**
73
106
  * The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
74
107
  * @type {string}
75
- * @memberof WebhooksApiPostWebhook
108
+ * @memberof WebhooksApiPostWebhook0
76
109
  */
77
110
  readonly pspType: string;
78
111
  /**
79
112
  * Unique slug identifier representing a tenant.
80
113
  * @type {string}
81
- * @memberof WebhooksApiPostWebhook
114
+ * @memberof WebhooksApiPostWebhook0
82
115
  */
83
116
  readonly tenantSlug: string;
84
117
  /**
85
118
  *
86
119
  * @type {string}
87
- * @memberof WebhooksApiPostWebhook
120
+ * @memberof WebhooksApiPostWebhook0
88
121
  */
89
122
  readonly productSlug: string;
90
123
  /**
91
124
  * Accepts a webhook payload. The structure may vary depending on the payment service provider.
92
125
  * @type {object}
93
- * @memberof WebhooksApiPostWebhook
126
+ * @memberof WebhooksApiPostWebhook0
127
+ */
128
+ readonly body: object;
129
+ }
130
+ /**
131
+ * Request parameters for postWebhook1 operation in WebhooksApi.
132
+ * @export
133
+ * @interface WebhooksApiPostWebhook1Request
134
+ */
135
+ export interface WebhooksApiPostWebhook1Request {
136
+ /**
137
+ * The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
138
+ * @type {string}
139
+ * @memberof WebhooksApiPostWebhook1
140
+ */
141
+ readonly pspType: string;
142
+ /**
143
+ * Unique slug identifier representing a tenant.
144
+ * @type {string}
145
+ * @memberof WebhooksApiPostWebhook1
146
+ */
147
+ readonly tenantSlug: string;
148
+ /**
149
+ *
150
+ * @type {string}
151
+ * @memberof WebhooksApiPostWebhook1
152
+ */
153
+ readonly productSlug: string;
154
+ /**
155
+ * Accepts a webhook payload. The structure may vary depending on the payment service provider.
156
+ * @type {object}
157
+ * @memberof WebhooksApiPostWebhook1
94
158
  */
95
159
  readonly body: object;
96
160
  }
@@ -104,10 +168,19 @@ export declare class WebhooksApi extends BaseAPI {
104
168
  /**
105
169
  * This will processes the webhook from external payment service provider. **Required Permissions** none
106
170
  * @summary Handle the webhook from PSP
107
- * @param {WebhooksApiPostWebhookRequest} requestParameters Request parameters.
171
+ * @param {WebhooksApiPostWebhook0Request} requestParameters Request parameters.
172
+ * @param {*} [options] Override http request option.
173
+ * @throws {RequiredError}
174
+ * @memberof WebhooksApi
175
+ */
176
+ postWebhook0(requestParameters: WebhooksApiPostWebhook0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
177
+ /**
178
+ * This will processes the webhook from external payment service provider. **Required Permissions** none
179
+ * @summary Handle the webhook from PSP
180
+ * @param {WebhooksApiPostWebhook1Request} requestParameters Request parameters.
108
181
  * @param {*} [options] Override http request option.
109
182
  * @throws {RequiredError}
110
183
  * @memberof WebhooksApi
111
184
  */
112
- postWebhook(requestParameters: WebhooksApiPostWebhookRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
185
+ postWebhook1(requestParameters: WebhooksApiPostWebhook1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
113
186
  }
@@ -102,19 +102,66 @@ var WebhooksApiAxiosParamCreator = function (configuration) {
102
102
  * @param {*} [options] Override http request option.
103
103
  * @throws {RequiredError}
104
104
  */
105
- postWebhook: function (pspType, tenantSlug, productSlug, body, options) {
105
+ postWebhook0: function (pspType, tenantSlug, productSlug, body, options) {
106
106
  if (options === void 0) { options = {}; }
107
107
  return __awaiter(_this, void 0, void 0, function () {
108
108
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
109
109
  return __generator(this, function (_a) {
110
110
  // verify required parameter 'pspType' is not null or undefined
111
- (0, common_1.assertParamExists)('postWebhook', 'pspType', pspType);
111
+ (0, common_1.assertParamExists)('postWebhook0', 'pspType', pspType);
112
112
  // verify required parameter 'tenantSlug' is not null or undefined
113
- (0, common_1.assertParamExists)('postWebhook', 'tenantSlug', tenantSlug);
113
+ (0, common_1.assertParamExists)('postWebhook0', 'tenantSlug', tenantSlug);
114
114
  // verify required parameter 'productSlug' is not null or undefined
115
- (0, common_1.assertParamExists)('postWebhook', 'productSlug', productSlug);
115
+ (0, common_1.assertParamExists)('postWebhook0', 'productSlug', productSlug);
116
116
  // verify required parameter 'body' is not null or undefined
117
- (0, common_1.assertParamExists)('postWebhook', 'body', body);
117
+ (0, common_1.assertParamExists)('postWebhook0', 'body', body);
118
+ localVarPath = "/paymentservice/v1/webhooks/{pspType}/{tenantSlug}"
119
+ .replace("{".concat("pspType", "}"), encodeURIComponent(String(pspType)))
120
+ .replace("{".concat("tenantSlug", "}"), encodeURIComponent(String(tenantSlug)))
121
+ .replace("{".concat("productSlug", "}"), encodeURIComponent(String(productSlug)));
122
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
123
+ if (configuration) {
124
+ baseOptions = configuration.baseOptions;
125
+ baseAccessToken = configuration.accessToken;
126
+ }
127
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
128
+ localVarHeaderParameter = {};
129
+ localVarQueryParameter = {};
130
+ localVarHeaderParameter['Content-Type'] = 'application/json';
131
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
132
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
133
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
134
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
135
+ return [2 /*return*/, {
136
+ url: (0, common_1.toPathString)(localVarUrlObj),
137
+ options: localVarRequestOptions,
138
+ }];
139
+ });
140
+ });
141
+ },
142
+ /**
143
+ * This will processes the webhook from external payment service provider. **Required Permissions** none
144
+ * @summary Handle the webhook from PSP
145
+ * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
146
+ * @param {string} tenantSlug Unique slug identifier representing a tenant.
147
+ * @param {string} productSlug
148
+ * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
149
+ * @param {*} [options] Override http request option.
150
+ * @throws {RequiredError}
151
+ */
152
+ postWebhook1: function (pspType, tenantSlug, productSlug, body, options) {
153
+ if (options === void 0) { options = {}; }
154
+ return __awaiter(_this, void 0, void 0, function () {
155
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
156
+ return __generator(this, function (_a) {
157
+ // verify required parameter 'pspType' is not null or undefined
158
+ (0, common_1.assertParamExists)('postWebhook1', 'pspType', pspType);
159
+ // verify required parameter 'tenantSlug' is not null or undefined
160
+ (0, common_1.assertParamExists)('postWebhook1', 'tenantSlug', tenantSlug);
161
+ // verify required parameter 'productSlug' is not null or undefined
162
+ (0, common_1.assertParamExists)('postWebhook1', 'productSlug', productSlug);
163
+ // verify required parameter 'body' is not null or undefined
164
+ (0, common_1.assertParamExists)('postWebhook1', 'body', body);
118
165
  localVarPath = "/paymentservice/v1/webhooks/{pspType}/{tenantSlug}/{productSlug}"
119
166
  .replace("{".concat("pspType", "}"), encodeURIComponent(String(pspType)))
120
167
  .replace("{".concat("tenantSlug", "}"), encodeURIComponent(String(tenantSlug)))
@@ -159,12 +206,35 @@ var WebhooksApiFp = function (configuration) {
159
206
  * @param {*} [options] Override http request option.
160
207
  * @throws {RequiredError}
161
208
  */
162
- postWebhook: function (pspType, tenantSlug, productSlug, body, options) {
209
+ postWebhook0: function (pspType, tenantSlug, productSlug, body, options) {
163
210
  return __awaiter(this, void 0, void 0, function () {
164
211
  var localVarAxiosArgs;
165
212
  return __generator(this, function (_a) {
166
213
  switch (_a.label) {
167
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.postWebhook(pspType, tenantSlug, productSlug, body, options)];
214
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.postWebhook0(pspType, tenantSlug, productSlug, body, options)];
215
+ case 1:
216
+ localVarAxiosArgs = _a.sent();
217
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
218
+ }
219
+ });
220
+ });
221
+ },
222
+ /**
223
+ * This will processes the webhook from external payment service provider. **Required Permissions** none
224
+ * @summary Handle the webhook from PSP
225
+ * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
226
+ * @param {string} tenantSlug Unique slug identifier representing a tenant.
227
+ * @param {string} productSlug
228
+ * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
229
+ * @param {*} [options] Override http request option.
230
+ * @throws {RequiredError}
231
+ */
232
+ postWebhook1: function (pspType, tenantSlug, productSlug, body, options) {
233
+ return __awaiter(this, void 0, void 0, function () {
234
+ var localVarAxiosArgs;
235
+ return __generator(this, function (_a) {
236
+ switch (_a.label) {
237
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.postWebhook1(pspType, tenantSlug, productSlug, body, options)];
168
238
  case 1:
169
239
  localVarAxiosArgs = _a.sent();
170
240
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -192,8 +262,21 @@ var WebhooksApiFactory = function (configuration, basePath, axios) {
192
262
  * @param {*} [options] Override http request option.
193
263
  * @throws {RequiredError}
194
264
  */
195
- postWebhook: function (pspType, tenantSlug, productSlug, body, options) {
196
- return localVarFp.postWebhook(pspType, tenantSlug, productSlug, body, options).then(function (request) { return request(axios, basePath); });
265
+ postWebhook0: function (pspType, tenantSlug, productSlug, body, options) {
266
+ return localVarFp.postWebhook0(pspType, tenantSlug, productSlug, body, options).then(function (request) { return request(axios, basePath); });
267
+ },
268
+ /**
269
+ * This will processes the webhook from external payment service provider. **Required Permissions** none
270
+ * @summary Handle the webhook from PSP
271
+ * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
272
+ * @param {string} tenantSlug Unique slug identifier representing a tenant.
273
+ * @param {string} productSlug
274
+ * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
275
+ * @param {*} [options] Override http request option.
276
+ * @throws {RequiredError}
277
+ */
278
+ postWebhook1: function (pspType, tenantSlug, productSlug, body, options) {
279
+ return localVarFp.postWebhook1(pspType, tenantSlug, productSlug, body, options).then(function (request) { return request(axios, basePath); });
197
280
  },
198
281
  };
199
282
  };
@@ -212,14 +295,26 @@ var WebhooksApi = /** @class */ (function (_super) {
212
295
  /**
213
296
  * This will processes the webhook from external payment service provider. **Required Permissions** none
214
297
  * @summary Handle the webhook from PSP
215
- * @param {WebhooksApiPostWebhookRequest} requestParameters Request parameters.
298
+ * @param {WebhooksApiPostWebhook0Request} requestParameters Request parameters.
299
+ * @param {*} [options] Override http request option.
300
+ * @throws {RequiredError}
301
+ * @memberof WebhooksApi
302
+ */
303
+ WebhooksApi.prototype.postWebhook0 = function (requestParameters, options) {
304
+ var _this = this;
305
+ return (0, exports.WebhooksApiFp)(this.configuration).postWebhook0(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.productSlug, requestParameters.body, options).then(function (request) { return request(_this.axios, _this.basePath); });
306
+ };
307
+ /**
308
+ * This will processes the webhook from external payment service provider. **Required Permissions** none
309
+ * @summary Handle the webhook from PSP
310
+ * @param {WebhooksApiPostWebhook1Request} requestParameters Request parameters.
216
311
  * @param {*} [options] Override http request option.
217
312
  * @throws {RequiredError}
218
313
  * @memberof WebhooksApi
219
314
  */
220
- WebhooksApi.prototype.postWebhook = function (requestParameters, options) {
315
+ WebhooksApi.prototype.postWebhook1 = function (requestParameters, options) {
221
316
  var _this = this;
222
- return (0, exports.WebhooksApiFp)(this.configuration).postWebhook(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.productSlug, requestParameters.body, options).then(function (request) { return request(_this.axios, _this.basePath); });
317
+ return (0, exports.WebhooksApiFp)(this.configuration).postWebhook1(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.productSlug, requestParameters.body, options).then(function (request) { return request(_this.axios, _this.basePath); });
223
318
  };
224
319
  return WebhooksApi;
225
320
  }(base_1.BaseAPI));
package/dist/api.d.ts CHANGED
@@ -16,7 +16,9 @@ export * from './api/billing-addresses-api';
16
16
  export * from './api/credit-allocation-api';
17
17
  export * from './api/exceeding-credits-api';
18
18
  export * from './api/health-check-api';
19
+ export * from './api/ibanvalidator-api';
19
20
  export * from './api/payment-methods-api';
21
+ export * from './api/payment-receipts-api';
20
22
  export * from './api/payment-reminders-api';
21
23
  export * from './api/payment-requests-api';
22
24
  export * from './api/payment-setup-api';
package/dist/api.js CHANGED
@@ -34,7 +34,9 @@ __exportStar(require("./api/billing-addresses-api"), exports);
34
34
  __exportStar(require("./api/credit-allocation-api"), exports);
35
35
  __exportStar(require("./api/exceeding-credits-api"), exports);
36
36
  __exportStar(require("./api/health-check-api"), exports);
37
+ __exportStar(require("./api/ibanvalidator-api"), exports);
37
38
  __exportStar(require("./api/payment-methods-api"), exports);
39
+ __exportStar(require("./api/payment-receipts-api"), exports);
38
40
  __exportStar(require("./api/payment-reminders-api"), exports);
39
41
  __exportStar(require("./api/payment-requests-api"), exports);
40
42
  __exportStar(require("./api/payment-setup-api"), exports);
@@ -45,6 +45,12 @@ export interface BankAccountClassWithoutExpandProperties {
45
45
  * @memberof BankAccountClassWithoutExpandProperties
46
46
  */
47
47
  'bic': string;
48
+ /**
49
+ * Bank name.
50
+ * @type {string}
51
+ * @memberof BankAccountClassWithoutExpandProperties
52
+ */
53
+ 'bankName': string;
48
54
  /**
49
55
  * Bank account holder.
50
56
  * @type {string}