@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
@@ -14,14 +14,20 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./activate-policy-payment-method-request-dto"), exports);
17
18
  __exportStar(require("./bank-account-class"), exports);
18
19
  __exportStar(require("./bank-account-class-without-expand-properties"), exports);
19
20
  __exportStar(require("./bank-order-class"), exports);
21
+ __exportStar(require("./bank-order-entity"), exports);
20
22
  __exportStar(require("./bank-order-xml-file-class"), exports);
23
+ __exportStar(require("./bank-order-xml-file-entity"), exports);
21
24
  __exportStar(require("./bank-transaction-class"), exports);
22
25
  __exportStar(require("./bank-transaction-class-without-expand-properties"), exports);
26
+ __exportStar(require("./bank-transaction-entity"), exports);
23
27
  __exportStar(require("./bank-transaction-invoice-class"), exports);
28
+ __exportStar(require("./bank-transaction-invoice-entity"), exports);
24
29
  __exportStar(require("./bank-transfer-dto"), exports);
30
+ __exportStar(require("./billing-address-class"), exports);
25
31
  __exportStar(require("./billing-address-dto"), exports);
26
32
  __exportStar(require("./billing-profile-dto"), exports);
27
33
  __exportStar(require("./billing-profile-limited-response-dto"), exports);
@@ -36,6 +42,10 @@ __exportStar(require("./create-bank-account-request-dto"), exports);
36
42
  __exportStar(require("./create-bank-account-response-class"), exports);
37
43
  __exportStar(require("./create-bank-order-request-dto"), exports);
38
44
  __exportStar(require("./create-bank-order-response-class"), exports);
45
+ __exportStar(require("./create-billing-address-request-dto"), exports);
46
+ __exportStar(require("./create-billing-address-response-class"), exports);
47
+ __exportStar(require("./create-credit-allocation-request-dto"), exports);
48
+ __exportStar(require("./create-credit-allocation-response-class"), exports);
39
49
  __exportStar(require("./create-payment-method-response-class"), exports);
40
50
  __exportStar(require("./create-payment-order-dto"), exports);
41
51
  __exportStar(require("./create-payment-order-request-dto"), exports);
@@ -43,6 +53,8 @@ __exportStar(require("./create-payment-reminder-request-dto"), exports);
43
53
  __exportStar(require("./create-payment-reminder-response-class"), exports);
44
54
  __exportStar(require("./create-payment-request-dto"), exports);
45
55
  __exportStar(require("./create-payment-response-class"), exports);
56
+ __exportStar(require("./create-payout-method-request-dto"), exports);
57
+ __exportStar(require("./create-payout-method-response-class"), exports);
46
58
  __exportStar(require("./create-policy-payment-method-request-dto"), exports);
47
59
  __exportStar(require("./create-policy-payment-method-response-class"), exports);
48
60
  __exportStar(require("./create-psp-payment-method-request-dto"), exports);
@@ -50,20 +62,25 @@ __exportStar(require("./create-refund-request-dto"), exports);
50
62
  __exportStar(require("./create-refund-response-class"), exports);
51
63
  __exportStar(require("./create-tenant-bank-account-request-dto"), exports);
52
64
  __exportStar(require("./create-tenant-bank-account-response-class"), exports);
65
+ __exportStar(require("./credit-allocation-class"), exports);
66
+ __exportStar(require("./credit-allocation-entity"), exports);
53
67
  __exportStar(require("./deactivate-payment-reminder-request-dto"), exports);
54
68
  __exportStar(require("./deactivate-payment-reminder-response-class"), exports);
55
69
  __exportStar(require("./deactivated-payment-reminder-class"), exports);
56
70
  __exportStar(require("./eis-sepa-debit-dto"), exports);
57
71
  __exportStar(require("./exceeding-credit-class"), exports);
58
- __exportStar(require("./financial-account-class"), exports);
72
+ __exportStar(require("./exceeding-credit-entity"), exports);
59
73
  __exportStar(require("./generate-invoice-match-suggestions-response-class"), exports);
60
74
  __exportStar(require("./get-bank-account-response-class"), exports);
61
75
  __exportStar(require("./get-bank-order-response-class"), exports);
62
76
  __exportStar(require("./get-bank-transactions-response-class"), exports);
77
+ __exportStar(require("./get-billing-address-response-class"), exports);
78
+ __exportStar(require("./get-credit-allocation-response-class"), exports);
63
79
  __exportStar(require("./get-exceeding-credit-response-class"), exports);
64
80
  __exportStar(require("./get-payment-method-response-class"), exports);
65
81
  __exportStar(require("./get-payment-reminder-response-class"), exports);
66
82
  __exportStar(require("./get-payment-response-class"), exports);
83
+ __exportStar(require("./get-payout-method-response-class"), exports);
67
84
  __exportStar(require("./get-refund-response-class"), exports);
68
85
  __exportStar(require("./get-tenant-bank-account-response-class"), exports);
69
86
  __exportStar(require("./import-bank-transactions-response-class"), exports);
@@ -80,15 +97,19 @@ __exportStar(require("./inline-response200"), exports);
80
97
  __exportStar(require("./inline-response503"), exports);
81
98
  __exportStar(require("./invoice-allocation-dto"), exports);
82
99
  __exportStar(require("./invoice-match-suggestion-class"), exports);
100
+ __exportStar(require("./invoice-match-suggestion-entity"), exports);
83
101
  __exportStar(require("./link-bank-transaction-request-dto-rest"), exports);
84
102
  __exportStar(require("./link-bank-transactions-response-class"), exports);
85
103
  __exportStar(require("./list-bank-accounts-response-class"), exports);
86
104
  __exportStar(require("./list-bank-orders-response-class"), exports);
87
105
  __exportStar(require("./list-bank-transactions-response-class"), exports);
106
+ __exportStar(require("./list-billing-addresses-response-class"), exports);
107
+ __exportStar(require("./list-credit-allocations-response-class"), exports);
88
108
  __exportStar(require("./list-exceeding-credits-response-class"), exports);
89
109
  __exportStar(require("./list-payment-methods-response-class"), exports);
90
110
  __exportStar(require("./list-payment-reminders-response-class"), exports);
91
111
  __exportStar(require("./list-payments-response-class"), exports);
112
+ __exportStar(require("./list-payout-methods-response-class"), exports);
92
113
  __exportStar(require("./list-policy-payment-methods-response-class"), exports);
93
114
  __exportStar(require("./list-refunds-response-class"), exports);
94
115
  __exportStar(require("./list-tenant-bank-account-response-class"), exports);
@@ -97,8 +118,10 @@ __exportStar(require("./mandate-hash-data-dto"), exports);
97
118
  __exportStar(require("./mandate-reference-class"), exports);
98
119
  __exportStar(require("./payment-class"), exports);
99
120
  __exportStar(require("./payment-class-without-expand-properties"), exports);
121
+ __exportStar(require("./payment-entity"), exports);
100
122
  __exportStar(require("./payment-method-class"), exports);
101
123
  __exportStar(require("./payment-reminder-class"), exports);
124
+ __exportStar(require("./payout-method-class"), exports);
102
125
  __exportStar(require("./policy-payment-method-class"), exports);
103
126
  __exportStar(require("./primary-bank-account-response-class"), exports);
104
127
  __exportStar(require("./refund-class"), exports);
@@ -107,9 +130,12 @@ __exportStar(require("./sepa-direct-dto"), exports);
107
130
  __exportStar(require("./set-primary-bank-account-request-dto-rest"), exports);
108
131
  __exportStar(require("./shared-transaction-class"), exports);
109
132
  __exportStar(require("./suggestion-generation-progress-class"), exports);
133
+ __exportStar(require("./suggestion-generation-progress-entity"), exports);
110
134
  __exportStar(require("./symphony-profile-limited-response-dto"), exports);
111
135
  __exportStar(require("./tenant-bank-account-class"), exports);
112
136
  __exportStar(require("./tenant-bank-account-class-without-expand-properties"), exports);
137
+ __exportStar(require("./tenant-bank-account-entity"), exports);
138
+ __exportStar(require("./transaction-entity"), exports);
113
139
  __exportStar(require("./unlink-bank-transactions-response-class"), exports);
114
140
  __exportStar(require("./unlinked-bank-transaction-response-class"), exports);
115
141
  __exportStar(require("./update-bank-account-request-dto"), exports);
@@ -117,6 +143,8 @@ __exportStar(require("./update-bank-account-request-dto-rest"), exports);
117
143
  __exportStar(require("./update-bank-account-response-class"), exports);
118
144
  __exportStar(require("./update-bank-order-request-dto"), exports);
119
145
  __exportStar(require("./update-bank-order-response-class"), exports);
146
+ __exportStar(require("./update-billing-address-request-dto"), exports);
147
+ __exportStar(require("./update-billing-address-response-class"), exports);
120
148
  __exportStar(require("./update-tenant-bank-account-response-class"), exports);
121
149
  __exportStar(require("./update-tenant-bank-account-rest-request-dto"), exports);
122
150
  __exportStar(require("./validate-pspconfig-request-dto"), exports);
@@ -0,0 +1,103 @@
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
+ /**
14
+ *
15
+ * @export
16
+ * @interface InvoiceMatchSuggestionEntity
17
+ */
18
+ export interface InvoiceMatchSuggestionEntity {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof InvoiceMatchSuggestionEntity
23
+ */
24
+ 'id': number;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof InvoiceMatchSuggestionEntity
29
+ */
30
+ 'code': string;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof InvoiceMatchSuggestionEntity
35
+ */
36
+ 'bankTransactionId': number;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof InvoiceMatchSuggestionEntity
41
+ */
42
+ 'invoiceCode': string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof InvoiceMatchSuggestionEntity
47
+ */
48
+ 'invoiceNumber': string;
49
+ /**
50
+ *
51
+ * @type {number}
52
+ * @memberof InvoiceMatchSuggestionEntity
53
+ */
54
+ 'confidenceScore': number;
55
+ /**
56
+ *
57
+ * @type {object}
58
+ * @memberof InvoiceMatchSuggestionEntity
59
+ */
60
+ 'matchCriteria'?: object;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof InvoiceMatchSuggestionEntity
65
+ */
66
+ 'strategy': string;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof InvoiceMatchSuggestionEntity
71
+ */
72
+ 'owner': string;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof InvoiceMatchSuggestionEntity
77
+ */
78
+ 'tenantHierarchy': string;
79
+ /**
80
+ *
81
+ * @type {BankTransactionEntity}
82
+ * @memberof InvoiceMatchSuggestionEntity
83
+ */
84
+ 'bankTransaction': BankTransactionEntity;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof InvoiceMatchSuggestionEntity
89
+ */
90
+ 'createdAt': string;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof InvoiceMatchSuggestionEntity
95
+ */
96
+ 'updatedAt': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof InvoiceMatchSuggestionEntity
101
+ */
102
+ 'deletedAt': string;
103
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
6
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { BillingAddressClass } from './billing-address-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListBillingAddressesResponseClass
17
+ */
18
+ export interface ListBillingAddressesResponseClass {
19
+ /**
20
+ * The billing addresses
21
+ * @type {Array<BillingAddressClass>}
22
+ * @memberof ListBillingAddressesResponseClass
23
+ */
24
+ 'items': Array<BillingAddressClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListBillingAddressesResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListBillingAddressesResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListBillingAddressesResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
6
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { CreditAllocationClass } from './credit-allocation-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListCreditAllocationsResponseClass
17
+ */
18
+ export interface ListCreditAllocationsResponseClass {
19
+ /**
20
+ * List of credit allocation entries.
21
+ * @type {Array<CreditAllocationClass>}
22
+ * @memberof ListCreditAllocationsResponseClass
23
+ */
24
+ 'items': Array<CreditAllocationClass>;
25
+ /**
26
+ * Next page token for pagination.
27
+ * @type {string}
28
+ * @memberof ListCreditAllocationsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Number of items per page.
33
+ * @type {number}
34
+ * @memberof ListCreditAllocationsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total number of items.
39
+ * @type {number}
40
+ * @memberof ListCreditAllocationsResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
6
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,43 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PayoutMethodClass } from './payout-method-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListPayoutMethodsResponseClass
17
+ */
18
+ export interface ListPayoutMethodsResponseClass {
19
+ /**
20
+ * The payout methods
21
+ * @type {Array<PayoutMethodClass>}
22
+ * @memberof ListPayoutMethodsResponseClass
23
+ */
24
+ 'items': Array<PayoutMethodClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListPayoutMethodsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPayoutMethodsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListPayoutMethodsResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
6
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,133 @@
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 { TransactionEntity } from './transaction-entity';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PaymentEntity
17
+ */
18
+ export interface PaymentEntity {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof PaymentEntity
23
+ */
24
+ 'id': number;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof PaymentEntity
29
+ */
30
+ 'owner': string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof PaymentEntity
35
+ */
36
+ 'psp': string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof PaymentEntity
41
+ */
42
+ 'code': string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof PaymentEntity
47
+ */
48
+ 'accountCode'?: string;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof PaymentEntity
53
+ */
54
+ 'partnerCode'?: string;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof PaymentEntity
59
+ */
60
+ 'productSlug': string;
61
+ /**
62
+ *
63
+ * @type {number}
64
+ * @memberof PaymentEntity
65
+ */
66
+ 'amount': number;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof PaymentEntity
71
+ */
72
+ 'currency': string;
73
+ /**
74
+ *
75
+ * @type {Array<number>}
76
+ * @memberof PaymentEntity
77
+ */
78
+ 'invoiceIds': Array<number>;
79
+ /**
80
+ *
81
+ * @type {Array<TransactionEntity>}
82
+ * @memberof PaymentEntity
83
+ */
84
+ 'transactions': Array<TransactionEntity>;
85
+ /**
86
+ *
87
+ * @type {object}
88
+ * @memberof PaymentEntity
89
+ */
90
+ 'metadata': object;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof PaymentEntity
95
+ */
96
+ 'tenantHierarchy': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof PaymentEntity
101
+ */
102
+ 'receivedDate': string;
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof PaymentEntity
107
+ */
108
+ 'referenceNumber'?: string;
109
+ /**
110
+ *
111
+ * @type {string}
112
+ * @memberof PaymentEntity
113
+ */
114
+ 'comment'?: string;
115
+ /**
116
+ *
117
+ * @type {string}
118
+ * @memberof PaymentEntity
119
+ */
120
+ 'createdAt': string;
121
+ /**
122
+ *
123
+ * @type {string}
124
+ * @memberof PaymentEntity
125
+ */
126
+ 'deletedAt'?: string;
127
+ /**
128
+ *
129
+ * @type {string}
130
+ * @memberof PaymentEntity
131
+ */
132
+ 'ern': string;
133
+ }
@@ -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,115 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { BillingAddressClass } from './billing-address-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PayoutMethodClass
17
+ */
18
+ export interface PayoutMethodClass {
19
+ /**
20
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
21
+ * @type {number}
22
+ * @memberof PayoutMethodClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * Unique identifier for the object.
27
+ * @type {string}
28
+ * @memberof PayoutMethodClass
29
+ */
30
+ 'code': string;
31
+ /**
32
+ * First name
33
+ * @type {string}
34
+ * @memberof PayoutMethodClass
35
+ */
36
+ 'firstName': string;
37
+ /**
38
+ * Last name
39
+ * @type {string}
40
+ * @memberof PayoutMethodClass
41
+ */
42
+ 'lastName': string;
43
+ /**
44
+ * IBAN
45
+ * @type {string}
46
+ * @memberof PayoutMethodClass
47
+ */
48
+ 'iban': string;
49
+ /**
50
+ * BIC
51
+ * @type {string}
52
+ * @memberof PayoutMethodClass
53
+ */
54
+ 'bic': string;
55
+ /**
56
+ * Bank name
57
+ * @type {string}
58
+ * @memberof PayoutMethodClass
59
+ */
60
+ 'bankName': string;
61
+ /**
62
+ * Whether the payout method is active
63
+ * @type {boolean}
64
+ * @memberof PayoutMethodClass
65
+ */
66
+ 'isActive': boolean;
67
+ /**
68
+ * Billing address code
69
+ * @type {string}
70
+ * @memberof PayoutMethodClass
71
+ */
72
+ 'billingAddressCode': string;
73
+ /**
74
+ * Unique identifier of the account that this object belongs to.
75
+ * @type {string}
76
+ * @memberof PayoutMethodClass
77
+ */
78
+ 'accountCode': string;
79
+ /**
80
+ * Unique identifier of the partner that this object belongs to.
81
+ * @type {string}
82
+ * @memberof PayoutMethodClass
83
+ */
84
+ 'partnerCode': string;
85
+ /**
86
+ * Billing address
87
+ * @type {BillingAddressClass}
88
+ * @memberof PayoutMethodClass
89
+ */
90
+ 'billingAddress'?: BillingAddressClass;
91
+ /**
92
+ * Time at which the object was created.
93
+ * @type {string}
94
+ * @memberof PayoutMethodClass
95
+ */
96
+ 'createdAt': string;
97
+ /**
98
+ * Time at which the object was updated.
99
+ * @type {string}
100
+ * @memberof PayoutMethodClass
101
+ */
102
+ 'updatedAt': string;
103
+ /**
104
+ * Identifier of the user who created the record.
105
+ * @type {string}
106
+ * @memberof PayoutMethodClass
107
+ */
108
+ 'createdBy': string;
109
+ /**
110
+ * Identifier of the user who last updated the record.
111
+ * @type {string}
112
+ * @memberof PayoutMethodClass
113
+ */
114
+ 'updatedBy': string;
115
+ }