@klardaten/n8n-nodes-datevconnect 1.0.5 → 1.0.7
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/README.md +2 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +156 -0
- package/dist/nodes/Accounting/Accounting.node.d.ts.map +1 -1
- package/dist/nodes/Accounting/Accounting.node.js +7 -1
- package/dist/nodes/Accounting/types.d.ts +2 -0
- package/dist/nodes/Accounting/types.d.ts.map +1 -1
- package/dist/nodes/DocumentManagement/DocumentManagement.node.d.ts.map +1 -1
- package/dist/nodes/DocumentManagement/DocumentManagement.node.js +7 -1
- package/dist/nodes/DocumentManagement/types.d.ts +2 -1
- package/dist/nodes/DocumentManagement/types.d.ts.map +1 -1
- package/dist/nodes/IdentityAndAccessManagement/IdentityAndAccessManagement.node.d.ts.map +1 -1
- package/dist/nodes/IdentityAndAccessManagement/IdentityAndAccessManagement.node.js +7 -1
- package/dist/nodes/IdentityAndAccessManagement/types.d.ts +2 -1
- package/dist/nodes/IdentityAndAccessManagement/types.d.ts.map +1 -1
- package/dist/nodes/MasterData/MasterData.node.d.ts.map +1 -1
- package/dist/nodes/MasterData/MasterData.node.js +7 -1
- package/dist/nodes/MasterData/types.d.ts +2 -1
- package/dist/nodes/MasterData/types.d.ts.map +1 -1
- package/dist/nodes/OrderManagement/OrderManagement.config.d.ts +3 -0
- package/dist/nodes/OrderManagement/OrderManagement.config.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/OrderManagement.config.js +644 -0
- package/dist/nodes/OrderManagement/OrderManagement.node.d.ts +6 -0
- package/dist/nodes/OrderManagement/OrderManagement.node.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/OrderManagement.node.js +92 -0
- package/dist/nodes/OrderManagement/handlers/BaseResourceHandler.d.ts +17 -0
- package/dist/nodes/OrderManagement/handlers/BaseResourceHandler.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/handlers/BaseResourceHandler.js +48 -0
- package/dist/nodes/OrderManagement/handlers/ClientGroupResourceHandler.d.ts +8 -0
- package/dist/nodes/OrderManagement/handlers/ClientGroupResourceHandler.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/handlers/ClientGroupResourceHandler.js +32 -0
- package/dist/nodes/OrderManagement/handlers/CostCenterResourceHandler.d.ts +8 -0
- package/dist/nodes/OrderManagement/handlers/CostCenterResourceHandler.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/handlers/CostCenterResourceHandler.js +38 -0
- package/dist/nodes/OrderManagement/handlers/EmployeeResourceHandler.d.ts +12 -0
- package/dist/nodes/OrderManagement/handlers/EmployeeResourceHandler.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/handlers/EmployeeResourceHandler.js +106 -0
- package/dist/nodes/OrderManagement/handlers/FeeResourceHandler.d.ts +9 -0
- package/dist/nodes/OrderManagement/handlers/FeeResourceHandler.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/handlers/FeeResourceHandler.js +55 -0
- package/dist/nodes/OrderManagement/handlers/InvoiceResourceHandler.d.ts +9 -0
- package/dist/nodes/OrderManagement/handlers/InvoiceResourceHandler.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/handlers/InvoiceResourceHandler.js +49 -0
- package/dist/nodes/OrderManagement/handlers/OrderResourceHandler.d.ts +24 -0
- package/dist/nodes/OrderManagement/handlers/OrderResourceHandler.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/handlers/OrderResourceHandler.js +285 -0
- package/dist/nodes/OrderManagement/handlers/OrderTypeResourceHandler.d.ts +8 -0
- package/dist/nodes/OrderManagement/handlers/OrderTypeResourceHandler.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/handlers/OrderTypeResourceHandler.js +34 -0
- package/dist/nodes/OrderManagement/handlers/SelfClientResourceHandler.d.ts +8 -0
- package/dist/nodes/OrderManagement/handlers/SelfClientResourceHandler.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/handlers/SelfClientResourceHandler.js +36 -0
- package/dist/nodes/OrderManagement/types.d.ts +28 -0
- package/dist/nodes/OrderManagement/types.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/types.js +2 -0
- package/dist/nodes/OrderManagement/utils.d.ts +14 -0
- package/dist/nodes/OrderManagement/utils.d.ts.map +1 -0
- package/dist/nodes/OrderManagement/utils.js +79 -0
- package/dist/src/services/accountingClient.d.ts.map +1 -1
- package/dist/src/services/accountingClient.js +2 -0
- package/dist/src/services/datevConnectClient.d.ts +3 -22
- package/dist/src/services/datevConnectClient.d.ts.map +1 -1
- package/dist/src/services/datevConnectClient.js +96 -180
- package/dist/src/services/documentManagementClient.d.ts +3 -1
- package/dist/src/services/documentManagementClient.d.ts.map +1 -1
- package/dist/src/services/documentManagementClient.js +28 -27
- package/dist/src/services/httpHelpers.d.ts +10 -0
- package/dist/src/services/httpHelpers.d.ts.map +1 -0
- package/dist/src/services/httpHelpers.js +180 -0
- package/dist/src/services/identityAndAccessManagementClient.d.ts +2 -1
- package/dist/src/services/identityAndAccessManagementClient.d.ts.map +1 -1
- package/dist/src/services/identityAndAccessManagementClient.js +4 -1
- package/dist/src/services/orderManagementClient.d.ts +189 -0
- package/dist/src/services/orderManagementClient.d.ts.map +1 -0
- package/dist/src/services/orderManagementClient.js +459 -0
- package/dist/src/services/shared.d.ts +39 -0
- package/dist/src/services/shared.d.ts.map +1 -0
- package/dist/src/services/shared.js +110 -0
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@ This repository provides custom n8n nodes for integrating with the DATEVconnect
|
|
|
9
9
|
| `Accounting` | Access DATEV Accounting API for clients, fiscal years, accounts receivable, account postings, and accounting sequences. |
|
|
10
10
|
| `MasterData` | Fetches master data entities from DATEV using the configured credentials. |
|
|
11
11
|
| `Document Management` | Access DATEV Document Management or DMS for documents, structure items, property templates. |
|
|
12
|
+
| `Order Management` | Read and manage orders, suborders, invoices, fees, and related employee data. |
|
|
12
13
|
| `Identity & Access Management` | Manage SCIM-based DATEV IAM resources such as service configuration, schemas, users, and groups. |
|
|
13
14
|
|
|
14
15
|
Refer to the node descriptions inside the n8n editor for input parameters and output structure.
|
|
@@ -73,4 +74,5 @@ DATEV provides endpoint reference details under
|
|
|
73
74
|
- [Accounting](https://developer.datev.de/en/product-detail/accounting/1.7.4/reference)
|
|
74
75
|
- [Client Master Data](https://developer.datev.de/en/product-detail/client-master-data/1.7.0/reference).
|
|
75
76
|
- [Document Management](https://developer.datev.de/en/product-detail/document-management/2.3.0/reference)
|
|
77
|
+
- [Order Management](https://developer.datev.de/en/product-detail/order-management/1.4.7/reference)
|
|
76
78
|
- [Identity & Access Management – User Administration](https://developer.datev.de/en/product-detail/identity-and-access-management-user-administration/1.1.2/reference)
|
package/dist/index.d.ts
CHANGED
|
@@ -3,11 +3,14 @@ export { accountingNodeDescription } from "./nodes/Accounting/Accounting.config"
|
|
|
3
3
|
export { masterDataNodeDescription } from "./nodes/MasterData/MasterData.config";
|
|
4
4
|
export { documentManagementNodeDescription } from "./nodes/DocumentManagement/DocumentManagement.config";
|
|
5
5
|
export { identityAndAccessManagementNodeDescription } from "./nodes/IdentityAndAccessManagement/IdentityAndAccessManagement.config";
|
|
6
|
+
export { orderManagementNodeDescription } from "./nodes/OrderManagement/OrderManagement.config";
|
|
6
7
|
export type { JsonValue, AuthenticateOptions, AuthenticateResponse, BaseRequestOptions, FetchClientsOptions, FetchClientOptions, CreateClientOptions, UpdateClientOptions, FetchClientResponsibilitiesOptions, UpdateClientResponsibilitiesOptions, FetchClientCategoriesOptions, UpdateClientCategoriesOptions, FetchClientGroupsOptions, UpdateClientGroupsOptions, FetchClientDeletionLogOptions, FetchNextFreeClientNumberOptions, FetchTaxAuthoritiesOptions, FetchRelationshipsOptions, FetchRelationshipTypesOptions, FetchLegalFormsOptions, FetchCorporateStructuresOptions, FetchCorporateStructureOptions, FetchEstablishmentOptions, FetchEmployeesOptions, FetchEmployeeOptions, CreateEmployeeOptions, UpdateEmployeeOptions, FetchCountryCodesOptions, FetchClientGroupTypesOptions, FetchClientGroupTypeOptions, CreateClientGroupTypeOptions, UpdateClientGroupTypeOptions, FetchClientCategoryTypesOptions, FetchClientCategoryTypeOptions, CreateClientCategoryTypeOptions, UpdateClientCategoryTypeOptions, FetchBanksOptions, FetchAreaOfResponsibilitiesOptions, FetchAddresseesOptions, FetchAddresseeOptions, CreateAddresseeOptions, UpdateAddresseeOptions, FetchAddresseesDeletionLogOptions, FetchAccountingClientsOptions, FetchAccountingClientOptions, FetchFiscalYearsOptions, FetchFiscalYearOptions, FetchAccountsReceivableOptions, FetchAccountsReceivableCondensedOptions, FetchAccountReceivableOptions, FetchAccountsPayableOptions, FetchAccountsPayableCondensedOptions, FetchAccountPayableOptions, FetchAccountPostingsOptions, FetchAccountPostingOptions, FetchAccountingSequencesOptions, FetchAccountingSequenceOptions, CreateAccountingSequenceOptions, FetchAccountingRecordsOptions, FetchAccountingRecordOptions, FetchPostingProposalRulesIncomingOptions, FetchPostingProposalRulesOutgoingOptions, FetchPostingProposalRulesCashRegisterOptions, FetchPostingProposalRuleIncomingOptions, FetchPostingProposalRuleOutgoingOptions, FetchPostingProposalRuleCashRegisterOptions, BatchPostingProposalsIncomingOptions, BatchPostingProposalsOutgoingOptions, BatchPostingProposalsCashRegisterOptions, FetchAccountingSumsAndBalancesOptions, FetchAccountingSumsAndBalanceOptions, FetchDebitorsOptions, FetchDebitorOptions, CreateDebitorOptions, UpdateDebitorOptions, FetchNextAvailableDebitorOptions, FetchCreditorsOptions, FetchCreditorOptions, CreateCreditorOptions, UpdateCreditorOptions, FetchNextAvailableCreditorOptions, FetchGeneralLedgerAccountsOptions, FetchGeneralLedgerAccountOptions, FetchUtilizedGeneralLedgerAccountsOptions, FetchTermsOfPaymentOptions, FetchTermOfPaymentOptions, CreateTermOfPaymentOptions, UpdateTermOfPaymentOptions, FetchStocktakingDataOptions, FetchStocktakingDataByAssetOptions, UpdateStocktakingDataOptions, FetchCostSystemsOptions, FetchCostSystemOptions, FetchCostCentersOptions, FetchCostCenterOptions, FetchCostCenterPropertiesOptions, FetchCostCenterPropertyOptions, CreateInternalCostServiceOptions, FetchCostSequencesOptions, FetchCostSequenceOptions, CreateCostSequenceOptions, FetchCostAccountingRecordsOptions, FetchAccountingStatisticsOptions, FetchAccountingTransactionKeysOptions, FetchAccountingTransactionKeyOptions, FetchVariousAddressesOptions, FetchVariousAddressOptions, CreateVariousAddressOptions, } from "./src/services/datevConnectClient";
|
|
7
8
|
export { authenticate, fetchClients, fetchClient, createClient, updateClient, fetchClientResponsibilities, updateClientResponsibilities, fetchClientCategories, updateClientCategories, fetchClientGroups, updateClientGroups, fetchClientDeletionLog, fetchNextFreeClientNumber, fetchTaxAuthorities, fetchRelationships, fetchRelationshipTypes, fetchLegalForms, fetchCorporateStructures, fetchCorporateStructure, fetchEstablishment, fetchEmployees, fetchEmployee, createEmployee, updateEmployee, fetchCountryCodes, fetchClientGroupTypes, fetchClientGroupType, createClientGroupType, updateClientGroupType, fetchClientCategoryTypes, fetchClientCategoryType, createClientCategoryType, updateClientCategoryType, fetchBanks, fetchAreaOfResponsibilities, fetchAddressees, fetchAddressee, createAddressee, updateAddressee, fetchAddresseesDeletionLog, fetchAccountingClients, fetchAccountingClient, fetchFiscalYears, fetchFiscalYear, fetchAccountsReceivable, fetchAccountsReceivableCondensed, fetchAccountReceivable, fetchAccountsPayable, fetchAccountsPayableCondensed, fetchAccountPayable, fetchAccountPostings, fetchAccountPosting, fetchAccountingSequences, fetchAccountingSequence, createAccountingSequence, fetchAccountingRecords, fetchAccountingRecord, fetchPostingProposalRulesIncoming, fetchPostingProposalRulesOutgoing, fetchPostingProposalRulesCashRegister, fetchPostingProposalRuleIncoming, fetchPostingProposalRuleOutgoing, fetchPostingProposalRuleCashRegister, batchPostingProposalsIncoming, batchPostingProposalsOutgoing, batchPostingProposalsCashRegister, fetchAccountingSumsAndBalances, fetchAccountingSumsAndBalance, fetchDebitors, fetchDebitor, createDebitor, updateDebitor, fetchNextAvailableDebitor, fetchCreditors, fetchCreditor, createCreditor, updateCreditor, fetchNextAvailableCreditor, fetchGeneralLedgerAccounts, fetchGeneralLedgerAccount, fetchUtilizedGeneralLedgerAccounts, fetchTermsOfPayment, fetchTermOfPayment, createTermOfPayment, updateTermOfPayment, fetchStocktakingData, fetchStocktakingDataByAsset, updateStocktakingData, fetchCostSystems, fetchCostSystem, fetchCostCenters, fetchCostCenter, fetchCostCenterProperties, fetchCostCenterProperty, createInternalCostService, fetchCostSequences, fetchCostSequence, createCostSequence, fetchCostAccountingRecords, fetchAccountingStatistics, fetchAccountingTransactionKeys, fetchAccountingTransactionKey, fetchVariousAddresses, fetchVariousAddress, createVariousAddress, } from "./src/services/datevConnectClient";
|
|
8
9
|
export type { DocumentManagementAuthenticateOptions, DocumentManagementAuthenticateResponse, FetchDocumentsOptions, FetchDocumentOptions, CreateDocumentOptions, UpdateDocumentOptions, DeleteDocumentOptions, FetchDocumentFileOptions, UploadDocumentFileOptions, FetchDomainsOptions, FetchDocumentStatesOptions, FetchDocumentStateOptions, CreateDocumentStateOptions, FetchInfoOptions, FetchSecureAreasOptions, FetchPropertyTemplatesOptions, FetchIndividualPropertiesOptions, FetchIndividualReferences1Options, CreateIndividualReference1Options, FetchIndividualReferences2Options, CreateIndividualReference2Options, FetchStructureItemsOptions, FetchStructureItemOptions, AddStructureItemOptions, UpdateStructureItemOptions, CreateDispatcherInformationOptions, } from "./src/services/documentManagementClient";
|
|
9
10
|
export { DocumentManagementClient } from "./src/services/documentManagementClient";
|
|
10
11
|
export type { FetchServiceProviderConfigOptions, FetchResourceTypesOptions, FetchSchemasOptions, FetchSchemaOptions, FetchUsersOptions, FetchUserOptions, CreateUserOptions, UpdateUserOptions, DeleteUserOptions, FetchGroupsOptions, FetchGroupOptions, CreateGroupOptions, UpdateGroupOptions, DeleteGroupOptions, FetchCurrentUserOptions, } from "./src/services/identityAndAccessManagementClient";
|
|
11
12
|
export { IdentityAndAccessManagementClient } from "./src/services/identityAndAccessManagementClient";
|
|
13
|
+
export type { FetchOrderTypesOptions, FetchClientGroupOptions, FetchOrdersOptions, FetchOrderOptions, UpdateOrderOptions, FetchOrderMonthlyValuesOptions, FetchOrdersMonthlyValuesOptions, FetchOrderCostItemsOptions, FetchOrdersCostItemsOptions, FetchOrderStateWorkOptions, FetchOrdersStateWorkOptions, FetchSubordersStateBillingOptions, FetchSubordersStateBillingAllOptions, UpdateSuborderOptions, FetchOrderExpensePostingsOptions, FetchExpensePostingsOptions, CreateExpensePostingOptions, FetchInvoiceOptions, FetchInvoicesOptions, FetchEmployeeCapacitiesOptions, FetchEmployeesWithGroupOptions, FetchEmployeeQualificationsOptions, FetchEmployeeCostRatesOptions, FetchChargeRatesOptions, FetchOrderManagementCostCentersOptions, FetchFeesOptions, FetchFeePlansOptions, FetchSelfClientsOptions, } from "./src/services/orderManagementClient";
|
|
14
|
+
export { fetchOrderTypes, fetchClientGroup, fetchOrders, fetchOrder, updateOrder, fetchOrderMonthlyValues, fetchOrdersMonthlyValues, fetchOrderCostItems, fetchOrdersCostItems, fetchOrderStateWork, fetchOrdersStateWork, fetchSubordersStateBilling, fetchSubordersStateBillingAll, updateSuborder, fetchOrderExpensePostings, fetchExpensePostings, createExpensePosting, fetchInvoice, fetchInvoices, fetchEmployeeCapacities, fetchEmployeesWithGroup, fetchEmployeeQualifications, fetchEmployeeCostRates, fetchChargeRates, fetchOrderManagementCostCenters, fetchFees, fetchFeePlans, fetchSelfClients, } from "./src/services/orderManagementClient";
|
|
12
15
|
export { datevConnectClient } from "./src/services/accountingClient";
|
|
13
16
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAEzD,OAAO,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AACjF,OAAO,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sDAAsD,CAAC;AACzG,OAAO,EAAE,0CAA0C,EAAE,MAAM,wEAAwE,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.fetchAccountsReceivable = exports.fetchFiscalYear = exports.fetchFiscalYears = exports.fetchAccountingClient = exports.fetchAccountingClients = exports.fetchAddresseesDeletionLog = exports.updateAddressee = exports.createAddressee = exports.fetchAddressee = exports.fetchAddressees = exports.fetchAreaOfResponsibilities = exports.fetchBanks = exports.updateClientCategoryType = exports.createClientCategoryType = exports.fetchClientCategoryType = exports.fetchClientCategoryTypes = exports.updateClientGroupType = exports.createClientGroupType = exports.fetchClientGroupType = exports.fetchClientGroupTypes = exports.fetchCountryCodes = exports.updateEmployee = exports.createEmployee = exports.fetchEmployee = exports.fetchEmployees = exports.fetchEstablishment = exports.fetchCorporateStructure = exports.fetchCorporateStructures = exports.fetchLegalForms = exports.fetchRelationshipTypes = exports.fetchRelationships = exports.fetchTaxAuthorities = exports.fetchNextFreeClientNumber = exports.fetchClientDeletionLog = exports.updateClientGroups = exports.fetchClientGroups = exports.updateClientCategories = exports.fetchClientCategories = exports.updateClientResponsibilities = exports.fetchClientResponsibilities = exports.updateClient = exports.createClient = exports.fetchClient = exports.fetchClients = exports.authenticate = exports.orderManagementNodeDescription = exports.identityAndAccessManagementNodeDescription = exports.documentManagementNodeDescription = exports.masterDataNodeDescription = exports.accountingNodeDescription = void 0;
|
|
4
|
+
exports.createInternalCostService = exports.fetchCostCenterProperty = exports.fetchCostCenterProperties = exports.fetchCostCenter = exports.fetchCostCenters = exports.fetchCostSystem = exports.fetchCostSystems = exports.updateStocktakingData = exports.fetchStocktakingDataByAsset = exports.fetchStocktakingData = exports.updateTermOfPayment = exports.createTermOfPayment = exports.fetchTermOfPayment = exports.fetchTermsOfPayment = exports.fetchUtilizedGeneralLedgerAccounts = exports.fetchGeneralLedgerAccount = exports.fetchGeneralLedgerAccounts = exports.fetchNextAvailableCreditor = exports.updateCreditor = exports.createCreditor = exports.fetchCreditor = exports.fetchCreditors = exports.fetchNextAvailableDebitor = exports.updateDebitor = exports.createDebitor = exports.fetchDebitor = exports.fetchDebitors = exports.fetchAccountingSumsAndBalance = exports.fetchAccountingSumsAndBalances = exports.batchPostingProposalsCashRegister = exports.batchPostingProposalsOutgoing = exports.batchPostingProposalsIncoming = exports.fetchPostingProposalRuleCashRegister = exports.fetchPostingProposalRuleOutgoing = exports.fetchPostingProposalRuleIncoming = exports.fetchPostingProposalRulesCashRegister = exports.fetchPostingProposalRulesOutgoing = exports.fetchPostingProposalRulesIncoming = exports.fetchAccountingRecord = exports.fetchAccountingRecords = exports.createAccountingSequence = exports.fetchAccountingSequence = exports.fetchAccountingSequences = exports.fetchAccountPosting = exports.fetchAccountPostings = exports.fetchAccountPayable = exports.fetchAccountsPayableCondensed = exports.fetchAccountsPayable = exports.fetchAccountReceivable = exports.fetchAccountsReceivableCondensed = void 0;
|
|
5
|
+
exports.datevConnectClient = exports.fetchSelfClients = exports.fetchFeePlans = exports.fetchFees = exports.fetchOrderManagementCostCenters = exports.fetchChargeRates = exports.fetchEmployeeCostRates = exports.fetchEmployeeQualifications = exports.fetchEmployeesWithGroup = exports.fetchEmployeeCapacities = exports.fetchInvoices = exports.fetchInvoice = exports.createExpensePosting = exports.fetchExpensePostings = exports.fetchOrderExpensePostings = exports.updateSuborder = exports.fetchSubordersStateBillingAll = exports.fetchSubordersStateBilling = exports.fetchOrdersStateWork = exports.fetchOrderStateWork = exports.fetchOrdersCostItems = exports.fetchOrderCostItems = exports.fetchOrdersMonthlyValues = exports.fetchOrderMonthlyValues = exports.updateOrder = exports.fetchOrder = exports.fetchOrders = exports.fetchClientGroup = exports.fetchOrderTypes = exports.IdentityAndAccessManagementClient = exports.DocumentManagementClient = exports.createVariousAddress = exports.fetchVariousAddress = exports.fetchVariousAddresses = exports.fetchAccountingTransactionKey = exports.fetchAccountingTransactionKeys = exports.fetchAccountingStatistics = exports.fetchCostAccountingRecords = exports.createCostSequence = exports.fetchCostSequence = exports.fetchCostSequences = void 0;
|
|
6
|
+
var Accounting_config_1 = require("./nodes/Accounting/Accounting.config");
|
|
7
|
+
Object.defineProperty(exports, "accountingNodeDescription", { enumerable: true, get: function () { return Accounting_config_1.accountingNodeDescription; } });
|
|
8
|
+
var MasterData_config_1 = require("./nodes/MasterData/MasterData.config");
|
|
9
|
+
Object.defineProperty(exports, "masterDataNodeDescription", { enumerable: true, get: function () { return MasterData_config_1.masterDataNodeDescription; } });
|
|
10
|
+
var DocumentManagement_config_1 = require("./nodes/DocumentManagement/DocumentManagement.config");
|
|
11
|
+
Object.defineProperty(exports, "documentManagementNodeDescription", { enumerable: true, get: function () { return DocumentManagement_config_1.documentManagementNodeDescription; } });
|
|
12
|
+
var IdentityAndAccessManagement_config_1 = require("./nodes/IdentityAndAccessManagement/IdentityAndAccessManagement.config");
|
|
13
|
+
Object.defineProperty(exports, "identityAndAccessManagementNodeDescription", { enumerable: true, get: function () { return IdentityAndAccessManagement_config_1.identityAndAccessManagementNodeDescription; } });
|
|
14
|
+
var OrderManagement_config_1 = require("./nodes/OrderManagement/OrderManagement.config");
|
|
15
|
+
Object.defineProperty(exports, "orderManagementNodeDescription", { enumerable: true, get: function () { return OrderManagement_config_1.orderManagementNodeDescription; } });
|
|
16
|
+
var datevConnectClient_1 = require("./src/services/datevConnectClient");
|
|
17
|
+
Object.defineProperty(exports, "authenticate", { enumerable: true, get: function () { return datevConnectClient_1.authenticate; } });
|
|
18
|
+
Object.defineProperty(exports, "fetchClients", { enumerable: true, get: function () { return datevConnectClient_1.fetchClients; } });
|
|
19
|
+
Object.defineProperty(exports, "fetchClient", { enumerable: true, get: function () { return datevConnectClient_1.fetchClient; } });
|
|
20
|
+
Object.defineProperty(exports, "createClient", { enumerable: true, get: function () { return datevConnectClient_1.createClient; } });
|
|
21
|
+
Object.defineProperty(exports, "updateClient", { enumerable: true, get: function () { return datevConnectClient_1.updateClient; } });
|
|
22
|
+
Object.defineProperty(exports, "fetchClientResponsibilities", { enumerable: true, get: function () { return datevConnectClient_1.fetchClientResponsibilities; } });
|
|
23
|
+
Object.defineProperty(exports, "updateClientResponsibilities", { enumerable: true, get: function () { return datevConnectClient_1.updateClientResponsibilities; } });
|
|
24
|
+
Object.defineProperty(exports, "fetchClientCategories", { enumerable: true, get: function () { return datevConnectClient_1.fetchClientCategories; } });
|
|
25
|
+
Object.defineProperty(exports, "updateClientCategories", { enumerable: true, get: function () { return datevConnectClient_1.updateClientCategories; } });
|
|
26
|
+
Object.defineProperty(exports, "fetchClientGroups", { enumerable: true, get: function () { return datevConnectClient_1.fetchClientGroups; } });
|
|
27
|
+
Object.defineProperty(exports, "updateClientGroups", { enumerable: true, get: function () { return datevConnectClient_1.updateClientGroups; } });
|
|
28
|
+
Object.defineProperty(exports, "fetchClientDeletionLog", { enumerable: true, get: function () { return datevConnectClient_1.fetchClientDeletionLog; } });
|
|
29
|
+
Object.defineProperty(exports, "fetchNextFreeClientNumber", { enumerable: true, get: function () { return datevConnectClient_1.fetchNextFreeClientNumber; } });
|
|
30
|
+
Object.defineProperty(exports, "fetchTaxAuthorities", { enumerable: true, get: function () { return datevConnectClient_1.fetchTaxAuthorities; } });
|
|
31
|
+
Object.defineProperty(exports, "fetchRelationships", { enumerable: true, get: function () { return datevConnectClient_1.fetchRelationships; } });
|
|
32
|
+
Object.defineProperty(exports, "fetchRelationshipTypes", { enumerable: true, get: function () { return datevConnectClient_1.fetchRelationshipTypes; } });
|
|
33
|
+
Object.defineProperty(exports, "fetchLegalForms", { enumerable: true, get: function () { return datevConnectClient_1.fetchLegalForms; } });
|
|
34
|
+
Object.defineProperty(exports, "fetchCorporateStructures", { enumerable: true, get: function () { return datevConnectClient_1.fetchCorporateStructures; } });
|
|
35
|
+
Object.defineProperty(exports, "fetchCorporateStructure", { enumerable: true, get: function () { return datevConnectClient_1.fetchCorporateStructure; } });
|
|
36
|
+
Object.defineProperty(exports, "fetchEstablishment", { enumerable: true, get: function () { return datevConnectClient_1.fetchEstablishment; } });
|
|
37
|
+
Object.defineProperty(exports, "fetchEmployees", { enumerable: true, get: function () { return datevConnectClient_1.fetchEmployees; } });
|
|
38
|
+
Object.defineProperty(exports, "fetchEmployee", { enumerable: true, get: function () { return datevConnectClient_1.fetchEmployee; } });
|
|
39
|
+
Object.defineProperty(exports, "createEmployee", { enumerable: true, get: function () { return datevConnectClient_1.createEmployee; } });
|
|
40
|
+
Object.defineProperty(exports, "updateEmployee", { enumerable: true, get: function () { return datevConnectClient_1.updateEmployee; } });
|
|
41
|
+
Object.defineProperty(exports, "fetchCountryCodes", { enumerable: true, get: function () { return datevConnectClient_1.fetchCountryCodes; } });
|
|
42
|
+
Object.defineProperty(exports, "fetchClientGroupTypes", { enumerable: true, get: function () { return datevConnectClient_1.fetchClientGroupTypes; } });
|
|
43
|
+
Object.defineProperty(exports, "fetchClientGroupType", { enumerable: true, get: function () { return datevConnectClient_1.fetchClientGroupType; } });
|
|
44
|
+
Object.defineProperty(exports, "createClientGroupType", { enumerable: true, get: function () { return datevConnectClient_1.createClientGroupType; } });
|
|
45
|
+
Object.defineProperty(exports, "updateClientGroupType", { enumerable: true, get: function () { return datevConnectClient_1.updateClientGroupType; } });
|
|
46
|
+
Object.defineProperty(exports, "fetchClientCategoryTypes", { enumerable: true, get: function () { return datevConnectClient_1.fetchClientCategoryTypes; } });
|
|
47
|
+
Object.defineProperty(exports, "fetchClientCategoryType", { enumerable: true, get: function () { return datevConnectClient_1.fetchClientCategoryType; } });
|
|
48
|
+
Object.defineProperty(exports, "createClientCategoryType", { enumerable: true, get: function () { return datevConnectClient_1.createClientCategoryType; } });
|
|
49
|
+
Object.defineProperty(exports, "updateClientCategoryType", { enumerable: true, get: function () { return datevConnectClient_1.updateClientCategoryType; } });
|
|
50
|
+
Object.defineProperty(exports, "fetchBanks", { enumerable: true, get: function () { return datevConnectClient_1.fetchBanks; } });
|
|
51
|
+
Object.defineProperty(exports, "fetchAreaOfResponsibilities", { enumerable: true, get: function () { return datevConnectClient_1.fetchAreaOfResponsibilities; } });
|
|
52
|
+
Object.defineProperty(exports, "fetchAddressees", { enumerable: true, get: function () { return datevConnectClient_1.fetchAddressees; } });
|
|
53
|
+
Object.defineProperty(exports, "fetchAddressee", { enumerable: true, get: function () { return datevConnectClient_1.fetchAddressee; } });
|
|
54
|
+
Object.defineProperty(exports, "createAddressee", { enumerable: true, get: function () { return datevConnectClient_1.createAddressee; } });
|
|
55
|
+
Object.defineProperty(exports, "updateAddressee", { enumerable: true, get: function () { return datevConnectClient_1.updateAddressee; } });
|
|
56
|
+
Object.defineProperty(exports, "fetchAddresseesDeletionLog", { enumerable: true, get: function () { return datevConnectClient_1.fetchAddresseesDeletionLog; } });
|
|
57
|
+
Object.defineProperty(exports, "fetchAccountingClients", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingClients; } });
|
|
58
|
+
Object.defineProperty(exports, "fetchAccountingClient", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingClient; } });
|
|
59
|
+
Object.defineProperty(exports, "fetchFiscalYears", { enumerable: true, get: function () { return datevConnectClient_1.fetchFiscalYears; } });
|
|
60
|
+
Object.defineProperty(exports, "fetchFiscalYear", { enumerable: true, get: function () { return datevConnectClient_1.fetchFiscalYear; } });
|
|
61
|
+
Object.defineProperty(exports, "fetchAccountsReceivable", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountsReceivable; } });
|
|
62
|
+
Object.defineProperty(exports, "fetchAccountsReceivableCondensed", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountsReceivableCondensed; } });
|
|
63
|
+
Object.defineProperty(exports, "fetchAccountReceivable", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountReceivable; } });
|
|
64
|
+
Object.defineProperty(exports, "fetchAccountsPayable", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountsPayable; } });
|
|
65
|
+
Object.defineProperty(exports, "fetchAccountsPayableCondensed", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountsPayableCondensed; } });
|
|
66
|
+
Object.defineProperty(exports, "fetchAccountPayable", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountPayable; } });
|
|
67
|
+
Object.defineProperty(exports, "fetchAccountPostings", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountPostings; } });
|
|
68
|
+
Object.defineProperty(exports, "fetchAccountPosting", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountPosting; } });
|
|
69
|
+
Object.defineProperty(exports, "fetchAccountingSequences", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingSequences; } });
|
|
70
|
+
Object.defineProperty(exports, "fetchAccountingSequence", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingSequence; } });
|
|
71
|
+
Object.defineProperty(exports, "createAccountingSequence", { enumerable: true, get: function () { return datevConnectClient_1.createAccountingSequence; } });
|
|
72
|
+
Object.defineProperty(exports, "fetchAccountingRecords", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingRecords; } });
|
|
73
|
+
Object.defineProperty(exports, "fetchAccountingRecord", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingRecord; } });
|
|
74
|
+
Object.defineProperty(exports, "fetchPostingProposalRulesIncoming", { enumerable: true, get: function () { return datevConnectClient_1.fetchPostingProposalRulesIncoming; } });
|
|
75
|
+
Object.defineProperty(exports, "fetchPostingProposalRulesOutgoing", { enumerable: true, get: function () { return datevConnectClient_1.fetchPostingProposalRulesOutgoing; } });
|
|
76
|
+
Object.defineProperty(exports, "fetchPostingProposalRulesCashRegister", { enumerable: true, get: function () { return datevConnectClient_1.fetchPostingProposalRulesCashRegister; } });
|
|
77
|
+
Object.defineProperty(exports, "fetchPostingProposalRuleIncoming", { enumerable: true, get: function () { return datevConnectClient_1.fetchPostingProposalRuleIncoming; } });
|
|
78
|
+
Object.defineProperty(exports, "fetchPostingProposalRuleOutgoing", { enumerable: true, get: function () { return datevConnectClient_1.fetchPostingProposalRuleOutgoing; } });
|
|
79
|
+
Object.defineProperty(exports, "fetchPostingProposalRuleCashRegister", { enumerable: true, get: function () { return datevConnectClient_1.fetchPostingProposalRuleCashRegister; } });
|
|
80
|
+
Object.defineProperty(exports, "batchPostingProposalsIncoming", { enumerable: true, get: function () { return datevConnectClient_1.batchPostingProposalsIncoming; } });
|
|
81
|
+
Object.defineProperty(exports, "batchPostingProposalsOutgoing", { enumerable: true, get: function () { return datevConnectClient_1.batchPostingProposalsOutgoing; } });
|
|
82
|
+
Object.defineProperty(exports, "batchPostingProposalsCashRegister", { enumerable: true, get: function () { return datevConnectClient_1.batchPostingProposalsCashRegister; } });
|
|
83
|
+
Object.defineProperty(exports, "fetchAccountingSumsAndBalances", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingSumsAndBalances; } });
|
|
84
|
+
Object.defineProperty(exports, "fetchAccountingSumsAndBalance", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingSumsAndBalance; } });
|
|
85
|
+
Object.defineProperty(exports, "fetchDebitors", { enumerable: true, get: function () { return datevConnectClient_1.fetchDebitors; } });
|
|
86
|
+
Object.defineProperty(exports, "fetchDebitor", { enumerable: true, get: function () { return datevConnectClient_1.fetchDebitor; } });
|
|
87
|
+
Object.defineProperty(exports, "createDebitor", { enumerable: true, get: function () { return datevConnectClient_1.createDebitor; } });
|
|
88
|
+
Object.defineProperty(exports, "updateDebitor", { enumerable: true, get: function () { return datevConnectClient_1.updateDebitor; } });
|
|
89
|
+
Object.defineProperty(exports, "fetchNextAvailableDebitor", { enumerable: true, get: function () { return datevConnectClient_1.fetchNextAvailableDebitor; } });
|
|
90
|
+
Object.defineProperty(exports, "fetchCreditors", { enumerable: true, get: function () { return datevConnectClient_1.fetchCreditors; } });
|
|
91
|
+
Object.defineProperty(exports, "fetchCreditor", { enumerable: true, get: function () { return datevConnectClient_1.fetchCreditor; } });
|
|
92
|
+
Object.defineProperty(exports, "createCreditor", { enumerable: true, get: function () { return datevConnectClient_1.createCreditor; } });
|
|
93
|
+
Object.defineProperty(exports, "updateCreditor", { enumerable: true, get: function () { return datevConnectClient_1.updateCreditor; } });
|
|
94
|
+
Object.defineProperty(exports, "fetchNextAvailableCreditor", { enumerable: true, get: function () { return datevConnectClient_1.fetchNextAvailableCreditor; } });
|
|
95
|
+
Object.defineProperty(exports, "fetchGeneralLedgerAccounts", { enumerable: true, get: function () { return datevConnectClient_1.fetchGeneralLedgerAccounts; } });
|
|
96
|
+
Object.defineProperty(exports, "fetchGeneralLedgerAccount", { enumerable: true, get: function () { return datevConnectClient_1.fetchGeneralLedgerAccount; } });
|
|
97
|
+
Object.defineProperty(exports, "fetchUtilizedGeneralLedgerAccounts", { enumerable: true, get: function () { return datevConnectClient_1.fetchUtilizedGeneralLedgerAccounts; } });
|
|
98
|
+
Object.defineProperty(exports, "fetchTermsOfPayment", { enumerable: true, get: function () { return datevConnectClient_1.fetchTermsOfPayment; } });
|
|
99
|
+
Object.defineProperty(exports, "fetchTermOfPayment", { enumerable: true, get: function () { return datevConnectClient_1.fetchTermOfPayment; } });
|
|
100
|
+
Object.defineProperty(exports, "createTermOfPayment", { enumerable: true, get: function () { return datevConnectClient_1.createTermOfPayment; } });
|
|
101
|
+
Object.defineProperty(exports, "updateTermOfPayment", { enumerable: true, get: function () { return datevConnectClient_1.updateTermOfPayment; } });
|
|
102
|
+
Object.defineProperty(exports, "fetchStocktakingData", { enumerable: true, get: function () { return datevConnectClient_1.fetchStocktakingData; } });
|
|
103
|
+
Object.defineProperty(exports, "fetchStocktakingDataByAsset", { enumerable: true, get: function () { return datevConnectClient_1.fetchStocktakingDataByAsset; } });
|
|
104
|
+
Object.defineProperty(exports, "updateStocktakingData", { enumerable: true, get: function () { return datevConnectClient_1.updateStocktakingData; } });
|
|
105
|
+
Object.defineProperty(exports, "fetchCostSystems", { enumerable: true, get: function () { return datevConnectClient_1.fetchCostSystems; } });
|
|
106
|
+
Object.defineProperty(exports, "fetchCostSystem", { enumerable: true, get: function () { return datevConnectClient_1.fetchCostSystem; } });
|
|
107
|
+
Object.defineProperty(exports, "fetchCostCenters", { enumerable: true, get: function () { return datevConnectClient_1.fetchCostCenters; } });
|
|
108
|
+
Object.defineProperty(exports, "fetchCostCenter", { enumerable: true, get: function () { return datevConnectClient_1.fetchCostCenter; } });
|
|
109
|
+
Object.defineProperty(exports, "fetchCostCenterProperties", { enumerable: true, get: function () { return datevConnectClient_1.fetchCostCenterProperties; } });
|
|
110
|
+
Object.defineProperty(exports, "fetchCostCenterProperty", { enumerable: true, get: function () { return datevConnectClient_1.fetchCostCenterProperty; } });
|
|
111
|
+
Object.defineProperty(exports, "createInternalCostService", { enumerable: true, get: function () { return datevConnectClient_1.createInternalCostService; } });
|
|
112
|
+
Object.defineProperty(exports, "fetchCostSequences", { enumerable: true, get: function () { return datevConnectClient_1.fetchCostSequences; } });
|
|
113
|
+
Object.defineProperty(exports, "fetchCostSequence", { enumerable: true, get: function () { return datevConnectClient_1.fetchCostSequence; } });
|
|
114
|
+
Object.defineProperty(exports, "createCostSequence", { enumerable: true, get: function () { return datevConnectClient_1.createCostSequence; } });
|
|
115
|
+
Object.defineProperty(exports, "fetchCostAccountingRecords", { enumerable: true, get: function () { return datevConnectClient_1.fetchCostAccountingRecords; } });
|
|
116
|
+
Object.defineProperty(exports, "fetchAccountingStatistics", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingStatistics; } });
|
|
117
|
+
Object.defineProperty(exports, "fetchAccountingTransactionKeys", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingTransactionKeys; } });
|
|
118
|
+
Object.defineProperty(exports, "fetchAccountingTransactionKey", { enumerable: true, get: function () { return datevConnectClient_1.fetchAccountingTransactionKey; } });
|
|
119
|
+
Object.defineProperty(exports, "fetchVariousAddresses", { enumerable: true, get: function () { return datevConnectClient_1.fetchVariousAddresses; } });
|
|
120
|
+
Object.defineProperty(exports, "fetchVariousAddress", { enumerable: true, get: function () { return datevConnectClient_1.fetchVariousAddress; } });
|
|
121
|
+
Object.defineProperty(exports, "createVariousAddress", { enumerable: true, get: function () { return datevConnectClient_1.createVariousAddress; } });
|
|
122
|
+
var documentManagementClient_1 = require("./src/services/documentManagementClient");
|
|
123
|
+
Object.defineProperty(exports, "DocumentManagementClient", { enumerable: true, get: function () { return documentManagementClient_1.DocumentManagementClient; } });
|
|
124
|
+
var identityAndAccessManagementClient_1 = require("./src/services/identityAndAccessManagementClient");
|
|
125
|
+
Object.defineProperty(exports, "IdentityAndAccessManagementClient", { enumerable: true, get: function () { return identityAndAccessManagementClient_1.IdentityAndAccessManagementClient; } });
|
|
126
|
+
var orderManagementClient_1 = require("./src/services/orderManagementClient");
|
|
127
|
+
Object.defineProperty(exports, "fetchOrderTypes", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrderTypes; } });
|
|
128
|
+
Object.defineProperty(exports, "fetchClientGroup", { enumerable: true, get: function () { return orderManagementClient_1.fetchClientGroup; } });
|
|
129
|
+
Object.defineProperty(exports, "fetchOrders", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrders; } });
|
|
130
|
+
Object.defineProperty(exports, "fetchOrder", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrder; } });
|
|
131
|
+
Object.defineProperty(exports, "updateOrder", { enumerable: true, get: function () { return orderManagementClient_1.updateOrder; } });
|
|
132
|
+
Object.defineProperty(exports, "fetchOrderMonthlyValues", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrderMonthlyValues; } });
|
|
133
|
+
Object.defineProperty(exports, "fetchOrdersMonthlyValues", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrdersMonthlyValues; } });
|
|
134
|
+
Object.defineProperty(exports, "fetchOrderCostItems", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrderCostItems; } });
|
|
135
|
+
Object.defineProperty(exports, "fetchOrdersCostItems", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrdersCostItems; } });
|
|
136
|
+
Object.defineProperty(exports, "fetchOrderStateWork", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrderStateWork; } });
|
|
137
|
+
Object.defineProperty(exports, "fetchOrdersStateWork", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrdersStateWork; } });
|
|
138
|
+
Object.defineProperty(exports, "fetchSubordersStateBilling", { enumerable: true, get: function () { return orderManagementClient_1.fetchSubordersStateBilling; } });
|
|
139
|
+
Object.defineProperty(exports, "fetchSubordersStateBillingAll", { enumerable: true, get: function () { return orderManagementClient_1.fetchSubordersStateBillingAll; } });
|
|
140
|
+
Object.defineProperty(exports, "updateSuborder", { enumerable: true, get: function () { return orderManagementClient_1.updateSuborder; } });
|
|
141
|
+
Object.defineProperty(exports, "fetchOrderExpensePostings", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrderExpensePostings; } });
|
|
142
|
+
Object.defineProperty(exports, "fetchExpensePostings", { enumerable: true, get: function () { return orderManagementClient_1.fetchExpensePostings; } });
|
|
143
|
+
Object.defineProperty(exports, "createExpensePosting", { enumerable: true, get: function () { return orderManagementClient_1.createExpensePosting; } });
|
|
144
|
+
Object.defineProperty(exports, "fetchInvoice", { enumerable: true, get: function () { return orderManagementClient_1.fetchInvoice; } });
|
|
145
|
+
Object.defineProperty(exports, "fetchInvoices", { enumerable: true, get: function () { return orderManagementClient_1.fetchInvoices; } });
|
|
146
|
+
Object.defineProperty(exports, "fetchEmployeeCapacities", { enumerable: true, get: function () { return orderManagementClient_1.fetchEmployeeCapacities; } });
|
|
147
|
+
Object.defineProperty(exports, "fetchEmployeesWithGroup", { enumerable: true, get: function () { return orderManagementClient_1.fetchEmployeesWithGroup; } });
|
|
148
|
+
Object.defineProperty(exports, "fetchEmployeeQualifications", { enumerable: true, get: function () { return orderManagementClient_1.fetchEmployeeQualifications; } });
|
|
149
|
+
Object.defineProperty(exports, "fetchEmployeeCostRates", { enumerable: true, get: function () { return orderManagementClient_1.fetchEmployeeCostRates; } });
|
|
150
|
+
Object.defineProperty(exports, "fetchChargeRates", { enumerable: true, get: function () { return orderManagementClient_1.fetchChargeRates; } });
|
|
151
|
+
Object.defineProperty(exports, "fetchOrderManagementCostCenters", { enumerable: true, get: function () { return orderManagementClient_1.fetchOrderManagementCostCenters; } });
|
|
152
|
+
Object.defineProperty(exports, "fetchFees", { enumerable: true, get: function () { return orderManagementClient_1.fetchFees; } });
|
|
153
|
+
Object.defineProperty(exports, "fetchFeePlans", { enumerable: true, get: function () { return orderManagementClient_1.fetchFeePlans; } });
|
|
154
|
+
Object.defineProperty(exports, "fetchSelfClients", { enumerable: true, get: function () { return orderManagementClient_1.fetchSelfClients; } });
|
|
155
|
+
var accountingClient_1 = require("./src/services/accountingClient");
|
|
156
|
+
Object.defineProperty(exports, "datevConnectClient", { enumerable: true, get: function () { return accountingClient_1.datevConnectClient; } });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Accounting.node.d.ts","sourceRoot":"","sources":["../../../nodes/Accounting/Accounting.node.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iBAAiB,EACjB,kBAAkB,EAClB,SAAS,EACT,oBAAoB,EACrB,MAAM,cAAc,CAAC;AA8BtB;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,qBAAa,UAAW,YAAW,SAAS;IAC1C,WAAW,EAAE,oBAAoB,CAI/B;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"Accounting.node.d.ts","sourceRoot":"","sources":["../../../nodes/Accounting/Accounting.node.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iBAAiB,EACjB,kBAAkB,EAClB,SAAS,EACT,oBAAoB,EACrB,MAAM,cAAc,CAAC;AA8BtB;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,qBAAa,UAAW,YAAW,SAAS;IAC1C,WAAW,EAAE,oBAAoB,CAI/B;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;CA4KxE"}
|
|
@@ -58,6 +58,7 @@ class Accounting {
|
|
|
58
58
|
host,
|
|
59
59
|
email,
|
|
60
60
|
password,
|
|
61
|
+
httpHelper: this.helpers.httpRequest,
|
|
61
62
|
});
|
|
62
63
|
token = authResponse.access_token;
|
|
63
64
|
}
|
|
@@ -72,7 +73,12 @@ class Accounting {
|
|
|
72
73
|
const resource = this.getNodeParameter("resource", itemIndex);
|
|
73
74
|
const operation = this.getNodeParameter("operation", itemIndex);
|
|
74
75
|
// Create request context with auth data and operation parameters
|
|
75
|
-
const requestContext = {
|
|
76
|
+
const requestContext = {
|
|
77
|
+
host,
|
|
78
|
+
token,
|
|
79
|
+
clientInstanceId,
|
|
80
|
+
httpHelper: this.helpers.httpRequest,
|
|
81
|
+
};
|
|
76
82
|
// Add clientId if needed (all operations except /clients getAll)
|
|
77
83
|
if (!(resource === "client" && operation === "getAll")) {
|
|
78
84
|
const clientId = this.getNodeParameter("clientId", itemIndex);
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Type definitions for DATEV Accounting API
|
|
3
3
|
*/
|
|
4
|
+
import type { HttpRequestHelper } from "../../src/services/datevConnectClient";
|
|
4
5
|
export interface RequestContext {
|
|
5
6
|
host: string;
|
|
6
7
|
token: string;
|
|
7
8
|
clientInstanceId: string;
|
|
9
|
+
httpHelper?: HttpRequestHelper;
|
|
8
10
|
clientId?: string;
|
|
9
11
|
fiscalYearId?: string;
|
|
10
12
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../nodes/Accounting/types.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../nodes/Accounting/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DocumentManagement.node.d.ts","sourceRoot":"","sources":["../../../nodes/DocumentManagement/DocumentManagement.node.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,SAAS,EACd,KAAK,oBAAoB,EAC1B,MAAM,cAAc,CAAC;AAkBtB,qBAAa,kBAAmB,YAAW,SAAS;IAClD,WAAW,EAAE,oBAAoB,CAI/B;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"DocumentManagement.node.d.ts","sourceRoot":"","sources":["../../../nodes/DocumentManagement/DocumentManagement.node.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,SAAS,EACd,KAAK,oBAAoB,EAC1B,MAAM,cAAc,CAAC;AAkBtB,qBAAa,kBAAmB,YAAW,SAAS;IAClD,WAAW,EAAE,oBAAoB,CAI/B;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;CAgGxE"}
|
|
@@ -43,6 +43,7 @@ class DocumentManagement {
|
|
|
43
43
|
host,
|
|
44
44
|
email,
|
|
45
45
|
password,
|
|
46
|
+
httpHelper: this.helpers.httpRequest,
|
|
46
47
|
});
|
|
47
48
|
token = authResponse.access_token;
|
|
48
49
|
}
|
|
@@ -50,7 +51,12 @@ class DocumentManagement {
|
|
|
50
51
|
throw new n8n_workflow_1.NodeApiError(this.getNode(), (0, utils_1.toErrorObject)(error));
|
|
51
52
|
}
|
|
52
53
|
// Create authentication context
|
|
53
|
-
const authContext = {
|
|
54
|
+
const authContext = {
|
|
55
|
+
host,
|
|
56
|
+
token,
|
|
57
|
+
clientInstanceId,
|
|
58
|
+
httpHelper: this.helpers.httpRequest,
|
|
59
|
+
};
|
|
54
60
|
// Process each input item
|
|
55
61
|
for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
|
|
56
62
|
const resource = this.getNodeParameter("resource", itemIndex);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IDataObject } from "n8n-workflow";
|
|
2
|
-
import type { JsonValue } from "../../src/services/datevConnectClient";
|
|
2
|
+
import type { JsonValue, HttpRequestHelper } from "../../src/services/datevConnectClient";
|
|
3
3
|
/**
|
|
4
4
|
* Credentials interface for DATEVconnect API
|
|
5
5
|
*/
|
|
@@ -16,6 +16,7 @@ export interface AuthContext {
|
|
|
16
16
|
host: string;
|
|
17
17
|
token: string;
|
|
18
18
|
clientInstanceId: string;
|
|
19
|
+
httpHelper?: HttpRequestHelper;
|
|
19
20
|
}
|
|
20
21
|
/**
|
|
21
22
|
* Base operation parameters that all operations might use
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../nodes/DocumentManagement/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,uCAAuC,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../nodes/DocumentManagement/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IdentityAndAccessManagement.node.d.ts","sourceRoot":"","sources":["../../../nodes/IdentityAndAccessManagement/IdentityAndAccessManagement.node.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,SAAS,EACd,KAAK,oBAAoB,EAC1B,MAAM,cAAc,CAAC;AActB,qBAAa,2BAA4B,YAAW,SAAS;IAC3D,WAAW,EAAE,oBAAoB,CAI/B;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"IdentityAndAccessManagement.node.d.ts","sourceRoot":"","sources":["../../../nodes/IdentityAndAccessManagement/IdentityAndAccessManagement.node.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,SAAS,EACd,KAAK,oBAAoB,EAC1B,MAAM,cAAc,CAAC;AActB,qBAAa,2BAA4B,YAAW,SAAS;IAC3D,WAAW,EAAE,oBAAoB,CAI/B;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;CA8ExE"}
|
|
@@ -37,13 +37,19 @@ class IdentityAndAccessManagement {
|
|
|
37
37
|
host,
|
|
38
38
|
email,
|
|
39
39
|
password,
|
|
40
|
+
httpHelper: this.helpers.httpRequest,
|
|
40
41
|
});
|
|
41
42
|
token = authResponse.access_token;
|
|
42
43
|
}
|
|
43
44
|
catch (error) {
|
|
44
45
|
throw new n8n_workflow_1.NodeApiError(this.getNode(), (0, utils_1.toErrorObject)(error));
|
|
45
46
|
}
|
|
46
|
-
const authContext = {
|
|
47
|
+
const authContext = {
|
|
48
|
+
host,
|
|
49
|
+
token,
|
|
50
|
+
clientInstanceId,
|
|
51
|
+
httpHelper: this.helpers.httpRequest,
|
|
52
|
+
};
|
|
47
53
|
for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
|
|
48
54
|
const resource = this.getNodeParameter("resource", itemIndex);
|
|
49
55
|
const operation = this.getNodeParameter("operation", itemIndex);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IDataObject } from "n8n-workflow";
|
|
2
|
-
import type { JsonValue } from "../../src/services/datevConnectClient";
|
|
2
|
+
import type { JsonValue, HttpRequestHelper } from "../../src/services/datevConnectClient";
|
|
3
3
|
export interface IdentityAndAccessManagementCredentials {
|
|
4
4
|
host: string;
|
|
5
5
|
email: string;
|
|
@@ -10,6 +10,7 @@ export interface AuthContext {
|
|
|
10
10
|
host: string;
|
|
11
11
|
token: string;
|
|
12
12
|
clientInstanceId: string;
|
|
13
|
+
httpHelper?: HttpRequestHelper;
|
|
13
14
|
}
|
|
14
15
|
export type Resource = "serviceProviderConfig" | "resourceType" | "schema" | "user" | "currentUser" | "group";
|
|
15
16
|
export type ServiceProviderConfigOperation = "get";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../nodes/IdentityAndAccessManagement/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,uCAAuC,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../nodes/IdentityAndAccessManagement/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,KAAK,EAAE,SAAS,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAE1F,MAAM,WAAW,sCAAsC;IACrD,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAChC;AAED,MAAM,MAAM,QAAQ,GAChB,uBAAuB,GACvB,cAAc,GACd,QAAQ,GACR,MAAM,GACN,aAAa,GACb,OAAO,CAAC;AAEZ,MAAM,MAAM,8BAA8B,GAAG,KAAK,CAAC;AACnD,MAAM,MAAM,qBAAqB,GAAG,QAAQ,CAAC;AAC7C,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,KAAK,CAAC;AAC/C,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAC9E,MAAM,MAAM,oBAAoB,GAAG,KAAK,CAAC;AACzC,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAE/E,MAAM,MAAM,SAAS,GACjB,8BAA8B,GAC9B,qBAAqB,GACrB,eAAe,GACf,aAAa,GACb,oBAAoB,GACpB,cAAc,CAAC;AAEnB,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,CAAC,EAAE,SAAS,KAAK,IAAI,CAAC;AAEhE,MAAM,WAAW,eAAgB,SAAQ,WAAW;IAClD,OAAO,EAAE,OAAO,CAAC;CAClB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MasterData.node.d.ts","sourceRoot":"","sources":["../../../nodes/MasterData/MasterData.node.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,SAAS,EACd,KAAK,oBAAoB,EAC1B,MAAM,cAAc,CAAC;AAoBtB,qBAAa,UAAW,YAAW,SAAS;IAC1C,WAAW,EAAE,oBAAoB,CAI/B;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"MasterData.node.d.ts","sourceRoot":"","sources":["../../../nodes/MasterData/MasterData.node.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,SAAS,EACd,KAAK,oBAAoB,EAC1B,MAAM,cAAc,CAAC;AAoBtB,qBAAa,UAAW,YAAW,SAAS;IAC1C,WAAW,EAAE,oBAAoB,CAI/B;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;CAsGxE"}
|
|
@@ -45,6 +45,7 @@ class MasterData {
|
|
|
45
45
|
host,
|
|
46
46
|
email,
|
|
47
47
|
password,
|
|
48
|
+
httpHelper: this.helpers.httpRequest,
|
|
48
49
|
});
|
|
49
50
|
token = authResponse.access_token;
|
|
50
51
|
}
|
|
@@ -52,7 +53,12 @@ class MasterData {
|
|
|
52
53
|
throw new n8n_workflow_1.NodeApiError(this.getNode(), (0, utils_1.toErrorObject)(error));
|
|
53
54
|
}
|
|
54
55
|
// Create authentication context
|
|
55
|
-
const authContext = {
|
|
56
|
+
const authContext = {
|
|
57
|
+
host,
|
|
58
|
+
token,
|
|
59
|
+
clientInstanceId,
|
|
60
|
+
httpHelper: this.helpers.httpRequest,
|
|
61
|
+
};
|
|
56
62
|
// Process each input item
|
|
57
63
|
for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
|
|
58
64
|
const resource = this.getNodeParameter("resource", itemIndex);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IDataObject } from "n8n-workflow";
|
|
2
|
-
import type { JsonValue } from "../../src/services/datevConnectClient";
|
|
2
|
+
import type { JsonValue, HttpRequestHelper } from "../../src/services/datevConnectClient";
|
|
3
3
|
/**
|
|
4
4
|
* Credentials interface for DATEVconnect API
|
|
5
5
|
*/
|
|
@@ -16,6 +16,7 @@ export interface AuthContext {
|
|
|
16
16
|
host: string;
|
|
17
17
|
token: string;
|
|
18
18
|
clientInstanceId: string;
|
|
19
|
+
httpHelper?: HttpRequestHelper;
|
|
19
20
|
}
|
|
20
21
|
/**
|
|
21
22
|
* Base operation parameters that all operations might use
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../nodes/MasterData/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,uCAAuC,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../nodes/MasterData/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrderManagement.config.d.ts","sourceRoot":"","sources":["../../../nodes/OrderManagement/OrderManagement.config.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAEzD,eAAO,MAAM,8BAA8B,EAAE,oBA4oB5C,CAAC"}
|