@emilgroup/accounting-sdk-node 1.27.1-beta.16 → 1.27.1-beta.19
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 +17 -0
- package/README.md +2 -2
- package/api/accounting-configs-api.ts +1144 -0
- package/api.ts +2 -0
- package/dist/api/accounting-configs-api.d.ts +624 -0
- package/dist/api/accounting-configs-api.js +1038 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/accounting-config-class.d.ts +61 -0
- package/dist/models/accounting-config-class.js +15 -0
- package/dist/models/accounting-config-data-class.d.ts +45 -0
- package/dist/models/accounting-config-data-class.js +15 -0
- package/dist/models/accounting-configuration-class.d.ts +36 -0
- package/dist/models/accounting-configuration-class.js +15 -0
- package/dist/models/chart-of-accounts-config-class.d.ts +25 -0
- package/dist/models/chart-of-accounts-config-class.js +15 -0
- package/dist/models/chart-of-accounts-item-class.d.ts +71 -0
- package/dist/models/chart-of-accounts-item-class.js +38 -0
- package/dist/models/create-accounting-config-data-dto.d.ts +42 -0
- package/dist/models/create-accounting-config-data-dto.js +15 -0
- package/dist/models/create-accounting-config-request-dto.d.ts +25 -0
- package/dist/models/create-accounting-config-request-dto.js +15 -0
- package/dist/models/create-accounting-config-response-class.d.ts +25 -0
- package/dist/models/create-accounting-config-response-class.js +15 -0
- package/dist/models/get-accounting-config-response-class.d.ts +25 -0
- package/dist/models/get-accounting-config-response-class.js +15 -0
- package/dist/models/index.d.ts +16 -0
- package/dist/models/index.js +16 -0
- package/dist/models/inline-object2.d.ts +24 -0
- package/dist/models/inline-object2.js +15 -0
- package/dist/models/list-accounting-configs-response-class.d.ts +43 -0
- package/dist/models/list-accounting-configs-response-class.js +15 -0
- package/dist/models/opening-balance-class.d.ts +65 -0
- package/dist/models/opening-balance-class.js +38 -0
- package/dist/models/opening-balances-class.d.ts +25 -0
- package/dist/models/opening-balances-class.js +15 -0
- package/dist/models/update-chart-of-accounts-response-class.d.ts +25 -0
- package/dist/models/update-chart-of-accounts-response-class.js +15 -0
- package/dist/models/validate-accounting-config-request-dto.d.ts +25 -0
- package/dist/models/validate-accounting-config-request-dto.js +15 -0
- package/dist/models/validate-accounting-config-response-class.d.ts +30 -0
- package/dist/models/validate-accounting-config-response-class.js +15 -0
- package/models/accounting-config-class.ts +67 -0
- package/models/accounting-config-data-class.ts +51 -0
- package/models/accounting-configuration-class.ts +42 -0
- package/models/chart-of-accounts-config-class.ts +31 -0
- package/models/chart-of-accounts-item-class.ts +80 -0
- package/models/create-accounting-config-data-dto.ts +48 -0
- package/models/create-accounting-config-request-dto.ts +31 -0
- package/models/create-accounting-config-response-class.ts +31 -0
- package/models/get-accounting-config-response-class.ts +31 -0
- package/models/index.ts +16 -0
- package/models/inline-object2.ts +30 -0
- package/models/list-accounting-configs-response-class.ts +49 -0
- package/models/opening-balance-class.ts +74 -0
- package/models/opening-balances-class.ts +31 -0
- package/models/update-chart-of-accounts-response-class.ts +31 -0
- package/models/validate-accounting-config-request-dto.ts +31 -0
- package/models/validate-accounting-config-response-class.ts +36 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
export * from './api/accounting-configs-api';
|
|
12
13
|
export * from './api/booking-entries-api';
|
|
13
14
|
export * from './api/financial-accounts-api';
|
|
14
15
|
export * from './api/financial-transactions-api';
|
package/dist/api.js
CHANGED
|
@@ -27,6 +27,7 @@ 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/accounting-configs-api"), exports);
|
|
30
31
|
__exportStar(require("./api/booking-entries-api"), exports);
|
|
31
32
|
__exportStar(require("./api/financial-accounts-api"), exports);
|
|
32
33
|
__exportStar(require("./api/financial-transactions-api"), exports);
|
|
@@ -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 { AccountingConfigDataClass } from './accounting-config-data-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface AccountingConfigClass
|
|
17
|
+
*/
|
|
18
|
+
export interface AccountingConfigClass {
|
|
19
|
+
/**
|
|
20
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof AccountingConfigClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier for the object.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof AccountingConfigClass
|
|
29
|
+
*/
|
|
30
|
+
'code': string;
|
|
31
|
+
/**
|
|
32
|
+
* The configuration details
|
|
33
|
+
* @type {AccountingConfigDataClass}
|
|
34
|
+
* @memberof AccountingConfigClass
|
|
35
|
+
*/
|
|
36
|
+
'config'?: AccountingConfigDataClass;
|
|
37
|
+
/**
|
|
38
|
+
* Identifier of the user who created the record.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof AccountingConfigClass
|
|
41
|
+
*/
|
|
42
|
+
'createdBy': string;
|
|
43
|
+
/**
|
|
44
|
+
* Identifier of the user who last updated the record.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof AccountingConfigClass
|
|
47
|
+
*/
|
|
48
|
+
'updatedBy': string;
|
|
49
|
+
/**
|
|
50
|
+
* Time at which the object was created.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof AccountingConfigClass
|
|
53
|
+
*/
|
|
54
|
+
'createdAt': string;
|
|
55
|
+
/**
|
|
56
|
+
* Time at which the object was updated.
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof AccountingConfigClass
|
|
59
|
+
*/
|
|
60
|
+
'updatedAt': string;
|
|
61
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AccountingService
|
|
6
|
+
* The EMIL AccountingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,45 @@
|
|
|
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 { AccountingConfigurationClass } from './accounting-configuration-class';
|
|
13
|
+
import { ChartOfAccountsConfigClass } from './chart-of-accounts-config-class';
|
|
14
|
+
import { OpeningBalancesClass } from './opening-balances-class';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface AccountingConfigDataClass
|
|
19
|
+
*/
|
|
20
|
+
export interface AccountingConfigDataClass {
|
|
21
|
+
/**
|
|
22
|
+
* The activation date of the accounting configuration
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof AccountingConfigDataClass
|
|
25
|
+
*/
|
|
26
|
+
'activationDate'?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Configuration of the chart of accounts
|
|
29
|
+
* @type {ChartOfAccountsConfigClass}
|
|
30
|
+
* @memberof AccountingConfigDataClass
|
|
31
|
+
*/
|
|
32
|
+
'chartOfAccountsConfig'?: ChartOfAccountsConfigClass;
|
|
33
|
+
/**
|
|
34
|
+
* The accounting configuration details
|
|
35
|
+
* @type {AccountingConfigurationClass}
|
|
36
|
+
* @memberof AccountingConfigDataClass
|
|
37
|
+
*/
|
|
38
|
+
'accountingConfiguration'?: AccountingConfigurationClass;
|
|
39
|
+
/**
|
|
40
|
+
* The opening balances details
|
|
41
|
+
* @type {OpeningBalancesClass}
|
|
42
|
+
* @memberof AccountingConfigDataClass
|
|
43
|
+
*/
|
|
44
|
+
'openingBalances'?: OpeningBalancesClass;
|
|
45
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AccountingService
|
|
6
|
+
* The EMIL AccountingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,36 @@
|
|
|
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 AccountingConfigurationClass
|
|
16
|
+
*/
|
|
17
|
+
export interface AccountingConfigurationClass {
|
|
18
|
+
/**
|
|
19
|
+
* The mode of settlement recognition, can be \"SOLL\" or \"IST\"
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof AccountingConfigurationClass
|
|
22
|
+
*/
|
|
23
|
+
'settlementRecognitionMode': string;
|
|
24
|
+
/**
|
|
25
|
+
* The default tax handling, can be \"CARRIER_PAYS\" or \"MGA_PAYS\"
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AccountingConfigurationClass
|
|
28
|
+
*/
|
|
29
|
+
'defaultTaxHandling': string;
|
|
30
|
+
/**
|
|
31
|
+
* The tolerance amount in cents
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof AccountingConfigurationClass
|
|
34
|
+
*/
|
|
35
|
+
'toleranceAmountInCents': number;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AccountingService
|
|
6
|
+
* The EMIL AccountingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,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 { ChartOfAccountsItemClass } from './chart-of-accounts-item-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ChartOfAccountsConfigClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ChartOfAccountsConfigClass {
|
|
19
|
+
/**
|
|
20
|
+
* List of chart of accounts items
|
|
21
|
+
* @type {Array<ChartOfAccountsItemClass>}
|
|
22
|
+
* @memberof ChartOfAccountsConfigClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ChartOfAccountsItemClass>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AccountingService
|
|
6
|
+
* The EMIL AccountingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL AccountingService
|
|
3
|
+
* The EMIL AccountingService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ChartOfAccountsItemClass
|
|
16
|
+
*/
|
|
17
|
+
export interface ChartOfAccountsItemClass {
|
|
18
|
+
/**
|
|
19
|
+
* The category of the chart of accounts that will be mapped to a financial account
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ChartOfAccountsItemClass
|
|
22
|
+
*/
|
|
23
|
+
'category': ChartOfAccountsItemClassCategoryEnum;
|
|
24
|
+
/**
|
|
25
|
+
* A label of for the account mapping
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ChartOfAccountsItemClass
|
|
28
|
+
*/
|
|
29
|
+
'label': string;
|
|
30
|
+
/**
|
|
31
|
+
* The financial account number that will be mapped to the category
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ChartOfAccountsItemClass
|
|
34
|
+
*/
|
|
35
|
+
'financialAccountNumber': string;
|
|
36
|
+
/**
|
|
37
|
+
* Indicates if the account mapping is the one used as the default for the category
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof ChartOfAccountsItemClass
|
|
40
|
+
*/
|
|
41
|
+
'isStandard': boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Indicates if this mapping is locked and cannot be changed
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof ChartOfAccountsItemClass
|
|
46
|
+
*/
|
|
47
|
+
'isLocked': boolean;
|
|
48
|
+
}
|
|
49
|
+
export declare const ChartOfAccountsItemClassCategoryEnum: {
|
|
50
|
+
readonly BankAcc: "bank_acc";
|
|
51
|
+
readonly TaxPendingAcc: "tax_pending_acc";
|
|
52
|
+
readonly TaxForwardedAcc: "tax_forwarded_acc";
|
|
53
|
+
readonly TaxDueAcc: "tax_due_acc";
|
|
54
|
+
readonly VatPendingAcc: "vat_pending_acc";
|
|
55
|
+
readonly VatDueAcc: "vat_due_acc";
|
|
56
|
+
readonly RevenueBufferAcc: "revenue_buffer_acc";
|
|
57
|
+
readonly RevenueFinalAcc: "revenue_final_acc";
|
|
58
|
+
readonly ClaimExpenseAcc: "claim_expense_acc";
|
|
59
|
+
readonly CustomerCreditLiabAcc: "customer_credit_liab_acc";
|
|
60
|
+
readonly WriteOffExpAcc: "write_off_exp_acc";
|
|
61
|
+
readonly RoundingDiffAcc: "rounding_diff_acc";
|
|
62
|
+
readonly PaymentFeesExpAcc: "payment_fees_exp_acc";
|
|
63
|
+
readonly FeeRevenueAccAcc: "fee_revenue_acc_acc";
|
|
64
|
+
readonly UnallocatedReceiptsAcc: "unallocated_receipts_acc";
|
|
65
|
+
readonly OpeningBalEquityAcc: "opening_bal_equity_acc";
|
|
66
|
+
readonly ReceivablesCtrlAcc: "receivables_ctrl_acc";
|
|
67
|
+
readonly BrokerCtrlAcc: "broker_ctrl_acc";
|
|
68
|
+
readonly CarrierCtrlAcc: "carrier_ctrl_acc";
|
|
69
|
+
readonly MainLedgerBridgeAcc: "main_ledger_bridge_acc";
|
|
70
|
+
};
|
|
71
|
+
export type ChartOfAccountsItemClassCategoryEnum = typeof ChartOfAccountsItemClassCategoryEnum[keyof typeof ChartOfAccountsItemClassCategoryEnum];
|
|
@@ -0,0 +1,38 @@
|
|
|
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.ChartOfAccountsItemClassCategoryEnum = void 0;
|
|
17
|
+
exports.ChartOfAccountsItemClassCategoryEnum = {
|
|
18
|
+
BankAcc: 'bank_acc',
|
|
19
|
+
TaxPendingAcc: 'tax_pending_acc',
|
|
20
|
+
TaxForwardedAcc: 'tax_forwarded_acc',
|
|
21
|
+
TaxDueAcc: 'tax_due_acc',
|
|
22
|
+
VatPendingAcc: 'vat_pending_acc',
|
|
23
|
+
VatDueAcc: 'vat_due_acc',
|
|
24
|
+
RevenueBufferAcc: 'revenue_buffer_acc',
|
|
25
|
+
RevenueFinalAcc: 'revenue_final_acc',
|
|
26
|
+
ClaimExpenseAcc: 'claim_expense_acc',
|
|
27
|
+
CustomerCreditLiabAcc: 'customer_credit_liab_acc',
|
|
28
|
+
WriteOffExpAcc: 'write_off_exp_acc',
|
|
29
|
+
RoundingDiffAcc: 'rounding_diff_acc',
|
|
30
|
+
PaymentFeesExpAcc: 'payment_fees_exp_acc',
|
|
31
|
+
FeeRevenueAccAcc: 'fee_revenue_acc_acc',
|
|
32
|
+
UnallocatedReceiptsAcc: 'unallocated_receipts_acc',
|
|
33
|
+
OpeningBalEquityAcc: 'opening_bal_equity_acc',
|
|
34
|
+
ReceivablesCtrlAcc: 'receivables_ctrl_acc',
|
|
35
|
+
BrokerCtrlAcc: 'broker_ctrl_acc',
|
|
36
|
+
CarrierCtrlAcc: 'carrier_ctrl_acc',
|
|
37
|
+
MainLedgerBridgeAcc: 'main_ledger_bridge_acc'
|
|
38
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
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 CreateAccountingConfigDataDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateAccountingConfigDataDto {
|
|
18
|
+
/**
|
|
19
|
+
* The activation date of the accounting configuration
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateAccountingConfigDataDto
|
|
22
|
+
*/
|
|
23
|
+
'activationDate'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The chart of accounts configuration
|
|
26
|
+
* @type {object}
|
|
27
|
+
* @memberof CreateAccountingConfigDataDto
|
|
28
|
+
*/
|
|
29
|
+
'chartOfAccountsConfig'?: object;
|
|
30
|
+
/**
|
|
31
|
+
* The accounting configuration
|
|
32
|
+
* @type {object}
|
|
33
|
+
* @memberof CreateAccountingConfigDataDto
|
|
34
|
+
*/
|
|
35
|
+
'accountingConfiguration'?: object;
|
|
36
|
+
/**
|
|
37
|
+
* The opening balances
|
|
38
|
+
* @type {object}
|
|
39
|
+
* @memberof CreateAccountingConfigDataDto
|
|
40
|
+
*/
|
|
41
|
+
'openingBalances'?: object;
|
|
42
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AccountingService
|
|
6
|
+
* The EMIL AccountingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,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 { CreateAccountingConfigDataDto } from './create-accounting-config-data-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateAccountingConfigRequestDto
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateAccountingConfigRequestDto {
|
|
19
|
+
/**
|
|
20
|
+
* Configuration for the accounting system.
|
|
21
|
+
* @type {CreateAccountingConfigDataDto}
|
|
22
|
+
* @memberof CreateAccountingConfigRequestDto
|
|
23
|
+
*/
|
|
24
|
+
'accountingConfigData': CreateAccountingConfigDataDto;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AccountingService
|
|
6
|
+
* The EMIL AccountingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,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 { AccountingConfigClass } from './accounting-config-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateAccountingConfigResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateAccountingConfigResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The accounting configuration created
|
|
21
|
+
* @type {AccountingConfigClass}
|
|
22
|
+
* @memberof CreateAccountingConfigResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'accountingConfig'?: AccountingConfigClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AccountingService
|
|
6
|
+
* The EMIL AccountingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,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 { AccountingConfigClass } from './accounting-config-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetAccountingConfigResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetAccountingConfigResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The accounting configuration details
|
|
21
|
+
* @type {AccountingConfigClass}
|
|
22
|
+
* @memberof GetAccountingConfigResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'accountingConfig'?: AccountingConfigClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AccountingService
|
|
6
|
+
* The EMIL AccountingService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
+
export * from './accounting-config-class';
|
|
2
|
+
export * from './accounting-config-data-class';
|
|
3
|
+
export * from './accounting-configuration-class';
|
|
1
4
|
export * from './booking-entry-class';
|
|
5
|
+
export * from './chart-of-accounts-config-class';
|
|
6
|
+
export * from './chart-of-accounts-item-class';
|
|
7
|
+
export * from './create-accounting-config-data-dto';
|
|
8
|
+
export * from './create-accounting-config-request-dto';
|
|
9
|
+
export * from './create-accounting-config-response-class';
|
|
2
10
|
export * from './create-booking-entry-request-dto';
|
|
3
11
|
export * from './create-booking-entry-response-class';
|
|
4
12
|
export * from './create-financial-account-request-dto';
|
|
@@ -10,17 +18,25 @@ export * from './create-personal-account-response-class';
|
|
|
10
18
|
export * from './financial-account-class';
|
|
11
19
|
export * from './financial-transaction-class';
|
|
12
20
|
export * from './financial-transaction-data-dto';
|
|
21
|
+
export * from './get-accounting-config-response-class';
|
|
13
22
|
export * from './get-booking-entry-response-class';
|
|
14
23
|
export * from './get-financial-account-response-class';
|
|
15
24
|
export * from './get-financial-transaction-response-class';
|
|
16
25
|
export * from './get-number-range-response-class';
|
|
17
26
|
export * from './get-personal-account-response-class';
|
|
27
|
+
export * from './inline-object2';
|
|
18
28
|
export * from './inline-response200';
|
|
19
29
|
export * from './inline-response503';
|
|
30
|
+
export * from './list-accounting-configs-response-class';
|
|
20
31
|
export * from './list-booking-entries-response-class';
|
|
21
32
|
export * from './list-financial-accounts-response-class';
|
|
22
33
|
export * from './list-financial-transactions-response-class';
|
|
23
34
|
export * from './list-number-range-response-class';
|
|
24
35
|
export * from './list-personal-accounts-response-class';
|
|
25
36
|
export * from './number-range-class';
|
|
37
|
+
export * from './opening-balance-class';
|
|
38
|
+
export * from './opening-balances-class';
|
|
26
39
|
export * from './personal-account-class';
|
|
40
|
+
export * from './update-chart-of-accounts-response-class';
|
|
41
|
+
export * from './validate-accounting-config-request-dto';
|
|
42
|
+
export * from './validate-accounting-config-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -14,7 +14,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./accounting-config-class"), exports);
|
|
18
|
+
__exportStar(require("./accounting-config-data-class"), exports);
|
|
19
|
+
__exportStar(require("./accounting-configuration-class"), exports);
|
|
17
20
|
__exportStar(require("./booking-entry-class"), exports);
|
|
21
|
+
__exportStar(require("./chart-of-accounts-config-class"), exports);
|
|
22
|
+
__exportStar(require("./chart-of-accounts-item-class"), exports);
|
|
23
|
+
__exportStar(require("./create-accounting-config-data-dto"), exports);
|
|
24
|
+
__exportStar(require("./create-accounting-config-request-dto"), exports);
|
|
25
|
+
__exportStar(require("./create-accounting-config-response-class"), exports);
|
|
18
26
|
__exportStar(require("./create-booking-entry-request-dto"), exports);
|
|
19
27
|
__exportStar(require("./create-booking-entry-response-class"), exports);
|
|
20
28
|
__exportStar(require("./create-financial-account-request-dto"), exports);
|
|
@@ -26,17 +34,25 @@ __exportStar(require("./create-personal-account-response-class"), exports);
|
|
|
26
34
|
__exportStar(require("./financial-account-class"), exports);
|
|
27
35
|
__exportStar(require("./financial-transaction-class"), exports);
|
|
28
36
|
__exportStar(require("./financial-transaction-data-dto"), exports);
|
|
37
|
+
__exportStar(require("./get-accounting-config-response-class"), exports);
|
|
29
38
|
__exportStar(require("./get-booking-entry-response-class"), exports);
|
|
30
39
|
__exportStar(require("./get-financial-account-response-class"), exports);
|
|
31
40
|
__exportStar(require("./get-financial-transaction-response-class"), exports);
|
|
32
41
|
__exportStar(require("./get-number-range-response-class"), exports);
|
|
33
42
|
__exportStar(require("./get-personal-account-response-class"), exports);
|
|
43
|
+
__exportStar(require("./inline-object2"), exports);
|
|
34
44
|
__exportStar(require("./inline-response200"), exports);
|
|
35
45
|
__exportStar(require("./inline-response503"), exports);
|
|
46
|
+
__exportStar(require("./list-accounting-configs-response-class"), exports);
|
|
36
47
|
__exportStar(require("./list-booking-entries-response-class"), exports);
|
|
37
48
|
__exportStar(require("./list-financial-accounts-response-class"), exports);
|
|
38
49
|
__exportStar(require("./list-financial-transactions-response-class"), exports);
|
|
39
50
|
__exportStar(require("./list-number-range-response-class"), exports);
|
|
40
51
|
__exportStar(require("./list-personal-accounts-response-class"), exports);
|
|
41
52
|
__exportStar(require("./number-range-class"), exports);
|
|
53
|
+
__exportStar(require("./opening-balance-class"), exports);
|
|
54
|
+
__exportStar(require("./opening-balances-class"), exports);
|
|
42
55
|
__exportStar(require("./personal-account-class"), exports);
|
|
56
|
+
__exportStar(require("./update-chart-of-accounts-response-class"), exports);
|
|
57
|
+
__exportStar(require("./validate-accounting-config-request-dto"), exports);
|
|
58
|
+
__exportStar(require("./validate-accounting-config-response-class"), exports);
|
|
@@ -0,0 +1,24 @@
|
|
|
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 InlineObject2
|
|
16
|
+
*/
|
|
17
|
+
export interface InlineObject2 {
|
|
18
|
+
/**
|
|
19
|
+
* The updated chart of accounts configuration
|
|
20
|
+
* @type {object}
|
|
21
|
+
* @memberof InlineObject2
|
|
22
|
+
*/
|
|
23
|
+
'chartOfAccountsConfig': object;
|
|
24
|
+
}
|