@klardaten/n8n-nodes-datevconnect 1.0.1 → 1.0.3
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 +7 -10
- package/dist/credentials/DatevConnectApi.credentials.js +68 -95
- package/dist/nodes/Accounting/Accounting.config.js +1373 -0
- package/dist/nodes/Accounting/Accounting.node.js +180 -5153
- package/dist/nodes/Accounting/handlers/AccountPostingResourceHandler.js +40 -0
- package/dist/nodes/Accounting/handlers/AccountingSequenceResourceHandler.js +72 -0
- package/dist/nodes/Accounting/handlers/AccountingStatisticsResourceHandler.js +38 -0
- package/dist/nodes/Accounting/handlers/AccountingSumsAndBalancesResourceHandler.js +52 -0
- package/dist/nodes/Accounting/handlers/AccountingTransactionKeysResourceHandler.js +53 -0
- package/dist/nodes/Accounting/handlers/AccountsPayableResourceHandler.js +67 -0
- package/dist/nodes/Accounting/handlers/AccountsReceivableResourceHandler.js +48 -0
- package/dist/nodes/Accounting/handlers/BaseResourceHandler.js +148 -0
- package/dist/nodes/Accounting/handlers/BusinessPartnersResourceHandler.js +207 -0
- package/dist/nodes/Accounting/handlers/ClientResourceHandler.js +52 -0
- package/dist/nodes/Accounting/handlers/CostCenterPropertiesResourceHandler.js +55 -0
- package/dist/nodes/Accounting/handlers/CostCentersUnitsResourceHandler.js +55 -0
- package/dist/nodes/Accounting/handlers/CostSequencesResourceHandler.js +88 -0
- package/dist/nodes/Accounting/handlers/CostSystemsResourceHandler.js +62 -0
- package/dist/nodes/Accounting/handlers/FiscalYearResourceHandler.js +49 -0
- package/dist/nodes/Accounting/handlers/GeneralLedgerAccountsResourceHandler.js +67 -0
- package/dist/nodes/Accounting/handlers/InternalCostServicesResourceHandler.js +40 -0
- package/dist/nodes/Accounting/handlers/PostingProposalsResourceHandler.js +98 -0
- package/dist/nodes/Accounting/handlers/StocktakingDataResourceHandler.js +57 -0
- package/dist/nodes/Accounting/handlers/TermsOfPaymentResourceHandler.js +69 -0
- package/dist/nodes/Accounting/handlers/VariousAddressesResourceHandler.js +56 -0
- package/dist/nodes/Accounting/handlers/index.js +45 -0
- package/dist/nodes/Accounting/types.js +5 -0
- package/dist/nodes/DocumentManagement/DocumentManagement.config.js +598 -0
- package/dist/nodes/DocumentManagement/DocumentManagement.node.js +96 -3513
- package/dist/nodes/DocumentManagement/handlers/BaseResourceHandler.js +121 -0
- package/dist/nodes/DocumentManagement/handlers/DocumentFileResourceHandler.js +126 -0
- package/dist/nodes/DocumentManagement/handlers/DocumentResourceHandler.js +184 -0
- package/dist/nodes/DocumentManagement/handlers/DocumentStateResourceHandler.js +58 -0
- package/dist/nodes/DocumentManagement/handlers/DomainResourceHandler.js +32 -0
- package/dist/nodes/DocumentManagement/handlers/IndividualPropertyResourceHandler.js +32 -0
- package/dist/nodes/DocumentManagement/handlers/IndividualReference1ResourceHandler.js +49 -0
- package/dist/nodes/DocumentManagement/handlers/IndividualReference2ResourceHandler.js +49 -0
- package/dist/nodes/DocumentManagement/handlers/InfoResourceHandler.js +30 -0
- package/dist/nodes/DocumentManagement/handlers/PropertyTemplateResourceHandler.js +34 -0
- package/dist/nodes/DocumentManagement/handlers/SecureAreaResourceHandler.js +32 -0
- package/dist/nodes/DocumentManagement/types.js +2 -0
- package/dist/nodes/DocumentManagement/utils.js +116 -0
- package/dist/nodes/IdentityAndAccessManagement/IdentityAndAccessManagement.config.js +368 -0
- package/dist/nodes/IdentityAndAccessManagement/IdentityAndAccessManagement.node.js +77 -2774
- package/dist/nodes/IdentityAndAccessManagement/handlers/BaseResourceHandler.js +87 -0
- package/dist/nodes/IdentityAndAccessManagement/handlers/CurrentUserResourceHandler.js +17 -0
- package/dist/nodes/IdentityAndAccessManagement/handlers/GroupResourceHandler.js +63 -0
- package/dist/nodes/IdentityAndAccessManagement/handlers/ResourceTypeResourceHandler.js +17 -0
- package/dist/nodes/IdentityAndAccessManagement/handlers/SchemaResourceHandler.js +30 -0
- package/dist/nodes/IdentityAndAccessManagement/handlers/ServiceProviderConfigResourceHandler.js +17 -0
- package/dist/nodes/IdentityAndAccessManagement/handlers/UserResourceHandler.js +73 -0
- package/dist/nodes/IdentityAndAccessManagement/types.js +2 -0
- package/dist/nodes/IdentityAndAccessManagement/utils.js +89 -0
- package/dist/nodes/MasterData/MasterData.config.js +902 -0
- package/dist/nodes/MasterData/MasterData.node.js +107 -3561
- package/dist/nodes/MasterData/handlers/AddresseeResourceHandler.js +98 -0
- package/dist/nodes/MasterData/handlers/AreaOfResponsibilityResourceHandler.js +42 -0
- package/dist/nodes/MasterData/handlers/BankResourceHandler.js +42 -0
- package/dist/nodes/MasterData/handlers/BaseResourceHandler.js +91 -0
- package/dist/nodes/MasterData/handlers/ClientCategoryTypeResourceHandler.js +78 -0
- package/dist/nodes/MasterData/handlers/ClientGroupTypeResourceHandler.js +78 -0
- package/dist/nodes/MasterData/handlers/ClientResourceHandler.js +183 -0
- package/dist/nodes/MasterData/handlers/CorporateStructureResourceHandler.js +68 -0
- package/dist/nodes/MasterData/handlers/CountryCodeResourceHandler.js +42 -0
- package/dist/nodes/MasterData/handlers/EmployeeResourceHandler.js +78 -0
- package/dist/nodes/MasterData/handlers/LegalFormResourceHandler.js +42 -0
- package/dist/nodes/MasterData/handlers/RelationshipResourceHandler.js +54 -0
- package/dist/nodes/MasterData/handlers/TaxAuthorityResourceHandler.js +42 -0
- package/dist/nodes/MasterData/types.js +2 -0
- package/dist/nodes/MasterData/utils.js +92 -0
- package/dist/src/services/accountingClient.js +766 -0
- package/dist/src/services/datevConnectClient.js +1809 -0
- package/dist/src/services/documentManagementClient.js +546 -0
- package/dist/src/services/identityAndAccessManagementClient.js +293 -0
- package/package.json +38 -39
- package/dist/nodes/Accounting/Accounting.node.json +0 -25
- package/dist/nodes/DocumentManagement/DocumentManagement.node.json +0 -25
- package/dist/nodes/IdentityAndAccessManagement/IdentityAndAccessManagement.node.json +0 -25
- package/dist/nodes/MasterData/MasterData.node.json +0 -25
|
@@ -0,0 +1,1373 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.accountingNodeDescription = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Configuration for the Accounting node
|
|
6
|
+
*/
|
|
7
|
+
exports.accountingNodeDescription = {
|
|
8
|
+
displayName: "Klardaten DATEVconnect: Accounting",
|
|
9
|
+
name: "accounting",
|
|
10
|
+
icon: "file:../klardaten.svg",
|
|
11
|
+
group: ["transform"],
|
|
12
|
+
version: 1,
|
|
13
|
+
description: "Interact with DATEV Accounting API",
|
|
14
|
+
defaults: {
|
|
15
|
+
name: "Accounting",
|
|
16
|
+
},
|
|
17
|
+
inputs: ["main"],
|
|
18
|
+
outputs: ["main"],
|
|
19
|
+
credentials: [
|
|
20
|
+
{
|
|
21
|
+
name: "datevConnectApi",
|
|
22
|
+
required: true,
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
properties: [
|
|
26
|
+
{
|
|
27
|
+
displayName: "Resource",
|
|
28
|
+
name: "resource",
|
|
29
|
+
type: "options",
|
|
30
|
+
noDataExpression: true,
|
|
31
|
+
options: [
|
|
32
|
+
{
|
|
33
|
+
name: "Account Posting",
|
|
34
|
+
value: "accountPosting",
|
|
35
|
+
description: "Operations on account postings",
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: "Accounting Sequence",
|
|
39
|
+
value: "accountingSequence",
|
|
40
|
+
description: "Operations on accounting sequences",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Accounting Statistic',
|
|
44
|
+
value: "accountingStatistics",
|
|
45
|
+
description: "Operations on monthly accounting sequence statistics",
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: "Accounting Sums and Balance",
|
|
49
|
+
value: "accountingSumsAndBalances",
|
|
50
|
+
description: "Operations on accounting balance sheet and P&L data",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'Accounting Transaction Key',
|
|
54
|
+
value: "accountingTransactionKeys",
|
|
55
|
+
description: "Operations on accounting transaction key master data",
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: "Accounts Payable",
|
|
59
|
+
value: "accountsPayable",
|
|
60
|
+
description: "Operations on accounts payable (open items)",
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
name: "Accounts Receivable",
|
|
64
|
+
value: "accountsReceivable",
|
|
65
|
+
description: "Operations on accounts receivable (open items)",
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
name: "Business Partner",
|
|
69
|
+
value: "businessPartners",
|
|
70
|
+
description: "Operations on debitors (customers) and creditors (suppliers)",
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "Client",
|
|
74
|
+
value: "client",
|
|
75
|
+
description: "Operations on accounting clients/companies",
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Cost Center Property',
|
|
79
|
+
value: "costCenterProperties",
|
|
80
|
+
description: "Operations on cost center properties and attributes",
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
name: 'Cost Centers/Unit',
|
|
84
|
+
value: "costCentersUnits",
|
|
85
|
+
description: "Operations on cost centers and cost units",
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: 'Cost Sequence',
|
|
89
|
+
value: "costSequences",
|
|
90
|
+
description: "Operations on cost accounting sequences",
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: 'Cost System',
|
|
94
|
+
value: "costSystems",
|
|
95
|
+
description: "Operations on cost accounting systems",
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: "Fiscal Year",
|
|
99
|
+
value: "fiscalYear",
|
|
100
|
+
description: "Operations on fiscal years",
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
name: "General Ledger Account",
|
|
104
|
+
value: "generalLedgerAccounts",
|
|
105
|
+
description: "Operations on chart of accounts",
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
name: 'Internal Cost Service',
|
|
109
|
+
value: "internalCostServices",
|
|
110
|
+
description: "Operations on internal cost service allocations",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
name: "Posting Proposal",
|
|
114
|
+
value: "postingProposals",
|
|
115
|
+
description: "Operations on posting proposal rules and batch processing",
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
name: "Stocktaking Data",
|
|
119
|
+
value: "stocktakingData",
|
|
120
|
+
description: "Operations on inventory stocktaking data",
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
name: "Terms of Payment",
|
|
124
|
+
value: "termsOfPayment",
|
|
125
|
+
description: "Operations on payment terms and conditions",
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
name: "Various Addresses",
|
|
129
|
+
value: "variousAddresses",
|
|
130
|
+
description: "Operations on various business partner addresses",
|
|
131
|
+
},
|
|
132
|
+
],
|
|
133
|
+
default: "client",
|
|
134
|
+
},
|
|
135
|
+
// Client operations
|
|
136
|
+
{
|
|
137
|
+
displayName: "Operation",
|
|
138
|
+
name: "operation",
|
|
139
|
+
type: "options",
|
|
140
|
+
noDataExpression: true,
|
|
141
|
+
displayOptions: {
|
|
142
|
+
show: {
|
|
143
|
+
resource: ["client"],
|
|
144
|
+
},
|
|
145
|
+
},
|
|
146
|
+
options: [
|
|
147
|
+
{
|
|
148
|
+
name: "Get Many",
|
|
149
|
+
value: "getAll",
|
|
150
|
+
description: 'Retrieve a list of many clients/companies',
|
|
151
|
+
action: "Get many clients",
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
name: "Get",
|
|
155
|
+
value: "get",
|
|
156
|
+
description: "Retrieve a specific client/company",
|
|
157
|
+
action: "Get a client",
|
|
158
|
+
},
|
|
159
|
+
],
|
|
160
|
+
default: "getAll",
|
|
161
|
+
},
|
|
162
|
+
// Fiscal Year operations
|
|
163
|
+
{
|
|
164
|
+
displayName: "Operation",
|
|
165
|
+
name: "operation",
|
|
166
|
+
type: "options",
|
|
167
|
+
noDataExpression: true,
|
|
168
|
+
displayOptions: {
|
|
169
|
+
show: {
|
|
170
|
+
resource: ["fiscalYear"],
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
options: [
|
|
174
|
+
{
|
|
175
|
+
name: "Get Many",
|
|
176
|
+
value: "getAll",
|
|
177
|
+
description: "Retrieve a list of fiscal years for a client",
|
|
178
|
+
action: "Get many fiscal years",
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
name: "Get",
|
|
182
|
+
value: "get",
|
|
183
|
+
description: "Retrieve a specific fiscal year",
|
|
184
|
+
action: "Get a fiscal year",
|
|
185
|
+
},
|
|
186
|
+
],
|
|
187
|
+
default: "getAll",
|
|
188
|
+
},
|
|
189
|
+
// Accounts Receivable operations
|
|
190
|
+
{
|
|
191
|
+
displayName: "Operation",
|
|
192
|
+
name: "operation",
|
|
193
|
+
type: "options",
|
|
194
|
+
noDataExpression: true,
|
|
195
|
+
displayOptions: {
|
|
196
|
+
show: {
|
|
197
|
+
resource: ["accountsReceivable"],
|
|
198
|
+
},
|
|
199
|
+
},
|
|
200
|
+
options: [
|
|
201
|
+
{
|
|
202
|
+
name: "Get Many",
|
|
203
|
+
value: "getAll",
|
|
204
|
+
description: "Retrieve a list of accounts receivable (uncondensed)",
|
|
205
|
+
action: "Get many accounts receivable",
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
name: "Get",
|
|
209
|
+
value: "get",
|
|
210
|
+
description: "Retrieve a specific account receivable",
|
|
211
|
+
action: "Get an account receivable",
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
name: "Get Condensed",
|
|
215
|
+
value: "getCondensed",
|
|
216
|
+
description: "Retrieve a condensed list of accounts receivable",
|
|
217
|
+
action: "Get condensed accounts receivable",
|
|
218
|
+
},
|
|
219
|
+
],
|
|
220
|
+
default: "getAll",
|
|
221
|
+
},
|
|
222
|
+
// Accounts Payable operations
|
|
223
|
+
{
|
|
224
|
+
displayName: "Operation",
|
|
225
|
+
name: "operation",
|
|
226
|
+
type: "options",
|
|
227
|
+
noDataExpression: true,
|
|
228
|
+
displayOptions: {
|
|
229
|
+
show: {
|
|
230
|
+
resource: ["accountsPayable"],
|
|
231
|
+
},
|
|
232
|
+
},
|
|
233
|
+
options: [
|
|
234
|
+
{
|
|
235
|
+
name: "Get Many",
|
|
236
|
+
value: "getAll",
|
|
237
|
+
description: "Retrieve a list of accounts payable (uncondensed)",
|
|
238
|
+
action: "Get many accounts payable",
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
name: "Get",
|
|
242
|
+
value: "get",
|
|
243
|
+
description: "Retrieve a specific account payable",
|
|
244
|
+
action: "Get an account payable",
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: "Get Condensed",
|
|
248
|
+
value: "getCondensed",
|
|
249
|
+
description: "Retrieve a condensed list of accounts payable",
|
|
250
|
+
action: "Get condensed accounts payable",
|
|
251
|
+
},
|
|
252
|
+
],
|
|
253
|
+
default: "getAll",
|
|
254
|
+
},
|
|
255
|
+
// Account Posting operations
|
|
256
|
+
{
|
|
257
|
+
displayName: "Operation",
|
|
258
|
+
name: "operation",
|
|
259
|
+
type: "options",
|
|
260
|
+
noDataExpression: true,
|
|
261
|
+
displayOptions: {
|
|
262
|
+
show: {
|
|
263
|
+
resource: ["accountPosting"],
|
|
264
|
+
},
|
|
265
|
+
},
|
|
266
|
+
options: [
|
|
267
|
+
{
|
|
268
|
+
name: "Get Many",
|
|
269
|
+
value: "getAll",
|
|
270
|
+
description: "Retrieve a list of account postings",
|
|
271
|
+
action: "Get many account postings",
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
name: "Get",
|
|
275
|
+
value: "get",
|
|
276
|
+
description: "Retrieve a specific account posting",
|
|
277
|
+
action: "Get an account posting",
|
|
278
|
+
},
|
|
279
|
+
],
|
|
280
|
+
default: "getAll",
|
|
281
|
+
},
|
|
282
|
+
// Accounting Sequence operations
|
|
283
|
+
{
|
|
284
|
+
displayName: "Operation",
|
|
285
|
+
name: "operation",
|
|
286
|
+
type: "options",
|
|
287
|
+
noDataExpression: true,
|
|
288
|
+
displayOptions: {
|
|
289
|
+
show: {
|
|
290
|
+
resource: ["accountingSequence"],
|
|
291
|
+
},
|
|
292
|
+
},
|
|
293
|
+
options: [
|
|
294
|
+
{
|
|
295
|
+
name: "Create",
|
|
296
|
+
value: "create",
|
|
297
|
+
description: "Create an accounting sequence",
|
|
298
|
+
action: "Create an accounting sequence",
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
name: "Get",
|
|
302
|
+
value: "get",
|
|
303
|
+
description: "Retrieve a specific accounting sequence",
|
|
304
|
+
action: "Get an accounting sequence",
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
name: "Get Accounting Record",
|
|
308
|
+
value: "getAccountingRecord",
|
|
309
|
+
description: "Retrieve a specific accounting record from a sequence",
|
|
310
|
+
action: "Get specific accounting record from sequence",
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
name: "Get Accounting Records",
|
|
314
|
+
value: "getAccountingRecords",
|
|
315
|
+
description: "Retrieve all accounting records of a specific processed sequence",
|
|
316
|
+
action: "Get accounting records from sequence",
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
name: "Get Many",
|
|
320
|
+
value: "getAll",
|
|
321
|
+
description: "Retrieve a list of processed accounting sequences",
|
|
322
|
+
action: "Get many accounting sequences",
|
|
323
|
+
},
|
|
324
|
+
],
|
|
325
|
+
default: "getAll",
|
|
326
|
+
},
|
|
327
|
+
// Posting Proposals operations
|
|
328
|
+
{
|
|
329
|
+
displayName: "Operation",
|
|
330
|
+
name: "operation",
|
|
331
|
+
type: "options",
|
|
332
|
+
noDataExpression: true,
|
|
333
|
+
displayOptions: {
|
|
334
|
+
show: {
|
|
335
|
+
resource: ["postingProposals"],
|
|
336
|
+
},
|
|
337
|
+
},
|
|
338
|
+
options: [
|
|
339
|
+
{
|
|
340
|
+
name: "Batch - Cash Register",
|
|
341
|
+
value: "batchCashRegister",
|
|
342
|
+
description: "Process batch of cash register posting proposals",
|
|
343
|
+
action: "Process batch of cash register posting proposals",
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
name: "Batch - Incoming",
|
|
347
|
+
value: "batchIncoming",
|
|
348
|
+
description: "Process batch of incoming invoice posting proposals",
|
|
349
|
+
action: "Process batch of incoming invoice posting proposals",
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
name: "Batch - Outgoing",
|
|
353
|
+
value: "batchOutgoing",
|
|
354
|
+
description: "Process batch of outgoing invoice posting proposals",
|
|
355
|
+
action: "Process batch of outgoing invoice posting proposals",
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
name: "Get Rule - Cash Register",
|
|
359
|
+
value: "getRuleCashRegister",
|
|
360
|
+
description: "Retrieve a specific posting proposal rule for cash register",
|
|
361
|
+
action: "Get a posting proposal rule for cash register",
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
name: "Get Rule - Incoming",
|
|
365
|
+
value: "getRuleIncoming",
|
|
366
|
+
description: "Retrieve a specific posting proposal rule for incoming invoices",
|
|
367
|
+
action: "Get a posting proposal rule for incoming invoices",
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
name: "Get Rule - Outgoing",
|
|
371
|
+
value: "getRuleOutgoing",
|
|
372
|
+
description: "Retrieve a specific posting proposal rule for outgoing invoices",
|
|
373
|
+
action: "Get a posting proposal rule for outgoing invoices",
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
name: "Get Rules - Cash Register",
|
|
377
|
+
value: "getRulesCashRegister",
|
|
378
|
+
description: "Retrieve posting proposal rules for cash register",
|
|
379
|
+
action: "Get posting proposal rules for cash register",
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
name: "Get Rules - Incoming",
|
|
383
|
+
value: "getRulesIncoming",
|
|
384
|
+
description: "Retrieve posting proposal rules for incoming invoices",
|
|
385
|
+
action: "Get posting proposal rules for incoming invoices",
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
name: "Get Rules - Outgoing",
|
|
389
|
+
value: "getRulesOutgoing",
|
|
390
|
+
description: "Retrieve posting proposal rules for outgoing invoices",
|
|
391
|
+
action: "Get posting proposal rules for outgoing invoices",
|
|
392
|
+
},
|
|
393
|
+
],
|
|
394
|
+
default: "getRulesIncoming",
|
|
395
|
+
},
|
|
396
|
+
// Accounting Sums and Balances operations
|
|
397
|
+
{
|
|
398
|
+
displayName: "Operation",
|
|
399
|
+
name: "operation",
|
|
400
|
+
type: "options",
|
|
401
|
+
noDataExpression: true,
|
|
402
|
+
displayOptions: {
|
|
403
|
+
show: {
|
|
404
|
+
resource: ["accountingSumsAndBalances"],
|
|
405
|
+
},
|
|
406
|
+
},
|
|
407
|
+
options: [
|
|
408
|
+
{
|
|
409
|
+
name: "Get Many",
|
|
410
|
+
value: "getAll",
|
|
411
|
+
description: "Retrieve a list of accounting sums and balances",
|
|
412
|
+
action: "Get many accounting sums and balances",
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
name: "Get",
|
|
416
|
+
value: "get",
|
|
417
|
+
description: "Retrieve a specific account from sums and balances",
|
|
418
|
+
action: "Get an accounting sums and balances entry",
|
|
419
|
+
},
|
|
420
|
+
],
|
|
421
|
+
default: "getAll",
|
|
422
|
+
},
|
|
423
|
+
// Business Partners operations
|
|
424
|
+
{
|
|
425
|
+
displayName: "Operation",
|
|
426
|
+
name: "operation",
|
|
427
|
+
type: "options",
|
|
428
|
+
noDataExpression: true,
|
|
429
|
+
displayOptions: {
|
|
430
|
+
show: {
|
|
431
|
+
resource: ["businessPartners"],
|
|
432
|
+
},
|
|
433
|
+
},
|
|
434
|
+
options: [
|
|
435
|
+
{
|
|
436
|
+
name: "Create Creditor",
|
|
437
|
+
value: "createCreditor",
|
|
438
|
+
description: "Create a new creditor",
|
|
439
|
+
action: "Create a creditor",
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
name: "Create Debitor",
|
|
443
|
+
value: "createDebitor",
|
|
444
|
+
description: "Create a new debitor",
|
|
445
|
+
action: "Create a debitor",
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
name: "Get Creditor",
|
|
449
|
+
value: "getCreditor",
|
|
450
|
+
description: "Retrieve a specific creditor",
|
|
451
|
+
action: "Get a creditor",
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
name: "Get Creditors",
|
|
455
|
+
value: "getCreditors",
|
|
456
|
+
description: "Retrieve a list of creditors (suppliers)",
|
|
457
|
+
action: "Get many creditors",
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
name: "Get Debitor",
|
|
461
|
+
value: "getDebitor",
|
|
462
|
+
description: "Retrieve a specific debitor",
|
|
463
|
+
action: "Get a debitor",
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
name: "Get Debitors",
|
|
467
|
+
value: "getDebitors",
|
|
468
|
+
description: "Retrieve a list of debitors (customers)",
|
|
469
|
+
action: "Get many debitors",
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
name: "Get Next Available Creditor",
|
|
473
|
+
value: "getNextAvailableCreditor",
|
|
474
|
+
description: "Get the next available creditor account number",
|
|
475
|
+
action: "Get next available creditor number",
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
name: "Get Next Available Debitor",
|
|
479
|
+
value: "getNextAvailableDebitor",
|
|
480
|
+
description: "Get the next available debitor account number",
|
|
481
|
+
action: "Get next available debitor number",
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
name: "Update Creditor",
|
|
485
|
+
value: "updateCreditor",
|
|
486
|
+
description: "Update an existing creditor",
|
|
487
|
+
action: "Update a creditor",
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
name: "Update Debitor",
|
|
491
|
+
value: "updateDebitor",
|
|
492
|
+
description: "Update an existing debitor",
|
|
493
|
+
action: "Update a debitor",
|
|
494
|
+
},
|
|
495
|
+
],
|
|
496
|
+
default: "getDebitors",
|
|
497
|
+
},
|
|
498
|
+
// General Ledger Accounts operations
|
|
499
|
+
{
|
|
500
|
+
displayName: "Operation",
|
|
501
|
+
name: "operation",
|
|
502
|
+
type: "options",
|
|
503
|
+
noDataExpression: true,
|
|
504
|
+
displayOptions: {
|
|
505
|
+
show: {
|
|
506
|
+
resource: ["generalLedgerAccounts"],
|
|
507
|
+
},
|
|
508
|
+
},
|
|
509
|
+
options: [
|
|
510
|
+
{
|
|
511
|
+
name: "Get Many",
|
|
512
|
+
value: "getAll",
|
|
513
|
+
description: "Retrieve a list of general ledger accounts",
|
|
514
|
+
action: "Get many general ledger accounts",
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
name: "Get",
|
|
518
|
+
value: "get",
|
|
519
|
+
description: "Retrieve a specific general ledger account",
|
|
520
|
+
action: "Get a general ledger account",
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
name: "Get Utilized",
|
|
524
|
+
value: "getUtilized",
|
|
525
|
+
description: "Retrieve a list of utilized general ledger accounts",
|
|
526
|
+
action: "Get utilized general ledger accounts",
|
|
527
|
+
},
|
|
528
|
+
],
|
|
529
|
+
default: "getAll",
|
|
530
|
+
},
|
|
531
|
+
// Terms of Payment operations
|
|
532
|
+
{
|
|
533
|
+
displayName: "Operation",
|
|
534
|
+
name: "operation",
|
|
535
|
+
type: "options",
|
|
536
|
+
noDataExpression: true,
|
|
537
|
+
displayOptions: {
|
|
538
|
+
show: {
|
|
539
|
+
resource: ["termsOfPayment"],
|
|
540
|
+
},
|
|
541
|
+
},
|
|
542
|
+
options: [
|
|
543
|
+
{
|
|
544
|
+
name: "Get Many",
|
|
545
|
+
value: "getAll",
|
|
546
|
+
description: "Retrieve a list of terms of payment",
|
|
547
|
+
action: "Get many terms of payment",
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
name: "Get",
|
|
551
|
+
value: "get",
|
|
552
|
+
description: "Retrieve a specific term of payment",
|
|
553
|
+
action: "Get a term of payment",
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
name: "Create",
|
|
557
|
+
value: "create",
|
|
558
|
+
description: "Create a new term of payment",
|
|
559
|
+
action: "Create a term of payment",
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
name: "Update",
|
|
563
|
+
value: "update",
|
|
564
|
+
description: "Update an existing term of payment",
|
|
565
|
+
action: "Update a term of payment",
|
|
566
|
+
},
|
|
567
|
+
],
|
|
568
|
+
default: "getAll",
|
|
569
|
+
},
|
|
570
|
+
// Stocktaking Data operations
|
|
571
|
+
{
|
|
572
|
+
displayName: "Operation",
|
|
573
|
+
name: "operation",
|
|
574
|
+
type: "options",
|
|
575
|
+
noDataExpression: true,
|
|
576
|
+
displayOptions: {
|
|
577
|
+
show: {
|
|
578
|
+
resource: ["stocktakingData"],
|
|
579
|
+
},
|
|
580
|
+
},
|
|
581
|
+
options: [
|
|
582
|
+
{
|
|
583
|
+
name: "Get Many",
|
|
584
|
+
value: "getAll",
|
|
585
|
+
description: "Retrieve a list of stocktaking data",
|
|
586
|
+
action: "Get many stocktaking data",
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
name: "Get",
|
|
590
|
+
value: "get",
|
|
591
|
+
description: "Retrieve a specific stocktaking data entry",
|
|
592
|
+
action: "Get a stocktaking data entry",
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
name: "Create",
|
|
596
|
+
value: "create",
|
|
597
|
+
description: "Create a new stocktaking data entry",
|
|
598
|
+
action: "Create a stocktaking data entry",
|
|
599
|
+
},
|
|
600
|
+
],
|
|
601
|
+
default: "getAll",
|
|
602
|
+
},
|
|
603
|
+
// Cost Systems operations
|
|
604
|
+
{
|
|
605
|
+
displayName: "Operation",
|
|
606
|
+
name: "operation",
|
|
607
|
+
type: "options",
|
|
608
|
+
noDataExpression: true,
|
|
609
|
+
displayOptions: {
|
|
610
|
+
show: {
|
|
611
|
+
resource: ["costSystems"],
|
|
612
|
+
},
|
|
613
|
+
},
|
|
614
|
+
options: [
|
|
615
|
+
{
|
|
616
|
+
name: "Get Many",
|
|
617
|
+
value: "getAll",
|
|
618
|
+
description: "Retrieve a list of cost systems",
|
|
619
|
+
action: "Get many cost systems",
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
name: "Get",
|
|
623
|
+
value: "get",
|
|
624
|
+
description: "Retrieve a specific cost system",
|
|
625
|
+
action: "Get a cost system",
|
|
626
|
+
},
|
|
627
|
+
],
|
|
628
|
+
default: "getAll",
|
|
629
|
+
},
|
|
630
|
+
// Cost Centers/Units operations
|
|
631
|
+
{
|
|
632
|
+
displayName: "Operation",
|
|
633
|
+
name: "operation",
|
|
634
|
+
type: "options",
|
|
635
|
+
noDataExpression: true,
|
|
636
|
+
displayOptions: {
|
|
637
|
+
show: {
|
|
638
|
+
resource: ["costCentersUnits"],
|
|
639
|
+
},
|
|
640
|
+
},
|
|
641
|
+
options: [
|
|
642
|
+
{
|
|
643
|
+
name: "Get Many",
|
|
644
|
+
value: "getAll",
|
|
645
|
+
description: "Retrieve a list of cost centers/units",
|
|
646
|
+
action: 'Get many cost centers units',
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
name: "Get",
|
|
650
|
+
value: "get",
|
|
651
|
+
description: "Retrieve a specific cost center/unit",
|
|
652
|
+
action: 'Get a cost center unit',
|
|
653
|
+
},
|
|
654
|
+
],
|
|
655
|
+
default: "getAll",
|
|
656
|
+
},
|
|
657
|
+
// Cost Center Properties operations
|
|
658
|
+
{
|
|
659
|
+
displayName: "Operation",
|
|
660
|
+
name: "operation",
|
|
661
|
+
type: "options",
|
|
662
|
+
noDataExpression: true,
|
|
663
|
+
displayOptions: {
|
|
664
|
+
show: {
|
|
665
|
+
resource: ["costCenterProperties"],
|
|
666
|
+
},
|
|
667
|
+
},
|
|
668
|
+
options: [
|
|
669
|
+
{
|
|
670
|
+
name: "Get Many",
|
|
671
|
+
value: "getAll",
|
|
672
|
+
description: "Retrieve a list of cost center properties",
|
|
673
|
+
action: "Get many cost center properties",
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
name: "Get",
|
|
677
|
+
value: "get",
|
|
678
|
+
description: "Retrieve a specific cost center property",
|
|
679
|
+
action: "Get a cost center property",
|
|
680
|
+
},
|
|
681
|
+
],
|
|
682
|
+
default: "getAll",
|
|
683
|
+
},
|
|
684
|
+
// Internal Cost Services operations
|
|
685
|
+
{
|
|
686
|
+
displayName: "Operation",
|
|
687
|
+
name: "operation",
|
|
688
|
+
type: "options",
|
|
689
|
+
noDataExpression: true,
|
|
690
|
+
displayOptions: {
|
|
691
|
+
show: {
|
|
692
|
+
resource: ["internalCostServices"],
|
|
693
|
+
},
|
|
694
|
+
},
|
|
695
|
+
options: [
|
|
696
|
+
{
|
|
697
|
+
name: "Create",
|
|
698
|
+
value: "create",
|
|
699
|
+
description: "Create internal cost service allocation",
|
|
700
|
+
action: "Create internal cost service",
|
|
701
|
+
},
|
|
702
|
+
],
|
|
703
|
+
default: "create",
|
|
704
|
+
},
|
|
705
|
+
// Cost Sequences operations
|
|
706
|
+
{
|
|
707
|
+
displayName: "Operation",
|
|
708
|
+
name: "operation",
|
|
709
|
+
type: "options",
|
|
710
|
+
noDataExpression: true,
|
|
711
|
+
displayOptions: {
|
|
712
|
+
show: {
|
|
713
|
+
resource: ["costSequences"],
|
|
714
|
+
},
|
|
715
|
+
},
|
|
716
|
+
options: [
|
|
717
|
+
{
|
|
718
|
+
name: "Get Many",
|
|
719
|
+
value: "getAll",
|
|
720
|
+
description: "Retrieve a list of cost sequences",
|
|
721
|
+
action: "Get many cost sequences",
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
name: "Get",
|
|
725
|
+
value: "get",
|
|
726
|
+
description: "Retrieve a specific cost sequence",
|
|
727
|
+
action: "Get a cost sequence",
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
name: "Create",
|
|
731
|
+
value: "create",
|
|
732
|
+
description: "Create a new cost sequence",
|
|
733
|
+
action: "Create a cost sequence",
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
name: "Get Cost Accounting Records",
|
|
737
|
+
value: "getCostAccountingRecords",
|
|
738
|
+
description: "Retrieve cost accounting records for a sequence",
|
|
739
|
+
action: "Get cost accounting records",
|
|
740
|
+
},
|
|
741
|
+
],
|
|
742
|
+
default: "getAll",
|
|
743
|
+
},
|
|
744
|
+
// Accounting Statistics operations
|
|
745
|
+
{
|
|
746
|
+
displayName: "Operation",
|
|
747
|
+
name: "operation",
|
|
748
|
+
type: "options",
|
|
749
|
+
noDataExpression: true,
|
|
750
|
+
displayOptions: {
|
|
751
|
+
show: {
|
|
752
|
+
resource: ["accountingStatistics"],
|
|
753
|
+
},
|
|
754
|
+
},
|
|
755
|
+
options: [
|
|
756
|
+
{
|
|
757
|
+
name: "Get Many",
|
|
758
|
+
value: "getAll",
|
|
759
|
+
description: "Retrieve accounting statistics data",
|
|
760
|
+
action: "Get many accounting statistics",
|
|
761
|
+
},
|
|
762
|
+
],
|
|
763
|
+
default: "getAll",
|
|
764
|
+
},
|
|
765
|
+
// Accounting Transaction Keys operations
|
|
766
|
+
{
|
|
767
|
+
displayName: "Operation",
|
|
768
|
+
name: "operation",
|
|
769
|
+
type: "options",
|
|
770
|
+
noDataExpression: true,
|
|
771
|
+
displayOptions: {
|
|
772
|
+
show: {
|
|
773
|
+
resource: ["accountingTransactionKeys"],
|
|
774
|
+
},
|
|
775
|
+
},
|
|
776
|
+
options: [
|
|
777
|
+
{
|
|
778
|
+
name: "Get Many",
|
|
779
|
+
value: "getAll",
|
|
780
|
+
description: "Retrieve a list of accounting transaction keys",
|
|
781
|
+
action: "Get many accounting transaction keys",
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
name: "Get",
|
|
785
|
+
value: "get",
|
|
786
|
+
description: "Retrieve a specific accounting transaction key",
|
|
787
|
+
action: "Get an accounting transaction key",
|
|
788
|
+
},
|
|
789
|
+
],
|
|
790
|
+
default: "getAll",
|
|
791
|
+
},
|
|
792
|
+
// Various Addresses operations
|
|
793
|
+
{
|
|
794
|
+
displayName: "Operation",
|
|
795
|
+
name: "operation",
|
|
796
|
+
type: "options",
|
|
797
|
+
noDataExpression: true,
|
|
798
|
+
displayOptions: {
|
|
799
|
+
show: {
|
|
800
|
+
resource: ["variousAddresses"],
|
|
801
|
+
},
|
|
802
|
+
},
|
|
803
|
+
options: [
|
|
804
|
+
{
|
|
805
|
+
name: "Get Many",
|
|
806
|
+
value: "getAll",
|
|
807
|
+
description: "Retrieve a list of various addresses",
|
|
808
|
+
action: "Get many various addresses",
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
name: "Get",
|
|
812
|
+
value: "get",
|
|
813
|
+
description: "Retrieve a specific various address",
|
|
814
|
+
action: "Get a various address",
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
name: "Create",
|
|
818
|
+
value: "create",
|
|
819
|
+
description: "Create a new various address",
|
|
820
|
+
action: "Create a various address",
|
|
821
|
+
},
|
|
822
|
+
],
|
|
823
|
+
default: "getAll",
|
|
824
|
+
},
|
|
825
|
+
// Common parameters
|
|
826
|
+
{
|
|
827
|
+
displayName: "Client ID",
|
|
828
|
+
name: "clientId",
|
|
829
|
+
type: "string",
|
|
830
|
+
required: true,
|
|
831
|
+
displayOptions: {
|
|
832
|
+
show: {
|
|
833
|
+
resource: ["fiscalYear", "accountsReceivable", "accountsPayable", "accountPosting", "accountingSequence", "postingProposals", "accountingSumsAndBalances", "businessPartners", "generalLedgerAccounts", "termsOfPayment", "stocktakingData", "costSystems", "costCentersUnits", "costCenterProperties", "internalCostServices", "costSequences", "accountingStatistics", "accountingTransactionKeys", "variousAddresses"],
|
|
834
|
+
},
|
|
835
|
+
},
|
|
836
|
+
default: "",
|
|
837
|
+
placeholder: "9c18c30b-ac17-451f-81c7-1b9b26dd73fe",
|
|
838
|
+
description: "The ID of the client/company",
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
displayName: "Client ID",
|
|
842
|
+
name: "clientId",
|
|
843
|
+
type: "string",
|
|
844
|
+
required: true,
|
|
845
|
+
displayOptions: {
|
|
846
|
+
show: {
|
|
847
|
+
operation: ["get"],
|
|
848
|
+
resource: ["client"],
|
|
849
|
+
},
|
|
850
|
+
},
|
|
851
|
+
default: "",
|
|
852
|
+
placeholder: "9c18c30b-ac17-451f-81c7-1b9b26dd73fe",
|
|
853
|
+
description: "The ID of the client/company to retrieve",
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
displayName: "Fiscal Year ID",
|
|
857
|
+
name: "fiscalYearId",
|
|
858
|
+
type: "string",
|
|
859
|
+
required: true,
|
|
860
|
+
displayOptions: {
|
|
861
|
+
show: {
|
|
862
|
+
resource: ["accountsReceivable", "accountsPayable", "accountPosting", "accountingSequence", "postingProposals", "accountingSumsAndBalances", "businessPartners", "generalLedgerAccounts", "termsOfPayment", "stocktakingData", "costSystems", "costCentersUnits", "costCenterProperties", "internalCostServices", "costSequences", "accountingStatistics", "accountingTransactionKeys", "variousAddresses"],
|
|
863
|
+
},
|
|
864
|
+
},
|
|
865
|
+
default: "",
|
|
866
|
+
placeholder: "20240101",
|
|
867
|
+
description: "The ID of the fiscal year",
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
displayName: "Fiscal Year ID",
|
|
871
|
+
name: "fiscalYearId",
|
|
872
|
+
type: "string",
|
|
873
|
+
required: true,
|
|
874
|
+
displayOptions: {
|
|
875
|
+
show: {
|
|
876
|
+
operation: ["get"],
|
|
877
|
+
resource: ["fiscalYear"],
|
|
878
|
+
},
|
|
879
|
+
},
|
|
880
|
+
default: "",
|
|
881
|
+
placeholder: "20240101",
|
|
882
|
+
description: "The ID of the fiscal year to retrieve",
|
|
883
|
+
},
|
|
884
|
+
// Entity-specific ID parameters
|
|
885
|
+
{
|
|
886
|
+
displayName: "Accounts Receivable ID",
|
|
887
|
+
name: "accountsReceivableId",
|
|
888
|
+
type: "string",
|
|
889
|
+
required: true,
|
|
890
|
+
displayOptions: {
|
|
891
|
+
show: {
|
|
892
|
+
operation: ["get"],
|
|
893
|
+
resource: ["accountsReceivable"],
|
|
894
|
+
},
|
|
895
|
+
},
|
|
896
|
+
default: "",
|
|
897
|
+
placeholder: "2024010116",
|
|
898
|
+
description: "The ID of the accounts receivable entry",
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
displayName: "Accounts Payable ID",
|
|
902
|
+
name: "accountsPayableId",
|
|
903
|
+
type: "string",
|
|
904
|
+
required: true,
|
|
905
|
+
displayOptions: {
|
|
906
|
+
show: {
|
|
907
|
+
operation: ["get"],
|
|
908
|
+
resource: ["accountsPayable"],
|
|
909
|
+
},
|
|
910
|
+
},
|
|
911
|
+
default: "",
|
|
912
|
+
placeholder: "202401011214",
|
|
913
|
+
description: "The ID of the accounts payable entry",
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
displayName: "Account Posting ID",
|
|
917
|
+
name: "accountPostingId",
|
|
918
|
+
type: "string",
|
|
919
|
+
required: true,
|
|
920
|
+
displayOptions: {
|
|
921
|
+
show: {
|
|
922
|
+
operation: ["get"],
|
|
923
|
+
resource: ["accountPosting"],
|
|
924
|
+
},
|
|
925
|
+
},
|
|
926
|
+
default: "",
|
|
927
|
+
placeholder: "50959122",
|
|
928
|
+
description: "The ID of the account posting",
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
displayName: "Accounting Sequence ID",
|
|
932
|
+
name: "accountingSequenceId",
|
|
933
|
+
type: "string",
|
|
934
|
+
required: true,
|
|
935
|
+
displayOptions: {
|
|
936
|
+
show: {
|
|
937
|
+
operation: ["get", "getAccountingRecords", "getAccountingRecord"],
|
|
938
|
+
resource: ["accountingSequence"],
|
|
939
|
+
},
|
|
940
|
+
},
|
|
941
|
+
default: "",
|
|
942
|
+
placeholder: "77",
|
|
943
|
+
description: "The ID of the accounting sequence",
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
displayName: "Accounting Record ID",
|
|
947
|
+
name: "accountingRecordId",
|
|
948
|
+
type: "string",
|
|
949
|
+
required: true,
|
|
950
|
+
displayOptions: {
|
|
951
|
+
show: {
|
|
952
|
+
operation: ["getAccountingRecord"],
|
|
953
|
+
resource: ["accountingSequence"],
|
|
954
|
+
},
|
|
955
|
+
},
|
|
956
|
+
default: "",
|
|
957
|
+
placeholder: "12345",
|
|
958
|
+
description: "The ID of the accounting record within the sequence",
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
displayName: "Posting Proposal Rule ID",
|
|
962
|
+
name: "postingProposalRuleId",
|
|
963
|
+
type: "string",
|
|
964
|
+
required: true,
|
|
965
|
+
displayOptions: {
|
|
966
|
+
show: {
|
|
967
|
+
operation: ["getRuleIncoming", "getRuleOutgoing", "getRuleCashRegister"],
|
|
968
|
+
resource: ["postingProposals"],
|
|
969
|
+
},
|
|
970
|
+
},
|
|
971
|
+
default: "",
|
|
972
|
+
placeholder: "1",
|
|
973
|
+
description: "The ID of the posting proposal rule",
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
displayName: "Accounting Sums and Balances ID",
|
|
977
|
+
name: "accountingSumsAndBalancesId",
|
|
978
|
+
type: "string",
|
|
979
|
+
required: true,
|
|
980
|
+
displayOptions: {
|
|
981
|
+
show: {
|
|
982
|
+
operation: ["get"],
|
|
983
|
+
resource: ["accountingSumsAndBalances"],
|
|
984
|
+
},
|
|
985
|
+
},
|
|
986
|
+
default: "",
|
|
987
|
+
placeholder: "44000000",
|
|
988
|
+
description: "The ID of the account from sums and balances",
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
displayName: "Debitor ID",
|
|
992
|
+
name: "debitorId",
|
|
993
|
+
type: "string",
|
|
994
|
+
required: true,
|
|
995
|
+
displayOptions: {
|
|
996
|
+
show: {
|
|
997
|
+
operation: ["getDebitor", "updateDebitor"],
|
|
998
|
+
resource: ["businessPartners"],
|
|
999
|
+
},
|
|
1000
|
+
},
|
|
1001
|
+
default: "",
|
|
1002
|
+
placeholder: "105000000",
|
|
1003
|
+
description: "The ID of the debitor",
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
displayName: "Creditor ID",
|
|
1007
|
+
name: "creditorId",
|
|
1008
|
+
type: "string",
|
|
1009
|
+
required: true,
|
|
1010
|
+
displayOptions: {
|
|
1011
|
+
show: {
|
|
1012
|
+
operation: ["getCreditor", "updateCreditor"],
|
|
1013
|
+
resource: ["businessPartners"],
|
|
1014
|
+
},
|
|
1015
|
+
},
|
|
1016
|
+
default: "",
|
|
1017
|
+
placeholder: "701000000",
|
|
1018
|
+
description: "The ID of the creditor",
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
displayName: "General Ledger Account ID",
|
|
1022
|
+
name: "generalLedgerAccountId",
|
|
1023
|
+
type: "string",
|
|
1024
|
+
required: true,
|
|
1025
|
+
displayOptions: {
|
|
1026
|
+
show: {
|
|
1027
|
+
operation: ["get"],
|
|
1028
|
+
resource: ["generalLedgerAccounts"],
|
|
1029
|
+
},
|
|
1030
|
+
},
|
|
1031
|
+
default: "",
|
|
1032
|
+
placeholder: "50000",
|
|
1033
|
+
description: "The ID of the general ledger account",
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
displayName: "Terms of Payment ID",
|
|
1037
|
+
name: "termsOfPaymentId",
|
|
1038
|
+
type: "string",
|
|
1039
|
+
required: true,
|
|
1040
|
+
displayOptions: {
|
|
1041
|
+
show: {
|
|
1042
|
+
operation: ["get", "update"],
|
|
1043
|
+
resource: ["termsOfPayment"],
|
|
1044
|
+
},
|
|
1045
|
+
},
|
|
1046
|
+
default: "",
|
|
1047
|
+
placeholder: "Z001",
|
|
1048
|
+
description: "The ID of the terms of payment",
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
displayName: "Stocktaking Data ID",
|
|
1052
|
+
name: "stocktakingDataId",
|
|
1053
|
+
type: "string",
|
|
1054
|
+
required: true,
|
|
1055
|
+
displayOptions: {
|
|
1056
|
+
show: {
|
|
1057
|
+
operation: ["get"],
|
|
1058
|
+
resource: ["stocktakingData"],
|
|
1059
|
+
},
|
|
1060
|
+
},
|
|
1061
|
+
default: "",
|
|
1062
|
+
placeholder: "1",
|
|
1063
|
+
description: "The ID of the stocktaking data entry",
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
displayName: "Cost System ID",
|
|
1067
|
+
name: "costSystemId",
|
|
1068
|
+
type: "string",
|
|
1069
|
+
required: true,
|
|
1070
|
+
displayOptions: {
|
|
1071
|
+
show: {
|
|
1072
|
+
operation: ["get"],
|
|
1073
|
+
resource: ["costSystems"],
|
|
1074
|
+
},
|
|
1075
|
+
},
|
|
1076
|
+
default: "",
|
|
1077
|
+
placeholder: "0",
|
|
1078
|
+
description: "The ID of the cost system",
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
displayName: "Cost System ID",
|
|
1082
|
+
name: "costSystemId",
|
|
1083
|
+
type: "string",
|
|
1084
|
+
required: true,
|
|
1085
|
+
displayOptions: {
|
|
1086
|
+
show: {
|
|
1087
|
+
resource: ["costCentersUnits", "costCenterProperties", "internalCostServices", "costSequences"],
|
|
1088
|
+
},
|
|
1089
|
+
},
|
|
1090
|
+
default: "",
|
|
1091
|
+
placeholder: "0",
|
|
1092
|
+
description: "The ID of the cost system",
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
displayName: "Cost Center/Unit ID",
|
|
1096
|
+
name: "costCenterUnitId",
|
|
1097
|
+
type: "string",
|
|
1098
|
+
required: true,
|
|
1099
|
+
displayOptions: {
|
|
1100
|
+
show: {
|
|
1101
|
+
operation: ["get"],
|
|
1102
|
+
resource: ["costCentersUnits"],
|
|
1103
|
+
},
|
|
1104
|
+
},
|
|
1105
|
+
default: "",
|
|
1106
|
+
placeholder: "100",
|
|
1107
|
+
description: "The ID of the cost center or cost unit",
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
displayName: "Cost Center Property ID",
|
|
1111
|
+
name: "costCenterPropertyId",
|
|
1112
|
+
type: "string",
|
|
1113
|
+
required: true,
|
|
1114
|
+
displayOptions: {
|
|
1115
|
+
show: {
|
|
1116
|
+
operation: ["get"],
|
|
1117
|
+
resource: ["costCenterProperties"],
|
|
1118
|
+
},
|
|
1119
|
+
},
|
|
1120
|
+
default: "",
|
|
1121
|
+
placeholder: "1",
|
|
1122
|
+
description: "The ID of the cost center property",
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
displayName: "Cost Sequence ID",
|
|
1126
|
+
name: "costSequenceId",
|
|
1127
|
+
type: "string",
|
|
1128
|
+
required: true,
|
|
1129
|
+
displayOptions: {
|
|
1130
|
+
show: {
|
|
1131
|
+
operation: ["get", "create", "getCostAccountingRecords"],
|
|
1132
|
+
resource: ["costSequences"],
|
|
1133
|
+
},
|
|
1134
|
+
},
|
|
1135
|
+
default: "",
|
|
1136
|
+
placeholder: "1",
|
|
1137
|
+
description: "The ID of the cost sequence",
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
displayName: "Accounting Transaction Key ID",
|
|
1141
|
+
name: "accountingTransactionKeyId",
|
|
1142
|
+
type: "string",
|
|
1143
|
+
required: true,
|
|
1144
|
+
displayOptions: {
|
|
1145
|
+
show: {
|
|
1146
|
+
operation: ["get"],
|
|
1147
|
+
resource: ["accountingTransactionKeys"],
|
|
1148
|
+
},
|
|
1149
|
+
},
|
|
1150
|
+
default: "",
|
|
1151
|
+
placeholder: "40",
|
|
1152
|
+
description: "The ID of the accounting transaction key",
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
displayName: "Various Address ID",
|
|
1156
|
+
name: "variousAddressId",
|
|
1157
|
+
type: "string",
|
|
1158
|
+
required: true,
|
|
1159
|
+
displayOptions: {
|
|
1160
|
+
show: {
|
|
1161
|
+
operation: ["get"],
|
|
1162
|
+
resource: ["variousAddresses"],
|
|
1163
|
+
},
|
|
1164
|
+
},
|
|
1165
|
+
default: "",
|
|
1166
|
+
placeholder: "1",
|
|
1167
|
+
description: "The ID of the various address",
|
|
1168
|
+
},
|
|
1169
|
+
// Query parameters for list operations
|
|
1170
|
+
{
|
|
1171
|
+
displayName: "Limit",
|
|
1172
|
+
name: "top",
|
|
1173
|
+
type: "number",
|
|
1174
|
+
displayOptions: {
|
|
1175
|
+
show: {
|
|
1176
|
+
operation: [
|
|
1177
|
+
"getAll", "getCondensed", "getAccountingRecords",
|
|
1178
|
+
"getRulesIncoming", "getRulesOutgoing", "getRulesCashRegister",
|
|
1179
|
+
"getDebitors", "getCreditors", "getUtilized"
|
|
1180
|
+
],
|
|
1181
|
+
},
|
|
1182
|
+
},
|
|
1183
|
+
typeOptions: {
|
|
1184
|
+
minValue: 1,
|
|
1185
|
+
},
|
|
1186
|
+
default: 100,
|
|
1187
|
+
description: "Maximum number of records to return",
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
displayName: "Skip",
|
|
1191
|
+
name: "skip",
|
|
1192
|
+
type: "number",
|
|
1193
|
+
displayOptions: {
|
|
1194
|
+
show: {
|
|
1195
|
+
operation: [
|
|
1196
|
+
"getAll", "getCondensed", "getAccountingRecords",
|
|
1197
|
+
"getRulesIncoming", "getRulesOutgoing", "getRulesCashRegister",
|
|
1198
|
+
"getDebitors", "getCreditors", "getUtilized"
|
|
1199
|
+
],
|
|
1200
|
+
},
|
|
1201
|
+
},
|
|
1202
|
+
typeOptions: {
|
|
1203
|
+
minValue: 0,
|
|
1204
|
+
},
|
|
1205
|
+
default: 0,
|
|
1206
|
+
description: "Number of records to skip from the start",
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
displayName: "Select Fields",
|
|
1210
|
+
name: "select",
|
|
1211
|
+
type: "string",
|
|
1212
|
+
displayOptions: {
|
|
1213
|
+
show: {
|
|
1214
|
+
operation: [
|
|
1215
|
+
"getAll", "get", "getCondensed", "getAccountingRecords", "getAccountingRecord",
|
|
1216
|
+
"getRulesIncoming", "getRulesOutgoing", "getRulesCashRegister",
|
|
1217
|
+
"getRuleIncoming", "getRuleOutgoing", "getRuleCashRegister",
|
|
1218
|
+
"getDebitors", "getDebitor", "getCreditors", "getCreditor", "getUtilized"
|
|
1219
|
+
],
|
|
1220
|
+
},
|
|
1221
|
+
},
|
|
1222
|
+
default: "",
|
|
1223
|
+
description: "Comma-separated list of fields to include in the response",
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
displayName: "Filter",
|
|
1227
|
+
name: "filter",
|
|
1228
|
+
type: "string",
|
|
1229
|
+
displayOptions: {
|
|
1230
|
+
show: {
|
|
1231
|
+
operation: [
|
|
1232
|
+
"getAll", "getCondensed", "getAccountingRecords",
|
|
1233
|
+
"getRulesIncoming", "getRulesOutgoing", "getRulesCashRegister",
|
|
1234
|
+
"getDebitors", "getCreditors", "getUtilized"
|
|
1235
|
+
],
|
|
1236
|
+
},
|
|
1237
|
+
},
|
|
1238
|
+
default: "",
|
|
1239
|
+
description: "Filter expression as defined by the DATEV API",
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
displayName: "Expand",
|
|
1243
|
+
name: "expand",
|
|
1244
|
+
type: "string",
|
|
1245
|
+
displayOptions: {
|
|
1246
|
+
show: {
|
|
1247
|
+
operation: ["get", "getDebitor", "getCreditor", "getDebitors", "getCreditors"],
|
|
1248
|
+
resource: ["client", "accountsReceivable", "accountsPayable", "variousAddresses", "businessPartners"],
|
|
1249
|
+
},
|
|
1250
|
+
},
|
|
1251
|
+
default: "",
|
|
1252
|
+
description: "Parameter to include subordinate objects (e.g., 'detail,addresses' or '*' for all)",
|
|
1253
|
+
},
|
|
1254
|
+
// Parameters for create operations
|
|
1255
|
+
{
|
|
1256
|
+
displayName: "Accounting Sequence Data",
|
|
1257
|
+
name: "accountingSequenceData",
|
|
1258
|
+
type: "json",
|
|
1259
|
+
displayOptions: {
|
|
1260
|
+
show: {
|
|
1261
|
+
operation: ["create"],
|
|
1262
|
+
resource: ["accountingSequence"],
|
|
1263
|
+
},
|
|
1264
|
+
},
|
|
1265
|
+
default: "{}",
|
|
1266
|
+
description: "Accounting sequence payload to send to the API",
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
displayName: "Posting Proposal Data",
|
|
1270
|
+
name: "postingProposalData",
|
|
1271
|
+
type: "json",
|
|
1272
|
+
displayOptions: {
|
|
1273
|
+
show: {
|
|
1274
|
+
operation: ["batchIncoming", "batchOutgoing", "batchCashRegister"],
|
|
1275
|
+
resource: ["postingProposals"],
|
|
1276
|
+
},
|
|
1277
|
+
},
|
|
1278
|
+
default: "{}",
|
|
1279
|
+
description: "Posting proposal batch data to send to the API",
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
displayName: "Debitor Data",
|
|
1283
|
+
name: "debitorData",
|
|
1284
|
+
type: "json",
|
|
1285
|
+
displayOptions: {
|
|
1286
|
+
show: {
|
|
1287
|
+
operation: ["createDebitor", "updateDebitor"],
|
|
1288
|
+
resource: ["businessPartners"],
|
|
1289
|
+
},
|
|
1290
|
+
},
|
|
1291
|
+
default: "{}",
|
|
1292
|
+
description: "Debitor data to send to the API",
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
displayName: "Creditor Data",
|
|
1296
|
+
name: "creditorData",
|
|
1297
|
+
type: "json",
|
|
1298
|
+
displayOptions: {
|
|
1299
|
+
show: {
|
|
1300
|
+
operation: ["createCreditor", "updateCreditor"],
|
|
1301
|
+
resource: ["businessPartners"],
|
|
1302
|
+
},
|
|
1303
|
+
},
|
|
1304
|
+
default: "{}",
|
|
1305
|
+
description: "Creditor data to send to the API",
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
displayName: "Terms of Payment Data",
|
|
1309
|
+
name: "termsOfPaymentData",
|
|
1310
|
+
type: "json",
|
|
1311
|
+
displayOptions: {
|
|
1312
|
+
show: {
|
|
1313
|
+
operation: ["create", "update"],
|
|
1314
|
+
resource: ["termsOfPayment"],
|
|
1315
|
+
},
|
|
1316
|
+
},
|
|
1317
|
+
default: "{}",
|
|
1318
|
+
description: "Terms of payment data to send to the API",
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
displayName: "Stocktaking Data",
|
|
1322
|
+
name: "stocktakingData",
|
|
1323
|
+
type: "json",
|
|
1324
|
+
displayOptions: {
|
|
1325
|
+
show: {
|
|
1326
|
+
operation: ["create"],
|
|
1327
|
+
resource: ["stocktakingData"],
|
|
1328
|
+
},
|
|
1329
|
+
},
|
|
1330
|
+
default: "{}",
|
|
1331
|
+
description: "Stocktaking data to send to the API",
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
displayName: "Internal Cost Service Data",
|
|
1335
|
+
name: "internalCostServiceData",
|
|
1336
|
+
type: "json",
|
|
1337
|
+
displayOptions: {
|
|
1338
|
+
show: {
|
|
1339
|
+
operation: ["create"],
|
|
1340
|
+
resource: ["internalCostServices"],
|
|
1341
|
+
},
|
|
1342
|
+
},
|
|
1343
|
+
default: "{}",
|
|
1344
|
+
description: "Internal cost service data to send to the API",
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
displayName: "Cost Sequence Data",
|
|
1348
|
+
name: "costSequenceData",
|
|
1349
|
+
type: "json",
|
|
1350
|
+
displayOptions: {
|
|
1351
|
+
show: {
|
|
1352
|
+
operation: ["create"],
|
|
1353
|
+
resource: ["costSequences"],
|
|
1354
|
+
},
|
|
1355
|
+
},
|
|
1356
|
+
default: "{}",
|
|
1357
|
+
description: "Cost sequence data to send to the API",
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
displayName: "Various Address Data",
|
|
1361
|
+
name: "variousAddressData",
|
|
1362
|
+
type: "json",
|
|
1363
|
+
displayOptions: {
|
|
1364
|
+
show: {
|
|
1365
|
+
operation: ["create"],
|
|
1366
|
+
resource: ["variousAddresses"],
|
|
1367
|
+
},
|
|
1368
|
+
},
|
|
1369
|
+
default: "{}",
|
|
1370
|
+
description: "Various address data to send to the API",
|
|
1371
|
+
},
|
|
1372
|
+
],
|
|
1373
|
+
};
|