@linkorb/n8n-nodes-nebula 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
/**
|
|
3
|
+
* NebulaTriggerAuth - Authentication credential for incoming webhook requests
|
|
4
|
+
*
|
|
5
|
+
* This is used to authenticate CALLERS to the Nebula Trigger webhook.
|
|
6
|
+
* It is distinctly different from NebulaApi credentials which authenticate
|
|
7
|
+
* outbound requests FROM n8n TO Nebula.
|
|
8
|
+
*/
|
|
9
|
+
export declare class NebulaTriggerAuth implements ICredentialType {
|
|
10
|
+
name: string;
|
|
11
|
+
displayName: string;
|
|
12
|
+
documentationUrl: string;
|
|
13
|
+
icon: "fa:key";
|
|
14
|
+
properties: INodeProperties[];
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=NebulaTriggerAuth.credentials.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NebulaTriggerAuth.credentials.d.ts","sourceRoot":"","sources":["../../credentials/NebulaTriggerAuth.credentials.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,eAAe,EAChB,MAAM,cAAc,CAAC;AAEtB;;;;;;GAMG;AACH,qBAAa,iBAAkB,YAAW,eAAe;IACvD,IAAI,SAAuB;IAC3B,WAAW,SAAyB;IACpC,gBAAgB,SAAiD;IAIjE,IAAI,EAAG,QAAQ,CAAU;IAEzB,UAAU,EAAE,eAAe,EAAE,CAY3B;CACH"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NebulaTriggerAuth = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* NebulaTriggerAuth - Authentication credential for incoming webhook requests
|
|
6
|
+
*
|
|
7
|
+
* This is used to authenticate CALLERS to the Nebula Trigger webhook.
|
|
8
|
+
* It is distinctly different from NebulaApi credentials which authenticate
|
|
9
|
+
* outbound requests FROM n8n TO Nebula.
|
|
10
|
+
*/
|
|
11
|
+
class NebulaTriggerAuth {
|
|
12
|
+
name = 'nebulaTriggerAuth';
|
|
13
|
+
displayName = 'Nebula Trigger Auth';
|
|
14
|
+
documentationUrl = 'https://github.com/linkorb/n8n-nodes-nebula';
|
|
15
|
+
// Note: Custom SVG icons don't work with N8N_CUSTOM_EXTENSIONS due to n8n bug
|
|
16
|
+
// See: https://github.com/n8n-io/n8n/issues/21360
|
|
17
|
+
// Using Font Awesome as fallback. Install via npm for custom SVG icons.
|
|
18
|
+
icon = 'fa:key';
|
|
19
|
+
properties = [
|
|
20
|
+
{
|
|
21
|
+
displayName: 'Token',
|
|
22
|
+
name: 'token',
|
|
23
|
+
type: 'string',
|
|
24
|
+
typeOptions: {
|
|
25
|
+
password: true,
|
|
26
|
+
},
|
|
27
|
+
default: '',
|
|
28
|
+
description: 'Bearer token that callers must provide to authenticate webhook requests. Callers should include this in the Authorization header as "Bearer {token}".',
|
|
29
|
+
required: true,
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
}
|
|
33
|
+
exports.NebulaTriggerAuth = NebulaTriggerAuth;
|
|
34
|
+
//# sourceMappingURL=NebulaTriggerAuth.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NebulaTriggerAuth.credentials.js","sourceRoot":"","sources":["../../credentials/NebulaTriggerAuth.credentials.ts"],"names":[],"mappings":";;;AAKA;;;;;;GAMG;AACH,MAAa,iBAAiB;IAC5B,IAAI,GAAG,mBAAmB,CAAC;IAC3B,WAAW,GAAG,qBAAqB,CAAC;IACpC,gBAAgB,GAAG,6CAA6C,CAAC;IACjE,8EAA8E;IAC9E,kDAAkD;IAClD,wEAAwE;IACxE,IAAI,GAAG,QAAiB,CAAC;IAEzB,UAAU,GAAsB;QAC9B;YACE,WAAW,EAAE,OAAO;YACpB,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE;gBACX,QAAQ,EAAE,IAAI;aACf;YACD,OAAO,EAAE,EAAE;YACX,WAAW,EAAE,uJAAuJ;YACpK,QAAQ,EAAE,IAAI;SACf;KACF,CAAC;CACH;AAtBD,8CAsBC"}
|
package/package.json
CHANGED