n8n-nodes-compozz 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +151 -0
- package/dist/credentials/CompozzApi.credentials.d.ts +12 -0
- package/dist/credentials/CompozzApi.credentials.js +53 -0
- package/dist/credentials/CompozzApi.credentials.js.map +1 -0
- package/dist/icons/compozz.dark.svg +97 -0
- package/dist/icons/compozz.svg +97 -0
- package/dist/n8n_data/custom/n8n-nodes-compozz/nodes/Compozz/compozz.dark.svg +97 -0
- package/dist/n8n_data/custom/n8n-nodes-compozz/nodes/Compozz/compozz.svg +97 -0
- package/dist/nodes/Compozz/Compozz.node.d.ts +5 -0
- package/dist/nodes/Compozz/Compozz.node.js +387 -0
- package/dist/nodes/Compozz/Compozz.node.js.map +1 -0
- package/dist/nodes/Compozz/Compozz.node.json +18 -0
- package/dist/nodes/Compozz/compozz.dark.svg +97 -0
- package/dist/nodes/Compozz/compozz.svg +97 -0
- package/dist/package.json +59 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +59 -0
|
@@ -0,0 +1,387 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Compozz = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
const REFRESH_TOKEN_INTERVAL = 5 * 60 * 1000;
|
|
6
|
+
const tokenCache = new Map();
|
|
7
|
+
class Compozz {
|
|
8
|
+
constructor() {
|
|
9
|
+
this.description = {
|
|
10
|
+
displayName: 'Compozz',
|
|
11
|
+
name: 'compozz',
|
|
12
|
+
icon: { light: 'file:compozz.svg', dark: 'file:compozz.dark.svg' },
|
|
13
|
+
group: ['transform'],
|
|
14
|
+
version: 1,
|
|
15
|
+
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
16
|
+
description: 'Interact with Compozz API',
|
|
17
|
+
usableAsTool: undefined,
|
|
18
|
+
defaults: {
|
|
19
|
+
name: 'Compozz',
|
|
20
|
+
},
|
|
21
|
+
inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
22
|
+
outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
23
|
+
credentials: [
|
|
24
|
+
{
|
|
25
|
+
name: 'compozzApi',
|
|
26
|
+
required: true,
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
properties: [
|
|
30
|
+
{
|
|
31
|
+
displayName: 'Resource',
|
|
32
|
+
name: 'resource',
|
|
33
|
+
type: 'options',
|
|
34
|
+
noDataExpression: true,
|
|
35
|
+
options: [
|
|
36
|
+
{
|
|
37
|
+
name: 'Record',
|
|
38
|
+
value: 'record',
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
default: 'record',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
displayName: 'Operation',
|
|
45
|
+
name: 'operation',
|
|
46
|
+
type: 'options',
|
|
47
|
+
noDataExpression: true,
|
|
48
|
+
displayOptions: {
|
|
49
|
+
show: {
|
|
50
|
+
resource: ['record'],
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
options: [
|
|
54
|
+
{
|
|
55
|
+
name: 'Create',
|
|
56
|
+
value: 'create',
|
|
57
|
+
description: 'Create a new record',
|
|
58
|
+
action: 'Create a record',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: 'Get Many',
|
|
62
|
+
value: 'getMany',
|
|
63
|
+
description: 'Retrieve multiple records',
|
|
64
|
+
action: 'Get many records',
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: 'Update',
|
|
68
|
+
value: 'update',
|
|
69
|
+
description: 'Update an existing record',
|
|
70
|
+
action: 'Update a record',
|
|
71
|
+
},
|
|
72
|
+
],
|
|
73
|
+
default: 'create',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
displayName: 'Workspace',
|
|
77
|
+
name: 'workspace',
|
|
78
|
+
type: 'string',
|
|
79
|
+
required: true,
|
|
80
|
+
default: '',
|
|
81
|
+
description: 'The name of the workspace',
|
|
82
|
+
displayOptions: {
|
|
83
|
+
show: {
|
|
84
|
+
resource: ['record'],
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
displayName: 'Object',
|
|
90
|
+
name: 'object',
|
|
91
|
+
type: 'string',
|
|
92
|
+
required: true,
|
|
93
|
+
default: '',
|
|
94
|
+
description: 'The name of the object',
|
|
95
|
+
displayOptions: {
|
|
96
|
+
show: {
|
|
97
|
+
resource: ['record'],
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
displayName: 'Record Key',
|
|
103
|
+
name: 'recordKey',
|
|
104
|
+
type: 'string',
|
|
105
|
+
required: true,
|
|
106
|
+
default: '',
|
|
107
|
+
description: 'The key of the record to update',
|
|
108
|
+
displayOptions: {
|
|
109
|
+
show: {
|
|
110
|
+
resource: ['record'],
|
|
111
|
+
operation: ['update'],
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
displayName: 'Fields',
|
|
117
|
+
name: 'fields',
|
|
118
|
+
type: 'fixedCollection',
|
|
119
|
+
typeOptions: {
|
|
120
|
+
multipleValues: true,
|
|
121
|
+
},
|
|
122
|
+
default: {},
|
|
123
|
+
placeholder: 'Add Field',
|
|
124
|
+
description: 'Fields to set on the record',
|
|
125
|
+
displayOptions: {
|
|
126
|
+
show: {
|
|
127
|
+
resource: ['record'],
|
|
128
|
+
operation: ['create', 'update'],
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
options: [
|
|
132
|
+
{
|
|
133
|
+
name: 'fieldValues',
|
|
134
|
+
displayName: 'Field',
|
|
135
|
+
values: [
|
|
136
|
+
{
|
|
137
|
+
displayName: 'Field Name',
|
|
138
|
+
name: 'name',
|
|
139
|
+
type: 'string',
|
|
140
|
+
default: '',
|
|
141
|
+
description: 'Name of the field',
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
displayName: 'Field Value',
|
|
145
|
+
name: 'value',
|
|
146
|
+
type: 'string',
|
|
147
|
+
default: '',
|
|
148
|
+
description: 'Value of the field',
|
|
149
|
+
},
|
|
150
|
+
],
|
|
151
|
+
},
|
|
152
|
+
],
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
displayName: 'Fields to Retrieve',
|
|
156
|
+
name: 'fieldsToRetrieve',
|
|
157
|
+
type: 'string',
|
|
158
|
+
default: '',
|
|
159
|
+
placeholder: 'field1, field2, field3',
|
|
160
|
+
description: 'Comma-separated list of field names to retrieve (leave empty for all)',
|
|
161
|
+
displayOptions: {
|
|
162
|
+
show: {
|
|
163
|
+
resource: ['record'],
|
|
164
|
+
operation: ['getMany'],
|
|
165
|
+
},
|
|
166
|
+
},
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
displayName: 'Filters',
|
|
170
|
+
name: 'filters',
|
|
171
|
+
type: 'fixedCollection',
|
|
172
|
+
typeOptions: {
|
|
173
|
+
multipleValues: true,
|
|
174
|
+
},
|
|
175
|
+
default: {},
|
|
176
|
+
placeholder: 'Add Filter',
|
|
177
|
+
description: 'Filters to apply when retrieving records',
|
|
178
|
+
displayOptions: {
|
|
179
|
+
show: {
|
|
180
|
+
resource: ['record'],
|
|
181
|
+
operation: ['getMany'],
|
|
182
|
+
},
|
|
183
|
+
},
|
|
184
|
+
options: [
|
|
185
|
+
{
|
|
186
|
+
name: 'filterValues',
|
|
187
|
+
displayName: 'Filter',
|
|
188
|
+
values: [
|
|
189
|
+
{
|
|
190
|
+
displayName: 'Field Name',
|
|
191
|
+
name: 'fieldName',
|
|
192
|
+
type: 'string',
|
|
193
|
+
default: '',
|
|
194
|
+
description: 'Name of the field to filter on',
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
displayName: 'Field Value',
|
|
198
|
+
name: 'fieldValue',
|
|
199
|
+
type: 'string',
|
|
200
|
+
default: '',
|
|
201
|
+
description: 'Value to filter by',
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
displayName: 'Value as Boolean',
|
|
205
|
+
name: 'valueAsBool',
|
|
206
|
+
type: 'boolean',
|
|
207
|
+
default: false,
|
|
208
|
+
description: 'Whether to treat the value as a boolean',
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
},
|
|
212
|
+
],
|
|
213
|
+
},
|
|
214
|
+
],
|
|
215
|
+
};
|
|
216
|
+
}
|
|
217
|
+
async execute() {
|
|
218
|
+
const items = this.getInputData();
|
|
219
|
+
const returnData = [];
|
|
220
|
+
const credentials = await this.getCredentials('compozzApi');
|
|
221
|
+
const baseUrl = credentials.baseUrl.replace(/\/$/, '');
|
|
222
|
+
const accessToken = await getAccessToken.call(this, baseUrl, credentials);
|
|
223
|
+
const resource = this.getNodeParameter('resource', 0);
|
|
224
|
+
const operation = this.getNodeParameter('operation', 0);
|
|
225
|
+
for (let i = 0; i < items.length; i++) {
|
|
226
|
+
try {
|
|
227
|
+
let responseData;
|
|
228
|
+
if (resource === 'record') {
|
|
229
|
+
const workspace = this.getNodeParameter('workspace', i);
|
|
230
|
+
const object = this.getNodeParameter('object', i);
|
|
231
|
+
if (operation === 'create') {
|
|
232
|
+
responseData = await createRecord.call(this, baseUrl, accessToken, workspace, object, i);
|
|
233
|
+
}
|
|
234
|
+
else if (operation === 'getMany') {
|
|
235
|
+
responseData = await getRecords.call(this, baseUrl, accessToken, workspace, object, i);
|
|
236
|
+
}
|
|
237
|
+
else if (operation === 'update') {
|
|
238
|
+
const recordKey = this.getNodeParameter('recordKey', i);
|
|
239
|
+
responseData = await updateRecord.call(this, baseUrl, accessToken, workspace, object, recordKey, i);
|
|
240
|
+
}
|
|
241
|
+
else {
|
|
242
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Unknown operation: ${operation}`, {
|
|
243
|
+
itemIndex: i,
|
|
244
|
+
});
|
|
245
|
+
}
|
|
246
|
+
const executionData = this.helpers.constructExecutionMetaData(this.helpers.returnJsonArray(responseData), { itemData: { item: i } });
|
|
247
|
+
returnData.push(...executionData);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
catch (error) {
|
|
251
|
+
if (this.continueOnFail()) {
|
|
252
|
+
returnData.push({ json: { error: error.message }, pairedItem: { item: i } });
|
|
253
|
+
continue;
|
|
254
|
+
}
|
|
255
|
+
throw error;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
return [returnData];
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
exports.Compozz = Compozz;
|
|
262
|
+
async function getAccessToken(baseUrl, credentials) {
|
|
263
|
+
const cacheKey = `${credentials.username}@${baseUrl}`;
|
|
264
|
+
const cached = tokenCache.get(cacheKey);
|
|
265
|
+
if (cached && cached.expiresAt > Date.now() + 60000) {
|
|
266
|
+
return cached.token;
|
|
267
|
+
}
|
|
268
|
+
const options = {
|
|
269
|
+
method: 'POST',
|
|
270
|
+
url: `${baseUrl}/auth/login`,
|
|
271
|
+
headers: {
|
|
272
|
+
'Content-Type': 'application/json',
|
|
273
|
+
Accept: 'application/json',
|
|
274
|
+
},
|
|
275
|
+
body: {
|
|
276
|
+
username: credentials.username,
|
|
277
|
+
password: credentials.password,
|
|
278
|
+
},
|
|
279
|
+
json: true,
|
|
280
|
+
};
|
|
281
|
+
const response = await this.helpers.httpRequest(options);
|
|
282
|
+
if (!response.access_token) {
|
|
283
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Failed to obtain access token from Compozz API');
|
|
284
|
+
}
|
|
285
|
+
tokenCache.set(cacheKey, {
|
|
286
|
+
token: response.access_token,
|
|
287
|
+
expiresAt: Date.now() + REFRESH_TOKEN_INTERVAL,
|
|
288
|
+
});
|
|
289
|
+
return response.access_token;
|
|
290
|
+
}
|
|
291
|
+
async function createRecord(baseUrl, accessToken, workspace, object, itemIndex) {
|
|
292
|
+
const fieldsInput = this.getNodeParameter('fields', itemIndex);
|
|
293
|
+
const options = {
|
|
294
|
+
method: 'POST',
|
|
295
|
+
url: `${baseUrl}/data/records`,
|
|
296
|
+
headers: {
|
|
297
|
+
Authorization: `Bearer ${accessToken}`,
|
|
298
|
+
'Content-Type': 'application/json',
|
|
299
|
+
},
|
|
300
|
+
body: {
|
|
301
|
+
workspace,
|
|
302
|
+
object,
|
|
303
|
+
fieldByName: true,
|
|
304
|
+
fields: fieldsInput.fieldValues,
|
|
305
|
+
linkByValue: true,
|
|
306
|
+
},
|
|
307
|
+
json: true,
|
|
308
|
+
returnFullResponse: true,
|
|
309
|
+
};
|
|
310
|
+
const response = await this.helpers.httpRequest(options);
|
|
311
|
+
if (response.statusCode !== 201) {
|
|
312
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), response.body, {
|
|
313
|
+
itemIndex: itemIndex,
|
|
314
|
+
});
|
|
315
|
+
}
|
|
316
|
+
return JSON.parse(JSON.stringify(response.body));
|
|
317
|
+
}
|
|
318
|
+
async function getRecords(baseUrl, accessToken, workspace, object, itemIndex) {
|
|
319
|
+
const fieldsToRetrieve = this.getNodeParameter('fieldsToRetrieve', itemIndex);
|
|
320
|
+
const filtersInput = this.getNodeParameter('filters', itemIndex);
|
|
321
|
+
const fields = fieldsToRetrieve
|
|
322
|
+
? fieldsToRetrieve.split(',').map((f) => f.trim()).filter((f) => f)
|
|
323
|
+
: [];
|
|
324
|
+
const filters = {};
|
|
325
|
+
for (const filter of filtersInput.filterValues || []) {
|
|
326
|
+
let fieldValue = filter.fieldValue;
|
|
327
|
+
if (filter.valueAsBool) {
|
|
328
|
+
fieldValue = filter.fieldValue.toLowerCase() === 'true';
|
|
329
|
+
}
|
|
330
|
+
filters[filter.fieldName] = fieldValue;
|
|
331
|
+
}
|
|
332
|
+
const body = {
|
|
333
|
+
workspace,
|
|
334
|
+
object,
|
|
335
|
+
fieldByName: true,
|
|
336
|
+
filters: filters,
|
|
337
|
+
};
|
|
338
|
+
if (fields.length > 0) {
|
|
339
|
+
body.fields = fields;
|
|
340
|
+
}
|
|
341
|
+
const options = {
|
|
342
|
+
method: 'POST',
|
|
343
|
+
url: `${baseUrl}/data/records/paths?mode=simple`,
|
|
344
|
+
headers: {
|
|
345
|
+
Authorization: `Bearer ${accessToken}`,
|
|
346
|
+
'Content-Type': 'application/json',
|
|
347
|
+
},
|
|
348
|
+
body,
|
|
349
|
+
json: true,
|
|
350
|
+
returnFullResponse: true,
|
|
351
|
+
};
|
|
352
|
+
const response = await this.helpers.httpRequest(options);
|
|
353
|
+
if (response.statusCode !== 200) {
|
|
354
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), response.response, {
|
|
355
|
+
itemIndex: itemIndex,
|
|
356
|
+
});
|
|
357
|
+
}
|
|
358
|
+
return JSON.parse(JSON.stringify(response.body));
|
|
359
|
+
}
|
|
360
|
+
async function updateRecord(baseUrl, accessToken, workspace, object, recordKey, itemIndex) {
|
|
361
|
+
const fieldsInput = this.getNodeParameter('fields', itemIndex);
|
|
362
|
+
const options = {
|
|
363
|
+
method: 'PATCH',
|
|
364
|
+
url: `${baseUrl}/data/records`,
|
|
365
|
+
headers: {
|
|
366
|
+
Authorization: `Bearer ${accessToken}`,
|
|
367
|
+
'Content-Type': 'application/json',
|
|
368
|
+
},
|
|
369
|
+
body: {
|
|
370
|
+
workspace,
|
|
371
|
+
object,
|
|
372
|
+
recordKey,
|
|
373
|
+
fieldByName: true,
|
|
374
|
+
fields: fieldsInput.fieldValues,
|
|
375
|
+
},
|
|
376
|
+
json: true,
|
|
377
|
+
returnFullResponse: true,
|
|
378
|
+
};
|
|
379
|
+
const response = await this.helpers.httpRequest(options);
|
|
380
|
+
if (response.statusCode !== 204) {
|
|
381
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), response.body, {
|
|
382
|
+
itemIndex: itemIndex,
|
|
383
|
+
});
|
|
384
|
+
}
|
|
385
|
+
return {};
|
|
386
|
+
}
|
|
387
|
+
//# sourceMappingURL=Compozz.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Compozz.node.js","sourceRoot":"","sources":["../../../nodes/Compozz/Compozz.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-compozz",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": ["Development", "Developer Tools"],
|
|
6
|
+
"resources": {
|
|
7
|
+
"credentialDocumentation": [
|
|
8
|
+
{
|
|
9
|
+
"url": "https://github.com/org/repo?tab=readme-ov-file#credentials"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"primaryDocumentation": [
|
|
13
|
+
{
|
|
14
|
+
"url": "https://github.com/org/repo?tab=readme-ov-file"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
id="Calque_2"
|
|
4
|
+
data-name="Calque 2"
|
|
5
|
+
viewBox="0 0 114 114"
|
|
6
|
+
version="1.1"
|
|
7
|
+
sodipodi:docname="Compozz_boussole_violet_centré.svg"
|
|
8
|
+
width="114"
|
|
9
|
+
height="114"
|
|
10
|
+
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<sodipodi:namedview
|
|
16
|
+
id="namedview34"
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#000000"
|
|
19
|
+
borderopacity="0.25"
|
|
20
|
+
inkscape:showpageshadow="2"
|
|
21
|
+
inkscape:pageopacity="0.0"
|
|
22
|
+
inkscape:pagecheckerboard="0"
|
|
23
|
+
inkscape:deskcolor="#d1d1d1"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="5.4224638"
|
|
26
|
+
inkscape:cx="24.896432"
|
|
27
|
+
inkscape:cy="62.056662"
|
|
28
|
+
inkscape:window-width="1920"
|
|
29
|
+
inkscape:window-height="1011"
|
|
30
|
+
inkscape:window-x="1920"
|
|
31
|
+
inkscape:window-y="32"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="Calque_2" />
|
|
34
|
+
<defs
|
|
35
|
+
id="defs4">
|
|
36
|
+
<style
|
|
37
|
+
id="style2">
|
|
38
|
+
.cls-1 {
|
|
39
|
+
fill: #FFFFFF;
|
|
40
|
+
}
|
|
41
|
+
</style>
|
|
42
|
+
</defs>
|
|
43
|
+
<g
|
|
44
|
+
id="Calque_1-2"
|
|
45
|
+
data-name="Calque 1"
|
|
46
|
+
transform="translate(0.84786445,0.39328387)">
|
|
47
|
+
<g
|
|
48
|
+
id="g30">
|
|
49
|
+
<g
|
|
50
|
+
id="g18">
|
|
51
|
+
<g
|
|
52
|
+
id="g14">
|
|
53
|
+
<path
|
|
54
|
+
class="cls-1"
|
|
55
|
+
d="m 36.32,58.67 -3.5,0.7 c -0.51,0.1 -0.95,0.39 -1.23,0.82 -0.29,0.43 -0.39,0.95 -0.29,1.46 0.18,0.88 0.93,1.52 1.82,1.56 h 0.09 c 0.12,0 0.25,-0.01 0.37,-0.04 l 3.49,-0.7 c 1.05,-0.21 1.73,-1.23 1.52,-2.29 -0.21,-1.04 -1.23,-1.76 -2.28,-1.52 z"
|
|
56
|
+
id="path6" />
|
|
57
|
+
<path
|
|
58
|
+
class="cls-1"
|
|
59
|
+
d="m 60.54,74.84 c -1.05,0.21 -1.73,1.23 -1.52,2.28 l 0.69,3.49 c 0.17,0.88 0.93,1.52 1.83,1.56 h 0.09 c 0.12,0 0.25,-0.01 0.37,-0.04 1.05,-0.21 1.73,-1.23 1.52,-2.28 l -0.7,-3.49 C 62.61,75.3 61.61,74.65 60.53,74.84 Z"
|
|
60
|
+
id="path8" />
|
|
61
|
+
<path
|
|
62
|
+
class="cls-1"
|
|
63
|
+
d="m 80.2,49.91 -3.49,0.7 c -0.51,0.1 -0.95,0.39 -1.23,0.82 -0.29,0.43 -0.39,0.95 -0.29,1.46 0.17,0.88 0.92,1.52 1.82,1.56 h 0.09 c 0.12,0 0.25,-0.01 0.37,-0.04 l 3.49,-0.7 c 1.05,-0.21 1.73,-1.23 1.52,-2.28 -0.21,-1.05 -1.23,-1.74 -2.29,-1.52 z"
|
|
64
|
+
id="path10" />
|
|
65
|
+
<path
|
|
66
|
+
class="cls-1"
|
|
67
|
+
d="m 54.06,32.47 c -0.21,-1.05 -1.24,-1.72 -2.28,-1.52 -0.51,0.1 -0.95,0.39 -1.23,0.83 -0.29,0.43 -0.39,0.95 -0.29,1.46 l 0.7,3.5 c 0.17,0.88 0.93,1.52 1.82,1.56 h 0.09 c 0.12,0 0.25,-0.01 0.37,-0.04 0.51,-0.1 0.95,-0.4 1.24,-0.83 0.28,-0.43 0.39,-0.95 0.28,-1.46 z"
|
|
68
|
+
id="path12" />
|
|
69
|
+
</g>
|
|
70
|
+
<path
|
|
71
|
+
class="cls-1"
|
|
72
|
+
d="M 90.91,88.66 C 88.74,86.75 87.09,84.43 85.98,81.7 85.66,80.91 85.42,80.07 85.21,79.2 73.71,93.8 53.01,97.52 37.11,87.46 L 36.36,86.99 35.64,86.48 C 19.69,75.3 15.33,53.57 25.74,37.1 l 0.47,-0.75 0.51,-0.72 C 35.77,22.71 51.68,17.4 66.16,21.35 68.66,17.94 71.6,14.84 74.94,12.12 68.11,9.31 60.68,8.07 53.28,8.58 L 48.43,1.37 C 46.9,-0.9 43.39,-0.2 42.86,2.49 l -1.69,8.52 c -9.15,3.1 -17.19,8.96 -23,16.68 l -0.15,-0.1 -1.48,2.32 -1.57,2.26 0.15,0.1 C 10.23,40.61 7.93,50.28 8.59,59.92 l -7.24,4.87 c -2.26,1.52 -1.56,5.01 1.11,5.55 l 8.55,1.7 c 3.1,9.15 8.96,17.19 16.68,23 l -0.1,0.15 2.32,1.48 2.26,1.57 0.1,-0.15 c 8.34,4.89 18.01,7.19 27.66,6.53 l 4.86,7.23 c 1.52,2.26 5.02,1.56 5.56,-1.11 l 1.7,-8.54 c 7.55,-2.56 14.34,-7 19.76,-12.8 -0.3,-0.24 -0.61,-0.46 -0.9,-0.71 z"
|
|
73
|
+
id="path16" />
|
|
74
|
+
</g>
|
|
75
|
+
<g
|
|
76
|
+
id="g28">
|
|
77
|
+
<circle
|
|
78
|
+
class="cls-1"
|
|
79
|
+
cx="56.360001"
|
|
80
|
+
cy="56.900002"
|
|
81
|
+
r="4.5999999"
|
|
82
|
+
id="circle20" />
|
|
83
|
+
<g
|
|
84
|
+
id="g26">
|
|
85
|
+
<path
|
|
86
|
+
class="cls-1"
|
|
87
|
+
d="m 42.6,76.83 v 0 C 42.08,76.47 41.92,75.76 42.24,75.21 L 52.43,56.65 c 0.36,-0.61 1.16,-0.79 1.75,-0.39 l 3.55,2.45 c 0.58,0.4 0.7,1.22 0.25,1.77 L 44.24,76.59 c -0.4,0.49 -1.12,0.6 -1.64,0.24 z"
|
|
88
|
+
id="path22" />
|
|
89
|
+
<path
|
|
90
|
+
class="cls-1"
|
|
91
|
+
d="m 70.12,36.97 v 0 C 69.6,36.61 68.88,36.71 68.48,37.21 L 54.74,53.32 c -0.45,0.55 -0.33,1.37 0.25,1.77 l 3.55,2.45 c 0.58,0.4 1.39,0.22 1.75,-0.39 L 70.48,38.59 c 0.32,-0.55 0.16,-1.25 -0.36,-1.62 z"
|
|
92
|
+
id="path24" />
|
|
93
|
+
</g>
|
|
94
|
+
</g>
|
|
95
|
+
</g>
|
|
96
|
+
</g>
|
|
97
|
+
</svg>
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
id="Calque_2"
|
|
4
|
+
data-name="Calque 2"
|
|
5
|
+
viewBox="0 0 114 114"
|
|
6
|
+
version="1.1"
|
|
7
|
+
sodipodi:docname="Compozz_boussole_violet_centré.svg"
|
|
8
|
+
width="114"
|
|
9
|
+
height="114"
|
|
10
|
+
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<sodipodi:namedview
|
|
16
|
+
id="namedview34"
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#000000"
|
|
19
|
+
borderopacity="0.25"
|
|
20
|
+
inkscape:showpageshadow="2"
|
|
21
|
+
inkscape:pageopacity="0.0"
|
|
22
|
+
inkscape:pagecheckerboard="0"
|
|
23
|
+
inkscape:deskcolor="#d1d1d1"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="5.4224638"
|
|
26
|
+
inkscape:cx="24.896432"
|
|
27
|
+
inkscape:cy="62.056662"
|
|
28
|
+
inkscape:window-width="1920"
|
|
29
|
+
inkscape:window-height="1011"
|
|
30
|
+
inkscape:window-x="1920"
|
|
31
|
+
inkscape:window-y="32"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="Calque_2" />
|
|
34
|
+
<defs
|
|
35
|
+
id="defs4">
|
|
36
|
+
<style
|
|
37
|
+
id="style2">
|
|
38
|
+
.cls-1 {
|
|
39
|
+
fill: #654bf6;
|
|
40
|
+
}
|
|
41
|
+
</style>
|
|
42
|
+
</defs>
|
|
43
|
+
<g
|
|
44
|
+
id="Calque_1-2"
|
|
45
|
+
data-name="Calque 1"
|
|
46
|
+
transform="translate(0.84786445,0.39328387)">
|
|
47
|
+
<g
|
|
48
|
+
id="g30">
|
|
49
|
+
<g
|
|
50
|
+
id="g18">
|
|
51
|
+
<g
|
|
52
|
+
id="g14">
|
|
53
|
+
<path
|
|
54
|
+
class="cls-1"
|
|
55
|
+
d="m 36.32,58.67 -3.5,0.7 c -0.51,0.1 -0.95,0.39 -1.23,0.82 -0.29,0.43 -0.39,0.95 -0.29,1.46 0.18,0.88 0.93,1.52 1.82,1.56 h 0.09 c 0.12,0 0.25,-0.01 0.37,-0.04 l 3.49,-0.7 c 1.05,-0.21 1.73,-1.23 1.52,-2.29 -0.21,-1.04 -1.23,-1.76 -2.28,-1.52 z"
|
|
56
|
+
id="path6" />
|
|
57
|
+
<path
|
|
58
|
+
class="cls-1"
|
|
59
|
+
d="m 60.54,74.84 c -1.05,0.21 -1.73,1.23 -1.52,2.28 l 0.69,3.49 c 0.17,0.88 0.93,1.52 1.83,1.56 h 0.09 c 0.12,0 0.25,-0.01 0.37,-0.04 1.05,-0.21 1.73,-1.23 1.52,-2.28 l -0.7,-3.49 C 62.61,75.3 61.61,74.65 60.53,74.84 Z"
|
|
60
|
+
id="path8" />
|
|
61
|
+
<path
|
|
62
|
+
class="cls-1"
|
|
63
|
+
d="m 80.2,49.91 -3.49,0.7 c -0.51,0.1 -0.95,0.39 -1.23,0.82 -0.29,0.43 -0.39,0.95 -0.29,1.46 0.17,0.88 0.92,1.52 1.82,1.56 h 0.09 c 0.12,0 0.25,-0.01 0.37,-0.04 l 3.49,-0.7 c 1.05,-0.21 1.73,-1.23 1.52,-2.28 -0.21,-1.05 -1.23,-1.74 -2.29,-1.52 z"
|
|
64
|
+
id="path10" />
|
|
65
|
+
<path
|
|
66
|
+
class="cls-1"
|
|
67
|
+
d="m 54.06,32.47 c -0.21,-1.05 -1.24,-1.72 -2.28,-1.52 -0.51,0.1 -0.95,0.39 -1.23,0.83 -0.29,0.43 -0.39,0.95 -0.29,1.46 l 0.7,3.5 c 0.17,0.88 0.93,1.52 1.82,1.56 h 0.09 c 0.12,0 0.25,-0.01 0.37,-0.04 0.51,-0.1 0.95,-0.4 1.24,-0.83 0.28,-0.43 0.39,-0.95 0.28,-1.46 z"
|
|
68
|
+
id="path12" />
|
|
69
|
+
</g>
|
|
70
|
+
<path
|
|
71
|
+
class="cls-1"
|
|
72
|
+
d="M 90.91,88.66 C 88.74,86.75 87.09,84.43 85.98,81.7 85.66,80.91 85.42,80.07 85.21,79.2 73.71,93.8 53.01,97.52 37.11,87.46 L 36.36,86.99 35.64,86.48 C 19.69,75.3 15.33,53.57 25.74,37.1 l 0.47,-0.75 0.51,-0.72 C 35.77,22.71 51.68,17.4 66.16,21.35 68.66,17.94 71.6,14.84 74.94,12.12 68.11,9.31 60.68,8.07 53.28,8.58 L 48.43,1.37 C 46.9,-0.9 43.39,-0.2 42.86,2.49 l -1.69,8.52 c -9.15,3.1 -17.19,8.96 -23,16.68 l -0.15,-0.1 -1.48,2.32 -1.57,2.26 0.15,0.1 C 10.23,40.61 7.93,50.28 8.59,59.92 l -7.24,4.87 c -2.26,1.52 -1.56,5.01 1.11,5.55 l 8.55,1.7 c 3.1,9.15 8.96,17.19 16.68,23 l -0.1,0.15 2.32,1.48 2.26,1.57 0.1,-0.15 c 8.34,4.89 18.01,7.19 27.66,6.53 l 4.86,7.23 c 1.52,2.26 5.02,1.56 5.56,-1.11 l 1.7,-8.54 c 7.55,-2.56 14.34,-7 19.76,-12.8 -0.3,-0.24 -0.61,-0.46 -0.9,-0.71 z"
|
|
73
|
+
id="path16" />
|
|
74
|
+
</g>
|
|
75
|
+
<g
|
|
76
|
+
id="g28">
|
|
77
|
+
<circle
|
|
78
|
+
class="cls-1"
|
|
79
|
+
cx="56.360001"
|
|
80
|
+
cy="56.900002"
|
|
81
|
+
r="4.5999999"
|
|
82
|
+
id="circle20" />
|
|
83
|
+
<g
|
|
84
|
+
id="g26">
|
|
85
|
+
<path
|
|
86
|
+
class="cls-1"
|
|
87
|
+
d="m 42.6,76.83 v 0 C 42.08,76.47 41.92,75.76 42.24,75.21 L 52.43,56.65 c 0.36,-0.61 1.16,-0.79 1.75,-0.39 l 3.55,2.45 c 0.58,0.4 0.7,1.22 0.25,1.77 L 44.24,76.59 c -0.4,0.49 -1.12,0.6 -1.64,0.24 z"
|
|
88
|
+
id="path22" />
|
|
89
|
+
<path
|
|
90
|
+
class="cls-1"
|
|
91
|
+
d="m 70.12,36.97 v 0 C 69.6,36.61 68.88,36.71 68.48,37.21 L 54.74,53.32 c -0.45,0.55 -0.33,1.37 0.25,1.77 l 3.55,2.45 c 0.58,0.4 1.39,0.22 1.75,-0.39 L 70.48,38.59 c 0.32,-0.55 0.16,-1.25 -0.36,-1.62 z"
|
|
92
|
+
id="path24" />
|
|
93
|
+
</g>
|
|
94
|
+
</g>
|
|
95
|
+
</g>
|
|
96
|
+
</g>
|
|
97
|
+
</svg>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-compozz",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "n8n community node for Compozz",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://compozz.com",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"n8n-community-node-package",
|
|
9
|
+
"compozz",
|
|
10
|
+
"n8n",
|
|
11
|
+
"workflow",
|
|
12
|
+
"automation",
|
|
13
|
+
"api",
|
|
14
|
+
"integration"
|
|
15
|
+
],
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Compozz",
|
|
18
|
+
"email": "contact@compozz.com"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/code-compozz/n8n-nodes-compozz.git"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "n8n-node build",
|
|
26
|
+
"build:watch": "tsc --watch",
|
|
27
|
+
"dev": "n8n-node dev",
|
|
28
|
+
"lint": "n8n-node lint",
|
|
29
|
+
"lint:fix": "n8n-node lint --fix",
|
|
30
|
+
"release": "n8n-node release",
|
|
31
|
+
"prepublishOnly": "n8n-node prerelease"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist"
|
|
35
|
+
],
|
|
36
|
+
"n8n": {
|
|
37
|
+
"n8nNodesApiVersion": 1,
|
|
38
|
+
"strict": true,
|
|
39
|
+
"credentials": [
|
|
40
|
+
"dist/credentials/CompozzApi.credentials.js"
|
|
41
|
+
],
|
|
42
|
+
"nodes": [
|
|
43
|
+
"dist/nodes/Compozz/Compozz.node.js"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@n8n/node-cli": "*",
|
|
48
|
+
"eslint": "9.32.0",
|
|
49
|
+
"prettier": "3.6.2",
|
|
50
|
+
"release-it": "^19.0.4",
|
|
51
|
+
"typescript": "5.9.2"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"n8n-workflow": "*"
|
|
55
|
+
},
|
|
56
|
+
"overrides": {
|
|
57
|
+
"change-case": "4.1.2"
|
|
58
|
+
}
|
|
59
|
+
}
|