n8n-nodes-cribops 0.1.15 → 0.1.16
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.
|
@@ -4,9 +4,7 @@ exports.CribopsApi = void 0;
|
|
|
4
4
|
class CribopsApi {
|
|
5
5
|
name = 'cribopsApi';
|
|
6
6
|
displayName = 'Cribops API';
|
|
7
|
-
documentationUrl = 'https://
|
|
8
|
-
// Icon removed due to n8n bug with credential icons in community nodes
|
|
9
|
-
// See: https://github.com/n8n-io/n8n/issues/11642
|
|
7
|
+
documentationUrl = 'https://docs.cribops.com';
|
|
10
8
|
properties = [
|
|
11
9
|
{
|
|
12
10
|
displayName: 'API Token',
|
|
@@ -27,30 +25,6 @@ class CribopsApi {
|
|
|
27
25
|
required: true,
|
|
28
26
|
description: 'Base URL of the Cribops API',
|
|
29
27
|
},
|
|
30
|
-
{
|
|
31
|
-
displayName: 'Account ID',
|
|
32
|
-
name: 'accountId',
|
|
33
|
-
type: 'string',
|
|
34
|
-
default: '',
|
|
35
|
-
description: 'Account ID for cloud service integration',
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
displayName: 'Account Secret',
|
|
39
|
-
name: 'accountSecret',
|
|
40
|
-
type: 'string',
|
|
41
|
-
typeOptions: {
|
|
42
|
-
password: true,
|
|
43
|
-
},
|
|
44
|
-
default: '',
|
|
45
|
-
description: 'Account secret key for cloud service integration',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
displayName: 'Region',
|
|
49
|
-
name: 'region',
|
|
50
|
-
type: 'string',
|
|
51
|
-
default: 'us-east-1',
|
|
52
|
-
description: 'Region for cloud service integration',
|
|
53
|
-
},
|
|
54
28
|
];
|
|
55
29
|
authenticate = {
|
|
56
30
|
type: 'generic',
|
package/dist/package.json
CHANGED