@emilgroup/accounting-sdk-node 1.1.0 → 1.2.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.
- package/.openapi-generator/FILES +52 -15
- package/README.md +2 -2
- package/api/health-api.ts +7 -7
- package/api/mailbox-api.ts +255 -0
- package/api/messages-api.ts +1100 -0
- package/api/users-api.ts +496 -0
- package/api/vbas-api.ts +592 -0
- package/api/vbus-api.ts +701 -0
- package/api/zip-codes-api.ts +443 -0
- package/api.ts +14 -6
- package/base.ts +2 -2
- package/common.ts +4 -4
- package/configuration.ts +2 -2
- package/dist/api/health-api.d.ts +6 -6
- package/dist/api/health-api.js +7 -7
- package/dist/api/mailbox-api.d.ts +142 -0
- package/dist/api/mailbox-api.js +315 -0
- package/dist/api/messages-api.d.ts +632 -0
- package/dist/api/messages-api.js +916 -0
- package/dist/api/users-api.d.ts +275 -0
- package/dist/api/users-api.js +512 -0
- package/dist/api/vbas-api.d.ts +337 -0
- package/dist/api/{financial-accounts-api.js → vbas-api.js} +161 -156
- package/dist/api/vbus-api.d.ts +395 -0
- package/dist/api/vbus-api.js +647 -0
- package/dist/api/zip-codes-api.d.ts +253 -0
- package/dist/api/{booking-processes-api.js → zip-codes-api.js} +166 -80
- package/dist/api.d.ts +8 -4
- package/dist/api.js +8 -4
- package/dist/base.d.ts +2 -2
- package/dist/base.js +2 -2
- package/dist/common.d.ts +4 -4
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +2 -2
- package/dist/configuration.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/models/address-class.d.ts +48 -0
- package/dist/models/{get-financial-account-response-class.js → address-class.js} +2 -2
- package/dist/models/create-mailbox-request-dto.d.ts +36 -0
- package/dist/models/{create-booking-process-response-class.js → create-mailbox-request-dto.js} +2 -2
- package/dist/models/create-user-request-dto.d.ts +76 -0
- package/dist/models/{financial-account-class.js → create-user-request-dto.js} +10 -9
- package/dist/models/create-user-response-class.d.ts +25 -0
- package/dist/models/{financial-transaction-class.js → create-user-response-class.js} +2 -2
- package/dist/models/create-vba-request-dto.d.ts +41 -0
- package/dist/models/create-vba-request-dto.js +20 -0
- package/dist/models/create-vba-response-class.d.ts +24 -0
- package/dist/models/{create-financial-account-response-class.js → create-vba-response-class.js} +2 -2
- package/dist/models/create-vbu-request-dto.d.ts +41 -0
- package/dist/models/create-vbu-request-dto.js +20 -0
- package/dist/models/create-vbu-response-class.d.ts +24 -0
- package/dist/models/create-vbu-response-class.js +15 -0
- package/dist/models/create-vbuv-request-dto.d.ts +41 -0
- package/dist/models/create-vbuv-request-dto.js +20 -0
- package/dist/models/create-vbuv-response-class.d.ts +24 -0
- package/dist/models/create-vbuv-response-class.js +15 -0
- package/dist/models/get-request-message-response-class.d.ts +25 -0
- package/dist/models/get-request-message-response-class.js +15 -0
- package/dist/models/get-response-message-response-class.d.ts +25 -0
- package/dist/models/get-response-message-response-class.js +15 -0
- package/dist/models/get-user-response-class.d.ts +25 -0
- package/dist/models/get-user-response-class.js +15 -0
- package/dist/models/get-vba-response-class.d.ts +25 -0
- package/dist/models/get-vba-response-class.js +15 -0
- package/dist/models/get-vbu-response-class.d.ts +25 -0
- package/dist/models/get-vbu-response-class.js +15 -0
- package/dist/models/get-zip-code-response-class.d.ts +25 -0
- package/dist/models/get-zip-code-response-class.js +15 -0
- package/dist/models/index.d.ts +46 -13
- package/dist/models/index.js +46 -13
- package/dist/models/inline-response200.d.ts +2 -2
- package/dist/models/inline-response200.js +2 -2
- package/dist/models/inline-response503.d.ts +2 -2
- package/dist/models/inline-response503.js +2 -2
- package/dist/models/list-all-messages-response-class.d.ts +31 -0
- package/dist/models/list-all-messages-response-class.js +15 -0
- package/dist/models/list-requests-messages-response-class.d.ts +31 -0
- package/dist/models/list-requests-messages-response-class.js +15 -0
- package/dist/models/list-responses-messages-response-class.d.ts +31 -0
- package/dist/models/list-responses-messages-response-class.js +15 -0
- package/dist/models/list-users-response-class.d.ts +31 -0
- package/dist/models/list-users-response-class.js +15 -0
- package/dist/models/list-vbas-response-class.d.ts +31 -0
- package/dist/models/list-vbas-response-class.js +15 -0
- package/dist/models/list-vbus-response-class.d.ts +31 -0
- package/dist/models/list-vbus-response-class.js +15 -0
- package/dist/models/list-zip-codes-response-class.d.ts +31 -0
- package/dist/models/list-zip-codes-response-class.js +15 -0
- package/dist/models/message-class.d.ts +84 -0
- package/dist/models/message-class.js +15 -0
- package/dist/models/request-details-class.d.ts +48 -0
- package/dist/models/request-details-class.js +15 -0
- package/dist/models/request-message-class.d.ts +121 -0
- package/dist/models/request-message-class.js +15 -0
- package/dist/models/response-details-class.d.ts +42 -0
- package/dist/models/response-details-class.js +15 -0
- package/dist/models/response-message-class.d.ts +133 -0
- package/dist/models/response-message-class.js +15 -0
- package/dist/models/store-zip-codes-request-dto.d.ts +25 -0
- package/dist/models/store-zip-codes-request-dto.js +15 -0
- package/dist/models/store-zip-codes-response-class.d.ts +25 -0
- package/dist/models/store-zip-codes-response-class.js +15 -0
- package/dist/models/update-request-message-request-dto.d.ts +36 -0
- package/dist/models/update-request-message-request-dto.js +15 -0
- package/dist/models/update-request-message-response-class.d.ts +25 -0
- package/dist/models/update-request-message-response-class.js +15 -0
- package/dist/models/update-response-message-request-dto.d.ts +36 -0
- package/dist/models/update-response-message-request-dto.js +15 -0
- package/dist/models/update-response-message-response-class.d.ts +25 -0
- package/dist/models/update-response-message-response-class.js +15 -0
- package/dist/models/update-user-request-dto.d.ts +82 -0
- package/dist/models/{financial-transaction-data-dto.js → update-user-request-dto.js} +10 -6
- package/dist/models/update-user-response-class.d.ts +25 -0
- package/dist/models/update-user-response-class.js +15 -0
- package/dist/models/update-vba-request-dto.d.ts +30 -0
- package/dist/models/update-vba-request-dto.js +15 -0
- package/dist/models/update-vbu-request-dto.d.ts +30 -0
- package/dist/models/update-vbu-request-dto.js +15 -0
- package/dist/models/update-vbu-response-class.d.ts +25 -0
- package/dist/models/update-vbu-response-class.js +15 -0
- package/dist/models/user-class.d.ts +107 -0
- package/dist/models/user-class.js +20 -0
- package/dist/models/vba-class.d.ts +116 -0
- package/dist/models/vba-class.js +15 -0
- package/dist/models/vba-response-class.d.ts +48 -0
- package/dist/models/vba-response-class.js +15 -0
- package/dist/models/vbu-class.d.ts +115 -0
- package/dist/models/vbu-class.js +15 -0
- package/dist/models/vbu-response-class.d.ts +48 -0
- package/dist/models/vbu-response-class.js +15 -0
- package/dist/models/xlsx-zip-code-dto.d.ts +30 -0
- package/dist/models/xlsx-zip-code-dto.js +15 -0
- package/dist/models/zip-code-class.d.ts +60 -0
- package/dist/models/zip-code-class.js +15 -0
- package/index.ts +2 -2
- package/models/address-class.ts +54 -0
- package/models/create-mailbox-request-dto.ts +42 -0
- package/models/create-user-request-dto.ts +86 -0
- package/models/create-user-response-class.ts +31 -0
- package/models/create-vba-request-dto.ts +50 -0
- package/models/create-vba-response-class.ts +30 -0
- package/models/create-vbu-request-dto.ts +50 -0
- package/models/create-vbu-response-class.ts +30 -0
- package/models/create-vbuv-request-dto.ts +50 -0
- package/models/create-vbuv-response-class.ts +30 -0
- package/models/get-request-message-response-class.ts +31 -0
- package/models/get-response-message-response-class.ts +31 -0
- package/models/get-user-response-class.ts +31 -0
- package/models/get-vba-response-class.ts +31 -0
- package/models/get-vbu-response-class.ts +31 -0
- package/models/get-zip-code-response-class.ts +31 -0
- package/models/index.ts +46 -13
- package/models/inline-response200.ts +2 -2
- package/models/inline-response503.ts +2 -2
- package/models/list-all-messages-response-class.ts +37 -0
- package/models/list-requests-messages-response-class.ts +37 -0
- package/models/list-responses-messages-response-class.ts +37 -0
- package/models/list-users-response-class.ts +37 -0
- package/models/list-vbas-response-class.ts +37 -0
- package/models/list-vbus-response-class.ts +37 -0
- package/models/list-zip-codes-response-class.ts +37 -0
- package/models/message-class.ts +90 -0
- package/models/request-details-class.ts +54 -0
- package/models/request-message-class.ts +127 -0
- package/models/response-details-class.ts +48 -0
- package/models/response-message-class.ts +139 -0
- package/models/store-zip-codes-request-dto.ts +31 -0
- package/models/store-zip-codes-response-class.ts +31 -0
- package/models/update-request-message-request-dto.ts +42 -0
- package/models/update-request-message-response-class.ts +31 -0
- package/models/update-response-message-request-dto.ts +42 -0
- package/models/update-response-message-response-class.ts +31 -0
- package/models/update-user-request-dto.ts +92 -0
- package/models/update-user-response-class.ts +31 -0
- package/models/update-vba-request-dto.ts +36 -0
- package/models/update-vbu-request-dto.ts +36 -0
- package/models/update-vbu-response-class.ts +31 -0
- package/models/user-class.ts +116 -0
- package/models/vba-class.ts +122 -0
- package/models/vba-response-class.ts +54 -0
- package/models/vbu-class.ts +121 -0
- package/models/vbu-response-class.ts +54 -0
- package/models/xlsx-zip-code-dto.ts +36 -0
- package/models/zip-code-class.ts +66 -0
- package/package.json +1 -1
- package/api/booking-processes-api.ts +0 -357
- package/api/financial-accounts-api.ts +0 -577
- package/dist/api/booking-processes-api.d.ts +0 -207
- package/dist/api/financial-accounts-api.d.ts +0 -327
- package/dist/models/booking-entry-class.d.ts +0 -123
- package/dist/models/booking-entry-class.js +0 -34
- package/dist/models/booking-process-class.d.ts +0 -94
- package/dist/models/booking-process-class.js +0 -29
- package/dist/models/create-booking-entry-request-dto.d.ts +0 -99
- package/dist/models/create-booking-entry-request-dto.js +0 -34
- package/dist/models/create-booking-process-request-dto.d.ts +0 -64
- package/dist/models/create-booking-process-request-dto.js +0 -29
- package/dist/models/create-booking-process-response-class.d.ts +0 -25
- package/dist/models/create-financial-account-request-dto.d.ts +0 -62
- package/dist/models/create-financial-account-request-dto.js +0 -23
- package/dist/models/create-financial-account-response-class.d.ts +0 -25
- package/dist/models/financial-account-class.d.ts +0 -98
- package/dist/models/financial-transaction-class.d.ts +0 -108
- package/dist/models/financial-transaction-data-dto.d.ts +0 -71
- package/dist/models/get-financial-account-response-class.d.ts +0 -25
- package/dist/models/list-booking-process-response-class.d.ts +0 -31
- package/dist/models/list-booking-process-response-class.js +0 -15
- package/dist/models/list-financial-accounts-response-class.d.ts +0 -31
- package/dist/models/list-financial-accounts-response-class.js +0 -15
- package/models/booking-entry-class.ts +0 -133
- package/models/booking-process-class.ts +0 -104
- package/models/create-booking-entry-request-dto.ts +0 -109
- package/models/create-booking-process-request-dto.ts +0 -74
- package/models/create-booking-process-response-class.ts +0 -31
- package/models/create-financial-account-request-dto.ts +0 -71
- package/models/create-financial-account-response-class.ts +0 -31
- package/models/financial-account-class.ts +0 -107
- package/models/financial-transaction-class.ts +0 -114
- package/models/financial-transaction-data-dto.ts +0 -80
- package/models/get-financial-account-response-class.ts +0 -31
- package/models/list-booking-process-response-class.ts +0 -37
- package/models/list-financial-accounts-response-class.ts +0 -37
|
@@ -1,98 +0,0 @@
|
|
|
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];
|
|
@@ -1,108 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
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];
|
|
@@ -1,25 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,31 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,133 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,104 +0,0 @@
|
|
|
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
|
-
|