n8n-nodes-novinmarketing 0.0.5 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist/nodes/HasConditions/HasConditions.node.d.ts +4 -0
  2. package/dist/nodes/HasConditions/HasConditions.node.js +104 -0
  3. package/dist/nodes/HasConditions/HasConditions.node.js.map +1 -0
  4. package/dist/nodes/HasConditions/HasConditions.node.json +20 -0
  5. package/dist/nodes/HasConditions/HasConditions.svg +2 -0
  6. package/dist/nodes/SendEmail/SendEmail.node.js +1 -2
  7. package/dist/nodes/SendEmail/SendEmail.node.js.map +1 -1
  8. package/dist/nodes/{SendSMS/SendSMS.node.js → SendSms/SendSms.node.js} +1 -2
  9. package/dist/nodes/{SendSMS/SendSMS.node.js.map → SendSms/SendSms.node.js.map} +1 -1
  10. package/dist/nodes/SendToCallCenter/SendToCallCenter.node.d.ts +4 -0
  11. package/dist/nodes/SendToCallCenter/SendToCallCenter.node.js +105 -0
  12. package/dist/nodes/SendToCallCenter/SendToCallCenter.node.js.map +1 -0
  13. package/dist/nodes/SendToCallCenter/SendToCallCenter.node.json +20 -0
  14. package/dist/nodes/SendToCallCenter/SendToCallCenter.svg +22 -0
  15. package/dist/nodes/SendWebPush/SendWebPush.node.d.ts +4 -0
  16. package/dist/nodes/SendWebPush/SendWebPush.node.js +262 -0
  17. package/dist/nodes/SendWebPush/SendWebPush.node.js.map +1 -0
  18. package/dist/nodes/SendWebPush/SendWebPush.node.json +20 -0
  19. package/dist/nodes/SendWebPush/SendWebPush.svg +42 -0
  20. package/dist/nodes/Tag/TagOperations.node.d.ts +4 -0
  21. package/dist/nodes/Tag/TagOperations.node.js +169 -0
  22. package/dist/nodes/Tag/TagOperations.node.js.map +1 -0
  23. package/dist/nodes/Tag/TagOperations.node.json +20 -0
  24. package/dist/nodes/Tag/tag.svg +16 -0
  25. package/dist/package.json +6 -3
  26. package/dist/tsconfig.tsbuildinfo +1 -1
  27. package/package.json +6 -3
  28. /package/dist/nodes/{SendSMS/SendSMS.node.d.ts → SendSms/SendSms.node.d.ts} +0 -0
  29. /package/dist/nodes/{SendSMS/SendSMS.node.json → SendSms/SendSms.node.json} +0 -0
  30. /package/dist/nodes/{SendSMS/SendSMS.svg → SendSms/SendSms.svg} +0 -0
@@ -0,0 +1,4 @@
1
+ import { INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class HasConditions implements INodeType {
3
+ description: INodeTypeDescription;
4
+ }
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HasConditions = void 0;
4
+ class HasConditions {
5
+ constructor() {
6
+ this.description = {
7
+ displayName: 'novin Check User Conditions',
8
+ name: 'hasConditions',
9
+ icon: 'file:HasConditions.svg',
10
+ group: ['transform'],
11
+ version: 1,
12
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
13
+ description: 'Node to check user conditions',
14
+ defaults: {
15
+ name: 'Check User Conditions',
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: 'Resource',
35
+ name: 'resource',
36
+ type: 'options',
37
+ noDataExpression: true,
38
+ options: [
39
+ {
40
+ name: 'Check User Condition',
41
+ value: 'hasConditions',
42
+ },
43
+ ],
44
+ default: 'hasConditions',
45
+ },
46
+ {
47
+ displayName: 'Operation',
48
+ name: 'operation',
49
+ type: 'options',
50
+ noDataExpression: true,
51
+ displayOptions: {
52
+ show: {
53
+ resource: [
54
+ 'hasConditions',
55
+ ],
56
+ },
57
+ },
58
+ options: [
59
+ {
60
+ name: 'Post',
61
+ value: 'post',
62
+ action: 'Check user conditions',
63
+ routing: {
64
+ request: {
65
+ method: 'POST',
66
+ url: '/users/matchUser',
67
+ },
68
+ },
69
+ },
70
+ ],
71
+ default: 'post',
72
+ },
73
+ {
74
+ displayName: 'User ID',
75
+ name: 'userId',
76
+ type: 'string',
77
+ default: '',
78
+ placeholder: 'ID of the user In MongoDB',
79
+ routing: {
80
+ send: {
81
+ property: 'userId',
82
+ type: 'body',
83
+ },
84
+ },
85
+ },
86
+ {
87
+ displayName: 'Match Conditions',
88
+ name: 'match',
89
+ type: 'json',
90
+ default: '{"$match":{}}',
91
+ placeholder: 'Enter Conditions',
92
+ routing: {
93
+ send: {
94
+ property: 'match',
95
+ type: 'body',
96
+ },
97
+ },
98
+ },
99
+ ],
100
+ };
101
+ }
102
+ }
103
+ exports.HasConditions = HasConditions;
104
+ //# sourceMappingURL=HasConditions.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HasConditions.node.js","sourceRoot":"","sources":["../../../nodes/HasConditions/HasConditions.node.ts"],"names":[],"mappings":";;;AACA,MAAa,aAAa;IAA1B;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,6BAA6B;YAC1C,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,wBAAwB;YAC9B,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE;gBACT,IAAI,EAAE,uBAAuB;aAC7B;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;gBAC1C,OAAO,EAAE;oBACR,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBAClC;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,sBAAsB;4BAC5B,KAAK,EAAE,eAAe;yBACtB;qBACD;oBACD,OAAO,EAAE,eAAe;iBACxB;gBAED;oBACC,WAAW,EAAE,WAAW;oBACxB,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,cAAc,EAAE;wBACf,IAAI,EAAE;4BACL,QAAQ,EAAE;gCACT,eAAe;6BACf;yBACD;qBACD;oBACD,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,MAAM;4BACb,MAAM,EAAE,uBAAuB;4BAC/B,OAAO,EAAE;gCACR,OAAO,EAAE;oCACR,MAAM,EAAE,MAAM;oCACd,GAAG,EAAE,kBAAkB;iCACvB;6BACD;yBACD;qBACD;oBACD,OAAO,EAAE,MAAM;iBACf;gBACD;oBACC,WAAW,EAAE,SAAS;oBACtB,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,2BAA2B;oBACxC,OAAO,EAAE;wBACR,IAAI,EAAE;4BACL,QAAQ,EAAE,QAAQ;4BAClB,IAAI,EAAE,MAAM;yBACZ;qBACD;iBACD;gBACD;oBACC,WAAW,EAAE,kBAAkB;oBAC/B,IAAI,EAAE,OAAO;oBACb,IAAI,EAAE,MAAM;oBACZ,OAAO,EAAE,eAAe;oBACxB,WAAW,EAAE,kBAAkB;oBAC/B,OAAO,EAAE;wBACR,IAAI,EAAE;4BACL,QAAQ,EAAE,OAAO;4BACjB,IAAI,EAAE,MAAM;yBACZ;qBACD;iBACD;aACD;SACD,CAAC;IACH,CAAC;CAAA;AAjGD,sCAiGC"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "node": "n8n-nodes-base.HasConditions",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": [
6
+ "Miscellaneous"
7
+ ],
8
+ "resources": {
9
+ "credentialDocumentation": [
10
+ {
11
+ "url": ""
12
+ }
13
+ ],
14
+ "primaryDocumentation": [
15
+ {
16
+ "url": ""
17
+ }
18
+ ]
19
+ }
20
+ }
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" ?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
2
+ <svg width="800px" height="800px" viewBox="0 0 50 50" data-name="Layer 1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"><defs><style>.cls-1{fill:#231f20;}.cls-2{fill:#ffffff;}.cls-3{fill:#ff8e5a;}.cls-4{fill:#ffba50;}</style></defs><title/><path class="cls-1" d="M44.693,41.394,35.38,32.607l2.52-2.52.036.036a1.671,1.671,0,0,0,2.36,0l.656-.655a1.674,1.674,0,0,0,0-2.36L33.5,19.654a1.718,1.718,0,0,0-.277-.222V7a2.5,2.5,0,0,0-2.5-2.5H7A2.5,2.5,0,0,0,4.5,7V43A2.5,2.5,0,0,0,7,45.5H30.72a2.5,2.5,0,0,0,2.5-2.5V36.03l8.173,8.663a2.335,2.335,0,0,0,1.657.807h.029a2.338,2.338,0,0,0,1.614-4.106Z"/><path class="cls-2" d="M30.72,44.5H28.64a2.574,2.574,0,0,0-2.546-2.263h-.027A2,2,0,0,0,24.075,40.3H13.644a2,2,0,0,0-1.991,1.938h-.027A2.573,2.573,0,0,0,9.08,44.5H7A1.5,1.5,0,0,1,5.5,43V7A1.5,1.5,0,0,1,7,5.5H30.72A1.5,1.5,0,0,1,32.22,7V19.175a1.656,1.656,0,0,0-1.082.479l-.655.656a1.667,1.667,0,0,0,0,2.359l.036.037L23,30.229l-.037-.036a1.669,1.669,0,0,0-2.359,0l-.655.656a1.667,1.667,0,0,0,0,2.359L27.4,40.662a1.668,1.668,0,0,0,2.36,0l.655-.655a1.672,1.672,0,0,0,0-2.36l-.036-.036,1.844-1.844V43A1.5,1.5,0,0,1,30.72,44.5Z"/><path class="cls-1" d="M10.863,12.761H26.857a.5.5,0,0,0,0-1H10.863a.5.5,0,0,0,0,1Z"/><path class="cls-1" d="M10.863,18.307H26.857a.5.5,0,0,0,0-1H10.863a.5.5,0,0,0,0,1Z"/><path class="cls-1" d="M10.863,23.854H26.857a.5.5,0,0,0,0-1H10.863a.5.5,0,0,0,0,1Z"/><path class="cls-1" d="M10.863,29.4H20.07a.5.5,0,0,0,0-1H10.863a.5.5,0,0,0,0,1Z"/><path class="cls-1" d="M18.77,33.946H10.863a.5.5,0,0,0,0,1H18.77a.5.5,0,0,0,0-1Z"/><rect class="cls-3" height="8.439" transform="translate(-12.407 30.363) rotate(-45)" width="10.641" x="25.127" y="25.939"/><path class="cls-4" d="M29.705,38.354a.669.669,0,0,1,0,.946l-.655.655a.684.684,0,0,1-.946,0L20.651,32.5a.668.668,0,0,1,0-.945l.655-.656a.67.67,0,0,1,.945,0Z"/><path class="cls-4" d="M40.245,27.815a.671.671,0,0,1,0,.946l-.656.655a.67.67,0,0,1-.946,0L31.19,21.962a.668.668,0,0,1,0-.945l.655-.656a.67.67,0,0,1,.945,0Z"/><path class="cls-3" d="M26.094,43.237A1.582,1.582,0,0,1,27.64,44.5H10.08a1.581,1.581,0,0,1,1.546-1.263Z"/><path class="cls-3" d="M12.659,42.237a.991.991,0,0,1,.985-.938H24.075a.992.992,0,0,1,.986.938Z"/><path class="cls-4" d="M44.035,44.035a1.321,1.321,0,0,1-.971.465,1.347,1.347,0,0,1-.943-.493l-8.806-9.334,1.358-1.358,9.334,8.806a1.351,1.351,0,0,1,.493.943A1.406,1.406,0,0,1,44.035,44.035Z"/></svg>
@@ -76,8 +76,7 @@ class SendEmail {
76
76
  name: 'userId',
77
77
  type: 'string',
78
78
  default: '',
79
- placeholder: 'Enter User ID',
80
- description: 'ID of the user',
79
+ placeholder: 'ID of the user In MongoDB',
81
80
  routing: {
82
81
  send: {
83
82
  property: 'userId',
@@ -1 +1 @@
1
- {"version":3,"file":"SendEmail.node.js","sourceRoot":"","sources":["../../../nodes/SendEmail/SendEmail.node.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"SendEmail.node.js","sourceRoot":"","sources":["../../../nodes/SendEmail/SendEmail.node.ts"],"names":[],"mappings":"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"}
@@ -76,8 +76,7 @@ class SendSms {
76
76
  name: 'userId',
77
77
  type: 'string',
78
78
  default: '',
79
- placeholder: 'Enter User ID',
80
- description: 'ID of the user',
79
+ placeholder: 'ID of the user In MongoDB',
81
80
  routing: {
82
81
  send: {
83
82
  property: 'userId',
@@ -1 +1 @@
1
- {"version":3,"file":"SendSms.node.js","sourceRoot":"","sources":["../../../nodes/SendSms/SendSms.node.ts"],"names":[],"mappings":";;;AAEA,MAAa,OAAO;IAApB;QACI,gBAAW,GAAyB;YAChC,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,kBAAkB;YACxB,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,kBAAkB;YAC/B,QAAQ,EAAE;gBACN,IAAI,EAAE,gBAAgB;aACzB;YACD,MAAM,EAAE,CAAC,MAAM,CAAC;YAChB,OAAO,EAAE,CAAC,MAAM,CAAC;YACjB,WAAW,EAAE;gBACT;oBACI,IAAI,EAAE,mBAAmB;oBACzB,QAAQ,EAAE,IAAI;iBACjB;aACJ;YACD,eAAe,EAAE;gBACb,OAAO,EAAE,iCAAiC;gBAC1C,OAAO,EAAE;oBACL,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBACrC;aACJ;YACD,UAAU,EAAE;gBACR;oBACI,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACL;4BACI,IAAI,EAAE,SAAS;4BACf,KAAK,EAAE,cAAc;yBACxB;qBACJ;oBACD,OAAO,EAAE,cAAc;iBAC1B;gBACD;oBACI,WAAW,EAAE,WAAW;oBACxB,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,cAAc,EAAE;wBACZ,IAAI,EAAE;4BACF,QAAQ,EAAE;gCACN,cAAc;6BACjB;yBACJ;qBACJ;oBACD,OAAO,EAAE;wBACL;4BACI,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,MAAM;4BACb,MAAM,EAAE,UAAU;4BAClB,WAAW,EAAE,UAAU;4BACvB,OAAO,EAAE;gCACL,OAAO,EAAE;oCACL,MAAM,EAAE,MAAM;oCACd,GAAG,EAAE,gBAAgB;iCACxB;6BACJ;yBACJ;qBACJ;oBACD,OAAO,EAAE,MAAM;iBAClB;gBACD;oBACI,WAAW,EAAE,SAAS;oBACtB,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,eAAe;oBAC5B,WAAW,EAAE,gBAAgB;oBAC7B,OAAO,EAAE;wBACL,IAAI,EAAE;4BACF,QAAQ,EAAE,QAAQ;4BAClB,IAAI,EAAE,MAAM;yBACf;qBACJ;iBACJ;gBACD;oBACI,WAAW,EAAE,aAAa;oBAC1B,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,gBAAgB;oBAC7B,WAAW,EAAE,sBAAsB;oBACnC,OAAO,EAAE;wBACL,IAAI,EAAE;4BACF,QAAQ,EAAE,MAAM;4BAChB,IAAI,EAAE,MAAM;yBACf;qBACJ;iBACJ;aACJ;SACJ,CAAC;IACN,CAAC;CAAA;AAnGD,0BAmGC"}
1
+ {"version":3,"file":"SendSms.node.js","sourceRoot":"","sources":["../../../nodes/SendSms/SendSms.node.ts"],"names":[],"mappings":";;;AAEA,MAAa,OAAO;IAApB;QACI,gBAAW,GAAyB;YAChC,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,kBAAkB;YACxB,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,kBAAkB;YAC/B,QAAQ,EAAE;gBACN,IAAI,EAAE,gBAAgB;aACzB;YACD,MAAM,EAAE,CAAC,MAAM,CAAC;YAChB,OAAO,EAAE,CAAC,MAAM,CAAC;YACjB,WAAW,EAAE;gBACT;oBACI,IAAI,EAAE,mBAAmB;oBACzB,QAAQ,EAAE,IAAI;iBACjB;aACJ;YACD,eAAe,EAAE;gBACb,OAAO,EAAE,iCAAiC;gBAC1C,OAAO,EAAE;oBACL,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBACrC;aACJ;YACD,UAAU,EAAE;gBACR;oBACI,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACL;4BACI,IAAI,EAAE,SAAS;4BACf,KAAK,EAAE,cAAc;yBACxB;qBACJ;oBACD,OAAO,EAAE,cAAc;iBAC1B;gBACD;oBACI,WAAW,EAAE,WAAW;oBACxB,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,cAAc,EAAE;wBACZ,IAAI,EAAE;4BACF,QAAQ,EAAE;gCACN,cAAc;6BACjB;yBACJ;qBACJ;oBACD,OAAO,EAAE;wBACL;4BACI,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,MAAM;4BACb,MAAM,EAAE,UAAU;4BAClB,WAAW,EAAE,UAAU;4BACvB,OAAO,EAAE;gCACL,OAAO,EAAE;oCACL,MAAM,EAAE,MAAM;oCACd,GAAG,EAAE,gBAAgB;iCACxB;6BACJ;yBACJ;qBACJ;oBACD,OAAO,EAAE,MAAM;iBAClB;gBACD;oBACI,WAAW,EAAE,SAAS;oBACtB,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,2BAA2B;oBACxC,OAAO,EAAE;wBACL,IAAI,EAAE;4BACF,QAAQ,EAAE,QAAQ;4BAClB,IAAI,EAAE,MAAM;yBACf;qBACJ;iBACJ;gBACD;oBACI,WAAW,EAAE,aAAa;oBAC1B,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,gBAAgB;oBAC7B,WAAW,EAAE,sBAAsB;oBACnC,OAAO,EAAE;wBACL,IAAI,EAAE;4BACF,QAAQ,EAAE,MAAM;4BAChB,IAAI,EAAE,MAAM;yBACf;qBACJ;iBACJ;aACJ;SACJ,CAAC;IACN,CAAC;CAAA;AAlGD,0BAkGC"}
@@ -0,0 +1,4 @@
1
+ import { INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class SendToCallCenter implements INodeType {
3
+ description: INodeTypeDescription;
4
+ }
@@ -0,0 +1,105 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SendToCallCenter = void 0;
4
+ class SendToCallCenter {
5
+ constructor() {
6
+ this.description = {
7
+ displayName: 'Novin Send To Call Center',
8
+ name: 'sendToCallCenter',
9
+ icon: 'file:SendToCallCenter.svg',
10
+ group: ['transform'],
11
+ version: 1,
12
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
13
+ description: 'Node to Send User Information to Call Center',
14
+ defaults: {
15
+ name: 'Novin Send User To Call center',
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: 'Resource',
35
+ name: 'resource',
36
+ type: 'options',
37
+ noDataExpression: true,
38
+ options: [
39
+ {
40
+ name: 'Send To Call Center',
41
+ value: 'NovinSendToCallCenter',
42
+ },
43
+ ],
44
+ default: 'NovinSendToCallCenter',
45
+ },
46
+ {
47
+ displayName: 'Operation',
48
+ name: 'operation',
49
+ type: 'options',
50
+ noDataExpression: true,
51
+ displayOptions: {
52
+ show: {
53
+ resource: [
54
+ 'NovinSendToCallCenter',
55
+ ],
56
+ },
57
+ },
58
+ options: [
59
+ {
60
+ name: 'Post',
61
+ value: 'post',
62
+ action: 'Send to call center',
63
+ routing: {
64
+ request: {
65
+ method: 'POST',
66
+ url: '/users/sendToCallCenter',
67
+ },
68
+ },
69
+ },
70
+ ],
71
+ default: 'post',
72
+ },
73
+ {
74
+ displayName: 'User ID',
75
+ name: 'userId',
76
+ type: 'string',
77
+ default: '',
78
+ placeholder: 'ID of the user In MongoDB',
79
+ routing: {
80
+ send: {
81
+ property: 'userId',
82
+ type: 'body',
83
+ },
84
+ },
85
+ },
86
+ {
87
+ displayName: 'Call Center Category Name',
88
+ name: 'callCenterCategory',
89
+ type: 'string',
90
+ default: '',
91
+ placeholder: 'Enter Category Name',
92
+ description: 'Category Name of the call center',
93
+ routing: {
94
+ send: {
95
+ property: 'callCenterCategory',
96
+ type: 'body',
97
+ },
98
+ },
99
+ },
100
+ ],
101
+ };
102
+ }
103
+ }
104
+ exports.SendToCallCenter = SendToCallCenter;
105
+ //# sourceMappingURL=SendToCallCenter.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SendToCallCenter.node.js","sourceRoot":"","sources":["../../../nodes/SendToCallCenter/SendToCallCenter.node.ts"],"names":[],"mappings":";;;AAEA,MAAa,gBAAgB;IAA7B;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,2BAA2B;YACxC,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE,2BAA2B;YACjC,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,8CAA8C;YAC3D,QAAQ,EAAE;gBACT,IAAI,EAAE,gCAAgC;aACtC;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;gBAC1C,OAAO,EAAE;oBACR,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBAClC;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,qBAAqB;4BAC3B,KAAK,EAAE,uBAAuB;yBAC9B;qBACD;oBACD,OAAO,EAAE,uBAAuB;iBAChC;gBACD;oBACC,WAAW,EAAE,WAAW;oBACxB,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,cAAc,EAAE;wBACf,IAAI,EAAE;4BACL,QAAQ,EAAE;gCACT,uBAAuB;6BACvB;yBACD;qBACD;oBACD,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,MAAM;4BACZ,KAAK,EAAE,MAAM;4BACb,MAAM,EAAE,qBAAqB;4BAC7B,OAAO,EAAE;gCACR,OAAO,EAAE;oCACR,MAAM,EAAE,MAAM;oCACd,GAAG,EAAE,yBAAyB;iCAC9B;6BACD;yBACD;qBACD;oBACD,OAAO,EAAE,MAAM;iBACf;gBACD;oBACC,WAAW,EAAE,SAAS;oBACtB,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,2BAA2B;oBACxC,OAAO,EAAE;wBACR,IAAI,EAAE;4BACL,QAAQ,EAAE,QAAQ;4BAClB,IAAI,EAAE,MAAM;yBACZ;qBACD;iBACD;gBACD;oBACC,WAAW,EAAE,2BAA2B;oBACxC,IAAI,EAAE,oBAAoB;oBAC1B,IAAI,EAAE,QAAQ;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,qBAAqB;oBAClC,WAAW,EAAE,kCAAkC;oBAC/C,OAAO,EAAE;wBACR,IAAI,EAAE;4BACL,QAAQ,EAAE,oBAAoB;4BAC9B,IAAI,EAAE,MAAM;yBACZ;qBACD;iBACD;aACD;SACD,CAAC;IACH,CAAC;CAAA;AAjGD,4CAiGC"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "node": "n8n-nodes-base.SendToCallCenter",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": [
6
+ "Miscellaneous"
7
+ ],
8
+ "resources": {
9
+ "credentialDocumentation": [
10
+ {
11
+ "url": ""
12
+ }
13
+ ],
14
+ "primaryDocumentation": [
15
+ {
16
+ "url": ""
17
+ }
18
+ ]
19
+ }
20
+ }
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg fill="#000000" height="800px" width="800px" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
5
+ viewBox="0 0 480.542 480.542" xml:space="preserve">
6
+ <g>
7
+ <path d="M89.104,219.999h26.626c17.666,51.873,66.863,89.289,124.637,89.289c41.424,0,78.433-19.241,102.577-49.248h34.228
8
+ c6.352,0,11.5-5.148,11.5-11.5v-28.541h5.184c12.474,0,22.621-10.148,22.621-22.622V139.54c0-11.022-7.926-20.224-18.376-22.217
9
+ c-7.547-34.184-26.132-63.235-54.028-84.307C315.476,11.417,279.615,0,240.366,0C160.701,0,97.864,47.184,82.511,117.9
10
+ c-9.268,2.83-16.029,11.459-16.029,21.64v57.837C66.482,209.851,76.63,219.999,89.104,219.999z M89.482,196.999v-57.081h24.789
11
+ c-3.588,11.963-5.525,24.633-5.525,37.748c0,6.567,0.49,13.021,1.423,19.333H89.482z M240.366,286.288
12
+ c-59.894,0-108.621-48.728-108.621-108.622c0-59.894,48.727-108.62,108.621-108.62c59.895,0,108.622,48.727,108.622,108.62
13
+ c0,21.898-6.52,42.297-17.709,59.374h-97.586c-6.351,0-11.5,5.149-11.5,11.5c0,6.352,5.149,11.5,11.5,11.5h77.398
14
+ C292.073,276.391,267.355,286.288,240.366,286.288z M365.671,237.04h-7.857c2.777-5.474,5.188-11.163,7.189-17.041h0.667V237.04z
15
+ M393.476,196.999h-22.91c0.933-6.311,1.423-12.766,1.423-19.333c0-13.115-1.938-25.785-5.525-37.748h27.013V196.999z M240.366,23
16
+ c66.29,0,118.756,37.303,133.954,93.918h-17.217c-21.988-42.08-66.06-70.872-116.737-70.872
17
+ c-50.676,0-94.748,28.792-116.736,70.872h-17.22C121.593,60.338,174.166,23,240.366,23z"/>
18
+ <path d="M358.477,314.352H122.065c-36.506,0-66.206,29.699-66.206,66.205v88.484c0,6.352,5.149,11.5,11.5,11.5
19
+ s11.5-5.148,11.5-11.5v-88.484c0-23.823,19.382-43.205,43.206-43.205h236.412c23.824,0,43.207,19.382,43.207,43.206v88.484
20
+ c0,6.352,5.148,11.5,11.5,11.5c6.352,0,11.5-5.148,11.5-11.5v-88.484C424.684,344.052,394.984,314.352,358.477,314.352z"/>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,4 @@
1
+ import { INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class SendWebPush implements INodeType {
3
+ description: INodeTypeDescription;
4
+ }
@@ -0,0 +1,262 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SendWebPush = void 0;
4
+ class SendWebPush {
5
+ constructor() {
6
+ this.description = {
7
+ displayName: 'Novin Send WebPush',
8
+ name: 'sendWebPush',
9
+ icon: 'file:SendWebPush.svg',
10
+ group: ['transform'],
11
+ version: 1,
12
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
13
+ description: 'Node to Send WebPush',
14
+ defaults: {
15
+ name: 'Novin Send WebPush',
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: 'Resource',
35
+ name: 'resource',
36
+ type: 'options',
37
+ noDataExpression: true,
38
+ options: [
39
+ {
40
+ name: 'Send WebPush',
41
+ value: 'NovinSendWebPush',
42
+ },
43
+ ],
44
+ default: 'NovinSendWebPush',
45
+ },
46
+ {
47
+ displayName: 'Operation',
48
+ name: 'operation',
49
+ type: 'options',
50
+ noDataExpression: true,
51
+ displayOptions: {
52
+ show: {
53
+ resource: [
54
+ 'NovinSendWebPush',
55
+ ],
56
+ },
57
+ },
58
+ options: [
59
+ {
60
+ name: 'Post',
61
+ value: 'post',
62
+ action: 'Send web push',
63
+ description: 'Send WebPush',
64
+ routing: {
65
+ request: {
66
+ method: 'POST',
67
+ url: '/users/sendWebPush',
68
+ },
69
+ },
70
+ },
71
+ ],
72
+ default: 'post',
73
+ },
74
+ {
75
+ displayName: 'User_id',
76
+ name: 'user_id',
77
+ type: 'string',
78
+ default: '',
79
+ placeholder: 'ID of the user In MongoDB',
80
+ routing: {
81
+ send: {
82
+ property: 'userId',
83
+ type: 'body',
84
+ },
85
+ },
86
+ },
87
+ {
88
+ displayName: 'WebPush Title',
89
+ name: 'tite',
90
+ type: 'string',
91
+ default: '',
92
+ placeholder: 'WebPush Title',
93
+ description: 'Title of WebPush',
94
+ routing: {
95
+ send: {
96
+ property: 'title',
97
+ type: 'body',
98
+ },
99
+ },
100
+ },
101
+ {
102
+ displayName: 'WebPush Body',
103
+ name: 'body',
104
+ type: 'string',
105
+ default: '',
106
+ placeholder: 'WebPush Body',
107
+ description: 'Body of WebPush',
108
+ routing: {
109
+ send: {
110
+ property: 'body',
111
+ type: 'body',
112
+ },
113
+ },
114
+ },
115
+ {
116
+ displayName: 'WebPush Image Address',
117
+ name: 'imageAddress',
118
+ type: 'string',
119
+ default: '',
120
+ placeholder: 'WebPush Image Address',
121
+ description: 'Image Address of WebPush',
122
+ routing: {
123
+ send: {
124
+ property: 'imageAddress',
125
+ type: 'body',
126
+ },
127
+ },
128
+ },
129
+ {
130
+ displayName: 'WebPush Icon Address',
131
+ name: 'iconAddress',
132
+ type: 'string',
133
+ default: '',
134
+ placeholder: 'WebPush Icon Address',
135
+ description: 'Icon Address of WebPush',
136
+ routing: {
137
+ send: {
138
+ property: 'iconAddress',
139
+ type: 'body',
140
+ },
141
+ },
142
+ },
143
+ {
144
+ displayName: 'WebPush Url',
145
+ name: 'pushClickUrl',
146
+ type: 'string',
147
+ default: '',
148
+ placeholder: 'WebPush Url',
149
+ description: 'URL of WebPush',
150
+ routing: {
151
+ send: {
152
+ property: 'pushClickUrl',
153
+ type: 'body',
154
+ },
155
+ },
156
+ },
157
+ {
158
+ displayName: 'Action Btn1 Todo',
159
+ name: 'actionBtn1',
160
+ type: 'options',
161
+ options: [
162
+ {
163
+ name: 'Open',
164
+ value: 'open'
165
+ },
166
+ {
167
+ name: 'Close',
168
+ value: 'close'
169
+ }
170
+ ],
171
+ default: 'open',
172
+ description: 'What to do when Action Btn1 is clicked',
173
+ placeholder: 'Select an action',
174
+ routing: {
175
+ send: {
176
+ property: 'actionBtn1',
177
+ type: 'body'
178
+ }
179
+ }
180
+ },
181
+ {
182
+ displayName: 'Text of Action Btn1',
183
+ name: 'actionBtn1Text',
184
+ type: 'string',
185
+ default: '',
186
+ placeholder: 'Text of Action Btn1',
187
+ routing: {
188
+ send: {
189
+ property: 'actionBtn1Text',
190
+ type: 'body',
191
+ },
192
+ },
193
+ },
194
+ {
195
+ displayName: 'URL of Action Btn1',
196
+ name: 'actionBtn1Url',
197
+ type: 'string',
198
+ default: '',
199
+ placeholder: 'URL of Action Btn1',
200
+ routing: {
201
+ send: {
202
+ property: 'actionBtn1Url',
203
+ type: 'body',
204
+ },
205
+ },
206
+ },
207
+ {
208
+ displayName: 'Action Btn2 Todo',
209
+ name: 'actionBtn2',
210
+ type: 'options',
211
+ options: [
212
+ {
213
+ name: 'Open',
214
+ value: 'open'
215
+ },
216
+ {
217
+ name: 'Close',
218
+ value: 'close'
219
+ }
220
+ ],
221
+ default: 'open',
222
+ description: 'What to do when Action Btn2 is clicked',
223
+ placeholder: 'Select an action',
224
+ routing: {
225
+ send: {
226
+ property: 'actionBtn2',
227
+ type: 'body'
228
+ }
229
+ }
230
+ },
231
+ {
232
+ displayName: 'Text of Action Btn2',
233
+ name: 'actionBtn2Text',
234
+ type: 'string',
235
+ default: '',
236
+ placeholder: 'Text of Action Btn2',
237
+ routing: {
238
+ send: {
239
+ property: 'actionBtn2Text',
240
+ type: 'body',
241
+ },
242
+ },
243
+ },
244
+ {
245
+ displayName: 'URL of Action Btn2',
246
+ name: 'actionBtn2Url',
247
+ type: 'string',
248
+ default: '',
249
+ placeholder: 'URL of Action Btn2',
250
+ routing: {
251
+ send: {
252
+ property: 'actionBtn2Url',
253
+ type: 'body',
254
+ },
255
+ },
256
+ }
257
+ ],
258
+ };
259
+ }
260
+ }
261
+ exports.SendWebPush = SendWebPush;
262
+ //# sourceMappingURL=SendWebPush.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SendWebPush.node.js","sourceRoot":"","sources":["../../../nodes/SendWebPush/SendWebPush.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "node": "n8n-nodes-base.SendWebPush",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": [
6
+ "Miscellaneous"
7
+ ],
8
+ "resources": {
9
+ "credentialDocumentation": [
10
+ {
11
+ "url": ""
12
+ }
13
+ ],
14
+ "primaryDocumentation": [
15
+ {
16
+ "url": ""
17
+ }
18
+ ]
19
+ }
20
+ }
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="256.000000pt" height="256.000000pt" viewBox="0 0 256.000000 256.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+
8
+ <g transform="translate(0.000000,256.000000) scale(0.100000,-0.100000)"
9
+ fill="#000000" stroke="none">
10
+ <path d="M190 2551 c-69 -22 -130 -73 -166 -141 -18 -34 -19 -81 -19 -1130 0
11
+ -1049 1 -1096 19 -1130 26 -49 74 -98 121 -123 40 -22 44 -22 625 -22 l585 0
12
+ 46 27 c77 45 119 107 132 191 5 32 2 43 -18 63 -17 17 -25 36 -25 59 l0 34
13
+ 438 3 c476 3 468 2 540 63 18 15 45 48 60 74 l27 46 0 670 0 670 -22 41 c-28
14
+ 53 -71 96 -120 120 -35 18 -69 19 -480 22 l-443 3 0 36 c0 26 7 42 26 60 26
15
+ 24 27 28 21 103 -10 122 -45 185 -136 238 l-46 27 -570 2 c-314 1 -581 -2
16
+ -595 -6z m129 -180 c28 -55 63 -110 81 -125 l32 -26 338 0 338 0 29 24 c15 13
17
+ 50 69 78 125 27 55 54 101 60 101 16 0 49 -38 71 -80 14 -28 18 -60 18 -165
18
+ l1 -130 -170 -5 c-163 -5 -172 -6 -217 -33 -49 -29 -97 -88 -116 -146 -7 -20
19
+ -12 -98 -12 -191 l0 -157 -240 -128 c-132 -70 -247 -137 -255 -148 -19 -27
20
+ -19 -76 -1 -100 8 -10 121 -76 253 -146 l238 -127 5 -175 c6 -193 11 -211 78
21
+ -282 60 -62 117 -77 294 -77 l151 0 -6 -89 c-6 -92 -26 -149 -65 -184 -18 -16
22
+ -54 -17 -564 -15 l-545 3 -35 27 c-73 56 -69 -26 -66 1171 l3 1074 27 35 c30
23
+ 39 80 67 120 68 25 0 33 -10 77 -99z m2010 -370 c51 -10 87 -35 119 -81 l22
24
+ -34 -2 -655 -3 -656 -24 -34 c-13 -18 -42 -42 -65 -52 -39 -17 -78 -19 -672
25
+ -19 l-631 0 -43 23 c-30 16 -51 37 -67 67 -22 40 -23 55 -23 222 l0 178 -29
26
+ 18 c-16 9 -130 71 -254 137 -124 66 -223 123 -219 126 4 4 111 61 237 129 127
27
+ 67 238 129 247 137 14 13 17 42 20 203 3 172 5 191 24 216 30 41 68 66 111 74
28
+ 53 11 1198 11 1252 1z"/>
29
+ <path d="M396 244 c-19 -18 -21 -45 -4 -62 9 -9 105 -12 373 -12 198 0 365 4
30
+ 371 8 19 13 23 39 8 61 -15 21 -20 21 -374 21 -313 0 -361 -2 -374 -16z"/>
31
+ <path d="M1585 1817 c-132 -44 -230 -136 -277 -260 -11 -28 -23 -94 -28 -148
32
+ -6 -79 -20 -134 -71 -286 -58 -177 -61 -190 -48 -218 22 -47 50 -55 196 -55
33
+ l133 0 5 -27 c12 -59 51 -118 100 -148 65 -40 159 -43 218 -6 50 31 94 91 102
34
+ 141 l7 39 145 3 c145 3 145 3 169 31 13 15 24 38 24 49 0 12 -27 103 -60 203
35
+ -46 141 -61 202 -69 280 -5 55 -17 120 -27 145 -39 100 -121 188 -219 235 -52
36
+ 25 -74 29 -160 32 -64 2 -115 -2 -140 -10z m271 -107 c121 -59 177 -152 193
37
+ -320 8 -83 22 -139 66 -270 30 -90 55 -168 55 -172 0 -4 -210 -8 -466 -8 -369
38
+ 0 -465 3 -461 13 2 6 29 89 60 182 43 132 57 193 65 271 10 118 34 177 98 241
39
+ 106 105 255 130 390 63z m-26 -875 c0 -29 -30 -75 -60 -90 -51 -26 -105 -20
40
+ -145 18 -19 17 -37 44 -41 60 l-6 27 126 0 c107 0 126 -2 126 -15z"/>
41
+ </g>
42
+ </svg>
@@ -0,0 +1,4 @@
1
+ import { INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class TagOperations implements INodeType {
3
+ description: INodeTypeDescription;
4
+ }
@@ -0,0 +1,169 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TagOperations = void 0;
4
+ class TagOperations {
5
+ constructor() {
6
+ this.description = {
7
+ displayName: 'Novin Tag Operations',
8
+ name: 'tagOperations',
9
+ icon: 'file:tag.svg',
10
+ group: ['transform'],
11
+ version: 1,
12
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
13
+ description: 'Node for Tag Operations',
14
+ defaults: {
15
+ name: 'Novin Tag Operations',
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: 'Resource',
35
+ name: 'resource',
36
+ type: 'options',
37
+ noDataExpression: true,
38
+ options: [
39
+ {
40
+ name: 'Add Tag',
41
+ value: 'NovinAddTag',
42
+ },
43
+ {
44
+ name: 'Has Tag',
45
+ value: 'NovinHasTag',
46
+ },
47
+ {
48
+ name: 'Remove Tag',
49
+ value: 'NovinRemoveTag',
50
+ },
51
+ ],
52
+ default: 'NovinAddTag',
53
+ },
54
+ {
55
+ displayName: 'Operation',
56
+ name: 'operation',
57
+ type: 'options',
58
+ noDataExpression: true,
59
+ displayOptions: {
60
+ show: {
61
+ resource: [
62
+ 'NovinAddTag',
63
+ ],
64
+ },
65
+ },
66
+ options: [
67
+ {
68
+ name: 'Post',
69
+ value: 'post',
70
+ action: 'Add tag',
71
+ description: 'Add Tag',
72
+ routing: {
73
+ request: {
74
+ method: 'POST',
75
+ url: '/tags/addTagToUser',
76
+ },
77
+ },
78
+ },
79
+ ],
80
+ default: 'post',
81
+ },
82
+ {
83
+ displayName: 'Operation',
84
+ name: 'operation',
85
+ type: 'options',
86
+ noDataExpression: true,
87
+ displayOptions: {
88
+ show: {
89
+ resource: [
90
+ 'NovinHasTag',
91
+ ],
92
+ },
93
+ },
94
+ options: [
95
+ {
96
+ name: 'Post',
97
+ value: 'post',
98
+ action: 'Check if user has tag',
99
+ description: 'Check if user has Tag',
100
+ routing: {
101
+ request: {
102
+ method: 'POST',
103
+ url: '/tags/hasTagUser',
104
+ },
105
+ },
106
+ },
107
+ ],
108
+ default: 'post',
109
+ },
110
+ {
111
+ displayName: 'Operation',
112
+ name: 'operation',
113
+ type: 'options',
114
+ noDataExpression: true,
115
+ displayOptions: {
116
+ show: {
117
+ resource: [
118
+ 'NovinRemoveTag',
119
+ ],
120
+ },
121
+ },
122
+ options: [
123
+ {
124
+ name: 'Post',
125
+ value: 'post',
126
+ action: 'Remove tag',
127
+ description: 'Remove Tag',
128
+ routing: {
129
+ request: {
130
+ method: 'POST',
131
+ url: '/tags/removeTagfromUser',
132
+ },
133
+ },
134
+ },
135
+ ],
136
+ default: 'post',
137
+ },
138
+ {
139
+ displayName: 'User ID',
140
+ name: 'userId',
141
+ type: 'string',
142
+ default: '',
143
+ placeholder: 'ID of the user In MongoDB',
144
+ routing: {
145
+ send: {
146
+ property: 'userId',
147
+ type: 'body',
148
+ },
149
+ },
150
+ },
151
+ {
152
+ displayName: 'Tag Name',
153
+ name: 'name',
154
+ type: 'string',
155
+ default: '',
156
+ placeholder: 'Enter Tag Name',
157
+ routing: {
158
+ send: {
159
+ property: 'name',
160
+ type: 'body',
161
+ },
162
+ },
163
+ },
164
+ ],
165
+ };
166
+ }
167
+ }
168
+ exports.TagOperations = TagOperations;
169
+ //# sourceMappingURL=TagOperations.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TagOperations.node.js","sourceRoot":"","sources":["../../../nodes/Tag/TagOperations.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "node": "n8n-nodes-base.TagOperations",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": [
6
+ "Miscellaneous"
7
+ ],
8
+ "resources": {
9
+ "credentialDocumentation": [
10
+ {
11
+ "url": ""
12
+ }
13
+ ],
14
+ "primaryDocumentation": [
15
+ {
16
+ "url": ""
17
+ }
18
+ ]
19
+ }
20
+ }
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
3
+ <svg fill="#000000" height="800px" width="800px" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
4
+ viewBox="0 0 463.552 463.552" xml:space="preserve">
5
+ <g>
6
+ <path d="M445.752,256.346l-179.9-180c-9.5-9.5-22.2-14.8-35.6-14.8c-1.1,0-2.2,0-3.3,0.1l-130.1,8.6c-14.1,0.9-25.5,12.3-26.4,26.4
7
+ l-3.1,46.2c-6.6-3.8-12.9-8.6-18.6-14.3c-13.9-13.9-22.5-31.2-24.3-48.8c-1.7-16.7,3.1-31.6,13.5-42c22.1-22.1,62.8-17.2,90.9,10.8
8
+ c4.7,4.7,12.3,4.7,17,0s4.7-12.3,0-17c-37.6-37.3-93.6-42.1-125-10.7c-15.6,15.6-22.8,37.3-20.4,61.4c2.3,23.1,13.4,45.6,31.2,63.4
9
+ c10,10,21.6,17.9,33.9,23.3l-3.8,57.9c-1,14.5,4.4,28.7,14.7,39l180,180c11.4,11.4,26.5,17.6,42.6,17.6l0,0
10
+ c16.1,0,31.2-6.3,42.6-17.6l104.3-104.3c11.4-11.4,17.6-26.5,17.6-42.6C463.452,282.746,457.152,267.646,445.752,256.346z
11
+ M428.852,324.446l-104.4,104.4c-6.8,6.8-15.9,10.6-25.6,10.6l0,0c-9.7,0-18.8-3.8-25.6-10.6l-180-180c-5.4-5.4-8.2-12.8-7.7-20.4
12
+ l3.5-52.4c2,0.3,4,0.6,6,0.8c3,0.3,6,0.5,8.9,0.5c20.5,0,38.8-7.2,52.4-20.8c4.7-4.7,4.7-12.3,0-17s-12.3-4.7-17,0
13
+ c-10.4,10.4-25.3,15.2-42,13.5c-2.3-0.2-4.5-0.6-6.7-1l3.6-53.6c0.1-2.2,1.9-3.9,4.1-4.1l130.1-8.6c0.6,0,1.2-0.1,1.8-0.1
14
+ c7,0,13.8,2.8,18.7,7.7l179.9,179.9c6.8,6.8,10.6,15.9,10.6,25.6C439.452,308.546,435.652,317.646,428.852,324.446z"/>
15
+ </g>
16
+ </svg>
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-novinmarketing",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "Novin Marketing Workflow Nodes",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"
@@ -34,9 +34,12 @@
34
34
  ],
35
35
  "nodes": [
36
36
  "dist/nodes/GetSegmentUsers/GetSegmentUsers.node.js",
37
- "dist/nodes/CheckConditions/CheckConditions.node.js",
38
37
  "dist/nodes/SendSms/SendSms.node.js",
39
- "dist/nodes/SendEmail/SendEmail.node.js"
38
+ "dist/nodes/SendEmail/SendEmail.node.js",
39
+ "dist/nodes/SendWebPush/SendWebPush.node.js",
40
+ "dist/nodes/Tag/TagOperations.node.js",
41
+ "dist/nodes/HasConditions/HasConditions.node.js",
42
+ "dist/nodes/SendToCallCenter/SendToCallCenter.node.js"
40
43
  ]
41
44
  },
42
45
  "devDependencies": {
@@ -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/checkconditions/checkconditions.node.ts","../nodes/getsegmentusers/getsegmentusers.node.ts","../nodes/sendemail/sendemail.node.ts","../nodes/sendsms/sendsms.node.ts","../nodes/checkconditions/checkconditions.node.json","../nodes/getsegmentusers/getsegmentusers.node.json","../nodes/sendemail/sendemail.node.json","../nodes/sendsms/sendsms.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":"d91d6aefa4857b6eaf8b8b6f3e75d8e2af9dc3b8f2d491535b90075ddc138cf7","signature":"83d37f605d06a0690144460983d1b77ef924a78d3f2c2dcbdac7f52021d7e8f2"},{"version":"3ca590fb03d164a21a5c7c381ce50ad43495be9362fd82b2de7443c5fe4958de","signature":"d4f718ec3244cd21020c398ba91c9db722c3e8dbf68c154b9c84f120958931f9"},{"version":"1d703d731f55c4f2a70dd689713f172034eff99a26bf0c695b0cbdab62d6fac6","signature":"1137ea12527f078ccb882cc4eaeeb2211eaca8dbb9939a704a6e4cf08f26e2b2"},{"version":"be071e66f631e5c365c62129531350628c4c170ceb9fdbf056ac457c159f3fb8","signature":"f059ed50bb28bc9482f83229ccf450c7b15859d8e8ac9c4043347bb3ff4d25db"},{"version":"c2498cfef47da1ac035fce308965c581eb5f3dd692311bc90e10e04f580711ef","signature":"c88b9a6fd82975942d64d8d0899be75c49446e8e76ad0e2ea8af806c733885c6"},{"version":"a996dcdac6595062a67529cbb4707365fdd433eb183b3e1594ae8786f2e059f3","signature":"c88b9a6fd82975942d64d8d0899be75c49446e8e76ad0e2ea8af806c733885c6"},{"version":"597db8551a81c819f6bb1e0f75cd4b0c095794d29093688184d15efad1caa4c3","signature":"c88b9a6fd82975942d64d8d0899be75c49446e8e76ad0e2ea8af806c733885c6"},{"version":"5b997f82d9dca51575f74c94dc488452505db935d4aa0dc1690e2bce9ce5f178","signature":"c88b9a6fd82975942d64d8d0899be75c49446e8e76ad0e2ea8af806c733885c6"},{"version":"5486950fa50103e8d47c3d1ef50a51816ae020bc3fa7aa012011522b954e5140","signature":"e4f45f1050c44915379a9d6a98063c88d238caa265ecc3383ea607f61be0720c"},"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],[121,160],[121,145,160],[160],[121],[121,146,160],[121,122,123,124,125,126,127,128,129,130,131,132,133,134,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],[146,160],[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],[145,18],[146,19],[121,20],[124,20],[143,18],[144,18],[134,18],[133,21],[131,18],[126,18],[139,18],[137,18],[141,18],[125,18],[138,18],[142,18],[127,18],[128,18],[140,18],[122,18],[129,18],[130,18],[132,18],[136,18],[147,22],[135,18],[123,18],[160,23],[154,22],[156,24],[155,22],[148,22],[149,22],[151,22],[153,22],[157,24],[158,24],[150,24],[152,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]],"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],[145,18],[146,19],[121,20],[124,20],[143,18],[144,18],[134,18],[133,21],[131,18],[126,18],[139,18],[137,18],[141,18],[125,18],[138,18],[142,18],[127,18],[128,18],[140,18],[122,18],[129,18],[130,18],[132,18],[136,18],[147,22],[135,18],[123,18],[160,23],[154,22],[156,24],[155,22],[148,22],[149,22],[151,22],[153,22],[157,24],[158,24],[150,24],[152,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]],"semanticDiagnosticsPerFile":[110,79,78,77,80,73,74,75,76,65,64,63,71,69,70,67,68,66,72,62,120,145,146,121,124,143,144,134,133,131,126,139,137,141,125,138,142,127,128,140,122,129,130,132,136,147,135,123,160,159,154,156,155,148,149,151,153,157,158,150,152,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,115,111,116,112,117,113,118,114,119]},"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/getsegmentusers/getsegmentusers.node.ts","../nodes/hasconditions/hasconditions.node.ts","../nodes/sendemail/sendemail.node.ts","../nodes/sendsms/sendsms.node.ts","../nodes/sendtocallcenter/sendtocallcenter.node.ts","../nodes/sendwebpush/sendwebpush.node.ts","../nodes/tag/tagoperations.node.ts","../nodes/getsegmentusers/getsegmentusers.node.json","../nodes/hasconditions/hasconditions.node.json","../nodes/sendemail/sendemail.node.json","../nodes/sendsms/sendsms.node.json","../nodes/sendtocallcenter/sendtocallcenter.node.json","../nodes/sendwebpush/sendwebpush.node.json","../nodes/tag/tagoperations.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":"3ca590fb03d164a21a5c7c381ce50ad43495be9362fd82b2de7443c5fe4958de","signature":"d4f718ec3244cd21020c398ba91c9db722c3e8dbf68c154b9c84f120958931f9"},{"version":"fb807a3bf24313f4e5ec410895928cff80700267a2389704a9defc641924aea7","signature":"4a2442aeae62a7c6e5e28d834a04edb988b770f95f1937df4a66df112a21bd65"},{"version":"2715c61e15319595cba0ceb13ae81ce045fcd6272a7cddceb2860d5e5ee47cfe","signature":"1137ea12527f078ccb882cc4eaeeb2211eaca8dbb9939a704a6e4cf08f26e2b2"},{"version":"894931ef88c4da723a61f84d8f05b1f095e51b3a4ba9a2fe7a0b968e5cefdbbc","signature":"f059ed50bb28bc9482f83229ccf450c7b15859d8e8ac9c4043347bb3ff4d25db"},{"version":"a51ce09807d5ba78834cfb8eacb5e8602f2a0e1a36f1aebb59e9890bb5648418","signature":"ea92a7f56458cf25d838de3b495762491ab8150b46ca110114f8a32f52c82ced"},{"version":"a04d65a9bea1317c4a5358e386cd9c54bccb74803b073ca2382518e05f27a550","signature":"f81f7d9aea162a32d07dabb373fad6bdf90ee60385f0e890703647ce890f1740"},{"version":"bc14b4c16b756aae093086ebeadcb9076e50421d6621a5430067471da0025a4c","signature":"9e352657ceeaa4449976c49df8d30d92db2bfa69dcced2ad9d9b9be3d6d74073"},"a996dcdac6595062a67529cbb4707365fdd433eb183b3e1594ae8786f2e059f3",{"version":"3ec5187d548e7f5a1bc170eddbb171a12f708c35dc8aefbef094f18533165862","signature":"c88b9a6fd82975942d64d8d0899be75c49446e8e76ad0e2ea8af806c733885c6"},"597db8551a81c819f6bb1e0f75cd4b0c095794d29093688184d15efad1caa4c3","5b997f82d9dca51575f74c94dc488452505db935d4aa0dc1690e2bce9ce5f178",{"version":"2e0a2b696d0c621c5ab4ad4a24d4fea694e048e63d9db49c4629bdf51c4facc1","signature":"c88b9a6fd82975942d64d8d0899be75c49446e8e76ad0e2ea8af806c733885c6"},{"version":"bc90700b6d4b3fa41d95f74c7d36f7128d82773f2c5c54edb3195714f2b6658c","signature":"c88b9a6fd82975942d64d8d0899be75c49446e8e76ad0e2ea8af806c733885c6"},{"version":"6816bbf38beb8f6a4401be616d3231344f2fea54dc1db66dcd0f47f590e0651c","signature":"c88b9a6fd82975942d64d8d0899be75c49446e8e76ad0e2ea8af806c733885c6"},{"version":"8301e75ac45e08382f56d59a2fbcb655d9e9133817070e41bdf2a3bdf3300d92","signature":"e4f45f1050c44915379a9d6a98063c88d238caa265ecc3383ea607f61be0720c"},"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],[127,166],[127,151,166],[166],[127],[127,152,166],[127,128,129,130,131,132,133,134,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],[152,166],[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],[151,18],[152,19],[127,20],[130,20],[149,18],[150,18],[140,18],[139,21],[137,18],[132,18],[145,18],[143,18],[147,18],[131,18],[144,18],[148,18],[133,18],[134,18],[146,18],[128,18],[135,18],[136,18],[138,18],[142,18],[153,22],[141,18],[129,18],[166,23],[160,22],[162,24],[161,22],[154,22],[155,22],[157,22],[159,22],[163,24],[164,24],[156,24],[158,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]],"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],[151,18],[152,19],[127,20],[130,20],[149,18],[150,18],[140,18],[139,21],[137,18],[132,18],[145,18],[143,18],[147,18],[131,18],[144,18],[148,18],[133,18],[134,18],[146,18],[128,18],[135,18],[136,18],[138,18],[142,18],[153,22],[141,18],[129,18],[166,23],[160,22],[162,24],[161,22],[154,22],[155,22],[157,22],[159,22],[163,24],[164,24],[156,24],[158,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]],"semanticDiagnosticsPerFile":[110,79,78,77,80,73,74,75,76,65,64,63,71,69,70,67,68,66,72,62,126,151,152,127,130,149,150,140,139,137,132,145,143,147,131,144,148,133,134,146,128,135,136,138,142,153,141,129,166,165,160,162,161,154,155,157,159,163,164,156,158,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,118,111,119,112,120,113,121,114,122,115,123,116,124,117,125]},"version":"4.8.4"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-novinmarketing",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "Novin Marketing Workflow Nodes",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"
@@ -34,9 +34,12 @@
34
34
  ],
35
35
  "nodes": [
36
36
  "dist/nodes/GetSegmentUsers/GetSegmentUsers.node.js",
37
- "dist/nodes/CheckConditions/CheckConditions.node.js",
38
37
  "dist/nodes/SendSms/SendSms.node.js",
39
- "dist/nodes/SendEmail/SendEmail.node.js"
38
+ "dist/nodes/SendEmail/SendEmail.node.js",
39
+ "dist/nodes/SendWebPush/SendWebPush.node.js",
40
+ "dist/nodes/Tag/TagOperations.node.js",
41
+ "dist/nodes/HasConditions/HasConditions.node.js",
42
+ "dist/nodes/SendToCallCenter/SendToCallCenter.node.js"
40
43
  ]
41
44
  },
42
45
  "devDependencies": {