n8n-nodes-novinmarketing 0.0.1
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 +19 -0
- package/README.md +47 -0
- package/dist/credentials/novinMarketingApi.credentials.d.ts +8 -0
- package/dist/credentials/novinMarketingApi.credentials.js +29 -0
- package/dist/credentials/novinMarketingApi.credentials.js.map +1 -0
- package/dist/nodes/CheckConditions/CheckConditions.node.d.ts +4 -0
- package/dist/nodes/CheckConditions/CheckConditions.node.js +106 -0
- package/dist/nodes/CheckConditions/CheckConditions.node.js.map +1 -0
- package/dist/nodes/CheckConditions/CheckConditions.node.json +20 -0
- package/dist/nodes/CheckConditions/CheckConditions.svg +17 -0
- package/dist/nodes/GetSegmentUsers/GetSegmentUsers.node.d.ts +4 -0
- package/dist/nodes/GetSegmentUsers/GetSegmentUsers.node.js +106 -0
- package/dist/nodes/GetSegmentUsers/GetSegmentUsers.node.js.map +1 -0
- package/dist/nodes/GetSegmentUsers/GetSegmentUsers.node.json +20 -0
- package/dist/nodes/GetSegmentUsers/getSegmentUsers.svg +41 -0
- package/dist/package.json +51 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/index.js +0 -0
- package/package.json +51 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright 2022 n8n
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
5
|
+
the Software without restriction, including without limitation the rights to
|
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
8
|
+
so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# n8n-nodes-starter
|
|
4
|
+
|
|
5
|
+
This repo contains example nodes to help you get started building your own custom integrations for [n8n](n8n.io). It includes the node linter and other dependencies.
|
|
6
|
+
|
|
7
|
+
To make your custom node available to the community, you must create it as an npm package, and [submit it to the npm registry](https://docs.npmjs.com/packages-and-modules/contributing-packages-to-the-registry).
|
|
8
|
+
|
|
9
|
+
## Prerequisites
|
|
10
|
+
|
|
11
|
+
You need the following installed on your development machine:
|
|
12
|
+
|
|
13
|
+
* [git](https://git-scm.com/downloads)
|
|
14
|
+
* Node.js and npm. Minimum version Node 16. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL [here](https://github.com/nvm-sh/nvm). For Windows users, refer to Microsoft's guide to [Install NodeJS on Windows](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows).
|
|
15
|
+
* Install n8n with:
|
|
16
|
+
```
|
|
17
|
+
npm install n8n -g
|
|
18
|
+
```
|
|
19
|
+
* Recommended: follow n8n's guide to [set up your development environment](https://docs.n8n.io/integrations/creating-nodes/build/node-development-environment/).
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## Using this starter
|
|
23
|
+
|
|
24
|
+
These are the basic steps for working with the starter. For detailed guidance on creating and publishing nodes, refer to the [documentation](https://docs.n8n.io/integrations/creating-nodes/).
|
|
25
|
+
|
|
26
|
+
1. [Generate a new repository](https://github.com/n8n-io/n8n-nodes-starter/generate) from this template repository.
|
|
27
|
+
2. Clone your new repo:
|
|
28
|
+
```
|
|
29
|
+
git clone https://github.com/<your organization>/<your-repo-name>.git
|
|
30
|
+
```
|
|
31
|
+
3. Run `npm i` to install dependencies.
|
|
32
|
+
4. Open the project in your editor.
|
|
33
|
+
5. Browse the examples in `/nodes` and `/credentials`. Modify the examples, or replace them with your own nodes.
|
|
34
|
+
6. Update the `package.json` to match your details.
|
|
35
|
+
7. Run `npm run lint` to check for errors or `npm run lintfix` to automatically fix errors when possible.
|
|
36
|
+
8. Test your node locally. Refer to [Run your node locally](https://docs.n8n.io/integrations/creating-nodes/test/run-node-locally/) for guidance.
|
|
37
|
+
9. Replace this README with documentation for your node. Use the [README_TEMPLATE](README_TEMPLATE.md) to get started.
|
|
38
|
+
10. Update the LICENSE file to use your details.
|
|
39
|
+
11. [Publish](https://docs.npmjs.com/packages-and-modules/contributing-packages-to-the-registry) your package to npm.
|
|
40
|
+
|
|
41
|
+
## More information
|
|
42
|
+
|
|
43
|
+
Refer to our [documentation on creating nodes](https://docs.n8n.io/integrations/creating-nodes/) for detailed information on building your own nodes.
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
[MIT](https://github.com/n8n-io/n8n-nodes-starter/blob/master/LICENSE.md)
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare class novinMarketingApi implements ICredentialType {
|
|
3
|
+
name: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
documentationUrl: string;
|
|
6
|
+
properties: INodeProperties[];
|
|
7
|
+
authenticate: IAuthenticateGeneric;
|
|
8
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.novinMarketingApi = void 0;
|
|
4
|
+
class novinMarketingApi {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = 'novinMarketingApi';
|
|
7
|
+
this.displayName = 'Novin Marketing API';
|
|
8
|
+
this.documentationUrl = 'https://docs.n8n.io/integrations/creating-nodes/build/declarative-style-node/';
|
|
9
|
+
this.properties = [
|
|
10
|
+
{
|
|
11
|
+
displayName: 'accessToken',
|
|
12
|
+
name: 'accessToken',
|
|
13
|
+
type: 'string',
|
|
14
|
+
typeOptions: { password: true },
|
|
15
|
+
default: '',
|
|
16
|
+
},
|
|
17
|
+
];
|
|
18
|
+
this.authenticate = {
|
|
19
|
+
type: 'generic',
|
|
20
|
+
properties: {
|
|
21
|
+
headers: {
|
|
22
|
+
Authorization: '={{"Bearer " + $credentials.accessToken}}',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
exports.novinMarketingApi = novinMarketingApi;
|
|
29
|
+
//# sourceMappingURL=novinMarketingApi.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"novinMarketingApi.credentials.js","sourceRoot":"","sources":["../../credentials/novinMarketingApi.credentials.ts"],"names":[],"mappings":";;;AAMA,MAAa,iBAAiB;IAA9B;QACC,SAAI,GAAG,mBAAmB,CAAC;QAC3B,gBAAW,GAAG,qBAAqB,CAAC;QACpC,qBAAgB,GAAG,+EAA+E,CAAC;QACnG,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,aAAa;gBAC1B,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;aACX;SACD,CAAC;QAMF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,aAAa,EAAE,2CAA2C;iBAC1D;aACD;SACD,CAAC;IACH,CAAC;CAAA;AA1BD,8CA0BC"}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CheckConditions = void 0;
|
|
4
|
+
class CheckConditions {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.description = {
|
|
7
|
+
displayName: 'novin check conditions',
|
|
8
|
+
name: 'checkConditions',
|
|
9
|
+
icon: 'file:CheckConditions.svg',
|
|
10
|
+
group: ['transform'],
|
|
11
|
+
version: 1,
|
|
12
|
+
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
13
|
+
description: 'Node to check users to have some conditions',
|
|
14
|
+
defaults: {
|
|
15
|
+
name: 'Novin Check Users 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 Some Conditions for User',
|
|
41
|
+
value: 'checkUsersConditions',
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
default: 'checkUsersConditions',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
displayName: 'Operation',
|
|
48
|
+
name: 'operation',
|
|
49
|
+
type: 'options',
|
|
50
|
+
noDataExpression: true,
|
|
51
|
+
displayOptions: {
|
|
52
|
+
show: {
|
|
53
|
+
resource: [
|
|
54
|
+
'checkUsersConditions',
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
options: [
|
|
59
|
+
{
|
|
60
|
+
name: 'Get',
|
|
61
|
+
value: 'get',
|
|
62
|
+
action: 'Check conditions of a user',
|
|
63
|
+
description: 'Check a user based on match conditions',
|
|
64
|
+
routing: {
|
|
65
|
+
request: {
|
|
66
|
+
method: 'POST',
|
|
67
|
+
url: '/users/matchUser',
|
|
68
|
+
body: {
|
|
69
|
+
userId: '={{$parameter["additionalFields"]["userId"]}}',
|
|
70
|
+
match: '={{JSON.parse($parameter["additionalFields"]["match"])}}',
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
default: 'get',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
displayName: 'Body Fields',
|
|
80
|
+
name: 'additionalFields',
|
|
81
|
+
type: 'collection',
|
|
82
|
+
placeholder: 'Add Body Parameters',
|
|
83
|
+
default: {},
|
|
84
|
+
options: [
|
|
85
|
+
{
|
|
86
|
+
displayName: 'UserId',
|
|
87
|
+
name: 'userId',
|
|
88
|
+
type: 'string',
|
|
89
|
+
default: '',
|
|
90
|
+
description: 'The User',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
displayName: 'Match Condition',
|
|
94
|
+
name: 'match',
|
|
95
|
+
type: 'json',
|
|
96
|
+
default: '{}',
|
|
97
|
+
description: 'Match condition as JSON',
|
|
98
|
+
},
|
|
99
|
+
],
|
|
100
|
+
},
|
|
101
|
+
]
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
exports.CheckConditions = CheckConditions;
|
|
106
|
+
//# sourceMappingURL=CheckConditions.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckConditions.node.js","sourceRoot":"","sources":["../../../nodes/CheckConditions/CheckConditions.node.ts"],"names":[],"mappings":";;;AACA,MAAa,eAAe;IAA5B;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,wBAAwB;YACrC,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,0BAA0B;YAChC,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,6CAA6C;YAC1D,QAAQ,EAAE;gBACT,IAAI,EAAE,8BAA8B;aACpC;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,gCAAgC;4BACtC,KAAK,EAAE,sBAAsB;yBAC7B;qBACD;oBACD,OAAO,EAAE,sBAAsB;iBAC/B;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,sBAAsB;6BACtB;yBACD;qBACD;oBACD,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,KAAK;4BACX,KAAK,EAAE,KAAK;4BACZ,MAAM,EAAE,4BAA4B;4BACpC,WAAW,EAAE,wCAAwC;4BACrD,OAAO,EAAE;gCACR,OAAO,EAAE;oCACR,MAAM,EAAE,MAAM;oCACd,GAAG,EAAE,kBAAkB;oCACvB,IAAI,EAAE;wCACL,MAAM,EAAE,+CAA+C;wCACvD,KAAK,EAAE,0DAA0D;qCACjE;iCACD;6BACD;yBACD;qBACD;oBACD,OAAO,EAAE,KAAK;iBACd;gBACD;oBACC,WAAW,EAAE,aAAa;oBAC1B,IAAI,EAAE,kBAAkB;oBACxB,IAAI,EAAE,YAAY;oBAClB,WAAW,EAAE,qBAAqB;oBAClC,OAAO,EAAE,EAAE;oBACX,OAAO,EAAE;wBACR;4BACC,WAAW,EAAE,QAAQ;4BACrB,IAAI,EAAE,QAAQ;4BACd,IAAI,EAAE,QAAQ;4BACd,OAAO,EAAE,EAAE;4BACX,WAAW,EAAE,UAAU;yBACvB;wBACD;4BACC,WAAW,EAAE,iBAAiB;4BAC9B,IAAI,EAAE,OAAO;4BACb,IAAI,EAAE,MAAM;4BACZ,OAAO,EAAE,IAAI;4BACb,WAAW,EAAE,yBAAyB;yBACtC;qBAED;iBACD;aAED;SACD,CAAC;IACH,CAAC;CAAA;AArGD,0CAqGC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-base.CheckConditions",
|
|
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,17 @@
|
|
|
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" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
5
|
+
width="800px" height="800px" viewBox="0 0 305.002 305.002"
|
|
6
|
+
xml:space="preserve">
|
|
7
|
+
<g>
|
|
8
|
+
<g>
|
|
9
|
+
<path d="M152.502,0.001C68.412,0.001,0,68.412,0,152.501s68.412,152.5,152.502,152.5c84.089,0,152.5-68.411,152.5-152.5
|
|
10
|
+
S236.591,0.001,152.502,0.001z M152.502,280.001C82.197,280.001,25,222.806,25,152.501c0-70.304,57.197-127.5,127.502-127.5
|
|
11
|
+
c70.304,0,127.5,57.196,127.5,127.5C280.002,222.806,222.806,280.001,152.502,280.001z"/>
|
|
12
|
+
<path d="M218.473,93.97l-90.546,90.547l-41.398-41.398c-4.882-4.881-12.796-4.881-17.678,0c-4.881,4.882-4.881,12.796,0,17.678
|
|
13
|
+
l50.237,50.237c2.441,2.44,5.64,3.661,8.839,3.661c3.199,0,6.398-1.221,8.839-3.661l99.385-99.385
|
|
14
|
+
c4.881-4.882,4.881-12.796,0-17.678C231.269,89.089,223.354,89.089,218.473,93.97z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetSegmentUsers = void 0;
|
|
4
|
+
class GetSegmentUsers {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.description = {
|
|
7
|
+
displayName: 'novin Get Users of a Segment',
|
|
8
|
+
name: 'getSegmentUsers',
|
|
9
|
+
icon: 'file:getSegmentUsers.svg',
|
|
10
|
+
group: ['transform'],
|
|
11
|
+
version: 1,
|
|
12
|
+
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
13
|
+
description: 'Node to get users of a segment based on match conditions',
|
|
14
|
+
defaults: {
|
|
15
|
+
name: 'Get A Segment Users',
|
|
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: 'Get Users of a Segment',
|
|
41
|
+
value: 'segmentUsers',
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
default: 'segmentUsers',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
displayName: 'Operation',
|
|
48
|
+
name: 'operation',
|
|
49
|
+
type: 'options',
|
|
50
|
+
noDataExpression: true,
|
|
51
|
+
displayOptions: {
|
|
52
|
+
show: {
|
|
53
|
+
resource: [
|
|
54
|
+
'segmentUsers',
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
options: [
|
|
59
|
+
{
|
|
60
|
+
name: 'Get',
|
|
61
|
+
value: 'get',
|
|
62
|
+
action: 'Get users of a segment',
|
|
63
|
+
description: 'Get users of a segment based on match conditions',
|
|
64
|
+
routing: {
|
|
65
|
+
request: {
|
|
66
|
+
method: 'POST',
|
|
67
|
+
url: '/users/getSegmentUsers',
|
|
68
|
+
body: {
|
|
69
|
+
match: '={{JSON.parse($parameter["additionalFields"]["match"])}}',
|
|
70
|
+
project: '={{JSON.parse($parameter["additionalFields"]["project"] )}}',
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
default: 'get',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
displayName: 'Body Fields',
|
|
80
|
+
name: 'additionalFields',
|
|
81
|
+
type: 'collection',
|
|
82
|
+
placeholder: 'Add Body Parameters',
|
|
83
|
+
default: {},
|
|
84
|
+
options: [
|
|
85
|
+
{
|
|
86
|
+
displayName: 'Match Condition',
|
|
87
|
+
name: 'match',
|
|
88
|
+
type: 'json',
|
|
89
|
+
default: '{}',
|
|
90
|
+
description: 'Match condition as JSON',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
displayName: 'Projection Fields',
|
|
94
|
+
name: 'project',
|
|
95
|
+
type: 'json',
|
|
96
|
+
default: '{"$match":{}}',
|
|
97
|
+
description: 'Projection fields as JSON',
|
|
98
|
+
},
|
|
99
|
+
],
|
|
100
|
+
},
|
|
101
|
+
]
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
exports.GetSegmentUsers = GetSegmentUsers;
|
|
106
|
+
//# sourceMappingURL=GetSegmentUsers.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetSegmentUsers.node.js","sourceRoot":"","sources":["../../../nodes/GetSegmentUsers/GetSegmentUsers.node.ts"],"names":[],"mappings":";;;AACA,MAAa,eAAe;IAA5B;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,8BAA8B;YAC3C,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,0BAA0B;YAChC,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,0DAA0D;YACvE,QAAQ,EAAE;gBACT,IAAI,EAAE,qBAAqB;aAC3B;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,wBAAwB;4BAC9B,KAAK,EAAE,cAAc;yBACrB;qBACD;oBACD,OAAO,EAAE,cAAc;iBACvB;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,cAAc;6BACd;yBACD;qBACD;oBACD,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,KAAK;4BACX,KAAK,EAAE,KAAK;4BACZ,MAAM,EAAE,wBAAwB;4BAChC,WAAW,EAAE,kDAAkD;4BAC/D,OAAO,EAAE;gCACR,OAAO,EAAE;oCACR,MAAM,EAAE,MAAM;oCACd,GAAG,EAAE,wBAAwB;oCAC7B,IAAI,EAAE;wCACL,KAAK,EAAE,0DAA0D;wCACjE,OAAO,EAAE,6DAA6D;qCACtE;iCACD;6BACD;yBACD;qBACD;oBACD,OAAO,EAAE,KAAK;iBACd;gBACD;oBACC,WAAW,EAAE,aAAa;oBAC1B,IAAI,EAAE,kBAAkB;oBACxB,IAAI,EAAE,YAAY;oBAClB,WAAW,EAAE,qBAAqB;oBAClC,OAAO,EAAE,EAAE;oBACX,OAAO,EAAE;wBACR;4BACC,WAAW,EAAE,iBAAiB;4BAC9B,IAAI,EAAE,OAAO;4BACb,IAAI,EAAE,MAAM;4BACZ,OAAO,EAAE,IAAI;4BACb,WAAW,EAAE,yBAAyB;yBACtC;wBACD;4BACC,WAAW,EAAE,mBAAmB;4BAChC,IAAI,EAAE,SAAS;4BACf,IAAI,EAAE,MAAM;4BACZ,OAAO,EAAE,eAAe;4BACxB,WAAW,EAAE,2BAA2B;yBACxC;qBACD;iBACD;aAED;SACD,CAAC;IACH,CAAC;CAAA;AApGD,0CAoGC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-base.GetSegmentUsers",
|
|
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,41 @@
|
|
|
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="60.000000pt" height="60.000000pt" viewBox="0 0 60.000000 60.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
|
|
8
|
+
<g transform="translate(0.000000,60.000000) scale(0.100000,-0.100000)"
|
|
9
|
+
fill="#000000" stroke="none">
|
|
10
|
+
<path d="M222 565 c-61 -19 -117 -60 -151 -112 -110 -165 -20 -380 175 -424
|
|
11
|
+
187 -42 367 138 325 325 -24 106 -93 180 -197 212 -57 17 -95 17 -152 -1z m68
|
|
12
|
+
-125 c0 -109 -2 -130 -15 -130 -8 0 -15 6 -15 13 0 7 -5 18 -12 25 -7 7 -11
|
|
13
|
+
30 -9 53 3 50 -12 69 -57 69 l-35 0 6 -60 c3 -33 1 -60 -4 -60 -5 0 -9 -9 -9
|
|
14
|
+
-20 0 -18 -7 -20 -54 -20 l-54 0 9 43 c22 96 99 177 196 203 26 7 49 13 51 13
|
|
15
|
+
1 1 2 -57 2 -129z m145 85 c40 -23 105 -95 105 -115 0 -11 -80 -39 -94 -34 -9
|
|
16
|
+
4 -12 18 -8 49 5 51 -8 75 -43 75 -34 0 -48 -24 -43 -73 3 -28 0 -47 -8 -55
|
|
17
|
+
-8 -7 -14 -21 -14 -32 0 -10 -4 -22 -10 -25 -6 -4 -10 39 -10 121 l0 127 40
|
|
18
|
+
-6 c22 -3 60 -17 85 -32z m-17 -52 c2 -8 -6 -13 -22 -13 -25 0 -33 10 -19 24
|
|
19
|
+
10 10 36 3 41 -11z m-198 -23 c0 -5 -11 -10 -25 -10 -14 0 -25 5 -25 10 0 6
|
|
20
|
+
11 10 25 10 14 0 25 -4 25 -10z m210 -19 c0 -10 -7 -24 -16 -32 -20 -16 -48
|
|
21
|
+
-1 -52 30 -3 18 1 21 32 21 29 0 36 -4 36 -19z m-202 -27 c4 -25 -22 -49 -43
|
|
22
|
+
-40 -8 3 -15 18 -15 34 0 24 4 28 28 27 20 0 28 -6 30 -21z m335 -62 c8 -43
|
|
23
|
+
-6 -147 -22 -157 -5 -2 -16 4 -25 14 -17 18 -17 20 4 41 12 12 20 31 18 43 -2
|
|
24
|
+
18 -13 24 -51 31 -58 12 -81 1 -85 -39 -3 -21 3 -34 20 -46 21 -16 21 -18 5
|
|
25
|
+
-25 -14 -5 -30 5 -63 37 -24 24 -43 48 -41 53 4 12 197 95 217 92 9 -1 18 -18
|
|
26
|
+
23 -44z m-135 27 c-4 -13 -76 -44 -84 -36 -3 3 -1 15 6 26 8 15 20 21 46 21
|
|
27
|
+
22 0 34 -4 32 -11z m-190 -31 c22 -22 13 -28 -38 -28 -35 0 -50 4 -50 13 0 8
|
|
28
|
+
3 17 7 20 11 12 68 8 81 -5z m285 -47 c9 -9 -1 -41 -14 -41 -5 0 -9 5 -9 10 0
|
|
29
|
+
16 -46 12 -60 -5 -18 -22 -29 -18 -27 8 2 37 18 48 62 42 22 -3 44 -10 48 -14z
|
|
30
|
+
m-128 -92 l90 -90 -30 -25 c-30 -24 -113 -55 -127 -47 -5 2 -8 42 -8 88 0 78
|
|
31
|
+
-2 85 -26 104 -35 28 -67 26 -101 -3 -25 -22 -28 -31 -28 -85 0 -36 -4 -61
|
|
32
|
+
-11 -61 -31 0 -105 111 -117 178 l-6 32 137 0 137 0 90 -91z m95 42 c0 -26
|
|
33
|
+
-17 -36 -36 -21 -11 10 -12 16 -3 26 17 20 39 17 39 -5z m-206 -22 c21 -17 26
|
|
34
|
+
-29 26 -64 0 -35 -3 -43 -15 -39 -9 4 -12 15 -9 33 5 22 1 29 -21 39 -14 7
|
|
35
|
+
-32 12 -40 12 -17 0 -28 -33 -20 -59 3 -12 0 -21 -10 -25 -12 -4 -15 3 -15 37
|
|
36
|
+
0 47 6 58 35 75 28 16 39 15 69 -9z m224 -31 c16 -16 15 -43 -2 -57 -11 -10
|
|
37
|
+
-21 -6 -46 19 -17 17 -28 35 -25 40 9 14 59 12 73 -2z m-253 -10 c28 -13 30
|
|
38
|
+
-19 13 -36 -27 -27 -73 5 -53 38 8 13 9 12 40 -2z m40 -78 c19 -15 20 -70 2
|
|
39
|
+
-70 -34 0 -117 32 -117 45 0 37 79 55 115 25z"/>
|
|
40
|
+
</g>
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-novinmarketing",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Novin Marketing Workflow Nodes",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package"
|
|
7
|
+
],
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"homepage": "https://novin.marketing",
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "Dr.Mehrjoo",
|
|
12
|
+
"email": "mehrjoo@novin.marketing"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/mehrjoo61/n8nNodes.git"
|
|
17
|
+
},
|
|
18
|
+
"main": "index.js",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsc && gulp build:icons",
|
|
21
|
+
"dev": "tsc --watch",
|
|
22
|
+
"format": "prettier nodes credentials --write",
|
|
23
|
+
"lint": "eslint nodes credentials package.json",
|
|
24
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
25
|
+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"n8n": {
|
|
31
|
+
"n8nNodesApiVersion": 1,
|
|
32
|
+
"credentials": [
|
|
33
|
+
"dist/credentials/novinMarketingApi.credentials.js"
|
|
34
|
+
],
|
|
35
|
+
"nodes": [
|
|
36
|
+
"dist/nodes/GetSegmentUsers/GetSegmentUsers.node.js",
|
|
37
|
+
"dist/nodes/CheckConditions/CheckConditions.node.js"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@typescript-eslint/parser": "~5.45",
|
|
42
|
+
"eslint-plugin-n8n-nodes-base": "^1.11.0",
|
|
43
|
+
"gulp": "^4.0.2",
|
|
44
|
+
"n8n-workflow": "*",
|
|
45
|
+
"prettier": "^2.7.1",
|
|
46
|
+
"typescript": "~4.8.4"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"n8n-workflow": "*"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +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.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/checkconditions/checkconditions.node.json","../nodes/getsegmentusers/getsegmentusers.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":"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"},"c2498cfef47da1ac035fce308965c581eb5f3dd692311bc90e10e04f580711ef","a996dcdac6595062a67529cbb4707365fdd433eb183b3e1594ae8786f2e059f3","598d73d5e2c90f7ae62604f1ddc66da9167f099bb734ff1a751b1e93718aebfa","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":[[108],[77],[75,76],[77,78],[61],[72],[71,72,73,74],[62,63],[62],[61,63,65],[62,68,69],[61,65,66,67],[61,65,68,70],[61,65],[61,68],[61,62,64],[61,62,64,65,66,68,69,70],[116,155],[116,140,155],[155],[116],[116,141,155],[116,117,118,119,120,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],[141,155],[46],[46,58],[47,108],[88],[47],[48],[46,47,48,51,52,54,55,56,84,85,86,87,88,89,90,91],[46,54,58],[54,55,108],[52],[51],[46,47,58],[50,58],[58,79],[102],[102,103],[42,43,44,45,49,50,53,58,59,60,80,81,82,83,92,93,94,95,96,97,98,99,100,101,104,105,106,107],[41,42,43,44,45,48,50,51,52,53,55,56,57,108],[58],[49,58]],"referencedMap":[[109,1],[78,2],[77,3],[79,4],[72,5],[73,6],[75,7],[64,8],[63,9],[62,10],[70,11],[68,12],[69,13],[66,14],[67,15],[65,16],[71,17],[140,18],[141,19],[116,20],[119,20],[138,18],[139,18],[129,18],[128,21],[126,18],[121,18],[134,18],[132,18],[136,18],[120,18],[133,18],[137,18],[122,18],[123,18],[135,18],[117,18],[124,18],[125,18],[127,18],[131,18],[142,22],[130,18],[118,18],[155,23],[149,22],[151,24],[150,22],[143,22],[144,22],[146,22],[148,22],[152,24],[153,24],[145,24],[147,24],[60,25],[47,26],[54,27],[89,28],[84,29],[91,30],[48,29],[92,31],[55,32],[56,33],[85,29],[88,34],[90,26],[86,35],[51,36],[87,35],[52,27],[49,37],[80,38],[103,39],[104,40],[108,41],[58,42],[59,43],[95,43],[81,37],[107,43],[82,43],[96,37],[83,43],[101,43],[99,43],[100,43],[98,43],[50,44],[97,37],[53,43],[110,1],[111,1]],"exportedModulesMap":[[109,1],[78,2],[77,3],[79,4],[72,5],[73,6],[75,7],[64,8],[63,9],[62,10],[70,11],[68,12],[69,13],[66,14],[67,15],[65,16],[71,17],[140,18],[141,19],[116,20],[119,20],[138,18],[139,18],[129,18],[128,21],[126,18],[121,18],[134,18],[132,18],[136,18],[120,18],[133,18],[137,18],[122,18],[123,18],[135,18],[117,18],[124,18],[125,18],[127,18],[131,18],[142,22],[130,18],[118,18],[155,23],[149,22],[151,24],[150,22],[143,22],[144,22],[146,22],[148,22],[152,24],[153,24],[145,24],[147,24],[60,25],[47,26],[54,27],[89,28],[84,29],[91,30],[48,29],[92,31],[55,32],[56,33],[85,29],[88,34],[90,26],[86,35],[51,36],[87,35],[52,27],[49,37],[80,38],[103,39],[104,40],[108,41],[58,42],[59,43],[95,43],[81,37],[107,43],[82,43],[96,37],[83,43],[101,43],[99,43],[100,43],[98,43],[50,44],[97,37],[53,43],[110,1],[111,1]],"semanticDiagnosticsPerFile":[109,78,77,76,79,72,73,74,75,64,63,62,70,68,69,66,67,65,71,61,115,140,141,116,119,138,139,129,128,126,121,134,132,136,120,133,137,122,123,135,117,124,125,127,131,142,130,118,155,154,149,151,150,143,144,146,148,152,153,145,147,57,41,42,43,93,44,60,47,54,46,89,84,91,48,92,55,56,85,88,90,86,51,87,52,45,49,80,103,105,102,104,94,108,58,59,95,106,81,107,82,96,83,101,99,100,98,50,97,53,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,33,38,39,34,35,36,37,40,1,112,110,113,111,114]},"version":"4.8.4"}
|
package/index.js
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-novinmarketing",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Novin Marketing Workflow Nodes",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package"
|
|
7
|
+
],
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"homepage": "https://novin.marketing",
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "Dr.Mehrjoo",
|
|
12
|
+
"email": "mehrjoo@novin.marketing"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/mehrjoo61/n8nNodes.git"
|
|
17
|
+
},
|
|
18
|
+
"main": "index.js",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsc && gulp build:icons",
|
|
21
|
+
"dev": "tsc --watch",
|
|
22
|
+
"format": "prettier nodes credentials --write",
|
|
23
|
+
"lint": "eslint nodes credentials package.json",
|
|
24
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
25
|
+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"n8n": {
|
|
31
|
+
"n8nNodesApiVersion": 1,
|
|
32
|
+
"credentials": [
|
|
33
|
+
"dist/credentials/novinMarketingApi.credentials.js"
|
|
34
|
+
],
|
|
35
|
+
"nodes": [
|
|
36
|
+
"dist/nodes/GetSegmentUsers/GetSegmentUsers.node.js",
|
|
37
|
+
"dist/nodes/CheckConditions/CheckConditions.node.js"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@typescript-eslint/parser": "~5.45",
|
|
42
|
+
"eslint-plugin-n8n-nodes-base": "^1.11.0",
|
|
43
|
+
"gulp": "^4.0.2",
|
|
44
|
+
"n8n-workflow": "*",
|
|
45
|
+
"prettier": "^2.7.1",
|
|
46
|
+
"typescript": "~4.8.4"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"n8n-workflow": "*"
|
|
50
|
+
}
|
|
51
|
+
}
|