@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,99 @@
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 { FinancialTransactionDataDto } from './financial-transaction-data-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateBookingEntryRequestDto
17
+ */
18
+ export interface CreateBookingEntryRequestDto {
19
+ /**
20
+ * The date of the booking entry. This represents when the transaction or booking was recorded. Defaults to the current date if not provided.
21
+ * @type {string}
22
+ * @memberof CreateBookingEntryRequestDto
23
+ */
24
+ 'bookingDate'?: string;
25
+ /**
26
+ * A brief description of the booking entry. This provides context or purpose for the entry, such as \"Monthly premium\" or \"Refund issued\".
27
+ * @type {string}
28
+ * @memberof CreateBookingEntryRequestDto
29
+ */
30
+ 'description': string;
31
+ /**
32
+ * The policy number associated with this booking entry. This uniquely identifies the policy related to the transaction.
33
+ * @type {string}
34
+ * @memberof CreateBookingEntryRequestDto
35
+ */
36
+ 'policyNumber': string;
37
+ /**
38
+ * The type of entity associated with this entry, such as invoice or payment. This helps categorize the nature of the booking entry.
39
+ * @type {string}
40
+ * @memberof CreateBookingEntryRequestDto
41
+ */
42
+ 'entityName': CreateBookingEntryRequestDtoEntityNameEnum;
43
+ /**
44
+ * The unique number assigned to the entity, such as an invoice or payment reference number.
45
+ * @type {string}
46
+ * @memberof CreateBookingEntryRequestDto
47
+ */
48
+ 'entityNumber': string;
49
+ /**
50
+ * The currency of the transaction amount, defaulting to EUR (Euro) if not otherwise specified.
51
+ * @type {string}
52
+ * @memberof CreateBookingEntryRequestDto
53
+ */
54
+ 'currency': CreateBookingEntryRequestDtoCurrencyEnum;
55
+ /**
56
+ * The monetary value of the booking entry, expressed as an integer in the smallest currency unit (e.g., cents for EUR). Must be a non-negative integer.
57
+ * @type {number}
58
+ * @memberof CreateBookingEntryRequestDto
59
+ */
60
+ 'amount': number;
61
+ /**
62
+ * An optional identifier for the booking process associated with this entry. This helps to link the entry to a specific booking process if applicable.
63
+ * @type {number}
64
+ * @memberof CreateBookingEntryRequestDto
65
+ */
66
+ 'bookingProcessId'?: number;
67
+ /**
68
+ * Optional key-value pairs containing additional custom information for the booking entry. These fields may include document numbers, reasons, or other contextual metadata.
69
+ * @type {object}
70
+ * @memberof CreateBookingEntryRequestDto
71
+ */
72
+ 'customFields': object;
73
+ /**
74
+ * An array of financial transactions associated with this booking entry. Each transaction includes details such as financial account, amount, and debit or credit status.
75
+ * @type {Array<FinancialTransactionDataDto>}
76
+ * @memberof CreateBookingEntryRequestDto
77
+ */
78
+ 'financialTransactions': Array<FinancialTransactionDataDto>;
79
+ }
80
+ export declare const CreateBookingEntryRequestDtoEntityNameEnum: {
81
+ readonly Claim: "claim";
82
+ readonly Invoice: "invoice";
83
+ readonly Payment: "payment";
84
+ };
85
+ export type CreateBookingEntryRequestDtoEntityNameEnum = typeof CreateBookingEntryRequestDtoEntityNameEnum[keyof typeof CreateBookingEntryRequestDtoEntityNameEnum];
86
+ export declare const CreateBookingEntryRequestDtoCurrencyEnum: {
87
+ readonly Eur: "EUR";
88
+ readonly Usd: "USD";
89
+ readonly Gbp: "GBP";
90
+ readonly Chf: "CHF";
91
+ readonly Pln: "PLN";
92
+ readonly Aud: "AUD";
93
+ readonly Cad: "CAD";
94
+ readonly Ddk: "DDK";
95
+ readonly Huf: "HUF";
96
+ readonly Nok: "NOK";
97
+ readonly Sek: "SEK";
98
+ };
99
+ export type CreateBookingEntryRequestDtoCurrencyEnum = typeof CreateBookingEntryRequestDtoCurrencyEnum[keyof typeof CreateBookingEntryRequestDtoCurrencyEnum];
@@ -0,0 +1,34 @@
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 });
16
+ exports.CreateBookingEntryRequestDtoCurrencyEnum = exports.CreateBookingEntryRequestDtoEntityNameEnum = void 0;
17
+ exports.CreateBookingEntryRequestDtoEntityNameEnum = {
18
+ Claim: 'claim',
19
+ Invoice: 'invoice',
20
+ Payment: 'payment'
21
+ };
22
+ exports.CreateBookingEntryRequestDtoCurrencyEnum = {
23
+ Eur: 'EUR',
24
+ Usd: 'USD',
25
+ Gbp: 'GBP',
26
+ Chf: 'CHF',
27
+ Pln: 'PLN',
28
+ Aud: 'AUD',
29
+ Cad: 'CAD',
30
+ Ddk: 'DDK',
31
+ Huf: 'HUF',
32
+ Nok: 'NOK',
33
+ Sek: 'SEK'
34
+ };
@@ -0,0 +1,64 @@
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 { CreateBookingEntryRequestDto } from './create-booking-entry-request-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateBookingProcessRequestDto
17
+ */
18
+ export interface CreateBookingProcessRequestDto {
19
+ /**
20
+ * 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.
21
+ * @type {string}
22
+ * @memberof CreateBookingProcessRequestDto
23
+ */
24
+ 'policyNumber': string;
25
+ /**
26
+ * The current status of the booking process, indicating its completion or settlement stage, such as invoiced or paid, etc...
27
+ * @type {string}
28
+ * @memberof CreateBookingProcessRequestDto
29
+ */
30
+ 'status': CreateBookingProcessRequestDtoStatusEnum;
31
+ /**
32
+ * The type of booking process being created, such as recurringInvoice or \" initialInvoice. This helps categorize the nature of the booking within the system.
33
+ * @type {string}
34
+ * @memberof CreateBookingProcessRequestDto
35
+ */
36
+ 'bookingProcessType': CreateBookingProcessRequestDtoBookingProcessTypeEnum;
37
+ /**
38
+ * 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.
39
+ * @type {object}
40
+ * @memberof CreateBookingProcessRequestDto
41
+ */
42
+ 'customFields': object;
43
+ /**
44
+ * 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.
45
+ * @type {Array<CreateBookingEntryRequestDto>}
46
+ * @memberof CreateBookingProcessRequestDto
47
+ */
48
+ 'bookingEntries': Array<CreateBookingEntryRequestDto>;
49
+ }
50
+ export declare const CreateBookingProcessRequestDtoStatusEnum: {
51
+ readonly Invoiced: "invoiced";
52
+ readonly Paid: "paid";
53
+ readonly Open: "open";
54
+ };
55
+ export type CreateBookingProcessRequestDtoStatusEnum = typeof CreateBookingProcessRequestDtoStatusEnum[keyof typeof CreateBookingProcessRequestDtoStatusEnum];
56
+ export declare const CreateBookingProcessRequestDtoBookingProcessTypeEnum: {
57
+ readonly TerminationInvoice: "terminationInvoice";
58
+ readonly ClaimsPayment: "claimsPayment";
59
+ readonly WithdrawnInvoice: "withdrawnInvoice";
60
+ readonly CorrectionInvoice: "correctionInvoice";
61
+ readonly RecurringInvoice: "recurringInvoice";
62
+ readonly InitialInvoice: "initialInvoice";
63
+ };
64
+ export type CreateBookingProcessRequestDtoBookingProcessTypeEnum = typeof CreateBookingProcessRequestDtoBookingProcessTypeEnum[keyof typeof CreateBookingProcessRequestDtoBookingProcessTypeEnum];
@@ -0,0 +1,29 @@
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 });
16
+ exports.CreateBookingProcessRequestDtoBookingProcessTypeEnum = exports.CreateBookingProcessRequestDtoStatusEnum = void 0;
17
+ exports.CreateBookingProcessRequestDtoStatusEnum = {
18
+ Invoiced: 'invoiced',
19
+ Paid: 'paid',
20
+ Open: 'open'
21
+ };
22
+ exports.CreateBookingProcessRequestDtoBookingProcessTypeEnum = {
23
+ TerminationInvoice: 'terminationInvoice',
24
+ ClaimsPayment: 'claimsPayment',
25
+ WithdrawnInvoice: 'withdrawnInvoice',
26
+ CorrectionInvoice: 'correctionInvoice',
27
+ RecurringInvoice: 'recurringInvoice',
28
+ InitialInvoice: 'initialInvoice'
29
+ };
@@ -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 { BookingProcessClass } from './booking-process-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateBookingProcessResponseClass
17
+ */
18
+ export interface CreateBookingProcessResponseClass {
19
+ /**
20
+ * The booking-process response.
21
+ * @type {BookingProcessClass}
22
+ * @memberof CreateBookingProcessResponseClass
23
+ */
24
+ 'bookingProcess': BookingProcessClass;
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
@@ -0,0 +1,62 @@
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 CreateFinancialAccountRequestDto
16
+ */
17
+ export interface CreateFinancialAccountRequestDto {
18
+ /**
19
+ * The name of the financial account. This is a descriptive label used to identify the account within the system.
20
+ * @type {string}
21
+ * @memberof CreateFinancialAccountRequestDto
22
+ */
23
+ 'name': string;
24
+ /**
25
+ * The unique account number assigned to this financial account. This number is used to route transactions and manage the account within the financial system.
26
+ * @type {string}
27
+ * @memberof CreateFinancialAccountRequestDto
28
+ */
29
+ 'financialAccountNumber': string;
30
+ /**
31
+ * The type of financial account, specifying its category or classification, such as asset, equity, or expense. This categorization helps in accounting and reporting.
32
+ * @type {string}
33
+ * @memberof CreateFinancialAccountRequestDto
34
+ */
35
+ 'type': CreateFinancialAccountRequestDtoTypeEnum;
36
+ /**
37
+ * An optional code representing the entity associated with this account. Useful for associating the account with specific organizational entities or departments.
38
+ * @type {string}
39
+ * @memberof CreateFinancialAccountRequestDto
40
+ */
41
+ 'entityCode'?: string;
42
+ /**
43
+ * An optional identifier for the parent account. If provided, this allows the creation of sub-accounts under a parent financial account, establishing a hierarchy.
44
+ * @type {number}
45
+ * @memberof CreateFinancialAccountRequestDto
46
+ */
47
+ 'parentId'?: number;
48
+ /**
49
+ * Optional key-value pairs to store additional custom metadata or specific attributes related to the financial account, such as account purpose or manager.
50
+ * @type {object}
51
+ * @memberof CreateFinancialAccountRequestDto
52
+ */
53
+ 'customFields': object;
54
+ }
55
+ export declare const CreateFinancialAccountRequestDtoTypeEnum: {
56
+ readonly Asset: "asset";
57
+ readonly Liability: "liability";
58
+ readonly Equity: "equity";
59
+ readonly Revenue: "revenue";
60
+ readonly Expense: "expense";
61
+ };
62
+ export type CreateFinancialAccountRequestDtoTypeEnum = typeof CreateFinancialAccountRequestDtoTypeEnum[keyof typeof CreateFinancialAccountRequestDtoTypeEnum];
@@ -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,12 +13,11 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.CreateUserRequestDtoModeEnum = exports.CreateUserRequestDtoTypeEnum = void 0;
17
- exports.CreateUserRequestDtoTypeEnum = {
18
- Vu: 'VU',
19
- Vm: 'VM'
20
- };
21
- exports.CreateUserRequestDtoModeEnum = {
22
- Tu: 'TU',
23
- Pp: 'PP'
16
+ exports.CreateFinancialAccountRequestDtoTypeEnum = void 0;
17
+ exports.CreateFinancialAccountRequestDtoTypeEnum = {
18
+ Asset: 'asset',
19
+ Liability: 'liability',
20
+ Equity: 'equity',
21
+ Revenue: 'revenue',
22
+ Expense: 'expense'
24
23
  };
@@ -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 CreateFinancialAccountResponseClass
17
+ */
18
+ export interface CreateFinancialAccountResponseClass {
19
+ /**
20
+ * The financial account response.
21
+ * @type {FinancialAccountClass}
22
+ * @memberof CreateFinancialAccountResponseClass
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
@@ -0,0 +1,98 @@
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 FinancialAccountClass
16
+ */
17
+ export interface FinancialAccountClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof FinancialAccountClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof FinancialAccountClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * The name of the account.
32
+ * @type {string}
33
+ * @memberof FinancialAccountClass
34
+ */
35
+ 'name': string;
36
+ /**
37
+ * The financial account number.
38
+ * @type {string}
39
+ * @memberof FinancialAccountClass
40
+ */
41
+ 'financialAccountNumber': string;
42
+ /**
43
+ * The ID of the parent account, if any.
44
+ * @type {number}
45
+ * @memberof FinancialAccountClass
46
+ */
47
+ 'parentId': number;
48
+ /**
49
+ * The entity code of the account (account code, bank account code, etc...).
50
+ * @type {string}
51
+ * @memberof FinancialAccountClass
52
+ */
53
+ 'entityCode': string;
54
+ /**
55
+ * The type of account, e.g. \"Asset\", \"Liability\", \"Equity\", \"Revenue\", \"Expense\".
56
+ * @type {string}
57
+ * @memberof FinancialAccountClass
58
+ */
59
+ 'type': FinancialAccountClassTypeEnum;
60
+ /**
61
+ * Metadata about the object.
62
+ * @type {object}
63
+ * @memberof FinancialAccountClass
64
+ */
65
+ 'customFields': object;
66
+ /**
67
+ * Time at which the object was created.
68
+ * @type {string}
69
+ * @memberof FinancialAccountClass
70
+ */
71
+ 'createdAt': string;
72
+ /**
73
+ * Time at which the object was updated.
74
+ * @type {string}
75
+ * @memberof FinancialAccountClass
76
+ */
77
+ 'updatedAt': string;
78
+ /**
79
+ * Identifier of the user who created the record.
80
+ * @type {string}
81
+ * @memberof FinancialAccountClass
82
+ */
83
+ 'createdBy': string;
84
+ /**
85
+ * Identifier of the user who last updated the record.
86
+ * @type {string}
87
+ * @memberof FinancialAccountClass
88
+ */
89
+ 'updatedBy': string;
90
+ }
91
+ export declare const FinancialAccountClassTypeEnum: {
92
+ readonly Asset: "asset";
93
+ readonly Liability: "liability";
94
+ readonly Equity: "equity";
95
+ readonly Revenue: "revenue";
96
+ readonly Expense: "expense";
97
+ };
98
+ export type FinancialAccountClassTypeEnum = typeof FinancialAccountClassTypeEnum[keyof typeof FinancialAccountClassTypeEnum];
@@ -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,11 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.UserClassModeEnum = void 0;
17
- exports.UserClassModeEnum = {
18
- Tu: 'TU',
19
- Pp: 'PP'
16
+ exports.FinancialAccountClassTypeEnum = void 0;
17
+ exports.FinancialAccountClassTypeEnum = {
18
+ Asset: 'asset',
19
+ Liability: 'liability',
20
+ Equity: 'equity',
21
+ Revenue: 'revenue',
22
+ Expense: 'expense'
20
23
  };
@@ -0,0 +1,108 @@
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 FinancialTransactionClass
16
+ */
17
+ export interface FinancialTransactionClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof FinancialTransactionClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof FinancialTransactionClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * A brief description or note associated with the financial transaction, providing additional context about the transaction.
32
+ * @type {string}
33
+ * @memberof FinancialTransactionClass
34
+ */
35
+ 'description': string;
36
+ /**
37
+ * The financial account number that this transaction is related to. This is typically a general ledger account number.
38
+ * @type {string}
39
+ * @memberof FinancialTransactionClass
40
+ */
41
+ 'financialAccountNumber': string;
42
+ /**
43
+ * The partner number that this transaction is related to. This is typically a customer or supplier number.
44
+ * @type {string}
45
+ * @memberof FinancialTransactionClass
46
+ */
47
+ 'partnerNumber': string;
48
+ /**
49
+ * The partner group that this transaction is related to. This is typically a customer or supplier group.
50
+ * @type {string}
51
+ * @memberof FinancialTransactionClass
52
+ */
53
+ 'partnerGroup'?: string;
54
+ /**
55
+ * Internal identifier for the associated booking entry. This links the transaction to a specific entry in the booking system.
56
+ * @type {number}
57
+ * @memberof FinancialTransactionClass
58
+ */
59
+ 'bookingEntryId': number;
60
+ /**
61
+ * Indicates whether the transaction is a debit or credit. Possible values are \"DEBIT\" or \"CREDIT\".
62
+ * @type {string}
63
+ * @memberof FinancialTransactionClass
64
+ */
65
+ 'debitCredit': string;
66
+ /**
67
+ * Indicates whether the transaction is \"soll\" or \"haben\" (typically the same as \"debit\" or \"credit\" in English). This is a simplification for German users.
68
+ * @type {string}
69
+ * @memberof FinancialTransactionClass
70
+ */
71
+ 'sollHaben': string;
72
+ /**
73
+ * The total amount of the transaction, represented in cents (e.g., 1550 means €15.50). This value is required for all transactions.
74
+ * @type {number}
75
+ * @memberof FinancialTransactionClass
76
+ */
77
+ 'amount': number;
78
+ /**
79
+ * 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.
80
+ * @type {object}
81
+ * @memberof FinancialTransactionClass
82
+ */
83
+ 'customFields'?: object;
84
+ /**
85
+ * Time at which the object was created.
86
+ * @type {string}
87
+ * @memberof FinancialTransactionClass
88
+ */
89
+ 'createdAt': string;
90
+ /**
91
+ * Time at which the object was updated.
92
+ * @type {string}
93
+ * @memberof FinancialTransactionClass
94
+ */
95
+ 'updatedAt': string;
96
+ /**
97
+ * Identifier of the user who created the record.
98
+ * @type {string}
99
+ * @memberof FinancialTransactionClass
100
+ */
101
+ 'createdBy': string;
102
+ /**
103
+ * Identifier of the user who last updated the record.
104
+ * @type {string}
105
+ * @memberof FinancialTransactionClass
106
+ */
107
+ 'updatedBy': string;
108
+ }
@@ -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