@emilgroup/payment-sdk 1.14.1-beta.7 → 1.14.1-beta.70

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 (151) hide show
  1. package/.openapi-generator/FILES +32 -1
  2. package/README.md +2 -2
  3. package/api/bank-orders-api.ts +24 -24
  4. package/api/billing-addresses-api.ts +677 -0
  5. package/api/credit-allocation-api.ts +456 -0
  6. package/api/payout-methods-api.ts +672 -0
  7. package/api/policy-payment-methods-api.ts +118 -0
  8. package/api/tenant-bank-account-api.ts +8 -8
  9. package/api.ts +6 -0
  10. package/base.ts +4 -0
  11. package/dist/api/bank-accounts-api.d.ts +6 -6
  12. package/dist/api/bank-orders-api.d.ts +29 -29
  13. package/dist/api/bank-orders-api.js +18 -18
  14. package/dist/api/bank-transaction-api.d.ts +6 -6
  15. package/dist/api/billing-addresses-api.d.ts +384 -0
  16. package/dist/api/billing-addresses-api.js +636 -0
  17. package/dist/api/credit-allocation-api.d.ts +263 -0
  18. package/dist/api/credit-allocation-api.js +445 -0
  19. package/dist/api/exceeding-credits-api.d.ts +2 -2
  20. package/dist/api/health-check-api.d.ts +1 -1
  21. package/dist/api/payment-methods-api.d.ts +3 -3
  22. package/dist/api/payment-reminders-api.d.ts +4 -4
  23. package/dist/api/payment-setup-api.d.ts +2 -2
  24. package/dist/api/payments-api.d.ts +4 -4
  25. package/dist/api/payout-methods-api.d.ts +382 -0
  26. package/dist/api/payout-methods-api.js +635 -0
  27. package/dist/api/policy-payment-methods-api.d.ts +67 -2
  28. package/dist/api/policy-payment-methods-api.js +99 -0
  29. package/dist/api/refunds-api.d.ts +3 -3
  30. package/dist/api/tenant-bank-account-api.d.ts +13 -13
  31. package/dist/api/tenant-bank-account-api.js +6 -6
  32. package/dist/api/webhooks-api.d.ts +1 -1
  33. package/dist/api.d.ts +3 -0
  34. package/dist/api.js +3 -0
  35. package/dist/base.js +3 -1
  36. package/dist/common.d.ts +1 -1
  37. package/dist/models/activate-policy-payment-method-request-dto.d.ts +24 -0
  38. package/dist/models/activate-policy-payment-method-request-dto.js +15 -0
  39. package/dist/models/bank-order-class.d.ts +9 -9
  40. package/dist/models/bank-order-entity.d.ts +156 -0
  41. package/dist/models/bank-order-entity.js +29 -0
  42. package/dist/models/bank-order-xml-file-entity.d.ts +85 -0
  43. package/dist/models/bank-order-xml-file-entity.js +15 -0
  44. package/dist/models/bank-transaction-entity.d.ts +179 -0
  45. package/dist/models/{financial-account-class.js → bank-transaction-entity.js} +4 -8
  46. package/dist/models/bank-transaction-invoice-entity.d.ts +98 -0
  47. package/dist/models/bank-transaction-invoice-entity.js +15 -0
  48. package/dist/models/billing-address-class.d.ts +108 -0
  49. package/dist/models/billing-address-class.js +15 -0
  50. package/dist/models/billing-address-dto.d.ts +6 -0
  51. package/dist/models/create-bank-order-request-dto.d.ts +6 -5
  52. package/dist/models/create-bank-order-request-dto.js +2 -1
  53. package/dist/models/create-billing-address-request-dto.d.ts +66 -0
  54. package/dist/models/create-billing-address-request-dto.js +15 -0
  55. package/dist/models/create-billing-address-response-class.d.ts +25 -0
  56. package/dist/models/create-billing-address-response-class.js +15 -0
  57. package/dist/models/create-credit-allocation-request-dto.d.ts +54 -0
  58. package/dist/models/create-credit-allocation-request-dto.js +21 -0
  59. package/dist/models/create-credit-allocation-response-class.d.ts +25 -0
  60. package/dist/models/create-credit-allocation-response-class.js +15 -0
  61. package/dist/models/create-payout-method-request-dto.d.ts +60 -0
  62. package/dist/models/create-payout-method-request-dto.js +15 -0
  63. package/dist/models/create-payout-method-response-class.d.ts +25 -0
  64. package/dist/models/create-payout-method-response-class.js +15 -0
  65. package/dist/models/create-tenant-bank-account-request-dto.d.ts +57 -1
  66. package/dist/models/create-tenant-bank-account-request-dto.js +8 -0
  67. package/dist/models/credit-allocation-class.d.ts +115 -0
  68. package/dist/models/credit-allocation-class.js +21 -0
  69. package/dist/models/credit-allocation-entity.d.ts +135 -0
  70. package/dist/models/credit-allocation-entity.js +34 -0
  71. package/dist/models/exceeding-credit-class.d.ts +6 -0
  72. package/dist/models/exceeding-credit-entity.d.ts +148 -0
  73. package/dist/models/exceeding-credit-entity.js +29 -0
  74. package/dist/models/get-billing-address-response-class.d.ts +25 -0
  75. package/dist/models/get-billing-address-response-class.js +15 -0
  76. package/dist/models/get-credit-allocation-response-class.d.ts +25 -0
  77. package/dist/models/get-credit-allocation-response-class.js +15 -0
  78. package/dist/models/get-payout-method-response-class.d.ts +25 -0
  79. package/dist/models/get-payout-method-response-class.js +15 -0
  80. package/dist/models/index.d.ts +29 -1
  81. package/dist/models/index.js +29 -1
  82. package/dist/models/invoice-match-suggestion-entity.d.ts +103 -0
  83. package/dist/models/invoice-match-suggestion-entity.js +15 -0
  84. package/dist/models/list-billing-addresses-response-class.d.ts +43 -0
  85. package/dist/models/list-billing-addresses-response-class.js +15 -0
  86. package/dist/models/list-credit-allocations-response-class.d.ts +43 -0
  87. package/dist/models/list-credit-allocations-response-class.js +15 -0
  88. package/dist/models/list-payout-methods-response-class.d.ts +43 -0
  89. package/dist/models/list-payout-methods-response-class.js +15 -0
  90. package/dist/models/payment-entity.d.ts +133 -0
  91. package/dist/models/payment-entity.js +15 -0
  92. package/dist/models/payout-method-class.d.ts +115 -0
  93. package/dist/models/payout-method-class.js +15 -0
  94. package/dist/models/suggestion-generation-progress-entity.d.ts +86 -0
  95. package/dist/models/suggestion-generation-progress-entity.js +22 -0
  96. package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +56 -0
  97. package/dist/models/tenant-bank-account-class-without-expand-properties.js +8 -0
  98. package/dist/models/tenant-bank-account-class.d.ts +56 -0
  99. package/dist/models/tenant-bank-account-class.js +8 -0
  100. package/dist/models/tenant-bank-account-entity.d.ts +153 -0
  101. package/dist/models/tenant-bank-account-entity.js +23 -0
  102. package/dist/models/transaction-entity.d.ts +112 -0
  103. package/dist/models/transaction-entity.js +23 -0
  104. package/dist/models/update-bank-order-request-dto.d.ts +5 -5
  105. package/dist/models/update-billing-address-request-dto.d.ts +66 -0
  106. package/dist/models/update-billing-address-request-dto.js +15 -0
  107. package/dist/models/update-billing-address-response-class.d.ts +25 -0
  108. package/dist/models/update-billing-address-response-class.js +15 -0
  109. package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +57 -1
  110. package/dist/models/update-tenant-bank-account-rest-request-dto.js +8 -0
  111. package/models/activate-policy-payment-method-request-dto.ts +30 -0
  112. package/models/bank-order-class.ts +9 -9
  113. package/models/bank-order-entity.ts +166 -0
  114. package/models/bank-order-xml-file-entity.ts +91 -0
  115. package/models/bank-transaction-entity.ts +188 -0
  116. package/models/bank-transaction-invoice-entity.ts +104 -0
  117. package/models/billing-address-class.ts +114 -0
  118. package/models/billing-address-dto.ts +6 -0
  119. package/models/create-bank-order-request-dto.ts +7 -6
  120. package/models/create-billing-address-request-dto.ts +72 -0
  121. package/models/create-billing-address-response-class.ts +31 -0
  122. package/models/create-credit-allocation-request-dto.ts +63 -0
  123. package/models/create-credit-allocation-response-class.ts +31 -0
  124. package/models/create-payout-method-request-dto.ts +66 -0
  125. package/models/create-payout-method-response-class.ts +31 -0
  126. package/models/create-tenant-bank-account-request-dto.ts +60 -1
  127. package/models/credit-allocation-class.ts +124 -0
  128. package/models/credit-allocation-entity.ts +145 -0
  129. package/models/exceeding-credit-class.ts +6 -0
  130. package/models/exceeding-credit-entity.ts +157 -0
  131. package/models/get-billing-address-response-class.ts +31 -0
  132. package/models/get-credit-allocation-response-class.ts +31 -0
  133. package/models/get-payout-method-response-class.ts +31 -0
  134. package/models/index.ts +29 -1
  135. package/models/invoice-match-suggestion-entity.ts +109 -0
  136. package/models/list-billing-addresses-response-class.ts +49 -0
  137. package/models/list-credit-allocations-response-class.ts +49 -0
  138. package/models/list-payout-methods-response-class.ts +49 -0
  139. package/models/payment-entity.ts +139 -0
  140. package/models/{financial-account-class.ts → payout-method-class.ts} +48 -47
  141. package/models/suggestion-generation-progress-entity.ts +95 -0
  142. package/models/tenant-bank-account-class-without-expand-properties.ts +59 -0
  143. package/models/tenant-bank-account-class.ts +59 -0
  144. package/models/tenant-bank-account-entity.ts +162 -0
  145. package/models/transaction-entity.ts +121 -0
  146. package/models/update-bank-order-request-dto.ts +5 -5
  147. package/models/update-billing-address-request-dto.ts +72 -0
  148. package/models/update-billing-address-response-class.ts +31 -0
  149. package/models/update-tenant-bank-account-rest-request-dto.ts +60 -1
  150. package/package.json +2 -2
  151. package/dist/models/financial-account-class.d.ts +0 -111
@@ -0,0 +1,135 @@
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 { ExceedingCreditEntity } from './exceeding-credit-entity';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreditAllocationEntity
17
+ */
18
+ export interface CreditAllocationEntity {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof CreditAllocationEntity
23
+ */
24
+ 'id': number;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof CreditAllocationEntity
29
+ */
30
+ 'code': string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof CreditAllocationEntity
35
+ */
36
+ 'policyCode': string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof CreditAllocationEntity
41
+ */
42
+ 'policyNumber': string;
43
+ /**
44
+ *
45
+ * @type {number}
46
+ * @memberof CreditAllocationEntity
47
+ */
48
+ 'allocationAmount': number;
49
+ /**
50
+ *
51
+ * @type {Array<string>}
52
+ * @memberof CreditAllocationEntity
53
+ */
54
+ 'exceedingCreditCodes': Array<string>;
55
+ /**
56
+ *
57
+ * @type {Array<ExceedingCreditEntity>}
58
+ * @memberof CreditAllocationEntity
59
+ */
60
+ 'exceedingCredits': Array<ExceedingCreditEntity>;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof CreditAllocationEntity
65
+ */
66
+ 'allocationCurrency': CreditAllocationEntityAllocationCurrencyEnum;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof CreditAllocationEntity
71
+ */
72
+ 'allocationType': CreditAllocationEntityAllocationTypeEnum;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof CreditAllocationEntity
77
+ */
78
+ 'financialAccountCode'?: string;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof CreditAllocationEntity
83
+ */
84
+ 'bookingDate': string;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof CreditAllocationEntity
89
+ */
90
+ 'createdAt': string;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof CreditAllocationEntity
95
+ */
96
+ 'updatedAt': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof CreditAllocationEntity
101
+ */
102
+ 'deletedAt'?: string;
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof CreditAllocationEntity
107
+ */
108
+ 'owner': string;
109
+ /**
110
+ *
111
+ * @type {string}
112
+ * @memberof CreditAllocationEntity
113
+ */
114
+ 'tenantHierarchy': string;
115
+ }
116
+ export declare const CreditAllocationEntityAllocationCurrencyEnum: {
117
+ readonly Eur: "EUR";
118
+ readonly Usd: "USD";
119
+ readonly Gbp: "GBP";
120
+ readonly Chf: "CHF";
121
+ readonly Pln: "PLN";
122
+ readonly Aud: "AUD";
123
+ readonly Cad: "CAD";
124
+ readonly Ddk: "DDK";
125
+ readonly Huf: "HUF";
126
+ readonly Nok: "NOK";
127
+ readonly Sek: "SEK";
128
+ };
129
+ export type CreditAllocationEntityAllocationCurrencyEnum = typeof CreditAllocationEntityAllocationCurrencyEnum[keyof typeof CreditAllocationEntityAllocationCurrencyEnum];
130
+ export declare const CreditAllocationEntityAllocationTypeEnum: {
131
+ readonly NextInvoice: "next_invoice";
132
+ readonly LastInvoice: "last_invoice";
133
+ readonly SeparateRefund: "separate_refund";
134
+ };
135
+ export type CreditAllocationEntityAllocationTypeEnum = typeof CreditAllocationEntityAllocationTypeEnum[keyof typeof CreditAllocationEntityAllocationTypeEnum];
@@ -0,0 +1,34 @@
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.CreditAllocationEntityAllocationTypeEnum = exports.CreditAllocationEntityAllocationCurrencyEnum = void 0;
17
+ exports.CreditAllocationEntityAllocationCurrencyEnum = {
18
+ Eur: 'EUR',
19
+ Usd: 'USD',
20
+ Gbp: 'GBP',
21
+ Chf: 'CHF',
22
+ Pln: 'PLN',
23
+ Aud: 'AUD',
24
+ Cad: 'CAD',
25
+ Ddk: 'DDK',
26
+ Huf: 'HUF',
27
+ Nok: 'NOK',
28
+ Sek: 'SEK'
29
+ };
30
+ exports.CreditAllocationEntityAllocationTypeEnum = {
31
+ NextInvoice: 'next_invoice',
32
+ LastInvoice: 'last_invoice',
33
+ SeparateRefund: 'separate_refund'
34
+ };
@@ -75,6 +75,12 @@ export interface ExceedingCreditClass {
75
75
  * @memberof ExceedingCreditClass
76
76
  */
77
77
  'policyCode': string;
78
+ /**
79
+ * The allocation ID if this credit has been allocated.
80
+ * @type {number}
81
+ * @memberof ExceedingCreditClass
82
+ */
83
+ 'allocationId'?: number;
78
84
  /**
79
85
  * Time at which the object was created.
80
86
  * @type {string}
@@ -0,0 +1,148 @@
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 { BankTransactionEntity } from './bank-transaction-entity';
13
+ import { CreditAllocationEntity } from './credit-allocation-entity';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface ExceedingCreditEntity
18
+ */
19
+ export interface ExceedingCreditEntity {
20
+ /**
21
+ *
22
+ * @type {number}
23
+ * @memberof ExceedingCreditEntity
24
+ */
25
+ 'id': number;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof ExceedingCreditEntity
30
+ */
31
+ 'code': string;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof ExceedingCreditEntity
36
+ */
37
+ 'description'?: string;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof ExceedingCreditEntity
42
+ */
43
+ 'currency': ExceedingCreditEntityCurrencyEnum;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof ExceedingCreditEntity
48
+ */
49
+ 'policyCode': string;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof ExceedingCreditEntity
54
+ */
55
+ 'policyNumber': string;
56
+ /**
57
+ *
58
+ * @type {number}
59
+ * @memberof ExceedingCreditEntity
60
+ */
61
+ 'bankTransactionId': number;
62
+ /**
63
+ *
64
+ * @type {BankTransactionEntity}
65
+ * @memberof ExceedingCreditEntity
66
+ */
67
+ 'bankTransaction': BankTransactionEntity;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof ExceedingCreditEntity
72
+ */
73
+ 'bankTransactionCode': string;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof ExceedingCreditEntity
78
+ */
79
+ 'invoiceCode': string;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof ExceedingCreditEntity
84
+ */
85
+ 'invoiceNumber': string;
86
+ /**
87
+ *
88
+ * @type {number}
89
+ * @memberof ExceedingCreditEntity
90
+ */
91
+ 'amount': number;
92
+ /**
93
+ *
94
+ * @type {number}
95
+ * @memberof ExceedingCreditEntity
96
+ */
97
+ 'allocationId'?: number;
98
+ /**
99
+ *
100
+ * @type {CreditAllocationEntity}
101
+ * @memberof ExceedingCreditEntity
102
+ */
103
+ 'creditAllocation'?: CreditAllocationEntity;
104
+ /**
105
+ *
106
+ * @type {string}
107
+ * @memberof ExceedingCreditEntity
108
+ */
109
+ 'createdAt': string;
110
+ /**
111
+ *
112
+ * @type {string}
113
+ * @memberof ExceedingCreditEntity
114
+ */
115
+ 'updatedAt': string;
116
+ /**
117
+ *
118
+ * @type {string}
119
+ * @memberof ExceedingCreditEntity
120
+ */
121
+ 'deletedAt'?: string;
122
+ /**
123
+ *
124
+ * @type {string}
125
+ * @memberof ExceedingCreditEntity
126
+ */
127
+ 'owner': string;
128
+ /**
129
+ *
130
+ * @type {string}
131
+ * @memberof ExceedingCreditEntity
132
+ */
133
+ 'tenantHierarchy': string;
134
+ }
135
+ export declare const ExceedingCreditEntityCurrencyEnum: {
136
+ readonly Eur: "EUR";
137
+ readonly Usd: "USD";
138
+ readonly Gbp: "GBP";
139
+ readonly Chf: "CHF";
140
+ readonly Pln: "PLN";
141
+ readonly Aud: "AUD";
142
+ readonly Cad: "CAD";
143
+ readonly Ddk: "DDK";
144
+ readonly Huf: "HUF";
145
+ readonly Nok: "NOK";
146
+ readonly Sek: "SEK";
147
+ };
148
+ export type ExceedingCreditEntityCurrencyEnum = typeof ExceedingCreditEntityCurrencyEnum[keyof typeof ExceedingCreditEntityCurrencyEnum];
@@ -0,0 +1,29 @@
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.ExceedingCreditEntityCurrencyEnum = void 0;
17
+ exports.ExceedingCreditEntityCurrencyEnum = {
18
+ Eur: 'EUR',
19
+ Usd: 'USD',
20
+ Gbp: 'GBP',
21
+ Chf: 'CHF',
22
+ Pln: 'PLN',
23
+ Aud: 'AUD',
24
+ Cad: 'CAD',
25
+ Ddk: 'DDK',
26
+ Huf: 'HUF',
27
+ Nok: 'NOK',
28
+ Sek: 'SEK'
29
+ };
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { BillingAddressClass } from './billing-address-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetBillingAddressResponseClass
17
+ */
18
+ export interface GetBillingAddressResponseClass {
19
+ /**
20
+ * The billing address
21
+ * @type {BillingAddressClass}
22
+ * @memberof GetBillingAddressResponseClass
23
+ */
24
+ 'billingAddress': BillingAddressClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
6
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { CreditAllocationClass } from './credit-allocation-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetCreditAllocationResponseClass
17
+ */
18
+ export interface GetCreditAllocationResponseClass {
19
+ /**
20
+ * Credit allocation entry.
21
+ * @type {CreditAllocationClass}
22
+ * @memberof GetCreditAllocationResponseClass
23
+ */
24
+ 'creditAllocation': CreditAllocationClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
6
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PayoutMethodClass } from './payout-method-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetPayoutMethodResponseClass
17
+ */
18
+ export interface GetPayoutMethodResponseClass {
19
+ /**
20
+ * The payout method
21
+ * @type {PayoutMethodClass}
22
+ * @memberof GetPayoutMethodResponseClass
23
+ */
24
+ 'payoutMethod': PayoutMethodClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
6
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,11 +1,17 @@
1
+ export * from './activate-policy-payment-method-request-dto';
1
2
  export * from './bank-account-class';
2
3
  export * from './bank-account-class-without-expand-properties';
3
4
  export * from './bank-order-class';
5
+ export * from './bank-order-entity';
4
6
  export * from './bank-order-xml-file-class';
7
+ export * from './bank-order-xml-file-entity';
5
8
  export * from './bank-transaction-class';
6
9
  export * from './bank-transaction-class-without-expand-properties';
10
+ export * from './bank-transaction-entity';
7
11
  export * from './bank-transaction-invoice-class';
12
+ export * from './bank-transaction-invoice-entity';
8
13
  export * from './bank-transfer-dto';
14
+ export * from './billing-address-class';
9
15
  export * from './billing-address-dto';
10
16
  export * from './billing-profile-dto';
11
17
  export * from './billing-profile-limited-response-dto';
@@ -20,6 +26,10 @@ export * from './create-bank-account-request-dto';
20
26
  export * from './create-bank-account-response-class';
21
27
  export * from './create-bank-order-request-dto';
22
28
  export * from './create-bank-order-response-class';
29
+ export * from './create-billing-address-request-dto';
30
+ export * from './create-billing-address-response-class';
31
+ export * from './create-credit-allocation-request-dto';
32
+ export * from './create-credit-allocation-response-class';
23
33
  export * from './create-payment-method-response-class';
24
34
  export * from './create-payment-order-dto';
25
35
  export * from './create-payment-order-request-dto';
@@ -27,6 +37,8 @@ export * from './create-payment-reminder-request-dto';
27
37
  export * from './create-payment-reminder-response-class';
28
38
  export * from './create-payment-request-dto';
29
39
  export * from './create-payment-response-class';
40
+ export * from './create-payout-method-request-dto';
41
+ export * from './create-payout-method-response-class';
30
42
  export * from './create-policy-payment-method-request-dto';
31
43
  export * from './create-policy-payment-method-response-class';
32
44
  export * from './create-psp-payment-method-request-dto';
@@ -34,20 +46,25 @@ export * from './create-refund-request-dto';
34
46
  export * from './create-refund-response-class';
35
47
  export * from './create-tenant-bank-account-request-dto';
36
48
  export * from './create-tenant-bank-account-response-class';
49
+ export * from './credit-allocation-class';
50
+ export * from './credit-allocation-entity';
37
51
  export * from './deactivate-payment-reminder-request-dto';
38
52
  export * from './deactivate-payment-reminder-response-class';
39
53
  export * from './deactivated-payment-reminder-class';
40
54
  export * from './eis-sepa-debit-dto';
41
55
  export * from './exceeding-credit-class';
42
- export * from './financial-account-class';
56
+ export * from './exceeding-credit-entity';
43
57
  export * from './generate-invoice-match-suggestions-response-class';
44
58
  export * from './get-bank-account-response-class';
45
59
  export * from './get-bank-order-response-class';
46
60
  export * from './get-bank-transactions-response-class';
61
+ export * from './get-billing-address-response-class';
62
+ export * from './get-credit-allocation-response-class';
47
63
  export * from './get-exceeding-credit-response-class';
48
64
  export * from './get-payment-method-response-class';
49
65
  export * from './get-payment-reminder-response-class';
50
66
  export * from './get-payment-response-class';
67
+ export * from './get-payout-method-response-class';
51
68
  export * from './get-refund-response-class';
52
69
  export * from './get-tenant-bank-account-response-class';
53
70
  export * from './import-bank-transactions-response-class';
@@ -64,15 +81,19 @@ export * from './inline-response200';
64
81
  export * from './inline-response503';
65
82
  export * from './invoice-allocation-dto';
66
83
  export * from './invoice-match-suggestion-class';
84
+ export * from './invoice-match-suggestion-entity';
67
85
  export * from './link-bank-transaction-request-dto-rest';
68
86
  export * from './link-bank-transactions-response-class';
69
87
  export * from './list-bank-accounts-response-class';
70
88
  export * from './list-bank-orders-response-class';
71
89
  export * from './list-bank-transactions-response-class';
90
+ export * from './list-billing-addresses-response-class';
91
+ export * from './list-credit-allocations-response-class';
72
92
  export * from './list-exceeding-credits-response-class';
73
93
  export * from './list-payment-methods-response-class';
74
94
  export * from './list-payment-reminders-response-class';
75
95
  export * from './list-payments-response-class';
96
+ export * from './list-payout-methods-response-class';
76
97
  export * from './list-policy-payment-methods-response-class';
77
98
  export * from './list-refunds-response-class';
78
99
  export * from './list-tenant-bank-account-response-class';
@@ -81,8 +102,10 @@ export * from './mandate-hash-data-dto';
81
102
  export * from './mandate-reference-class';
82
103
  export * from './payment-class';
83
104
  export * from './payment-class-without-expand-properties';
105
+ export * from './payment-entity';
84
106
  export * from './payment-method-class';
85
107
  export * from './payment-reminder-class';
108
+ export * from './payout-method-class';
86
109
  export * from './policy-payment-method-class';
87
110
  export * from './primary-bank-account-response-class';
88
111
  export * from './refund-class';
@@ -91,9 +114,12 @@ export * from './sepa-direct-dto';
91
114
  export * from './set-primary-bank-account-request-dto-rest';
92
115
  export * from './shared-transaction-class';
93
116
  export * from './suggestion-generation-progress-class';
117
+ export * from './suggestion-generation-progress-entity';
94
118
  export * from './symphony-profile-limited-response-dto';
95
119
  export * from './tenant-bank-account-class';
96
120
  export * from './tenant-bank-account-class-without-expand-properties';
121
+ export * from './tenant-bank-account-entity';
122
+ export * from './transaction-entity';
97
123
  export * from './unlink-bank-transactions-response-class';
98
124
  export * from './unlinked-bank-transaction-response-class';
99
125
  export * from './update-bank-account-request-dto';
@@ -101,6 +127,8 @@ export * from './update-bank-account-request-dto-rest';
101
127
  export * from './update-bank-account-response-class';
102
128
  export * from './update-bank-order-request-dto';
103
129
  export * from './update-bank-order-response-class';
130
+ export * from './update-billing-address-request-dto';
131
+ export * from './update-billing-address-response-class';
104
132
  export * from './update-tenant-bank-account-response-class';
105
133
  export * from './update-tenant-bank-account-rest-request-dto';
106
134
  export * from './validate-pspconfig-request-dto';