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

|
|
2
|
+
|
|
3
|
+
# n8n-nodes-noperators
|
|
4
|
+
|
|
5
|
+
This is an n8n community node. It lets you use the [Noperators](https://noperators.com/) browser automation API in your n8n workflows.
|
|
6
|
+
|
|
7
|
+
Noperators is a browser automation platform that lets you trigger flows, monitor runs, and retrieve artifacts (screenshots, downloads, recordings).
|
|
8
|
+
|
|
9
|
+
[n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
|
|
10
|
+
|
|
11
|
+
[Installation](#installation)
|
|
12
|
+
[Operations](#operations)
|
|
13
|
+
[Credentials](#credentials)
|
|
14
|
+
[Compatibility](#compatibility)
|
|
15
|
+
[Usage](#usage)
|
|
16
|
+
[Resources](#resources)
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
|
|
21
|
+
|
|
22
|
+
## Operations
|
|
23
|
+
|
|
24
|
+
> Flow
|
|
25
|
+
- Trigger a flow (with optional JSON input)
|
|
26
|
+
|
|
27
|
+
> Run
|
|
28
|
+
- List runs (paginated, with status filter)
|
|
29
|
+
- Get a run
|
|
30
|
+
- Get run result (output, timing, status)
|
|
31
|
+
|
|
32
|
+
> Artifact
|
|
33
|
+
- List artifacts (screenshots or downloads)
|
|
34
|
+
- Download a specific artifact file
|
|
35
|
+
- Download session recording (video/mp4)
|
|
36
|
+
|
|
37
|
+
## Credentials
|
|
38
|
+
|
|
39
|
+
To use this node, you need:
|
|
40
|
+
|
|
41
|
+
1. A Noperators account at [noperators.com](https://noperators.com/)
|
|
42
|
+
2. Your instance URL (e.g. `https://your-team.noperators.com`)
|
|
43
|
+
3. An API key generated from your profile page
|
|
44
|
+
|
|
45
|
+
## Compatibility
|
|
46
|
+
|
|
47
|
+
This node is compatible with n8n version 1.0.0 and above.
|
|
48
|
+
|
|
49
|
+
## Usage
|
|
50
|
+
|
|
51
|
+
1. **Trigger a flow**: Start a browser automation flow by its ID, ULID, or classifier. Optionally pass JSON input data.
|
|
52
|
+
2. **Monitor runs**: List all runs for a flow (filter by status), get details of a specific run, or fetch the output of a completed run.
|
|
53
|
+
3. **Download artifacts**: Retrieve screenshots, downloaded files, or session recordings from completed runs.
|
|
54
|
+
|
|
55
|
+
## Development
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
npm install
|
|
59
|
+
npm link
|
|
60
|
+
npm run dev
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
In a separate terminal, link the package into your n8n custom nodes directory:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
cd ~/.n8n
|
|
67
|
+
mkdir -p custom && cd custom
|
|
68
|
+
npm init -y
|
|
69
|
+
npm link n8n-nodes-noperators
|
|
70
|
+
n8n start
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Resources
|
|
74
|
+
|
|
75
|
+
* [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/)
|
|
76
|
+
* [Noperators website](https://noperators.com/)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IAuthenticateGeneric, Icon, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare class NoperatorsApi implements ICredentialType {
|
|
3
|
+
name: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
icon: Icon;
|
|
6
|
+
documentationUrl: string;
|
|
7
|
+
properties: INodeProperties[];
|
|
8
|
+
authenticate: IAuthenticateGeneric;
|
|
9
|
+
test: ICredentialTestRequest;
|
|
10
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NoperatorsApi = void 0;
|
|
4
|
+
class NoperatorsApi {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = 'noperatorsApi';
|
|
7
|
+
this.displayName = 'Noperators API';
|
|
8
|
+
this.icon = { light: 'file:noperators.png', dark: 'file:noperators.png' };
|
|
9
|
+
this.documentationUrl = 'https://noperators.com/';
|
|
10
|
+
this.properties = [
|
|
11
|
+
{
|
|
12
|
+
displayName: 'Instance URL',
|
|
13
|
+
name: 'instanceUrl',
|
|
14
|
+
type: 'string',
|
|
15
|
+
required: true,
|
|
16
|
+
typeOptions: {
|
|
17
|
+
url: true,
|
|
18
|
+
},
|
|
19
|
+
default: 'https://your-team.noperators.com',
|
|
20
|
+
description: 'Your Noperators instance URL (e.g. https://your-team.noperators.com)',
|
|
21
|
+
placeholder: 'https://your-team.noperators.com',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
displayName: 'API Key',
|
|
25
|
+
name: 'apiKey',
|
|
26
|
+
type: 'string',
|
|
27
|
+
typeOptions: {
|
|
28
|
+
password: true,
|
|
29
|
+
},
|
|
30
|
+
required: true,
|
|
31
|
+
default: '',
|
|
32
|
+
description: 'API key generated from your Noperators profile page',
|
|
33
|
+
placeholder: 'Enter your API key here',
|
|
34
|
+
},
|
|
35
|
+
];
|
|
36
|
+
this.authenticate = {
|
|
37
|
+
type: 'generic',
|
|
38
|
+
properties: {
|
|
39
|
+
headers: {
|
|
40
|
+
'Authorization': '=Bearer {{ $credentials?.apiKey }}',
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
this.test = {
|
|
45
|
+
request: {
|
|
46
|
+
method: 'GET',
|
|
47
|
+
baseURL: '={{$credentials?.instanceUrl}}',
|
|
48
|
+
url: '/api/v1/flows/test/runs',
|
|
49
|
+
ignoreHttpStatusErrors: true,
|
|
50
|
+
skipSslCertificateValidation: true
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
exports.NoperatorsApi = NoperatorsApi;
|
|
56
|
+
//# sourceMappingURL=NoperatorsApi.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NoperatorsApi.credentials.js","sourceRoot":"","sources":["../../credentials/NoperatorsApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,aAAa;IAA1B;QACC,SAAI,GAAG,eAAe,CAAC;QACvB,gBAAW,GAAG,gBAAgB,CAAC;QAC/B,SAAI,GAAS,EAAE,KAAK,EAAE,qBAAqB,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;QAC3E,qBAAgB,GAAG,yBAAyB,CAAC;QAC7C,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,cAAc;gBAC3B,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE;oBACZ,GAAG,EAAE,IAAI;iBACT;gBACD,OAAO,EAAE,kCAAkC;gBAC3C,WAAW,EAAE,sEAAsE;gBACnF,WAAW,EAAE,kCAAkC;aAC/C;YACD;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,qDAAqD;gBAClE,WAAW,EAAE,yBAAyB;aACtC;SACD,CAAC;QACF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,eAAe,EAAE,oCAAoC;iBACrD;aACD;SACD,CAAC;QACF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,MAAM,EAAE,KAAK;gBACb,OAAO,EAAE,gCAAgC;gBACzC,GAAG,EAAE,yBAAyB;gBAC9B,sBAAsB,EAAE,IAAI;gBAC5B,4BAA4B,EAAE,IAAI;aAClC;SACD,CAAC;IACH,CAAC;CAAA;AAhDD,sCAgDC"}
|
|
Binary file
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
2
|
+
export declare class Noperators implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Noperators = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
const flow_1 = require("./actions/flow/flow");
|
|
6
|
+
const run_1 = require("./actions/run/run");
|
|
7
|
+
const artifact_1 = require("./actions/artifact/artifact");
|
|
8
|
+
class Noperators {
|
|
9
|
+
constructor() {
|
|
10
|
+
this.description = {
|
|
11
|
+
displayName: 'Noperators',
|
|
12
|
+
name: 'noperators',
|
|
13
|
+
icon: 'file:noperators.png',
|
|
14
|
+
group: ['output'],
|
|
15
|
+
version: 1,
|
|
16
|
+
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
17
|
+
description: 'Trigger browser automation flows, fetch run results, and download artifacts via the Noperators API',
|
|
18
|
+
defaults: {
|
|
19
|
+
name: 'Noperators',
|
|
20
|
+
},
|
|
21
|
+
inputs: ['main'],
|
|
22
|
+
outputs: ['main'],
|
|
23
|
+
credentials: [
|
|
24
|
+
{
|
|
25
|
+
name: 'noperatorsApi',
|
|
26
|
+
required: true,
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
properties: [
|
|
30
|
+
{
|
|
31
|
+
displayName: 'Resource',
|
|
32
|
+
name: 'resource',
|
|
33
|
+
type: 'options',
|
|
34
|
+
noDataExpression: true,
|
|
35
|
+
options: [
|
|
36
|
+
{
|
|
37
|
+
name: 'Artifact',
|
|
38
|
+
value: 'artifact',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Flow',
|
|
42
|
+
value: 'flow',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
name: 'Run',
|
|
46
|
+
value: 'run',
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
default: 'flow',
|
|
50
|
+
},
|
|
51
|
+
...flow_1.flowOperations,
|
|
52
|
+
...run_1.runOperations,
|
|
53
|
+
...artifact_1.artifactOperations,
|
|
54
|
+
...flow_1.flowParameters,
|
|
55
|
+
...run_1.runParameters,
|
|
56
|
+
...artifact_1.artifactParameters,
|
|
57
|
+
],
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
async execute() {
|
|
61
|
+
const items = this.getInputData();
|
|
62
|
+
const returnData = [];
|
|
63
|
+
const resource = this.getNodeParameter('resource', 0, 'flow');
|
|
64
|
+
for (let i = 0; i < items.length; i++) {
|
|
65
|
+
try {
|
|
66
|
+
const operation = this.getNodeParameter('operation', i, '');
|
|
67
|
+
let results;
|
|
68
|
+
switch (resource) {
|
|
69
|
+
case 'flow':
|
|
70
|
+
results = await flow_1.executeFlowOperation.call(this, items[i], i, operation);
|
|
71
|
+
break;
|
|
72
|
+
case 'run':
|
|
73
|
+
results = await run_1.executeRunOperation.call(this, items[i], i, operation);
|
|
74
|
+
break;
|
|
75
|
+
case 'artifact':
|
|
76
|
+
results = await artifact_1.executeArtifactOperation.call(this, items[i], i, operation);
|
|
77
|
+
break;
|
|
78
|
+
default:
|
|
79
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Unsupported resource: ${resource}`);
|
|
80
|
+
}
|
|
81
|
+
returnData.push(...results);
|
|
82
|
+
}
|
|
83
|
+
catch (error) {
|
|
84
|
+
if (this.continueOnFail()) {
|
|
85
|
+
returnData.push({
|
|
86
|
+
json: { error: error.message },
|
|
87
|
+
pairedItem: i,
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
else {
|
|
91
|
+
if (error.context) {
|
|
92
|
+
error.context.itemIndex = i;
|
|
93
|
+
throw error;
|
|
94
|
+
}
|
|
95
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), error, { itemIndex: i });
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
return [returnData];
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
exports.Noperators = Noperators;
|
|
103
|
+
//# sourceMappingURL=Noperators.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Noperators.node.js","sourceRoot":"","sources":["../../../nodes/Noperators/Noperators.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-base.noperators",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": [
|
|
6
|
+
"Development",
|
|
7
|
+
"Data & Storage"
|
|
8
|
+
],
|
|
9
|
+
"resources": {
|
|
10
|
+
"credentialDocumentation": [
|
|
11
|
+
{
|
|
12
|
+
"url": "https://noperators.com/"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"primaryDocumentation": [
|
|
16
|
+
{
|
|
17
|
+
"url": "https://noperators.com/"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IExecuteFunctions, INodeExecutionData, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare const artifactOperations: INodeProperties[];
|
|
3
|
+
export declare const artifactParameters: INodeProperties[];
|
|
4
|
+
export declare function executeArtifactOperation(this: IExecuteFunctions, item: INodeExecutionData, itemIndex: number, operation: string): Promise<INodeExecutionData[]>;
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.artifactParameters = exports.artifactOperations = void 0;
|
|
4
|
+
exports.executeArtifactOperation = executeArtifactOperation;
|
|
5
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
6
|
+
const utils_1 = require("../../utils");
|
|
7
|
+
exports.artifactOperations = [
|
|
8
|
+
{
|
|
9
|
+
displayName: 'Operation',
|
|
10
|
+
name: 'operation',
|
|
11
|
+
type: 'options',
|
|
12
|
+
noDataExpression: true,
|
|
13
|
+
displayOptions: {
|
|
14
|
+
show: {
|
|
15
|
+
resource: ['artifact'],
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
options: [
|
|
19
|
+
{
|
|
20
|
+
name: 'Download Artifact',
|
|
21
|
+
value: 'downloadArtifact',
|
|
22
|
+
description: 'Download a specific artifact file',
|
|
23
|
+
action: 'Download an artifact',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
name: 'Download Recording',
|
|
27
|
+
value: 'downloadRecording',
|
|
28
|
+
description: 'Download the session recording (video/mp4)',
|
|
29
|
+
action: 'Download recording',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'List Artifacts',
|
|
33
|
+
value: 'listArtifacts',
|
|
34
|
+
description: 'List artifact files for a given type',
|
|
35
|
+
action: 'List artifacts',
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
default: 'listArtifacts',
|
|
39
|
+
},
|
|
40
|
+
];
|
|
41
|
+
exports.artifactParameters = [
|
|
42
|
+
{
|
|
43
|
+
displayName: 'Flow Identifier',
|
|
44
|
+
name: 'flowIdentifier',
|
|
45
|
+
type: 'string',
|
|
46
|
+
required: true,
|
|
47
|
+
default: '',
|
|
48
|
+
placeholder: 'e.g. flow_id, ULID, or classifier',
|
|
49
|
+
description: 'The flow ID, ULID, or classifier',
|
|
50
|
+
displayOptions: {
|
|
51
|
+
show: {
|
|
52
|
+
resource: ['artifact'],
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
displayName: 'Run ID',
|
|
58
|
+
name: 'runId',
|
|
59
|
+
type: 'number',
|
|
60
|
+
required: true,
|
|
61
|
+
default: 0,
|
|
62
|
+
description: 'The ID of the run',
|
|
63
|
+
displayOptions: {
|
|
64
|
+
show: {
|
|
65
|
+
resource: ['artifact'],
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
displayName: 'Artifact Type',
|
|
71
|
+
name: 'artifactType',
|
|
72
|
+
type: 'options',
|
|
73
|
+
required: true,
|
|
74
|
+
default: 'screenshots',
|
|
75
|
+
options: [
|
|
76
|
+
{ name: 'Screenshots', value: 'screenshots' },
|
|
77
|
+
{ name: 'Downloads', value: 'downloads' },
|
|
78
|
+
],
|
|
79
|
+
displayOptions: {
|
|
80
|
+
show: {
|
|
81
|
+
resource: ['artifact'],
|
|
82
|
+
operation: ['listArtifacts', 'downloadArtifact'],
|
|
83
|
+
},
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
displayName: 'Filename',
|
|
88
|
+
name: 'filename',
|
|
89
|
+
type: 'string',
|
|
90
|
+
required: true,
|
|
91
|
+
default: '',
|
|
92
|
+
placeholder: 'e.g. screenshot-1.png',
|
|
93
|
+
description: 'The name of the artifact file to download',
|
|
94
|
+
displayOptions: {
|
|
95
|
+
show: {
|
|
96
|
+
resource: ['artifact'],
|
|
97
|
+
operation: ['downloadArtifact'],
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
displayName: 'Binary Property',
|
|
103
|
+
name: 'binaryProperty',
|
|
104
|
+
type: 'string',
|
|
105
|
+
default: 'data',
|
|
106
|
+
description: 'Name of the binary property to write the downloaded file to',
|
|
107
|
+
displayOptions: {
|
|
108
|
+
show: {
|
|
109
|
+
resource: ['artifact'],
|
|
110
|
+
operation: ['downloadRecording', 'downloadArtifact'],
|
|
111
|
+
},
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
];
|
|
115
|
+
async function executeArtifactOperation(item, itemIndex, operation) {
|
|
116
|
+
switch (operation) {
|
|
117
|
+
case 'listArtifacts':
|
|
118
|
+
return listArtifacts.call(this, itemIndex);
|
|
119
|
+
case 'downloadRecording':
|
|
120
|
+
return downloadRecording.call(this, itemIndex);
|
|
121
|
+
case 'downloadArtifact':
|
|
122
|
+
return downloadArtifact.call(this, itemIndex);
|
|
123
|
+
default:
|
|
124
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Unsupported operation: ${operation}`);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
async function listArtifacts(itemIndex) {
|
|
128
|
+
const identifier = this.getNodeParameter('flowIdentifier', itemIndex, '');
|
|
129
|
+
const runId = this.getNodeParameter('runId', itemIndex, 0);
|
|
130
|
+
const artifactType = this.getNodeParameter('artifactType', itemIndex, 'screenshots');
|
|
131
|
+
const response = await utils_1.noperatorsApiRequest.call(this, 'GET', `/flows/${encodeURIComponent(identifier)}/runs/${runId}/artifacts/${artifactType}`);
|
|
132
|
+
if (Array.isArray(response)) {
|
|
133
|
+
return response.map((file) => ({
|
|
134
|
+
json: file,
|
|
135
|
+
pairedItem: itemIndex,
|
|
136
|
+
}));
|
|
137
|
+
}
|
|
138
|
+
return [{ json: response, pairedItem: itemIndex }];
|
|
139
|
+
}
|
|
140
|
+
async function downloadRecording(itemIndex) {
|
|
141
|
+
const identifier = this.getNodeParameter('flowIdentifier', itemIndex, '');
|
|
142
|
+
const runId = this.getNodeParameter('runId', itemIndex, 0);
|
|
143
|
+
const binaryProperty = this.getNodeParameter('binaryProperty', itemIndex, 'data');
|
|
144
|
+
const response = await utils_1.noperatorsApiRequestBinary.call(this, `/flows/${encodeURIComponent(identifier)}/runs/${runId}/recording`);
|
|
145
|
+
const binaryData = await this.helpers.prepareBinaryData(Buffer.from(response.body), `recording-run-${runId}.mp4`, 'video/mp4');
|
|
146
|
+
return [{
|
|
147
|
+
json: { run_id: runId },
|
|
148
|
+
binary: { [binaryProperty]: binaryData },
|
|
149
|
+
pairedItem: itemIndex,
|
|
150
|
+
}];
|
|
151
|
+
}
|
|
152
|
+
async function downloadArtifact(itemIndex) {
|
|
153
|
+
var _a;
|
|
154
|
+
const identifier = this.getNodeParameter('flowIdentifier', itemIndex, '');
|
|
155
|
+
const runId = this.getNodeParameter('runId', itemIndex, 0);
|
|
156
|
+
const artifactType = this.getNodeParameter('artifactType', itemIndex, 'screenshots');
|
|
157
|
+
const filename = this.getNodeParameter('filename', itemIndex, '');
|
|
158
|
+
const binaryProperty = this.getNodeParameter('binaryProperty', itemIndex, 'data');
|
|
159
|
+
const response = await utils_1.noperatorsApiRequestBinary.call(this, `/flows/${encodeURIComponent(identifier)}/runs/${runId}/artifacts/${artifactType}/${encodeURIComponent(filename)}`);
|
|
160
|
+
const contentType = ((_a = response.headers) === null || _a === void 0 ? void 0 : _a['content-type']) || 'application/octet-stream';
|
|
161
|
+
const binaryData = await this.helpers.prepareBinaryData(Buffer.from(response.body), filename, contentType);
|
|
162
|
+
return [{
|
|
163
|
+
json: { run_id: runId, artifact_type: artifactType, filename },
|
|
164
|
+
binary: { [binaryProperty]: binaryData },
|
|
165
|
+
pairedItem: itemIndex,
|
|
166
|
+
}];
|
|
167
|
+
}
|
|
168
|
+
//# sourceMappingURL=artifact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"artifact.js","sourceRoot":"","sources":["../../../../../nodes/Noperators/actions/artifact/artifact.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IExecuteFunctions, INodeExecutionData, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare const flowOperations: INodeProperties[];
|
|
3
|
+
export declare const flowParameters: INodeProperties[];
|
|
4
|
+
export declare function executeFlowOperation(this: IExecuteFunctions, item: INodeExecutionData, itemIndex: number, operation: string): Promise<INodeExecutionData[]>;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.flowParameters = exports.flowOperations = void 0;
|
|
4
|
+
exports.executeFlowOperation = executeFlowOperation;
|
|
5
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
6
|
+
const utils_1 = require("../../utils");
|
|
7
|
+
exports.flowOperations = [
|
|
8
|
+
{
|
|
9
|
+
displayName: 'Operation',
|
|
10
|
+
name: 'operation',
|
|
11
|
+
type: 'options',
|
|
12
|
+
noDataExpression: true,
|
|
13
|
+
displayOptions: {
|
|
14
|
+
show: {
|
|
15
|
+
resource: ['flow'],
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
options: [
|
|
19
|
+
{
|
|
20
|
+
name: 'Trigger',
|
|
21
|
+
value: 'trigger',
|
|
22
|
+
description: 'Trigger a flow and start a new run',
|
|
23
|
+
action: 'Trigger a flow',
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
default: 'trigger',
|
|
27
|
+
},
|
|
28
|
+
];
|
|
29
|
+
exports.flowParameters = [
|
|
30
|
+
{
|
|
31
|
+
displayName: 'Flow Identifier',
|
|
32
|
+
name: 'flowIdentifier',
|
|
33
|
+
type: 'string',
|
|
34
|
+
required: true,
|
|
35
|
+
default: '',
|
|
36
|
+
placeholder: 'e.g. flow_id, ULID, or classifier',
|
|
37
|
+
description: 'The flow ID, ULID, or classifier',
|
|
38
|
+
displayOptions: {
|
|
39
|
+
show: {
|
|
40
|
+
resource: ['flow'],
|
|
41
|
+
operation: ['trigger'],
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
displayName: 'Input (JSON)',
|
|
47
|
+
name: 'inputJson',
|
|
48
|
+
type: 'json',
|
|
49
|
+
default: '{}',
|
|
50
|
+
description: 'Optional JSON input to pass to the flow',
|
|
51
|
+
displayOptions: {
|
|
52
|
+
show: {
|
|
53
|
+
resource: ['flow'],
|
|
54
|
+
operation: ['trigger'],
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
];
|
|
59
|
+
async function executeFlowOperation(item, itemIndex, operation) {
|
|
60
|
+
if (operation === 'trigger') {
|
|
61
|
+
return triggerFlow.call(this, itemIndex);
|
|
62
|
+
}
|
|
63
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Unsupported operation: ${operation}`);
|
|
64
|
+
}
|
|
65
|
+
async function triggerFlow(itemIndex) {
|
|
66
|
+
const identifier = this.getNodeParameter('flowIdentifier', itemIndex, '');
|
|
67
|
+
const inputJsonRaw = this.getNodeParameter('inputJson', itemIndex, '{}');
|
|
68
|
+
let body = {};
|
|
69
|
+
if (typeof inputJsonRaw === 'string') {
|
|
70
|
+
try {
|
|
71
|
+
body = JSON.parse(inputJsonRaw || '{}');
|
|
72
|
+
}
|
|
73
|
+
catch {
|
|
74
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Invalid JSON in Input field');
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
else if (typeof inputJsonRaw === 'object' && inputJsonRaw !== null) {
|
|
78
|
+
body = inputJsonRaw;
|
|
79
|
+
}
|
|
80
|
+
const response = await utils_1.noperatorsApiRequest.call(this, 'POST', `/flows/${encodeURIComponent(identifier)}/trigger`, body);
|
|
81
|
+
return [{ json: response, pairedItem: itemIndex }];
|
|
82
|
+
}
|
|
83
|
+
//# sourceMappingURL=flow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flow.js","sourceRoot":"","sources":["../../../../../nodes/Noperators/actions/flow/flow.ts"],"names":[],"mappings":";;;AA0DA,oDAUC;AAnED,+CAAkD;AAClD,uCAAmD;AAEtC,QAAA,cAAc,GAAsB;IAChD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,MAAM,CAAC;aAClB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,SAAS;gBACf,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,oCAAoC;gBACjD,MAAM,EAAE,gBAAgB;aACxB;SACD;QACD,OAAO,EAAE,SAAS;KAClB;CACD,CAAC;AAEW,QAAA,cAAc,GAAsB;IAChD;QACC,WAAW,EAAE,iBAAiB;QAC9B,IAAI,EAAE,gBAAgB;QACtB,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,mCAAmC;QAChD,WAAW,EAAE,kCAAkC;QAC/C,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,MAAM,CAAC;gBAClB,SAAS,EAAE,CAAC,SAAS,CAAC;aACtB;SACD;KACD;IACD;QACC,WAAW,EAAE,cAAc;QAC3B,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,MAAM;QACZ,OAAO,EAAE,IAAI;QACb,WAAW,EAAE,yCAAyC;QACtD,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,MAAM,CAAC;gBAClB,SAAS,EAAE,CAAC,SAAS,CAAC;aACtB;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,oBAAoB,CAEzC,IAAwB,EACxB,SAAiB,EACjB,SAAiB;IAEjB,IAAI,SAAS,KAAK,SAAS,EAAE,CAAC;QAC7B,OAAO,WAAW,CAAC,IAAI,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAC1C,CAAC;IACD,MAAM,IAAI,iCAAkB,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,0BAA0B,SAAS,EAAE,CAAC,CAAC;AACrF,CAAC;AAED,KAAK,UAAU,WAAW,CAEzB,SAAiB;IAEjB,MAAM,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;IACpF,MAAM,YAAY,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,SAAS,EAAE,IAAI,CAAoB,CAAC;IAE5F,IAAI,IAAI,GAAW,EAAE,CAAC;IACtB,IAAI,OAAO,YAAY,KAAK,QAAQ,EAAE,CAAC;QACtC,IAAI,CAAC;YACJ,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,IAAI,IAAI,CAAC,CAAC;QACzC,CAAC;QAAC,MAAM,CAAC;YACR,MAAM,IAAI,iCAAkB,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,6BAA6B,CAAC,CAAC;QAC7E,CAAC;IACF,CAAC;SAAM,IAAI,OAAO,YAAY,KAAK,QAAQ,IAAI,YAAY,KAAK,IAAI,EAAE,CAAC;QACtE,IAAI,GAAG,YAAY,CAAC;IACrB,CAAC;IAED,MAAM,QAAQ,GAAG,MAAM,4BAAoB,CAAC,IAAI,CAC/C,IAAI,EACJ,MAAM,EACN,UAAU,kBAAkB,CAAC,UAAU,CAAC,UAAU,EAClD,IAAI,CACJ,CAAC;IAEF,OAAO,CAAC,EAAE,IAAI,EAAE,QAAuB,EAAE,UAAU,EAAE,SAAS,EAAE,CAAC,CAAC;AACnE,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IExecuteFunctions, INodeExecutionData, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare const runOperations: INodeProperties[];
|
|
3
|
+
export declare const runParameters: INodeProperties[];
|
|
4
|
+
export declare function executeRunOperation(this: IExecuteFunctions, item: INodeExecutionData, itemIndex: number, operation: string): Promise<INodeExecutionData[]>;
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.runParameters = exports.runOperations = void 0;
|
|
4
|
+
exports.executeRunOperation = executeRunOperation;
|
|
5
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
6
|
+
const utils_1 = require("../../utils");
|
|
7
|
+
exports.runOperations = [
|
|
8
|
+
{
|
|
9
|
+
displayName: 'Operation',
|
|
10
|
+
name: 'operation',
|
|
11
|
+
type: 'options',
|
|
12
|
+
noDataExpression: true,
|
|
13
|
+
displayOptions: {
|
|
14
|
+
show: {
|
|
15
|
+
resource: ['run'],
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
options: [
|
|
19
|
+
{
|
|
20
|
+
name: 'Get',
|
|
21
|
+
value: 'get',
|
|
22
|
+
description: 'Get the full details of a specific run',
|
|
23
|
+
action: 'Get a run',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
name: 'Get Many',
|
|
27
|
+
value: 'getMany',
|
|
28
|
+
description: 'Get a paginated list of runs for a flow',
|
|
29
|
+
action: 'Get many runs',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Get Result',
|
|
33
|
+
value: 'getResult',
|
|
34
|
+
description: 'Get the output and timing of a completed run',
|
|
35
|
+
action: 'Get run result',
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
default: 'getMany',
|
|
39
|
+
},
|
|
40
|
+
];
|
|
41
|
+
exports.runParameters = [
|
|
42
|
+
{
|
|
43
|
+
displayName: 'Flow Identifier',
|
|
44
|
+
name: 'flowIdentifier',
|
|
45
|
+
type: 'string',
|
|
46
|
+
required: true,
|
|
47
|
+
default: '',
|
|
48
|
+
placeholder: 'e.g. flow_id, ULID, or classifier',
|
|
49
|
+
description: 'The flow ID, ULID, or classifier',
|
|
50
|
+
displayOptions: {
|
|
51
|
+
show: {
|
|
52
|
+
resource: ['run'],
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
displayName: 'Run ID',
|
|
58
|
+
name: 'runId',
|
|
59
|
+
type: 'number',
|
|
60
|
+
required: true,
|
|
61
|
+
default: 0,
|
|
62
|
+
description: 'The ID of the run',
|
|
63
|
+
displayOptions: {
|
|
64
|
+
show: {
|
|
65
|
+
resource: ['run'],
|
|
66
|
+
operation: ['get', 'getResult'],
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
displayName: 'Status Filter',
|
|
72
|
+
name: 'status',
|
|
73
|
+
type: 'options',
|
|
74
|
+
default: '',
|
|
75
|
+
description: 'Filter runs by status',
|
|
76
|
+
options: [
|
|
77
|
+
{ name: 'All', value: '' },
|
|
78
|
+
{ name: 'Completed', value: 'completed' },
|
|
79
|
+
{ name: 'Failed', value: 'failed' },
|
|
80
|
+
{ name: 'Killed', value: 'killed' },
|
|
81
|
+
{ name: 'Pending', value: 'pending' },
|
|
82
|
+
{ name: 'Running', value: 'running' },
|
|
83
|
+
],
|
|
84
|
+
displayOptions: {
|
|
85
|
+
show: {
|
|
86
|
+
resource: ['run'],
|
|
87
|
+
operation: ['getMany'],
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
displayName: 'Per Page',
|
|
93
|
+
name: 'perPage',
|
|
94
|
+
type: 'number',
|
|
95
|
+
default: 20,
|
|
96
|
+
description: 'Number of items per page',
|
|
97
|
+
typeOptions: {
|
|
98
|
+
minValue: 1,
|
|
99
|
+
maxValue: 100,
|
|
100
|
+
},
|
|
101
|
+
displayOptions: {
|
|
102
|
+
show: {
|
|
103
|
+
resource: ['run'],
|
|
104
|
+
operation: ['getMany'],
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
displayName: 'Page',
|
|
110
|
+
name: 'page',
|
|
111
|
+
type: 'number',
|
|
112
|
+
default: 1,
|
|
113
|
+
description: 'Page number',
|
|
114
|
+
typeOptions: {
|
|
115
|
+
minValue: 1,
|
|
116
|
+
},
|
|
117
|
+
displayOptions: {
|
|
118
|
+
show: {
|
|
119
|
+
resource: ['run'],
|
|
120
|
+
operation: ['getMany'],
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
},
|
|
124
|
+
];
|
|
125
|
+
async function executeRunOperation(item, itemIndex, operation) {
|
|
126
|
+
switch (operation) {
|
|
127
|
+
case 'get':
|
|
128
|
+
return getRun.call(this, itemIndex);
|
|
129
|
+
case 'getMany':
|
|
130
|
+
return getManyRuns.call(this, itemIndex);
|
|
131
|
+
case 'getResult':
|
|
132
|
+
return getRunResult.call(this, itemIndex);
|
|
133
|
+
default:
|
|
134
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Unsupported operation: ${operation}`);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
async function getRun(itemIndex) {
|
|
138
|
+
const identifier = this.getNodeParameter('flowIdentifier', itemIndex, '');
|
|
139
|
+
const runId = this.getNodeParameter('runId', itemIndex, 0);
|
|
140
|
+
const response = await utils_1.noperatorsApiRequest.call(this, 'GET', `/flows/${encodeURIComponent(identifier)}/runs/${runId}`);
|
|
141
|
+
return [{ json: response, pairedItem: itemIndex }];
|
|
142
|
+
}
|
|
143
|
+
async function getManyRuns(itemIndex) {
|
|
144
|
+
const identifier = this.getNodeParameter('flowIdentifier', itemIndex, '');
|
|
145
|
+
const status = this.getNodeParameter('status', itemIndex, '');
|
|
146
|
+
const perPage = this.getNodeParameter('perPage', itemIndex, 20);
|
|
147
|
+
const page = this.getNodeParameter('page', itemIndex, 1);
|
|
148
|
+
const qs = {
|
|
149
|
+
per_page: perPage,
|
|
150
|
+
page,
|
|
151
|
+
};
|
|
152
|
+
if (status) {
|
|
153
|
+
qs.status = status;
|
|
154
|
+
}
|
|
155
|
+
const response = await utils_1.noperatorsApiRequest.call(this, 'GET', `/flows/${encodeURIComponent(identifier)}/runs`, undefined, qs);
|
|
156
|
+
return [{ json: response, pairedItem: itemIndex }];
|
|
157
|
+
}
|
|
158
|
+
async function getRunResult(itemIndex) {
|
|
159
|
+
const identifier = this.getNodeParameter('flowIdentifier', itemIndex, '');
|
|
160
|
+
const runId = this.getNodeParameter('runId', itemIndex, 0);
|
|
161
|
+
const response = await utils_1.noperatorsApiRequest.call(this, 'GET', `/flows/${encodeURIComponent(identifier)}/runs/${runId}/result`);
|
|
162
|
+
return [{ json: response, pairedItem: itemIndex }];
|
|
163
|
+
}
|
|
164
|
+
//# sourceMappingURL=run.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"run.js","sourceRoot":"","sources":["../../../../../nodes/Noperators/actions/run/run.ts"],"names":[],"mappings":"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"}
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export interface TriggerResponse {
|
|
2
|
+
run_id: number;
|
|
3
|
+
flow_ulid: string;
|
|
4
|
+
classifier: string | null;
|
|
5
|
+
status: string;
|
|
6
|
+
}
|
|
7
|
+
export interface Run {
|
|
8
|
+
id: number;
|
|
9
|
+
flow_id: number;
|
|
10
|
+
status: 'pending' | 'running' | 'completed' | 'failed' | 'killed';
|
|
11
|
+
output: Record<string, unknown> | null;
|
|
12
|
+
error_message: string | null;
|
|
13
|
+
duration_ms: number | null;
|
|
14
|
+
created_at: string;
|
|
15
|
+
updated_at: string;
|
|
16
|
+
}
|
|
17
|
+
export interface RunResult {
|
|
18
|
+
run_id: number;
|
|
19
|
+
status: string;
|
|
20
|
+
output: Record<string, unknown> | null;
|
|
21
|
+
error_message: string | null;
|
|
22
|
+
duration_ms: number | null;
|
|
23
|
+
}
|
|
24
|
+
export interface PaginatedRuns {
|
|
25
|
+
data: Run[];
|
|
26
|
+
current_page: number;
|
|
27
|
+
last_page: number;
|
|
28
|
+
per_page: number;
|
|
29
|
+
total: number;
|
|
30
|
+
}
|
|
31
|
+
export interface ArtifactFile {
|
|
32
|
+
name: string;
|
|
33
|
+
size: number;
|
|
34
|
+
url: string;
|
|
35
|
+
}
|
|
36
|
+
export type ArtifactList = ArtifactFile[];
|
|
37
|
+
export interface ApiError {
|
|
38
|
+
error: string;
|
|
39
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../nodes/Noperators/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { IExecuteFunctions } from 'n8n-workflow';
|
|
2
|
+
export declare function noperatorsApiRequest(this: IExecuteFunctions, method: 'GET' | 'POST' | 'PUT' | 'DELETE', path: string, body?: object, qs?: Record<string, string | number>): Promise<unknown>;
|
|
3
|
+
export declare function noperatorsApiRequestBinary(this: IExecuteFunctions, path: string): Promise<{
|
|
4
|
+
body: Buffer;
|
|
5
|
+
headers: Record<string, string>;
|
|
6
|
+
}>;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.noperatorsApiRequest = noperatorsApiRequest;
|
|
4
|
+
exports.noperatorsApiRequestBinary = noperatorsApiRequestBinary;
|
|
5
|
+
const API_BASE = '/api/v1';
|
|
6
|
+
async function noperatorsApiRequest(method, path, body, qs) {
|
|
7
|
+
var _a;
|
|
8
|
+
const credentials = await this.getCredentials('noperatorsApi');
|
|
9
|
+
const baseUrl = (_a = credentials === null || credentials === void 0 ? void 0 : credentials.instanceUrl) === null || _a === void 0 ? void 0 : _a.replace(/\/$/, '');
|
|
10
|
+
let url = `${baseUrl}${API_BASE}${path}`;
|
|
11
|
+
if (qs) {
|
|
12
|
+
const parts = [];
|
|
13
|
+
for (const [key, value] of Object.entries(qs)) {
|
|
14
|
+
if (value !== undefined && value !== null && value !== '') {
|
|
15
|
+
parts.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
if (parts.length > 0) {
|
|
19
|
+
url += `?${parts.join('&')}`;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
const options = {
|
|
23
|
+
method,
|
|
24
|
+
url,
|
|
25
|
+
json: true,
|
|
26
|
+
headers: {
|
|
27
|
+
'Content-Type': 'application/json',
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
if (body && Object.keys(body).length > 0) {
|
|
31
|
+
options.body = body;
|
|
32
|
+
}
|
|
33
|
+
return this.helpers.httpRequestWithAuthentication.call(this, 'noperatorsApi', options);
|
|
34
|
+
}
|
|
35
|
+
async function noperatorsApiRequestBinary(path) {
|
|
36
|
+
var _a;
|
|
37
|
+
const credentials = await this.getCredentials('noperatorsApi');
|
|
38
|
+
const baseUrl = (_a = credentials === null || credentials === void 0 ? void 0 : credentials.instanceUrl) === null || _a === void 0 ? void 0 : _a.replace(/\/$/, '');
|
|
39
|
+
const url = `${baseUrl}${API_BASE}${path}`;
|
|
40
|
+
const response = await this.helpers.httpRequestWithAuthentication.call(this, 'noperatorsApi', {
|
|
41
|
+
method: 'GET',
|
|
42
|
+
url,
|
|
43
|
+
returnFullResponse: true,
|
|
44
|
+
encoding: 'arraybuffer',
|
|
45
|
+
json: false,
|
|
46
|
+
});
|
|
47
|
+
return response;
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../nodes/Noperators/utils.ts"],"names":[],"mappings":";;AAIA,oDA6CC;AAED,gEAwBC;AAzED,MAAM,QAAQ,GAAG,SAAS,CAAC;AAEpB,KAAK,UAAU,oBAAoB,CAEzC,MAAyC,EACzC,IAAY,EACZ,IAAa,EACb,EAAoC;;IAEpC,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,eAAe,CAG5D,CAAC;IACF,MAAM,OAAO,GAAG,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,WAAW,0CAAE,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;IAE7D,IAAI,GAAG,GAAG,GAAG,OAAO,GAAG,QAAQ,GAAG,IAAI,EAAE,CAAC;IAEzC,IAAI,EAAE,EAAE,CAAC;QACR,MAAM,KAAK,GAAa,EAAE,CAAC;QAC3B,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC;YAC/C,IAAI,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,EAAE,EAAE,CAAC;gBAC3D,KAAK,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,GAAG,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;YAC/E,CAAC;QACF,CAAC;QACD,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACtB,GAAG,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;QAC9B,CAAC;IACF,CAAC;IAED,MAAM,OAAO,GAAwB;QACpC,MAAM;QACN,GAAG;QACH,IAAI,EAAE,IAAI;QACV,OAAO,EAAE;YACR,cAAc,EAAE,kBAAkB;SAClC;KACD,CAAC;IAEF,IAAI,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QAC1C,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;IACrB,CAAC;IAED,OAAO,IAAI,CAAC,OAAO,CAAC,6BAA6B,CAAC,IAAI,CACrD,IAAI,EACJ,eAAe,EACf,OAAO,CACP,CAAC;AACH,CAAC;AAEM,KAAK,UAAU,0BAA0B,CAE/C,IAAY;;IAEZ,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,eAAe,CAG5D,CAAC;IACF,MAAM,OAAO,GAAG,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,WAAW,0CAAE,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;IAC7D,MAAM,GAAG,GAAG,GAAG,OAAO,GAAG,QAAQ,GAAG,IAAI,EAAE,CAAC;IAE3C,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,6BAA6B,CAAC,IAAI,CACrE,IAAI,EACJ,eAAe,EACf;QACC,MAAM,EAAE,KAAK;QACb,GAAG;QACH,kBAAkB,EAAE,IAAI;QACxB,QAAQ,EAAE,aAAa;QACvB,IAAI,EAAE,KAAK;KACX,CACoD,CAAC;IAEvD,OAAO,QAAQ,CAAC;AACjB,CAAC"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-noperators",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "N8N community node for the Noperators browser automation platform",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"noperators",
|
|
8
|
+
"browser-automation",
|
|
9
|
+
"rpa",
|
|
10
|
+
"web-scraping"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"homepage": "https://noperators.com",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Noperators",
|
|
16
|
+
"email": "hello@noperators.com"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/noperators-team/n8n-nodes-noperators.git"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20.15"
|
|
24
|
+
},
|
|
25
|
+
"main": "index.js",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "npx rimraf dist && tsc && gulp build:icons",
|
|
28
|
+
"dev": "tsc --watch",
|
|
29
|
+
"format": "prettier nodes credentials --write",
|
|
30
|
+
"lint": "eslint nodes credentials package.json",
|
|
31
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
32
|
+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
37
|
+
"n8n": {
|
|
38
|
+
"n8nNodesApiVersion": 1,
|
|
39
|
+
"credentials": [
|
|
40
|
+
"dist/credentials/NoperatorsApi.credentials.js"
|
|
41
|
+
],
|
|
42
|
+
"nodes": [
|
|
43
|
+
"dist/nodes/Noperators/Noperators.node.js"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/node": "^25.3.3",
|
|
48
|
+
"@typescript-eslint/parser": "~8.32.0",
|
|
49
|
+
"eslint": "^8.57.0",
|
|
50
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
51
|
+
"gulp": "^5.0.0",
|
|
52
|
+
"prettier": "^3.5.3",
|
|
53
|
+
"typescript": "^5.8.2"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"n8n-workflow": "*"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"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.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.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.es2019.intl.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.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/blob.d.ts","../node_modules/@types/node/web-globals/console.d.ts","../node_modules/@types/node/web-globals/crypto.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/encoding.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/round-robin-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/snapshot-agent.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/importmeta.d.ts","../node_modules/@types/node/web-globals/messaging.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/performance.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/web-globals/timers.d.ts","../node_modules/@types/node/web-globals/url.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/inspector/promises.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/buffer/index.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/path/posix.d.ts","../node_modules/@types/node/path/win32.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/quic.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/test/reporters.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/util/types.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/esm/constants.d.ts","../node_modules/n8n-workflow/dist/esm/data-store.types.d.ts","../node_modules/n8n-workflow/dist/esm/deferred-promise.d.ts","../node_modules/@n8n/errors/dist/types.d.ts","../node_modules/@n8n/errors/dist/application.error.d.ts","../node_modules/@n8n/errors/dist/index.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-configuration.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/index.d.ts","../node_modules/n8n-workflow/dist/esm/execution-status.d.ts","../node_modules/n8n-workflow/dist/esm/result.d.ts","../node_modules/n8n-workflow/dist/esm/expression.d.ts","../node_modules/n8n-workflow/dist/esm/workflow.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-data-proxy-env-provider.d.ts","../node_modules/n8n-workflow/dist/esm/interfaces.d.ts","../node_modules/n8n-workflow/dist/esm/logger-proxy.d.ts","../node_modules/n8n-workflow/dist/esm/node-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/observable-object.d.ts","../node_modules/n8n-workflow/dist/esm/telemetry-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-child-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-connected-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-node-by-name.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-parent-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/map-connections-by-destination.d.ts","../node_modules/n8n-workflow/dist/esm/common/index.d.ts","../node_modules/n8n-workflow/dist/esm/cron.d.ts","../node_modules/n8n-workflow/dist/esm/global-state.d.ts","../node_modules/n8n-workflow/dist/esm/message-event-bus.d.ts","../node_modules/n8n-workflow/dist/esm/expressions/expression-helpers.d.ts","../node_modules/zod/dist/types/v3/helpers/typealiases.d.ts","../node_modules/zod/dist/types/v3/helpers/util.d.ts","../node_modules/zod/dist/types/v3/zoderror.d.ts","../node_modules/zod/dist/types/v3/locales/en.d.ts","../node_modules/zod/dist/types/v3/errors.d.ts","../node_modules/zod/dist/types/v3/helpers/parseutil.d.ts","../node_modules/zod/dist/types/v3/helpers/enumutil.d.ts","../node_modules/zod/dist/types/v3/helpers/errorutil.d.ts","../node_modules/zod/dist/types/v3/helpers/partialutil.d.ts","../node_modules/zod/dist/types/v3/standard-schema.d.ts","../node_modules/zod/dist/types/v3/types.d.ts","../node_modules/zod/dist/types/v3/external.d.ts","../node_modules/zod/dist/types/v3/index.d.ts","../node_modules/zod/dist/types/index.d.ts","../node_modules/n8n-workflow/dist/esm/from-ai-parse-utils.d.ts","../node_modules/n8n-workflow/dist/esm/tool-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/node-reference-parser-utils.d.ts","../node_modules/n8n-workflow/dist/esm/metadata-utils.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-data-proxy.d.ts","../node_modules/n8n-workflow/dist/esm/versioned-node-type.d.ts","../node_modules/n8n-workflow/dist/esm/type-validation.d.ts","../node_modules/n8n-workflow/dist/esm/utils.d.ts","../node_modules/n8n-workflow/dist/esm/type-guards.d.ts","../node_modules/n8n-workflow/dist/esm/graph/graph-utils.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/expression-extension.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/index.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/expression-parser.d.ts","../node_modules/n8n-workflow/dist/esm/native-methods/index.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/filter-parameter.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/parameter-type-validation.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/path-utils.d.ts","../node_modules/n8n-workflow/dist/esm/evaluation-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/index.d.ts","../credentials/noperatorsapi.credentials.ts","../nodes/noperators/utils.ts","../nodes/noperators/actions/flow/flow.ts","../nodes/noperators/actions/run/run.ts","../nodes/noperators/actions/artifact/artifact.ts","../nodes/noperators/noperators.node.ts","../nodes/noperators/types.ts","../nodes/noperators/noperators.node.json","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/functions/inc.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/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"],"fileIdsList":[[52,115,123,127,130,132,133,134,147,256],[52,115,123,127,130,132,133,134,147,177],[52,115,123,127,130,132,133,134,147,177,178],[52,115,123,127,130,132,133,134,147],[52,112,113,115,123,127,130,132,133,134,147],[52,114,115,123,127,130,132,133,134,147],[115,123,127,130,132,133,134,147],[52,115,123,127,130,132,133,134,147,155],[52,115,116,121,123,126,127,130,132,133,134,136,147,152,164],[52,115,116,117,123,126,127,130,132,133,134,147],[52,115,118,123,127,130,132,133,134,147,165],[52,115,119,120,123,127,130,132,133,134,138,147],[52,115,120,123,127,130,132,133,134,147,152,161],[52,115,121,123,126,127,130,132,133,134,136,147],[52,114,115,122,123,127,130,132,133,134,147],[52,115,123,124,127,130,132,133,134,147],[52,115,123,125,126,127,130,132,133,134,147],[52,114,115,123,126,127,130,132,133,134,147],[52,115,123,126,127,128,130,132,133,134,147,152,164],[52,115,123,126,127,128,130,132,133,134,147,152,155],[52,102,115,123,126,127,129,130,132,133,134,136,147,152,164],[52,115,123,126,127,129,130,132,133,134,136,147,152,161,164],[52,115,123,127,129,130,131,132,133,134,147,152,161,164],[50,51,52,53,54,55,56,57,58,59,60,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171],[52,115,123,126,127,130,132,133,134,147],[52,115,123,127,130,132,134,147],[52,115,123,127,130,132,133,134,135,147,164],[52,115,123,126,127,130,132,133,134,136,147,152],[52,115,123,127,130,132,133,134,138,147],[52,115,123,127,130,132,133,134,139,147],[52,115,123,126,127,130,132,133,134,142,147],[52,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,256],[52,115,123,127,130,132,133,134,144,147],[52,115,123,127,130,132,133,134,145,147],[52,115,120,123,127,130,132,133,134,136,147,155],[52,115,123,126,127,130,132,133,134,147,148],[52,115,123,127,130,132,133,134,147,149,165,168],[52,115,123,126,127,130,132,133,134,147,152,154,155],[52,115,123,127,130,132,133,134,147,153,155],[52,115,123,127,130,132,133,134,147,155,165],[52,115,123,127,130,132,133,134,147,156],[52,112,115,123,127,130,132,133,134,147,152,158,164],[52,115,123,127,130,132,133,134,147,152,157],[52,115,123,126,127,130,132,133,134,147,159,160],[52,115,123,127,130,132,133,134,147,159,160],[52,115,120,123,127,130,132,133,134,136,147,152,161],[52,115,123,127,130,132,133,134,147,162],[52,115,123,127,130,132,133,134,136,147,163],[52,115,123,127,129,130,132,133,134,145,147,164],[52,115,123,127,130,132,133,134,147,165,166],[52,115,120,123,127,130,132,133,134,147,166],[52,115,123,127,130,132,133,134,147,152,167],[52,115,123,127,130,132,133,134,135,147,168],[52,115,123,127,130,132,133,134,147,169],[52,115,118,123,127,130,132,133,134,147],[52,115,120,123,127,130,132,133,134,147],[52,115,123,127,130,132,133,134,147,165],[52,102,115,123,127,130,132,133,134,147],[52,115,123,127,130,132,133,134,147,164],[52,115,123,127,130,132,133,134,147,170],[52,115,123,127,130,132,133,134,142,147],[52,115,123,127,130,132,133,134,147,160],[52,102,115,123,126,127,128,130,132,133,134,142,147,152,155,164,167,168,170],[52,115,123,127,130,132,133,134,147,152,171],[52,115,123,127,130,132,133,134,147,268,306],[52,115,123,127,130,132,133,134,147,268,291,306],[52,115,123,127,130,132,133,134,147,267,306],[52,115,123,127,130,132,133,134,147,306],[52,115,123,127,130,132,133,134,147,268],[52,115,123,127,130,132,133,134,147,268,292,306],[52,115,123,127,130,132,133,134,147,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305],[52,115,123,127,130,132,133,134,147,292,306],[52,115,123,127,129,130,132,133,134,147,152,172,256],[52,115,123,127,130,132,133,134,147,208],[52,115,123,127,130,132,133,134,147,213,214,215,216,217],[52,115,123,127,130,132,133,134,147,179,208],[52,115,123,127,130,132,133,134,147,184,208],[52,115,123,127,130,132,133,134,147,179],[52,115,123,127,130,132,133,134,147,180],[52,115,123,127,130,132,133,134,147,196],[52,115,123,127,130,132,133,134,147,184],[52,115,123,127,130,132,133,134,147,185],[52,115,123,127,130,132,133,134,147,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201],[52,115,123,127,130,132,133,134,147,179,187,208],[52,115,123,127,130,132,133,134,147,187,188,208],[52,115,123,127,130,132,133,134,147,195],[52,115,123,127,130,132,133,134,147,192],[52,115,123,127,130,132,133,134,147,179,184,208],[52,115,123,127,130,132,133,134,147,189],[52,115,123,127,130,132,133,134,147,206,208],[52,115,123,127,130,132,133,134,147,247],[52,115,123,127,130,132,133,134,147,247,248],[52,115,123,127,130,132,133,134,147,236],[52,115,123,127,129,130,132,133,134,147,174,175,176,202,203,204,205,206,207,208,209,210,211,212,218,219,220,221,222,237,238,239,240,241,242,243,244,245,246,249,250,251,252,253,254,255],[52,115,123,127,129,130,132,133,134,147,152,161,164,173,174,175,176,185,188,189,192,195,202,203,204,206,207,256],[52,115,123,127,130,132,133,134,147,206,207,208],[52,115,123,127,130,132,133,134,147,205,208],[52,67,70,73,74,115,123,127,130,132,133,134,147,164],[52,70,115,123,127,130,132,133,134,147,152,164],[52,70,74,115,123,127,130,132,133,134,147,164],[52,115,123,127,130,132,133,134,147,152],[52,64,115,123,127,130,132,133,134,147],[52,68,115,123,127,130,132,133,134,147],[52,66,67,70,115,123,127,130,132,133,134,147,164],[52,115,123,127,130,132,133,134,136,147,161],[52,115,123,127,130,132,133,134,147,172],[52,64,115,123,127,130,132,133,134,147,172],[52,66,70,115,123,127,130,132,133,134,136,147,164],[52,61,62,63,65,69,115,123,126,127,130,132,133,134,147,152,164],[52,70,79,87,115,123,127,130,132,133,134,147],[52,62,68,115,123,127,130,132,133,134,147],[52,70,96,97,115,123,127,130,132,133,134,147],[52,62,65,70,115,123,127,130,132,133,134,147,155,164,172],[52,70,115,123,127,130,132,133,134,147],[52,66,70,115,123,127,130,132,133,134,147,164],[52,61,115,123,127,130,132,133,134,147],[52,64,65,66,68,69,70,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,115,123,127,130,132,133,134,147],[52,70,89,92,115,123,127,130,132,133,134,147],[52,70,79,80,81,115,123,127,130,132,133,134,147],[52,68,70,80,82,115,123,127,130,132,133,134,147],[52,69,115,123,127,130,132,133,134,147],[52,62,64,70,115,123,127,130,132,133,134,147],[52,70,74,80,82,115,123,127,130,132,133,134,147],[52,74,115,123,127,130,132,133,134,147],[52,68,70,73,115,123,127,130,132,133,134,147,164],[52,62,66,70,79,115,123,127,130,132,133,134,147],[52,70,89,115,123,127,130,132,133,134,147],[52,82,115,123,127,130,132,133,134,147],[52,64,70,96,115,123,127,130,132,133,134,147,155,170,172],[52,115,123,127,130,132,133,134,147,235],[52,115,123,127,130,132,133,134,147,225,226],[52,115,123,127,130,132,133,134,147,223,224,225,227,228,233],[52,115,123,127,130,132,133,134,147,224,225],[52,115,123,127,130,132,133,134,147,233],[52,115,123,127,130,132,133,134,147,234],[52,115,123,127,130,132,133,134,147,225],[52,115,123,127,130,132,133,134,147,223,224,225,228,229,230,231,232],[52,115,123,127,130,132,133,134,147,223,224,235],[52,115,123,127,130,132,133,134,147,256,258],[52,115,123,127,130,132,133,134,147,256,259,260,261]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"237ba5ac2a95702a114a309e39c53a5bddff5f6333b325db9764df9b34f3502b","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f96a48183254c00d24575401f1a761b4ce4927d927407e7862a83e06ce5d6964","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"f83fb2b1338afbb3f9d733c7d6e8b135826c41b0518867df0c0ace18ae1aa270","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"9451a46a89ed209e2e08329e6cac59f89356eae79a7230f916d8cc38725407c7","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"cf9717ebf9dd23f5f1e55e00545df1edc40ac8a671a034974fb4ff5dfbfaacc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f64deb26664af64dc274637343bde8d82f930c77af05a412c7d310b77207a448","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"bce309f4d9b67c18d4eeff5bba6cf3e67b2b0aead9f03f75d6060c553974d7ba","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"fde38b23ab057617351c1676047d3317f651b1a6d207084e41c056ed158a77f9","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"c3877fef8a43cd434f9728f25a97575b0eb73d92f38b5c87c840daccc3e21d97","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"b56c1d867ac2570dcfc91f6a8ff1be50d47cc6701fe810b59c47ad4157adc312","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"b37f83e7deea729aa9ce5593f78905afb45b7532fdff63041d374f60059e7852","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"0d5f371d676acc073f0166b7fd967adeb6afa5f0967b9821d83c106f66cc458d","impliedFormat":1},{"version":"57a68b7bb6954e1ad9be764ae62136c08a3eb25cfe6582a0c9522bf0cc302763","impliedFormat":1},{"version":"a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","impliedFormat":1},{"version":"00f11c3ec667314eaa2adfe253b5ebebbbdbb82510e04460c2f09d1c3b521d31","impliedFormat":1},{"version":"5c7a516e25a2fd1dc5e054c6161fe3c8ba46364f3784ef98f3fca48ab685231c","impliedFormat":1},{"version":"3ff739b7f819cfc12b330f9adcc4c3abbbd5e9f9ca68f53243222a049a8361a2","impliedFormat":1},{"version":"d762b92c1af47b7b3c4eef92fe9a3806194d9edc5dae6901342fc87ef21d7f4a","impliedFormat":1},{"version":"41d14b690d8d8c2a9b7395e8c36de6ca981010736723216ab9f35eb598e09ad9","impliedFormat":1},{"version":"3fdcca6b893ffd38b61b792772f649c82ae28077c360802cec25360eabca24c0","impliedFormat":1},{"version":"299924f7545be254b02278e4dcff7038611f2325d30f0e5ae4bcac906847c164","impliedFormat":1},{"version":"be1d650f04c9f472f0ad0ead3e1b7059dd1e0ff918f7bcb707786d27c3bbeadd","impliedFormat":1},{"version":"1e16c1b1c4d8600a146b15a933f9a880cc275c01f39dc436625f22d3cca46272","impliedFormat":1},{"version":"01d56fcd8d2968c9545f42ab80c1e6a43be249dadeb2d38262b888370ebbdf32","impliedFormat":1},{"version":"bf2aefef15e0b4d6bc8f4e19f967494b59b5f90a834de503c373df042513d924","impliedFormat":1},{"version":"4085248a1c89ee865cf9498402c90611d16920a6c9929f701ddc0b963ddad230","impliedFormat":1},{"version":"1a1acd3311ff1794be8401ee394efc3beeb1746068244eb0ee1d51d08e457401","impliedFormat":1},{"version":"ce0b4440a3dd75e14ca94b6d6b27fa26ca89e776d91b8803b3c86c4e8f06ed1a","impliedFormat":1},{"version":"37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","impliedFormat":1},{"version":"b6b1a3ff9ba1ddf1a908cfd1bcd471334ecd218a366460fc64c4561d6d0467a4","impliedFormat":1},{"version":"1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","impliedFormat":1},{"version":"32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","impliedFormat":1},{"version":"da73778888d41d0abe7d28a24529ba13ff0a9311d55e1902feee7ab97dc6a67d","impliedFormat":1},{"version":"393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","impliedFormat":1},{"version":"f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","impliedFormat":1},{"version":"0e10fd1d283b4ba7b94f5abb1bc30a2070ccb16c22f86a2780bea8ddc48f3bf7","impliedFormat":1},{"version":"0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","impliedFormat":1},{"version":"79b9e661f99d6d01ad0031fbffbb20a8570ca526125a1b01ef5643c00348a8c4","impliedFormat":1},{"version":"deb85dff5a350bd77f24fb5665b7a3c95aa0d4556a0d45ab423ebf3ffcbc70ce","impliedFormat":1},{"version":"dbdfa4b27132842a461f00ef51c0c90fd643f0999c51b65029412958fc7fcd05","impliedFormat":1},{"version":"3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","impliedFormat":1},{"version":"64c9811ebae7d6bdd3749155911ca473017944d6e9787cec3d11549b05b19de9","impliedFormat":1},{"version":"9de23b9733565858ecfb3971e409970aaf7ec3bd2567aea9373c3b7cfd62f053","impliedFormat":1},{"version":"18c4c5d4069ae6ddce9443a6057fcf333688556b0d644813a78e604812f82bb3","impliedFormat":1},{"version":"6481b29f54e19becbeb7236c60043e2daa47b45cb4fd7e88f287df09250f2405","impliedFormat":1},{"version":"3da7f76a434b4317fee73ea9aa3ead32046a69398e229d5e9fd0408c1fb34ef6","impliedFormat":1},{"version":"01658146c02cba2e49ee7beaa0b90864e7a17c3d02cc39cd8b643b5be3a1a438","impliedFormat":1},{"version":"2356864c105a18345829ef2dd8e8311094a9339d2ff2750039f6751a6aaaf518","impliedFormat":1},{"version":"db18ec88a0f1512b153a28a0ed1e19f34530885bca1d00e5f17a6e9b3184697f","impliedFormat":1},{"version":"21f166065c0725ca16281aa2f05f5ee9fb556795c8426049bf44ee36bdca9afd","impliedFormat":1},{"version":"36cd04c9f4116122a3545fcc6da5e522861d739718ab3a3cb7ff2268612531aa","impliedFormat":1},{"version":"9ae86dde42766df895cde73c60dc13347cc30829c6696de3cc54036b3120a5ba","impliedFormat":1},{"version":"6823cce79c10482d0860d40ebbfc29f00ddf7f99bca0aa23330599ddd8baead4","impliedFormat":1},{"version":"30ed6587fb249cc1b0585bab7ce2ca81ef193bfe2934241b6f06ffefdaaf4bf9","impliedFormat":1},{"version":"aa18fcf8ad877a9eb0c357c247708f019e25c4d906e3025d73604b66de8d7f11","impliedFormat":1},{"version":"cfc5482e113e44dae9712ae0a4e412788622221ae5eb1327fb69a13a0f5af662","impliedFormat":1},{"version":"5e620d0ed3eeb9a9a767355547123c85aea7e8f26d90e94d0cc3fa457f1c2035","impliedFormat":1},{"version":"304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","impliedFormat":1},{"version":"4904d7124f9731d2368b613523070ca594cbc82f172023b4b5678018be7b6022","impliedFormat":1},{"version":"18c078c2b34901a328c1fc3e5a2f5bd51aa0fef06a548418198955e0af5eaf39","impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","impliedFormat":1},{"version":"c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","impliedFormat":1},{"version":"8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","impliedFormat":1},{"version":"754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","impliedFormat":1},{"version":"5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","impliedFormat":1},{"version":"3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","impliedFormat":1},{"version":"d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995","impliedFormat":1},{"version":"581b97f369056070fafbe168120a192e918e67763116dfbbb2782bbca5f32111","impliedFormat":1},{"version":"74f9797560463a8c9070dd72c04b38cc17b79759b841e2a4175a11742f2ecd11","impliedFormat":1},{"version":"ce22b96ece23ecc9bc1f2a445afefa0a487f299986a1584887e4e4217e196963","impliedFormat":1},{"version":"4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","impliedFormat":1},{"version":"be19e5bce1b45d5c0ef87d46c3a95a991a3cd8b6c7cb4d756791756e69cc3568","impliedFormat":1},{"version":"e9634e0306920990ddca8f667e3cb624597ea7a4cd25d557a599c0e175419879","impliedFormat":1},{"version":"d4866c666180e89bdc142940cb2986a8fa9f3d2a363cc757bb61cef698b6e976","impliedFormat":1},{"version":"2ce18eeb3fe40e16de7ff28384b15b2cd7b224ecf23f9a93df4e48e0fb6c5dc1","impliedFormat":1},{"version":"cb279466d8f2d95f3ee0a24637506b18d18d9b1cb869b4dbb534b7597b06daec","impliedFormat":1},{"version":"b33057a3c7ea75948a207a5b784726118ec60f882eeb875bd64e932b4cd41041","impliedFormat":1},{"version":"b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","impliedFormat":1},{"version":"9e2e0b4711f1efef5c3c488616334ba2e5b911648a8784fd77fc8beb1e5047c9","impliedFormat":1},{"version":"ca1c4f7d0c786d90ab15a363d59d0e18269b393191ed7b2841547c0e187a8d35","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"28f1497962f8853339b46d766384abe7a907900998f551cf43cd793cdcb98e3d","impliedFormat":1},{"version":"e4cce0b510957aab4b12a0dc21a3b4857b8f8a85bbded2b8b81f836ca3c83dbc","impliedFormat":1},{"version":"79a0953f85a27dcaab70dd0e3791a3564631dfd5d85c637513027747c6844357","impliedFormat":1},{"version":"678c7436b7aa03dad934a96850ea395c018637013aa0b52a65898f502b4d6e2a","impliedFormat":1},{"version":"1c18a09d1deaf0e9906100ab54592f256f87fc94c67cce61bfc1c2ea44ac3d13","impliedFormat":1},{"version":"fc5017e9e7db45e80a8a5a27e8342dc5499494cc0d0ca327c79fe8d46095b393","impliedFormat":1},{"version":"2c70f1663ab790c1e2346a767d3b9741f63040507890e34f5051466776996eca","signature":"d1b2cf677db37d5b68235c55447d9f44c4c0344cb04eeb6dc238a42831693b86"},{"version":"e81ef083c98661f8d5937c71d3c4cdd84ffa87faff8f5e47a6ae1d6277752364","signature":"b9ca07f6c265782a9c0b7394d2543003e7e4c30ff5f47203d31a74ac73969482"},{"version":"6289a9b3b3a484c7ac73298cf9b8a0866e2692802f6a4bd1a764fa8a5c21dcf3","signature":"72f8cf935a89c866a59d7f99090d0ad1f553facc5eef8de28f84ff1c13f7054e"},{"version":"c692114f0edb9b89625437651b6b85016eff8205b044b19c2b67460d2a694ec3","signature":"93a8b4b1432d24a7225eaf0d90e0e9f2dd22cca6c2c420f6fc7ccc7777f58211"},{"version":"bf0f85e34b1154c13665b44cea7014b1331869baa466af741da11c4250ca2295","signature":"8584a529474a55c534bc3db4e341c7edf732be89c69f5f9a899b49955c312188"},{"version":"6663646655673390882acff27179ca1e4e88f2153e3ac24817c47599ab610f5e","signature":"cdc79d1867688d107987b7464bb302e93eceadc599609e0f3e45dea3d4a1ba57"},{"version":"2c9b7a4ccc3aefb99942ba3b8cfaf927d1786bf8be43db826ec79e668207b005","signature":"6320ebfc295f49fe85cc6217ae3e06a773b3acebe3b53a44b5500e140e0af854"},"d5899a0f77d6eb68839bb0175771339a503bd95ba08d5fbce909abc767b4d7a4","24d614269ed54c094a338778206b8c4deb95c40bf84c35738f0234ff356efbf0",{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","impliedFormat":1},{"version":"20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","impliedFormat":1},{"version":"6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85","impliedFormat":1}],"root":[[257,265]],"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},"referencedMap":[[257,1],[178,2],[179,3],[177,4],[266,4],[112,5],[113,5],[114,6],[52,7],[115,8],[116,9],[117,10],[50,4],[118,11],[119,12],[120,13],[121,14],[122,15],[123,16],[124,16],[125,17],[126,18],[127,19],[128,20],[53,4],[51,4],[129,21],[130,22],[131,23],[172,24],[132,25],[133,26],[134,25],[135,27],[136,28],[138,29],[139,30],[140,30],[141,30],[142,31],[143,32],[144,33],[145,34],[146,35],[147,36],[148,36],[149,37],[150,4],[151,4],[152,38],[153,39],[154,38],[155,40],[156,41],[157,42],[158,43],[159,44],[160,45],[161,46],[162,47],[163,48],[164,49],[165,50],[166,51],[167,52],[168,53],[169,54],[54,25],[55,4],[56,55],[57,56],[58,4],[59,57],[60,4],[103,58],[104,59],[105,60],[106,60],[107,61],[108,4],[109,8],[110,62],[111,59],[170,63],[171,64],[291,65],[292,66],[268,67],[271,68],[289,65],[290,65],[280,65],[279,69],[277,65],[272,65],[285,65],[283,65],[287,65],[267,65],[284,65],[288,65],[273,65],[274,65],[286,65],[269,65],[275,65],[276,65],[278,65],[282,65],[293,70],[281,65],[270,65],[306,71],[305,4],[300,70],[302,72],[301,70],[294,70],[295,70],[297,70],[299,70],[303,72],[304,72],[296,72],[298,72],[137,4],[173,73],[213,74],[214,74],[215,74],[216,74],[218,75],[217,74],[174,4],[219,74],[175,4],[176,4],[184,76],[187,77],[180,78],[181,79],[182,79],[183,79],[197,80],[200,78],[201,4],[186,81],[199,82],[185,81],[202,83],[188,84],[189,85],[191,81],[196,86],[198,76],[193,87],[192,88],[190,89],[194,87],[195,77],[255,4],[203,4],[205,90],[222,4],[248,91],[250,4],[247,4],[249,92],[237,93],[220,4],[246,74],[256,94],[208,95],[209,74],[221,74],[240,1],[251,91],[210,90],[252,76],[253,74],[254,4],[239,74],[211,74],[204,4],[212,74],[238,74],[245,74],[243,74],[244,74],[242,74],[207,4],[241,96],[206,97],[48,4],[49,4],[9,4],[8,4],[2,4],[10,4],[11,4],[12,4],[13,4],[14,4],[15,4],[16,4],[17,4],[3,4],[18,4],[19,4],[4,4],[20,4],[24,4],[21,4],[22,4],[23,4],[25,4],[26,4],[27,4],[5,4],[28,4],[29,4],[30,4],[31,4],[6,4],[35,4],[32,4],[33,4],[34,4],[36,4],[7,4],[37,4],[42,4],[43,4],[38,4],[39,4],[40,4],[41,4],[44,4],[45,4],[1,4],[46,4],[47,4],[79,98],[91,99],[76,100],[92,101],[101,102],[67,103],[68,104],[66,105],[100,106],[95,107],[99,108],[70,109],[88,110],[69,111],[98,112],[64,113],[65,107],[71,114],[72,4],[78,115],[75,114],[62,116],[102,117],[93,118],[82,119],[81,114],[83,120],[86,121],[80,122],[84,123],[96,106],[73,124],[74,125],[87,126],[63,101],[90,127],[89,114],[77,125],[85,128],[94,4],[61,4],[97,129],[236,130],[227,131],[234,132],[229,4],[230,4],[228,133],[231,134],[223,4],[224,4],[235,135],[226,136],[232,4],[233,137],[225,138],[261,139],[259,139],[260,139],[264,4],[262,140],[263,4],[258,1],[265,4]],"version":"5.8.3"}
|
package/index.js
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-noperators",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "N8N community node for the Noperators browser automation platform",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"noperators",
|
|
8
|
+
"browser-automation",
|
|
9
|
+
"rpa",
|
|
10
|
+
"web-scraping"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"homepage": "https://noperators.com",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Noperators",
|
|
16
|
+
"email": "hello@noperators.com"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/noperators-team/n8n-nodes-noperators.git"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20.15"
|
|
24
|
+
},
|
|
25
|
+
"main": "index.js",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "npx rimraf dist && tsc && gulp build:icons",
|
|
28
|
+
"dev": "tsc --watch",
|
|
29
|
+
"format": "prettier nodes credentials --write",
|
|
30
|
+
"lint": "eslint nodes credentials package.json",
|
|
31
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
32
|
+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
37
|
+
"n8n": {
|
|
38
|
+
"n8nNodesApiVersion": 1,
|
|
39
|
+
"credentials": [
|
|
40
|
+
"dist/credentials/NoperatorsApi.credentials.js"
|
|
41
|
+
],
|
|
42
|
+
"nodes": [
|
|
43
|
+
"dist/nodes/Noperators/Noperators.node.js"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/node": "^25.3.3",
|
|
48
|
+
"@typescript-eslint/parser": "~8.32.0",
|
|
49
|
+
"eslint": "^8.57.0",
|
|
50
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
51
|
+
"gulp": "^5.0.0",
|
|
52
|
+
"prettier": "^3.5.3",
|
|
53
|
+
"typescript": "^5.8.2"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"n8n-workflow": "*"
|
|
57
|
+
}
|
|
58
|
+
}
|