@respond-io/n8n-nodes-respond-io 0.2.7 → 0.4.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.md +3 -1
- package/README.md +8 -8
- package/nodes/Respondio/classMethods/loadOptions.d.ts +5 -0
- package/nodes/Respondio/classMethods/loadOptions.js +45 -0
- package/nodes/Respondio/classMethods/loadOptions.js.map +1 -1
- package/nodes/Respondio/classMethods/resourceMapping.js +1 -1
- package/nodes/Respondio/classMethods/resourceMapping.js.map +1 -1
- package/nodes/Respondio/constants/actions/contacts/index.d.ts +0 -18
- package/nodes/Respondio/constants/actions/contacts/index.js +0 -104
- package/nodes/Respondio/constants/actions/contacts/index.js.map +1 -1
- package/nodes/Respondio/constants/actions/operation_names.d.ts +2 -1
- package/nodes/Respondio/constants/actions/operation_names.js +1 -0
- package/nodes/Respondio/constants/actions/operation_names.js.map +1 -1
- package/nodes/Respondio/constants/actions/tags/index.d.ts +22 -0
- package/nodes/Respondio/constants/actions/tags/index.js +113 -0
- package/nodes/Respondio/constants/actions/tags/index.js.map +1 -0
- package/nodes/Respondio/constants/index.d.ts +30 -18
- package/nodes/Respondio/constants/index.js +18 -3
- package/nodes/Respondio/constants/index.js.map +1 -1
- package/nodes/Respondio/handlers/contacts/index.js +5 -50
- package/nodes/Respondio/handlers/contacts/index.js.map +1 -1
- package/nodes/Respondio/handlers/index.d.ts +3 -0
- package/nodes/Respondio/handlers/index.js +2 -0
- package/nodes/Respondio/handlers/index.js.map +1 -1
- package/nodes/Respondio/handlers/messages/index.js +1 -1
- package/nodes/Respondio/handlers/messages/index.js.map +1 -1
- package/nodes/Respondio/handlers/tags/index.d.ts +6 -0
- package/nodes/Respondio/handlers/tags/index.js +63 -0
- package/nodes/Respondio/handlers/tags/index.js.map +1 -0
- package/nodes/Respondio/types/index.d.ts +13 -0
- package/nodes/Respondio/utils/index.js +22 -14
- package/nodes/Respondio/utils/index.js.map +1 -1
- package/nodes/Respondio/v1/RespondioTriggerV1.node.d.ts +6 -7
- package/nodes/Respondio/v1/RespondioTriggerV1.node.js +147 -24
- package/nodes/Respondio/v1/RespondioTriggerV1.node.js.map +1 -1
- package/nodes/Respondio/v1/RespondioV1.node.js +1 -0
- package/nodes/Respondio/v1/RespondioV1.node.js.map +1 -1
- package/package.json +4 -1
|
@@ -3,25 +3,32 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.RespondioTriggerV1 = void 0;
|
|
4
4
|
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
5
|
const constants_1 = require("../constants");
|
|
6
|
+
const classMethods_1 = require("../classMethods");
|
|
7
|
+
const outgoingMessageTypeOptions = [
|
|
8
|
+
{ name: 'Text', value: 'text' },
|
|
9
|
+
{ name: 'Attachment', value: 'attachment' },
|
|
10
|
+
{ name: 'Quick Reply', value: 'quick_reply' },
|
|
11
|
+
{ name: 'Custom Payload', value: 'custom_payload' },
|
|
12
|
+
{ name: 'WhatsApp Template', value: 'whatsapp_template' },
|
|
13
|
+
{ name: 'Location', value: 'location' },
|
|
14
|
+
{ name: 'Email', value: 'email' },
|
|
15
|
+
{ name: 'Card', value: 'card' },
|
|
16
|
+
{ name: 'Rating', value: 'rating' },
|
|
17
|
+
{ name: 'Product Message', value: 'whatsapp_interactive' },
|
|
18
|
+
];
|
|
19
|
+
const incomingMessageTypeOptions = [
|
|
20
|
+
{ name: 'Text', value: 'text' },
|
|
21
|
+
{ name: 'Attachment', value: 'attachment' },
|
|
22
|
+
{ name: 'Story Reply', value: 'story_reply' },
|
|
23
|
+
{ name: 'Location', value: 'location' },
|
|
24
|
+
{ name: 'Email', value: 'email' },
|
|
25
|
+
{ name: 'Un Supported', value: 'unsupported' },
|
|
26
|
+
{ name: 'Product Message', value: 'whatsapp_interactive' },
|
|
27
|
+
{ name: 'Tiktok Post', value: 'post' }
|
|
28
|
+
];
|
|
6
29
|
class RespondioTriggerV1 {
|
|
7
30
|
constructor(baseDescription) {
|
|
8
|
-
this.methods = {
|
|
9
|
-
loadOptions: {
|
|
10
|
-
async getEventSources() {
|
|
11
|
-
const eventType = this.getNodeParameter(RespondioTriggerV1.triggerEventTypeName, RespondioTriggerV1.triggerDefaultValue);
|
|
12
|
-
if (eventType === constants_1.TRIGGER_SETTINGS.CONVERSATION_CLOSED.value) {
|
|
13
|
-
return constants_1.TRIGGER_SETTINGS_EVENT_SOURCES.CONVERSATION_CLOSED;
|
|
14
|
-
}
|
|
15
|
-
if (eventType === constants_1.TRIGGER_SETTINGS.CONVERSATION_OPENED.value) {
|
|
16
|
-
return constants_1.TRIGGER_SETTINGS_EVENT_SOURCES.CONVERSATION_OPENED;
|
|
17
|
-
}
|
|
18
|
-
if (eventType === constants_1.TRIGGER_SETTINGS.NEW_OUTGOING_MESSAGE.value) {
|
|
19
|
-
return constants_1.TRIGGER_SETTINGS_EVENT_SOURCES.NEW_OUTGOING_MESSAGE;
|
|
20
|
-
}
|
|
21
|
-
return [];
|
|
22
|
-
},
|
|
23
|
-
},
|
|
24
|
-
};
|
|
31
|
+
this.methods = { loadOptions: classMethods_1.loadOptions };
|
|
25
32
|
this.description = {
|
|
26
33
|
...baseDescription,
|
|
27
34
|
version: 1,
|
|
@@ -68,6 +75,7 @@ class RespondioTriggerV1 {
|
|
|
68
75
|
displayName: 'Event Source',
|
|
69
76
|
name: RespondioTriggerV1.eventSourceTypeName,
|
|
70
77
|
type: 'multiOptions',
|
|
78
|
+
required: false,
|
|
71
79
|
displayOptions: {
|
|
72
80
|
show: {
|
|
73
81
|
[RespondioTriggerV1.triggerEventTypeName]: [
|
|
@@ -81,8 +89,74 @@ class RespondioTriggerV1 {
|
|
|
81
89
|
loadOptionsMethod: 'getEventSources',
|
|
82
90
|
loadOptionsDependsOn: [RespondioTriggerV1.triggerEventTypeName],
|
|
83
91
|
},
|
|
84
|
-
default:
|
|
85
|
-
}
|
|
92
|
+
default: ''
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
displayName: 'Message Type',
|
|
96
|
+
name: RespondioTriggerV1.messageTypeName,
|
|
97
|
+
default: [],
|
|
98
|
+
type: 'multiOptions',
|
|
99
|
+
options: incomingMessageTypeOptions,
|
|
100
|
+
displayOptions: {
|
|
101
|
+
show: {
|
|
102
|
+
[RespondioTriggerV1.triggerEventTypeName]: [
|
|
103
|
+
constants_1.TRIGGER_SETTINGS.NEW_INCOMING_MESSAGE.value,
|
|
104
|
+
]
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
required: false
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
displayName: 'Message Type',
|
|
111
|
+
name: RespondioTriggerV1.messageTypeName,
|
|
112
|
+
default: [],
|
|
113
|
+
required: false,
|
|
114
|
+
type: 'multiOptions',
|
|
115
|
+
options: outgoingMessageTypeOptions,
|
|
116
|
+
displayOptions: {
|
|
117
|
+
show: {
|
|
118
|
+
[RespondioTriggerV1.triggerEventTypeName]: [
|
|
119
|
+
constants_1.TRIGGER_SETTINGS.NEW_OUTGOING_MESSAGE.value,
|
|
120
|
+
]
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
displayName: 'Contact Field Type',
|
|
126
|
+
name: RespondioTriggerV1.contactFieldTypeName,
|
|
127
|
+
default: '',
|
|
128
|
+
type: 'options',
|
|
129
|
+
required: true,
|
|
130
|
+
options: [
|
|
131
|
+
{ name: '', value: '' },
|
|
132
|
+
{ name: 'Contact Standard Field', value: 'standard_field' },
|
|
133
|
+
{ name: 'Contact Custom Field', value: 'custom_field' },
|
|
134
|
+
],
|
|
135
|
+
displayOptions: {
|
|
136
|
+
show: {
|
|
137
|
+
[RespondioTriggerV1.triggerEventTypeName]: [
|
|
138
|
+
constants_1.TRIGGER_SETTINGS.CONTACT_UPDATED.value,
|
|
139
|
+
]
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
displayName: 'Select Contact Fields',
|
|
145
|
+
name: RespondioTriggerV1.contactFieldsName,
|
|
146
|
+
default: [],
|
|
147
|
+
type: 'multiOptions',
|
|
148
|
+
required: true,
|
|
149
|
+
typeOptions: {
|
|
150
|
+
loadOptionsMethod: 'getContactFields',
|
|
151
|
+
loadOptionsDependsOn: [RespondioTriggerV1.contactFieldTypeName],
|
|
152
|
+
},
|
|
153
|
+
displayOptions: {
|
|
154
|
+
show: {
|
|
155
|
+
[RespondioTriggerV1.triggerEventTypeName]: [constants_1.TRIGGER_SETTINGS.CONTACT_UPDATED.value],
|
|
156
|
+
[RespondioTriggerV1.contactFieldTypeName]: [{ _cnd: { exists: true } }]
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
},
|
|
86
160
|
],
|
|
87
161
|
};
|
|
88
162
|
this.webhookMethods = {
|
|
@@ -93,13 +167,36 @@ class RespondioTriggerV1 {
|
|
|
93
167
|
const currentNode = this.getNode();
|
|
94
168
|
const workflow = this.getWorkflow();
|
|
95
169
|
const eventType = this.getNodeParameter(RespondioTriggerV1.triggerEventTypeName, RespondioTriggerV1.triggerDefaultValue);
|
|
96
|
-
|
|
170
|
+
let eventSources = this.getNodeParameter(RespondioTriggerV1.eventSourceTypeName, []);
|
|
171
|
+
let messageType = this.getNodeParameter(RespondioTriggerV1.messageTypeName, []);
|
|
172
|
+
const contactFieldType = this.getNodeParameter(RespondioTriggerV1.contactFieldTypeName, '');
|
|
173
|
+
const fields = (contactFieldType === null || contactFieldType === void 0 ? void 0 : contactFieldType.length) ? this.getNodeParameter(RespondioTriggerV1.contactFieldsName, []) : [];
|
|
97
174
|
const platformUrl = constants_1.INTEGRATION_API_BASE_URL;
|
|
98
175
|
const bundle = {};
|
|
176
|
+
if (!webhookUrl)
|
|
177
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Webhook URL is not defined. Please set the webhook URL in the node settings.');
|
|
178
|
+
if (eventType === constants_1.TRIGGER_SETTINGS.NEW_OUTGOING_MESSAGE.value && (!eventSources || !eventSources.length)) {
|
|
179
|
+
eventSources = constants_1.TRIGGER_SETTINGS_EVENT_SOURCES.NEW_OUTGOING_MESSAGE.map(({ value }) => value);
|
|
180
|
+
}
|
|
181
|
+
const messageHookEvents = [
|
|
182
|
+
constants_1.TRIGGER_SETTINGS.NEW_INCOMING_MESSAGE.value,
|
|
183
|
+
constants_1.TRIGGER_SETTINGS.NEW_OUTGOING_MESSAGE.value
|
|
184
|
+
];
|
|
185
|
+
if (messageHookEvents.includes(eventType) && (!messageType || !messageType.length)) {
|
|
186
|
+
messageType = eventType === constants_1.TRIGGER_SETTINGS.NEW_INCOMING_MESSAGE.value
|
|
187
|
+
? incomingMessageTypeOptions.map(({ value }) => value)
|
|
188
|
+
: outgoingMessageTypeOptions.map(({ value }) => value);
|
|
189
|
+
}
|
|
99
190
|
if (eventSources === null || eventSources === void 0 ? void 0 : eventSources.length)
|
|
100
|
-
bundle.
|
|
191
|
+
bundle.source = eventSources;
|
|
101
192
|
if (workflow)
|
|
102
193
|
bundle.workflowDetails = workflow;
|
|
194
|
+
if (messageType === null || messageType === void 0 ? void 0 : messageType.length)
|
|
195
|
+
bundle.messageType = messageType;
|
|
196
|
+
if (contactFieldType.length && contactFieldType !== '' && fields.length) {
|
|
197
|
+
bundle.fields = fields;
|
|
198
|
+
bundle.contactFieldType = contactFieldType;
|
|
199
|
+
}
|
|
103
200
|
try {
|
|
104
201
|
await this.helpers.request({
|
|
105
202
|
method: 'POST',
|
|
@@ -108,6 +205,7 @@ class RespondioTriggerV1 {
|
|
|
108
205
|
Authorization: `Bearer ${credentials.apiKey}`,
|
|
109
206
|
},
|
|
110
207
|
body: {
|
|
208
|
+
webHookName: `${this.getWebhookName()} - ${currentNode.name}`,
|
|
111
209
|
type: eventType,
|
|
112
210
|
url: webhookUrl,
|
|
113
211
|
hookId: currentNode.webhookId,
|
|
@@ -126,13 +224,14 @@ class RespondioTriggerV1 {
|
|
|
126
224
|
const credentials = await this.getCredentials('respondIoApi');
|
|
127
225
|
const currentNode = this.getNode();
|
|
128
226
|
const webhookId = currentNode.webhookId;
|
|
227
|
+
const webhookUrl = this.getNodeWebhookUrl('default');
|
|
129
228
|
if (!webhookId)
|
|
130
229
|
return true;
|
|
131
230
|
const platformUrl = constants_1.INTEGRATION_API_BASE_URL;
|
|
132
231
|
try {
|
|
133
232
|
const response = await this.helpers.request({
|
|
134
233
|
method: 'DELETE',
|
|
135
|
-
url: `${platformUrl}/integration/n8n-api/unsubscribe/${webhookId}`,
|
|
234
|
+
url: `${platformUrl}/integration/n8n-api/unsubscribe/${webhookId}?hookUrl=${webhookUrl}`,
|
|
136
235
|
headers: {
|
|
137
236
|
Authorization: `Bearer ${credentials.apiKey}`,
|
|
138
237
|
},
|
|
@@ -141,12 +240,33 @@ class RespondioTriggerV1 {
|
|
|
141
240
|
}
|
|
142
241
|
catch (error) {
|
|
143
242
|
this.logger.info(`Error: ${JSON.stringify(error)}`);
|
|
144
|
-
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Failed to
|
|
243
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Failed to delete webhook subscription: ${error.message}`);
|
|
145
244
|
}
|
|
146
245
|
return true;
|
|
147
246
|
},
|
|
148
247
|
async checkExists() {
|
|
149
|
-
|
|
248
|
+
const credentials = await this.getCredentials('respondIoApi');
|
|
249
|
+
const currentNode = this.getNode();
|
|
250
|
+
const webhookId = currentNode.webhookId;
|
|
251
|
+
const platformUrl = constants_1.INTEGRATION_API_BASE_URL;
|
|
252
|
+
try {
|
|
253
|
+
const response = await this.helpers.request({
|
|
254
|
+
method: 'GET',
|
|
255
|
+
url: `${platformUrl}/integration/n8n-api/webhook/${webhookId}`,
|
|
256
|
+
headers: {
|
|
257
|
+
Authorization: `Bearer ${credentials.apiKey}`,
|
|
258
|
+
},
|
|
259
|
+
json: true
|
|
260
|
+
});
|
|
261
|
+
if (response === '<h3 align=\"center\">404 not Found!</h3>') {
|
|
262
|
+
return false;
|
|
263
|
+
}
|
|
264
|
+
return true;
|
|
265
|
+
}
|
|
266
|
+
catch (error) {
|
|
267
|
+
this.logger.info(`Error: ${JSON.stringify(error)}`);
|
|
268
|
+
return false;
|
|
269
|
+
}
|
|
150
270
|
},
|
|
151
271
|
},
|
|
152
272
|
};
|
|
@@ -163,4 +283,7 @@ exports.RespondioTriggerV1 = RespondioTriggerV1;
|
|
|
163
283
|
RespondioTriggerV1.triggerEventTypeName = 'triggerEventType';
|
|
164
284
|
RespondioTriggerV1.eventSourceTypeName = 'eventSource';
|
|
165
285
|
RespondioTriggerV1.triggerDefaultValue = constants_1.TRIGGER_SETTINGS.NEW_INCOMING_MESSAGE.value;
|
|
286
|
+
RespondioTriggerV1.messageTypeName = 'messageType';
|
|
287
|
+
RespondioTriggerV1.contactFieldTypeName = 'contactFieldType';
|
|
288
|
+
RespondioTriggerV1.contactFieldsName = 'contactFields';
|
|
166
289
|
//# sourceMappingURL=RespondioTriggerV1.node.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RespondioTriggerV1.node.js","sourceRoot":"","sources":["../../../../nodes/Respondio/v1/RespondioTriggerV1.node.ts"],"names":[],"mappings":";;;AAAA,+
|
|
1
|
+
{"version":3,"file":"RespondioTriggerV1.node.js","sourceRoot":"","sources":["../../../../nodes/Respondio/v1/RespondioTriggerV1.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -40,6 +40,7 @@ function buildDynamicProperties(resourceTypeName, resourceTypeDefault) {
|
|
|
40
40
|
name: action.name,
|
|
41
41
|
value: action.value,
|
|
42
42
|
description: action.description,
|
|
43
|
+
action: action.name,
|
|
43
44
|
})),
|
|
44
45
|
default: ((_a = Object.values(actions)[0]) === null || _a === void 0 ? void 0 : _a.value) || '',
|
|
45
46
|
required: true,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RespondioV1.node.js","sourceRoot":"","sources":["../../../../nodes/Respondio/v1/RespondioV1.node.ts"],"names":[],"mappings":";;;;;;AAWA,uFAA8D;AAC9D,4CAA+C;AAC/C,2DAAmC;AACnC,kDAA+D;AAE/D,SAAS,sBAAsB,CAAC,gBAAwB,EAAE,mBAA2B;;IACnF,MAAM,UAAU,GAAsB,EAAE,CAAC;IAGzC,UAAU,CAAC,IAAI,CAAC;QACd,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,gBAAgB;QACtB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,OAAO,EAAE,MAAM,CAAC,IAAI,CAAC,2BAAe,CAAC,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE;YACrD,MAAM,YAAY,GAAG,QAAQ;iBAC1B,WAAW,EAAE;iBACb,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC;iBAClB,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC;YAE1C,OAAO;gBACL,IAAI,EAAE,YAAY;gBAClB,KAAK,EAAE,QAAQ;aAChB,CAAA;QACH,CAAC,CAAC;QACF,OAAO,EAAE,mBAAmB;QAC5B,QAAQ,EAAE,IAAI;KACf,CAAC,CAAC;IAGH,KAAK,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,2BAAe,CAAC,EAAE,CAAC;QAClE,UAAU,CAAC,IAAI,CAAC;YACd,WAAW,EAAE,YAAY;YACzB,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,SAAS;YACf,gBAAgB,EAAE,IAAI;YACtB,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,QAAQ,CAAC,EAAE,EAAE;YAClD,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;gBAC7C,IAAI,EAAE,MAAM,CAAC,IAAI;gBACjB,KAAK,EAAE,MAAM,CAAC,KAAK;gBACnB,WAAW,EAAE,MAAM,CAAC,WAAW;
|
|
1
|
+
{"version":3,"file":"RespondioV1.node.js","sourceRoot":"","sources":["../../../../nodes/Respondio/v1/RespondioV1.node.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@respond-io/n8n-nodes-respond-io",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "n8n nodes for Respond.io integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package"
|
|
@@ -56,5 +56,8 @@
|
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"n8n-workflow": "*"
|
|
59
|
+
},
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public"
|
|
59
62
|
}
|
|
60
63
|
}
|