@emilgroup/accounting-sdk-node 1.10.0 → 1.11.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 +2 -2
  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 +2 -2
  19. package/dist/base.js +2 -2
  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,74 @@
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 { CreateBookingEntryRequestDto } from './create-booking-entry-request-dto';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateBookingProcessRequestDto
22
+ */
23
+ export interface CreateBookingProcessRequestDto {
24
+ /**
25
+ * The unique policy number associated with this booking process. This is used to identify the relevant insurance policy or agreement for which the booking process is being created.
26
+ * @type {string}
27
+ * @memberof CreateBookingProcessRequestDto
28
+ */
29
+ 'policyNumber': string;
30
+ /**
31
+ * The current status of the booking process, indicating its completion or settlement stage, such as invoiced or paid, etc...
32
+ * @type {string}
33
+ * @memberof CreateBookingProcessRequestDto
34
+ */
35
+ 'status': CreateBookingProcessRequestDtoStatusEnum;
36
+ /**
37
+ * The type of booking process being created, such as recurringInvoice or \" initialInvoice. This helps categorize the nature of the booking within the system.
38
+ * @type {string}
39
+ * @memberof CreateBookingProcessRequestDto
40
+ */
41
+ 'bookingProcessType': CreateBookingProcessRequestDtoBookingProcessTypeEnum;
42
+ /**
43
+ * Optional key-value pairs containing additional custom information for the booking process. These fields allow flexibility to include metadata or specific attributes related to the booking.
44
+ * @type {object}
45
+ * @memberof CreateBookingProcessRequestDto
46
+ */
47
+ 'customFields': object;
48
+ /**
49
+ * An array of booking entries associated with this booking process. Each entry represents an individual transaction or action related to the booking and contains details such as amount, date, and descriptions.
50
+ * @type {Array<CreateBookingEntryRequestDto>}
51
+ * @memberof CreateBookingProcessRequestDto
52
+ */
53
+ 'bookingEntries': Array<CreateBookingEntryRequestDto>;
54
+ }
55
+
56
+ export const CreateBookingProcessRequestDtoStatusEnum = {
57
+ Invoiced: 'invoiced',
58
+ Paid: 'paid',
59
+ Open: 'open'
60
+ } as const;
61
+
62
+ export type CreateBookingProcessRequestDtoStatusEnum = typeof CreateBookingProcessRequestDtoStatusEnum[keyof typeof CreateBookingProcessRequestDtoStatusEnum];
63
+ export const CreateBookingProcessRequestDtoBookingProcessTypeEnum = {
64
+ TerminationInvoice: 'terminationInvoice',
65
+ ClaimsPayment: 'claimsPayment',
66
+ WithdrawnInvoice: 'withdrawnInvoice',
67
+ CorrectionInvoice: 'correctionInvoice',
68
+ RecurringInvoice: 'recurringInvoice',
69
+ InitialInvoice: 'initialInvoice'
70
+ } as const;
71
+
72
+ export type CreateBookingProcessRequestDtoBookingProcessTypeEnum = typeof CreateBookingProcessRequestDtoBookingProcessTypeEnum[keyof typeof CreateBookingProcessRequestDtoBookingProcessTypeEnum];
73
+
74
+
@@ -0,0 +1,31 @@
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 { BookingProcessClass } from './booking-process-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateBookingProcessResponseClass
22
+ */
23
+ export interface CreateBookingProcessResponseClass {
24
+ /**
25
+ * The booking-process response.
26
+ * @type {BookingProcessClass}
27
+ * @memberof CreateBookingProcessResponseClass
28
+ */
29
+ 'bookingProcess': BookingProcessClass;
30
+ }
31
+
@@ -0,0 +1,71 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CreateFinancialAccountRequestDto
21
+ */
22
+ export interface CreateFinancialAccountRequestDto {
23
+ /**
24
+ * The name of the financial account. This is a descriptive label used to identify the account within the system.
25
+ * @type {string}
26
+ * @memberof CreateFinancialAccountRequestDto
27
+ */
28
+ 'name': string;
29
+ /**
30
+ * The unique account number assigned to this financial account. This number is used to route transactions and manage the account within the financial system.
31
+ * @type {string}
32
+ * @memberof CreateFinancialAccountRequestDto
33
+ */
34
+ 'financialAccountNumber': string;
35
+ /**
36
+ * The type of financial account, specifying its category or classification, such as asset, equity, or expense. This categorization helps in accounting and reporting.
37
+ * @type {string}
38
+ * @memberof CreateFinancialAccountRequestDto
39
+ */
40
+ 'type': CreateFinancialAccountRequestDtoTypeEnum;
41
+ /**
42
+ * An optional code representing the entity associated with this account. Useful for associating the account with specific organizational entities or departments.
43
+ * @type {string}
44
+ * @memberof CreateFinancialAccountRequestDto
45
+ */
46
+ 'entityCode'?: string;
47
+ /**
48
+ * An optional identifier for the parent account. If provided, this allows the creation of sub-accounts under a parent financial account, establishing a hierarchy.
49
+ * @type {number}
50
+ * @memberof CreateFinancialAccountRequestDto
51
+ */
52
+ 'parentId'?: number;
53
+ /**
54
+ * Optional key-value pairs to store additional custom metadata or specific attributes related to the financial account, such as account purpose or manager.
55
+ * @type {object}
56
+ * @memberof CreateFinancialAccountRequestDto
57
+ */
58
+ 'customFields': object;
59
+ }
60
+
61
+ export const CreateFinancialAccountRequestDtoTypeEnum = {
62
+ Asset: 'asset',
63
+ Liability: 'liability',
64
+ Equity: 'equity',
65
+ Revenue: 'revenue',
66
+ Expense: 'expense'
67
+ } as const;
68
+
69
+ export type CreateFinancialAccountRequestDtoTypeEnum = typeof CreateFinancialAccountRequestDtoTypeEnum[keyof typeof CreateFinancialAccountRequestDtoTypeEnum];
70
+
71
+
@@ -0,0 +1,31 @@
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 { FinancialAccountClass } from './financial-account-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateFinancialAccountResponseClass
22
+ */
23
+ export interface CreateFinancialAccountResponseClass {
24
+ /**
25
+ * The financial account response.
26
+ * @type {FinancialAccountClass}
27
+ * @memberof CreateFinancialAccountResponseClass
28
+ */
29
+ 'financialAccount': FinancialAccountClass;
30
+ }
31
+
@@ -0,0 +1,107 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface FinancialAccountClass
21
+ */
22
+ export interface FinancialAccountClass {
23
+ /**
24
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
25
+ * @type {number}
26
+ * @memberof FinancialAccountClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * Unique identifier for the object.
31
+ * @type {string}
32
+ * @memberof FinancialAccountClass
33
+ */
34
+ 'code': string;
35
+ /**
36
+ * The name of the account.
37
+ * @type {string}
38
+ * @memberof FinancialAccountClass
39
+ */
40
+ 'name': string;
41
+ /**
42
+ * The financial account number.
43
+ * @type {string}
44
+ * @memberof FinancialAccountClass
45
+ */
46
+ 'financialAccountNumber': string;
47
+ /**
48
+ * The ID of the parent account, if any.
49
+ * @type {number}
50
+ * @memberof FinancialAccountClass
51
+ */
52
+ 'parentId': number;
53
+ /**
54
+ * The entity code of the account (account code, bank account code, etc...).
55
+ * @type {string}
56
+ * @memberof FinancialAccountClass
57
+ */
58
+ 'entityCode': string;
59
+ /**
60
+ * The type of account, e.g. \"Asset\", \"Liability\", \"Equity\", \"Revenue\", \"Expense\".
61
+ * @type {string}
62
+ * @memberof FinancialAccountClass
63
+ */
64
+ 'type': FinancialAccountClassTypeEnum;
65
+ /**
66
+ * Metadata about the object.
67
+ * @type {object}
68
+ * @memberof FinancialAccountClass
69
+ */
70
+ 'customFields': object;
71
+ /**
72
+ * Time at which the object was created.
73
+ * @type {string}
74
+ * @memberof FinancialAccountClass
75
+ */
76
+ 'createdAt': string;
77
+ /**
78
+ * Time at which the object was updated.
79
+ * @type {string}
80
+ * @memberof FinancialAccountClass
81
+ */
82
+ 'updatedAt': string;
83
+ /**
84
+ * Identifier of the user who created the record.
85
+ * @type {string}
86
+ * @memberof FinancialAccountClass
87
+ */
88
+ 'createdBy': string;
89
+ /**
90
+ * Identifier of the user who last updated the record.
91
+ * @type {string}
92
+ * @memberof FinancialAccountClass
93
+ */
94
+ 'updatedBy': string;
95
+ }
96
+
97
+ export const FinancialAccountClassTypeEnum = {
98
+ Asset: 'asset',
99
+ Liability: 'liability',
100
+ Equity: 'equity',
101
+ Revenue: 'revenue',
102
+ Expense: 'expense'
103
+ } as const;
104
+
105
+ export type FinancialAccountClassTypeEnum = typeof FinancialAccountClassTypeEnum[keyof typeof FinancialAccountClassTypeEnum];
106
+
107
+
@@ -0,0 +1,114 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface FinancialTransactionClass
21
+ */
22
+ export interface FinancialTransactionClass {
23
+ /**
24
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
25
+ * @type {number}
26
+ * @memberof FinancialTransactionClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * Unique identifier for the object.
31
+ * @type {string}
32
+ * @memberof FinancialTransactionClass
33
+ */
34
+ 'code': string;
35
+ /**
36
+ * A brief description or note associated with the financial transaction, providing additional context about the transaction.
37
+ * @type {string}
38
+ * @memberof FinancialTransactionClass
39
+ */
40
+ 'description': string;
41
+ /**
42
+ * The financial account number that this transaction is related to. This is typically a general ledger account number.
43
+ * @type {string}
44
+ * @memberof FinancialTransactionClass
45
+ */
46
+ 'financialAccountNumber': string;
47
+ /**
48
+ * The partner number that this transaction is related to. This is typically a customer or supplier number.
49
+ * @type {string}
50
+ * @memberof FinancialTransactionClass
51
+ */
52
+ 'partnerNumber': string;
53
+ /**
54
+ * The partner group that this transaction is related to. This is typically a customer or supplier group.
55
+ * @type {string}
56
+ * @memberof FinancialTransactionClass
57
+ */
58
+ 'partnerGroup'?: string;
59
+ /**
60
+ * Internal identifier for the associated booking entry. This links the transaction to a specific entry in the booking system.
61
+ * @type {number}
62
+ * @memberof FinancialTransactionClass
63
+ */
64
+ 'bookingEntryId': number;
65
+ /**
66
+ * Indicates whether the transaction is a debit or credit. Possible values are \"DEBIT\" or \"CREDIT\".
67
+ * @type {string}
68
+ * @memberof FinancialTransactionClass
69
+ */
70
+ 'debitCredit': string;
71
+ /**
72
+ * Indicates whether the transaction is \"soll\" or \"haben\" (typically the same as \"debit\" or \"credit\" in English). This is a simplification for German users.
73
+ * @type {string}
74
+ * @memberof FinancialTransactionClass
75
+ */
76
+ 'sollHaben': string;
77
+ /**
78
+ * The total amount of the transaction, represented in cents (e.g., 1550 means €15.50). This value is required for all transactions.
79
+ * @type {number}
80
+ * @memberof FinancialTransactionClass
81
+ */
82
+ 'amount': number;
83
+ /**
84
+ * 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 specific data that may vary by use case, such as additional metadata or custom attributes.
85
+ * @type {object}
86
+ * @memberof FinancialTransactionClass
87
+ */
88
+ 'customFields'?: object;
89
+ /**
90
+ * Time at which the object was created.
91
+ * @type {string}
92
+ * @memberof FinancialTransactionClass
93
+ */
94
+ 'createdAt': string;
95
+ /**
96
+ * Time at which the object was updated.
97
+ * @type {string}
98
+ * @memberof FinancialTransactionClass
99
+ */
100
+ 'updatedAt': string;
101
+ /**
102
+ * Identifier of the user who created the record.
103
+ * @type {string}
104
+ * @memberof FinancialTransactionClass
105
+ */
106
+ 'createdBy': string;
107
+ /**
108
+ * Identifier of the user who last updated the record.
109
+ * @type {string}
110
+ * @memberof FinancialTransactionClass
111
+ */
112
+ 'updatedBy': string;
113
+ }
114
+
@@ -0,0 +1,80 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface FinancialTransactionDataDto
21
+ */
22
+ export interface FinancialTransactionDataDto {
23
+ /**
24
+ * 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.
25
+ * @type {string}
26
+ * @memberof FinancialTransactionDataDto
27
+ */
28
+ 'financialAccountNumber': string;
29
+ /**
30
+ * 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.
31
+ * @type {number}
32
+ * @memberof FinancialTransactionDataDto
33
+ */
34
+ 'amount': number;
35
+ /**
36
+ * Specifies whether the transaction is a debit or a credit. A debit indicates an outgoing payment, while a credit represents incoming funds.
37
+ * @type {string}
38
+ * @memberof FinancialTransactionDataDto
39
+ */
40
+ 'debitCredit': FinancialTransactionDataDtoDebitCreditEnum;
41
+ /**
42
+ * The unique number assigned to the partner involved in the transaction, typically representing a customer, supplier, or other associated party.
43
+ * @type {string}
44
+ * @memberof FinancialTransactionDataDto
45
+ */
46
+ 'partnerNumber': string;
47
+ /**
48
+ * An optional grouping identifier for the partner, used for categorization and reporting purposes.
49
+ * @type {string}
50
+ * @memberof FinancialTransactionDataDto
51
+ */
52
+ 'partnerGroup'?: string;
53
+ /**
54
+ * The policy number related to this transaction, used for referencing the associated insurance policy or agreement.
55
+ * @type {string}
56
+ * @memberof FinancialTransactionDataDto
57
+ */
58
+ 'policyNumber': string;
59
+ /**
60
+ * Optional additional information related to the transaction, structured as key-value pairs. These fields may include metadata, identifiers, or contextual details for custom processing.
61
+ * @type {object}
62
+ * @memberof FinancialTransactionDataDto
63
+ */
64
+ 'customFields': object;
65
+ /**
66
+ * A brief summary of the transaction, providing context or purpose, such as \"Payment of invoice #1234\" or \"Monthly premium for policy #5678\".
67
+ * @type {string}
68
+ * @memberof FinancialTransactionDataDto
69
+ */
70
+ 'description': string;
71
+ }
72
+
73
+ export const FinancialTransactionDataDtoDebitCreditEnum = {
74
+ Debit: 'DEBIT',
75
+ Credit: 'CREDIT'
76
+ } as const;
77
+
78
+ export type FinancialTransactionDataDtoDebitCreditEnum = typeof FinancialTransactionDataDtoDebitCreditEnum[keyof typeof FinancialTransactionDataDtoDebitCreditEnum];
79
+
80
+
@@ -0,0 +1,31 @@
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 { FinancialAccountClass } from './financial-account-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GetFinancialAccountResponseClass
22
+ */
23
+ export interface GetFinancialAccountResponseClass {
24
+ /**
25
+ * The financial account response.
26
+ * @type {FinancialAccountClass}
27
+ * @memberof GetFinancialAccountResponseClass
28
+ */
29
+ 'financialAccount': FinancialAccountClass;
30
+ }
31
+
package/models/index.ts CHANGED
@@ -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';
@@ -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
@@ -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,37 @@
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 { BookingProcessClass } from './booking-process-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ListBookingProcessResponseClass
22
+ */
23
+ export interface ListBookingProcessResponseClass {
24
+ /**
25
+ * The list of booking processs.
26
+ * @type {Array<BookingProcessClass>}
27
+ * @memberof ListBookingProcessResponseClass
28
+ */
29
+ 'items': Array<BookingProcessClass>;
30
+ /**
31
+ * Next page token
32
+ * @type {string}
33
+ * @memberof ListBookingProcessResponseClass
34
+ */
35
+ 'nextPageToken': string;
36
+ }
37
+