n8n-nodes-sendzen 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/README.md +359 -0
- package/dist/credentials/SendZenApi.credentials.d.ts +8 -0
- package/dist/credentials/SendZenApi.credentials.js +36 -0
- package/dist/credentials/SendZenApi.credentials.js.map +1 -0
- package/dist/nodes/SendZen/SendZen.node.d.ts +14 -0
- package/dist/nodes/SendZen/SendZen.node.js +610 -0
- package/dist/nodes/SendZen/SendZen.node.js.map +1 -0
- package/dist/nodes/SendZen/SendZen.node.json +20 -0
- package/dist/nodes/SendZen/SendZenTrigger.node.d.ts +5 -0
- package/dist/nodes/SendZen/SendZenTrigger.node.js +49 -0
- package/dist/nodes/SendZen/SendZenTrigger.node.js.map +1 -0
- package/dist/nodes/SendZen/sendzen.svg +1 -0
- package/dist/package.json +76 -0
- package/dist/shared/constants.d.ts +1 -0
- package/dist/shared/constants.js +5 -0
- package/dist/shared/constants.js.map +1 -0
- package/dist/shared/nodeProperties.d.ts +10 -0
- package/dist/shared/nodeProperties.js +187 -0
- package/dist/shared/nodeProperties.js.map +1 -0
- package/dist/shared/template/template.api.types.d.ts +328 -0
- package/dist/shared/template/template.api.types.js +3 -0
- package/dist/shared/template/template.api.types.js.map +1 -0
- package/dist/shared/template/template.builder.d.ts +17 -0
- package/dist/shared/template/template.builder.js +200 -0
- package/dist/shared/template/template.builder.js.map +1 -0
- package/dist/shared/type.d.ts +38 -0
- package/dist/shared/type.js +3 -0
- package/dist/shared/type.js.map +1 -0
- package/dist/shared/utils.d.ts +2 -0
- package/dist/shared/utils.js +15 -0
- package/dist/shared/utils.js.map +1 -0
- package/index.js +10 -0
- package/jest.config.js +22 -0
- package/n8n-nodes-sendzen-1.0.0.tgz +0 -0
- package/nodes/SendZen/SendZen.node.json +20 -0
- package/nodes/SendZen/sendzen.svg +1 -0
- package/package.json +76 -0
- package/shared/constants.ts +1 -0
- package/shared/nodeProperties.ts +197 -0
- package/shared/template/template.api.types.ts +435 -0
- package/shared/template/template.builder.ts +223 -0
- package/shared/type.ts +40 -0
- package/shared/utils.ts +16 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-base.SendZen",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": [
|
|
6
|
+
"Miscellaneous"
|
|
7
|
+
],
|
|
8
|
+
"resources": {
|
|
9
|
+
"credentialDocumentation": [
|
|
10
|
+
{
|
|
11
|
+
"url": "https://sendzen.io/docs"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"primaryDocumentation": [
|
|
15
|
+
{
|
|
16
|
+
"url": "https://sendzen.io/docs"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow';
|
|
2
|
+
export declare class SendZenTrigger implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SendZenTrigger = void 0;
|
|
4
|
+
class SendZenTrigger {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.description = {
|
|
7
|
+
displayName: 'SendZen Trigger',
|
|
8
|
+
name: 'sendZenTrigger',
|
|
9
|
+
icon: 'file:sendzen.svg',
|
|
10
|
+
group: ['trigger'],
|
|
11
|
+
version: 1,
|
|
12
|
+
subtitle: 'On Message Received',
|
|
13
|
+
description: 'Trigger when a WhatsApp incoming message is received via SendZen Services',
|
|
14
|
+
defaults: {
|
|
15
|
+
name: 'Message Received Trigger',
|
|
16
|
+
},
|
|
17
|
+
inputs: [],
|
|
18
|
+
outputs: ['main'],
|
|
19
|
+
webhooks: [
|
|
20
|
+
{
|
|
21
|
+
name: 'default',
|
|
22
|
+
httpMethod: '={{$parameter["httpMethod"]}}',
|
|
23
|
+
path: 'sendzen-webhook',
|
|
24
|
+
isFullPath: false,
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
properties: [
|
|
28
|
+
{
|
|
29
|
+
displayName: 'HTTP Method',
|
|
30
|
+
name: 'httpMethod',
|
|
31
|
+
type: 'options',
|
|
32
|
+
options: [
|
|
33
|
+
{ name: 'POST', value: 'POST' },
|
|
34
|
+
],
|
|
35
|
+
default: 'POST',
|
|
36
|
+
description: 'Choose the HTTP method to use for the webhook',
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
async webhook() {
|
|
42
|
+
const webhookData = this.getRequestObject().body;
|
|
43
|
+
return {
|
|
44
|
+
workflowData: [this.helpers.returnJsonArray(webhookData)],
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
exports.SendZenTrigger = SendZenTrigger;
|
|
49
|
+
//# sourceMappingURL=SendZenTrigger.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SendZenTrigger.node.js","sourceRoot":"","sources":["../../../nodes/SendZen/SendZenTrigger.node.ts"],"names":[],"mappings":";;;AAOA,MAAa,cAAc;IAA3B;QACI,gBAAW,GAAyB;YAChC,WAAW,EAAE,iBAAiB;YAC9B,IAAI,EAAE,gBAAgB;YACtB,IAAI,EAAE,kBAAkB;YACxB,KAAK,EAAE,CAAC,SAAS,CAAC;YAClB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,qBAAqB;YAC/B,WAAW,EAAE,2EAA2E;YACxF,QAAQ,EAAE;gBACN,IAAI,EAAE,0BAA0B;aACnC;YACD,MAAM,EAAE,EAAE;YACV,OAAO,EAAE,CAAC,MAAM,CAAC;YACjB,QAAQ,EAAE;gBACN;oBACI,IAAI,EAAE,SAAS;oBACf,UAAU,EAAE,+BAA+B;oBAC3C,IAAI,EAAE,iBAAiB;oBACvB,UAAU,EAAE,KAAK;iBACpB;aACJ;YACD,UAAU,EAAE;gBACR;oBACI,WAAW,EAAE,aAAa;oBAC1B,IAAI,EAAE,YAAY;oBAClB,IAAI,EAAE,SAAS;oBACf,OAAO,EAAE;wBACL,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE;qBAClC;oBACD,OAAO,EAAE,MAAM;oBACf,WAAW,EAAE,+CAA+C;iBAC/D;aACJ;SACJ,CAAC;IAQN,CAAC;IANG,KAAK,CAAC,OAAO;QACT,MAAM,WAAW,GAAG,IAAI,CAAC,gBAAgB,EAAE,CAAC,IAAI,CAAC;QACjD,OAAO;YACH,YAAY,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,WAAW,CAAC,CAAC;SAC5D,CAAC;IACN,CAAC;CACJ;AA1CD,wCA0CC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#10b981" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-zap-icon lucide-zap"><path d="M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z"/></svg>
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-sendzen",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "SendZen is a platform for automating SMS and WhatsApp messages. This node package allows you to use SendZen in n8n.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"n8n-community-node-package",
|
|
8
|
+
"sendzen",
|
|
9
|
+
"automation",
|
|
10
|
+
"WhatsApp",
|
|
11
|
+
"WhatsApp API",
|
|
12
|
+
"WhatsApp Cloud API",
|
|
13
|
+
"WhatsApp Cloud API Integration",
|
|
14
|
+
"WhatsApp Cloud API Integration for n8n",
|
|
15
|
+
"WhatsApp Cloud API Integration for n8n workflows",
|
|
16
|
+
"WhatsApp Business API",
|
|
17
|
+
"WhatsApp Business API Integration",
|
|
18
|
+
"WhatsApp Business API Integration for n8n",
|
|
19
|
+
"WhatsApp Business API Integration for n8n workflows",
|
|
20
|
+
"WhatsApp Business API for n8n",
|
|
21
|
+
"WhatsApp Business API for n8n workflows",
|
|
22
|
+
"WhastApp Messaging API",
|
|
23
|
+
"WhastApp Messaging API Integration",
|
|
24
|
+
"WhastApp Messaging API Integration for n8n",
|
|
25
|
+
"WhastApp Messaging API Integration for n8n workflows",
|
|
26
|
+
"WhastApp Messaging API for n8n",
|
|
27
|
+
"WhastApp Messaging API for n8n workflows"
|
|
28
|
+
],
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"homepage": "https://www.sendzen.io/",
|
|
31
|
+
"author": {
|
|
32
|
+
"name": "SendZen",
|
|
33
|
+
"email": "milan@sendzen.io"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/sendzen-io/n8n-nodes-sendzen.git"
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18.10"
|
|
41
|
+
},
|
|
42
|
+
"packageManager": "pnpm@10.15.0",
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "tsc && gulp build:icons",
|
|
45
|
+
"dev": "nodemon -w nodes -w credentials --ext ts --exec \"tsc && n8n\"",
|
|
46
|
+
"format": "prettier nodes credentials --write",
|
|
47
|
+
"lint": "eslint nodes credentials package.json",
|
|
48
|
+
"test": "jest"
|
|
49
|
+
},
|
|
50
|
+
"n8n": {
|
|
51
|
+
"n8nNodesApiVersion": 1,
|
|
52
|
+
"credentials": [
|
|
53
|
+
"dist/credentials/SendZenApi.credentials.js"
|
|
54
|
+
],
|
|
55
|
+
"nodes": [
|
|
56
|
+
"dist/nodes/SendZen/SendZen.node.js",
|
|
57
|
+
"dist/nodes/SendZen/SendZenTrigger.node.js"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@typescript-eslint/parser": "^7.15.0",
|
|
62
|
+
"eslint": "^9.39.0",
|
|
63
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.1",
|
|
64
|
+
"gulp": "^4.0.2",
|
|
65
|
+
"n8n": "^1.89.2",
|
|
66
|
+
"nodemon": "^3.1.10",
|
|
67
|
+
"prettier": "^3.3.2",
|
|
68
|
+
"typescript": "^5.5.3",
|
|
69
|
+
"@types/jest": "^29.5.12",
|
|
70
|
+
"jest": "^29.7.0",
|
|
71
|
+
"ts-jest": "^29.1.2"
|
|
72
|
+
},
|
|
73
|
+
"peerDependencies": {
|
|
74
|
+
"n8n-workflow": "*"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BASE_DOMAIN = "https://api.sendzen.io";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../shared/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,WAAW,GAAG,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare const OperationProperties: INodeProperties;
|
|
3
|
+
export declare const WabaAccountProperties: INodeProperties;
|
|
4
|
+
export declare const PhoneNumberIdProperties: INodeProperties;
|
|
5
|
+
export declare const MessageIdProperties: INodeProperties;
|
|
6
|
+
export declare const RecipientPhoneNumberProperties: INodeProperties;
|
|
7
|
+
export declare const TemplateProperties: INodeProperties;
|
|
8
|
+
export declare const ReplyMessageProperties: INodeProperties;
|
|
9
|
+
export declare const EnableUrlPreviewProperties: INodeProperties;
|
|
10
|
+
export declare const TemplateNameOrIdProperties: INodeProperties;
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TemplateNameOrIdProperties = exports.EnableUrlPreviewProperties = exports.ReplyMessageProperties = exports.TemplateProperties = exports.RecipientPhoneNumberProperties = exports.MessageIdProperties = exports.PhoneNumberIdProperties = exports.WabaAccountProperties = exports.OperationProperties = void 0;
|
|
4
|
+
exports.OperationProperties = {
|
|
5
|
+
displayName: 'Operation',
|
|
6
|
+
name: 'operation',
|
|
7
|
+
type: 'options',
|
|
8
|
+
noDataExpression: true,
|
|
9
|
+
options: [
|
|
10
|
+
{
|
|
11
|
+
name: 'Send Session Message',
|
|
12
|
+
value: 'sendSessionMessage',
|
|
13
|
+
description: 'Send a free-form message within an active 24-hour WhatsApp conversation window',
|
|
14
|
+
action: 'Send session message',
|
|
15
|
+
hint: 'Use this option to reply to a user within an active conversation without using a template.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Send Template Message',
|
|
19
|
+
value: 'sendTemplateMessage',
|
|
20
|
+
description: 'Send a pre-approved WhatsApp template message to a recipient',
|
|
21
|
+
action: 'Send template message',
|
|
22
|
+
hint: 'Use this option when replying outside the 24-hour session window or when a template is required by WhatsApp.',
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
name: 'Mark as Read',
|
|
26
|
+
value: 'markAsRead',
|
|
27
|
+
description: 'Mark the incoming message as read.',
|
|
28
|
+
action: 'Mark as read',
|
|
29
|
+
hint: 'Use this option to mark the incoming message as read.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Show Typing Indicator',
|
|
33
|
+
value: 'showTyping',
|
|
34
|
+
description: 'Display a typing indicator while the workflow continues.',
|
|
35
|
+
action: 'Show typing indicator',
|
|
36
|
+
hint: 'Use this option to show a typing indicator while the workflow continues.',
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
default: 'sendSessionMessage',
|
|
40
|
+
required: true,
|
|
41
|
+
description: 'Choose how you want to interact with the recipient using SendZen.',
|
|
42
|
+
};
|
|
43
|
+
exports.WabaAccountProperties = {
|
|
44
|
+
displayName: 'WABA Account',
|
|
45
|
+
name: 'wabaAccount',
|
|
46
|
+
type: 'options',
|
|
47
|
+
noDataExpression: true,
|
|
48
|
+
hint: 'Select the WhatsApp Business Account that will be used to send messages.',
|
|
49
|
+
default: '',
|
|
50
|
+
required: true,
|
|
51
|
+
description: 'Select the WhatsApp Business Account (WABA)',
|
|
52
|
+
typeOptions: {
|
|
53
|
+
loadOptionsMethod: 'getWabaAccounts',
|
|
54
|
+
},
|
|
55
|
+
displayOptions: {
|
|
56
|
+
show: {
|
|
57
|
+
operation: ['sendSessionMessage', 'sendTemplateMessage'],
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
};
|
|
61
|
+
exports.PhoneNumberIdProperties = {
|
|
62
|
+
displayName: 'Phone Number ID',
|
|
63
|
+
name: 'phoneNumberId',
|
|
64
|
+
type: 'string',
|
|
65
|
+
hint: 'Enter the Phone Number ID associated with your WhatsApp Business account.',
|
|
66
|
+
default: '',
|
|
67
|
+
required: false,
|
|
68
|
+
description: 'The Phone Number ID used to mark the message as read and show the typing indicator.. If left empty, the node will try to find it automatically from the incoming data.',
|
|
69
|
+
displayOptions: {
|
|
70
|
+
show: {
|
|
71
|
+
operation: ['markAsRead', 'showTyping'],
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
};
|
|
75
|
+
exports.MessageIdProperties = {
|
|
76
|
+
displayName: 'Message ID (Optional)',
|
|
77
|
+
name: 'messageId',
|
|
78
|
+
type: 'string',
|
|
79
|
+
required: false,
|
|
80
|
+
default: '',
|
|
81
|
+
description: 'Optionally override the message ID. Leave empty to automatically use the incoming message ID from the previous node.',
|
|
82
|
+
hint: 'Only use this if you need to manually specify a message ID. In most cases, this is resolved automatically.',
|
|
83
|
+
displayOptions: {
|
|
84
|
+
show: {
|
|
85
|
+
operation: ['markAsRead', 'showTyping'],
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
};
|
|
89
|
+
exports.RecipientPhoneNumberProperties = {
|
|
90
|
+
displayName: 'Recipient Phone Number',
|
|
91
|
+
name: 'recipient',
|
|
92
|
+
type: 'string',
|
|
93
|
+
required: true,
|
|
94
|
+
placeholder: '+1234567890',
|
|
95
|
+
displayOptions: {
|
|
96
|
+
show: {
|
|
97
|
+
operation: ['sendSessionMessage', 'sendTemplateMessage'],
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
default: '',
|
|
101
|
+
description: 'The recipient’s phone number in international (E.164) format.',
|
|
102
|
+
hint: 'Enter the phone number including country code, for example: +1234567890.',
|
|
103
|
+
};
|
|
104
|
+
exports.TemplateProperties = {
|
|
105
|
+
displayName: 'Template',
|
|
106
|
+
name: 'template',
|
|
107
|
+
type: 'options',
|
|
108
|
+
noDataExpression: true,
|
|
109
|
+
typeOptions: {
|
|
110
|
+
loadOptionsMethod: 'getTemplates',
|
|
111
|
+
loadOptionsDependsOn: ['wabaAccount'],
|
|
112
|
+
},
|
|
113
|
+
required: true,
|
|
114
|
+
displayOptions: {
|
|
115
|
+
show: {
|
|
116
|
+
operation: ['sendTemplateMessage'],
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
default: '',
|
|
120
|
+
description: 'Select a WhatsApp message template to send.',
|
|
121
|
+
hint: 'Templates are pre-approved message formats that can include variables and media.',
|
|
122
|
+
};
|
|
123
|
+
exports.ReplyMessageProperties = {
|
|
124
|
+
displayName: 'Message Text',
|
|
125
|
+
name: 'replyMessage',
|
|
126
|
+
type: 'string',
|
|
127
|
+
required: true,
|
|
128
|
+
placeholder: 'Type your message here…',
|
|
129
|
+
displayOptions: {
|
|
130
|
+
show: {
|
|
131
|
+
operation: ['sendSessionMessage'],
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
default: '',
|
|
135
|
+
description: 'The text message that will be sent to the recipient.',
|
|
136
|
+
typeOptions: {
|
|
137
|
+
rows: 4,
|
|
138
|
+
},
|
|
139
|
+
hint: 'This message is sent immediately within an active WhatsApp session.',
|
|
140
|
+
};
|
|
141
|
+
exports.EnableUrlPreviewProperties = {
|
|
142
|
+
displayName: 'Enable URL Preview',
|
|
143
|
+
name: 'enableUrlPreview',
|
|
144
|
+
type: 'boolean',
|
|
145
|
+
default: false,
|
|
146
|
+
description: 'Show a preview for URLs included in the message.',
|
|
147
|
+
hint: 'Enable this to display link previews such as images and titles.',
|
|
148
|
+
displayOptions: {
|
|
149
|
+
show: {
|
|
150
|
+
operation: ['sendSessionMessage'],
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
};
|
|
154
|
+
exports.TemplateNameOrIdProperties = {
|
|
155
|
+
displayName: 'Template Variables',
|
|
156
|
+
name: 'templateVariables',
|
|
157
|
+
type: 'resourceMapper',
|
|
158
|
+
noDataExpression: true,
|
|
159
|
+
default: {
|
|
160
|
+
mappingMode: 'defineBelow',
|
|
161
|
+
value: null,
|
|
162
|
+
},
|
|
163
|
+
required: true,
|
|
164
|
+
placeholder: 'Add template variables',
|
|
165
|
+
description: 'Provide values for all variables required by the selected template.',
|
|
166
|
+
hint: 'Variable names and requirements are automatically derived from the selected template.',
|
|
167
|
+
displayOptions: {
|
|
168
|
+
show: {
|
|
169
|
+
operation: ['sendTemplateMessage'],
|
|
170
|
+
},
|
|
171
|
+
},
|
|
172
|
+
typeOptions: {
|
|
173
|
+
loadOptionsDependsOn: ['template'],
|
|
174
|
+
resourceMapper: {
|
|
175
|
+
resourceMapperMethod: 'getTemplateVariables',
|
|
176
|
+
mode: 'add',
|
|
177
|
+
fieldWords: {
|
|
178
|
+
singular: 'variable',
|
|
179
|
+
plural: 'variables',
|
|
180
|
+
},
|
|
181
|
+
addAllFields: true,
|
|
182
|
+
multiKeyMatch: false,
|
|
183
|
+
supportAutoMap: false,
|
|
184
|
+
},
|
|
185
|
+
},
|
|
186
|
+
};
|
|
187
|
+
//# sourceMappingURL=nodeProperties.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nodeProperties.js","sourceRoot":"","sources":["../../shared/nodeProperties.ts"],"names":[],"mappings":"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"}
|