@emilgroup/payment-sdk-node 1.21.1-beta.23 → 1.21.1-beta.25

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.
@@ -29,6 +29,7 @@ models/billing-profile-limited-response-dto.ts
29
29
  models/card-details-dto.ts
30
30
  models/complete-adyen-payment-setup-request-dto.ts
31
31
  models/complete-braintree-payment-setup-request-dto.ts
32
+ models/complete-eis-payment-setup-request-dto.ts
32
33
  models/complete-payment-setup-request-dto.ts
33
34
  models/complete-payment-setup-response-class.ts
34
35
  models/complete-stripe-payment-setup-request-dto.ts
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-node@1.21.1-beta.23 --save
20
+ npm install @emilgroup/payment-sdk-node@1.21.1-beta.25 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk-node@1.21.1-beta.23
24
+ yarn add @emilgroup/payment-sdk-node@1.21.1-beta.25
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.
@@ -148,11 +148,11 @@ export const PaymentsApiAxiosParamCreator = function (configuration?: Configurat
148
148
  * @param {string} [authorization] Bearer Token
149
149
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
150
150
  * @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.
151
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
151
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
152
152
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
153
153
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, code, amount</i>
154
154
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: transactions<i>
155
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
155
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
156
156
  * @param {*} [options] Override http request option.
157
157
  * @throws {RequiredError}
158
158
  */
@@ -260,11 +260,11 @@ export const PaymentsApiFp = function(configuration?: Configuration) {
260
260
  * @param {string} [authorization] Bearer Token
261
261
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
262
262
  * @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.
263
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
263
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
264
264
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
265
265
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, code, amount</i>
266
266
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: transactions<i>
267
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
267
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
268
268
  * @param {*} [options] Override http request option.
269
269
  * @throws {RequiredError}
270
270
  */
@@ -312,11 +312,11 @@ export const PaymentsApiFactory = function (configuration?: Configuration, baseP
312
312
  * @param {string} [authorization] Bearer Token
313
313
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
314
314
  * @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.
315
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
315
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
316
316
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
317
317
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, code, amount</i>
318
318
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: transactions<i>
319
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
319
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
320
320
  * @param {*} [options] Override http request option.
321
321
  * @throws {RequiredError}
322
322
  */
@@ -410,7 +410,7 @@ export interface PaymentsApiListPaymentsRequest {
410
410
  readonly pageToken?: string
411
411
 
412
412
  /**
413
- * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
413
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
414
414
  * @type {string}
415
415
  * @memberof PaymentsApiListPayments
416
416
  */
@@ -438,7 +438,7 @@ export interface PaymentsApiListPaymentsRequest {
438
438
  readonly expand?: string
439
439
 
440
440
  /**
441
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
441
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
442
442
  * @type {string}
443
443
  * @memberof PaymentsApiListPayments
444
444
  */
@@ -47,11 +47,11 @@ export declare const PaymentsApiAxiosParamCreator: (configuration?: Configuratio
47
47
  * @param {string} [authorization] Bearer Token
48
48
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
49
49
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
50
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
50
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
51
51
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
52
52
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, code, amount</i>
53
53
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: transactions<i>
54
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
54
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
55
55
  * @param {*} [options] Override http request option.
56
56
  * @throws {RequiredError}
57
57
  */
@@ -88,11 +88,11 @@ export declare const PaymentsApiFp: (configuration?: Configuration) => {
88
88
  * @param {string} [authorization] Bearer Token
89
89
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
90
90
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
91
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
91
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
92
92
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
93
93
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, code, amount</i>
94
94
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: transactions<i>
95
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
95
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
96
96
  * @param {*} [options] Override http request option.
97
97
  * @throws {RequiredError}
98
98
  */
@@ -129,11 +129,11 @@ export declare const PaymentsApiFactory: (configuration?: Configuration, basePat
129
129
  * @param {string} [authorization] Bearer Token
130
130
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
131
131
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
132
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
132
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
133
133
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
134
134
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, code, amount</i>
135
135
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: transactions<i>
136
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
136
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
137
137
  * @param {*} [options] Override http request option.
138
138
  * @throws {RequiredError}
139
139
  */
@@ -214,7 +214,7 @@ export interface PaymentsApiListPaymentsRequest {
214
214
  */
215
215
  readonly pageToken?: string;
216
216
  /**
217
- * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
217
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
218
218
  * @type {string}
219
219
  * @memberof PaymentsApiListPayments
220
220
  */
@@ -238,7 +238,7 @@ export interface PaymentsApiListPaymentsRequest {
238
238
  */
239
239
  readonly expand?: string;
240
240
  /**
241
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
241
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
242
242
  * @type {string}
243
243
  * @memberof PaymentsApiListPayments
244
244
  */
@@ -209,11 +209,11 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
209
209
  * @param {string} [authorization] Bearer Token
210
210
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
211
211
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
212
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
212
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
213
213
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
214
214
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, code, amount</i>
215
215
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: transactions<i>
216
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
216
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
217
217
  * @param {*} [options] Override http request option.
218
218
  * @throws {RequiredError}
219
219
  */
@@ -335,11 +335,11 @@ var PaymentsApiFp = function (configuration) {
335
335
  * @param {string} [authorization] Bearer Token
336
336
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
337
337
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
338
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
338
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
339
339
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
340
340
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, code, amount</i>
341
341
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: transactions<i>
342
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
342
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
343
343
  * @param {*} [options] Override http request option.
344
344
  * @throws {RequiredError}
345
345
  */
@@ -396,11 +396,11 @@ var PaymentsApiFactory = function (configuration, basePath, axios) {
396
396
  * @param {string} [authorization] Bearer Token
397
397
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
398
398
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
399
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
399
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
400
400
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
401
401
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, code, amount</i>
402
402
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: transactions<i>
403
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug</i>
403
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode</i>
404
404
  * @param {*} [options] Override http request option.
405
405
  * @throws {RequiredError}
406
406
  */
@@ -93,5 +93,6 @@ export declare const CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum: {
93
93
  readonly Venmo: "venmo";
94
94
  readonly Masterpass: "masterpass";
95
95
  readonly B4u: "b4u";
96
+ readonly Invoice: "invoice";
96
97
  };
97
98
  export type CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -28,5 +28,6 @@ exports.CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice'
32
33
  };
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CompleteEisPaymentSetupRequestDto
16
+ */
17
+ export interface CompleteEisPaymentSetupRequestDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof CompleteEisPaymentSetupRequestDto
22
+ */
23
+ 'accountCode'?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof CompleteEisPaymentSetupRequestDto
28
+ */
29
+ 'partnerCode'?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof CompleteEisPaymentSetupRequestDto
34
+ */
35
+ 'leadCode'?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof CompleteEisPaymentSetupRequestDto
40
+ */
41
+ 'setupToken'?: string;
42
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
6
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
13
13
  import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
14
+ import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
14
15
  import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
15
16
  /**
16
17
  *
@@ -42,4 +43,10 @@ export interface CompletePaymentSetupRequestDto {
42
43
  * @memberof CompletePaymentSetupRequestDto
43
44
  */
44
45
  'adyen'?: CompleteAdyenPaymentSetupRequestDto;
46
+ /**
47
+ *
48
+ * @type {CompleteEisPaymentSetupRequestDto}
49
+ * @memberof CompletePaymentSetupRequestDto
50
+ */
51
+ 'eis'?: CompleteEisPaymentSetupRequestDto;
45
52
  }
@@ -92,5 +92,6 @@ export declare const CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum:
92
92
  readonly Venmo: "venmo";
93
93
  readonly Masterpass: "masterpass";
94
94
  readonly B4u: "b4u";
95
+ readonly Invoice: "invoice";
95
96
  };
96
97
  export type CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -28,5 +28,6 @@ exports.CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice'
32
33
  };
@@ -53,6 +53,12 @@ export interface CreatePspPaymentMethodRequestDto {
53
53
  * @memberof CreatePspPaymentMethodRequestDto
54
54
  */
55
55
  'productSlug'?: string;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof CreatePspPaymentMethodRequestDto
60
+ */
61
+ 'leadCode'?: string;
56
62
  }
57
63
  export declare const CreatePspPaymentMethodRequestDtoTypeEnum: {
58
64
  readonly Paypal: "paypal";
@@ -69,5 +75,6 @@ export declare const CreatePspPaymentMethodRequestDtoTypeEnum: {
69
75
  readonly Venmo: "venmo";
70
76
  readonly Masterpass: "masterpass";
71
77
  readonly B4u: "b4u";
78
+ readonly Invoice: "invoice";
72
79
  };
73
80
  export type CreatePspPaymentMethodRequestDtoTypeEnum = typeof CreatePspPaymentMethodRequestDtoTypeEnum[keyof typeof CreatePspPaymentMethodRequestDtoTypeEnum];
@@ -28,5 +28,6 @@ exports.CreatePspPaymentMethodRequestDtoTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice'
32
33
  };
@@ -8,6 +8,7 @@ export * from './billing-profile-limited-response-dto';
8
8
  export * from './card-details-dto';
9
9
  export * from './complete-adyen-payment-setup-request-dto';
10
10
  export * from './complete-braintree-payment-setup-request-dto';
11
+ export * from './complete-eis-payment-setup-request-dto';
11
12
  export * from './complete-payment-setup-request-dto';
12
13
  export * from './complete-payment-setup-response-class';
13
14
  export * from './complete-stripe-payment-setup-request-dto';
@@ -24,6 +24,7 @@ __exportStar(require("./billing-profile-limited-response-dto"), exports);
24
24
  __exportStar(require("./card-details-dto"), exports);
25
25
  __exportStar(require("./complete-adyen-payment-setup-request-dto"), exports);
26
26
  __exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
27
+ __exportStar(require("./complete-eis-payment-setup-request-dto"), exports);
27
28
  __exportStar(require("./complete-payment-setup-request-dto"), exports);
28
29
  __exportStar(require("./complete-payment-setup-response-class"), exports);
29
30
  __exportStar(require("./complete-stripe-payment-setup-request-dto"), exports);
@@ -98,7 +98,8 @@ export const CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = {
98
98
  SamsungPay: 'samsung_pay',
99
99
  Venmo: 'venmo',
100
100
  Masterpass: 'masterpass',
101
- B4u: 'b4u'
101
+ B4u: 'b4u',
102
+ Invoice: 'invoice'
102
103
  } as const;
103
104
 
104
105
  export type CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -0,0 +1,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CompleteEisPaymentSetupRequestDto
21
+ */
22
+ export interface CompleteEisPaymentSetupRequestDto {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CompleteEisPaymentSetupRequestDto
27
+ */
28
+ 'accountCode'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CompleteEisPaymentSetupRequestDto
33
+ */
34
+ 'partnerCode'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CompleteEisPaymentSetupRequestDto
39
+ */
40
+ 'leadCode'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof CompleteEisPaymentSetupRequestDto
45
+ */
46
+ 'setupToken'?: string;
47
+ }
48
+
@@ -15,6 +15,7 @@
15
15
 
16
16
  import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
17
17
  import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
18
+ import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
18
19
  import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
19
20
 
20
21
  /**
@@ -47,5 +48,11 @@ export interface CompletePaymentSetupRequestDto {
47
48
  * @memberof CompletePaymentSetupRequestDto
48
49
  */
49
50
  'adyen'?: CompleteAdyenPaymentSetupRequestDto;
51
+ /**
52
+ *
53
+ * @type {CompleteEisPaymentSetupRequestDto}
54
+ * @memberof CompletePaymentSetupRequestDto
55
+ */
56
+ 'eis'?: CompleteEisPaymentSetupRequestDto;
50
57
  }
51
58
 
@@ -97,7 +97,8 @@ export const CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = {
97
97
  SamsungPay: 'samsung_pay',
98
98
  Venmo: 'venmo',
99
99
  Masterpass: 'masterpass',
100
- B4u: 'b4u'
100
+ B4u: 'b4u',
101
+ Invoice: 'invoice'
101
102
  } as const;
102
103
 
103
104
  export type CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -58,6 +58,12 @@ export interface CreatePspPaymentMethodRequestDto {
58
58
  * @memberof CreatePspPaymentMethodRequestDto
59
59
  */
60
60
  'productSlug'?: string;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof CreatePspPaymentMethodRequestDto
65
+ */
66
+ 'leadCode'?: string;
61
67
  }
62
68
 
63
69
  export const CreatePspPaymentMethodRequestDtoTypeEnum = {
@@ -74,7 +80,8 @@ export const CreatePspPaymentMethodRequestDtoTypeEnum = {
74
80
  SamsungPay: 'samsung_pay',
75
81
  Venmo: 'venmo',
76
82
  Masterpass: 'masterpass',
77
- B4u: 'b4u'
83
+ B4u: 'b4u',
84
+ Invoice: 'invoice'
78
85
  } as const;
79
86
 
80
87
  export type CreatePspPaymentMethodRequestDtoTypeEnum = typeof CreatePspPaymentMethodRequestDtoTypeEnum[keyof typeof CreatePspPaymentMethodRequestDtoTypeEnum];
package/models/index.ts CHANGED
@@ -8,6 +8,7 @@ export * from './billing-profile-limited-response-dto';
8
8
  export * from './card-details-dto';
9
9
  export * from './complete-adyen-payment-setup-request-dto';
10
10
  export * from './complete-braintree-payment-setup-request-dto';
11
+ export * from './complete-eis-payment-setup-request-dto';
11
12
  export * from './complete-payment-setup-request-dto';
12
13
  export * from './complete-payment-setup-response-class';
13
14
  export * from './complete-stripe-payment-setup-request-dto';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk-node",
3
- "version": "1.21.1-beta.23",
3
+ "version": "1.21.1-beta.25",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [