@emilgroup/payment-sdk-node 1.3.0 → 1.5.0

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 (60) hide show
  1. package/.openapi-generator/FILES +9 -0
  2. package/README.md +2 -2
  3. package/api/bank-accounts-api.ts +174 -0
  4. package/api/default-api.ts +124 -0
  5. package/api/payment-methods-api.ts +16 -16
  6. package/api/payment-reminders-api.ts +16 -16
  7. package/api/payments-api.ts +16 -16
  8. package/api.ts +2 -0
  9. package/dist/api/bank-accounts-api.d.ts +101 -0
  10. package/dist/api/bank-accounts-api.js +123 -0
  11. package/dist/api/default-api.d.ts +66 -0
  12. package/dist/api/default-api.js +200 -0
  13. package/dist/api/payment-methods-api.d.ts +16 -16
  14. package/dist/api/payment-methods-api.js +12 -12
  15. package/dist/api/payment-reminders-api.d.ts +16 -16
  16. package/dist/api/payment-reminders-api.js +12 -12
  17. package/dist/api/payments-api.d.ts +16 -16
  18. package/dist/api/payments-api.js +12 -12
  19. package/dist/api.d.ts +1 -0
  20. package/dist/api.js +1 -0
  21. package/dist/models/bank-account-class.d.ts +54 -0
  22. package/dist/models/bank-account-class.js +15 -0
  23. package/dist/models/billing-profile-dto.d.ts +38 -0
  24. package/dist/models/billing-profile-dto.js +15 -0
  25. package/dist/models/billing-profile-limited-response-dto.d.ts +54 -0
  26. package/dist/models/billing-profile-limited-response-dto.js +15 -0
  27. package/dist/models/create-payment-request-dto.d.ts +7 -1
  28. package/dist/models/create-psp-payment-method-request-dto.d.ts +8 -0
  29. package/dist/models/create-psp-payment-method-request-dto.js +2 -1
  30. package/dist/models/index.d.ts +8 -0
  31. package/dist/models/index.js +8 -0
  32. package/dist/models/initiate-payment-setup-request-dto.d.ts +6 -0
  33. package/dist/models/inline-response200.d.ts +54 -0
  34. package/dist/models/inline-response200.js +15 -0
  35. package/dist/models/inline-response503.d.ts +54 -0
  36. package/dist/models/inline-response503.js +15 -0
  37. package/dist/models/list-bank-accounts-response-class.d.ts +31 -0
  38. package/dist/models/list-bank-accounts-response-class.js +15 -0
  39. package/dist/models/payment-class.d.ts +15 -2
  40. package/dist/models/symphony-profile-limited-response-dto.d.ts +42 -0
  41. package/dist/models/symphony-profile-limited-response-dto.js +15 -0
  42. package/dist/models/transaction-class.d.ts +54 -0
  43. package/dist/models/transaction-class.js +15 -0
  44. package/dist/models/validate-pspconfig-request-dto.d.ts +1 -0
  45. package/dist/models/validate-pspconfig-request-dto.js +2 -1
  46. package/models/bank-account-class.ts +60 -0
  47. package/models/billing-profile-dto.ts +44 -0
  48. package/models/billing-profile-limited-response-dto.ts +60 -0
  49. package/models/create-payment-request-dto.ts +7 -1
  50. package/models/create-psp-payment-method-request-dto.ts +9 -1
  51. package/models/index.ts +8 -0
  52. package/models/initiate-payment-setup-request-dto.ts +6 -0
  53. package/models/inline-response200.ts +48 -0
  54. package/models/inline-response503.ts +48 -0
  55. package/models/list-bank-accounts-response-class.ts +37 -0
  56. package/models/payment-class.ts +15 -2
  57. package/models/symphony-profile-limited-response-dto.ts +48 -0
  58. package/models/transaction-class.ts +60 -0
  59. package/models/validate-pspconfig-request-dto.ts +2 -1
  60. package/package.json +1 -1
@@ -211,12 +211,12 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
211
211
  * Returns a list of payments you’ve previously created. The payments are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
212
212
  * @summary List payments
213
213
  * @param {string} [authorization] Bearer Token
214
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
215
- * @param {any} [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.
214
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
215
+ * @param {any} [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.
216
216
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
217
217
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
218
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
219
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
218
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
219
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
220
220
  * @param {*} [options] Override http request option.
221
221
  * @throws {RequiredError}
222
222
  */
@@ -334,12 +334,12 @@ var PaymentsApiFp = function (configuration) {
334
334
  * Returns a list of payments you’ve previously created. The payments are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
335
335
  * @summary List payments
336
336
  * @param {string} [authorization] Bearer Token
337
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
338
- * @param {any} [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.
337
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
338
+ * @param {any} [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.
339
339
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
340
340
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
341
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
342
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
341
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
342
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
343
343
  * @param {*} [options] Override http request option.
344
344
  * @throws {RequiredError}
345
345
  */
@@ -395,12 +395,12 @@ var PaymentsApiFactory = function (configuration, basePath, axios) {
395
395
  * Returns a list of payments you’ve previously created. The payments are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
396
396
  * @summary List payments
397
397
  * @param {string} [authorization] Bearer Token
398
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
399
- * @param {any} [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.
398
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
399
+ * @param {any} [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.
400
400
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
401
401
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
402
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
403
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
402
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
403
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
404
404
  * @param {*} [options] Override http request option.
405
405
  * @throws {RequiredError}
406
406
  */
package/dist/api.d.ts CHANGED
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  export * from './api/bank-accounts-api';
13
+ export * from './api/default-api';
13
14
  export * from './api/payment-methods-api';
14
15
  export * from './api/payment-reminders-api';
15
16
  export * from './api/payment-service-providers-api';
package/dist/api.js CHANGED
@@ -28,6 +28,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
28
28
  };
29
29
  Object.defineProperty(exports, "__esModule", { value: true });
30
30
  __exportStar(require("./api/bank-accounts-api"), exports);
31
+ __exportStar(require("./api/default-api"), exports);
31
32
  __exportStar(require("./api/payment-methods-api"), exports);
32
33
  __exportStar(require("./api/payment-reminders-api"), exports);
33
34
  __exportStar(require("./api/payment-service-providers-api"), exports);
@@ -0,0 +1,54 @@
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 BankAccountClass
16
+ */
17
+ export interface BankAccountClass {
18
+ /**
19
+ * Unique identifier for bank account.
20
+ * @type {number}
21
+ * @memberof BankAccountClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof BankAccountClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * User account code associated to bank account.
32
+ * @type {string}
33
+ * @memberof BankAccountClass
34
+ */
35
+ 'accountCode': string;
36
+ /**
37
+ * International bank account number with witch the bank account is created
38
+ * @type {string}
39
+ * @memberof BankAccountClass
40
+ */
41
+ 'iban': string;
42
+ /**
43
+ * Time at which the object was created.
44
+ * @type {string}
45
+ * @memberof BankAccountClass
46
+ */
47
+ 'createdAt': string;
48
+ /**
49
+ * Time at which the object was updated.
50
+ * @type {string}
51
+ * @memberof BankAccountClass
52
+ */
53
+ 'updatedAt': string;
54
+ }
@@ -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 });
@@ -0,0 +1,38 @@
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
+ import { BillingProfileLimitedResponseDto } from './billing-profile-limited-response-dto';
13
+ import { SymphonyProfileLimitedResponseDto } from './symphony-profile-limited-response-dto';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface BillingProfileDto
18
+ */
19
+ export interface BillingProfileDto {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof BillingProfileDto
24
+ */
25
+ 'billProfileId': string;
26
+ /**
27
+ *
28
+ * @type {SymphonyProfileLimitedResponseDto}
29
+ * @memberof BillingProfileDto
30
+ */
31
+ 'symphonyProfileLimitedResponse': SymphonyProfileLimitedResponseDto;
32
+ /**
33
+ *
34
+ * @type {BillingProfileLimitedResponseDto}
35
+ * @memberof BillingProfileDto
36
+ */
37
+ 'billingProfileLimitedResponse': BillingProfileLimitedResponseDto;
38
+ }
@@ -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 });
@@ -0,0 +1,54 @@
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 BillingProfileLimitedResponseDto
16
+ */
17
+ export interface BillingProfileLimitedResponseDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof BillingProfileLimitedResponseDto
22
+ */
23
+ 'sourceCode': string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof BillingProfileLimitedResponseDto
28
+ */
29
+ 'status': string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof BillingProfileLimitedResponseDto
34
+ */
35
+ 'brand': string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof BillingProfileLimitedResponseDto
40
+ */
41
+ 'invoiceLanguage'?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof BillingProfileLimitedResponseDto
46
+ */
47
+ 'customerSegment': string;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof BillingProfileLimitedResponseDto
52
+ */
53
+ 'activeSubsCnt': number;
54
+ }
@@ -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 });
@@ -34,11 +34,17 @@ export interface CreatePaymentRequestDto {
34
34
  */
35
35
  'currency'?: string;
36
36
  /**
37
- * Invoices referenced in this payment. Usually, one payment has one invoice id but it is possible to pay multiple invoices at once with a single payment.
37
+ * Invoices referenced in this payment. Usually, one payment has one invoice id but it is possible to pay multiple invoices at once with a single payment.
38
38
  * @type {Array<string>}
39
39
  * @memberof CreatePaymentRequestDto
40
40
  */
41
41
  'invoiceIds': Array<string>;
42
+ /**
43
+ * Optional field contain extra information.
44
+ * @type {object}
45
+ * @memberof CreatePaymentRequestDto
46
+ */
47
+ 'metadata': object;
42
48
  /**
43
49
  * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
44
50
  * @type {string}
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { BillingProfileDto } from './billing-profile-dto';
12
13
  import { SepaDirectDto } from './sepa-direct-dto';
13
14
  /**
14
15
  *
@@ -34,6 +35,12 @@ export interface CreatePspPaymentMethodRequestDto {
34
35
  * @memberof CreatePspPaymentMethodRequestDto
35
36
  */
36
37
  'sepaDebit'?: SepaDirectDto;
38
+ /**
39
+ *
40
+ * @type {BillingProfileDto}
41
+ * @memberof CreatePspPaymentMethodRequestDto
42
+ */
43
+ 'billingProfile'?: BillingProfileDto;
37
44
  }
38
45
  export declare const CreatePspPaymentMethodRequestDtoTypeEnum: {
39
46
  readonly Paypal: "paypal";
@@ -49,5 +56,6 @@ export declare const CreatePspPaymentMethodRequestDtoTypeEnum: {
49
56
  readonly SamsungPay: "samsung_pay";
50
57
  readonly Venmo: "venmo";
51
58
  readonly Masterpass: "masterpass";
59
+ readonly B4u: "b4u";
52
60
  };
53
61
  export type CreatePspPaymentMethodRequestDtoTypeEnum = typeof CreatePspPaymentMethodRequestDtoTypeEnum[keyof typeof CreatePspPaymentMethodRequestDtoTypeEnum];
@@ -27,5 +27,6 @@ exports.CreatePspPaymentMethodRequestDtoTypeEnum = {
27
27
  AndroidPay: 'android_pay',
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
- Masterpass: 'masterpass'
30
+ Masterpass: 'masterpass',
31
+ B4u: 'b4u'
31
32
  };
@@ -1,3 +1,6 @@
1
+ export * from './bank-account-class';
2
+ export * from './billing-profile-dto';
3
+ export * from './billing-profile-limited-response-dto';
1
4
  export * from './complete-braintree-payment-setup-request-dto';
2
5
  export * from './complete-payment-setup-request-dto';
3
6
  export * from './complete-payment-setup-response-class';
@@ -18,6 +21,9 @@ export * from './initiate-payment-setup-request-dto';
18
21
  export * from './initiate-payment-setup-response-class';
19
22
  export * from './initiate-stripe-payment-setup-request-dto';
20
23
  export * from './initiate-stripe-payment-setup-response-class';
24
+ export * from './inline-response200';
25
+ export * from './inline-response503';
26
+ export * from './list-bank-accounts-response-class';
21
27
  export * from './list-payment-methods-response-class';
22
28
  export * from './list-payment-reminders-response-class';
23
29
  export * from './list-payments-response-class';
@@ -25,5 +31,7 @@ export * from './payment-class';
25
31
  export * from './payment-method-class';
26
32
  export * from './payment-reminder-class';
27
33
  export * from './sepa-direct-dto';
34
+ export * from './symphony-profile-limited-response-dto';
35
+ export * from './transaction-class';
28
36
  export * from './validate-pspconfig-request-dto';
29
37
  export * from './validate-pspconfig-response-class';
@@ -14,6 +14,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./bank-account-class"), exports);
18
+ __exportStar(require("./billing-profile-dto"), exports);
19
+ __exportStar(require("./billing-profile-limited-response-dto"), exports);
17
20
  __exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
18
21
  __exportStar(require("./complete-payment-setup-request-dto"), exports);
19
22
  __exportStar(require("./complete-payment-setup-response-class"), exports);
@@ -34,6 +37,9 @@ __exportStar(require("./initiate-payment-setup-request-dto"), exports);
34
37
  __exportStar(require("./initiate-payment-setup-response-class"), exports);
35
38
  __exportStar(require("./initiate-stripe-payment-setup-request-dto"), exports);
36
39
  __exportStar(require("./initiate-stripe-payment-setup-response-class"), exports);
40
+ __exportStar(require("./inline-response200"), exports);
41
+ __exportStar(require("./inline-response503"), exports);
42
+ __exportStar(require("./list-bank-accounts-response-class"), exports);
37
43
  __exportStar(require("./list-payment-methods-response-class"), exports);
38
44
  __exportStar(require("./list-payment-reminders-response-class"), exports);
39
45
  __exportStar(require("./list-payments-response-class"), exports);
@@ -41,5 +47,7 @@ __exportStar(require("./payment-class"), exports);
41
47
  __exportStar(require("./payment-method-class"), exports);
42
48
  __exportStar(require("./payment-reminder-class"), exports);
43
49
  __exportStar(require("./sepa-direct-dto"), exports);
50
+ __exportStar(require("./symphony-profile-limited-response-dto"), exports);
51
+ __exportStar(require("./transaction-class"), exports);
44
52
  __exportStar(require("./validate-pspconfig-request-dto"), exports);
45
53
  __exportStar(require("./validate-pspconfig-response-class"), exports);
@@ -29,4 +29,10 @@ export interface InitiatePaymentSetupRequestDto {
29
29
  * @memberof InitiatePaymentSetupRequestDto
30
30
  */
31
31
  'braintree'?: InitiateBraintreePaymentSetupRequestDto;
32
+ /**
33
+ *
34
+ * @type {object}
35
+ * @memberof InitiatePaymentSetupRequestDto
36
+ */
37
+ 'b4u'?: object;
32
38
  }
@@ -0,0 +1,54 @@
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 InlineResponse200
16
+ */
17
+ export interface InlineResponse200 {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof InlineResponse200
22
+ */
23
+ 'status'?: string;
24
+ /**
25
+ *
26
+ * @type {{ [key: string]: { [key: string]: string; }; }}
27
+ * @memberof InlineResponse200
28
+ */
29
+ 'info'?: {
30
+ [key: string]: {
31
+ [key: string]: string;
32
+ };
33
+ } | null;
34
+ /**
35
+ *
36
+ * @type {{ [key: string]: { [key: string]: string; }; }}
37
+ * @memberof InlineResponse200
38
+ */
39
+ 'error'?: {
40
+ [key: string]: {
41
+ [key: string]: string;
42
+ };
43
+ } | null;
44
+ /**
45
+ *
46
+ * @type {{ [key: string]: { [key: string]: string; }; }}
47
+ * @memberof InlineResponse200
48
+ */
49
+ 'details'?: {
50
+ [key: string]: {
51
+ [key: string]: string;
52
+ };
53
+ };
54
+ }
@@ -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 });
@@ -0,0 +1,54 @@
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 InlineResponse503
16
+ */
17
+ export interface InlineResponse503 {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof InlineResponse503
22
+ */
23
+ 'status'?: string;
24
+ /**
25
+ *
26
+ * @type {{ [key: string]: { [key: string]: string; }; }}
27
+ * @memberof InlineResponse503
28
+ */
29
+ 'info'?: {
30
+ [key: string]: {
31
+ [key: string]: string;
32
+ };
33
+ } | null;
34
+ /**
35
+ *
36
+ * @type {{ [key: string]: { [key: string]: string; }; }}
37
+ * @memberof InlineResponse503
38
+ */
39
+ 'error'?: {
40
+ [key: string]: {
41
+ [key: string]: string;
42
+ };
43
+ } | null;
44
+ /**
45
+ *
46
+ * @type {{ [key: string]: { [key: string]: string; }; }}
47
+ * @memberof InlineResponse503
48
+ */
49
+ 'details'?: {
50
+ [key: string]: {
51
+ [key: string]: string;
52
+ };
53
+ };
54
+ }
@@ -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 });
@@ -0,0 +1,31 @@
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
+ import { BankAccountClass } from './bank-account-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListBankAccountsResponseClass
17
+ */
18
+ export interface ListBankAccountsResponseClass {
19
+ /**
20
+ * Bank accounts
21
+ * @type {Array<BankAccountClass>}
22
+ * @memberof ListBankAccountsResponseClass
23
+ */
24
+ 'items': Array<BankAccountClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListBankAccountsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ }
@@ -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 });
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { TransactionClass } from './transaction-class';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -65,8 +66,20 @@ export interface PaymentClass {
65
66
  'updatedAt': string;
66
67
  /**
67
68
  * Transactions referenced by this payment.
68
- * @type {Array<string>}
69
+ * @type {Array<TransactionClass>}
70
+ * @memberof PaymentClass
71
+ */
72
+ 'transactions': Array<TransactionClass>;
73
+ /**
74
+ * Optional field contain extra information.
75
+ * @type {object}
76
+ * @memberof PaymentClass
77
+ */
78
+ 'metadata': object;
79
+ /**
80
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
81
+ * @type {string}
69
82
  * @memberof PaymentClass
70
83
  */
71
- 'transactions': Array<string>;
84
+ 'productSlug'?: string;
72
85
  }