@emilgroup/accounting-sdk-node 1.13.0 → 1.13.1-beta.0

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 (222) hide show
  1. package/.openapi-generator/FILES +15 -52
  2. package/README.md +2 -2
  3. package/api/booking-processes-api.ts +357 -0
  4. package/api/financial-accounts-api.ts +577 -0
  5. package/api/health-api.ts +7 -7
  6. package/api.ts +6 -14
  7. package/base.ts +9 -17
  8. package/common.ts +4 -4
  9. package/configuration.ts +2 -2
  10. package/dist/api/booking-processes-api.d.ts +207 -0
  11. package/dist/api/{zip-codes-api.js → booking-processes-api.js} +80 -166
  12. package/dist/api/financial-accounts-api.d.ts +327 -0
  13. package/dist/api/{vbas-api.js → financial-accounts-api.js} +156 -161
  14. package/dist/api/health-api.d.ts +6 -6
  15. package/dist/api/health-api.js +7 -7
  16. package/dist/api.d.ts +4 -8
  17. package/dist/api.js +4 -8
  18. package/dist/base.d.ts +3 -5
  19. package/dist/base.js +22 -28
  20. package/dist/common.d.ts +4 -4
  21. package/dist/common.js +2 -2
  22. package/dist/configuration.d.ts +2 -2
  23. package/dist/configuration.js +2 -2
  24. package/dist/index.d.ts +2 -2
  25. package/dist/index.js +2 -2
  26. package/dist/models/booking-entry-class.d.ts +123 -0
  27. package/dist/models/booking-entry-class.js +34 -0
  28. package/dist/models/booking-process-class.d.ts +94 -0
  29. package/dist/models/booking-process-class.js +29 -0
  30. package/dist/models/create-booking-entry-request-dto.d.ts +99 -0
  31. package/dist/models/create-booking-entry-request-dto.js +34 -0
  32. package/dist/models/create-booking-process-request-dto.d.ts +64 -0
  33. package/dist/models/create-booking-process-request-dto.js +29 -0
  34. package/dist/models/create-booking-process-response-class.d.ts +25 -0
  35. package/dist/models/{address-class.js → create-booking-process-response-class.js} +2 -2
  36. package/dist/models/create-financial-account-request-dto.d.ts +62 -0
  37. package/dist/models/{create-user-request-dto.js → create-financial-account-request-dto.js} +9 -10
  38. package/dist/models/create-financial-account-response-class.d.ts +25 -0
  39. package/dist/models/{create-user-response-class.js → create-financial-account-response-class.js} +2 -2
  40. package/dist/models/financial-account-class.d.ts +98 -0
  41. package/dist/models/{user-class.js → financial-account-class.js} +9 -6
  42. package/dist/models/financial-transaction-class.d.ts +108 -0
  43. package/dist/models/{create-mailbox-request-dto.js → financial-transaction-class.js} +2 -2
  44. package/dist/models/financial-transaction-data-dto.d.ts +71 -0
  45. package/dist/models/{create-vba-request-dto.js → financial-transaction-data-dto.js} +6 -6
  46. package/dist/models/get-financial-account-response-class.d.ts +25 -0
  47. package/dist/models/{create-vba-response-class.js → get-financial-account-response-class.js} +2 -2
  48. package/dist/models/index.d.ts +13 -46
  49. package/dist/models/index.js +13 -46
  50. package/dist/models/inline-response200.d.ts +2 -2
  51. package/dist/models/inline-response200.js +2 -2
  52. package/dist/models/inline-response503.d.ts +2 -2
  53. package/dist/models/inline-response503.js +2 -2
  54. package/dist/models/list-booking-process-response-class.d.ts +31 -0
  55. package/dist/models/list-booking-process-response-class.js +15 -0
  56. package/dist/models/list-financial-accounts-response-class.d.ts +31 -0
  57. package/dist/models/list-financial-accounts-response-class.js +15 -0
  58. package/index.ts +2 -2
  59. package/models/booking-entry-class.ts +133 -0
  60. package/models/booking-process-class.ts +104 -0
  61. package/models/create-booking-entry-request-dto.ts +109 -0
  62. package/models/create-booking-process-request-dto.ts +74 -0
  63. package/models/create-booking-process-response-class.ts +31 -0
  64. package/models/create-financial-account-request-dto.ts +71 -0
  65. package/models/create-financial-account-response-class.ts +31 -0
  66. package/models/financial-account-class.ts +107 -0
  67. package/models/financial-transaction-class.ts +114 -0
  68. package/models/financial-transaction-data-dto.ts +80 -0
  69. package/models/get-financial-account-response-class.ts +31 -0
  70. package/models/index.ts +13 -46
  71. package/models/inline-response200.ts +2 -2
  72. package/models/inline-response503.ts +2 -2
  73. package/models/list-booking-process-response-class.ts +37 -0
  74. package/models/list-financial-accounts-response-class.ts +37 -0
  75. package/package.json +1 -1
  76. package/api/mailbox-api.ts +0 -255
  77. package/api/messages-api.ts +0 -1100
  78. package/api/users-api.ts +0 -496
  79. package/api/vbas-api.ts +0 -592
  80. package/api/vbus-api.ts +0 -701
  81. package/api/zip-codes-api.ts +0 -443
  82. package/dist/api/mailbox-api.d.ts +0 -142
  83. package/dist/api/mailbox-api.js +0 -315
  84. package/dist/api/messages-api.d.ts +0 -632
  85. package/dist/api/messages-api.js +0 -916
  86. package/dist/api/users-api.d.ts +0 -275
  87. package/dist/api/users-api.js +0 -512
  88. package/dist/api/vbas-api.d.ts +0 -337
  89. package/dist/api/vbus-api.d.ts +0 -395
  90. package/dist/api/vbus-api.js +0 -647
  91. package/dist/api/zip-codes-api.d.ts +0 -253
  92. package/dist/models/address-class.d.ts +0 -48
  93. package/dist/models/create-mailbox-request-dto.d.ts +0 -36
  94. package/dist/models/create-user-request-dto.d.ts +0 -76
  95. package/dist/models/create-user-response-class.d.ts +0 -25
  96. package/dist/models/create-vba-request-dto.d.ts +0 -41
  97. package/dist/models/create-vba-response-class.d.ts +0 -24
  98. package/dist/models/create-vbu-request-dto.d.ts +0 -41
  99. package/dist/models/create-vbu-request-dto.js +0 -20
  100. package/dist/models/create-vbu-response-class.d.ts +0 -24
  101. package/dist/models/create-vbu-response-class.js +0 -15
  102. package/dist/models/create-vbuv-request-dto.d.ts +0 -41
  103. package/dist/models/create-vbuv-request-dto.js +0 -20
  104. package/dist/models/create-vbuv-response-class.d.ts +0 -24
  105. package/dist/models/create-vbuv-response-class.js +0 -15
  106. package/dist/models/get-request-message-response-class.d.ts +0 -25
  107. package/dist/models/get-request-message-response-class.js +0 -15
  108. package/dist/models/get-response-message-response-class.d.ts +0 -25
  109. package/dist/models/get-response-message-response-class.js +0 -15
  110. package/dist/models/get-user-response-class.d.ts +0 -25
  111. package/dist/models/get-user-response-class.js +0 -15
  112. package/dist/models/get-vba-response-class.d.ts +0 -25
  113. package/dist/models/get-vba-response-class.js +0 -15
  114. package/dist/models/get-vbu-response-class.d.ts +0 -25
  115. package/dist/models/get-vbu-response-class.js +0 -15
  116. package/dist/models/get-zip-code-response-class.d.ts +0 -25
  117. package/dist/models/get-zip-code-response-class.js +0 -15
  118. package/dist/models/list-all-messages-response-class.d.ts +0 -31
  119. package/dist/models/list-all-messages-response-class.js +0 -15
  120. package/dist/models/list-requests-messages-response-class.d.ts +0 -31
  121. package/dist/models/list-requests-messages-response-class.js +0 -15
  122. package/dist/models/list-responses-messages-response-class.d.ts +0 -31
  123. package/dist/models/list-responses-messages-response-class.js +0 -15
  124. package/dist/models/list-users-response-class.d.ts +0 -31
  125. package/dist/models/list-users-response-class.js +0 -15
  126. package/dist/models/list-vbas-response-class.d.ts +0 -31
  127. package/dist/models/list-vbas-response-class.js +0 -15
  128. package/dist/models/list-vbus-response-class.d.ts +0 -31
  129. package/dist/models/list-vbus-response-class.js +0 -15
  130. package/dist/models/list-zip-codes-response-class.d.ts +0 -31
  131. package/dist/models/list-zip-codes-response-class.js +0 -15
  132. package/dist/models/message-class.d.ts +0 -84
  133. package/dist/models/message-class.js +0 -15
  134. package/dist/models/request-details-class.d.ts +0 -48
  135. package/dist/models/request-details-class.js +0 -15
  136. package/dist/models/request-message-class.d.ts +0 -121
  137. package/dist/models/request-message-class.js +0 -15
  138. package/dist/models/response-details-class.d.ts +0 -42
  139. package/dist/models/response-details-class.js +0 -15
  140. package/dist/models/response-message-class.d.ts +0 -133
  141. package/dist/models/response-message-class.js +0 -15
  142. package/dist/models/store-zip-codes-request-dto.d.ts +0 -25
  143. package/dist/models/store-zip-codes-request-dto.js +0 -15
  144. package/dist/models/store-zip-codes-response-class.d.ts +0 -25
  145. package/dist/models/store-zip-codes-response-class.js +0 -15
  146. package/dist/models/update-request-message-request-dto.d.ts +0 -36
  147. package/dist/models/update-request-message-request-dto.js +0 -15
  148. package/dist/models/update-request-message-response-class.d.ts +0 -25
  149. package/dist/models/update-request-message-response-class.js +0 -15
  150. package/dist/models/update-response-message-request-dto.d.ts +0 -36
  151. package/dist/models/update-response-message-request-dto.js +0 -15
  152. package/dist/models/update-response-message-response-class.d.ts +0 -25
  153. package/dist/models/update-response-message-response-class.js +0 -15
  154. package/dist/models/update-user-request-dto.d.ts +0 -82
  155. package/dist/models/update-user-request-dto.js +0 -24
  156. package/dist/models/update-user-response-class.d.ts +0 -25
  157. package/dist/models/update-user-response-class.js +0 -15
  158. package/dist/models/update-vba-request-dto.d.ts +0 -30
  159. package/dist/models/update-vba-request-dto.js +0 -15
  160. package/dist/models/update-vbu-request-dto.d.ts +0 -30
  161. package/dist/models/update-vbu-request-dto.js +0 -15
  162. package/dist/models/update-vbu-response-class.d.ts +0 -25
  163. package/dist/models/update-vbu-response-class.js +0 -15
  164. package/dist/models/user-class.d.ts +0 -107
  165. package/dist/models/vba-class.d.ts +0 -116
  166. package/dist/models/vba-class.js +0 -15
  167. package/dist/models/vba-response-class.d.ts +0 -48
  168. package/dist/models/vba-response-class.js +0 -15
  169. package/dist/models/vbu-class.d.ts +0 -115
  170. package/dist/models/vbu-class.js +0 -15
  171. package/dist/models/vbu-response-class.d.ts +0 -48
  172. package/dist/models/vbu-response-class.js +0 -15
  173. package/dist/models/xlsx-zip-code-dto.d.ts +0 -30
  174. package/dist/models/xlsx-zip-code-dto.js +0 -15
  175. package/dist/models/zip-code-class.d.ts +0 -60
  176. package/dist/models/zip-code-class.js +0 -15
  177. package/models/address-class.ts +0 -54
  178. package/models/create-mailbox-request-dto.ts +0 -42
  179. package/models/create-user-request-dto.ts +0 -86
  180. package/models/create-user-response-class.ts +0 -31
  181. package/models/create-vba-request-dto.ts +0 -50
  182. package/models/create-vba-response-class.ts +0 -30
  183. package/models/create-vbu-request-dto.ts +0 -50
  184. package/models/create-vbu-response-class.ts +0 -30
  185. package/models/create-vbuv-request-dto.ts +0 -50
  186. package/models/create-vbuv-response-class.ts +0 -30
  187. package/models/get-request-message-response-class.ts +0 -31
  188. package/models/get-response-message-response-class.ts +0 -31
  189. package/models/get-user-response-class.ts +0 -31
  190. package/models/get-vba-response-class.ts +0 -31
  191. package/models/get-vbu-response-class.ts +0 -31
  192. package/models/get-zip-code-response-class.ts +0 -31
  193. package/models/list-all-messages-response-class.ts +0 -37
  194. package/models/list-requests-messages-response-class.ts +0 -37
  195. package/models/list-responses-messages-response-class.ts +0 -37
  196. package/models/list-users-response-class.ts +0 -37
  197. package/models/list-vbas-response-class.ts +0 -37
  198. package/models/list-vbus-response-class.ts +0 -37
  199. package/models/list-zip-codes-response-class.ts +0 -37
  200. package/models/message-class.ts +0 -90
  201. package/models/request-details-class.ts +0 -54
  202. package/models/request-message-class.ts +0 -127
  203. package/models/response-details-class.ts +0 -48
  204. package/models/response-message-class.ts +0 -139
  205. package/models/store-zip-codes-request-dto.ts +0 -31
  206. package/models/store-zip-codes-response-class.ts +0 -31
  207. package/models/update-request-message-request-dto.ts +0 -42
  208. package/models/update-request-message-response-class.ts +0 -31
  209. package/models/update-response-message-request-dto.ts +0 -42
  210. package/models/update-response-message-response-class.ts +0 -31
  211. package/models/update-user-request-dto.ts +0 -92
  212. package/models/update-user-response-class.ts +0 -31
  213. package/models/update-vba-request-dto.ts +0 -36
  214. package/models/update-vbu-request-dto.ts +0 -36
  215. package/models/update-vbu-response-class.ts +0 -31
  216. package/models/user-class.ts +0 -116
  217. package/models/vba-class.ts +0 -122
  218. package/models/vba-response-class.ts +0 -54
  219. package/models/vbu-class.ts +0 -121
  220. package/models/vbu-response-class.ts +0 -54
  221. package/models/xlsx-zip-code-dto.ts +0 -36
  222. package/models/zip-code-class.ts +0 -66
@@ -0,0 +1,71 @@
1
+ /**
2
+ * EMIL AccountingService
3
+ * The EMIL AccountingService API description
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 FinancialTransactionDataDto
16
+ */
17
+ export interface FinancialTransactionDataDto {
18
+ /**
19
+ * The unique identifier of the financial account associated with the transaction. This is used to route the transaction to the correct account in the financial ledger.
20
+ * @type {string}
21
+ * @memberof FinancialTransactionDataDto
22
+ */
23
+ 'financialAccountNumber': string;
24
+ /**
25
+ * The monetary value of the transaction, expressed as an integer in the smallest currency unit (e.g., cents). This represents the exact amount being debited or credited. The value must be an integer.
26
+ * @type {number}
27
+ * @memberof FinancialTransactionDataDto
28
+ */
29
+ 'amount': number;
30
+ /**
31
+ * Specifies whether the transaction is a debit or a credit. A debit indicates an outgoing payment, while a credit represents incoming funds.
32
+ * @type {string}
33
+ * @memberof FinancialTransactionDataDto
34
+ */
35
+ 'debitCredit': FinancialTransactionDataDtoDebitCreditEnum;
36
+ /**
37
+ * The unique number assigned to the partner involved in the transaction, typically representing a customer, supplier, or other associated party.
38
+ * @type {string}
39
+ * @memberof FinancialTransactionDataDto
40
+ */
41
+ 'partnerNumber': string;
42
+ /**
43
+ * An optional grouping identifier for the partner, used for categorization and reporting purposes.
44
+ * @type {string}
45
+ * @memberof FinancialTransactionDataDto
46
+ */
47
+ 'partnerGroup'?: string;
48
+ /**
49
+ * The policy number related to this transaction, used for referencing the associated insurance policy or agreement.
50
+ * @type {string}
51
+ * @memberof FinancialTransactionDataDto
52
+ */
53
+ 'policyNumber': string;
54
+ /**
55
+ * Optional additional information related to the transaction, structured as key-value pairs. These fields may include metadata, identifiers, or contextual details for custom processing.
56
+ * @type {object}
57
+ * @memberof FinancialTransactionDataDto
58
+ */
59
+ 'customFields': object;
60
+ /**
61
+ * A brief summary of the transaction, providing context or purpose, such as \"Payment of invoice #1234\" or \"Monthly premium for policy #5678\".
62
+ * @type {string}
63
+ * @memberof FinancialTransactionDataDto
64
+ */
65
+ 'description': string;
66
+ }
67
+ export declare const FinancialTransactionDataDtoDebitCreditEnum: {
68
+ readonly Debit: "DEBIT";
69
+ readonly Credit: "CREDIT";
70
+ };
71
+ export type FinancialTransactionDataDtoDebitCreditEnum = typeof FinancialTransactionDataDtoDebitCreditEnum[keyof typeof FinancialTransactionDataDtoDebitCreditEnum];
@@ -2,8 +2,8 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * EMIL GdvService
6
- * The EMIL GdvService API description
5
+ * EMIL AccountingService
6
+ * The EMIL AccountingService API description
7
7
  *
8
8
  * The version of the OpenAPI document: 1.0
9
9
  * Contact: kontakt@emil.de
@@ -13,8 +13,8 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.CreateVbaRequestDtoEntityTypeEnum = void 0;
17
- exports.CreateVbaRequestDtoEntityTypeEnum = {
18
- Lead: 'lead',
19
- Policy: 'policy'
16
+ exports.FinancialTransactionDataDtoDebitCreditEnum = void 0;
17
+ exports.FinancialTransactionDataDtoDebitCreditEnum = {
18
+ Debit: 'DEBIT',
19
+ Credit: 'CREDIT'
20
20
  };
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL AccountingService
3
+ * The EMIL AccountingService API description
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 { FinancialAccountClass } from './financial-account-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetFinancialAccountResponseClass
17
+ */
18
+ export interface GetFinancialAccountResponseClass {
19
+ /**
20
+ * The financial account response.
21
+ * @type {FinancialAccountClass}
22
+ * @memberof GetFinancialAccountResponseClass
23
+ */
24
+ 'financialAccount': FinancialAccountClass;
25
+ }
@@ -2,8 +2,8 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * EMIL GdvService
6
- * The EMIL GdvService API description
5
+ * EMIL AccountingService
6
+ * The EMIL AccountingService API description
7
7
  *
8
8
  * The version of the OpenAPI document: 1.0
9
9
  * Contact: kontakt@emil.de
@@ -1,48 +1,15 @@
1
- export * from './address-class';
2
- export * from './create-mailbox-request-dto';
3
- export * from './create-user-request-dto';
4
- export * from './create-user-response-class';
5
- export * from './create-vba-request-dto';
6
- export * from './create-vba-response-class';
7
- export * from './create-vbu-request-dto';
8
- export * from './create-vbu-response-class';
9
- export * from './create-vbuv-request-dto';
10
- export * from './create-vbuv-response-class';
11
- export * from './get-request-message-response-class';
12
- export * from './get-response-message-response-class';
13
- export * from './get-user-response-class';
14
- export * from './get-vba-response-class';
15
- export * from './get-vbu-response-class';
16
- export * from './get-zip-code-response-class';
1
+ export * from './booking-entry-class';
2
+ export * from './booking-process-class';
3
+ export * from './create-booking-entry-request-dto';
4
+ export * from './create-booking-process-request-dto';
5
+ export * from './create-booking-process-response-class';
6
+ export * from './create-financial-account-request-dto';
7
+ export * from './create-financial-account-response-class';
8
+ export * from './financial-account-class';
9
+ export * from './financial-transaction-class';
10
+ export * from './financial-transaction-data-dto';
11
+ export * from './get-financial-account-response-class';
17
12
  export * from './inline-response200';
18
13
  export * from './inline-response503';
19
- export * from './list-all-messages-response-class';
20
- export * from './list-requests-messages-response-class';
21
- export * from './list-responses-messages-response-class';
22
- export * from './list-users-response-class';
23
- export * from './list-vbas-response-class';
24
- export * from './list-vbus-response-class';
25
- export * from './list-zip-codes-response-class';
26
- export * from './message-class';
27
- export * from './request-details-class';
28
- export * from './request-message-class';
29
- export * from './response-details-class';
30
- export * from './response-message-class';
31
- export * from './store-zip-codes-request-dto';
32
- export * from './store-zip-codes-response-class';
33
- export * from './update-request-message-request-dto';
34
- export * from './update-request-message-response-class';
35
- export * from './update-response-message-request-dto';
36
- export * from './update-response-message-response-class';
37
- export * from './update-user-request-dto';
38
- export * from './update-user-response-class';
39
- export * from './update-vba-request-dto';
40
- export * from './update-vbu-request-dto';
41
- export * from './update-vbu-response-class';
42
- export * from './user-class';
43
- export * from './vba-class';
44
- export * from './vba-response-class';
45
- export * from './vbu-class';
46
- export * from './vbu-response-class';
47
- export * from './xlsx-zip-code-dto';
48
- export * from './zip-code-class';
14
+ export * from './list-booking-process-response-class';
15
+ export * from './list-financial-accounts-response-class';
@@ -14,51 +14,18 @@ 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("./address-class"), exports);
18
- __exportStar(require("./create-mailbox-request-dto"), exports);
19
- __exportStar(require("./create-user-request-dto"), exports);
20
- __exportStar(require("./create-user-response-class"), exports);
21
- __exportStar(require("./create-vba-request-dto"), exports);
22
- __exportStar(require("./create-vba-response-class"), exports);
23
- __exportStar(require("./create-vbu-request-dto"), exports);
24
- __exportStar(require("./create-vbu-response-class"), exports);
25
- __exportStar(require("./create-vbuv-request-dto"), exports);
26
- __exportStar(require("./create-vbuv-response-class"), exports);
27
- __exportStar(require("./get-request-message-response-class"), exports);
28
- __exportStar(require("./get-response-message-response-class"), exports);
29
- __exportStar(require("./get-user-response-class"), exports);
30
- __exportStar(require("./get-vba-response-class"), exports);
31
- __exportStar(require("./get-vbu-response-class"), exports);
32
- __exportStar(require("./get-zip-code-response-class"), exports);
17
+ __exportStar(require("./booking-entry-class"), exports);
18
+ __exportStar(require("./booking-process-class"), exports);
19
+ __exportStar(require("./create-booking-entry-request-dto"), exports);
20
+ __exportStar(require("./create-booking-process-request-dto"), exports);
21
+ __exportStar(require("./create-booking-process-response-class"), exports);
22
+ __exportStar(require("./create-financial-account-request-dto"), exports);
23
+ __exportStar(require("./create-financial-account-response-class"), exports);
24
+ __exportStar(require("./financial-account-class"), exports);
25
+ __exportStar(require("./financial-transaction-class"), exports);
26
+ __exportStar(require("./financial-transaction-data-dto"), exports);
27
+ __exportStar(require("./get-financial-account-response-class"), exports);
33
28
  __exportStar(require("./inline-response200"), exports);
34
29
  __exportStar(require("./inline-response503"), exports);
35
- __exportStar(require("./list-all-messages-response-class"), exports);
36
- __exportStar(require("./list-requests-messages-response-class"), exports);
37
- __exportStar(require("./list-responses-messages-response-class"), exports);
38
- __exportStar(require("./list-users-response-class"), exports);
39
- __exportStar(require("./list-vbas-response-class"), exports);
40
- __exportStar(require("./list-vbus-response-class"), exports);
41
- __exportStar(require("./list-zip-codes-response-class"), exports);
42
- __exportStar(require("./message-class"), exports);
43
- __exportStar(require("./request-details-class"), exports);
44
- __exportStar(require("./request-message-class"), exports);
45
- __exportStar(require("./response-details-class"), exports);
46
- __exportStar(require("./response-message-class"), exports);
47
- __exportStar(require("./store-zip-codes-request-dto"), exports);
48
- __exportStar(require("./store-zip-codes-response-class"), exports);
49
- __exportStar(require("./update-request-message-request-dto"), exports);
50
- __exportStar(require("./update-request-message-response-class"), exports);
51
- __exportStar(require("./update-response-message-request-dto"), exports);
52
- __exportStar(require("./update-response-message-response-class"), exports);
53
- __exportStar(require("./update-user-request-dto"), exports);
54
- __exportStar(require("./update-user-response-class"), exports);
55
- __exportStar(require("./update-vba-request-dto"), exports);
56
- __exportStar(require("./update-vbu-request-dto"), exports);
57
- __exportStar(require("./update-vbu-response-class"), exports);
58
- __exportStar(require("./user-class"), exports);
59
- __exportStar(require("./vba-class"), exports);
60
- __exportStar(require("./vba-response-class"), exports);
61
- __exportStar(require("./vbu-class"), exports);
62
- __exportStar(require("./vbu-response-class"), exports);
63
- __exportStar(require("./xlsx-zip-code-dto"), exports);
64
- __exportStar(require("./zip-code-class"), exports);
30
+ __exportStar(require("./list-booking-process-response-class"), exports);
31
+ __exportStar(require("./list-financial-accounts-response-class"), exports);
@@ -1,6 +1,6 @@
1
1
  /**
2
- * EMIL GdvService
3
- * The EMIL GdvService API description
2
+ * EMIL AccountingService
3
+ * The EMIL AccountingService API description
4
4
  *
5
5
  * The version of the OpenAPI document: 1.0
6
6
  * Contact: kontakt@emil.de
@@ -2,8 +2,8 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * EMIL GdvService
6
- * The EMIL GdvService API description
5
+ * EMIL AccountingService
6
+ * The EMIL AccountingService API description
7
7
  *
8
8
  * The version of the OpenAPI document: 1.0
9
9
  * Contact: kontakt@emil.de
@@ -1,6 +1,6 @@
1
1
  /**
2
- * EMIL GdvService
3
- * The EMIL GdvService API description
2
+ * EMIL AccountingService
3
+ * The EMIL AccountingService API description
4
4
  *
5
5
  * The version of the OpenAPI document: 1.0
6
6
  * Contact: kontakt@emil.de
@@ -2,8 +2,8 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * EMIL GdvService
6
- * The EMIL GdvService API description
5
+ * EMIL AccountingService
6
+ * The EMIL AccountingService API description
7
7
  *
8
8
  * The version of the OpenAPI document: 1.0
9
9
  * Contact: kontakt@emil.de
@@ -0,0 +1,31 @@
1
+ /**
2
+ * EMIL AccountingService
3
+ * The EMIL AccountingService API description
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 { BookingProcessClass } from './booking-process-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListBookingProcessResponseClass
17
+ */
18
+ export interface ListBookingProcessResponseClass {
19
+ /**
20
+ * The list of booking processs.
21
+ * @type {Array<BookingProcessClass>}
22
+ * @memberof ListBookingProcessResponseClass
23
+ */
24
+ 'items': Array<BookingProcessClass>;
25
+ /**
26
+ * Next page token
27
+ * @type {string}
28
+ * @memberof ListBookingProcessResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AccountingService
6
+ * The EMIL AccountingService API description
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,31 @@
1
+ /**
2
+ * EMIL AccountingService
3
+ * The EMIL AccountingService API description
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 { FinancialAccountClass } from './financial-account-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListFinancialAccountsResponseClass
17
+ */
18
+ export interface ListFinancialAccountsResponseClass {
19
+ /**
20
+ * The list of financial accounts.
21
+ * @type {Array<FinancialAccountClass>}
22
+ * @memberof ListFinancialAccountsResponseClass
23
+ */
24
+ 'items': Array<FinancialAccountClass>;
25
+ /**
26
+ * Next page token
27
+ * @type {string}
28
+ * @memberof ListFinancialAccountsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL AccountingService
6
+ * The EMIL AccountingService API description
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 });
package/index.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * EMIL GdvService
5
- * The EMIL GdvService API description
4
+ * EMIL AccountingService
5
+ * The EMIL AccountingService API description
6
6
  *
7
7
  * The version of the OpenAPI document: 1.0
8
8
  * Contact: kontakt@emil.de
@@ -0,0 +1,133 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL AccountingService
5
+ * The EMIL AccountingService API description
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
+ import { FinancialTransactionClass } from './financial-transaction-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface BookingEntryClass
22
+ */
23
+ export interface BookingEntryClass {
24
+ /**
25
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
26
+ * @type {number}
27
+ * @memberof BookingEntryClass
28
+ */
29
+ 'id': number;
30
+ /**
31
+ * Unique identifier for the object.
32
+ * @type {string}
33
+ * @memberof BookingEntryClass
34
+ */
35
+ 'code': string;
36
+ /**
37
+ * The ID of the financial transaction linked to this booking entry.
38
+ * @type {number}
39
+ * @memberof BookingEntryClass
40
+ */
41
+ 'financialTransactionId': number;
42
+ /**
43
+ * The monetary amount associated with this booking entry.
44
+ * @type {number}
45
+ * @memberof BookingEntryClass
46
+ */
47
+ 'amount': number;
48
+ /**
49
+ * The currency in which the booking entry amount is denominated.
50
+ * @type {string}
51
+ * @memberof BookingEntryClass
52
+ */
53
+ 'currency': BookingEntryClassCurrencyEnum;
54
+ /**
55
+ * The policy number associated with this financial transaction.
56
+ * @type {string}
57
+ * @memberof BookingEntryClass
58
+ */
59
+ 'policyNumber': string;
60
+ /**
61
+ * A flexible JSON object that allows tenants to include any custom fields. The keys represent the names of the custom fields, and the values can be of any data type. This enables tenants to store additional metadata or custom attributes that are specific to their use case.
62
+ * @type {object}
63
+ * @memberof BookingEntryClass
64
+ */
65
+ 'customFields': object;
66
+ /**
67
+ * The unique identifier for the entity (e.g., claim, invoice) associated with this booking entry.
68
+ * @type {string}
69
+ * @memberof BookingEntryClass
70
+ */
71
+ 'entityNumber': string;
72
+ /**
73
+ * The name of the entity associated with this booking entry, such as \"Claim\", \"Invoice\", or \"Payment\".
74
+ * @type {string}
75
+ * @memberof BookingEntryClass
76
+ */
77
+ 'entityName': BookingEntryClassEntityNameEnum;
78
+ /**
79
+ * Time at which the object was created.
80
+ * @type {string}
81
+ * @memberof BookingEntryClass
82
+ */
83
+ 'createdAt': string;
84
+ /**
85
+ * Time at which the object was updated.
86
+ * @type {string}
87
+ * @memberof BookingEntryClass
88
+ */
89
+ 'updatedAt': string;
90
+ /**
91
+ * Identifier of the user who created the record.
92
+ * @type {string}
93
+ * @memberof BookingEntryClass
94
+ */
95
+ 'createdBy': string;
96
+ /**
97
+ * Identifier of the user who last updated the record.
98
+ * @type {string}
99
+ * @memberof BookingEntryClass
100
+ */
101
+ 'updatedBy': string;
102
+ /**
103
+ * A list of financial transactions associated with this booking entry. Each entry represents a transaction linked to the current booking.
104
+ * @type {Array<FinancialTransactionClass>}
105
+ * @memberof BookingEntryClass
106
+ */
107
+ 'financialTransactions': Array<FinancialTransactionClass>;
108
+ }
109
+
110
+ export const BookingEntryClassCurrencyEnum = {
111
+ Eur: 'EUR',
112
+ Usd: 'USD',
113
+ Gbp: 'GBP',
114
+ Chf: 'CHF',
115
+ Pln: 'PLN',
116
+ Aud: 'AUD',
117
+ Cad: 'CAD',
118
+ Ddk: 'DDK',
119
+ Huf: 'HUF',
120
+ Nok: 'NOK',
121
+ Sek: 'SEK'
122
+ } as const;
123
+
124
+ export type BookingEntryClassCurrencyEnum = typeof BookingEntryClassCurrencyEnum[keyof typeof BookingEntryClassCurrencyEnum];
125
+ export const BookingEntryClassEntityNameEnum = {
126
+ Claim: 'claim',
127
+ Invoice: 'invoice',
128
+ Payment: 'payment'
129
+ } as const;
130
+
131
+ export type BookingEntryClassEntityNameEnum = typeof BookingEntryClassEntityNameEnum[keyof typeof BookingEntryClassEntityNameEnum];
132
+
133
+
@@ -0,0 +1,104 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL AccountingService
5
+ * The EMIL AccountingService API description
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
+ import { BookingEntryClass } from './booking-entry-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface BookingProcessClass
22
+ */
23
+ export interface BookingProcessClass {
24
+ /**
25
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
26
+ * @type {number}
27
+ * @memberof BookingProcessClass
28
+ */
29
+ 'id': number;
30
+ /**
31
+ * Unique identifier for the object.
32
+ * @type {string}
33
+ * @memberof BookingProcessClass
34
+ */
35
+ 'code': string;
36
+ /**
37
+ * A flexible JSON object that allows tenants to include any custom fields. The keys represent the names of the custom fields, and the values can be of any data type. This enables tenants to store additional metadata or custom attributes that are specific to their use case.
38
+ * @type {object}
39
+ * @memberof BookingProcessClass
40
+ */
41
+ 'customFields': object;
42
+ /**
43
+ * Represents the current stage of the booking process. It tracks whether the process is still open, invoiced, or paid.
44
+ * @type {string}
45
+ * @memberof BookingProcessClass
46
+ */
47
+ 'status': BookingProcessClassStatusEnum;
48
+ /**
49
+ * Defines the type of booking process, indicating the nature of the financial transaction or action such as an initial invoice, claims payment, or termination invoice.
50
+ * @type {string}
51
+ * @memberof BookingProcessClass
52
+ */
53
+ 'bookingProcessType': BookingProcessClassBookingProcessTypeEnum;
54
+ /**
55
+ * A list of booking entries associated with this booking process. Each entry represents a booking entry linked to the current booking process.
56
+ * @type {Array<BookingEntryClass>}
57
+ * @memberof BookingProcessClass
58
+ */
59
+ 'bookingEntries': Array<BookingEntryClass>;
60
+ /**
61
+ * Time at which the object was created.
62
+ * @type {string}
63
+ * @memberof BookingProcessClass
64
+ */
65
+ 'createdAt': string;
66
+ /**
67
+ * Time at which the object was updated.
68
+ * @type {string}
69
+ * @memberof BookingProcessClass
70
+ */
71
+ 'updatedAt': string;
72
+ /**
73
+ * Identifier of the user who created the record.
74
+ * @type {string}
75
+ * @memberof BookingProcessClass
76
+ */
77
+ 'createdBy': string;
78
+ /**
79
+ * Identifier of the user who last updated the record.
80
+ * @type {string}
81
+ * @memberof BookingProcessClass
82
+ */
83
+ 'updatedBy': string;
84
+ }
85
+
86
+ export const BookingProcessClassStatusEnum = {
87
+ Invoiced: 'invoiced',
88
+ Paid: 'paid',
89
+ Open: 'open'
90
+ } as const;
91
+
92
+ export type BookingProcessClassStatusEnum = typeof BookingProcessClassStatusEnum[keyof typeof BookingProcessClassStatusEnum];
93
+ export const BookingProcessClassBookingProcessTypeEnum = {
94
+ TerminationInvoice: 'terminationInvoice',
95
+ ClaimsPayment: 'claimsPayment',
96
+ WithdrawnInvoice: 'withdrawnInvoice',
97
+ CorrectionInvoice: 'correctionInvoice',
98
+ RecurringInvoice: 'recurringInvoice',
99
+ InitialInvoice: 'initialInvoice'
100
+ } as const;
101
+
102
+ export type BookingProcessClassBookingProcessTypeEnum = typeof BookingProcessClassBookingProcessTypeEnum[keyof typeof BookingProcessClassBookingProcessTypeEnum];
103
+
104
+