n8n-nodes-novinmarketing 0.1.93 → 0.1.97

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.
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" ?>
2
+
3
+ <svg width="800px" height="800px" viewBox="0 0 512 512" id="Layer_1" version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4
+
5
+ .st0{fill:#00B4D8;}
6
+ </style>
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
@@ -0,0 +1,5 @@
1
+ import { INodeType, INodeTypeDescription, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
2
+ export declare class SendEmailBatch implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,256 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SendEmailBatch = void 0;
4
+ class SendEmailBatch {
5
+ constructor() {
6
+ this.description = {
7
+ displayName: 'Novin Send Email Batch',
8
+ name: 'sendEmailBatch',
9
+ icon: 'file:SendEmail.svg',
10
+ group: ['transform'],
11
+ version: [1],
12
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
13
+ description: 'Node to Send Email Batch',
14
+ defaults: {
15
+ name: 'Novin Send Email Batch',
16
+ },
17
+ inputs: ['main'],
18
+ outputs: ['main'],
19
+ credentials: [
20
+ {
21
+ name: 'novinMarketingApi',
22
+ required: true,
23
+ },
24
+ ],
25
+ requestDefaults: {
26
+ baseURL: 'https://cdp.novin.marketing/api',
27
+ headers: {
28
+ Accept: 'application/json',
29
+ 'Content-Type': 'application/json',
30
+ },
31
+ },
32
+ properties: [
33
+ {
34
+ displayName: 'Users',
35
+ name: 'users',
36
+ type: 'string',
37
+ default: '{{ $(previousNodename).all() }}',
38
+ placeholder: 'users List',
39
+ routing: {
40
+ send: {
41
+ property: 'users',
42
+ type: 'body',
43
+ },
44
+ },
45
+ },
46
+ {
47
+ displayName: 'Email Name',
48
+ name: 'emailName',
49
+ type: 'string',
50
+ default: '',
51
+ placeholder: 'Name of the Email Campaign',
52
+ routing: {
53
+ send: {
54
+ property: 'emailName',
55
+ type: 'body',
56
+ },
57
+ },
58
+ },
59
+ {
60
+ displayName: 'Sender Name',
61
+ name: 'senderName',
62
+ type: 'string',
63
+ default: '',
64
+ placeholder: 'Enter Sender Name',
65
+ description: 'Sender Name of the email',
66
+ routing: {
67
+ send: {
68
+ property: 'senderName',
69
+ type: 'body',
70
+ },
71
+ },
72
+ },
73
+ {
74
+ displayName: 'Subject',
75
+ name: 'subject',
76
+ type: 'string',
77
+ default: '{{ $(previousNodename).all() }}',
78
+ placeholder: 'Enter Subject',
79
+ description: 'Subject of the email',
80
+ routing: {
81
+ send: {
82
+ property: 'subject',
83
+ type: 'body',
84
+ },
85
+ },
86
+ },
87
+ {
88
+ displayName: 'Preview',
89
+ name: 'preview',
90
+ type: 'string',
91
+ default: '{{ $(previousNodename).all() }}',
92
+ placeholder: 'Enter Preview',
93
+ description: 'Preview of the email',
94
+ routing: {
95
+ send: {
96
+ property: 'preview',
97
+ type: 'body',
98
+ },
99
+ },
100
+ },
101
+ {
102
+ displayName: 'Email Content',
103
+ name: 'content',
104
+ type: 'string',
105
+ default: '{{ $(previousNodename).item.json.firstName.value }}',
106
+ placeholder: 'Enter Email content',
107
+ description: 'Content to send',
108
+ routing: {
109
+ send: {
110
+ property: 'content',
111
+ type: 'body',
112
+ },
113
+ },
114
+ },
115
+ {
116
+ displayName: 'Once Per Email',
117
+ name: 'oncePerEmail',
118
+ type: 'boolean',
119
+ default: false,
120
+ routing: {
121
+ send: {
122
+ property: 'once',
123
+ type: 'body',
124
+ value: '={{$value}}',
125
+ },
126
+ },
127
+ },
128
+ {
129
+ displayName: 'Dont Disturb',
130
+ name: 'dontDisturb',
131
+ type: 'boolean',
132
+ default: true,
133
+ },
134
+ {
135
+ displayName: 'Batch Size',
136
+ name: 'batchSize',
137
+ type: 'number',
138
+ default: 20,
139
+ description: 'Number of messages to accumulate before sending a batch',
140
+ },
141
+ ],
142
+ };
143
+ }
144
+ async execute() {
145
+ const users = this.getNodeParameter('users', 0);
146
+ const dontDisturb = this.getNodeParameter('dontDisturb', 0);
147
+ const oncePerEmail = this.getNodeParameter('oncePerEmail', 0);
148
+ const parameters = this.getNode().parameters;
149
+ let textTemplate = parameters.content;
150
+ if (textTemplate.startsWith('=')) {
151
+ textTemplate = textTemplate.substring(1);
152
+ }
153
+ let preview = parameters.preview;
154
+ if (preview.startsWith('=')) {
155
+ preview = preview.substring(1);
156
+ }
157
+ let subject = parameters.subject;
158
+ if (subject.startsWith('=')) {
159
+ subject = subject.substring(1);
160
+ }
161
+ const senderName = this.getNodeParameter('senderName', 0);
162
+ const emailName = this.getNodeParameter('emailName', 0);
163
+ const batchSize = this.getNodeParameter('batchSize', 0);
164
+ if (dontDisturb) {
165
+ const currentTime = new Date();
166
+ const currentHour = currentTime.getHours();
167
+ if (currentHour >= 22 || currentHour < 9) {
168
+ let waitTime = 0;
169
+ if (currentHour >= 22) {
170
+ waitTime = (24 - currentHour + 9) * 60 * 60 * 1000 - currentTime.getMinutes() * 60 * 1000 - currentTime.getSeconds() * 1000 - currentTime.getMilliseconds();
171
+ }
172
+ else {
173
+ waitTime = (9 - currentHour) * 60 * 60 * 1000 - currentTime.getMinutes() * 60 * 1000 - currentTime.getSeconds() * 1000 - currentTime.getMilliseconds();
174
+ }
175
+ await new Promise(resolve => setTimeout(resolve, waitTime));
176
+ }
177
+ }
178
+ const apiUrl = 'https://cdp.novin.marketing/api/users/sendEmailBatch';
179
+ const results = [];
180
+ const regex = /{{\s*\$\(.*?\)\.item\.json\.(.*?)\s*}}/g;
181
+ const subjectExpressions = [];
182
+ const previewExpressions = [];
183
+ const textExpressions = [];
184
+ let textMatch;
185
+ while ((textMatch = regex.exec(textTemplate)) !== null) {
186
+ textExpressions.push(textMatch[0].trim());
187
+ }
188
+ let subjectMatch;
189
+ while ((subjectMatch = regex.exec(subject)) !== null) {
190
+ subjectExpressions.push(subjectMatch[0].trim());
191
+ }
192
+ let previewMatch;
193
+ while ((previewMatch = regex.exec(preview)) !== null) {
194
+ previewExpressions.push(previewMatch[0].trim());
195
+ }
196
+ let j = 0;
197
+ for (let i = 0; i < users.length; i += batchSize) {
198
+ const batchUsers = users.slice(i, i + batchSize);
199
+ let usersAndText = [];
200
+ for (const user of batchUsers) {
201
+ let personalizedText = textTemplate;
202
+ let personalizedSubject = subject;
203
+ let personalizedPreview = preview;
204
+ textExpressions.forEach(expression => {
205
+ let expressionValue = this.evaluateExpression(expression, j);
206
+ if (!expressionValue)
207
+ expressionValue = "";
208
+ personalizedText = personalizedText.replace(expression, expressionValue);
209
+ });
210
+ subjectExpressions.forEach(expression => {
211
+ let expressionValue = this.evaluateExpression(expression, j);
212
+ if (!expressionValue)
213
+ expressionValue = "";
214
+ personalizedSubject = personalizedSubject.replace(expression, expressionValue);
215
+ });
216
+ previewExpressions.forEach(expression => {
217
+ let expressionValue = this.evaluateExpression(expression, j);
218
+ if (!expressionValue)
219
+ expressionValue = "";
220
+ personalizedPreview = personalizedPreview.replace(expression, expressionValue);
221
+ });
222
+ j++;
223
+ if ('_id' in user.json) {
224
+ usersAndText.push({ "userId": user.json._id, "text": personalizedText, subject: personalizedSubject, preview: personalizedPreview });
225
+ }
226
+ else if ('body' in user.json && '_id' in user.json.body) {
227
+ usersAndText.push({ "userId": user.json.body._id, "text": personalizedText, subject: personalizedSubject, preview: personalizedPreview });
228
+ }
229
+ else {
230
+ console.log('Invalid user format');
231
+ }
232
+ }
233
+ const requestBody = {
234
+ usersAndText: usersAndText,
235
+ emailName: emailName,
236
+ senderName: senderName,
237
+ once: oncePerEmail
238
+ };
239
+ const options = {
240
+ method: 'POST',
241
+ url: apiUrl,
242
+ body: requestBody,
243
+ headers: {
244
+ 'Accept': 'application/json',
245
+ 'Content-Type': 'application/json',
246
+ },
247
+ json: true,
248
+ };
249
+ const response = await this.helpers.httpRequestWithAuthentication.call(this, 'novinMarketingApi', options);
250
+ results.push(this.helpers.returnJsonArray(response));
251
+ }
252
+ return results;
253
+ }
254
+ }
255
+ exports.SendEmailBatch = SendEmailBatch;
256
+ //# sourceMappingURL=SendEmailBatch.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SendEmailBatch.node.js","sourceRoot":"","sources":["../../../nodes/SendEmailBatch/SendEmailBatch.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "node": "n8n-nodes-base.SendEmailBatch",
3
+ "nodeVersion": "1",
4
+ "codexVersion": "1",
5
+ "categories": [
6
+ "Miscellaneous"
7
+ ],
8
+ "resources": {
9
+ "credentialDocumentation": [
10
+ {
11
+ "url": ""
12
+ }
13
+ ],
14
+ "primaryDocumentation": [
15
+ {
16
+ "url": ""
17
+ }
18
+ ]
19
+ }
20
+ }
@@ -8,7 +8,7 @@ class SendSms {
8
8
  name: 'sendSms',
9
9
  icon: 'file:SendSms.svg',
10
10
  group: ['transform'],
11
- version: [2, 3, 4, 5],
11
+ version: [2, 3, 4, 5, 6],
12
12
  subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
13
13
  description: 'Node to Send Sms',
14
14
  defaults: {
@@ -30,52 +30,11 @@ class SendSms {
30
30
  },
31
31
  },
32
32
  properties: [
33
- {
34
- displayName: 'Resource',
35
- name: 'resource',
36
- type: 'options',
37
- noDataExpression: true,
38
- options: [
39
- {
40
- name: 'Send Sm',
41
- value: 'NovinSendSms',
42
- },
43
- ],
44
- default: 'NovinSendSms',
45
- },
46
- {
47
- displayName: 'Operation',
48
- name: 'operation',
49
- type: 'options',
50
- noDataExpression: true,
51
- displayOptions: {
52
- show: {
53
- resource: [
54
- 'NovinSendSms',
55
- ],
56
- },
57
- },
58
- options: [
59
- {
60
- name: 'Post',
61
- value: 'post',
62
- action: 'Send sms',
63
- description: 'Send Sms',
64
- routing: {
65
- request: {
66
- method: 'POST',
67
- url: '/users/sendSMS2',
68
- },
69
- },
70
- },
71
- ],
72
- default: 'post',
73
- },
74
33
  {
75
34
  displayName: 'User ID',
76
35
  displayOptions: {
77
36
  show: {
78
- '@version': [5],
37
+ '@version': [5, 6],
79
38
  },
80
39
  },
81
40
  name: 'userId',
@@ -128,6 +87,27 @@ class SendSms {
128
87
  },
129
88
  },
130
89
  },
90
+ {
91
+ displayName: 'Operation',
92
+ name: 'operation',
93
+ type: 'options',
94
+ noDataExpression: true,
95
+ options: [
96
+ {
97
+ name: 'Post',
98
+ value: 'post',
99
+ action: 'Send sms',
100
+ description: 'Send Sms',
101
+ routing: {
102
+ request: {
103
+ method: 'POST',
104
+ url: '/users/sendSMS2',
105
+ },
106
+ },
107
+ },
108
+ ],
109
+ default: 'post',
110
+ },
131
111
  ],
132
112
  };
133
113
  }
@@ -1 +1 @@
1
- {"version":3,"file":"SendSms.node.js","sourceRoot":"","sources":["../../../nodes/SendSms/SendSms.node.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"SendSms.node.js","sourceRoot":"","sources":["../../../nodes/SendSms/SendSms.node.ts"],"names":[],"mappings":";;;AAKA,MAAa,OAAO;IAApB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,kBAAkB;YACxB,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;YACxB,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,kBAAkB;YAC/B,QAAQ,EAAE;gBACT,IAAI,EAAE,gBAAgB;aACtB;YACD,MAAM,EAAE,CAAC,MAAM,CAAC;YAChB,OAAO,EAAE,CAAC,MAAM,CAAC;YACjB,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,mBAAmB;oBACzB,QAAQ,EAAE,IAAI;iBACd;aACD;YACD,eAAe,EAAE;gBAChB,OAAO,EAAE,iCAAiC;gBAE1C,OAAO,EAAE;oBACR,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBAClC;aACD;YACD,UAAU,EAAE;gBAGX;oBACC,WAAW,EAAE,SAAS;oBACtB,cAAc,EAAE;wBACf,IAAI,EAAE;4BACL,UAAU,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC;yBAClB;qBACD;oBACD,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,UAAU;oBACvB,OAAO,EAAE;wBACR,IAAI,EAAE;4BACL,QAAQ,EAAE,QAAQ;4BAClB,IAAI,EAAE,MAAM;yBACZ;qBACD;iBACD;gBACD;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,SAAS;oBACf,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,0BAA0B;oBACvC,OAAO,EAAE;wBACR,IAAI,EAAE;4BACL,QAAQ,EAAE,SAAS;4BACnB,IAAI,EAAE,MAAM;yBACZ;qBACD;iBACD;gBACD;oBACC,WAAW,EAAE,aAAa;oBAC1B,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,gBAAgB;oBAC7B,OAAO,EAAE;wBACR,IAAI,EAAE;4BACL,QAAQ,EAAE,MAAM;4BAChB,IAAI,EAAE,MAAM;yBACZ;qBACD;iBACD;gBACD;oBACC,WAAW,EAAE,wBAAwB;oBACrC,IAAI,EAAE,qBAAqB;oBAC3B,IAAI,EAAE,SAAS;oBACf,OAAO,EAAE,KAAK;oBACd,OAAO,EAAE;wBACR,IAAI,EAAE;4BACL,QAAQ,EAAE,MAAM;4BAChB,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,aAAa;yBACpB;qBACD;iBACD;gBACD;oBACC,WAAW,EAAE,WAAW;oBACxB,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,MAAM;4BACb,MAAM,EAAE,UAAU;4BAClB,WAAW,EAAE,UAAU;4BACvB,OAAO,EAAE;gCACR,OAAO,EAAE;oCACR,MAAM,EAAE,MAAM;oCACd,GAAG,EAAE,iBAAiB;iCACtB;6BACD;yBACD;qBACD;oBACD,OAAO,EAAE,MAAM;iBACf;aAED;SACD,CAAC;IAGH,CAAC;CAAA;AAlHD,0BAkHC"}
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "node": "n8n-nodes-base.SendSms",
3
- "nodeVersion": "5",
4
- "codexVersion": "5",
3
+ "nodeVersion": "6",
4
+ "codexVersion": "6",
5
5
  "categories": [
6
6
  "Miscellaneous"
7
7
  ],
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
2
+ <svg fill="#000000" width="800px" height="800px" viewBox="0 -32 576 576" xmlns="http://www.w3.org/2000/svg"><path d="M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z"/></svg>
@@ -0,0 +1,5 @@
1
+ import { INodeType, INodeTypeDescription, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
2
+ export declare class SendSmsBatch implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,179 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SendSmsBatch = void 0;
4
+ class SendSmsBatch {
5
+ constructor() {
6
+ this.description = {
7
+ displayName: 'Novin Send Sms Batch',
8
+ name: 'sendSmsBatch',
9
+ icon: 'file:SendSms.svg',
10
+ group: ['transform'],
11
+ version: [1],
12
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
13
+ description: 'Node to Send Sms In batch',
14
+ defaults: {
15
+ name: 'Novin Send Sms Batch',
16
+ },
17
+ inputs: ['main'],
18
+ outputs: ['main'],
19
+ credentials: [
20
+ {
21
+ name: 'novinMarketingApi',
22
+ required: true,
23
+ },
24
+ ],
25
+ requestDefaults: {
26
+ baseURL: 'http://localhost:3000/api',
27
+ headers: {
28
+ Accept: 'application/json',
29
+ 'Content-Type': 'application/json',
30
+ },
31
+ },
32
+ properties: [
33
+ {
34
+ displayName: 'Users',
35
+ name: 'users',
36
+ type: 'string',
37
+ default: '{{ $(previousNodename).all() }}',
38
+ placeholder: 'users _id',
39
+ routing: {
40
+ send: {
41
+ property: 'users',
42
+ type: 'body',
43
+ },
44
+ },
45
+ },
46
+ {
47
+ displayName: 'Sms Name',
48
+ name: 'smsName',
49
+ type: 'string',
50
+ default: '',
51
+ placeholder: 'Name of the SMS Campaign',
52
+ routing: {
53
+ send: {
54
+ property: 'smsName',
55
+ type: 'body',
56
+ },
57
+ },
58
+ },
59
+ {
60
+ displayName: 'Sms Message',
61
+ name: 'text',
62
+ type: 'string',
63
+ default: '{{ $(previousNodename).item.json.firstName.value }}',
64
+ placeholder: 'Enter Sms text',
65
+ routing: {
66
+ send: {
67
+ property: 'text',
68
+ type: 'body',
69
+ },
70
+ },
71
+ },
72
+ {
73
+ displayName: 'Once Per Mobile Number',
74
+ name: 'oncePerMobileNumber',
75
+ type: 'boolean',
76
+ default: false,
77
+ routing: {
78
+ send: {
79
+ property: 'once',
80
+ type: 'body',
81
+ value: '={{$value}}',
82
+ },
83
+ },
84
+ },
85
+ {
86
+ displayName: 'Dont Disturb',
87
+ name: 'dontDisturb',
88
+ type: 'boolean',
89
+ default: true,
90
+ },
91
+ {
92
+ displayName: 'Batch Size',
93
+ name: 'batchSize',
94
+ type: 'number',
95
+ default: 20,
96
+ description: 'Number of messages to accumulate before sending a batch',
97
+ },
98
+ ],
99
+ };
100
+ }
101
+ async execute() {
102
+ const users = this.getNodeParameter('users', 0);
103
+ const dontDisturb = this.getNodeParameter('dontDisturb', 0);
104
+ const oncePerMobileNumber = this.getNodeParameter('oncePerMobileNumber', 0);
105
+ const parameters = this.getNode().parameters;
106
+ let textTemplate = parameters.text;
107
+ if (textTemplate.startsWith('=')) {
108
+ textTemplate = textTemplate.substring(1);
109
+ }
110
+ const smsName = this.getNodeParameter('smsName', 0);
111
+ const batchSize = this.getNodeParameter('batchSize', 0);
112
+ if (dontDisturb) {
113
+ const currentTime = new Date();
114
+ const currentHour = currentTime.getHours();
115
+ if (currentHour >= 22 || currentHour < 9) {
116
+ let waitTime = 0;
117
+ if (currentHour >= 22) {
118
+ waitTime = (24 - currentHour + 9) * 60 * 60 * 1000 - currentTime.getMinutes() * 60 * 1000 - currentTime.getSeconds() * 1000 - currentTime.getMilliseconds();
119
+ }
120
+ else {
121
+ waitTime = (9 - currentHour) * 60 * 60 * 1000 - currentTime.getMinutes() * 60 * 1000 - currentTime.getSeconds() * 1000 - currentTime.getMilliseconds();
122
+ }
123
+ await new Promise(resolve => setTimeout(resolve, waitTime));
124
+ }
125
+ }
126
+ const apiUrl = 'https://cdp.novin.marketing/api/users/sendSMSBatch';
127
+ const results = [];
128
+ const regex = /{{\s*\$\(.*?\)\.item\.json\.(.*?)\s*}}/g;
129
+ const expressions = [];
130
+ let match;
131
+ while ((match = regex.exec(textTemplate)) !== null) {
132
+ expressions.push(match[0].trim());
133
+ }
134
+ let j = 0;
135
+ for (let i = 0; i < users.length; i += batchSize) {
136
+ const batchUsers = users.slice(i, i + batchSize);
137
+ let usersAndText = [];
138
+ for (const user of batchUsers) {
139
+ let personalizedText = textTemplate;
140
+ expressions.forEach(expression => {
141
+ let expressionValue = this.evaluateExpression(expression, j);
142
+ if (!expressionValue)
143
+ expressionValue = "";
144
+ personalizedText = personalizedText.replace(expression, expressionValue);
145
+ });
146
+ j++;
147
+ if ('_id' in user.json) {
148
+ usersAndText.push({ "userId": user.json._id, "text": personalizedText });
149
+ }
150
+ else if ('body' in user.json && '_id' in user.json.body) {
151
+ usersAndText.push({ "userId": user.json.body._id, "text": personalizedText });
152
+ }
153
+ else {
154
+ console.log('Invalid user format');
155
+ }
156
+ }
157
+ const requestBody = {
158
+ usersAndText: usersAndText,
159
+ smsName: smsName,
160
+ once: oncePerMobileNumber
161
+ };
162
+ const options = {
163
+ method: 'POST',
164
+ url: apiUrl,
165
+ body: requestBody,
166
+ headers: {
167
+ 'Accept': 'application/json',
168
+ 'Content-Type': 'application/json',
169
+ },
170
+ json: true,
171
+ };
172
+ const response = await this.helpers.httpRequestWithAuthentication.call(this, 'novinMarketingApi', options);
173
+ results.push(this.helpers.returnJsonArray(response));
174
+ }
175
+ return results;
176
+ }
177
+ }
178
+ exports.SendSmsBatch = SendSmsBatch;
179
+ //# sourceMappingURL=SendSmsBatch.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SendSmsBatch.node.js","sourceRoot":"","sources":["../../../nodes/SendSmsBatch/SendSmsBatch.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "node": "n8n-nodes-base.SendSmsBatch",
3
+ "nodeVersion": "1",
4
+ "codexVersion": "1",
5
+ "categories": [
6
+ "Miscellaneous"
7
+ ],
8
+ "resources": {
9
+ "credentialDocumentation": [
10
+ {
11
+ "url": ""
12
+ }
13
+ ],
14
+ "primaryDocumentation": [
15
+ {
16
+ "url": ""
17
+ }
18
+ ]
19
+ }
20
+ }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-novinmarketing",
3
- "version": "0.1.93",
3
+ "version": "0.1.97",
4
4
  "description": "Novin Marketing Workflow Nodes",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"
@@ -35,7 +35,9 @@
35
35
  "nodes": [
36
36
  "dist/nodes/GetSegmentUsers/GetSegmentUsers.node.js",
37
37
  "dist/nodes/SendSms/SendSms.node.js",
38
+ "dist/nodes/SendSmsBatch/SendSmsBatch.node.js",
38
39
  "dist/nodes/SendEmail/SendEmail.node.js",
40
+ "dist/nodes/SendEmail/SendEmailBatch.node.js",
39
41
  "dist/nodes/SendWebPush/SendWebPush.node.js",
40
42
  "dist/nodes/TagOperations/TagOperations.node.js",
41
43
  "dist/nodes/HasConditions/HasConditions.node.js",
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/authentication.d.ts","../node_modules/n8n-workflow/dist/constants.d.ts","../node_modules/n8n-workflow/dist/deferredpromise.d.ts","../node_modules/n8n-workflow/dist/executionstatus.d.ts","../node_modules/n8n-workflow/dist/errors/application.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/expression.d.ts","../node_modules/n8n-workflow/dist/workflow.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/workflowhooks.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-operation.error.d.ts","../node_modules/axios/index.d.ts","../node_modules/n8n-workflow/dist/interfaces.d.ts","../node_modules/n8n-workflow/dist/loggerproxy.d.ts","../node_modules/n8n-workflow/dist/errorreporterproxy.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/main.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/options.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/parser.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/printer.d.ts","../node_modules/@n8n/tournament/node_modules/recast/main.d.ts","../node_modules/@n8n/tournament/dist/expressionsplitter.d.ts","../node_modules/@n8n/tournament/dist/expressionbuilder.d.ts","../node_modules/@n8n/tournament/dist/analysis.d.ts","../node_modules/@n8n/tournament/dist/index.d.ts","../node_modules/n8n-workflow/dist/expressionevaluatorproxy.d.ts","../node_modules/n8n-workflow/dist/nodehelpers.d.ts","../node_modules/n8n-workflow/dist/observableobject.d.ts","../node_modules/n8n-workflow/dist/telemetryhelpers.d.ts","../node_modules/n8n-workflow/dist/errors/credential-access-error.d.ts","../node_modules/n8n-workflow/dist/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/errors/index.d.ts","../node_modules/n8n-workflow/dist/cron.d.ts","../node_modules/n8n-workflow/dist/globalstate.d.ts","../node_modules/n8n-workflow/dist/messageeventbus.d.ts","../node_modules/n8n-workflow/dist/routingnode.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxy.d.ts","../node_modules/n8n-workflow/dist/versionednodetype.d.ts","../node_modules/n8n-workflow/dist/typevalidation.d.ts","../node_modules/n8n-workflow/dist/utils.d.ts","../node_modules/n8n-workflow/dist/type-guards.d.ts","../node_modules/n8n-workflow/dist/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionextension.d.ts","../node_modules/n8n-workflow/dist/extensions/index.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionparser.d.ts","../node_modules/n8n-workflow/dist/nativemethods/index.d.ts","../node_modules/n8n-workflow/dist/nodeparameters/filterparameter.d.ts","../node_modules/n8n-workflow/dist/index.d.ts","../credentials/novinmarketingapi.credentials.ts","../nodes/events/events.node.ts","../nodes/getsegmentusers/getsegmentusers.node.ts","../nodes/hasconditions/hasconditions.node.ts","../nodes/items/items.node.ts","../nodes/linkclickcheck/linkclickcheck.node.ts","../nodes/sendemail/sendemail.node.ts","../nodes/sendsms/sendsms.node.ts","../nodes/sendtocallcenter/sendtocallcenter.node.ts","../nodes/sendwebpush/sendwebpush.node.ts","../nodes/tagoperations/tagoperations.node.ts","../nodes/voucher/voucher.node.ts","../nodes/events/events.node.json","../nodes/getsegmentusers/getsegmentusers.node.json","../nodes/hasconditions/hasconditions.node.json","../nodes/items/items.node.json","../nodes/linkclickcheck/linkclickcheck.node.json","../nodes/sendemail/sendemail.node.json","../nodes/sendsms/sendsms.node.json","../nodes/sendtocallcenter/sendtocallcenter.node.json","../nodes/sendwebpush/sendwebpush.node.json","../nodes/tagoperations/tagoperations.node.json","../nodes/voucher/voucher.node.json","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","d00d9369b2ee770658530f04dc09cd14deebdc6456816c5ecd5495911b1cae84","c7be92797eb53bc47793ef90c58c031fefe8e2c3e634489a56a850e42aad3782","8b9e20585ff8d1664c6cd14d4b02ccc46300a7cf30871fae19436a5babedd86d","730a376d0f37799a763a280afb02a19e3ef2e512ce6412db611777d3c61907b8","7e17bc482ade0e34ec7d328767bfd36b38acd50437af0da5b8fb0d2fbd2afb50","b7a7117fdb66f305e790c4ada2165c9a03d79106668759e910f50b2a0ccf748a","054eafa956d5592e6a91c2553e5657ee3032ed50121a65da1079c96d82631459","b4ef62e65d4fe7b19b93fa02209c7bb662afb8ae16b3ba575f7d773439c53fb0","fde6447e38a8f037c783713432c3fcb154aa34c17b97c55797c373cf8ff22475","d26f0063f76792d3642dc318f54d0e444828d1b211982f86cd1d65d5e4d6660b","3a8753e52cf95be9fb0ffd3a4577adf52d5b335df357cd0760067ce3175b6e02","c2e81cdcaaaacf8fb582b2dba7dd20e61d69137aa4334592818cdd00cc9be2ee","f31b28fee1954958a5dd61449797e800e972777618c78d6c21a6bb3ff3d2e611","d88eff4699ac491c3b470fe4ef7bd8eadefedb23d1ae7109da33e34f0538e321","4acc812d51b1b059ce12844bd58966a4891190355e1e9b262b301e7036fdea5d","f64487e06875cfbe0cc854328920403df337dc6c1925070995653ac71c266c0e","2a495d35c81ad7bfc6e13687147c2d11a41205c8f341ad024edc4ad775763de9","6ed8cd0313f2a4c0d3080c0d324b31be20766f53639161bef0405e1c8a888152","84e41060dd913fc5466aa6a04c5ebec55e9d76ab1f5e3917c8492797d8679701","e78705f977ecfcc36de9ab57841ad7a617ef649b07a995577fd857f1d175f730","5083850590c7890ffb680f0c9838f48b07eb8b2f7dbe02874858fcac0691705d","02a4a2284d423d8ccc3a77aa9257c34fdac28cddfb46f73178e60f6a1b1b31e9","3ee8e014aab37dbd755401967fbb9602221550038f6b8da6cedd5291a918ae0a","826f3c6a6d737e0d330522094a21cde94a202c5373448240ba483709cb829aec","7e4a23f6f3763da4a06900935d22acfd463c375cada5ab325e3980bd6c95d5b3","f3e045e81b47113fa02aaf9637b9ef84347610aaceda60a0d8316aabc3f03638","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","226dbfe4506447111bd898161d47850f8c57f04cbb6a3a6d487b7939dbf89b1b","13f846a45f738733c8a63a06eaa9f580e9c07eb7aed5d8a2c674114846a42175","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","1b5d04b01ffda14ab49924c1c5601c1d29df55ea9bfd281d38082730bebf0295","d6220bee7bd245bc2a377f1a8ef31c496132cc9c7e7e3937e7dd4cbbcec0b38d","da4868424f5ea67d59e98705dab39055000d839a1250ac0cc80bda366c89fddc","ef9fa1a5a3f7976bbe5f027069462d88e3d1675b7ae6ba028149747e6b89c011","9ac11c93c1ba61461e6528e335e8de5e11efb11f17dbf1b1a141709cd8ec78e7","edd5e20e9eb8cb2eaf941d431af3ab69a9b94e7f5d8699b4c938fee1be8d53c4","315438c7c6fb8645f6862af11b4dcfb7784ebff919056da1dfc3007ac8d5468d","079b69839b44fbf66213d8c9fc3061c1e76db07d17a1c6d16ed656ca5b9e2eb4","37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","6a5a7df74a63e3c3e34c8d4eab2bc8bdc78e242331105e77a428daabcc8ee80a","0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","8131b8cb20786d5493b9d48f391c7579b9230ae1ce37a24482b50a753b1da428","0234584eaf3c5c21e7d3b79e1a9d71551e2a6fa5ca25bdc39c544f00e6e52b1e","304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","65f860ce414096afe4ae28eab8ecd3499420b634397baa1649edd8740bd2c7c1","f5597d80611ffa239d3fd58128847862edc91fb2712a062c5cee3cff7a4f1aab","4f72fdfec1e897afe89ae1caceafb674a541ef1a6ec5a2495cdf3c6858cbb56f","951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","d2a335b37e5668b990a634f470297fb95b2c35b98ebdcf9be116903f1dcfc4d9","9f8a16e3c39e66f0e3b92d8f616a3d0abbd1165edf1ebc80a8061a51c6bc284c","a31fa681c78be708a00fd60dd7303c88dada897d732d47cb2c5c048963231df5","1bf2030f5972e55ceb3591d7e117c9d0e62c3fb302f24e426a470d9a75931077","5067e5ccf5e8a516f6bd8668ac660bace0b953298740dbb675d38e7ff00f482a","0a0903a245127de02e4f221f3a7c2483d63dbc9d2ae3d4f81a88acaac7da84ed","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","1f981721ece2d049f9dbd84a00b906915fa358aa1397419546501b866a38b982","b79ef2d2e4d26abd3c9bc4e72d4daa09feb0e6044c7872b587bf6b43d8a8838d","fc26dfc35b8bae3a16258fa4423e6cb5d6e829554d7e282fb4fa0aed884494ef",{"version":"4e83810834f0df63b66e4be300526979b0b96344cd39480083a27335d17fc729","signature":"e5e2abc9a7552faccf5d968793b4bf1fd60990a4bf51482d35bf458d62a1a865"},{"version":"0460783c0cb52c24e8448e37173ade9ba527f5ec3bec355bf7df4cb04a57503c","signature":"c744ba117eeb62395ce13ba759e98c23b96a85718c82f67c31c97d7cabf6839b"},{"version":"82f45471f27a57767b3945b92a129ac76e921aa44db4317a265a0179e1203076","signature":"d4f718ec3244cd21020c398ba91c9db722c3e8dbf68c154b9c84f120958931f9"},{"version":"784f833002eb683b54331c1cec04d521870c4ed1131e4d6bfb7307eb5a711254","signature":"4a2442aeae62a7c6e5e28d834a04edb988b770f95f1937df4a66df112a21bd65"},{"version":"f4c029d228992db9afee1c4d6d1c796ba80c8bb75a8e1a1b91dabfd560c8f2f7","signature":"968c2bac3efe471fae3173a417099de2911165c6e3e5332a7cf6c2ce9efa8b47"},{"version":"775dc4ad48c717005f55e8ca74f5efbd0519cade8997cf5e311c25eeb3598449","signature":"0aaf50cd780196351763c0af7a7c4f86961faada7369576b6bd8e96dcfa4365a"},{"version":"eea190bfb4797f6786fcc56229c15bb6c3a1d6abf90f39bf1654b92d47e97a32","signature":"1137ea12527f078ccb882cc4eaeeb2211eaca8dbb9939a704a6e4cf08f26e2b2"},{"version":"cf17cb02aadaae2702d69ece3f455b7e06eeb7356c7013c3fefd3e26e24e0fc2","signature":"f059ed50bb28bc9482f83229ccf450c7b15859d8e8ac9c4043347bb3ff4d25db"},{"version":"b037068b7569b0effcf0311afa289b195883dad6251c7ae1c41ebffd6010af72","signature":"8e1660f51866d5734411a88dab9d5ca18e298de97ac92a7e68e04820e4ad15a4"},{"version":"fead6378cbf963a6438575f9f510feefd362596c30e297b371638ecf36b9a4d6","signature":"f81f7d9aea162a32d07dabb373fad6bdf90ee60385f0e890703647ce890f1740"},{"version":"5836bebd4eaf30079ab31b837917b7f09ac9817f2f3e758653a28507cad5ed30","signature":"9e352657ceeaa4449976c49df8d30d92db2bfa69dcced2ad9d9b9be3d6d74073"},{"version":"31267f57bbb1066ca9fd4dbcc608e5bf02aaf1ed31d8a8511ede1da8cb8f5151","signature":"cfe0512f289b1380d9ccbd5fd4322fab7e53c624bf3c40c4fadd2c05cd3b7f85"},"c6af1649845b88ecb5b1ad6eef602f08b26bedc640bccae686a37ca2d2abf43e","2297d89f4b5358fa1f3c180663598724407bab1aa67acf1e7f79156ed16d95ab","2296a69caacb7001e136a18feb851e2f3cb7e9ae0a6bab9160a2e9a52fffb870","06ac244ec33a2cad08442d87c49c121d09db529849017dd90e0c51d289a7c6c2","455ace90923751c15497870d2aa35408712e89271b087d78f5eeef99269048fa","2565f5980bc49374e351879c9e28436ecc09534655503e97d4496d05013ea9c3","a271bca11cf0a46667d2074f587958294ba0384ceef1a48e6252beb043b77276","c96d52187a220e30bd61e79c8e9c9ff72beb435420743d5f2c92df110b6e44cc","17d9c7c35627f59aed18b5b590000f89d3ab235be8a5f4b411e76a057e8f2375","6816bbf38beb8f6a4401be616d3231344f2fea54dc1db66dcd0f47f590e0651c","e09f5b92fab0d114ca5f6a9dfdee8212348a2d8ac8ea7bfe18af3c924b59a77b","f8984c35651d01e2f3d03701abf9f5dc08711f030a6d75f9f354f029a615da9a","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[109],[78],[76,77],[78,79],[62],[73],[72,73,74,75],[63,64],[63],[62,64,66],[63,69,70],[62,66,67,68],[62,66,69,71],[62,66],[62,69],[62,63,65],[62,63,65,66,67,69,70,71],[135,174],[135,159,174],[174],[135],[135,160,174],[135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[160,174],[47],[47,59],[48,109],[89],[48],[49],[47,48,49,52,53,55,56,57,85,86,87,88,89,90,91,92],[47,55,59],[55,56,109],[53],[52],[47,48,59],[51,59],[59,80],[103],[103,104],[43,44,45,46,50,51,54,59,60,61,81,82,83,84,93,94,95,96,97,98,99,100,101,102,105,106,107,108],[42,43,44,45,46,49,51,52,53,54,56,57,58,109],[59],[50,59]],"referencedMap":[[110,1],[79,2],[78,3],[80,4],[73,5],[74,6],[76,7],[65,8],[64,9],[63,10],[71,11],[69,12],[70,13],[67,14],[68,15],[66,16],[72,17],[159,18],[160,19],[135,20],[138,20],[157,18],[158,18],[148,18],[147,21],[145,18],[140,18],[153,18],[151,18],[155,18],[139,18],[152,18],[156,18],[141,18],[142,18],[154,18],[136,18],[143,18],[144,18],[146,18],[150,18],[161,22],[149,18],[137,18],[174,23],[168,22],[170,24],[169,22],[162,22],[163,22],[165,22],[167,22],[171,24],[172,24],[164,24],[166,24],[61,25],[48,26],[55,27],[90,28],[85,29],[92,30],[49,29],[93,31],[56,32],[57,33],[86,29],[89,34],[91,26],[87,35],[52,36],[88,35],[53,27],[50,37],[81,38],[104,39],[105,40],[109,41],[59,42],[60,43],[96,43],[82,37],[108,43],[83,43],[97,37],[84,43],[102,43],[100,43],[101,43],[99,43],[51,44],[98,37],[54,43],[111,1],[112,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[119,1],[120,1],[121,1]],"exportedModulesMap":[[110,1],[79,2],[78,3],[80,4],[73,5],[74,6],[76,7],[65,8],[64,9],[63,10],[71,11],[69,12],[70,13],[67,14],[68,15],[66,16],[72,17],[159,18],[160,19],[135,20],[138,20],[157,18],[158,18],[148,18],[147,21],[145,18],[140,18],[153,18],[151,18],[155,18],[139,18],[152,18],[156,18],[141,18],[142,18],[154,18],[136,18],[143,18],[144,18],[146,18],[150,18],[161,22],[149,18],[137,18],[174,23],[168,22],[170,24],[169,22],[162,22],[163,22],[165,22],[167,22],[171,24],[172,24],[164,24],[166,24],[61,25],[48,26],[55,27],[90,28],[85,29],[92,30],[49,29],[93,31],[56,32],[57,33],[86,29],[89,34],[91,26],[87,35],[52,36],[88,35],[53,27],[50,37],[81,38],[104,39],[105,40],[109,41],[59,42],[60,43],[96,43],[82,37],[108,43],[83,43],[97,37],[84,43],[102,43],[100,43],[101,43],[99,43],[51,44],[98,37],[54,43],[111,1],[112,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[119,1],[120,1],[121,1]],"semanticDiagnosticsPerFile":[110,79,78,77,80,73,74,75,76,65,64,63,71,69,70,67,68,66,72,62,134,159,160,135,138,157,158,148,147,145,140,153,151,155,139,152,156,141,142,154,136,143,144,146,150,161,149,137,174,173,168,170,169,162,163,165,167,171,172,164,166,58,42,43,44,94,45,61,48,55,47,90,85,92,49,93,56,57,86,89,91,87,52,88,53,46,50,81,104,106,103,105,95,109,59,60,96,107,82,108,83,97,84,102,100,101,99,51,98,54,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,41,1,122,111,123,112,124,113,125,114,126,115,127,116,128,117,129,118,130,119,131,120,132,121,133]},"version":"4.8.4"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/authentication.d.ts","../node_modules/n8n-workflow/dist/constants.d.ts","../node_modules/n8n-workflow/dist/deferredpromise.d.ts","../node_modules/n8n-workflow/dist/executionstatus.d.ts","../node_modules/n8n-workflow/dist/errors/application.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/expression.d.ts","../node_modules/n8n-workflow/dist/workflow.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/workflowhooks.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-operation.error.d.ts","../node_modules/axios/index.d.ts","../node_modules/n8n-workflow/dist/interfaces.d.ts","../node_modules/n8n-workflow/dist/loggerproxy.d.ts","../node_modules/n8n-workflow/dist/errorreporterproxy.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/main.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/options.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/parser.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/printer.d.ts","../node_modules/@n8n/tournament/node_modules/recast/main.d.ts","../node_modules/@n8n/tournament/dist/expressionsplitter.d.ts","../node_modules/@n8n/tournament/dist/expressionbuilder.d.ts","../node_modules/@n8n/tournament/dist/analysis.d.ts","../node_modules/@n8n/tournament/dist/index.d.ts","../node_modules/n8n-workflow/dist/expressionevaluatorproxy.d.ts","../node_modules/n8n-workflow/dist/nodehelpers.d.ts","../node_modules/n8n-workflow/dist/observableobject.d.ts","../node_modules/n8n-workflow/dist/telemetryhelpers.d.ts","../node_modules/n8n-workflow/dist/errors/credential-access-error.d.ts","../node_modules/n8n-workflow/dist/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/errors/index.d.ts","../node_modules/n8n-workflow/dist/cron.d.ts","../node_modules/n8n-workflow/dist/globalstate.d.ts","../node_modules/n8n-workflow/dist/messageeventbus.d.ts","../node_modules/n8n-workflow/dist/routingnode.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxy.d.ts","../node_modules/n8n-workflow/dist/versionednodetype.d.ts","../node_modules/n8n-workflow/dist/typevalidation.d.ts","../node_modules/n8n-workflow/dist/utils.d.ts","../node_modules/n8n-workflow/dist/type-guards.d.ts","../node_modules/n8n-workflow/dist/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionextension.d.ts","../node_modules/n8n-workflow/dist/extensions/index.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionparser.d.ts","../node_modules/n8n-workflow/dist/nativemethods/index.d.ts","../node_modules/n8n-workflow/dist/nodeparameters/filterparameter.d.ts","../node_modules/n8n-workflow/dist/index.d.ts","../credentials/novinmarketingapi.credentials.ts","../nodes/events/events.node.ts","../nodes/getsegmentusers/getsegmentusers.node.ts","../nodes/hasconditions/hasconditions.node.ts","../nodes/items/items.node.ts","../nodes/linkclickcheck/linkclickcheck.node.ts","../nodes/sendemail/sendemail.node.ts","../nodes/sendemailbatch/sendemailbatch.node.ts","../nodes/sendsms/sendsms.node.ts","../nodes/sendsmsbatch/sendsmsbatch.node.ts","../nodes/sendtocallcenter/sendtocallcenter.node.ts","../nodes/sendwebpush/sendwebpush.node.ts","../nodes/tagoperations/tagoperations.node.ts","../nodes/voucher/voucher.node.ts","../nodes/events/events.node.json","../nodes/getsegmentusers/getsegmentusers.node.json","../nodes/hasconditions/hasconditions.node.json","../nodes/items/items.node.json","../nodes/linkclickcheck/linkclickcheck.node.json","../nodes/sendemail/sendemail.node.json","../nodes/sendemailbatch/sendemailbatch.node.json","../nodes/sendsms/sendsms.node.json","../nodes/sendsmsbatch/sendsmsbatch.node.json","../nodes/sendtocallcenter/sendtocallcenter.node.json","../nodes/sendwebpush/sendwebpush.node.json","../nodes/tagoperations/tagoperations.node.json","../nodes/voucher/voucher.node.json","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","d00d9369b2ee770658530f04dc09cd14deebdc6456816c5ecd5495911b1cae84","c7be92797eb53bc47793ef90c58c031fefe8e2c3e634489a56a850e42aad3782","8b9e20585ff8d1664c6cd14d4b02ccc46300a7cf30871fae19436a5babedd86d","730a376d0f37799a763a280afb02a19e3ef2e512ce6412db611777d3c61907b8","7e17bc482ade0e34ec7d328767bfd36b38acd50437af0da5b8fb0d2fbd2afb50","b7a7117fdb66f305e790c4ada2165c9a03d79106668759e910f50b2a0ccf748a","054eafa956d5592e6a91c2553e5657ee3032ed50121a65da1079c96d82631459","b4ef62e65d4fe7b19b93fa02209c7bb662afb8ae16b3ba575f7d773439c53fb0","fde6447e38a8f037c783713432c3fcb154aa34c17b97c55797c373cf8ff22475","d26f0063f76792d3642dc318f54d0e444828d1b211982f86cd1d65d5e4d6660b","3a8753e52cf95be9fb0ffd3a4577adf52d5b335df357cd0760067ce3175b6e02","c2e81cdcaaaacf8fb582b2dba7dd20e61d69137aa4334592818cdd00cc9be2ee","f31b28fee1954958a5dd61449797e800e972777618c78d6c21a6bb3ff3d2e611","d88eff4699ac491c3b470fe4ef7bd8eadefedb23d1ae7109da33e34f0538e321","4acc812d51b1b059ce12844bd58966a4891190355e1e9b262b301e7036fdea5d","f64487e06875cfbe0cc854328920403df337dc6c1925070995653ac71c266c0e","2a495d35c81ad7bfc6e13687147c2d11a41205c8f341ad024edc4ad775763de9","6ed8cd0313f2a4c0d3080c0d324b31be20766f53639161bef0405e1c8a888152","84e41060dd913fc5466aa6a04c5ebec55e9d76ab1f5e3917c8492797d8679701","e78705f977ecfcc36de9ab57841ad7a617ef649b07a995577fd857f1d175f730","5083850590c7890ffb680f0c9838f48b07eb8b2f7dbe02874858fcac0691705d","02a4a2284d423d8ccc3a77aa9257c34fdac28cddfb46f73178e60f6a1b1b31e9","3ee8e014aab37dbd755401967fbb9602221550038f6b8da6cedd5291a918ae0a","826f3c6a6d737e0d330522094a21cde94a202c5373448240ba483709cb829aec","7e4a23f6f3763da4a06900935d22acfd463c375cada5ab325e3980bd6c95d5b3","f3e045e81b47113fa02aaf9637b9ef84347610aaceda60a0d8316aabc3f03638","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","226dbfe4506447111bd898161d47850f8c57f04cbb6a3a6d487b7939dbf89b1b","13f846a45f738733c8a63a06eaa9f580e9c07eb7aed5d8a2c674114846a42175","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","1b5d04b01ffda14ab49924c1c5601c1d29df55ea9bfd281d38082730bebf0295","d6220bee7bd245bc2a377f1a8ef31c496132cc9c7e7e3937e7dd4cbbcec0b38d","da4868424f5ea67d59e98705dab39055000d839a1250ac0cc80bda366c89fddc","ef9fa1a5a3f7976bbe5f027069462d88e3d1675b7ae6ba028149747e6b89c011","9ac11c93c1ba61461e6528e335e8de5e11efb11f17dbf1b1a141709cd8ec78e7","edd5e20e9eb8cb2eaf941d431af3ab69a9b94e7f5d8699b4c938fee1be8d53c4","315438c7c6fb8645f6862af11b4dcfb7784ebff919056da1dfc3007ac8d5468d","079b69839b44fbf66213d8c9fc3061c1e76db07d17a1c6d16ed656ca5b9e2eb4","37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","6a5a7df74a63e3c3e34c8d4eab2bc8bdc78e242331105e77a428daabcc8ee80a","0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","8131b8cb20786d5493b9d48f391c7579b9230ae1ce37a24482b50a753b1da428","0234584eaf3c5c21e7d3b79e1a9d71551e2a6fa5ca25bdc39c544f00e6e52b1e","304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","65f860ce414096afe4ae28eab8ecd3499420b634397baa1649edd8740bd2c7c1","f5597d80611ffa239d3fd58128847862edc91fb2712a062c5cee3cff7a4f1aab","4f72fdfec1e897afe89ae1caceafb674a541ef1a6ec5a2495cdf3c6858cbb56f","951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","d2a335b37e5668b990a634f470297fb95b2c35b98ebdcf9be116903f1dcfc4d9","9f8a16e3c39e66f0e3b92d8f616a3d0abbd1165edf1ebc80a8061a51c6bc284c","a31fa681c78be708a00fd60dd7303c88dada897d732d47cb2c5c048963231df5","1bf2030f5972e55ceb3591d7e117c9d0e62c3fb302f24e426a470d9a75931077","5067e5ccf5e8a516f6bd8668ac660bace0b953298740dbb675d38e7ff00f482a","0a0903a245127de02e4f221f3a7c2483d63dbc9d2ae3d4f81a88acaac7da84ed","0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","1f981721ece2d049f9dbd84a00b906915fa358aa1397419546501b866a38b982","b79ef2d2e4d26abd3c9bc4e72d4daa09feb0e6044c7872b587bf6b43d8a8838d","fc26dfc35b8bae3a16258fa4423e6cb5d6e829554d7e282fb4fa0aed884494ef",{"version":"4e83810834f0df63b66e4be300526979b0b96344cd39480083a27335d17fc729","signature":"e5e2abc9a7552faccf5d968793b4bf1fd60990a4bf51482d35bf458d62a1a865"},{"version":"0460783c0cb52c24e8448e37173ade9ba527f5ec3bec355bf7df4cb04a57503c","signature":"c744ba117eeb62395ce13ba759e98c23b96a85718c82f67c31c97d7cabf6839b"},{"version":"82f45471f27a57767b3945b92a129ac76e921aa44db4317a265a0179e1203076","signature":"d4f718ec3244cd21020c398ba91c9db722c3e8dbf68c154b9c84f120958931f9"},{"version":"784f833002eb683b54331c1cec04d521870c4ed1131e4d6bfb7307eb5a711254","signature":"4a2442aeae62a7c6e5e28d834a04edb988b770f95f1937df4a66df112a21bd65"},{"version":"f4c029d228992db9afee1c4d6d1c796ba80c8bb75a8e1a1b91dabfd560c8f2f7","signature":"968c2bac3efe471fae3173a417099de2911165c6e3e5332a7cf6c2ce9efa8b47"},{"version":"775dc4ad48c717005f55e8ca74f5efbd0519cade8997cf5e311c25eeb3598449","signature":"0aaf50cd780196351763c0af7a7c4f86961faada7369576b6bd8e96dcfa4365a"},{"version":"eea190bfb4797f6786fcc56229c15bb6c3a1d6abf90f39bf1654b92d47e97a32","signature":"1137ea12527f078ccb882cc4eaeeb2211eaca8dbb9939a704a6e4cf08f26e2b2"},{"version":"2b3cffe9d1390ec9e9f3c146a810385fdfa3529836acea57e27b25928e186681","signature":"3393adec868a5e68c17674095f5a7b0670eef88069d4e302d29b4ce527ffde4b"},{"version":"98108f0719933a9e340428f976b64f9afd91a5ea28f8a83929e4edaa8778e915","signature":"f059ed50bb28bc9482f83229ccf450c7b15859d8e8ac9c4043347bb3ff4d25db"},{"version":"0521b1d63ff9cf3963261c3fa3a83d0519872dd3ef6315b3e4d9e174e340ad0f","signature":"827e461488feeaa5d811d6444ef3ada53898e0b0d0c0bca9ec2d043cb015ae9b"},{"version":"b037068b7569b0effcf0311afa289b195883dad6251c7ae1c41ebffd6010af72","signature":"8e1660f51866d5734411a88dab9d5ca18e298de97ac92a7e68e04820e4ad15a4"},{"version":"fead6378cbf963a6438575f9f510feefd362596c30e297b371638ecf36b9a4d6","signature":"f81f7d9aea162a32d07dabb373fad6bdf90ee60385f0e890703647ce890f1740"},{"version":"5836bebd4eaf30079ab31b837917b7f09ac9817f2f3e758653a28507cad5ed30","signature":"9e352657ceeaa4449976c49df8d30d92db2bfa69dcced2ad9d9b9be3d6d74073"},{"version":"31267f57bbb1066ca9fd4dbcc608e5bf02aaf1ed31d8a8511ede1da8cb8f5151","signature":"cfe0512f289b1380d9ccbd5fd4322fab7e53c624bf3c40c4fadd2c05cd3b7f85"},"c6af1649845b88ecb5b1ad6eef602f08b26bedc640bccae686a37ca2d2abf43e","2297d89f4b5358fa1f3c180663598724407bab1aa67acf1e7f79156ed16d95ab","2296a69caacb7001e136a18feb851e2f3cb7e9ae0a6bab9160a2e9a52fffb870","06ac244ec33a2cad08442d87c49c121d09db529849017dd90e0c51d289a7c6c2","455ace90923751c15497870d2aa35408712e89271b087d78f5eeef99269048fa","2565f5980bc49374e351879c9e28436ecc09534655503e97d4496d05013ea9c3","92ce41e7ee2236fc7451ff362f6d4ee145099be7aa80e99092aae128d2e5490f","f9d919cffdb054c34f35cfef20ebdd8392eee43241ad8d55b8ee59b8f27eded7","a65432ca4d2712169dae287dc383c737ed6f201745a298a312a220c319343bc7","c96d52187a220e30bd61e79c8e9c9ff72beb435420743d5f2c92df110b6e44cc","17d9c7c35627f59aed18b5b590000f89d3ab235be8a5f4b411e76a057e8f2375","6816bbf38beb8f6a4401be616d3231344f2fea54dc1db66dcd0f47f590e0651c","e09f5b92fab0d114ca5f6a9dfdee8212348a2d8ac8ea7bfe18af3c924b59a77b","3e8ddbf23a6154d0e33ff12e893582e470c98542319872e448c58afc2673245a","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[109],[78],[76,77],[78,79],[62],[73],[72,73,74,75],[63,64],[63],[62,64,66],[63,69,70],[62,66,67,68],[62,66,69,71],[62,66],[62,69],[62,63,65],[62,63,65,66,67,69,70,71],[139,178],[139,163,178],[178],[139],[139,164,178],[139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177],[164,178],[47],[47,59],[48,109],[89],[48],[49],[47,48,49,52,53,55,56,57,85,86,87,88,89,90,91,92],[47,55,59],[55,56,109],[53],[52],[47,48,59],[51,59],[59,80],[103],[103,104],[43,44,45,46,50,51,54,59,60,61,81,82,83,84,93,94,95,96,97,98,99,100,101,102,105,106,107,108],[42,43,44,45,46,49,51,52,53,54,56,57,58,109],[59],[50,59]],"referencedMap":[[110,1],[79,2],[78,3],[80,4],[73,5],[74,6],[76,7],[65,8],[64,9],[63,10],[71,11],[69,12],[70,13],[67,14],[68,15],[66,16],[72,17],[163,18],[164,19],[139,20],[142,20],[161,18],[162,18],[152,18],[151,21],[149,18],[144,18],[157,18],[155,18],[159,18],[143,18],[156,18],[160,18],[145,18],[146,18],[158,18],[140,18],[147,18],[148,18],[150,18],[154,18],[165,22],[153,18],[141,18],[178,23],[172,22],[174,24],[173,22],[166,22],[167,22],[169,22],[171,22],[175,24],[176,24],[168,24],[170,24],[61,25],[48,26],[55,27],[90,28],[85,29],[92,30],[49,29],[93,31],[56,32],[57,33],[86,29],[89,34],[91,26],[87,35],[52,36],[88,35],[53,27],[50,37],[81,38],[104,39],[105,40],[109,41],[59,42],[60,43],[96,43],[82,37],[108,43],[83,43],[97,37],[84,43],[102,43],[100,43],[101,43],[99,43],[51,44],[98,37],[54,43],[111,1],[112,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[119,1],[120,1],[121,1],[122,1],[123,1]],"exportedModulesMap":[[110,1],[79,2],[78,3],[80,4],[73,5],[74,6],[76,7],[65,8],[64,9],[63,10],[71,11],[69,12],[70,13],[67,14],[68,15],[66,16],[72,17],[163,18],[164,19],[139,20],[142,20],[161,18],[162,18],[152,18],[151,21],[149,18],[144,18],[157,18],[155,18],[159,18],[143,18],[156,18],[160,18],[145,18],[146,18],[158,18],[140,18],[147,18],[148,18],[150,18],[154,18],[165,22],[153,18],[141,18],[178,23],[172,22],[174,24],[173,22],[166,22],[167,22],[169,22],[171,22],[175,24],[176,24],[168,24],[170,24],[61,25],[48,26],[55,27],[90,28],[85,29],[92,30],[49,29],[93,31],[56,32],[57,33],[86,29],[89,34],[91,26],[87,35],[52,36],[88,35],[53,27],[50,37],[81,38],[104,39],[105,40],[109,41],[59,42],[60,43],[96,43],[82,37],[108,43],[83,43],[97,37],[84,43],[102,43],[100,43],[101,43],[99,43],[51,44],[98,37],[54,43],[111,1],[112,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[119,1],[120,1],[121,1],[122,1],[123,1]],"semanticDiagnosticsPerFile":[110,79,78,77,80,73,74,75,76,65,64,63,71,69,70,67,68,66,72,62,138,163,164,139,142,161,162,152,151,149,144,157,155,159,143,156,160,145,146,158,140,147,148,150,154,165,153,141,178,177,172,174,173,166,167,169,171,175,176,168,170,58,42,43,44,94,45,61,48,55,47,90,85,92,49,93,56,57,86,89,91,87,52,88,53,46,50,81,104,106,103,105,95,109,59,60,96,107,82,108,83,97,84,102,100,101,99,51,98,54,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,41,1,124,111,125,112,126,113,127,114,128,115,129,116,130,117,131,118,132,119,133,120,134,121,135,122,136,123,137]},"version":"4.8.4"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-novinmarketing",
3
- "version": "0.1.93",
3
+ "version": "0.1.97",
4
4
  "description": "Novin Marketing Workflow Nodes",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"
@@ -35,7 +35,9 @@
35
35
  "nodes": [
36
36
  "dist/nodes/GetSegmentUsers/GetSegmentUsers.node.js",
37
37
  "dist/nodes/SendSms/SendSms.node.js",
38
+ "dist/nodes/SendSmsBatch/SendSmsBatch.node.js",
38
39
  "dist/nodes/SendEmail/SendEmail.node.js",
40
+ "dist/nodes/SendEmail/SendEmailBatch.node.js",
39
41
  "dist/nodes/SendWebPush/SendWebPush.node.js",
40
42
  "dist/nodes/TagOperations/TagOperations.node.js",
41
43
  "dist/nodes/HasConditions/HasConditions.node.js",