@emilgroup/payment-sdk-node 1.23.0 → 1.23.1-beta.11

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 (103) hide show
  1. package/.openapi-generator/FILES +22 -0
  2. package/README.md +2 -2
  3. package/api/billing-addresses-api.ts +681 -0
  4. package/api/payment-requests-api.ts +697 -0
  5. package/api/payout-methods-api.ts +676 -0
  6. package/api/tenant-bank-account-api.ts +12 -12
  7. package/api.ts +6 -0
  8. package/dist/api/billing-addresses-api.d.ts +384 -0
  9. package/dist/api/billing-addresses-api.js +640 -0
  10. package/dist/api/payment-requests-api.d.ts +393 -0
  11. package/dist/api/payment-requests-api.js +648 -0
  12. package/dist/api/payout-methods-api.d.ts +382 -0
  13. package/dist/api/payout-methods-api.js +639 -0
  14. package/dist/api/tenant-bank-account-api.d.ts +12 -12
  15. package/dist/api/tenant-bank-account-api.js +9 -9
  16. package/dist/api.d.ts +3 -0
  17. package/dist/api.js +3 -0
  18. package/dist/models/bank-order-class.d.ts +3 -3
  19. package/dist/models/bank-order-entity.d.ts +3 -2
  20. package/dist/models/bank-order-entity.js +2 -1
  21. package/dist/models/billing-address-class.d.ts +108 -0
  22. package/dist/models/billing-address-class.js +15 -0
  23. package/dist/models/create-bank-order-request-dto.d.ts +4 -3
  24. package/dist/models/create-bank-order-request-dto.js +2 -1
  25. package/dist/models/create-billing-address-request-dto.d.ts +66 -0
  26. package/dist/models/create-billing-address-request-dto.js +15 -0
  27. package/dist/models/create-billing-address-response-class.d.ts +25 -0
  28. package/dist/models/create-billing-address-response-class.js +15 -0
  29. package/dist/models/create-payment-request-request-dto.d.ts +72 -0
  30. package/dist/models/create-payment-request-request-dto.js +26 -0
  31. package/dist/models/create-payment-request-response-class.d.ts +25 -0
  32. package/dist/models/create-payment-request-response-class.js +15 -0
  33. package/dist/models/create-payout-method-request-dto.d.ts +60 -0
  34. package/dist/models/create-payout-method-request-dto.js +15 -0
  35. package/dist/models/create-payout-method-response-class.d.ts +25 -0
  36. package/dist/models/create-payout-method-response-class.js +15 -0
  37. package/dist/models/create-tenant-bank-account-request-dto.d.ts +17 -0
  38. package/dist/models/create-tenant-bank-account-request-dto.js +11 -1
  39. package/dist/models/get-billing-address-response-class.d.ts +25 -0
  40. package/dist/models/get-billing-address-response-class.js +15 -0
  41. package/dist/models/get-payment-request-response-class.d.ts +25 -0
  42. package/dist/models/get-payment-request-response-class.js +15 -0
  43. package/dist/models/get-payout-method-response-class.d.ts +25 -0
  44. package/dist/models/get-payout-method-response-class.js +15 -0
  45. package/dist/models/index.d.ts +19 -0
  46. package/dist/models/index.js +19 -0
  47. package/dist/models/list-billing-addresses-response-class.d.ts +43 -0
  48. package/dist/models/list-billing-addresses-response-class.js +15 -0
  49. package/dist/models/list-payment-requests-response-class.d.ts +31 -0
  50. package/dist/models/list-payment-requests-response-class.js +15 -0
  51. package/dist/models/list-payout-methods-response-class.d.ts +43 -0
  52. package/dist/models/list-payout-methods-response-class.js +15 -0
  53. package/dist/models/payment-request-class.d.ts +111 -0
  54. package/dist/models/payment-request-class.js +34 -0
  55. package/dist/models/payout-method-class.d.ts +115 -0
  56. package/dist/models/payout-method-class.js +15 -0
  57. package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +17 -0
  58. package/dist/models/tenant-bank-account-class-without-expand-properties.js +11 -1
  59. package/dist/models/tenant-bank-account-class.d.ts +17 -0
  60. package/dist/models/tenant-bank-account-class.js +11 -1
  61. package/dist/models/tenant-bank-account-entity.d.ts +17 -0
  62. package/dist/models/tenant-bank-account-entity.js +11 -1
  63. package/dist/models/update-bank-order-request-dto.d.ts +3 -3
  64. package/dist/models/update-billing-address-request-dto.d.ts +66 -0
  65. package/dist/models/update-billing-address-request-dto.js +15 -0
  66. package/dist/models/update-billing-address-response-class.d.ts +25 -0
  67. package/dist/models/update-billing-address-response-class.js +15 -0
  68. package/dist/models/update-payment-request-request-dto.d.ts +39 -0
  69. package/dist/models/update-payment-request-request-dto.js +24 -0
  70. package/dist/models/update-payment-request-response-class.d.ts +25 -0
  71. package/dist/models/update-payment-request-response-class.js +15 -0
  72. package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +17 -0
  73. package/dist/models/update-tenant-bank-account-rest-request-dto.js +11 -1
  74. package/models/bank-order-class.ts +3 -3
  75. package/models/bank-order-entity.ts +4 -3
  76. package/models/billing-address-class.ts +114 -0
  77. package/models/create-bank-order-request-dto.ts +5 -4
  78. package/models/create-billing-address-request-dto.ts +72 -0
  79. package/models/create-billing-address-response-class.ts +31 -0
  80. package/models/create-payment-request-request-dto.ts +82 -0
  81. package/models/create-payment-request-response-class.ts +31 -0
  82. package/models/create-payout-method-request-dto.ts +66 -0
  83. package/models/create-payout-method-response-class.ts +31 -0
  84. package/models/create-tenant-bank-account-request-dto.ts +18 -0
  85. package/models/get-billing-address-response-class.ts +31 -0
  86. package/models/get-payment-request-response-class.ts +31 -0
  87. package/models/get-payout-method-response-class.ts +31 -0
  88. package/models/index.ts +19 -0
  89. package/models/list-billing-addresses-response-class.ts +49 -0
  90. package/models/list-payment-requests-response-class.ts +37 -0
  91. package/models/list-payout-methods-response-class.ts +49 -0
  92. package/models/payment-request-class.ts +122 -0
  93. package/models/payout-method-class.ts +121 -0
  94. package/models/tenant-bank-account-class-without-expand-properties.ts +18 -0
  95. package/models/tenant-bank-account-class.ts +18 -0
  96. package/models/tenant-bank-account-entity.ts +18 -0
  97. package/models/update-bank-order-request-dto.ts +3 -3
  98. package/models/update-billing-address-request-dto.ts +72 -0
  99. package/models/update-billing-address-response-class.ts +31 -0
  100. package/models/update-payment-request-request-dto.ts +48 -0
  101. package/models/update-payment-request-response-class.ts +31 -0
  102. package/models/update-tenant-bank-account-rest-request-dto.ts +18 -0
  103. package/package.json +2 -2
@@ -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,60 @@
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 CreatePayoutMethodRequestDto
16
+ */
17
+ export interface CreatePayoutMethodRequestDto {
18
+ /**
19
+ * Unique identifier of the partner that this object belongs to.
20
+ * @type {string}
21
+ * @memberof CreatePayoutMethodRequestDto
22
+ */
23
+ 'partnerCode': string;
24
+ /**
25
+ * First name
26
+ * @type {string}
27
+ * @memberof CreatePayoutMethodRequestDto
28
+ */
29
+ 'firstName': string;
30
+ /**
31
+ * Last name
32
+ * @type {string}
33
+ * @memberof CreatePayoutMethodRequestDto
34
+ */
35
+ 'lastName': string;
36
+ /**
37
+ * IBAN
38
+ * @type {string}
39
+ * @memberof CreatePayoutMethodRequestDto
40
+ */
41
+ 'iban': string;
42
+ /**
43
+ * BIC
44
+ * @type {string}
45
+ * @memberof CreatePayoutMethodRequestDto
46
+ */
47
+ 'bic': string;
48
+ /**
49
+ * Bank name
50
+ * @type {string}
51
+ * @memberof CreatePayoutMethodRequestDto
52
+ */
53
+ 'bankName': string;
54
+ /**
55
+ * Billing address code
56
+ * @type {string}
57
+ * @memberof CreatePayoutMethodRequestDto
58
+ */
59
+ 'billingAddressCode': string;
60
+ }
@@ -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,25 @@
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 { PayoutMethodClass } from './payout-method-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreatePayoutMethodResponseClass
17
+ */
18
+ export interface CreatePayoutMethodResponseClass {
19
+ /**
20
+ * The created payout method
21
+ * @type {PayoutMethodClass}
22
+ * @memberof CreatePayoutMethodResponseClass
23
+ */
24
+ 'payoutMethod': PayoutMethodClass;
25
+ }
@@ -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 });
@@ -75,6 +75,12 @@ export interface CreateTenantBankAccountRequestDto {
75
75
  * @memberof CreateTenantBankAccountRequestDto
76
76
  */
77
77
  'sepaPainVersion': CreateTenantBankAccountRequestDtoSepaPainVersionEnum;
78
+ /**
79
+ * Payout Pain version
80
+ * @type {string}
81
+ * @memberof CreateTenantBankAccountRequestDto
82
+ */
83
+ 'payoutPainVersion': CreateTenantBankAccountRequestDtoPayoutPainVersionEnum;
78
84
  }
79
85
  export declare const CreateTenantBankAccountRequestDtoSepaPainVersionEnum: {
80
86
  readonly _00302: "pain.008.003.02";
@@ -86,3 +92,14 @@ export declare const CreateTenantBankAccountRequestDtoSepaPainVersionEnum: {
86
92
  readonly _00111: "pain.008.001.11";
87
93
  };
88
94
  export type CreateTenantBankAccountRequestDtoSepaPainVersionEnum = typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum[keyof typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum];
95
+ export declare const CreateTenantBankAccountRequestDtoPayoutPainVersionEnum: {
96
+ readonly _00302: "pain.001.003.02";
97
+ readonly _00108: "pain.001.001.08";
98
+ readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
99
+ readonly _00802: "pain.001.008.02";
100
+ readonly _00109: "pain.001.001.09";
101
+ readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
102
+ readonly _00110: "pain.001.001.10";
103
+ readonly _00111: "pain.001.001.11";
104
+ };
105
+ export type CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = typeof CreateTenantBankAccountRequestDtoPayoutPainVersionEnum[keyof typeof CreateTenantBankAccountRequestDtoPayoutPainVersionEnum];
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = void 0;
16
+ exports.CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = void 0;
17
17
  exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = {
18
18
  _00302: 'pain.008.003.02',
19
19
  _00108: 'pain.008.001.08',
@@ -23,3 +23,13 @@ exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = {
23
23
  _00110: 'pain.008.001.10',
24
24
  _00111: 'pain.008.001.11'
25
25
  };
26
+ exports.CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = {
27
+ _00302: 'pain.001.003.02',
28
+ _00108: 'pain.001.001.08',
29
+ _00108Gbic5: 'pain.001.001.08_GBIC_5',
30
+ _00802: 'pain.001.008.02',
31
+ _00109: 'pain.001.001.09',
32
+ _00109Gbic5: 'pain.001.001.09_GBIC_5',
33
+ _00110: 'pain.001.001.10',
34
+ _00111: 'pain.001.001.11'
35
+ };
@@ -0,0 +1,25 @@
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 { BillingAddressClass } from './billing-address-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetBillingAddressResponseClass
17
+ */
18
+ export interface GetBillingAddressResponseClass {
19
+ /**
20
+ * The billing address
21
+ * @type {BillingAddressClass}
22
+ * @memberof GetBillingAddressResponseClass
23
+ */
24
+ 'billingAddress': BillingAddressClass;
25
+ }
@@ -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,25 @@
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 { PaymentRequestClass } from './payment-request-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetPaymentRequestResponseClass
17
+ */
18
+ export interface GetPaymentRequestResponseClass {
19
+ /**
20
+ * The payment request retrieved by its code.
21
+ * @type {PaymentRequestClass}
22
+ * @memberof GetPaymentRequestResponseClass
23
+ */
24
+ 'paymentRequest': PaymentRequestClass;
25
+ }
@@ -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,25 @@
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 { PayoutMethodClass } from './payout-method-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetPayoutMethodResponseClass
17
+ */
18
+ export interface GetPayoutMethodResponseClass {
19
+ /**
20
+ * The payout method
21
+ * @type {PayoutMethodClass}
22
+ * @memberof GetPayoutMethodResponseClass
23
+ */
24
+ 'payoutMethod': PayoutMethodClass;
25
+ }
@@ -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 @@ export * from './bank-transaction-entity';
11
11
  export * from './bank-transaction-invoice-class';
12
12
  export * from './bank-transaction-invoice-entity';
13
13
  export * from './bank-transfer-dto';
14
+ export * from './billing-address-class';
14
15
  export * from './billing-address-dto';
15
16
  export * from './billing-profile-dto';
16
17
  export * from './billing-profile-limited-response-dto';
@@ -25,6 +26,8 @@ export * from './create-bank-account-request-dto';
25
26
  export * from './create-bank-account-response-class';
26
27
  export * from './create-bank-order-request-dto';
27
28
  export * from './create-bank-order-response-class';
29
+ export * from './create-billing-address-request-dto';
30
+ export * from './create-billing-address-response-class';
28
31
  export * from './create-credit-allocation-request-dto';
29
32
  export * from './create-credit-allocation-response-class';
30
33
  export * from './create-payment-method-response-class';
@@ -33,7 +36,11 @@ export * from './create-payment-order-request-dto';
33
36
  export * from './create-payment-reminder-request-dto';
34
37
  export * from './create-payment-reminder-response-class';
35
38
  export * from './create-payment-request-dto';
39
+ export * from './create-payment-request-request-dto';
40
+ export * from './create-payment-request-response-class';
36
41
  export * from './create-payment-response-class';
42
+ export * from './create-payout-method-request-dto';
43
+ export * from './create-payout-method-response-class';
37
44
  export * from './create-policy-payment-method-request-dto';
38
45
  export * from './create-policy-payment-method-response-class';
39
46
  export * from './create-psp-payment-method-request-dto';
@@ -53,11 +60,14 @@ export * from './generate-invoice-match-suggestions-response-class';
53
60
  export * from './get-bank-account-response-class';
54
61
  export * from './get-bank-order-response-class';
55
62
  export * from './get-bank-transactions-response-class';
63
+ export * from './get-billing-address-response-class';
56
64
  export * from './get-credit-allocation-response-class';
57
65
  export * from './get-exceeding-credit-response-class';
58
66
  export * from './get-payment-method-response-class';
59
67
  export * from './get-payment-reminder-response-class';
68
+ export * from './get-payment-request-response-class';
60
69
  export * from './get-payment-response-class';
70
+ export * from './get-payout-method-response-class';
61
71
  export * from './get-refund-response-class';
62
72
  export * from './get-tenant-bank-account-response-class';
63
73
  export * from './import-bank-transactions-response-class';
@@ -80,11 +90,14 @@ export * from './link-bank-transactions-response-class';
80
90
  export * from './list-bank-accounts-response-class';
81
91
  export * from './list-bank-orders-response-class';
82
92
  export * from './list-bank-transactions-response-class';
93
+ export * from './list-billing-addresses-response-class';
83
94
  export * from './list-credit-allocations-response-class';
84
95
  export * from './list-exceeding-credits-response-class';
85
96
  export * from './list-payment-methods-response-class';
86
97
  export * from './list-payment-reminders-response-class';
98
+ export * from './list-payment-requests-response-class';
87
99
  export * from './list-payments-response-class';
100
+ export * from './list-payout-methods-response-class';
88
101
  export * from './list-policy-payment-methods-response-class';
89
102
  export * from './list-refunds-response-class';
90
103
  export * from './list-tenant-bank-account-response-class';
@@ -96,6 +109,8 @@ export * from './payment-class-without-expand-properties';
96
109
  export * from './payment-entity';
97
110
  export * from './payment-method-class';
98
111
  export * from './payment-reminder-class';
112
+ export * from './payment-request-class';
113
+ export * from './payout-method-class';
99
114
  export * from './policy-payment-method-class';
100
115
  export * from './primary-bank-account-response-class';
101
116
  export * from './refund-class';
@@ -117,6 +132,10 @@ export * from './update-bank-account-request-dto-rest';
117
132
  export * from './update-bank-account-response-class';
118
133
  export * from './update-bank-order-request-dto';
119
134
  export * from './update-bank-order-response-class';
135
+ export * from './update-billing-address-request-dto';
136
+ export * from './update-billing-address-response-class';
137
+ export * from './update-payment-request-request-dto';
138
+ export * from './update-payment-request-response-class';
120
139
  export * from './update-tenant-bank-account-response-class';
121
140
  export * from './update-tenant-bank-account-rest-request-dto';
122
141
  export * from './validate-pspconfig-request-dto';
@@ -27,6 +27,7 @@ __exportStar(require("./bank-transaction-entity"), exports);
27
27
  __exportStar(require("./bank-transaction-invoice-class"), exports);
28
28
  __exportStar(require("./bank-transaction-invoice-entity"), exports);
29
29
  __exportStar(require("./bank-transfer-dto"), exports);
30
+ __exportStar(require("./billing-address-class"), exports);
30
31
  __exportStar(require("./billing-address-dto"), exports);
31
32
  __exportStar(require("./billing-profile-dto"), exports);
32
33
  __exportStar(require("./billing-profile-limited-response-dto"), exports);
@@ -41,6 +42,8 @@ __exportStar(require("./create-bank-account-request-dto"), exports);
41
42
  __exportStar(require("./create-bank-account-response-class"), exports);
42
43
  __exportStar(require("./create-bank-order-request-dto"), exports);
43
44
  __exportStar(require("./create-bank-order-response-class"), exports);
45
+ __exportStar(require("./create-billing-address-request-dto"), exports);
46
+ __exportStar(require("./create-billing-address-response-class"), exports);
44
47
  __exportStar(require("./create-credit-allocation-request-dto"), exports);
45
48
  __exportStar(require("./create-credit-allocation-response-class"), exports);
46
49
  __exportStar(require("./create-payment-method-response-class"), exports);
@@ -49,7 +52,11 @@ __exportStar(require("./create-payment-order-request-dto"), exports);
49
52
  __exportStar(require("./create-payment-reminder-request-dto"), exports);
50
53
  __exportStar(require("./create-payment-reminder-response-class"), exports);
51
54
  __exportStar(require("./create-payment-request-dto"), exports);
55
+ __exportStar(require("./create-payment-request-request-dto"), exports);
56
+ __exportStar(require("./create-payment-request-response-class"), exports);
52
57
  __exportStar(require("./create-payment-response-class"), exports);
58
+ __exportStar(require("./create-payout-method-request-dto"), exports);
59
+ __exportStar(require("./create-payout-method-response-class"), exports);
53
60
  __exportStar(require("./create-policy-payment-method-request-dto"), exports);
54
61
  __exportStar(require("./create-policy-payment-method-response-class"), exports);
55
62
  __exportStar(require("./create-psp-payment-method-request-dto"), exports);
@@ -69,11 +76,14 @@ __exportStar(require("./generate-invoice-match-suggestions-response-class"), exp
69
76
  __exportStar(require("./get-bank-account-response-class"), exports);
70
77
  __exportStar(require("./get-bank-order-response-class"), exports);
71
78
  __exportStar(require("./get-bank-transactions-response-class"), exports);
79
+ __exportStar(require("./get-billing-address-response-class"), exports);
72
80
  __exportStar(require("./get-credit-allocation-response-class"), exports);
73
81
  __exportStar(require("./get-exceeding-credit-response-class"), exports);
74
82
  __exportStar(require("./get-payment-method-response-class"), exports);
75
83
  __exportStar(require("./get-payment-reminder-response-class"), exports);
84
+ __exportStar(require("./get-payment-request-response-class"), exports);
76
85
  __exportStar(require("./get-payment-response-class"), exports);
86
+ __exportStar(require("./get-payout-method-response-class"), exports);
77
87
  __exportStar(require("./get-refund-response-class"), exports);
78
88
  __exportStar(require("./get-tenant-bank-account-response-class"), exports);
79
89
  __exportStar(require("./import-bank-transactions-response-class"), exports);
@@ -96,11 +106,14 @@ __exportStar(require("./link-bank-transactions-response-class"), exports);
96
106
  __exportStar(require("./list-bank-accounts-response-class"), exports);
97
107
  __exportStar(require("./list-bank-orders-response-class"), exports);
98
108
  __exportStar(require("./list-bank-transactions-response-class"), exports);
109
+ __exportStar(require("./list-billing-addresses-response-class"), exports);
99
110
  __exportStar(require("./list-credit-allocations-response-class"), exports);
100
111
  __exportStar(require("./list-exceeding-credits-response-class"), exports);
101
112
  __exportStar(require("./list-payment-methods-response-class"), exports);
102
113
  __exportStar(require("./list-payment-reminders-response-class"), exports);
114
+ __exportStar(require("./list-payment-requests-response-class"), exports);
103
115
  __exportStar(require("./list-payments-response-class"), exports);
116
+ __exportStar(require("./list-payout-methods-response-class"), exports);
104
117
  __exportStar(require("./list-policy-payment-methods-response-class"), exports);
105
118
  __exportStar(require("./list-refunds-response-class"), exports);
106
119
  __exportStar(require("./list-tenant-bank-account-response-class"), exports);
@@ -112,6 +125,8 @@ __exportStar(require("./payment-class-without-expand-properties"), exports);
112
125
  __exportStar(require("./payment-entity"), exports);
113
126
  __exportStar(require("./payment-method-class"), exports);
114
127
  __exportStar(require("./payment-reminder-class"), exports);
128
+ __exportStar(require("./payment-request-class"), exports);
129
+ __exportStar(require("./payout-method-class"), exports);
115
130
  __exportStar(require("./policy-payment-method-class"), exports);
116
131
  __exportStar(require("./primary-bank-account-response-class"), exports);
117
132
  __exportStar(require("./refund-class"), exports);
@@ -133,6 +148,10 @@ __exportStar(require("./update-bank-account-request-dto-rest"), exports);
133
148
  __exportStar(require("./update-bank-account-response-class"), exports);
134
149
  __exportStar(require("./update-bank-order-request-dto"), exports);
135
150
  __exportStar(require("./update-bank-order-response-class"), exports);
151
+ __exportStar(require("./update-billing-address-request-dto"), exports);
152
+ __exportStar(require("./update-billing-address-response-class"), exports);
153
+ __exportStar(require("./update-payment-request-request-dto"), exports);
154
+ __exportStar(require("./update-payment-request-response-class"), exports);
136
155
  __exportStar(require("./update-tenant-bank-account-response-class"), exports);
137
156
  __exportStar(require("./update-tenant-bank-account-rest-request-dto"), exports);
138
157
  __exportStar(require("./validate-pspconfig-request-dto"), exports);
@@ -0,0 +1,43 @@
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 { BillingAddressClass } from './billing-address-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListBillingAddressesResponseClass
17
+ */
18
+ export interface ListBillingAddressesResponseClass {
19
+ /**
20
+ * The billing addresses
21
+ * @type {Array<BillingAddressClass>}
22
+ * @memberof ListBillingAddressesResponseClass
23
+ */
24
+ 'items': Array<BillingAddressClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListBillingAddressesResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListBillingAddressesResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListBillingAddressesResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -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 { PaymentRequestClass } from './payment-request-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListPaymentRequestsResponseClass
17
+ */
18
+ export interface ListPaymentRequestsResponseClass {
19
+ /**
20
+ * The list of payment requests.
21
+ * @type {Array<PaymentRequestClass>}
22
+ * @memberof ListPaymentRequestsResponseClass
23
+ */
24
+ 'items': Array<PaymentRequestClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListPaymentRequestsResponseClass
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 });
@@ -0,0 +1,43 @@
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 { PayoutMethodClass } from './payout-method-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListPayoutMethodsResponseClass
17
+ */
18
+ export interface ListPayoutMethodsResponseClass {
19
+ /**
20
+ * The payout methods
21
+ * @type {Array<PayoutMethodClass>}
22
+ * @memberof ListPayoutMethodsResponseClass
23
+ */
24
+ 'items': Array<PayoutMethodClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListPayoutMethodsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPayoutMethodsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListPayoutMethodsResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -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 });