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 ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Compozz
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
package/README.md ADDED
@@ -0,0 +1,151 @@
1
+ # n8n-nodes-compozz
2
+
3
+ This is an n8n community node that allows you to interact with the [Compozz](https://app.compozz.com) API in your n8n workflows.
4
+
5
+ Compozz is a data management platform that allows you to create, retrieve, and update records across workspaces and objects.
6
+
7
+ [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
8
+
9
+ ## Installation
10
+
11
+ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
12
+
13
+ ### npm
14
+
15
+ ```bash
16
+ npm install n8n-nodes-compozz
17
+ ```
18
+
19
+ ### n8n GUI
20
+
21
+ 1. Go to **Settings > Community Nodes**
22
+ 2. Select **Install**
23
+ 3. Enter `n8n-nodes-compozz` in the **Enter npm package name** field
24
+ 4. Accept the risks and click **Install**
25
+
26
+ ## Credentials
27
+
28
+ ### Compozz API
29
+
30
+ To use this node, you need to configure the Compozz API credentials:
31
+
32
+ | Field | Type | Required | Default | Description |
33
+ |-------|------|----------|---------|-------------|
34
+ | Base URL | String | No | `https://app.compozz.com` | The base URL of the Compozz API |
35
+ | Username | String | Yes | - | Your Compozz username |
36
+ | Password | String (password) | Yes | - | Your Compozz password |
37
+
38
+ The node automatically handles authentication by obtaining and caching access tokens from the `/auth/login` endpoint.
39
+
40
+ ## Node Reference
41
+
42
+ ### Compozz
43
+
44
+ The Compozz node allows you to manage records in your Compozz workspaces.
45
+
46
+ #### Resources
47
+
48
+ | Resource | Description |
49
+ |----------|-------------|
50
+ | Record | Manage records within Compozz objects |
51
+
52
+ #### Operations
53
+
54
+ ##### Record
55
+
56
+ | Operation | Description | API Endpoint |
57
+ |-----------|-------------|--------------|
58
+ | Create | Create a new record | `POST /data/records` |
59
+ | Get Many | Retrieve multiple records | `POST /data/records/paths?mode=simple` |
60
+ | Update | Update an existing record | `PATCH /data/records` |
61
+
62
+ ### Parameters
63
+
64
+ #### Common Parameters (all operations)
65
+
66
+ | Parameter | Type | Required | Description |
67
+ |-----------|------|----------|-------------|
68
+ | Workspace | String | Yes | The name of the workspace |
69
+ | Object | String | Yes | The name of the object |
70
+
71
+ #### Create Record
72
+
73
+ | Parameter | Type | Required | Description |
74
+ |-----------|------|----------|-------------|
75
+ | Fields | Collection | No | Field name/value pairs to set on the record |
76
+
77
+ **Fields Collection:**
78
+
79
+ | Field | Type | Description |
80
+ |-------|------|-------------|
81
+ | Field Name | String | Name of the field |
82
+ | Field Value | String | Value of the field |
83
+
84
+ #### Get Many Records
85
+
86
+ | Parameter | Type | Required | Description |
87
+ |-----------|------|----------|-------------|
88
+ | Fields to Retrieve | String | No | Comma-separated list of field names to retrieve (leave empty for all) |
89
+ | Filters | Collection | No | Filters to apply when retrieving records |
90
+
91
+ **Filters Collection:**
92
+
93
+ | Field | Type | Description |
94
+ |-------|------|-------------|
95
+ | Field Name | String | Name of the field to filter on |
96
+ | Field Value | String | Value to filter by |
97
+ | Value as Boolean | Boolean | Whether to treat the value as a boolean |
98
+
99
+ #### Update Record
100
+
101
+ | Parameter | Type | Required | Description |
102
+ |-----------|------|----------|-------------|
103
+ | Record Key | String | Yes | The key of the record to update |
104
+ | Fields | Collection | No | Field name/value pairs to update on the record |
105
+
106
+ ## Usage Examples
107
+
108
+ ### Create a Record
109
+
110
+ 1. Add the Compozz node to your workflow
111
+ 2. Select **Record** as the resource
112
+ 3. Select **Create** as the operation
113
+ 4. Enter your **Workspace** name
114
+ 5. Enter your **Object** name
115
+ 6. Add fields with their names and values
116
+
117
+ ### Retrieve Records with Filters
118
+
119
+ 1. Add the Compozz node to your workflow
120
+ 2. Select **Record** as the resource
121
+ 3. Select **Get Many** as the operation
122
+ 4. Enter your **Workspace** and **Object** names
123
+ 5. Optionally specify fields to retrieve (e.g., `name, email, status`)
124
+ 6. Add filters to narrow down results
125
+
126
+ ### Update a Record
127
+
128
+ 1. Add the Compozz node to your workflow
129
+ 2. Select **Record** as the resource
130
+ 3. Select **Update** as the operation
131
+ 4. Enter your **Workspace** and **Object** names
132
+ 5. Enter the **Record Key** of the record to update
133
+ 6. Add the fields you want to update with their new values
134
+
135
+ ## Compatibility
136
+
137
+ - n8n version: 1.0.0 or later
138
+ - Node.js version: 18.x or later
139
+
140
+ ## Resources
141
+
142
+ - [Compozz Documentation](https://app.compozz.com/manual)
143
+ - [n8n Community Nodes Documentation](https://docs.n8n.io/integrations/community-nodes/)
144
+
145
+ ## License
146
+
147
+ [MIT](LICENSE)
148
+
149
+ ## Support / Contact
150
+
151
+ If you have any questions or need support, please contact us at [contact@compozz.com](mailto:contact@compozz.com).
@@ -0,0 +1,12 @@
1
+ import type { ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class CompozzApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ icon: {
6
+ readonly light: "file:../nodes/Compozz/compozz.svg";
7
+ readonly dark: "file:../nodes/Compozz/compozz.dark.svg";
8
+ };
9
+ documentationUrl: string;
10
+ properties: INodeProperties[];
11
+ test: ICredentialTestRequest;
12
+ }
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CompozzApi = void 0;
4
+ class CompozzApi {
5
+ constructor() {
6
+ this.name = 'compozzApi';
7
+ this.displayName = 'Compozz API';
8
+ this.icon = { light: 'file:../nodes/Compozz/compozz.svg', dark: 'file:../nodes/Compozz/compozz.dark.svg' };
9
+ this.documentationUrl = 'https://app.compozz.com/docs';
10
+ this.properties = [
11
+ {
12
+ displayName: 'Base URL',
13
+ name: 'baseUrl',
14
+ type: 'string',
15
+ default: 'https://app.compozz.com',
16
+ description: 'The base URL of the Compozz API',
17
+ },
18
+ {
19
+ displayName: 'Username',
20
+ name: 'username',
21
+ type: 'string',
22
+ default: '',
23
+ required: true,
24
+ description: 'Your Compozz username',
25
+ },
26
+ {
27
+ displayName: 'Password',
28
+ name: 'password',
29
+ type: 'string',
30
+ typeOptions: { password: true },
31
+ default: '',
32
+ required: true,
33
+ description: 'Your Compozz password',
34
+ },
35
+ ];
36
+ this.test = {
37
+ request: {
38
+ baseURL: '={{$credentials.baseUrl}}',
39
+ url: '/auth/login',
40
+ method: 'POST',
41
+ headers: {
42
+ 'Content-Type': 'application/json',
43
+ },
44
+ body: {
45
+ username: '={{$credentials.username}}',
46
+ password: '={{$credentials.password}}',
47
+ },
48
+ },
49
+ };
50
+ }
51
+ }
52
+ exports.CompozzApi = CompozzApi;
53
+ //# sourceMappingURL=CompozzApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CompozzApi.credentials.js","sourceRoot":"","sources":["../../credentials/CompozzApi.credentials.ts"],"names":[],"mappings":";;;AAMA,MAAa,UAAU;IAAvB;QACC,SAAI,GAAG,YAAY,CAAC;QACpB,gBAAW,GAAG,aAAa,CAAC;QAC5B,SAAI,GAAG,EAAE,KAAK,EAAE,mCAAmC,EAAE,IAAI,EAAE,wCAAwC,EAAW,CAAC;QAC/G,qBAAgB,GAAG,8BAA8B,CAAC;QAElD,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,yBAAyB;gBAClC,WAAW,EAAE,iCAAiC;aAC9C;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,uBAAuB;aACpC;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,uBAAuB;aACpC;SACD,CAAC;QAKF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,2BAA2B;gBACpC,GAAG,EAAE,aAAa;gBAClB,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE;oBACR,cAAc,EAAE,kBAAkB;iBAClC;gBACD,IAAI,EAAE;oBACL,QAAQ,EAAE,4BAA4B;oBACtC,QAAQ,EAAE,4BAA4B;iBACtC;aACD;SACD,CAAC;IACH,CAAC;CAAA;AAlDD,gCAkDC"}
@@ -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,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,5 @@
1
+ import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class Compozz implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }