@actaport/n8n-nodes-actaport 0.1.1
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/LICENSE +21 -0
- package/README.md +87 -0
- package/dist/assets/add_credentials.png +0 -0
- package/dist/assets/login_prompt.png +0 -0
- package/dist/assets/successful_login.png +0 -0
- package/dist/credentials/ActaportOAuth2Api.credentials.d.ts +10 -0
- package/dist/credentials/ActaportOAuth2Api.credentials.js +87 -0
- package/dist/credentials/ActaportOAuth2Api.credentials.js.map +1 -0
- package/dist/nodes/Actaport/Actaport.node.d.ts +18 -0
- package/dist/nodes/Actaport/Actaport.node.js +134 -0
- package/dist/nodes/Actaport/Actaport.node.js.map +1 -0
- package/dist/nodes/Actaport/Actaport.node.json +21 -0
- package/dist/nodes/Actaport/ActaportTrigger.node.d.ts +16 -0
- package/dist/nodes/Actaport/ActaportTrigger.node.js +135 -0
- package/dist/nodes/Actaport/ActaportTrigger.node.js.map +1 -0
- package/dist/nodes/Actaport/ActaportTypes.d.ts +31 -0
- package/dist/nodes/Actaport/ActaportTypes.js +18 -0
- package/dist/nodes/Actaport/ActaportTypes.js.map +1 -0
- package/dist/nodes/Actaport/GenericFunctions.d.ts +6 -0
- package/dist/nodes/Actaport/GenericFunctions.js +110 -0
- package/dist/nodes/Actaport/GenericFunctions.js.map +1 -0
- package/dist/nodes/Actaport/actaport.dark.svg +30 -0
- package/dist/nodes/Actaport/actaport.light.svg +22 -0
- package/dist/nodes/Actaport/actaport.svg +30 -0
- package/dist/nodes/Actaport/descriptions/AdditionalInfoDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/AdditionalInfoDescription.js +56 -0
- package/dist/nodes/Actaport/descriptions/AdditionalInfoDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/CaseFileDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/CaseFileDescription.js +842 -0
- package/dist/nodes/Actaport/descriptions/CaseFileDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/CollisionCheckDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/CollisionCheckDescription.js +171 -0
- package/dist/nodes/Actaport/descriptions/CollisionCheckDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/ContactDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/ContactDescription.js +1378 -0
- package/dist/nodes/Actaport/descriptions/ContactDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/DeadlineDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/DeadlineDescription.js +409 -0
- package/dist/nodes/Actaport/descriptions/DeadlineDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/DocumentDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/DocumentDescription.js +414 -0
- package/dist/nodes/Actaport/descriptions/DocumentDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/ExpenseDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/ExpenseDescription.js +824 -0
- package/dist/nodes/Actaport/descriptions/ExpenseDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/FolderDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/FolderDescription.js +135 -0
- package/dist/nodes/Actaport/descriptions/FolderDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/InvoiceDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/InvoiceDescription.js +194 -0
- package/dist/nodes/Actaport/descriptions/InvoiceDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/NoteDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/NoteDescription.js +308 -0
- package/dist/nodes/Actaport/descriptions/NoteDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/ResubmissionDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/ResubmissionDescription.js +371 -0
- package/dist/nodes/Actaport/descriptions/ResubmissionDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/RvgFeeDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/RvgFeeDescription.js +531 -0
- package/dist/nodes/Actaport/descriptions/RvgFeeDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/TaskDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/TaskDescription.js +619 -0
- package/dist/nodes/Actaport/descriptions/TaskDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/ThirdPartyCostDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/ThirdPartyCostDescription.js +697 -0
- package/dist/nodes/Actaport/descriptions/ThirdPartyCostDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/UserDescription.d.ts +2 -0
- package/dist/nodes/Actaport/descriptions/UserDescription.js +211 -0
- package/dist/nodes/Actaport/descriptions/UserDescription.js.map +1 -0
- package/dist/nodes/Actaport/descriptions/index.d.ts +15 -0
- package/dist/nodes/Actaport/descriptions/index.js +32 -0
- package/dist/nodes/Actaport/descriptions/index.js.map +1 -0
- package/dist/nodes/Actaport/helpers/DocumentUploadHelper.d.ts +2 -0
- package/dist/nodes/Actaport/helpers/DocumentUploadHelper.js +52 -0
- package/dist/nodes/Actaport/helpers/DocumentUploadHelper.js.map +1 -0
- package/dist/nodes/Actaport/listSearch/ClientsListSearch.d.ts +2 -0
- package/dist/nodes/Actaport/listSearch/ClientsListSearch.js +32 -0
- package/dist/nodes/Actaport/listSearch/ClientsListSearch.js.map +1 -0
- package/dist/nodes/Actaport/listSearch/ContactsListSearch.d.ts +2 -0
- package/dist/nodes/Actaport/listSearch/ContactsListSearch.js +31 -0
- package/dist/nodes/Actaport/listSearch/ContactsListSearch.js.map +1 -0
- package/dist/nodes/Actaport/listSearch/UsersListSearch.d.ts +2 -0
- package/dist/nodes/Actaport/listSearch/UsersListSearch.js +30 -0
- package/dist/nodes/Actaport/listSearch/UsersListSearch.js.map +1 -0
- package/dist/nodes/Actaport/listSearch/index.d.ts +3 -0
- package/dist/nodes/Actaport/listSearch/index.js +20 -0
- package/dist/nodes/Actaport/listSearch/index.js.map +1 -0
- package/dist/nodes/Actaport/loadOptions/AllocatableDocumentsLoadOptions.d.ts +2 -0
- package/dist/nodes/Actaport/loadOptions/AllocatableDocumentsLoadOptions.js +31 -0
- package/dist/nodes/Actaport/loadOptions/AllocatableDocumentsLoadOptions.js.map +1 -0
- package/dist/nodes/Actaport/loadOptions/AssistantsLoadOptions.d.ts +2 -0
- package/dist/nodes/Actaport/loadOptions/AssistantsLoadOptions.js +19 -0
- package/dist/nodes/Actaport/loadOptions/AssistantsLoadOptions.js.map +1 -0
- package/dist/nodes/Actaport/loadOptions/ClerksLoadOptions.d.ts +2 -0
- package/dist/nodes/Actaport/loadOptions/ClerksLoadOptions.js +19 -0
- package/dist/nodes/Actaport/loadOptions/ClerksLoadOptions.js.map +1 -0
- package/dist/nodes/Actaport/loadOptions/index.d.ts +3 -0
- package/dist/nodes/Actaport/loadOptions/index.js +20 -0
- package/dist/nodes/Actaport/loadOptions/index.js.map +1 -0
- package/dist/package.json +53 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +53 -0
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getApiBaseUrl = getApiBaseUrl;
|
|
4
|
+
exports.getStaticData = getStaticData;
|
|
5
|
+
exports.actaportApiRequest = actaportApiRequest;
|
|
6
|
+
exports.actaportApiRequestGetAllPaginatedItems = actaportApiRequestGetAllPaginatedItems;
|
|
7
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
8
|
+
function getApiBaseUrl(credentials) {
|
|
9
|
+
return credentials.apiUrl || 'https://app.actaport.de/v1';
|
|
10
|
+
}
|
|
11
|
+
function getStaticData(context) {
|
|
12
|
+
return context.getWorkflowStaticData('node');
|
|
13
|
+
}
|
|
14
|
+
async function actaportApiRequest(method, resource, body = {}, query = {}, uri, options = {}) {
|
|
15
|
+
const credentials = await this.getCredentials('actaportOAuth2Api');
|
|
16
|
+
const apiBaseUrl = getApiBaseUrl(credentials);
|
|
17
|
+
const url = resolveUrl(apiBaseUrl, resource, uri);
|
|
18
|
+
let requestOptions = {
|
|
19
|
+
method,
|
|
20
|
+
body,
|
|
21
|
+
qs: query,
|
|
22
|
+
url,
|
|
23
|
+
json: true,
|
|
24
|
+
};
|
|
25
|
+
requestOptions = { ...requestOptions, ...options };
|
|
26
|
+
if (!Object.keys(body).length) {
|
|
27
|
+
delete requestOptions.body;
|
|
28
|
+
}
|
|
29
|
+
if (!Object.keys(query).length) {
|
|
30
|
+
delete requestOptions.qs;
|
|
31
|
+
}
|
|
32
|
+
try {
|
|
33
|
+
return await this.helpers.httpRequestWithAuthentication.call(this, 'actaportOAuth2Api', requestOptions);
|
|
34
|
+
}
|
|
35
|
+
catch (error) {
|
|
36
|
+
throw new n8n_workflow_1.NodeApiError(this.getNode(), error);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
async function actaportApiRequestGetAllPaginatedItems(endpoint, query = {}) {
|
|
40
|
+
var _a, _b;
|
|
41
|
+
const returnData = [];
|
|
42
|
+
let currentPageUrl = endpoint;
|
|
43
|
+
const originalQuery = { ...query };
|
|
44
|
+
let firstCall = true;
|
|
45
|
+
while (currentPageUrl) {
|
|
46
|
+
let responseData;
|
|
47
|
+
try {
|
|
48
|
+
if (firstCall) {
|
|
49
|
+
responseData = (await actaportApiRequest.call(this, 'GET', currentPageUrl, {}, originalQuery));
|
|
50
|
+
firstCall = false;
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
responseData = (await actaportApiRequest.call(this, 'GET', '', {}, {}, currentPageUrl));
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
catch (error) {
|
|
57
|
+
throw new n8n_workflow_1.NodeApiError(this.getNode(), error);
|
|
58
|
+
}
|
|
59
|
+
if (responseData.content && Array.isArray(responseData.content)) {
|
|
60
|
+
returnData.push(...responseData.content);
|
|
61
|
+
}
|
|
62
|
+
if ((_b = (_a = responseData._link) === null || _a === void 0 ? void 0 : _a.next) === null || _b === void 0 ? void 0 : _b.href) {
|
|
63
|
+
currentPageUrl = responseData._link.next.href;
|
|
64
|
+
continue;
|
|
65
|
+
}
|
|
66
|
+
const { number, size, last } = responseData;
|
|
67
|
+
if (last === false && typeof number === 'number') {
|
|
68
|
+
const nextPage = number + 1;
|
|
69
|
+
const params = { ...originalQuery };
|
|
70
|
+
params.page = nextPage;
|
|
71
|
+
if (!originalQuery.size && size) {
|
|
72
|
+
params.size = size;
|
|
73
|
+
}
|
|
74
|
+
const queryString = stringifyQuery(params);
|
|
75
|
+
currentPageUrl = `${endpoint}?${queryString}`;
|
|
76
|
+
continue;
|
|
77
|
+
}
|
|
78
|
+
currentPageUrl = null;
|
|
79
|
+
}
|
|
80
|
+
return returnData;
|
|
81
|
+
}
|
|
82
|
+
function stringifyQuery(params) {
|
|
83
|
+
const parts = [];
|
|
84
|
+
for (const [key, value] of Object.entries(params)) {
|
|
85
|
+
if (value === undefined || value === null)
|
|
86
|
+
continue;
|
|
87
|
+
if (Array.isArray(value)) {
|
|
88
|
+
for (const v of value) {
|
|
89
|
+
parts.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(v))}`);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
parts.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
return parts.join('&');
|
|
97
|
+
}
|
|
98
|
+
function resolveUrl(apiBaseUrl, resource, uri) {
|
|
99
|
+
if (uri) {
|
|
100
|
+
if (uri.startsWith('http://') || uri.startsWith('https://')) {
|
|
101
|
+
return uri;
|
|
102
|
+
}
|
|
103
|
+
if (uri.startsWith('/')) {
|
|
104
|
+
return apiBaseUrl.replace(/\/+$/, '') + uri;
|
|
105
|
+
}
|
|
106
|
+
return `${apiBaseUrl.replace(/\/+$/, '')}/${uri.replace(/^\/*/, '')}`;
|
|
107
|
+
}
|
|
108
|
+
return `${apiBaseUrl.replace(/\/+$/, '')}/${resource.replace(/^\/*/, '')}`;
|
|
109
|
+
}
|
|
110
|
+
//# sourceMappingURL=GenericFunctions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GenericFunctions.js","sourceRoot":"","sources":["../../../nodes/Actaport/GenericFunctions.ts"],"names":[],"mappings":";;AAaA,sCAEC;AAED,sCAEC;AAED,gDAwCC;AAED,wFAoEC;AAnID,+CAUsB;AAGtB,SAAgB,aAAa,CAAC,WAAwB;IACrD,OAAQ,WAAW,CAAC,MAAiB,IAAI,4BAA4B,CAAC;AACvE,CAAC;AAED,SAAgB,aAAa,CAAC,OAAuB;IACpD,OAAO,OAAO,CAAC,qBAAqB,CAAC,MAAM,CAAuB,CAAC;AACpE,CAAC;AAEM,KAAK,UAAU,kBAAkB,CAEvC,MAA2B,EAC3B,QAAgB,EAChB,OAAoB,EAAE,EACtB,QAAqB,EAAE,EACvB,GAAY,EACZ,UAAuB,EAAE;IAEzB,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,mBAAmB,CAAC,CAAC;IACnE,MAAM,UAAU,GAAG,aAAa,CAAC,WAAW,CAAC,CAAC;IAE9C,MAAM,GAAG,GAAG,UAAU,CAAC,UAAU,EAAE,QAAQ,EAAE,GAAG,CAAC,CAAC;IAElD,IAAI,cAAc,GAAwB;QACzC,MAAM;QACN,IAAI;QACJ,EAAE,EAAE,KAAK;QACT,GAAG;QACH,IAAI,EAAE,IAAI;KACV,CAAC;IAEF,cAAc,GAAG,EAAE,GAAG,cAAc,EAAE,GAAG,OAAO,EAAE,CAAC;IAEnD,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,CAAC;QAC/B,OAAO,cAAc,CAAC,IAAI,CAAC;IAC5B,CAAC;IACD,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,CAAC;QAChC,OAAO,cAAc,CAAC,EAAE,CAAC;IAC1B,CAAC;IAED,IAAI,CAAC;QACJ,OAAO,MAAM,IAAI,CAAC,OAAO,CAAC,6BAA6B,CAAC,IAAI,CAC3D,IAAI,EACJ,mBAAmB,EACnB,cAAc,CACd,CAAC;IACH,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QAChB,MAAM,IAAI,2BAAY,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,KAAmB,CAAC,CAAC;IAC7D,CAAC;AACF,CAAC;AAEM,KAAK,UAAU,sCAAsC,CAE3D,QAAgB,EAChB,QAAqB,EAAE;;IAEvB,MAAM,UAAU,GAAQ,EAAE,CAAC;IAC3B,IAAI,cAAc,GAAkB,QAAQ,CAAC;IAC7C,MAAM,aAAa,GAAG,EAAE,GAAG,KAAK,EAAE,CAAC;IAEnC,IAAI,SAAS,GAAG,IAAI,CAAC;IAErB,OAAO,cAAc,EAAE,CAAC;QACvB,IAAI,YAA6B,CAAC;QAElC,IAAI,CAAC;YACJ,IAAI,SAAS,EAAE,CAAC;gBACf,YAAY,GAAG,CAAC,MAAM,kBAAkB,CAAC,IAAI,CAC5C,IAAI,EACJ,KAAK,EACL,cAAc,EACd,EAAE,EACF,aAAa,CACb,CAAoB,CAAC;gBACtB,SAAS,GAAG,KAAK,CAAC;YACnB,CAAC;iBAAM,CAAC;gBACP,YAAY,GAAG,CAAC,MAAM,kBAAkB,CAAC,IAAI,CAC5C,IAAI,EACJ,KAAK,EACL,EAAE,EACF,EAAE,EACF,EAAE,EACF,cAAc,CACd,CAAoB,CAAC;YACvB,CAAC;QACF,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YAChB,MAAM,IAAI,2BAAY,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,KAAmB,CAAC,CAAC;QAC7D,CAAC;QAED,IAAI,YAAY,CAAC,OAAO,IAAI,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,EAAE,CAAC;YACjE,UAAU,CAAC,IAAI,CAAC,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;QAC1C,CAAC;QAED,IAAI,MAAA,MAAA,YAAY,CAAC,KAAK,0CAAE,IAAI,0CAAE,IAAI,EAAE,CAAC;YACpC,cAAc,GAAG,YAAY,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC;YAC9C,SAAS;QACV,CAAC;QAED,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,YAAY,CAAC;QAE5C,IAAI,IAAI,KAAK,KAAK,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;YAClD,MAAM,QAAQ,GAAG,MAAM,GAAG,CAAC,CAAC;YAE5B,MAAM,MAAM,GAAgB,EAAE,GAAG,aAAa,EAAE,CAAC;YACjD,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC;YAEvB,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,IAAI,EAAE,CAAC;gBACjC,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;YACpB,CAAC;YAED,MAAM,WAAW,GAAG,cAAc,CAAC,MAAM,CAAC,CAAC;YAC3C,cAAc,GAAG,GAAG,QAAQ,IAAI,WAAW,EAAE,CAAC;YAC9C,SAAS;QACV,CAAC;QAED,cAAc,GAAG,IAAI,CAAC;IACvB,CAAC;IAED,OAAO,UAAU,CAAC;AACnB,CAAC;AAED,SAAS,cAAc,CAAC,MAAmB;IAC1C,MAAM,KAAK,GAAa,EAAE,CAAC;IAE3B,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;QACnD,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI;YAAE,SAAS;QAEpD,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;YAC1B,KAAK,MAAM,CAAC,IAAI,KAAK,EAAE,CAAC;gBACvB,KAAK,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,GAAG,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;YAC3E,CAAC;QACF,CAAC;aAAM,CAAC;YACP,KAAK,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,GAAG,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;QAC/E,CAAC;IACF,CAAC;IAED,OAAO,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AACxB,CAAC;AAKD,SAAS,UAAU,CAAC,UAAkB,EAAE,QAAgB,EAAE,GAAY;IACrE,IAAI,GAAG,EAAE,CAAC;QACT,IAAI,GAAG,CAAC,UAAU,CAAC,SAAS,CAAC,IAAI,GAAG,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC;YAC7D,OAAO,GAAG,CAAC;QACZ,CAAC;QAED,IAAI,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;YACzB,OAAO,UAAU,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC;QAC7C,CAAC;QAED,OAAO,GAAG,UAAU,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE,CAAC;IACvE,CAAC;IAED,OAAO,GAAG,UAAU,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,IAAI,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE,CAAC;AAC5E,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="118px" height="75px" viewBox="0 0 118 75" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: sketchtool 55.2 (78181) - https://sketchapp.com -->
|
|
4
|
+
<title>F3848DEB-4BA0-4A7F-A285-2870CA35C98C@1x</title>
|
|
5
|
+
<desc>Created with sketchtool.</desc>
|
|
6
|
+
<defs>
|
|
7
|
+
<filter x="-34.8%" y="-63.6%" width="169.8%" height="227.3%" filterUnits="objectBoundingBox" id="filter-1">
|
|
8
|
+
<feOffset dx="0" dy="8" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
|
9
|
+
<feGaussianBlur stdDeviation="5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/>
|
|
10
|
+
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"/>
|
|
11
|
+
<feMerge>
|
|
12
|
+
<feMergeNode in="shadowMatrixOuter1"/>
|
|
13
|
+
<feMergeNode in="SourceGraphic"/>
|
|
14
|
+
</feMerge>
|
|
15
|
+
</filter>
|
|
16
|
+
</defs>
|
|
17
|
+
<g id="Alle-Screens" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
18
|
+
<g id="StartseiteX" transform="translate(-659.000000, -6242.000000)">
|
|
19
|
+
<g id="BigChatTeaser" transform="translate(0.000000, 6008.000000)">
|
|
20
|
+
<g id="Illu" filter="url(#filter-1)" transform="translate(667.000000, 236.000000)">
|
|
21
|
+
<g id="Group-11">
|
|
22
|
+
<path d="M87.5869477,54.8138462 L82.5269477,43.0590769 L59.7180247,43.0590769 L54.6580247,54.8138462 L41.7355631,54.8138462 L65.2451016,0.399384615 L76.9998708,0.399384615 L100.509409,54.8138462 L87.5869477,54.8138462 Z M71.1614093,16.5913846 L64.3109477,32.3941538 L77.9340247,32.3941538 L71.1614093,16.5913846 Z" id="//ACTAPORT" fill="#FFFFFF" fill-rule="nonzero"/>
|
|
23
|
+
<path d="M24.7442329,0.66 L35.7891039,0.66 L10.9858156,54.8138462 L8.52651283e-14,54.8138462 L24.7442329,0.66 Z" id="Combined-Shape" fill="#067EEB" opacity="0.352841332"/>
|
|
24
|
+
<path d="M45.4648483,0.66 L56.5097193,0.66 L31.706431,54.8138462 L20.7206154,54.8138462 L45.4648483,0.66 Z" id="Combined-Shape" fill="#067EEB"/>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
27
|
+
</g>
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 29.7 17" style="enable-background:new 0 0 29.7 17;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{opacity:0.3528;fill-rule:evenodd;clip-rule:evenodd;fill:#067EEB;enable-background:new ;}
|
|
7
|
+
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#067EEB;}
|
|
8
|
+
</style>
|
|
9
|
+
<desc>Created with Sketch.</desc>
|
|
10
|
+
<g id="Symbole-_x26_-Assets">
|
|
11
|
+
<g id="Menue_Warum" transform="translate(-196.000000, -44.000000)">
|
|
12
|
+
<g id="Menue" transform="translate(196.000000, 31.000000)">
|
|
13
|
+
<g id="Group-11" transform="translate(0.000000, 13.000000)">
|
|
14
|
+
<path id="_x2F__x2F_ACTAPORT" d="M25.9,16.4L24.4,13h-6.7l-1.5,3.5h-3.8l6.9-16.1h3.5l6.9,16.1H25.9z M21,5.2l-2,4.7h4L21,5.2z"
|
|
15
|
+
/>
|
|
16
|
+
<path id="Combined-Shape" class="st0" d="M7.3,0.4h3.3l-7.3,16H0L7.3,0.4z"/>
|
|
17
|
+
<path id="Combined-Shape_1_" class="st1" d="M13.4,0.4h3.3l-7.3,16H6.1L13.4,0.4z"/>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="118px" height="75px" viewBox="0 0 118 75" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: sketchtool 55.2 (78181) - https://sketchapp.com -->
|
|
4
|
+
<title>F3848DEB-4BA0-4A7F-A285-2870CA35C98C@1x</title>
|
|
5
|
+
<desc>Created with sketchtool.</desc>
|
|
6
|
+
<defs>
|
|
7
|
+
<filter x="-34.8%" y="-63.6%" width="169.8%" height="227.3%" filterUnits="objectBoundingBox" id="filter-1">
|
|
8
|
+
<feOffset dx="0" dy="8" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
|
9
|
+
<feGaussianBlur stdDeviation="5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/>
|
|
10
|
+
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"/>
|
|
11
|
+
<feMerge>
|
|
12
|
+
<feMergeNode in="shadowMatrixOuter1"/>
|
|
13
|
+
<feMergeNode in="SourceGraphic"/>
|
|
14
|
+
</feMerge>
|
|
15
|
+
</filter>
|
|
16
|
+
</defs>
|
|
17
|
+
<g id="Alle-Screens" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
18
|
+
<g id="StartseiteX" transform="translate(-659.000000, -6242.000000)">
|
|
19
|
+
<g id="BigChatTeaser" transform="translate(0.000000, 6008.000000)">
|
|
20
|
+
<g id="Illu" filter="url(#filter-1)" transform="translate(667.000000, 236.000000)">
|
|
21
|
+
<g id="Group-11">
|
|
22
|
+
<path d="M87.5869477,54.8138462 L82.5269477,43.0590769 L59.7180247,43.0590769 L54.6580247,54.8138462 L41.7355631,54.8138462 L65.2451016,0.399384615 L76.9998708,0.399384615 L100.509409,54.8138462 L87.5869477,54.8138462 Z M71.1614093,16.5913846 L64.3109477,32.3941538 L77.9340247,32.3941538 L71.1614093,16.5913846 Z" id="//ACTAPORT" fill="#FFFFFF" fill-rule="nonzero"/>
|
|
23
|
+
<path d="M24.7442329,0.66 L35.7891039,0.66 L10.9858156,54.8138462 L8.52651283e-14,54.8138462 L24.7442329,0.66 Z" id="Combined-Shape" fill="#067EEB" opacity="0.352841332"/>
|
|
24
|
+
<path d="M45.4648483,0.66 L56.5097193,0.66 L31.706431,54.8138462 L20.7206154,54.8138462 L45.4648483,0.66 Z" id="Combined-Shape" fill="#067EEB"/>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
27
|
+
</g>
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.additionalInformationCategoryDescription = void 0;
|
|
4
|
+
exports.additionalInformationCategoryDescription = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ['additionalInformationCategory'],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Get',
|
|
18
|
+
value: 'get',
|
|
19
|
+
action: 'Get additional information category',
|
|
20
|
+
routing: {
|
|
21
|
+
request: {
|
|
22
|
+
method: 'GET',
|
|
23
|
+
url: '=/v1/zusatzinformation/kategorien/{{$parameter["id"]}}',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: 'Get Many',
|
|
29
|
+
value: 'getAll',
|
|
30
|
+
action: 'Get additional information categories',
|
|
31
|
+
routing: {
|
|
32
|
+
request: {
|
|
33
|
+
method: 'GET',
|
|
34
|
+
url: '=/v1/zusatzinformation/kategorien',
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
default: 'getAll',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
displayName: 'ID',
|
|
43
|
+
name: 'id',
|
|
44
|
+
required: true,
|
|
45
|
+
description: 'ID of additional information category',
|
|
46
|
+
default: '',
|
|
47
|
+
type: 'string',
|
|
48
|
+
displayOptions: {
|
|
49
|
+
show: {
|
|
50
|
+
resource: ['additionalInformationCategory'],
|
|
51
|
+
operation: ['get'],
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
];
|
|
56
|
+
//# sourceMappingURL=AdditionalInfoDescription.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AdditionalInfoDescription.js","sourceRoot":"","sources":["../../../../nodes/Actaport/descriptions/AdditionalInfoDescription.ts"],"names":[],"mappings":";;;AAEa,QAAA,wCAAwC,GAAsB;IAC1E;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,+BAA+B,CAAC;aAC3C;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,MAAM,EAAE,qCAAqC;gBAC7C,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,MAAM,EAAE,KAAK;wBACb,GAAG,EAAE,wDAAwD;qBAC7D;iBACD;aACD;YACD;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,QAAQ;gBACf,MAAM,EAAE,uCAAuC;gBAC/C,OAAO,EAAE;oBACR,OAAO,EAAE;wBACR,MAAM,EAAE,KAAK;wBACb,GAAG,EAAE,mCAAmC;qBACxC;iBACD;aACD;SACD;QACD,OAAO,EAAE,QAAQ;KACjB;IACD;QACC,WAAW,EAAE,IAAI;QACjB,IAAI,EAAE,IAAI;QACV,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,uCAAuC;QACpD,OAAO,EAAE,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,+BAA+B,CAAC;gBAC3C,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;KACD;CACD,CAAC"}
|