@emilgroup/accounting-sdk-node 1.19.0 → 1.20.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 +29 -52
- package/README.md +2 -2
- package/api/{zip-codes-api.ts → booking-entries-api.ts} +195 -162
- package/api/financial-accounts-api.ts +577 -0
- package/api/financial-transactions-api.ts +369 -0
- package/api/health-api.ts +7 -7
- package/api/number-ranges-api.ts +577 -0
- package/api/personal-accounts-api.ts +577 -0
- package/api.ts +12 -14
- package/base.ts +2 -2
- package/common.ts +4 -4
- package/configuration.ts +2 -2
- package/dist/api/{zip-codes-api.d.ts → booking-entries-api.d.ts} +130 -111
- package/dist/api/{zip-codes-api.js → booking-entries-api.js} +144 -130
- package/dist/api/financial-accounts-api.d.ts +327 -0
- package/dist/api/{users-api.js → financial-accounts-api.js} +171 -134
- package/dist/api/financial-transactions-api.d.ts +215 -0
- package/dist/api/financial-transactions-api.js +364 -0
- package/dist/api/health-api.d.ts +6 -6
- package/dist/api/health-api.js +7 -7
- package/dist/api/number-ranges-api.d.ts +327 -0
- package/dist/api/{vbas-api.js → number-ranges-api.js} +156 -161
- package/dist/api/personal-accounts-api.d.ts +327 -0
- package/dist/api/{vbus-api.js → personal-accounts-api.js} +136 -234
- package/dist/api.d.ts +7 -8
- package/dist/api.js +7 -8
- 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/booking-entry-class.d.ts +123 -0
- package/dist/models/{create-vbuv-request-dto.js → booking-entry-class.js} +15 -6
- package/dist/models/create-booking-entry-request-dto.d.ts +61 -0
- package/dist/models/{address-class.js → create-booking-entry-request-dto.js} +2 -2
- package/dist/models/create-booking-entry-response-class.d.ts +25 -0
- package/dist/models/{create-user-response-class.js → create-booking-entry-response-class.js} +2 -2
- package/dist/models/create-financial-account-request-dto.d.ts +75 -0
- package/dist/models/create-financial-account-request-dto.js +24 -0
- package/dist/models/create-financial-account-response-class.d.ts +25 -0
- package/dist/models/{create-mailbox-request-dto.js → create-financial-account-response-class.js} +2 -2
- package/dist/models/create-number-range-request-dto.d.ts +53 -0
- package/dist/models/create-number-range-request-dto.js +26 -0
- package/dist/models/create-number-range-response-class.d.ts +25 -0
- package/dist/models/{create-vba-response-class.js → create-number-range-response-class.js} +2 -2
- package/dist/models/create-personal-account-request-dto.d.ts +60 -0
- package/dist/models/{create-vba-request-dto.js → create-personal-account-request-dto.js} +7 -6
- package/dist/models/create-personal-account-response-class.d.ts +25 -0
- package/dist/models/create-personal-account-response-class.js +15 -0
- package/dist/models/financial-account-class.d.ts +111 -0
- package/dist/models/{create-vbu-request-dto.js → financial-account-class.js} +10 -6
- package/dist/models/financial-transaction-class.d.ts +114 -0
- package/dist/models/financial-transaction-class.js +15 -0
- package/dist/models/financial-transaction-data-dto.d.ts +71 -0
- package/dist/models/financial-transaction-data-dto.js +25 -0
- package/dist/models/get-booking-entry-response-class.d.ts +25 -0
- package/dist/models/get-booking-entry-response-class.js +15 -0
- package/dist/models/get-financial-account-response-class.d.ts +25 -0
- package/dist/models/get-financial-account-response-class.js +15 -0
- package/dist/models/get-financial-transaction-response-class.d.ts +25 -0
- package/dist/models/get-financial-transaction-response-class.js +15 -0
- package/dist/models/get-number-range-response-class.d.ts +25 -0
- package/dist/models/get-number-range-response-class.js +15 -0
- package/dist/models/get-personal-account-response-class.d.ts +25 -0
- package/dist/models/get-personal-account-response-class.js +15 -0
- package/dist/models/index.d.ts +24 -46
- package/dist/models/index.js +24 -46
- 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-booking-entries-response-class.d.ts +31 -0
- package/dist/models/list-booking-entries-response-class.js +15 -0
- package/dist/models/list-financial-accounts-response-class.d.ts +31 -0
- package/dist/models/list-financial-accounts-response-class.js +15 -0
- package/dist/models/list-financial-transactions-response-class.d.ts +31 -0
- package/dist/models/list-financial-transactions-response-class.js +15 -0
- package/dist/models/list-number-range-response-class.d.ts +31 -0
- package/dist/models/list-number-range-response-class.js +15 -0
- package/dist/models/list-personal-accounts-response-class.d.ts +31 -0
- package/dist/models/list-personal-accounts-response-class.js +15 -0
- package/dist/models/number-range-class.d.ts +84 -0
- package/dist/models/number-range-class.js +15 -0
- package/dist/models/personal-account-class.d.ts +105 -0
- package/dist/models/{create-user-request-dto.js → personal-account-class.js} +10 -10
- package/index.ts +2 -2
- package/models/booking-entry-class.ts +132 -0
- package/models/create-booking-entry-request-dto.ts +67 -0
- package/models/create-booking-entry-response-class.ts +31 -0
- package/models/create-financial-account-request-dto.ts +84 -0
- package/models/create-financial-account-response-class.ts +31 -0
- package/models/create-number-range-request-dto.ts +62 -0
- package/models/create-number-range-response-class.ts +31 -0
- package/models/create-personal-account-request-dto.ts +69 -0
- package/models/create-personal-account-response-class.ts +31 -0
- package/models/financial-account-class.ts +120 -0
- package/models/financial-transaction-class.ts +120 -0
- package/models/financial-transaction-data-dto.ts +81 -0
- package/models/get-booking-entry-response-class.ts +31 -0
- package/models/get-financial-account-response-class.ts +31 -0
- package/models/get-financial-transaction-response-class.ts +31 -0
- package/models/get-number-range-response-class.ts +31 -0
- package/models/get-personal-account-response-class.ts +31 -0
- package/models/index.ts +24 -46
- package/models/inline-response200.ts +2 -2
- package/models/inline-response503.ts +2 -2
- package/models/list-booking-entries-response-class.ts +37 -0
- package/models/list-financial-accounts-response-class.ts +37 -0
- package/models/list-financial-transactions-response-class.ts +37 -0
- package/models/list-number-range-response-class.ts +37 -0
- package/models/list-personal-accounts-response-class.ts +37 -0
- package/models/number-range-class.ts +90 -0
- package/models/personal-account-class.ts +114 -0
- package/package.json +1 -1
- package/api/mailbox-api.ts +0 -255
- package/api/messages-api.ts +0 -1100
- package/api/users-api.ts +0 -496
- package/api/vbas-api.ts +0 -592
- package/api/vbus-api.ts +0 -701
- package/dist/api/mailbox-api.d.ts +0 -142
- package/dist/api/mailbox-api.js +0 -315
- package/dist/api/messages-api.d.ts +0 -632
- package/dist/api/messages-api.js +0 -916
- package/dist/api/users-api.d.ts +0 -275
- package/dist/api/vbas-api.d.ts +0 -337
- package/dist/api/vbus-api.d.ts +0 -395
- package/dist/models/address-class.d.ts +0 -48
- package/dist/models/create-mailbox-request-dto.d.ts +0 -36
- package/dist/models/create-user-request-dto.d.ts +0 -76
- package/dist/models/create-user-response-class.d.ts +0 -25
- package/dist/models/create-vba-request-dto.d.ts +0 -41
- package/dist/models/create-vba-response-class.d.ts +0 -24
- package/dist/models/create-vbu-request-dto.d.ts +0 -41
- package/dist/models/create-vbu-response-class.d.ts +0 -24
- package/dist/models/create-vbu-response-class.js +0 -15
- package/dist/models/create-vbuv-request-dto.d.ts +0 -41
- package/dist/models/create-vbuv-response-class.d.ts +0 -24
- package/dist/models/create-vbuv-response-class.js +0 -15
- package/dist/models/get-request-message-response-class.d.ts +0 -25
- package/dist/models/get-request-message-response-class.js +0 -15
- package/dist/models/get-response-message-response-class.d.ts +0 -25
- package/dist/models/get-response-message-response-class.js +0 -15
- package/dist/models/get-user-response-class.d.ts +0 -25
- package/dist/models/get-user-response-class.js +0 -15
- package/dist/models/get-vba-response-class.d.ts +0 -25
- package/dist/models/get-vba-response-class.js +0 -15
- package/dist/models/get-vbu-response-class.d.ts +0 -25
- package/dist/models/get-vbu-response-class.js +0 -15
- package/dist/models/get-zip-code-response-class.d.ts +0 -25
- package/dist/models/get-zip-code-response-class.js +0 -15
- package/dist/models/list-all-messages-response-class.d.ts +0 -31
- package/dist/models/list-all-messages-response-class.js +0 -15
- package/dist/models/list-requests-messages-response-class.d.ts +0 -31
- package/dist/models/list-requests-messages-response-class.js +0 -15
- package/dist/models/list-responses-messages-response-class.d.ts +0 -31
- package/dist/models/list-responses-messages-response-class.js +0 -15
- package/dist/models/list-users-response-class.d.ts +0 -31
- package/dist/models/list-users-response-class.js +0 -15
- package/dist/models/list-vbas-response-class.d.ts +0 -31
- package/dist/models/list-vbas-response-class.js +0 -15
- package/dist/models/list-vbus-response-class.d.ts +0 -31
- package/dist/models/list-vbus-response-class.js +0 -15
- package/dist/models/list-zip-codes-response-class.d.ts +0 -31
- package/dist/models/list-zip-codes-response-class.js +0 -15
- package/dist/models/message-class.d.ts +0 -90
- package/dist/models/message-class.js +0 -15
- package/dist/models/request-details-class.d.ts +0 -48
- package/dist/models/request-details-class.js +0 -15
- package/dist/models/request-message-class.d.ts +0 -127
- package/dist/models/request-message-class.js +0 -15
- package/dist/models/response-details-class.d.ts +0 -42
- package/dist/models/response-details-class.js +0 -15
- package/dist/models/response-message-class.d.ts +0 -139
- package/dist/models/response-message-class.js +0 -15
- package/dist/models/store-zip-codes-request-dto.d.ts +0 -25
- package/dist/models/store-zip-codes-request-dto.js +0 -15
- package/dist/models/store-zip-codes-response-class.d.ts +0 -25
- package/dist/models/store-zip-codes-response-class.js +0 -15
- package/dist/models/update-request-message-request-dto.d.ts +0 -36
- package/dist/models/update-request-message-request-dto.js +0 -15
- package/dist/models/update-request-message-response-class.d.ts +0 -25
- package/dist/models/update-request-message-response-class.js +0 -15
- package/dist/models/update-response-message-request-dto.d.ts +0 -36
- package/dist/models/update-response-message-request-dto.js +0 -15
- package/dist/models/update-response-message-response-class.d.ts +0 -25
- package/dist/models/update-response-message-response-class.js +0 -15
- package/dist/models/update-user-request-dto.d.ts +0 -82
- package/dist/models/update-user-request-dto.js +0 -24
- package/dist/models/update-user-response-class.d.ts +0 -25
- package/dist/models/update-user-response-class.js +0 -15
- package/dist/models/update-vba-request-dto.d.ts +0 -30
- package/dist/models/update-vba-request-dto.js +0 -15
- package/dist/models/update-vbu-request-dto.d.ts +0 -30
- package/dist/models/update-vbu-request-dto.js +0 -15
- package/dist/models/update-vbu-response-class.d.ts +0 -25
- package/dist/models/update-vbu-response-class.js +0 -15
- package/dist/models/user-class.d.ts +0 -107
- package/dist/models/user-class.js +0 -20
- package/dist/models/vba-class.d.ts +0 -116
- package/dist/models/vba-class.js +0 -15
- package/dist/models/vba-response-class.d.ts +0 -48
- package/dist/models/vba-response-class.js +0 -15
- package/dist/models/vbu-class.d.ts +0 -115
- package/dist/models/vbu-class.js +0 -15
- package/dist/models/vbu-response-class.d.ts +0 -48
- package/dist/models/vbu-response-class.js +0 -15
- package/dist/models/xlsx-zip-code-dto.d.ts +0 -30
- package/dist/models/xlsx-zip-code-dto.js +0 -15
- package/dist/models/zip-code-class.d.ts +0 -60
- package/dist/models/zip-code-class.js +0 -15
- package/models/address-class.ts +0 -54
- package/models/create-mailbox-request-dto.ts +0 -42
- package/models/create-user-request-dto.ts +0 -86
- package/models/create-user-response-class.ts +0 -31
- package/models/create-vba-request-dto.ts +0 -50
- package/models/create-vba-response-class.ts +0 -30
- package/models/create-vbu-request-dto.ts +0 -50
- package/models/create-vbu-response-class.ts +0 -30
- package/models/create-vbuv-request-dto.ts +0 -50
- package/models/create-vbuv-response-class.ts +0 -30
- package/models/get-request-message-response-class.ts +0 -31
- package/models/get-response-message-response-class.ts +0 -31
- package/models/get-user-response-class.ts +0 -31
- package/models/get-vba-response-class.ts +0 -31
- package/models/get-vbu-response-class.ts +0 -31
- package/models/get-zip-code-response-class.ts +0 -31
- package/models/list-all-messages-response-class.ts +0 -37
- package/models/list-requests-messages-response-class.ts +0 -37
- package/models/list-responses-messages-response-class.ts +0 -37
- package/models/list-users-response-class.ts +0 -37
- package/models/list-vbas-response-class.ts +0 -37
- package/models/list-vbus-response-class.ts +0 -37
- package/models/list-zip-codes-response-class.ts +0 -37
- package/models/message-class.ts +0 -96
- package/models/request-details-class.ts +0 -54
- package/models/request-message-class.ts +0 -133
- package/models/response-details-class.ts +0 -48
- package/models/response-message-class.ts +0 -145
- package/models/store-zip-codes-request-dto.ts +0 -31
- package/models/store-zip-codes-response-class.ts +0 -31
- package/models/update-request-message-request-dto.ts +0 -42
- package/models/update-request-message-response-class.ts +0 -31
- package/models/update-response-message-request-dto.ts +0 -42
- package/models/update-response-message-response-class.ts +0 -31
- package/models/update-user-request-dto.ts +0 -92
- package/models/update-user-response-class.ts +0 -31
- package/models/update-vba-request-dto.ts +0 -36
- package/models/update-vbu-request-dto.ts +0 -36
- package/models/update-vbu-response-class.ts +0 -31
- package/models/user-class.ts +0 -116
- package/models/vba-class.ts +0 -122
- package/models/vba-response-class.ts +0 -54
- package/models/vbu-class.ts +0 -121
- package/models/vbu-response-class.ts +0 -54
- package/models/xlsx-zip-code-dto.ts +0 -36
- package/models/zip-code-class.ts +0 -66
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* EMIL
|
|
3
|
-
* The EMIL
|
|
2
|
+
* EMIL AccountingService
|
|
3
|
+
* The EMIL AccountingService API description
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
6
|
* Contact: kontakt@emil.de
|
|
@@ -9,10 +9,9 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
export * from './api/booking-entries-api';
|
|
13
|
+
export * from './api/financial-accounts-api';
|
|
14
|
+
export * from './api/financial-transactions-api';
|
|
12
15
|
export * from './api/health-api';
|
|
13
|
-
export * from './api/
|
|
14
|
-
export * from './api/
|
|
15
|
-
export * from './api/users-api';
|
|
16
|
-
export * from './api/vbas-api';
|
|
17
|
-
export * from './api/vbus-api';
|
|
18
|
-
export * from './api/zip-codes-api';
|
|
16
|
+
export * from './api/number-ranges-api';
|
|
17
|
+
export * from './api/personal-accounts-api';
|
package/dist/api.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
* EMIL
|
|
6
|
-
* The EMIL
|
|
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
|
|
@@ -27,10 +27,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
27
27
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
28
28
|
};
|
|
29
29
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
|
+
__exportStar(require("./api/booking-entries-api"), exports);
|
|
31
|
+
__exportStar(require("./api/financial-accounts-api"), exports);
|
|
32
|
+
__exportStar(require("./api/financial-transactions-api"), exports);
|
|
30
33
|
__exportStar(require("./api/health-api"), exports);
|
|
31
|
-
__exportStar(require("./api/
|
|
32
|
-
__exportStar(require("./api/
|
|
33
|
-
__exportStar(require("./api/users-api"), exports);
|
|
34
|
-
__exportStar(require("./api/vbas-api"), exports);
|
|
35
|
-
__exportStar(require("./api/vbus-api"), exports);
|
|
36
|
-
__exportStar(require("./api/zip-codes-api"), exports);
|
|
34
|
+
__exportStar(require("./api/number-ranges-api"), exports);
|
|
35
|
+
__exportStar(require("./api/personal-accounts-api"), exports);
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* EMIL
|
|
3
|
-
* The EMIL
|
|
2
|
+
* EMIL AccountingService
|
|
3
|
+
* The EMIL AccountingService API description
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
6
|
* Contact: kontakt@emil.de
|
|
@@ -65,8 +65,8 @@ export declare const toPathString: (url: URL) => string;
|
|
|
65
65
|
*/
|
|
66
66
|
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
|
|
67
67
|
/**
|
|
68
|
-
* EMIL
|
|
69
|
-
* The EMIL
|
|
68
|
+
* EMIL AccountingService
|
|
69
|
+
* The EMIL AccountingService API description
|
|
70
70
|
*
|
|
71
71
|
* The version of the OpenAPI document: 1.0
|
|
72
72
|
* Contact: kontakt@emil.de
|
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -0,0 +1,123 @@
|
|
|
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 { FinancialTransactionClass } from './financial-transaction-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface BookingEntryClass
|
|
17
|
+
*/
|
|
18
|
+
export interface BookingEntryClass {
|
|
19
|
+
/**
|
|
20
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof BookingEntryClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier for the object.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof BookingEntryClass
|
|
29
|
+
*/
|
|
30
|
+
'code': string;
|
|
31
|
+
/**
|
|
32
|
+
* The total monetary amount of this booking entry. This amount is distributed among the associated transactions.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof BookingEntryClass
|
|
35
|
+
*/
|
|
36
|
+
'amount': number;
|
|
37
|
+
/**
|
|
38
|
+
* The currency in which the booking entry amount is denominated.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof BookingEntryClass
|
|
41
|
+
*/
|
|
42
|
+
'currency': BookingEntryClassCurrencyEnum;
|
|
43
|
+
/**
|
|
44
|
+
* The date of the booking entry. This represents when the booking was recorded. Defaults to the current date if not provided.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof BookingEntryClass
|
|
47
|
+
*/
|
|
48
|
+
'bookingDate': string;
|
|
49
|
+
/**
|
|
50
|
+
* The date of the document. This represents when the document was recorded. Defaults to the current date if not provided.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof BookingEntryClass
|
|
53
|
+
*/
|
|
54
|
+
'documentDate': string;
|
|
55
|
+
/**
|
|
56
|
+
* A brief description of the booking entry. This provides context or purpose for the entry, such as \"Monthly premium\" or \"Refund issued\".
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof BookingEntryClass
|
|
59
|
+
*/
|
|
60
|
+
'description': string;
|
|
61
|
+
/**
|
|
62
|
+
* 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.
|
|
63
|
+
* @type {object}
|
|
64
|
+
* @memberof BookingEntryClass
|
|
65
|
+
*/
|
|
66
|
+
'customFields'?: object;
|
|
67
|
+
/**
|
|
68
|
+
* The unique identifier for the entity (e.g., claim, invoice) associated with this booking entry.
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof BookingEntryClass
|
|
71
|
+
*/
|
|
72
|
+
'entityNumber'?: string;
|
|
73
|
+
/**
|
|
74
|
+
* The external document number associated with this booking entry.
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof BookingEntryClass
|
|
77
|
+
*/
|
|
78
|
+
'externalNumber'?: string;
|
|
79
|
+
/**
|
|
80
|
+
* A list of financial transactions associated with this booking entry. Each entry represents a transaction linked to the current booking.
|
|
81
|
+
* @type {Array<FinancialTransactionClass>}
|
|
82
|
+
* @memberof BookingEntryClass
|
|
83
|
+
*/
|
|
84
|
+
'financialTransactions': Array<FinancialTransactionClass>;
|
|
85
|
+
/**
|
|
86
|
+
* Time at which the object was created.
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof BookingEntryClass
|
|
89
|
+
*/
|
|
90
|
+
'createdAt': string;
|
|
91
|
+
/**
|
|
92
|
+
* Time at which the object was updated.
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof BookingEntryClass
|
|
95
|
+
*/
|
|
96
|
+
'updatedAt': string;
|
|
97
|
+
/**
|
|
98
|
+
* Identifier of the user who created the record.
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof BookingEntryClass
|
|
101
|
+
*/
|
|
102
|
+
'createdBy': string;
|
|
103
|
+
/**
|
|
104
|
+
* Identifier of the user who last updated the record.
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof BookingEntryClass
|
|
107
|
+
*/
|
|
108
|
+
'updatedBy': string;
|
|
109
|
+
}
|
|
110
|
+
export declare const BookingEntryClassCurrencyEnum: {
|
|
111
|
+
readonly Eur: "EUR";
|
|
112
|
+
readonly Usd: "USD";
|
|
113
|
+
readonly Gbp: "GBP";
|
|
114
|
+
readonly Chf: "CHF";
|
|
115
|
+
readonly Pln: "PLN";
|
|
116
|
+
readonly Aud: "AUD";
|
|
117
|
+
readonly Cad: "CAD";
|
|
118
|
+
readonly Ddk: "DDK";
|
|
119
|
+
readonly Huf: "HUF";
|
|
120
|
+
readonly Nok: "NOK";
|
|
121
|
+
readonly Sek: "SEK";
|
|
122
|
+
};
|
|
123
|
+
export type BookingEntryClassCurrencyEnum = typeof BookingEntryClassCurrencyEnum[keyof typeof BookingEntryClassCurrencyEnum];
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
* EMIL
|
|
6
|
-
* The EMIL
|
|
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,17 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
exports.BookingEntryClassCurrencyEnum = void 0;
|
|
17
|
+
exports.BookingEntryClassCurrencyEnum = {
|
|
18
|
+
Eur: 'EUR',
|
|
19
|
+
Usd: 'USD',
|
|
20
|
+
Gbp: 'GBP',
|
|
21
|
+
Chf: 'CHF',
|
|
22
|
+
Pln: 'PLN',
|
|
23
|
+
Aud: 'AUD',
|
|
24
|
+
Cad: 'CAD',
|
|
25
|
+
Ddk: 'DDK',
|
|
26
|
+
Huf: 'HUF',
|
|
27
|
+
Nok: 'NOK',
|
|
28
|
+
Sek: 'SEK'
|
|
20
29
|
};
|
|
@@ -0,0 +1,61 @@
|
|
|
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.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateBookingEntryRequestDto
|
|
23
|
+
*/
|
|
24
|
+
'bookingDate': string;
|
|
25
|
+
/**
|
|
26
|
+
* The document date of the booking entry. This represents when the document was created or received.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CreateBookingEntryRequestDto
|
|
29
|
+
*/
|
|
30
|
+
'documentDate': string;
|
|
31
|
+
/**
|
|
32
|
+
* The entity number assigned to the entry, such as an invoice or payment reference number.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CreateBookingEntryRequestDto
|
|
35
|
+
*/
|
|
36
|
+
'entityNumber'?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The external document number assigned to the entry, such as an invoice or payment reference number.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CreateBookingEntryRequestDto
|
|
41
|
+
*/
|
|
42
|
+
'externalNumber'?: string;
|
|
43
|
+
/**
|
|
44
|
+
* A brief description of the booking entry. This provides context or purpose for the entry, such as \"Monthly premium\" or \"Refund issued\".
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof CreateBookingEntryRequestDto
|
|
47
|
+
*/
|
|
48
|
+
'description': string;
|
|
49
|
+
/**
|
|
50
|
+
* Optional key-value pairs containing additional custom information for the booking entry. These fields may include document numbers, reasons, or other contextual metadata.
|
|
51
|
+
* @type {object}
|
|
52
|
+
* @memberof CreateBookingEntryRequestDto
|
|
53
|
+
*/
|
|
54
|
+
'customFields'?: object;
|
|
55
|
+
/**
|
|
56
|
+
* An array of financial transactions associated with this booking entry. Each transaction includes details such as financial account, amount, and debit or credit status.
|
|
57
|
+
* @type {Array<FinancialTransactionDataDto>}
|
|
58
|
+
* @memberof CreateBookingEntryRequestDto
|
|
59
|
+
*/
|
|
60
|
+
'financialTransactions': Array<FinancialTransactionDataDto>;
|
|
61
|
+
}
|
|
@@ -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 { BookingEntryClass } from './booking-entry-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateBookingEntryResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateBookingEntryResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The booking-entry response.
|
|
21
|
+
* @type {BookingEntryClass}
|
|
22
|
+
* @memberof CreateBookingEntryResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'bookingEntry': BookingEntryClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
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 partner associated with this account. Useful for associating the account with specific partner in Emil.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateFinancialAccountRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'partnerNumber'?: 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
|
+
* A detailed description of the financial account
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateFinancialAccountRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'description': string;
|
|
60
|
+
/**
|
|
61
|
+
* Whether the financial account is clearable
|
|
62
|
+
* @type {boolean}
|
|
63
|
+
* @memberof CreateFinancialAccountRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'clearable': boolean;
|
|
66
|
+
}
|
|
67
|
+
export declare const CreateFinancialAccountRequestDtoTypeEnum: {
|
|
68
|
+
readonly Asset: "asset";
|
|
69
|
+
readonly Liability: "liability";
|
|
70
|
+
readonly Equity: "equity";
|
|
71
|
+
readonly Revenue: "revenue";
|
|
72
|
+
readonly Expense: "expense";
|
|
73
|
+
readonly OpeningBalance: "opening_balance";
|
|
74
|
+
};
|
|
75
|
+
export type CreateFinancialAccountRequestDtoTypeEnum = typeof CreateFinancialAccountRequestDtoTypeEnum[keyof typeof CreateFinancialAccountRequestDtoTypeEnum];
|
|
@@ -0,0 +1,24 @@
|
|
|
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.CreateFinancialAccountRequestDtoTypeEnum = void 0;
|
|
17
|
+
exports.CreateFinancialAccountRequestDtoTypeEnum = {
|
|
18
|
+
Asset: 'asset',
|
|
19
|
+
Liability: 'liability',
|
|
20
|
+
Equity: 'equity',
|
|
21
|
+
Revenue: 'revenue',
|
|
22
|
+
Expense: 'expense',
|
|
23
|
+
OpeningBalance: 'opening_balance'
|
|
24
|
+
};
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
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 CreateNumberRangeRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateNumberRangeRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* The slug of the number range
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateNumberRangeRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'slug': string;
|
|
24
|
+
/**
|
|
25
|
+
* The minimum value of the number range
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CreateNumberRangeRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'minValue': number;
|
|
30
|
+
/**
|
|
31
|
+
* The maximum value of the number range
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof CreateNumberRangeRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'maxValue': number;
|
|
36
|
+
/**
|
|
37
|
+
* The type of the number range
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateNumberRangeRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'accountType': CreateNumberRangeRequestDtoAccountTypeEnum;
|
|
42
|
+
}
|
|
43
|
+
export declare const CreateNumberRangeRequestDtoAccountTypeEnum: {
|
|
44
|
+
readonly Customer: "customer";
|
|
45
|
+
readonly Supplier: "supplier";
|
|
46
|
+
readonly Employee: "employee";
|
|
47
|
+
readonly Asset: "asset";
|
|
48
|
+
readonly Liability: "liability";
|
|
49
|
+
readonly Equity: "equity";
|
|
50
|
+
readonly Revenue: "revenue";
|
|
51
|
+
readonly Expense: "expense";
|
|
52
|
+
};
|
|
53
|
+
export type CreateNumberRangeRequestDtoAccountTypeEnum = typeof CreateNumberRangeRequestDtoAccountTypeEnum[keyof typeof CreateNumberRangeRequestDtoAccountTypeEnum];
|
|
@@ -0,0 +1,26 @@
|
|
|
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.CreateNumberRangeRequestDtoAccountTypeEnum = void 0;
|
|
17
|
+
exports.CreateNumberRangeRequestDtoAccountTypeEnum = {
|
|
18
|
+
Customer: 'customer',
|
|
19
|
+
Supplier: 'supplier',
|
|
20
|
+
Employee: 'employee',
|
|
21
|
+
Asset: 'asset',
|
|
22
|
+
Liability: 'liability',
|
|
23
|
+
Equity: 'equity',
|
|
24
|
+
Revenue: 'revenue',
|
|
25
|
+
Expense: 'expense'
|
|
26
|
+
};
|
|
@@ -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 { NumberRangeClass } from './number-range-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateNumberRangeResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateNumberRangeResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The number range response.
|
|
21
|
+
* @type {NumberRangeClass}
|
|
22
|
+
* @memberof CreateNumberRangeResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'numberRange': NumberRangeClass;
|
|
25
|
+
}
|