@emilgroup/payment-sdk-node 1.21.1-beta.13 → 1.21.1-beta.131

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 +353 -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 +475 -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 +3 -4
  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 +356 -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 +456 -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 +1 -2
  40. package/dist/base.js +1 -2
  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 +60 -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 +66 -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
@@ -0,0 +1,90 @@
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 MandateReferenceClass
16
+ */
17
+ export interface MandateReferenceClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof MandateReferenceClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof MandateReferenceClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * SEPA mandate reference identifier
32
+ * @type {string}
33
+ * @memberof MandateReferenceClass
34
+ */
35
+ 'mandateReference': string;
36
+ /**
37
+ * Date when mandate was created
38
+ * @type {string}
39
+ * @memberof MandateReferenceClass
40
+ */
41
+ 'mandateCreatedAt': string;
42
+ /**
43
+ * SEPA creditor identifier
44
+ * @type {string}
45
+ * @memberof MandateReferenceClass
46
+ */
47
+ 'creditorId': string;
48
+ /**
49
+ * Optional hash of mandate document
50
+ * @type {string}
51
+ * @memberof MandateReferenceClass
52
+ */
53
+ 'hash'?: string;
54
+ /**
55
+ * Optional mandate hash data containing signature details
56
+ * @type {object}
57
+ * @memberof MandateReferenceClass
58
+ */
59
+ 'hashData'?: object;
60
+ /**
61
+ * Payment method code associated with this mandate
62
+ * @type {string}
63
+ * @memberof MandateReferenceClass
64
+ */
65
+ 'paymentMethodCode': string;
66
+ /**
67
+ * Identifier of the user who created the record.
68
+ * @type {string}
69
+ * @memberof MandateReferenceClass
70
+ */
71
+ 'createdBy': string;
72
+ /**
73
+ * Identifier of the user who last updated the record.
74
+ * @type {string}
75
+ * @memberof MandateReferenceClass
76
+ */
77
+ 'updatedBy': string;
78
+ /**
79
+ * Time at which the object was created.
80
+ * @type {string}
81
+ * @memberof MandateReferenceClass
82
+ */
83
+ 'createdAt': string;
84
+ /**
85
+ * Time at which the object was updated.
86
+ * @type {string}
87
+ * @memberof MandateReferenceClass
88
+ */
89
+ 'updatedAt': string;
90
+ }
@@ -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 });
@@ -38,7 +38,13 @@ export interface PaymentClassWithoutExpandProperties {
38
38
  * @type {string}
39
39
  * @memberof PaymentClassWithoutExpandProperties
40
40
  */
41
- 'accountCode': string;
41
+ 'accountCode'?: string;
42
+ /**
43
+ * Partner code associated to that payment.
44
+ * @type {string}
45
+ * @memberof PaymentClassWithoutExpandProperties
46
+ */
47
+ 'partnerCode'?: string;
42
48
  /**
43
49
  * Amount to be paid in cents. 100 to charge 1€.
44
50
  * @type {number}
@@ -39,7 +39,13 @@ export interface PaymentClass {
39
39
  * @type {string}
40
40
  * @memberof PaymentClass
41
41
  */
42
- 'accountCode': string;
42
+ 'accountCode'?: string;
43
+ /**
44
+ * Partner code associated to that payment.
45
+ * @type {string}
46
+ * @memberof PaymentClass
47
+ */
48
+ 'partnerCode'?: string;
43
49
  /**
44
50
  * Amount to be paid in cents. 100 to charge 1€.
45
51
  * @type {number}
@@ -75,6 +75,12 @@ export interface PaymentMethodClass {
75
75
  * @memberof PaymentMethodClass
76
76
  */
77
77
  'details'?: object;
78
+ /**
79
+ * The account PSP customer associated to this payment method.
80
+ * @type {object}
81
+ * @memberof PaymentMethodClass
82
+ */
83
+ 'accountPspCustomer'?: object;
78
84
  /**
79
85
  * Optional field contain extra information
80
86
  * @type {object}
@@ -38,7 +38,13 @@ export interface PaymentReminderClass {
38
38
  * @type {string}
39
39
  * @memberof PaymentReminderClass
40
40
  */
41
- 'accountCode': string;
41
+ 'accountCode'?: string;
42
+ /**
43
+ * Unique identifier of related partner.
44
+ * @type {string}
45
+ * @memberof PaymentReminderClass
46
+ */
47
+ 'partnerCode'?: string;
42
48
  /**
43
49
  * Type of the invoice
44
50
  * @type {string}
@@ -0,0 +1,86 @@
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 { MandateReferenceClass } from './mandate-reference-class';
13
+ import { PaymentMethodClass } from './payment-method-class';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PolicyPaymentMethodClass
18
+ */
19
+ export interface PolicyPaymentMethodClass {
20
+ /**
21
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
22
+ * @type {number}
23
+ * @memberof PolicyPaymentMethodClass
24
+ */
25
+ 'id': number;
26
+ /**
27
+ * Unique identifier for the object.
28
+ * @type {string}
29
+ * @memberof PolicyPaymentMethodClass
30
+ */
31
+ 'code': string;
32
+ /**
33
+ * The unique identifier of the policy.
34
+ * @type {string}
35
+ * @memberof PolicyPaymentMethodClass
36
+ */
37
+ 'policyCode': string;
38
+ /**
39
+ * The active status of the policy payment method.
40
+ * @type {boolean}
41
+ * @memberof PolicyPaymentMethodClass
42
+ */
43
+ 'isActive': boolean;
44
+ /**
45
+ * Time at which the object was created.
46
+ * @type {string}
47
+ * @memberof PolicyPaymentMethodClass
48
+ */
49
+ 'createdAt': string;
50
+ /**
51
+ * Time at which the object was updated.
52
+ * @type {string}
53
+ * @memberof PolicyPaymentMethodClass
54
+ */
55
+ 'updatedAt': string;
56
+ /**
57
+ * Identifier of the user who created the record.
58
+ * @type {string}
59
+ * @memberof PolicyPaymentMethodClass
60
+ */
61
+ 'createdBy': string;
62
+ /**
63
+ * Identifier of the user who last updated the record.
64
+ * @type {string}
65
+ * @memberof PolicyPaymentMethodClass
66
+ */
67
+ 'updatedBy': string;
68
+ /**
69
+ * The payment method associated with the policy payment method.
70
+ * @type {PaymentMethodClass}
71
+ * @memberof PolicyPaymentMethodClass
72
+ */
73
+ 'paymentMethod': PaymentMethodClass;
74
+ /**
75
+ * Mandate reference ID for sepa debit payment methods
76
+ * @type {number}
77
+ * @memberof PolicyPaymentMethodClass
78
+ */
79
+ 'mandateReferenceId'?: number;
80
+ /**
81
+ * Mandate reference details for sepa debit payment methods
82
+ * @type {MandateReferenceClass}
83
+ * @memberof PolicyPaymentMethodClass
84
+ */
85
+ 'mandateReference'?: MandateReferenceClass;
86
+ }
@@ -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 });
@@ -39,7 +39,13 @@ export interface RefundClass {
39
39
  * @type {string}
40
40
  * @memberof RefundClass
41
41
  */
42
- 'accountCode': string;
42
+ 'accountCode'?: string;
43
+ /**
44
+ * Partner code associated with the payment.
45
+ * @type {string}
46
+ * @memberof RefundClass
47
+ */
48
+ 'partnerCode'?: string;
43
49
  /**
44
50
  * Amount that was refunded in cents. 100 to refund 1€.
45
51
  * @type {number}
@@ -75,4 +75,34 @@ export interface TenantBankAccountClassWithoutExpandProperties {
75
75
  * @memberof TenantBankAccountClassWithoutExpandProperties
76
76
  */
77
77
  'updatedBy': string;
78
+ /**
79
+ * Street address of the bank
80
+ * @type {string}
81
+ * @memberof TenantBankAccountClassWithoutExpandProperties
82
+ */
83
+ 'street'?: string;
84
+ /**
85
+ * House number of the bank
86
+ * @type {string}
87
+ * @memberof TenantBankAccountClassWithoutExpandProperties
88
+ */
89
+ 'houseNumber'?: string;
90
+ /**
91
+ * ZIP code of the bank
92
+ * @type {string}
93
+ * @memberof TenantBankAccountClassWithoutExpandProperties
94
+ */
95
+ 'zipCode'?: string;
96
+ /**
97
+ * City of the bank
98
+ * @type {string}
99
+ * @memberof TenantBankAccountClassWithoutExpandProperties
100
+ */
101
+ 'city'?: string;
102
+ /**
103
+ * Country of the bank
104
+ * @type {string}
105
+ * @memberof TenantBankAccountClassWithoutExpandProperties
106
+ */
107
+ 'country'?: string;
78
108
  }
@@ -82,4 +82,34 @@ export interface TenantBankAccountClass {
82
82
  * @memberof TenantBankAccountClass
83
83
  */
84
84
  'updatedBy': string;
85
+ /**
86
+ * Street address of the bank
87
+ * @type {string}
88
+ * @memberof TenantBankAccountClass
89
+ */
90
+ 'street'?: string;
91
+ /**
92
+ * House number of the bank
93
+ * @type {string}
94
+ * @memberof TenantBankAccountClass
95
+ */
96
+ 'houseNumber'?: string;
97
+ /**
98
+ * ZIP code of the bank
99
+ * @type {string}
100
+ * @memberof TenantBankAccountClass
101
+ */
102
+ 'zipCode'?: string;
103
+ /**
104
+ * City of the bank
105
+ * @type {string}
106
+ * @memberof TenantBankAccountClass
107
+ */
108
+ 'city'?: string;
109
+ /**
110
+ * Country of the bank
111
+ * @type {string}
112
+ * @memberof TenantBankAccountClass
113
+ */
114
+ 'country'?: string;
85
115
  }
@@ -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 UnlinkedBankTransactionResponseClass {
45
46
  * @memberof UnlinkedBankTransactionResponseClass
46
47
  */
47
48
  'messageReference'?: string;
49
+ /**
50
+ * Label of the transaction
51
+ * @type {string}
52
+ * @memberof UnlinkedBankTransactionResponseClass
53
+ */
54
+ 'label'?: UnlinkedBankTransactionResponseClassLabelEnum;
48
55
  /**
49
56
  * Currency of the transaction.
50
57
  * @type {string}
@@ -87,6 +94,12 @@ export interface UnlinkedBankTransactionResponseClass {
87
94
  * @memberof UnlinkedBankTransactionResponseClass
88
95
  */
89
96
  'isLinked': boolean;
97
+ /**
98
+ * The linked bank order object
99
+ * @type {BankOrderClass}
100
+ * @memberof UnlinkedBankTransactionResponseClass
101
+ */
102
+ 'linkedBankOrder'?: BankOrderClass;
90
103
  /**
91
104
  * The file format of the bank transaction
92
105
  * @type {string}
@@ -112,3 +125,8 @@ export interface UnlinkedBankTransactionResponseClass {
112
125
  */
113
126
  'updatedBy': string;
114
127
  }
128
+ export declare const UnlinkedBankTransactionResponseClassLabelEnum: {
129
+ readonly Automated: "automated";
130
+ readonly Manual: "manual";
131
+ };
132
+ export type UnlinkedBankTransactionResponseClassLabelEnum = typeof UnlinkedBankTransactionResponseClassLabelEnum[keyof typeof UnlinkedBankTransactionResponseClassLabelEnum];
@@ -13,3 +13,8 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.UnlinkedBankTransactionResponseClassLabelEnum = void 0;
17
+ exports.UnlinkedBankTransactionResponseClassLabelEnum = {
18
+ Automated: 'automated',
19
+ Manual: 'manual'
20
+ };
@@ -15,18 +15,6 @@
15
15
  * @interface UpdateBankOrderRequestDto
16
16
  */
17
17
  export interface UpdateBankOrderRequestDto {
18
- /**
19
- * Unique identifier for the object.
20
- * @type {string}
21
- * @memberof UpdateBankOrderRequestDto
22
- */
23
- 'code': string;
24
- /**
25
- * Amount for the bank order
26
- * @type {number}
27
- * @memberof UpdateBankOrderRequestDto
28
- */
29
- 'amount': number;
30
18
  /**
31
19
  * Bank order status
32
20
  * @type {string}
@@ -39,6 +27,12 @@ export interface UpdateBankOrderRequestDto {
39
27
  * @memberof UpdateBankOrderRequestDto
40
28
  */
41
29
  'description'?: string;
30
+ /**
31
+ * Financial account code associated with the bank order.
32
+ * @type {string}
33
+ * @memberof UpdateBankOrderRequestDto
34
+ */
35
+ 'financialAccountCode': string;
42
36
  /**
43
37
  * List of invoice IDs associated with bank order.
44
38
  * @type {Array<number>}
@@ -51,6 +45,12 @@ export interface UpdateBankOrderRequestDto {
51
45
  * @memberof UpdateBankOrderRequestDto
52
46
  */
53
47
  'executionDate': string;
48
+ /**
49
+ * Latest due date.
50
+ * @type {string}
51
+ * @memberof UpdateBankOrderRequestDto
52
+ */
53
+ 'dueDate': string;
54
54
  }
55
55
  export declare const UpdateBankOrderRequestDtoStatusEnum: {
56
56
  readonly Open: "open";
@@ -33,4 +33,34 @@ export interface UpdateTenantBankAccountRestRequestDto {
33
33
  * @memberof UpdateTenantBankAccountRestRequestDto
34
34
  */
35
35
  'bookingAccount': string;
36
+ /**
37
+ * Street address
38
+ * @type {string}
39
+ * @memberof UpdateTenantBankAccountRestRequestDto
40
+ */
41
+ 'street'?: string;
42
+ /**
43
+ * House number
44
+ * @type {string}
45
+ * @memberof UpdateTenantBankAccountRestRequestDto
46
+ */
47
+ 'houseNumber'?: string;
48
+ /**
49
+ * ZIP code
50
+ * @type {string}
51
+ * @memberof UpdateTenantBankAccountRestRequestDto
52
+ */
53
+ 'zipCode': string;
54
+ /**
55
+ * City
56
+ * @type {string}
57
+ * @memberof UpdateTenantBankAccountRestRequestDto
58
+ */
59
+ 'city': string;
60
+ /**
61
+ * Country
62
+ * @type {string}
63
+ * @memberof UpdateTenantBankAccountRestRequestDto
64
+ */
65
+ 'country': string;
36
66
  }
@@ -0,0 +1,30 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface ActivatePolicyPaymentMethodRequestDto
21
+ */
22
+ export interface ActivatePolicyPaymentMethodRequestDto {
23
+ /**
24
+ * Whether to trigger the Policy Payment Method Activated workflow event.
25
+ * @type {boolean}
26
+ * @memberof ActivatePolicyPaymentMethodRequestDto
27
+ */
28
+ 'shouldTriggerWorkflow'?: boolean;
29
+ }
30
+
@@ -13,6 +13,8 @@
13
13
  */
14
14
 
15
15
 
16
+ import { BankOrderXmlFileClass } from './bank-order-xml-file-class';
17
+ import { FinancialAccountClass } from './financial-account-class';
16
18
 
17
19
  /**
18
20
  *
@@ -63,11 +65,11 @@ export interface BankOrderClass {
63
65
  */
64
66
  'description'?: string;
65
67
  /**
66
- * Bank account identifier associated with the bank order.
67
- * @type {number}
68
+ * Financial account code associated with the bank order.
69
+ * @type {string}
68
70
  * @memberof BankOrderClass
69
71
  */
70
- 'bankAccountId': number;
72
+ 'financialAccountCode': string;
71
73
  /**
72
74
  * List of invoice IDs associated with bank order.
73
75
  * @type {Array<number>}
@@ -80,6 +82,12 @@ export interface BankOrderClass {
80
82
  * @memberof BankOrderClass
81
83
  */
82
84
  'executionDate': string;
85
+ /**
86
+ * Latest due date.
87
+ * @type {string}
88
+ * @memberof BankOrderClass
89
+ */
90
+ 'dueDate': string;
83
91
  /**
84
92
  * Time at which the object was created.
85
93
  * @type {string}
@@ -104,5 +112,17 @@ export interface BankOrderClass {
104
112
  * @memberof BankOrderClass
105
113
  */
106
114
  'updatedBy': string;
115
+ /**
116
+ * The financial account object that this bank order is belongs to
117
+ * @type {FinancialAccountClass}
118
+ * @memberof BankOrderClass
119
+ */
120
+ 'financialAccount'?: FinancialAccountClass;
121
+ /**
122
+ * The XML file associated with this bank order
123
+ * @type {BankOrderXmlFileClass}
124
+ * @memberof BankOrderClass
125
+ */
126
+ 'xmlFile'?: BankOrderXmlFileClass;
107
127
  }
108
128
 
@@ -0,0 +1,78 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface BankOrderXmlFileClass
21
+ */
22
+ export interface BankOrderXmlFileClass {
23
+ /**
24
+ * Unique identifier for the bank order XML file
25
+ * @type {number}
26
+ * @memberof BankOrderXmlFileClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * XML content of the bank order file
31
+ * @type {string}
32
+ * @memberof BankOrderXmlFileClass
33
+ */
34
+ 'xmlContent': string;
35
+ /**
36
+ * Original filename of the XML file
37
+ * @type {string}
38
+ * @memberof BankOrderXmlFileClass
39
+ */
40
+ 'fileName'?: string;
41
+ /**
42
+ * MIME type of the file
43
+ * @type {string}
44
+ * @memberof BankOrderXmlFileClass
45
+ */
46
+ 'mimeType'?: string;
47
+ /**
48
+ * Size of the file in bytes
49
+ * @type {number}
50
+ * @memberof BankOrderXmlFileClass
51
+ */
52
+ 'fileSize'?: number;
53
+ /**
54
+ * Timestamp when the record was created
55
+ * @type {string}
56
+ * @memberof BankOrderXmlFileClass
57
+ */
58
+ 'createdAt': string;
59
+ /**
60
+ * Timestamp when the record was last updated
61
+ * @type {string}
62
+ * @memberof BankOrderXmlFileClass
63
+ */
64
+ 'updatedAt': string;
65
+ /**
66
+ * User ID who created the record
67
+ * @type {string}
68
+ * @memberof BankOrderXmlFileClass
69
+ */
70
+ 'createdBy': string;
71
+ /**
72
+ * User ID who last updated the record
73
+ * @type {string}
74
+ * @memberof BankOrderXmlFileClass
75
+ */
76
+ 'updatedBy': string;
77
+ }
78
+