@n8n-dev/n8n-nodes-ndhm-gov-ndhm-cm 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.
Files changed (52) hide show
  1. package/README.md +107 -0
  2. package/dist/banner.svg +165 -0
  3. package/dist/credentials/NdhmGovNdhmCmApi.credentials.d.ts +9 -0
  4. package/dist/credentials/NdhmGovNdhmCmApi.credentials.js +49 -0
  5. package/dist/credentials/NdhmGovNdhmCmApi.credentials.js.map +1 -0
  6. package/dist/icons/ndhm-gov-ndhm-cm.dark.svg +18 -0
  7. package/dist/icons/ndhm-gov-ndhm-cm.svg +18 -0
  8. package/dist/nodes/NdhmGovNdhmCm/NdhmGovNdhmCm.node.d.ts +4 -0
  9. package/dist/nodes/NdhmGovNdhmCm/NdhmGovNdhmCm.node.js +124 -0
  10. package/dist/nodes/NdhmGovNdhmCm/NdhmGovNdhmCm.node.js.map +1 -0
  11. package/dist/nodes/NdhmGovNdhmCm/NdhmGovNdhmCm.node.json +20 -0
  12. package/dist/nodes/NdhmGovNdhmCm/ndhm-gov-ndhm-cm.dark.svg +18 -0
  13. package/dist/nodes/NdhmGovNdhmCm/ndhm-gov-ndhm-cm.svg +18 -0
  14. package/dist/nodes/NdhmGovNdhmCm/resources/consent/index.d.ts +2 -0
  15. package/dist/nodes/NdhmGovNdhmCm/resources/consent/index.js +783 -0
  16. package/dist/nodes/NdhmGovNdhmCm/resources/consent/index.js.map +1 -0
  17. package/dist/nodes/NdhmGovNdhmCm/resources/data-flow/index.d.ts +2 -0
  18. package/dist/nodes/NdhmGovNdhmCm/resources/data-flow/index.js +468 -0
  19. package/dist/nodes/NdhmGovNdhmCm/resources/data-flow/index.js.map +1 -0
  20. package/dist/nodes/NdhmGovNdhmCm/resources/discovery/index.d.ts +2 -0
  21. package/dist/nodes/NdhmGovNdhmCm/resources/discovery/index.js +228 -0
  22. package/dist/nodes/NdhmGovNdhmCm/resources/discovery/index.js.map +1 -0
  23. package/dist/nodes/NdhmGovNdhmCm/resources/hip-facing/index.d.ts +2 -0
  24. package/dist/nodes/NdhmGovNdhmCm/resources/hip-facing/index.js +336 -0
  25. package/dist/nodes/NdhmGovNdhmCm/resources/hip-facing/index.js.map +1 -0
  26. package/dist/nodes/NdhmGovNdhmCm/resources/hiu-facing/index.d.ts +2 -0
  27. package/dist/nodes/NdhmGovNdhmCm/resources/hiu-facing/index.js +384 -0
  28. package/dist/nodes/NdhmGovNdhmCm/resources/hiu-facing/index.js.map +1 -0
  29. package/dist/nodes/NdhmGovNdhmCm/resources/identification/index.d.ts +2 -0
  30. package/dist/nodes/NdhmGovNdhmCm/resources/identification/index.js +155 -0
  31. package/dist/nodes/NdhmGovNdhmCm/resources/identification/index.js.map +1 -0
  32. package/dist/nodes/NdhmGovNdhmCm/resources/index.d.ts +11 -0
  33. package/dist/nodes/NdhmGovNdhmCm/resources/index.js +26 -0
  34. package/dist/nodes/NdhmGovNdhmCm/resources/index.js.map +1 -0
  35. package/dist/nodes/NdhmGovNdhmCm/resources/link/index.d.ts +2 -0
  36. package/dist/nodes/NdhmGovNdhmCm/resources/link/index.js +542 -0
  37. package/dist/nodes/NdhmGovNdhmCm/resources/link/index.js.map +1 -0
  38. package/dist/nodes/NdhmGovNdhmCm/resources/monitoring/index.d.ts +2 -0
  39. package/dist/nodes/NdhmGovNdhmCm/resources/monitoring/index.js +53 -0
  40. package/dist/nodes/NdhmGovNdhmCm/resources/monitoring/index.js.map +1 -0
  41. package/dist/nodes/NdhmGovNdhmCm/resources/profile/index.d.ts +2 -0
  42. package/dist/nodes/NdhmGovNdhmCm/resources/profile/index.js +204 -0
  43. package/dist/nodes/NdhmGovNdhmCm/resources/profile/index.js.map +1 -0
  44. package/dist/nodes/NdhmGovNdhmCm/resources/subscriptions/index.d.ts +2 -0
  45. package/dist/nodes/NdhmGovNdhmCm/resources/subscriptions/index.js +517 -0
  46. package/dist/nodes/NdhmGovNdhmCm/resources/subscriptions/index.js.map +1 -0
  47. package/dist/nodes/NdhmGovNdhmCm/resources/user-auth/index.d.ts +2 -0
  48. package/dist/nodes/NdhmGovNdhmCm/resources/user-auth/index.js +628 -0
  49. package/dist/nodes/NdhmGovNdhmCm/resources/user-auth/index.js.map +1 -0
  50. package/dist/package.json +62 -0
  51. package/dist/tsconfig.tsbuildinfo +1 -0
  52. package/package.json +62 -0
@@ -0,0 +1,124 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NdhmGovNdhmCm = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ const user_auth_1 = require("./resources/user-auth");
6
+ const identification_1 = require("./resources/identification");
7
+ const profile_1 = require("./resources/profile");
8
+ const discovery_1 = require("./resources/discovery");
9
+ const consent_1 = require("./resources/consent");
10
+ const data_flow_1 = require("./resources/data-flow");
11
+ const monitoring_1 = require("./resources/monitoring");
12
+ const link_1 = require("./resources/link");
13
+ const subscriptions_1 = require("./resources/subscriptions");
14
+ const hiu_facing_1 = require("./resources/hiu-facing");
15
+ const hip_facing_1 = require("./resources/hip-facing");
16
+ class NdhmGovNdhmCm {
17
+ constructor() {
18
+ this.description = {
19
+ displayName: 'ndhm-gov-ndhm-cm',
20
+ name: 'N8nDevNdhmGovNdhmCm',
21
+ icon: { light: 'file:./ndhm-gov-ndhm-cm.svg', dark: 'file:./ndhm-gov-ndhm-cm.dark.svg' },
22
+ group: ['input'],
23
+ version: 1,
24
+ subtitle: '={{\$parameter["operation"] + ": " + \$parameter["resource"]}}',
25
+ description: 'Entity which provides health information aggregation services to customers of health care services',
26
+ defaults: { name: 'ndhm-gov-ndhm-cm' },
27
+ usableAsTool: true,
28
+ inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
29
+ outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
30
+ credentials: [
31
+ {
32
+ name: 'N8nDevNdhmGovNdhmCmApi',
33
+ required: true,
34
+ },
35
+ ],
36
+ requestDefaults: {
37
+ baseURL: '={{\$credentials.url}}',
38
+ headers: {
39
+ Accept: 'application/json',
40
+ 'Content-Type': 'application/json',
41
+ },
42
+ },
43
+ properties: [
44
+ {
45
+ "displayName": "Resource",
46
+ "name": "resource",
47
+ "type": "options",
48
+ "noDataExpression": true,
49
+ "options": [
50
+ {
51
+ "name": "User Auth",
52
+ "value": "User Auth",
53
+ "description": ""
54
+ },
55
+ {
56
+ "name": "Identification",
57
+ "value": "Identification",
58
+ "description": ""
59
+ },
60
+ {
61
+ "name": "Profile",
62
+ "value": "Profile",
63
+ "description": ""
64
+ },
65
+ {
66
+ "name": "Discovery",
67
+ "value": "Discovery",
68
+ "description": ""
69
+ },
70
+ {
71
+ "name": "Consent",
72
+ "value": "Consent",
73
+ "description": ""
74
+ },
75
+ {
76
+ "name": "Data Flow",
77
+ "value": "Data Flow",
78
+ "description": ""
79
+ },
80
+ {
81
+ "name": "Monitoring",
82
+ "value": "Monitoring",
83
+ "description": ""
84
+ },
85
+ {
86
+ "name": "Link",
87
+ "value": "Link",
88
+ "description": ""
89
+ },
90
+ {
91
+ "name": "Subscriptions",
92
+ "value": "Subscriptions",
93
+ "description": ""
94
+ },
95
+ {
96
+ "name": "Hiu Facing",
97
+ "value": "Hiu Facing",
98
+ "description": ""
99
+ },
100
+ {
101
+ "name": "Hip Facing",
102
+ "value": "Hip Facing",
103
+ "description": ""
104
+ }
105
+ ],
106
+ "default": ""
107
+ },
108
+ ...user_auth_1.userAuthDescription,
109
+ ...identification_1.identificationDescription,
110
+ ...profile_1.profileDescription,
111
+ ...discovery_1.discoveryDescription,
112
+ ...consent_1.consentDescription,
113
+ ...data_flow_1.dataFlowDescription,
114
+ ...monitoring_1.monitoringDescription,
115
+ ...link_1.linkDescription,
116
+ ...subscriptions_1.subscriptionsDescription,
117
+ ...hiu_facing_1.hiuFacingDescription,
118
+ ...hip_facing_1.hipFacingDescription
119
+ ],
120
+ };
121
+ }
122
+ }
123
+ exports.NdhmGovNdhmCm = NdhmGovNdhmCm;
124
+ //# sourceMappingURL=NdhmGovNdhmCm.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NdhmGovNdhmCm.node.js","sourceRoot":"","sources":["../../../nodes/NdhmGovNdhmCm/NdhmGovNdhmCm.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "node": "N8nDevNdhmGovNdhmCm",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": [
6
+ "Development"
7
+ ],
8
+ "resources": {
9
+ "primaryDocumentation": [
10
+ {
11
+ "url": "https://github.com/n8n-code/n8n-nodes-ndhm-gov-ndhm-cm"
12
+ }
13
+ ],
14
+ "credentialDocumentation": [
15
+ {
16
+ "url": "https://github.com/n8n-code/n8n-nodes-ndhm-gov-ndhm-cm?tab=readme-ov-file#credentials"
17
+ }
18
+ ]
19
+ }
20
+ }
@@ -0,0 +1,18 @@
1
+ <svg width="250" height="150" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet">
2
+ <g fill="#666666">
3
+ <path d="m88.05,27.65c-3.15,4 -3.2,51.2 -0.05,54.35c2.75,2.75 71.7,3.15 74.45,0.45c2.85,-2.9 2.3,-53.85 -0.65,-55.9c-1.95,-1.35 -7.15,-1.55 -36.95,-1.55l-34.7,0l-2.1,2.65zm69.45,3.35c0.65,0 1,8.6 1,23.75l0,23.75l-33,0l-33,0l-0.25,-23c-0.15,-12.6 -0.1,-23.45 0.15,-24.1c0.35,-0.85 8.9,-1.05 32.25,-0.75c17.55,0.2 32.3,0.35 32.85,0.35z"/>
4
+ <path d="m99.15,37.3c-6.85,7.35 4.25,17.35 11.4,10.25c1.35,-1.35 2.45,-3.65 2.45,-5.05c0,-6.45 -9.35,-9.95 -13.85,-5.2z"/>
5
+ <path d="m135,42.5c-0.7,0.85 -5.25,5.15 -10.1,9.6l-8.85,8.1l-3.2,-3.2l-3.15,-3.15l-6.35,6.3c-5.55,5.5 -6.35,6.75 -6.35,10.05l0,3.8l28.5,0l28.5,0l0,-8.6l0,-8.55l-8.15,-7.7c-9.35,-8.85 -9.15,-8.7 -10.85,-6.65zm7.25,15.2c0.95,0.9 1.75,2.9 1.75,4.45c6.35,-5.05 4.75,-7.15 4.9,-11.55c0.95,0 0,0 0,0l-6.65,7.1z"/>
6
+ <path d="m53.65,110.75c0.1,4.8 0.45,8.65 0.75,8.5c0.35,-0.15 1.3,-0.25 2.1,-0.25c1.1,0 1.5,-1.2 1.5,-4.75l0,-4.75l3.25,5c4.9,7.5 6.2,6.75 6.55,-3.75c0.25,-8.15 0.15,-8.75 -1.7,-8.75c-1.65,0 -2.05,0.8 -2.3,4.75l-0.3,4.75l-2.8,-4.75c-4.85,-8.25 -7.25,-6.9 -7.05,4z"/>
7
+ <path d="m91,108.9c0,9.65 0.3,10.1 6.1,10.1c5.8,0 7.15,-2.65 1.65,-3.2l-3.25,-0.3l-0.3,-6.75c-0.25,-5.95 -0.55,-6.75 -2.25,-6.75c-1.75,0 -1.95,0.7 -1.95,6.9z"/>
8
+ <path d="m151,102.45c0,0.25 1,2.15 2.25,4.2c1.2,2.1 2.45,5.8 2.75,8.25c0.65,5.9 4,6.95 4,1.25c0.05,-2.1 1.25,-5.85 2.95,-8.9l2.9,-5.25l-2.5,0c-1.8,0 -2.8,0.85 -3.75,3.1l-1.3,3.05l-1.25,-3.05c-1.1,-2.6 -6.05,-4.8 -6.05,-2.65z"/>
9
+ <path d="m191,107.45c0,9.05 3.4,8.85 4.25,-0.2c0.45,-5 0.35,-5.25 -1.9,-5.25c-2.2,0 -2.35,0.4 -2.35,5.45z"/>
10
+ <path d="m180.8,104.75c-1.3,5.35 0.65,13.6 3.45,14.35c2.3,0.6 2.75,0.4 2.75,-1.2c0,-1.05 -0.45,-1.9 -1,-1.9c-0.55,0 -1,-1.6 -1,-3.5c0,-1.95 0.45,-3.5 1,-3.5c0.55,0 1,-0.7 1,-1.5c0,-0.85 -0.45,-1.5 -1,-1.5c-0.55,0 -1,-0.7 -1,-1.5c0,-2.1 -3.65,-1.9 -4.2,0.25z"/>
11
+ <path d="m71.55,106.55c-2.2,2.25 -2.05,9.7 0.3,11.8c4.5,4.1 10.15,0.75 10.15,-6.1c0,-4.85 -2,-7.25 -6,-7.25c-1.55,0 -3.55,0.7 -4.45,1.55zm6.25,5.8c0.25,3.05 0,3.65 -1.6,3.65c-2.3,0 -3.25,-2.65 -2.05,-5.85c1.25,-3.35 3.3,-2.1 3.65,2.2z"/>
12
+ <path d="m105.75,106.1c-2.5,1.45 -2.45,9.95 0.1,12.25c4.3,3.9 10.15,0.35 10.15,-6.2c0,-6 -5.15,-9.05 -10.25,-6.05zm6.05,6.25c0.25,3.05 0,3.65 -1.6,3.65c-2.3,0 -3.25,-2.65 -2.05,-5.85c1.25,-3.35 3.3,-2.1 3.65,2.2z"/>
13
+ <path d="m119.2,106.2c-3.8,3.8 -0.4,12.55 4.4,11.35c1.9,-0.45 2.45,-0.3 2.15,0.65c-0.25,0.7 -1.55,1.2 -2.85,1.1c-4.05,-0.3 -5.35,0.45 -3.85,2.25c0.85,1.05 2.6,1.45 5.35,1.25l4.1,-0.3l0.3,-8.75l0.3,-8.75l-4.35,0c-2.4,0 -4.9,0.55 -5.55,1.2zm6.6,4.45c0.4,2.85 -2.15,4.85 -3.75,2.95c-0.9,-1.1 -0.9,-2 -0.05,-3.6c1.35,-2.5 3.4,-2.15 3.8,0.65z"/>
14
+ <path d="m133.55,106.55c-2.2,2.25 -2.05,9.7 0.3,11.8c4.5,4.1 10.15,0.75 10.15,-6.1c0,-4.85 -2,-7.25 -6,-7.25c-1.55,0 -3.55,0.7 -4.45,1.55zm6.25,5.8c0.25,3.05 0,3.65 -1.6,3.65c-2.3,0 -3.25,-2.65 -2.05,-5.85c1.25,-3.35 3.3,-2.1 3.65,2.2z"/>
15
+ <path d="m167.65,106.85c-3.9,4.3 -0.75,13.15 4.7,13.15c2.4,0 5.65,-2.75 5.65,-4.85c0,-1.4 -2.65,-1.55 -3.5,-0.15c-0.95,1.55 -4.5,1.15 -4.5,-0.5c0,-1.1 1.1,-1.5 4,-1.5c3.15,0 4,-0.35 4,-1.8c0,-5.3 -6.85,-8.25 -10.35,-4.35z"/>
16
+ <path d="m191,117.5c0,2.15 0.4,2.6 2.25,2.3c1.5,-0.2 2.25,-1 2.25,-2.3c0,-1.3 -0.75,-2.1 -2.25,-2.3c-1.85,-0.3 -2.25,0.15 -2.25,2.3z"/>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="250" height="150" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet">
2
+ <g fill="#666666">
3
+ <path d="m88.05,27.65c-3.15,4 -3.2,51.2 -0.05,54.35c2.75,2.75 71.7,3.15 74.45,0.45c2.85,-2.9 2.3,-53.85 -0.65,-55.9c-1.95,-1.35 -7.15,-1.55 -36.95,-1.55l-34.7,0l-2.1,2.65zm69.45,3.35c0.65,0 1,8.6 1,23.75l0,23.75l-33,0l-33,0l-0.25,-23c-0.15,-12.6 -0.1,-23.45 0.15,-24.1c0.35,-0.85 8.9,-1.05 32.25,-0.75c17.55,0.2 32.3,0.35 32.85,0.35z"/>
4
+ <path d="m99.15,37.3c-6.85,7.35 4.25,17.35 11.4,10.25c1.35,-1.35 2.45,-3.65 2.45,-5.05c0,-6.45 -9.35,-9.95 -13.85,-5.2z"/>
5
+ <path d="m135,42.5c-0.7,0.85 -5.25,5.15 -10.1,9.6l-8.85,8.1l-3.2,-3.2l-3.15,-3.15l-6.35,6.3c-5.55,5.5 -6.35,6.75 -6.35,10.05l0,3.8l28.5,0l28.5,0l0,-8.6l0,-8.55l-8.15,-7.7c-9.35,-8.85 -9.15,-8.7 -10.85,-6.65zm7.25,15.2c0.95,0.9 1.75,2.9 1.75,4.45c6.35,-5.05 4.75,-7.15 4.9,-11.55c0.95,0 0,0 0,0l-6.65,7.1z"/>
6
+ <path d="m53.65,110.75c0.1,4.8 0.45,8.65 0.75,8.5c0.35,-0.15 1.3,-0.25 2.1,-0.25c1.1,0 1.5,-1.2 1.5,-4.75l0,-4.75l3.25,5c4.9,7.5 6.2,6.75 6.55,-3.75c0.25,-8.15 0.15,-8.75 -1.7,-8.75c-1.65,0 -2.05,0.8 -2.3,4.75l-0.3,4.75l-2.8,-4.75c-4.85,-8.25 -7.25,-6.9 -7.05,4z"/>
7
+ <path d="m91,108.9c0,9.65 0.3,10.1 6.1,10.1c5.8,0 7.15,-2.65 1.65,-3.2l-3.25,-0.3l-0.3,-6.75c-0.25,-5.95 -0.55,-6.75 -2.25,-6.75c-1.75,0 -1.95,0.7 -1.95,6.9z"/>
8
+ <path d="m151,102.45c0,0.25 1,2.15 2.25,4.2c1.2,2.1 2.45,5.8 2.75,8.25c0.65,5.9 4,6.95 4,1.25c0.05,-2.1 1.25,-5.85 2.95,-8.9l2.9,-5.25l-2.5,0c-1.8,0 -2.8,0.85 -3.75,3.1l-1.3,3.05l-1.25,-3.05c-1.1,-2.6 -6.05,-4.8 -6.05,-2.65z"/>
9
+ <path d="m191,107.45c0,9.05 3.4,8.85 4.25,-0.2c0.45,-5 0.35,-5.25 -1.9,-5.25c-2.2,0 -2.35,0.4 -2.35,5.45z"/>
10
+ <path d="m180.8,104.75c-1.3,5.35 0.65,13.6 3.45,14.35c2.3,0.6 2.75,0.4 2.75,-1.2c0,-1.05 -0.45,-1.9 -1,-1.9c-0.55,0 -1,-1.6 -1,-3.5c0,-1.95 0.45,-3.5 1,-3.5c0.55,0 1,-0.7 1,-1.5c0,-0.85 -0.45,-1.5 -1,-1.5c-0.55,0 -1,-0.7 -1,-1.5c0,-2.1 -3.65,-1.9 -4.2,0.25z"/>
11
+ <path d="m71.55,106.55c-2.2,2.25 -2.05,9.7 0.3,11.8c4.5,4.1 10.15,0.75 10.15,-6.1c0,-4.85 -2,-7.25 -6,-7.25c-1.55,0 -3.55,0.7 -4.45,1.55zm6.25,5.8c0.25,3.05 0,3.65 -1.6,3.65c-2.3,0 -3.25,-2.65 -2.05,-5.85c1.25,-3.35 3.3,-2.1 3.65,2.2z"/>
12
+ <path d="m105.75,106.1c-2.5,1.45 -2.45,9.95 0.1,12.25c4.3,3.9 10.15,0.35 10.15,-6.2c0,-6 -5.15,-9.05 -10.25,-6.05zm6.05,6.25c0.25,3.05 0,3.65 -1.6,3.65c-2.3,0 -3.25,-2.65 -2.05,-5.85c1.25,-3.35 3.3,-2.1 3.65,2.2z"/>
13
+ <path d="m119.2,106.2c-3.8,3.8 -0.4,12.55 4.4,11.35c1.9,-0.45 2.45,-0.3 2.15,0.65c-0.25,0.7 -1.55,1.2 -2.85,1.1c-4.05,-0.3 -5.35,0.45 -3.85,2.25c0.85,1.05 2.6,1.45 5.35,1.25l4.1,-0.3l0.3,-8.75l0.3,-8.75l-4.35,0c-2.4,0 -4.9,0.55 -5.55,1.2zm6.6,4.45c0.4,2.85 -2.15,4.85 -3.75,2.95c-0.9,-1.1 -0.9,-2 -0.05,-3.6c1.35,-2.5 3.4,-2.15 3.8,0.65z"/>
14
+ <path d="m133.55,106.55c-2.2,2.25 -2.05,9.7 0.3,11.8c4.5,4.1 10.15,0.75 10.15,-6.1c0,-4.85 -2,-7.25 -6,-7.25c-1.55,0 -3.55,0.7 -4.45,1.55zm6.25,5.8c0.25,3.05 0,3.65 -1.6,3.65c-2.3,0 -3.25,-2.65 -2.05,-5.85c1.25,-3.35 3.3,-2.1 3.65,2.2z"/>
15
+ <path d="m167.65,106.85c-3.9,4.3 -0.75,13.15 4.7,13.15c2.4,0 5.65,-2.75 5.65,-4.85c0,-1.4 -2.65,-1.55 -3.5,-0.15c-0.95,1.55 -4.5,1.15 -4.5,-0.5c0,-1.1 1.1,-1.5 4,-1.5c3.15,0 4,-0.35 4,-1.8c0,-5.3 -6.85,-8.25 -10.35,-4.35z"/>
16
+ <path d="m191,117.5c0,2.15 0.4,2.6 2.25,2.3c1.5,-0.2 2.25,-1 2.25,-2.3c0,-1.3 -0.75,-2.1 -2.25,-2.3c-1.85,-0.3 -2.25,0.15 -2.25,2.3z"/>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,2 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const consentDescription: INodeProperties[];