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

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 (180) hide show
  1. package/.openapi-generator/FILES +34 -0
  2. package/README.md +2 -2
  3. package/api/bank-accounts-api.ts +16 -16
  4. package/api/bank-orders-api.ts +16 -16
  5. package/api/bank-transaction-api.ts +12 -12
  6. package/api/billing-addresses-api.ts +681 -0
  7. package/api/credit-allocation-api.ts +12 -12
  8. package/api/exceeding-credits-api.ts +12 -12
  9. package/api/ibanvalidator-api.ts +169 -0
  10. package/api/payment-methods-api.ts +12 -12
  11. package/api/payment-receipts-api.ts +680 -0
  12. package/api/payment-reminders-api.ts +16 -16
  13. package/api/payment-requests-api.ts +697 -0
  14. package/api/payments-api.ts +12 -12
  15. package/api/payout-methods-api.ts +794 -0
  16. package/api/refunds-api.ts +12 -12
  17. package/api/tenant-bank-account-api.ts +16 -16
  18. package/api/webhooks-api.ts +125 -14
  19. package/api.ts +10 -0
  20. package/base.ts +1 -0
  21. package/dist/api/bank-accounts-api.d.ts +16 -16
  22. package/dist/api/bank-accounts-api.js +13 -13
  23. package/dist/api/bank-orders-api.d.ts +16 -16
  24. package/dist/api/bank-orders-api.js +14 -14
  25. package/dist/api/bank-transaction-api.d.ts +12 -12
  26. package/dist/api/bank-transaction-api.js +10 -10
  27. package/dist/api/billing-addresses-api.d.ts +384 -0
  28. package/dist/api/billing-addresses-api.js +640 -0
  29. package/dist/api/credit-allocation-api.d.ts +12 -12
  30. package/dist/api/credit-allocation-api.js +10 -10
  31. package/dist/api/exceeding-credits-api.d.ts +12 -12
  32. package/dist/api/exceeding-credits-api.js +10 -10
  33. package/dist/api/ibanvalidator-api.d.ts +97 -0
  34. package/dist/api/ibanvalidator-api.js +228 -0
  35. package/dist/api/payment-methods-api.d.ts +12 -12
  36. package/dist/api/payment-methods-api.js +10 -10
  37. package/dist/api/payment-receipts-api.d.ts +383 -0
  38. package/dist/api/payment-receipts-api.js +641 -0
  39. package/dist/api/payment-reminders-api.d.ts +16 -16
  40. package/dist/api/payment-reminders-api.js +13 -13
  41. package/dist/api/payment-requests-api.d.ts +393 -0
  42. package/dist/api/payment-requests-api.js +648 -0
  43. package/dist/api/payments-api.d.ts +12 -12
  44. package/dist/api/payments-api.js +10 -10
  45. package/dist/api/payout-methods-api.d.ts +447 -0
  46. package/dist/api/payout-methods-api.js +738 -0
  47. package/dist/api/refunds-api.d.ts +12 -12
  48. package/dist/api/refunds-api.js +10 -10
  49. package/dist/api/tenant-bank-account-api.d.ts +16 -16
  50. package/dist/api/tenant-bank-account-api.js +13 -13
  51. package/dist/api/webhooks-api.d.ts +73 -9
  52. package/dist/api/webhooks-api.js +100 -11
  53. package/dist/api.d.ts +5 -0
  54. package/dist/api.js +5 -0
  55. package/dist/base.d.ts +2 -1
  56. package/dist/base.js +1 -0
  57. package/dist/models/bank-account-class-without-expand-properties.d.ts +6 -0
  58. package/dist/models/bank-account-class.d.ts +6 -0
  59. package/dist/models/bank-data-class.d.ts +36 -0
  60. package/dist/models/bank-data-class.js +15 -0
  61. package/dist/models/bank-order-class.d.ts +3 -3
  62. package/dist/models/bank-order-entity.d.ts +3 -2
  63. package/dist/models/bank-order-entity.js +2 -1
  64. package/dist/models/billing-address-class.d.ts +108 -0
  65. package/dist/models/billing-address-class.js +15 -0
  66. package/dist/models/create-bank-order-request-dto.d.ts +4 -3
  67. package/dist/models/create-bank-order-request-dto.js +2 -1
  68. package/dist/models/create-billing-address-request-dto.d.ts +66 -0
  69. package/dist/models/create-billing-address-request-dto.js +15 -0
  70. package/dist/models/create-billing-address-response-class.d.ts +25 -0
  71. package/dist/models/create-billing-address-response-class.js +15 -0
  72. package/dist/models/create-payment-receipt-request-dto.d.ts +65 -0
  73. package/dist/models/create-payment-receipt-request-dto.js +20 -0
  74. package/dist/models/create-payment-receipt-response-class.d.ts +25 -0
  75. package/dist/models/create-payment-receipt-response-class.js +15 -0
  76. package/dist/models/create-payment-request-request-dto.d.ts +109 -0
  77. package/dist/models/create-payment-request-request-dto.js +30 -0
  78. package/dist/models/create-payment-request-response-class.d.ts +25 -0
  79. package/dist/models/create-payment-request-response-class.js +15 -0
  80. package/dist/models/create-payout-method-by-bank-account-request-dto.d.ts +36 -0
  81. package/dist/models/create-payout-method-by-bank-account-request-dto.js +15 -0
  82. package/dist/models/create-payout-method-request-dto.d.ts +66 -0
  83. package/dist/models/create-payout-method-request-dto.js +15 -0
  84. package/dist/models/create-payout-method-response-class.d.ts +25 -0
  85. package/dist/models/create-payout-method-response-class.js +15 -0
  86. package/dist/models/create-tenant-bank-account-request-dto.d.ts +17 -0
  87. package/dist/models/create-tenant-bank-account-request-dto.js +11 -1
  88. package/dist/models/get-billing-address-response-class.d.ts +25 -0
  89. package/dist/models/get-billing-address-response-class.js +15 -0
  90. package/dist/models/get-payment-receipt-response-class.d.ts +25 -0
  91. package/dist/models/get-payment-receipt-response-class.js +15 -0
  92. package/dist/models/get-payment-request-response-class.d.ts +25 -0
  93. package/dist/models/get-payment-request-response-class.js +15 -0
  94. package/dist/models/get-payout-method-response-class.d.ts +25 -0
  95. package/dist/models/get-payout-method-response-class.js +15 -0
  96. package/dist/models/index.d.ts +29 -0
  97. package/dist/models/index.js +29 -0
  98. package/dist/models/list-billing-addresses-response-class.d.ts +43 -0
  99. package/dist/models/list-billing-addresses-response-class.js +15 -0
  100. package/dist/models/list-exceeding-credits-response-class.d.ts +18 -6
  101. package/dist/models/list-payment-receipts-response-class.d.ts +43 -0
  102. package/dist/models/list-payment-receipts-response-class.js +15 -0
  103. package/dist/models/list-payment-requests-response-class.d.ts +43 -0
  104. package/dist/models/list-payment-requests-response-class.js +15 -0
  105. package/dist/models/list-payout-methods-response-class.d.ts +43 -0
  106. package/dist/models/list-payout-methods-response-class.js +15 -0
  107. package/dist/models/list-refunds-response-class.d.ts +18 -6
  108. package/dist/models/payment-receipt-class.d.ts +101 -0
  109. package/dist/models/payment-receipt-class.js +20 -0
  110. package/dist/models/payment-request-class.d.ts +155 -0
  111. package/dist/models/payment-request-class.js +38 -0
  112. package/dist/models/payout-method-class.d.ts +121 -0
  113. package/dist/models/payout-method-class.js +15 -0
  114. package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +17 -0
  115. package/dist/models/tenant-bank-account-class-without-expand-properties.js +11 -1
  116. package/dist/models/tenant-bank-account-class.d.ts +17 -0
  117. package/dist/models/tenant-bank-account-class.js +11 -1
  118. package/dist/models/tenant-bank-account-entity.d.ts +17 -0
  119. package/dist/models/tenant-bank-account-entity.js +11 -1
  120. package/dist/models/update-bank-order-request-dto.d.ts +3 -3
  121. package/dist/models/update-billing-address-request-dto.d.ts +66 -0
  122. package/dist/models/update-billing-address-request-dto.js +15 -0
  123. package/dist/models/update-billing-address-response-class.d.ts +25 -0
  124. package/dist/models/update-billing-address-response-class.js +15 -0
  125. package/dist/models/update-payment-receipt-response-class.d.ts +25 -0
  126. package/dist/models/update-payment-receipt-response-class.js +15 -0
  127. package/dist/models/update-payment-request-request-dto.d.ts +39 -0
  128. package/dist/models/update-payment-request-request-dto.js +24 -0
  129. package/dist/models/update-payment-request-response-class.d.ts +25 -0
  130. package/dist/models/update-payment-request-response-class.js +15 -0
  131. package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +17 -0
  132. package/dist/models/update-tenant-bank-account-rest-request-dto.js +11 -1
  133. package/dist/models/validate-iban-request-dto.d.ts +24 -0
  134. package/dist/models/validate-iban-request-dto.js +15 -0
  135. package/dist/models/validate-iban-response-class.d.ts +31 -0
  136. package/dist/models/validate-iban-response-class.js +15 -0
  137. package/models/bank-account-class-without-expand-properties.ts +6 -0
  138. package/models/bank-account-class.ts +6 -0
  139. package/models/bank-data-class.ts +42 -0
  140. package/models/bank-order-class.ts +3 -3
  141. package/models/bank-order-entity.ts +4 -3
  142. package/models/billing-address-class.ts +114 -0
  143. package/models/create-bank-order-request-dto.ts +5 -4
  144. package/models/create-billing-address-request-dto.ts +72 -0
  145. package/models/create-billing-address-response-class.ts +31 -0
  146. package/models/create-payment-receipt-request-dto.ts +74 -0
  147. package/models/create-payment-receipt-response-class.ts +31 -0
  148. package/models/create-payment-request-request-dto.ts +118 -0
  149. package/models/create-payment-request-response-class.ts +31 -0
  150. package/models/create-payout-method-by-bank-account-request-dto.ts +42 -0
  151. package/models/create-payout-method-request-dto.ts +72 -0
  152. package/models/create-payout-method-response-class.ts +31 -0
  153. package/models/create-tenant-bank-account-request-dto.ts +18 -0
  154. package/models/get-billing-address-response-class.ts +31 -0
  155. package/models/get-payment-receipt-response-class.ts +31 -0
  156. package/models/get-payment-request-response-class.ts +31 -0
  157. package/models/get-payout-method-response-class.ts +31 -0
  158. package/models/index.ts +29 -0
  159. package/models/list-billing-addresses-response-class.ts +49 -0
  160. package/models/list-exceeding-credits-response-class.ts +18 -6
  161. package/models/list-payment-receipts-response-class.ts +49 -0
  162. package/models/list-payment-requests-response-class.ts +49 -0
  163. package/models/list-payout-methods-response-class.ts +49 -0
  164. package/models/list-refunds-response-class.ts +18 -6
  165. package/models/payment-receipt-class.ts +110 -0
  166. package/models/payment-request-class.ts +165 -0
  167. package/models/payout-method-class.ts +127 -0
  168. package/models/tenant-bank-account-class-without-expand-properties.ts +18 -0
  169. package/models/tenant-bank-account-class.ts +18 -0
  170. package/models/tenant-bank-account-entity.ts +18 -0
  171. package/models/update-bank-order-request-dto.ts +3 -3
  172. package/models/update-billing-address-request-dto.ts +72 -0
  173. package/models/update-billing-address-response-class.ts +31 -0
  174. package/models/update-payment-receipt-response-class.ts +31 -0
  175. package/models/update-payment-request-request-dto.ts +48 -0
  176. package/models/update-payment-request-response-class.ts +31 -0
  177. package/models/update-tenant-bank-account-rest-request-dto.ts +18 -0
  178. package/models/validate-iban-request-dto.ts +30 -0
  179. package/models/validate-iban-response-class.ts +37 -0
  180. package/package.json +3 -3
@@ -0,0 +1,20 @@
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 });
16
+ exports.PaymentReceiptClassDirectionEnum = void 0;
17
+ exports.PaymentReceiptClassDirectionEnum = {
18
+ Collect: 'collect',
19
+ Disburse: 'disburse'
20
+ };
@@ -0,0 +1,155 @@
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 { PaymentReceiptClass } from './payment-receipt-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PaymentRequestClass
17
+ */
18
+ export interface PaymentRequestClass {
19
+ /**
20
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
21
+ * @type {number}
22
+ * @memberof PaymentRequestClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * Unique identifier for the object.
27
+ * @type {string}
28
+ * @memberof PaymentRequestClass
29
+ */
30
+ 'code': string;
31
+ /**
32
+ * Payment request number.
33
+ * @type {string}
34
+ * @memberof PaymentRequestClass
35
+ */
36
+ 'paymentRequestNumber': string;
37
+ /**
38
+ * Payment amount in cents. 100 represents 1€.
39
+ * @type {number}
40
+ * @memberof PaymentRequestClass
41
+ */
42
+ 'amount': number;
43
+ /**
44
+ * Currency code for the payment request.
45
+ * @type {string}
46
+ * @memberof PaymentRequestClass
47
+ */
48
+ 'currency': string;
49
+ /**
50
+ * Direction of the payment request. Collect for incoming payments, Disburse for outgoing payments.
51
+ * @type {string}
52
+ * @memberof PaymentRequestClass
53
+ */
54
+ 'direction': PaymentRequestClassDirectionEnum;
55
+ /**
56
+ * Code of the financial entity (e.g., invoice code, claim adjustment code) that this payment request is associated with.
57
+ * @type {string}
58
+ * @memberof PaymentRequestClass
59
+ */
60
+ 'financialEntityCode': string;
61
+ /**
62
+ * Number of the financial entity (e.g., invoice number, claim adjustment number).
63
+ * @type {string}
64
+ * @memberof PaymentRequestClass
65
+ */
66
+ 'financialEntityNumber': string;
67
+ /**
68
+ * Type of the financial entity (e.g., invoice, claim_regulation).
69
+ * @type {string}
70
+ * @memberof PaymentRequestClass
71
+ */
72
+ 'financialEntityType': PaymentRequestClassFinancialEntityTypeEnum;
73
+ /**
74
+ * Code of the domain entity (e.g., policy code, claim code) that this payment request is associated with.
75
+ * @type {string}
76
+ * @memberof PaymentRequestClass
77
+ */
78
+ 'domainEntityCode': string;
79
+ /**
80
+ * Number of the domain entity (e.g., policy number, claim number).
81
+ * @type {string}
82
+ * @memberof PaymentRequestClass
83
+ */
84
+ 'domainEntityNumber': string;
85
+ /**
86
+ * Type of the domain entity (e.g., policy, claim).
87
+ * @type {string}
88
+ * @memberof PaymentRequestClass
89
+ */
90
+ 'domainEntityType': PaymentRequestClassDomainEntityTypeEnum;
91
+ /**
92
+ * Current status of the payment request. Valid statuses: open, approved, pending, paid, failed, withdrawn.
93
+ * @type {string}
94
+ * @memberof PaymentRequestClass
95
+ */
96
+ 'status': PaymentRequestClassStatusEnum;
97
+ /**
98
+ * Code of the payment method used for this payment request.
99
+ * @type {string}
100
+ * @memberof PaymentRequestClass
101
+ */
102
+ 'paymentMethodCode'?: string;
103
+ /**
104
+ * Type of the payment method (e.g., sepa_debit, credit_card, bank_transfer).
105
+ * @type {string}
106
+ * @memberof PaymentRequestClass
107
+ */
108
+ 'paymentMethodType'?: string;
109
+ /**
110
+ * Payment Service Provider (PSP) used for processing the payment (e.g., stripe, braintree, adyen, eis).
111
+ * @type {string}
112
+ * @memberof PaymentRequestClass
113
+ */
114
+ 'paymentMethodPsp'?: string;
115
+ /**
116
+ * Optional field containing extra information about the payment request.
117
+ * @type {{ [key: string]: object; }}
118
+ * @memberof PaymentRequestClass
119
+ */
120
+ 'metadata'?: {
121
+ [key: string]: object;
122
+ };
123
+ /**
124
+ * The list of payment receipts.
125
+ * @type {Array<PaymentReceiptClass>}
126
+ * @memberof PaymentRequestClass
127
+ */
128
+ 'paymentReceipts': Array<PaymentReceiptClass>;
129
+ }
130
+ export declare const PaymentRequestClassDirectionEnum: {
131
+ readonly Collect: "collect";
132
+ readonly Disburse: "disburse";
133
+ };
134
+ export type PaymentRequestClassDirectionEnum = typeof PaymentRequestClassDirectionEnum[keyof typeof PaymentRequestClassDirectionEnum];
135
+ export declare const PaymentRequestClassFinancialEntityTypeEnum: {
136
+ readonly ClaimRegulation: "claim_regulation";
137
+ readonly RefundAllocation: "refund_allocation";
138
+ readonly Other: "other";
139
+ };
140
+ export type PaymentRequestClassFinancialEntityTypeEnum = typeof PaymentRequestClassFinancialEntityTypeEnum[keyof typeof PaymentRequestClassFinancialEntityTypeEnum];
141
+ export declare const PaymentRequestClassDomainEntityTypeEnum: {
142
+ readonly Other: "other";
143
+ readonly Claim: "claim";
144
+ readonly Policy: "policy";
145
+ };
146
+ export type PaymentRequestClassDomainEntityTypeEnum = typeof PaymentRequestClassDomainEntityTypeEnum[keyof typeof PaymentRequestClassDomainEntityTypeEnum];
147
+ export declare const PaymentRequestClassStatusEnum: {
148
+ readonly Open: "open";
149
+ readonly Approved: "approved";
150
+ readonly Pending: "pending";
151
+ readonly Paid: "paid";
152
+ readonly Failed: "failed";
153
+ readonly Withdrawn: "withdrawn";
154
+ };
155
+ export type PaymentRequestClassStatusEnum = typeof PaymentRequestClassStatusEnum[keyof typeof PaymentRequestClassStatusEnum];
@@ -0,0 +1,38 @@
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 });
16
+ exports.PaymentRequestClassStatusEnum = exports.PaymentRequestClassDomainEntityTypeEnum = exports.PaymentRequestClassFinancialEntityTypeEnum = exports.PaymentRequestClassDirectionEnum = void 0;
17
+ exports.PaymentRequestClassDirectionEnum = {
18
+ Collect: 'collect',
19
+ Disburse: 'disburse'
20
+ };
21
+ exports.PaymentRequestClassFinancialEntityTypeEnum = {
22
+ ClaimRegulation: 'claim_regulation',
23
+ RefundAllocation: 'refund_allocation',
24
+ Other: 'other'
25
+ };
26
+ exports.PaymentRequestClassDomainEntityTypeEnum = {
27
+ Other: 'other',
28
+ Claim: 'claim',
29
+ Policy: 'policy'
30
+ };
31
+ exports.PaymentRequestClassStatusEnum = {
32
+ Open: 'open',
33
+ Approved: 'approved',
34
+ Pending: 'pending',
35
+ Paid: 'paid',
36
+ Failed: 'failed',
37
+ Withdrawn: 'withdrawn'
38
+ };
@@ -0,0 +1,121 @@
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 PayoutMethodClass
17
+ */
18
+ export interface PayoutMethodClass {
19
+ /**
20
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
21
+ * @type {number}
22
+ * @memberof PayoutMethodClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * Unique identifier for the object.
27
+ * @type {string}
28
+ * @memberof PayoutMethodClass
29
+ */
30
+ 'code': string;
31
+ /**
32
+ * First name
33
+ * @type {string}
34
+ * @memberof PayoutMethodClass
35
+ */
36
+ 'firstName': string;
37
+ /**
38
+ * Last name
39
+ * @type {string}
40
+ * @memberof PayoutMethodClass
41
+ */
42
+ 'lastName': string;
43
+ /**
44
+ * Bank account holder.
45
+ * @type {string}
46
+ * @memberof PayoutMethodClass
47
+ */
48
+ 'accountHolder': string;
49
+ /**
50
+ * IBAN
51
+ * @type {string}
52
+ * @memberof PayoutMethodClass
53
+ */
54
+ 'iban': string;
55
+ /**
56
+ * BIC
57
+ * @type {string}
58
+ * @memberof PayoutMethodClass
59
+ */
60
+ 'bic': string;
61
+ /**
62
+ * Bank name
63
+ * @type {string}
64
+ * @memberof PayoutMethodClass
65
+ */
66
+ 'bankName': string;
67
+ /**
68
+ * Whether the payout method is active
69
+ * @type {boolean}
70
+ * @memberof PayoutMethodClass
71
+ */
72
+ 'isActive': boolean;
73
+ /**
74
+ * Billing address code
75
+ * @type {string}
76
+ * @memberof PayoutMethodClass
77
+ */
78
+ 'billingAddressCode': string;
79
+ /**
80
+ * Unique identifier of the account that this object belongs to.
81
+ * @type {string}
82
+ * @memberof PayoutMethodClass
83
+ */
84
+ 'accountCode': string;
85
+ /**
86
+ * Unique identifier of the partner that this object belongs to.
87
+ * @type {string}
88
+ * @memberof PayoutMethodClass
89
+ */
90
+ 'partnerCode': string;
91
+ /**
92
+ * Billing address
93
+ * @type {BillingAddressClass}
94
+ * @memberof PayoutMethodClass
95
+ */
96
+ 'billingAddress'?: BillingAddressClass;
97
+ /**
98
+ * Time at which the object was created.
99
+ * @type {string}
100
+ * @memberof PayoutMethodClass
101
+ */
102
+ 'createdAt': string;
103
+ /**
104
+ * Time at which the object was updated.
105
+ * @type {string}
106
+ * @memberof PayoutMethodClass
107
+ */
108
+ 'updatedAt': string;
109
+ /**
110
+ * Identifier of the user who created the record.
111
+ * @type {string}
112
+ * @memberof PayoutMethodClass
113
+ */
114
+ 'createdBy': string;
115
+ /**
116
+ * Identifier of the user who last updated the record.
117
+ * @type {string}
118
+ * @memberof PayoutMethodClass
119
+ */
120
+ 'updatedBy': string;
121
+ }
@@ -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 });
@@ -111,6 +111,12 @@ export interface TenantBankAccountClassWithoutExpandProperties {
111
111
  * @memberof TenantBankAccountClassWithoutExpandProperties
112
112
  */
113
113
  'sepaPainVersion': TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum;
114
+ /**
115
+ * Payout Pain version
116
+ * @type {string}
117
+ * @memberof TenantBankAccountClassWithoutExpandProperties
118
+ */
119
+ 'payoutPainVersion': TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum;
114
120
  }
115
121
  export declare const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum: {
116
122
  readonly _00302: "pain.008.003.02";
@@ -122,3 +128,14 @@ export declare const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersio
122
128
  readonly _00111: "pain.008.001.11";
123
129
  };
124
130
  export type TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum];
131
+ export declare const TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum: {
132
+ readonly _00302: "pain.001.003.02";
133
+ readonly _00108: "pain.001.001.08";
134
+ readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
135
+ readonly _00802: "pain.001.008.02";
136
+ readonly _00109: "pain.001.001.09";
137
+ readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
138
+ readonly _00110: "pain.001.001.10";
139
+ readonly _00111: "pain.001.001.11";
140
+ };
141
+ export type TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum];
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = void 0;
16
+ exports.TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = void 0;
17
17
  exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = {
18
18
  _00302: 'pain.008.003.02',
19
19
  _00108: 'pain.008.001.08',
@@ -23,3 +23,13 @@ exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = {
23
23
  _00110: 'pain.008.001.10',
24
24
  _00111: 'pain.008.001.11'
25
25
  };
26
+ exports.TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = {
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
+ };
@@ -118,6 +118,12 @@ export interface TenantBankAccountClass {
118
118
  * @memberof TenantBankAccountClass
119
119
  */
120
120
  'sepaPainVersion': TenantBankAccountClassSepaPainVersionEnum;
121
+ /**
122
+ * Payout Pain version
123
+ * @type {string}
124
+ * @memberof TenantBankAccountClass
125
+ */
126
+ 'payoutPainVersion': TenantBankAccountClassPayoutPainVersionEnum;
121
127
  }
122
128
  export declare const TenantBankAccountClassSepaPainVersionEnum: {
123
129
  readonly _00302: "pain.008.003.02";
@@ -129,3 +135,14 @@ export declare const TenantBankAccountClassSepaPainVersionEnum: {
129
135
  readonly _00111: "pain.008.001.11";
130
136
  };
131
137
  export type TenantBankAccountClassSepaPainVersionEnum = typeof TenantBankAccountClassSepaPainVersionEnum[keyof typeof TenantBankAccountClassSepaPainVersionEnum];
138
+ export declare const TenantBankAccountClassPayoutPainVersionEnum: {
139
+ readonly _00302: "pain.001.003.02";
140
+ readonly _00108: "pain.001.001.08";
141
+ readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
142
+ readonly _00802: "pain.001.008.02";
143
+ readonly _00109: "pain.001.001.09";
144
+ readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
145
+ readonly _00110: "pain.001.001.10";
146
+ readonly _00111: "pain.001.001.11";
147
+ };
148
+ export type TenantBankAccountClassPayoutPainVersionEnum = typeof TenantBankAccountClassPayoutPainVersionEnum[keyof typeof TenantBankAccountClassPayoutPainVersionEnum];
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.TenantBankAccountClassSepaPainVersionEnum = void 0;
16
+ exports.TenantBankAccountClassPayoutPainVersionEnum = exports.TenantBankAccountClassSepaPainVersionEnum = void 0;
17
17
  exports.TenantBankAccountClassSepaPainVersionEnum = {
18
18
  _00302: 'pain.008.003.02',
19
19
  _00108: 'pain.008.001.08',
@@ -23,3 +23,13 @@ exports.TenantBankAccountClassSepaPainVersionEnum = {
23
23
  _00110: 'pain.008.001.10',
24
24
  _00111: 'pain.008.001.11'
25
25
  };
26
+ exports.TenantBankAccountClassPayoutPainVersionEnum = {
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
+ };
@@ -100,6 +100,12 @@ export interface TenantBankAccountEntity {
100
100
  * @memberof TenantBankAccountEntity
101
101
  */
102
102
  'sepaPainVersion'?: TenantBankAccountEntitySepaPainVersionEnum;
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof TenantBankAccountEntity
107
+ */
108
+ 'payoutPainVersion'?: TenantBankAccountEntityPayoutPainVersionEnum;
103
109
  /**
104
110
  *
105
111
  * @type {string}
@@ -141,3 +147,14 @@ export declare const TenantBankAccountEntitySepaPainVersionEnum: {
141
147
  readonly _00111: "pain.008.001.11";
142
148
  };
143
149
  export type TenantBankAccountEntitySepaPainVersionEnum = typeof TenantBankAccountEntitySepaPainVersionEnum[keyof typeof TenantBankAccountEntitySepaPainVersionEnum];
150
+ export declare const TenantBankAccountEntityPayoutPainVersionEnum: {
151
+ readonly _00302: "pain.001.003.02";
152
+ readonly _00108: "pain.001.001.08";
153
+ readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
154
+ readonly _00802: "pain.001.008.02";
155
+ readonly _00109: "pain.001.001.09";
156
+ readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
157
+ readonly _00110: "pain.001.001.10";
158
+ readonly _00111: "pain.001.001.11";
159
+ };
160
+ export type TenantBankAccountEntityPayoutPainVersionEnum = typeof TenantBankAccountEntityPayoutPainVersionEnum[keyof typeof TenantBankAccountEntityPayoutPainVersionEnum];
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.TenantBankAccountEntitySepaPainVersionEnum = void 0;
16
+ exports.TenantBankAccountEntityPayoutPainVersionEnum = exports.TenantBankAccountEntitySepaPainVersionEnum = void 0;
17
17
  exports.TenantBankAccountEntitySepaPainVersionEnum = {
18
18
  _00302: 'pain.008.003.02',
19
19
  _00108: 'pain.008.001.08',
@@ -23,3 +23,13 @@ exports.TenantBankAccountEntitySepaPainVersionEnum = {
23
23
  _00110: 'pain.008.001.10',
24
24
  _00111: 'pain.008.001.11'
25
25
  };
26
+ exports.TenantBankAccountEntityPayoutPainVersionEnum = {
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
+ };
@@ -34,11 +34,11 @@ export interface UpdateBankOrderRequestDto {
34
34
  */
35
35
  'tenantBankAccountCode': string;
36
36
  /**
37
- * List of invoice IDs associated with bank order.
38
- * @type {Array<number>}
37
+ * List of entity codes associated with bank order.
38
+ * @type {Array<string>}
39
39
  * @memberof UpdateBankOrderRequestDto
40
40
  */
41
- 'invoiceIds': Array<number>;
41
+ 'entityCodes': Array<string>;
42
42
  /**
43
43
  * Day of execution of bank order.
44
44
  * @type {string}
@@ -0,0 +1,66 @@
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 UpdateBillingAddressRequestDto
16
+ */
17
+ export interface UpdateBillingAddressRequestDto {
18
+ /**
19
+ * First name
20
+ * @type {string}
21
+ * @memberof UpdateBillingAddressRequestDto
22
+ */
23
+ 'firstName': string;
24
+ /**
25
+ * Last name
26
+ * @type {string}
27
+ * @memberof UpdateBillingAddressRequestDto
28
+ */
29
+ 'lastName': string;
30
+ /**
31
+ * Street name
32
+ * @type {string}
33
+ * @memberof UpdateBillingAddressRequestDto
34
+ */
35
+ 'street': string;
36
+ /**
37
+ * House number
38
+ * @type {string}
39
+ * @memberof UpdateBillingAddressRequestDto
40
+ */
41
+ 'houseNumber': string;
42
+ /**
43
+ * ZIP code
44
+ * @type {string}
45
+ * @memberof UpdateBillingAddressRequestDto
46
+ */
47
+ 'zipCode': string;
48
+ /**
49
+ * City
50
+ * @type {string}
51
+ * @memberof UpdateBillingAddressRequestDto
52
+ */
53
+ 'city': string;
54
+ /**
55
+ * Country code
56
+ * @type {string}
57
+ * @memberof UpdateBillingAddressRequestDto
58
+ */
59
+ 'countryCode'?: string;
60
+ /**
61
+ * Unique identifier of the partner that this object belongs to.
62
+ * @type {string}
63
+ * @memberof UpdateBillingAddressRequestDto
64
+ */
65
+ 'partnerCode': string;
66
+ }
@@ -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 { BillingAddressClass } from './billing-address-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateBillingAddressResponseClass
17
+ */
18
+ export interface UpdateBillingAddressResponseClass {
19
+ /**
20
+ * The updated billing address
21
+ * @type {BillingAddressClass}
22
+ * @memberof UpdateBillingAddressResponseClass
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 { PaymentReceiptClass } from './payment-receipt-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdatePaymentReceiptResponseClass
17
+ */
18
+ export interface UpdatePaymentReceiptResponseClass {
19
+ /**
20
+ * The updated payment receipt.
21
+ * @type {PaymentReceiptClass}
22
+ * @memberof UpdatePaymentReceiptResponseClass
23
+ */
24
+ 'paymentReceipt'?: PaymentReceiptClass;
25
+ }