@emilgroup/payment-sdk 1.13.1-beta.13 → 1.13.1-beta.130

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 (174) hide show
  1. package/.openapi-generator/FILES +24 -1
  2. package/README.md +2 -2
  3. package/api/bank-accounts-api.ts +55 -13
  4. package/api/bank-orders-api.ts +130 -57
  5. package/api/bank-transaction-api.ts +59 -48
  6. package/api/exceeding-credits-api.ts +349 -0
  7. package/api/payment-methods-api.ts +59 -17
  8. package/api/payment-reminders-api.ts +55 -13
  9. package/api/payments-api.ts +180 -17
  10. package/api/policy-payment-methods-api.ts +471 -0
  11. package/api/refunds-api.ts +45 -17
  12. package/api/tenant-bank-account-api.ts +45 -17
  13. package/api.ts +4 -0
  14. package/base.ts +10 -32
  15. package/common.ts +2 -2
  16. package/configuration.ts +0 -9
  17. package/dist/api/bank-accounts-api.d.ts +35 -8
  18. package/dist/api/bank-accounts-api.js +29 -11
  19. package/dist/api/bank-orders-api.d.ts +92 -46
  20. package/dist/api/bank-orders-api.js +83 -52
  21. package/dist/api/bank-transaction-api.d.ts +39 -31
  22. package/dist/api/bank-transaction-api.js +36 -31
  23. package/dist/api/exceeding-credits-api.d.ts +206 -0
  24. package/dist/api/exceeding-credits-api.js +352 -0
  25. package/dist/api/payment-methods-api.d.ts +39 -12
  26. package/dist/api/payment-methods-api.js +32 -14
  27. package/dist/api/payment-reminders-api.d.ts +35 -8
  28. package/dist/api/payment-reminders-api.js +29 -11
  29. package/dist/api/payments-api.d.ts +104 -12
  30. package/dist/api/payments-api.js +133 -14
  31. package/dist/api/policy-payment-methods-api.d.ts +272 -0
  32. package/dist/api/policy-payment-methods-api.js +452 -0
  33. package/dist/api/refunds-api.d.ts +28 -10
  34. package/dist/api/refunds-api.js +24 -12
  35. package/dist/api/tenant-bank-account-api.d.ts +28 -10
  36. package/dist/api/tenant-bank-account-api.js +24 -12
  37. package/dist/api.d.ts +2 -0
  38. package/dist/api.js +2 -0
  39. package/dist/base.d.ts +2 -4
  40. package/dist/base.js +21 -40
  41. package/dist/common.js +2 -2
  42. package/dist/configuration.d.ts +0 -6
  43. package/dist/configuration.js +0 -8
  44. package/dist/models/activate-policy-payment-method-request-dto.d.ts +24 -0
  45. package/dist/models/bank-order-class.d.ts +23 -3
  46. package/dist/models/bank-order-xml-file-class.d.ts +72 -0
  47. package/dist/models/bank-order-xml-file-class.js +15 -0
  48. package/dist/models/bank-transaction-class-without-expand-properties.d.ts +18 -18
  49. package/dist/models/bank-transaction-class-without-expand-properties.js +5 -0
  50. package/dist/models/bank-transaction-class.d.ts +22 -22
  51. package/dist/models/bank-transaction-class.js +5 -0
  52. package/dist/models/bank-transaction-invoice-class.d.ts +60 -0
  53. package/dist/models/bank-transaction-invoice-class.js +15 -0
  54. package/dist/models/bank-transfer-dto.d.ts +25 -0
  55. package/dist/models/bank-transfer-dto.js +15 -0
  56. package/dist/models/billing-address-dto.d.ts +54 -0
  57. package/dist/models/billing-address-dto.js +15 -0
  58. package/dist/models/complete-adyen-payment-setup-request-dto.d.ts +2 -0
  59. package/dist/models/complete-adyen-payment-setup-request-dto.js +3 -1
  60. package/dist/models/complete-eis-payment-setup-request-dto.d.ts +36 -0
  61. package/dist/models/complete-eis-payment-setup-request-dto.js +15 -0
  62. package/dist/models/complete-payment-setup-request-dto.d.ts +7 -0
  63. package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +2 -0
  64. package/dist/models/complete-stripe-payment-setup-request-dto.js +3 -1
  65. package/dist/models/create-bank-order-request-dto.d.ts +9 -9
  66. package/dist/models/create-payment-order-dto.d.ts +48 -0
  67. package/dist/models/create-payment-order-dto.js +15 -0
  68. package/dist/models/create-payment-order-request-dto.d.ts +48 -0
  69. package/dist/models/create-payment-order-request-dto.js +15 -0
  70. package/dist/models/create-payment-reminder-request-dto.d.ts +7 -1
  71. package/dist/models/create-payment-request-dto.d.ts +7 -1
  72. package/dist/models/create-policy-payment-method-request-dto.d.ts +30 -0
  73. package/dist/models/create-policy-payment-method-request-dto.js +15 -0
  74. package/dist/models/create-policy-payment-method-response-class.d.ts +25 -0
  75. package/dist/models/create-policy-payment-method-response-class.js +15 -0
  76. package/dist/models/create-psp-payment-method-request-dto.d.ts +29 -1
  77. package/dist/models/create-psp-payment-method-request-dto.js +3 -1
  78. package/dist/models/create-tenant-bank-account-request-dto.d.ts +30 -0
  79. package/dist/models/deactivated-payment-reminder-class.d.ts +7 -1
  80. package/dist/models/eis-sepa-debit-dto.d.ts +55 -0
  81. package/dist/models/eis-sepa-debit-dto.js +15 -0
  82. package/dist/models/exceeding-credit-class.d.ts +116 -0
  83. package/dist/models/exceeding-credit-class.js +29 -0
  84. package/dist/models/financial-account-class.d.ts +111 -0
  85. package/dist/models/financial-account-class.js +24 -0
  86. package/dist/models/get-exceeding-credit-response-class.d.ts +25 -0
  87. package/dist/models/get-exceeding-credit-response-class.js +15 -0
  88. package/dist/models/index.d.ts +22 -1
  89. package/dist/models/index.js +22 -1
  90. package/dist/models/initiate-adyen-payment-setup-request-dto.d.ts +6 -0
  91. package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +6 -0
  92. package/dist/models/initiate-eis-payment-setup-request-dto.d.ts +36 -0
  93. package/dist/models/initiate-eis-payment-setup-request-dto.js +15 -0
  94. package/dist/models/initiate-payment-setup-request-dto.d.ts +3 -2
  95. package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +6 -0
  96. package/dist/models/{unlink-bank-transaction-request-dto-rest.d.ts → invoice-allocation-dto.d.ts} +10 -4
  97. package/dist/models/invoice-allocation-dto.js +15 -0
  98. package/dist/models/link-bank-transaction-request-dto-rest.d.ts +4 -3
  99. package/dist/models/list-exceeding-credits-response-class.d.ts +31 -0
  100. package/dist/models/list-exceeding-credits-response-class.js +15 -0
  101. package/dist/models/list-policy-payment-methods-response-class.d.ts +31 -0
  102. package/dist/models/list-policy-payment-methods-response-class.js +15 -0
  103. package/dist/models/mandate-dto.d.ts +43 -0
  104. package/dist/models/mandate-dto.js +15 -0
  105. package/dist/models/mandate-hash-data-dto.d.ts +42 -0
  106. package/dist/models/mandate-hash-data-dto.js +15 -0
  107. package/dist/models/mandate-reference-class.d.ts +90 -0
  108. package/dist/models/mandate-reference-class.js +15 -0
  109. package/dist/models/payment-class-without-expand-properties.d.ts +7 -1
  110. package/dist/models/payment-class.d.ts +7 -1
  111. package/dist/models/payment-method-class.d.ts +6 -0
  112. package/dist/models/payment-reminder-class.d.ts +7 -1
  113. package/dist/models/policy-payment-method-class.d.ts +86 -0
  114. package/dist/models/policy-payment-method-class.js +15 -0
  115. package/dist/models/refund-class.d.ts +7 -1
  116. package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +30 -0
  117. package/dist/models/tenant-bank-account-class.d.ts +30 -0
  118. package/dist/models/unlinked-bank-transaction-response-class.d.ts +18 -0
  119. package/dist/models/unlinked-bank-transaction-response-class.js +5 -0
  120. package/dist/models/update-bank-order-request-dto.d.ts +12 -12
  121. package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +30 -0
  122. package/models/activate-policy-payment-method-request-dto.ts +30 -0
  123. package/models/bank-order-class.ts +23 -3
  124. package/models/bank-order-xml-file-class.ts +78 -0
  125. package/models/bank-transaction-class-without-expand-properties.ts +21 -18
  126. package/models/bank-transaction-class.ts +25 -22
  127. package/models/bank-transaction-invoice-class.ts +66 -0
  128. package/models/bank-transfer-dto.ts +31 -0
  129. package/models/billing-address-dto.ts +60 -0
  130. package/models/complete-adyen-payment-setup-request-dto.ts +3 -1
  131. package/models/complete-eis-payment-setup-request-dto.ts +42 -0
  132. package/models/complete-payment-setup-request-dto.ts +7 -0
  133. package/models/complete-stripe-payment-setup-request-dto.ts +3 -1
  134. package/models/create-bank-order-request-dto.ts +9 -9
  135. package/models/create-payment-order-dto.ts +54 -0
  136. package/models/create-payment-order-request-dto.ts +54 -0
  137. package/models/create-payment-reminder-request-dto.ts +7 -1
  138. package/models/create-payment-request-dto.ts +7 -1
  139. package/models/create-policy-payment-method-request-dto.ts +36 -0
  140. package/models/create-policy-payment-method-response-class.ts +31 -0
  141. package/models/create-psp-payment-method-request-dto.ts +30 -2
  142. package/models/create-tenant-bank-account-request-dto.ts +30 -0
  143. package/models/deactivated-payment-reminder-class.ts +7 -1
  144. package/models/eis-sepa-debit-dto.ts +61 -0
  145. package/models/exceeding-credit-class.ts +125 -0
  146. package/models/financial-account-class.ts +120 -0
  147. package/models/get-exceeding-credit-response-class.ts +31 -0
  148. package/models/index.ts +22 -1
  149. package/models/initiate-adyen-payment-setup-request-dto.ts +6 -0
  150. package/models/initiate-braintree-payment-setup-request-dto.ts +6 -0
  151. package/models/initiate-eis-payment-setup-request-dto.ts +42 -0
  152. package/models/initiate-payment-setup-request-dto.ts +3 -2
  153. package/models/initiate-stripe-payment-setup-request-dto.ts +6 -0
  154. package/models/{unlink-bank-transaction-request-dto-rest.ts → invoice-allocation-dto.ts} +10 -4
  155. package/models/link-bank-transaction-request-dto-rest.ts +4 -3
  156. package/models/list-exceeding-credits-response-class.ts +37 -0
  157. package/models/list-policy-payment-methods-response-class.ts +37 -0
  158. package/models/mandate-dto.ts +49 -0
  159. package/models/mandate-hash-data-dto.ts +48 -0
  160. package/models/mandate-reference-class.ts +96 -0
  161. package/models/payment-class-without-expand-properties.ts +7 -1
  162. package/models/payment-class.ts +7 -1
  163. package/models/payment-method-class.ts +6 -0
  164. package/models/payment-reminder-class.ts +7 -1
  165. package/models/policy-payment-method-class.ts +92 -0
  166. package/models/refund-class.ts +7 -1
  167. package/models/tenant-bank-account-class-without-expand-properties.ts +30 -0
  168. package/models/tenant-bank-account-class.ts +30 -0
  169. package/models/unlinked-bank-transaction-response-class.ts +21 -0
  170. package/models/update-bank-order-request-dto.ts +12 -12
  171. package/models/update-tenant-bank-account-rest-request-dto.ts +30 -0
  172. package/package.json +1 -1
  173. package/tsconfig.json +0 -1
  174. /package/dist/models/{unlink-bank-transaction-request-dto-rest.js → activate-policy-payment-method-request-dto.js} +0 -0
@@ -9,6 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { BankOrderXmlFileClass } from './bank-order-xml-file-class';
13
+ import { FinancialAccountClass } from './financial-account-class';
12
14
  /**
13
15
  *
14
16
  * @export
@@ -58,11 +60,11 @@ export interface BankOrderClass {
58
60
  */
59
61
  'description'?: string;
60
62
  /**
61
- * Bank account identifier associated with the bank order.
62
- * @type {number}
63
+ * Financial account code associated with the bank order.
64
+ * @type {string}
63
65
  * @memberof BankOrderClass
64
66
  */
65
- 'bankAccountId': number;
67
+ 'financialAccountCode': string;
66
68
  /**
67
69
  * List of invoice IDs associated with bank order.
68
70
  * @type {Array<number>}
@@ -75,6 +77,12 @@ export interface BankOrderClass {
75
77
  * @memberof BankOrderClass
76
78
  */
77
79
  'executionDate': string;
80
+ /**
81
+ * Latest due date.
82
+ * @type {string}
83
+ * @memberof BankOrderClass
84
+ */
85
+ 'dueDate': string;
78
86
  /**
79
87
  * Time at which the object was created.
80
88
  * @type {string}
@@ -99,4 +107,16 @@ export interface BankOrderClass {
99
107
  * @memberof BankOrderClass
100
108
  */
101
109
  'updatedBy': string;
110
+ /**
111
+ * The financial account object that this bank order is belongs to
112
+ * @type {FinancialAccountClass}
113
+ * @memberof BankOrderClass
114
+ */
115
+ 'financialAccount'?: FinancialAccountClass;
116
+ /**
117
+ * The XML file associated with this bank order
118
+ * @type {BankOrderXmlFileClass}
119
+ * @memberof BankOrderClass
120
+ */
121
+ 'xmlFile'?: BankOrderXmlFileClass;
102
122
  }
@@ -0,0 +1,72 @@
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 BankOrderXmlFileClass
16
+ */
17
+ export interface BankOrderXmlFileClass {
18
+ /**
19
+ * Unique identifier for the bank order XML file
20
+ * @type {number}
21
+ * @memberof BankOrderXmlFileClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * XML content of the bank order file
26
+ * @type {string}
27
+ * @memberof BankOrderXmlFileClass
28
+ */
29
+ 'xmlContent': string;
30
+ /**
31
+ * Original filename of the XML file
32
+ * @type {string}
33
+ * @memberof BankOrderXmlFileClass
34
+ */
35
+ 'fileName'?: string;
36
+ /**
37
+ * MIME type of the file
38
+ * @type {string}
39
+ * @memberof BankOrderXmlFileClass
40
+ */
41
+ 'mimeType'?: string;
42
+ /**
43
+ * Size of the file in bytes
44
+ * @type {number}
45
+ * @memberof BankOrderXmlFileClass
46
+ */
47
+ 'fileSize'?: number;
48
+ /**
49
+ * Timestamp when the record was created
50
+ * @type {string}
51
+ * @memberof BankOrderXmlFileClass
52
+ */
53
+ 'createdAt': string;
54
+ /**
55
+ * Timestamp when the record was last updated
56
+ * @type {string}
57
+ * @memberof BankOrderXmlFileClass
58
+ */
59
+ 'updatedAt': string;
60
+ /**
61
+ * User ID who created the record
62
+ * @type {string}
63
+ * @memberof BankOrderXmlFileClass
64
+ */
65
+ 'createdBy': string;
66
+ /**
67
+ * User ID who last updated the record
68
+ * @type {string}
69
+ * @memberof BankOrderXmlFileClass
70
+ */
71
+ 'updatedBy': string;
72
+ }
@@ -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 { BankOrderClass } from './bank-order-class';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -45,6 +46,12 @@ export interface BankTransactionClassWithoutExpandProperties {
45
46
  * @memberof BankTransactionClassWithoutExpandProperties
46
47
  */
47
48
  'messageReference'?: string;
49
+ /**
50
+ * Label of the transaction
51
+ * @type {string}
52
+ * @memberof BankTransactionClassWithoutExpandProperties
53
+ */
54
+ 'label'?: BankTransactionClassWithoutExpandPropertiesLabelEnum;
48
55
  /**
49
56
  * Currency of the transaction.
50
57
  * @type {string}
@@ -81,30 +88,18 @@ export interface BankTransactionClassWithoutExpandProperties {
81
88
  * @memberof BankTransactionClassWithoutExpandProperties
82
89
  */
83
90
  'metadata'?: object;
84
- /**
85
- * The id of the PSP transaction that this bank transaction is linked to
86
- * @type {number}
87
- * @memberof BankTransactionClassWithoutExpandProperties
88
- */
89
- 'linkedTransactionId'?: number;
90
- /**
91
- * The code of the invoice that this bank transaction is linked to
92
- * @type {string}
93
- * @memberof BankTransactionClassWithoutExpandProperties
94
- */
95
- 'linkedInvoiceCode'?: string;
96
- /**
97
- * The identifying invoice number that this bank transaction is linked to
98
- * @type {string}
99
- * @memberof BankTransactionClassWithoutExpandProperties
100
- */
101
- 'linkedInvoiceNumber'?: string;
102
91
  /**
103
92
  * Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
104
93
  * @type {boolean}
105
94
  * @memberof BankTransactionClassWithoutExpandProperties
106
95
  */
107
96
  'isLinked': boolean;
97
+ /**
98
+ * The linked bank order object
99
+ * @type {BankOrderClass}
100
+ * @memberof BankTransactionClassWithoutExpandProperties
101
+ */
102
+ 'linkedBankOrder'?: BankOrderClass;
108
103
  /**
109
104
  * The file format of the bank transaction
110
105
  * @type {string}
@@ -130,3 +125,8 @@ export interface BankTransactionClassWithoutExpandProperties {
130
125
  */
131
126
  'updatedBy': string;
132
127
  }
128
+ export declare const BankTransactionClassWithoutExpandPropertiesLabelEnum: {
129
+ readonly Automated: "automated";
130
+ readonly Manual: "manual";
131
+ };
132
+ export type BankTransactionClassWithoutExpandPropertiesLabelEnum = typeof BankTransactionClassWithoutExpandPropertiesLabelEnum[keyof typeof BankTransactionClassWithoutExpandPropertiesLabelEnum];
@@ -13,3 +13,8 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.BankTransactionClassWithoutExpandPropertiesLabelEnum = void 0;
17
+ exports.BankTransactionClassWithoutExpandPropertiesLabelEnum = {
18
+ Automated: 'automated',
19
+ Manual: 'manual'
20
+ };
@@ -9,8 +9,9 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { BankOrderClass } from './bank-order-class';
13
+ import { BankTransactionInvoiceClass } from './bank-transaction-invoice-class';
12
14
  import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
13
- import { SharedTransactionClass } from './shared-transaction-class';
14
15
  import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
15
16
  import { TenantBankAccountClassWithoutExpandProperties } from './tenant-bank-account-class-without-expand-properties';
16
17
  /**
@@ -49,6 +50,12 @@ export interface BankTransactionClass {
49
50
  * @memberof BankTransactionClass
50
51
  */
51
52
  'messageReference'?: string;
53
+ /**
54
+ * Label of the transaction
55
+ * @type {string}
56
+ * @memberof BankTransactionClass
57
+ */
58
+ 'label'?: BankTransactionClassLabelEnum;
52
59
  /**
53
60
  * Currency of the transaction.
54
61
  * @type {string}
@@ -85,30 +92,18 @@ export interface BankTransactionClass {
85
92
  * @memberof BankTransactionClass
86
93
  */
87
94
  'metadata'?: object;
88
- /**
89
- * The id of the PSP transaction that this bank transaction is linked to
90
- * @type {number}
91
- * @memberof BankTransactionClass
92
- */
93
- 'linkedTransactionId'?: number;
94
- /**
95
- * The code of the invoice that this bank transaction is linked to
96
- * @type {string}
97
- * @memberof BankTransactionClass
98
- */
99
- 'linkedInvoiceCode'?: string;
100
- /**
101
- * The identifying invoice number that this bank transaction is linked to
102
- * @type {string}
103
- * @memberof BankTransactionClass
104
- */
105
- 'linkedInvoiceNumber'?: string;
106
95
  /**
107
96
  * Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
108
97
  * @type {boolean}
109
98
  * @memberof BankTransactionClass
110
99
  */
111
100
  'isLinked': boolean;
101
+ /**
102
+ * The bank transaction invoices that this bank transaction is linked to
103
+ * @type {Array<BankTransactionInvoiceClass>}
104
+ * @memberof BankTransactionClass
105
+ */
106
+ 'bankTransactionInvoices'?: Array<BankTransactionInvoiceClass>;
112
107
  /**
113
108
  * The bank account object that this transaction is belongs to
114
109
  * @type {TenantBankAccountClassWithoutExpandProperties}
@@ -116,11 +111,11 @@ export interface BankTransactionClass {
116
111
  */
117
112
  'bankAccount'?: TenantBankAccountClassWithoutExpandProperties;
118
113
  /**
119
- * The linked transaction object
120
- * @type {SharedTransactionClass}
114
+ * The linked bank order object
115
+ * @type {BankOrderClass}
121
116
  * @memberof BankTransactionClass
122
117
  */
123
- 'linkedTransaction'?: SharedTransactionClass;
118
+ 'linkedBankOrder'?: BankOrderClass;
124
119
  /**
125
120
  * The file format of the bank transaction
126
121
  * @type {string}
@@ -158,3 +153,8 @@ export interface BankTransactionClass {
158
153
  */
159
154
  'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
160
155
  }
156
+ export declare const BankTransactionClassLabelEnum: {
157
+ readonly Automated: "automated";
158
+ readonly Manual: "manual";
159
+ };
160
+ export type BankTransactionClassLabelEnum = typeof BankTransactionClassLabelEnum[keyof typeof BankTransactionClassLabelEnum];
@@ -13,3 +13,8 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.BankTransactionClassLabelEnum = void 0;
17
+ exports.BankTransactionClassLabelEnum = {
18
+ Automated: 'automated',
19
+ Manual: 'manual'
20
+ };
@@ -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 BankTransactionInvoiceClass
16
+ */
17
+ export interface BankTransactionInvoiceClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof BankTransactionInvoiceClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof BankTransactionInvoiceClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * Bank transaction id
32
+ * @type {number}
33
+ * @memberof BankTransactionInvoiceClass
34
+ */
35
+ 'bankTransactionId': number;
36
+ /**
37
+ * Invoice code of the bank transaction invoice
38
+ * @type {string}
39
+ * @memberof BankTransactionInvoiceClass
40
+ */
41
+ 'invoiceCode': string;
42
+ /**
43
+ * Invoice number of the bank transaction invoice
44
+ * @type {string}
45
+ * @memberof BankTransactionInvoiceClass
46
+ */
47
+ 'invoiceNumber': string;
48
+ /**
49
+ * Linked transaction id of the bank transaction invoice
50
+ * @type {number}
51
+ * @memberof BankTransactionInvoiceClass
52
+ */
53
+ 'linkedTransactionId': number;
54
+ /**
55
+ * Time at which the object was created.
56
+ * @type {string}
57
+ * @memberof BankTransactionInvoiceClass
58
+ */
59
+ 'createdAt': 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 { BillingAddressDto } from './billing-address-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface BankTransferDto
17
+ */
18
+ export interface BankTransferDto {
19
+ /**
20
+ * Billing address for the bank transfer payment method
21
+ * @type {BillingAddressDto}
22
+ * @memberof BankTransferDto
23
+ */
24
+ 'billingAddress': BillingAddressDto;
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,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 BillingAddressDto
16
+ */
17
+ export interface BillingAddressDto {
18
+ /**
19
+ * First name for billing address
20
+ * @type {string}
21
+ * @memberof BillingAddressDto
22
+ */
23
+ 'firstName': string;
24
+ /**
25
+ * Last name for billing address
26
+ * @type {string}
27
+ * @memberof BillingAddressDto
28
+ */
29
+ 'lastName': string;
30
+ /**
31
+ * Street name for billing address
32
+ * @type {string}
33
+ * @memberof BillingAddressDto
34
+ */
35
+ 'street': string;
36
+ /**
37
+ * House number for billing address
38
+ * @type {string}
39
+ * @memberof BillingAddressDto
40
+ */
41
+ 'houseNumber': string;
42
+ /**
43
+ * ZIP/Postal code for billing address
44
+ * @type {string}
45
+ * @memberof BillingAddressDto
46
+ */
47
+ 'zipCode': string;
48
+ /**
49
+ * City name for billing address
50
+ * @type {string}
51
+ * @memberof BillingAddressDto
52
+ */
53
+ 'city': 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 });
@@ -93,5 +93,7 @@ export declare const CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum: {
93
93
  readonly Venmo: "venmo";
94
94
  readonly Masterpass: "masterpass";
95
95
  readonly B4u: "b4u";
96
+ readonly Invoice: "invoice";
97
+ readonly BankTransfer: "bank_transfer";
96
98
  };
97
99
  export type CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -28,5 +28,7 @@ exports.CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice',
33
+ BankTransfer: 'bank_transfer'
32
34
  };
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CompleteEisPaymentSetupRequestDto
16
+ */
17
+ export interface CompleteEisPaymentSetupRequestDto {
18
+ /**
19
+ * Unique identifier of the account that this object belongs to.
20
+ * @type {string}
21
+ * @memberof CompleteEisPaymentSetupRequestDto
22
+ */
23
+ 'accountCode'?: string;
24
+ /**
25
+ * Unique identifier of the partner that this object belongs to.
26
+ * @type {string}
27
+ * @memberof CompleteEisPaymentSetupRequestDto
28
+ */
29
+ 'partnerCode'?: string;
30
+ /**
31
+ * Unique identifier of the lead that this object belongs to.
32
+ * @type {string}
33
+ * @memberof CompleteEisPaymentSetupRequestDto
34
+ */
35
+ 'leadCode'?: string;
36
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
6
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
13
13
  import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
14
+ import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
14
15
  import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
15
16
  /**
16
17
  *
@@ -42,4 +43,10 @@ export interface CompletePaymentSetupRequestDto {
42
43
  * @memberof CompletePaymentSetupRequestDto
43
44
  */
44
45
  'adyen'?: CompleteAdyenPaymentSetupRequestDto;
46
+ /**
47
+ *
48
+ * @type {CompleteEisPaymentSetupRequestDto}
49
+ * @memberof CompletePaymentSetupRequestDto
50
+ */
51
+ 'eis'?: CompleteEisPaymentSetupRequestDto;
45
52
  }
@@ -92,5 +92,7 @@ export declare const CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum:
92
92
  readonly Venmo: "venmo";
93
93
  readonly Masterpass: "masterpass";
94
94
  readonly B4u: "b4u";
95
+ readonly Invoice: "invoice";
96
+ readonly BankTransfer: "bank_transfer";
95
97
  };
96
98
  export type CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -28,5 +28,7 @@ exports.CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice',
33
+ BankTransfer: 'bank_transfer'
32
34
  };
@@ -21,12 +21,6 @@ export interface CreateBankOrderRequestDto {
21
21
  * @memberof CreateBankOrderRequestDto
22
22
  */
23
23
  'type': CreateBankOrderRequestDtoTypeEnum;
24
- /**
25
- * Amount associated with bank order.
26
- * @type {number}
27
- * @memberof CreateBankOrderRequestDto
28
- */
29
- 'amount': number;
30
24
  /**
31
25
  * Status associated with bank order.
32
26
  * @type {string}
@@ -40,11 +34,11 @@ export interface CreateBankOrderRequestDto {
40
34
  */
41
35
  'description'?: string;
42
36
  /**
43
- * Bank account identifier associated with the bank order.
44
- * @type {number}
37
+ * Financial account code associated with the bank order.
38
+ * @type {string}
45
39
  * @memberof CreateBankOrderRequestDto
46
40
  */
47
- 'bankAccountId': number;
41
+ 'financialAccountCode': string;
48
42
  /**
49
43
  * List of invoice IDs associated with bank order.
50
44
  * @type {Array<number>}
@@ -57,6 +51,12 @@ export interface CreateBankOrderRequestDto {
57
51
  * @memberof CreateBankOrderRequestDto
58
52
  */
59
53
  'executionDate': string;
54
+ /**
55
+ * Latest due date.
56
+ * @type {string}
57
+ * @memberof CreateBankOrderRequestDto
58
+ */
59
+ 'dueDate': string;
60
60
  }
61
61
  export declare const CreateBankOrderRequestDtoTypeEnum: {
62
62
  readonly DirectDebit: "direct_debit";