n8n-nodes-cribops 0.2.4 → 0.3.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/dist/credentials/{HiveApi.credentials.d.ts → CribOpsHiveApi.credentials.d.ts} +1 -1
- package/dist/credentials/{HiveApi.credentials.js → CribOpsHiveApi.credentials.js} +8 -8
- package/dist/nodes/{HiveAccelerator/HiveAccelerator.node.d.ts → CribOpsHive/CribOpsHive.node.d.ts} +1 -1
- package/dist/nodes/{HiveAccelerator/HiveAccelerator.node.js → CribOpsHive/CribOpsHive.node.js} +13 -13
- package/dist/package.json +3 -3
- package/package.json +3 -3
- /package/dist/nodes/{HiveAccelerator/hive.svg → CribOpsHive/cribops-hive.svg} +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
class
|
|
5
|
-
name = '
|
|
6
|
-
displayName = 'Hive
|
|
3
|
+
exports.CribOpsHiveApi = void 0;
|
|
4
|
+
class CribOpsHiveApi {
|
|
5
|
+
name = 'cribOpsHiveApi';
|
|
6
|
+
displayName = 'CribOps Hive';
|
|
7
7
|
documentationUrl = 'https://docs.cribops.com/hive';
|
|
8
8
|
properties = [
|
|
9
9
|
{
|
|
@@ -12,7 +12,7 @@ class HiveApi {
|
|
|
12
12
|
type: 'string',
|
|
13
13
|
default: 'localhost',
|
|
14
14
|
required: true,
|
|
15
|
-
description: 'Hive server hostname or IP address',
|
|
15
|
+
description: 'CribOps Hive server hostname or IP address',
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
displayName: 'Port',
|
|
@@ -20,7 +20,7 @@ class HiveApi {
|
|
|
20
20
|
type: 'number',
|
|
21
21
|
default: 6379,
|
|
22
22
|
required: true,
|
|
23
|
-
description: 'Hive server port (Redis protocol)',
|
|
23
|
+
description: 'CribOps Hive server port (Redis protocol)',
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
displayName: 'Password',
|
|
@@ -30,7 +30,7 @@ class HiveApi {
|
|
|
30
30
|
password: true,
|
|
31
31
|
},
|
|
32
32
|
default: '',
|
|
33
|
-
description: 'Optional password for Hive authentication',
|
|
33
|
+
description: 'Optional password for CribOps Hive authentication',
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
displayName: 'Use TLS',
|
|
@@ -41,4 +41,4 @@ class HiveApi {
|
|
|
41
41
|
},
|
|
42
42
|
];
|
|
43
43
|
}
|
|
44
|
-
exports.
|
|
44
|
+
exports.CribOpsHiveApi = CribOpsHiveApi;
|
package/dist/nodes/{HiveAccelerator/HiveAccelerator.node.d.ts → CribOpsHive/CribOpsHive.node.d.ts}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class CribOpsHive implements INodeType {
|
|
3
3
|
description: INodeTypeDescription;
|
|
4
4
|
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
5
5
|
}
|
package/dist/nodes/{HiveAccelerator/HiveAccelerator.node.js → CribOpsHive/CribOpsHive.node.js}
RENAMED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.CribOpsHive = void 0;
|
|
4
4
|
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
5
|
const HiveClient_1 = require("../../utils/HiveClient");
|
|
6
|
-
class
|
|
6
|
+
class CribOpsHive {
|
|
7
7
|
description = {
|
|
8
|
-
displayName: 'Hive
|
|
9
|
-
name: '
|
|
10
|
-
icon: 'file:hive.svg',
|
|
8
|
+
displayName: 'CribOps Hive',
|
|
9
|
+
name: 'cribOpsHive',
|
|
10
|
+
icon: 'file:cribops-hive.svg',
|
|
11
11
|
group: ['transform'],
|
|
12
12
|
version: 1,
|
|
13
13
|
subtitle: '={{$parameter["operation"]}}',
|
|
14
|
-
description: 'Offload heavy processing from n8n to Hive (Elixir/Oban Pro)',
|
|
14
|
+
description: 'Offload heavy processing from n8n to CribOps Hive (Elixir/Oban Pro)',
|
|
15
15
|
defaults: {
|
|
16
|
-
name: 'Hive
|
|
16
|
+
name: 'CribOps Hive',
|
|
17
17
|
},
|
|
18
18
|
inputs: ["main" /* NodeConnectionType.Main */],
|
|
19
19
|
outputs: ["main" /* NodeConnectionType.Main */],
|
|
20
20
|
credentials: [
|
|
21
21
|
{
|
|
22
|
-
name: '
|
|
22
|
+
name: 'cribOpsHiveApi',
|
|
23
23
|
required: true,
|
|
24
24
|
},
|
|
25
25
|
],
|
|
@@ -57,7 +57,7 @@ class HiveAccelerator {
|
|
|
57
57
|
{
|
|
58
58
|
name: 'Info',
|
|
59
59
|
value: 'info',
|
|
60
|
-
description: 'Get Hive server information',
|
|
60
|
+
description: 'Get CribOps Hive server information',
|
|
61
61
|
action: 'Get server info',
|
|
62
62
|
},
|
|
63
63
|
{
|
|
@@ -75,8 +75,8 @@ class HiveAccelerator {
|
|
|
75
75
|
{
|
|
76
76
|
name: 'Ping',
|
|
77
77
|
value: 'ping',
|
|
78
|
-
description: 'Test connectivity to Hive',
|
|
79
|
-
action: 'Ping
|
|
78
|
+
description: 'Test connectivity to CribOps Hive',
|
|
79
|
+
action: 'Ping CribOps Hive server',
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
name: 'Schedule Cron',
|
|
@@ -360,7 +360,7 @@ class HiveAccelerator {
|
|
|
360
360
|
async execute() {
|
|
361
361
|
const items = this.getInputData();
|
|
362
362
|
const returnData = [];
|
|
363
|
-
const credentials = await this.getCredentials('
|
|
363
|
+
const credentials = await this.getCredentials('cribOpsHiveApi');
|
|
364
364
|
const hive = new HiveClient_1.HiveClient({
|
|
365
365
|
host: credentials.host,
|
|
366
366
|
port: credentials.port,
|
|
@@ -458,4 +458,4 @@ class HiveAccelerator {
|
|
|
458
458
|
return [returnData];
|
|
459
459
|
}
|
|
460
460
|
}
|
|
461
|
-
exports.
|
|
461
|
+
exports.CribOpsHive = CribOpsHive;
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-cribops",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "n8n community node for reliable webhook processing with Cribops",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package"
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"n8nNodesApiVersion": 1,
|
|
38
38
|
"credentials": [
|
|
39
39
|
"dist/credentials/CribopsApi.credentials.js",
|
|
40
|
-
"dist/credentials/
|
|
40
|
+
"dist/credentials/CribOpsHiveApi.credentials.js"
|
|
41
41
|
],
|
|
42
42
|
"nodes": [
|
|
43
43
|
"dist/nodes/Cribops/Cribops.node.js",
|
|
44
44
|
"dist/nodes/CribopsTrigger/CribopsTrigger.node.js",
|
|
45
|
-
"dist/nodes/
|
|
45
|
+
"dist/nodes/CribOpsHive/CribOpsHive.node.js"
|
|
46
46
|
]
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-cribops",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "n8n community node for reliable webhook processing with Cribops",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package"
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"n8nNodesApiVersion": 1,
|
|
38
38
|
"credentials": [
|
|
39
39
|
"dist/credentials/CribopsApi.credentials.js",
|
|
40
|
-
"dist/credentials/
|
|
40
|
+
"dist/credentials/CribOpsHiveApi.credentials.js"
|
|
41
41
|
],
|
|
42
42
|
"nodes": [
|
|
43
43
|
"dist/nodes/Cribops/Cribops.node.js",
|
|
44
44
|
"dist/nodes/CribopsTrigger/CribopsTrigger.node.js",
|
|
45
|
-
"dist/nodes/
|
|
45
|
+
"dist/nodes/CribOpsHive/CribOpsHive.node.js"
|
|
46
46
|
]
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
File without changes
|