@n8n-dev/n8n-nodes-mineskin 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/README.md +99 -0
- package/dist/banner.svg +86 -0
- package/dist/credentials/MineskinApi.credentials.d.ts +9 -0
- package/dist/credentials/MineskinApi.credentials.js +49 -0
- package/dist/credentials/MineskinApi.credentials.js.map +1 -0
- package/dist/icons/mineskin.dark.png +0 -0
- package/dist/icons/mineskin.png +0 -0
- package/dist/nodes/Mineskin/Mineskin.node.d.ts +4 -0
- package/dist/nodes/Mineskin/Mineskin.node.js +68 -0
- package/dist/nodes/Mineskin/Mineskin.node.js.map +1 -0
- package/dist/nodes/Mineskin/Mineskin.node.json +20 -0
- package/dist/nodes/Mineskin/mineskin.dark.png +0 -0
- package/dist/nodes/Mineskin/mineskin.png +0 -0
- package/dist/nodes/Mineskin/resources/generate/index.d.ts +2 -0
- package/dist/nodes/Mineskin/resources/generate/index.js +407 -0
- package/dist/nodes/Mineskin/resources/generate/index.js.map +1 -0
- package/dist/nodes/Mineskin/resources/get/index.d.ts +2 -0
- package/dist/nodes/Mineskin/resources/get/index.js +349 -0
- package/dist/nodes/Mineskin/resources/get/index.js.map +1 -0
- package/dist/nodes/Mineskin/resources/index.d.ts +3 -0
- package/dist/nodes/Mineskin/resources/index.js +10 -0
- package/dist/nodes/Mineskin/resources/index.js.map +1 -0
- package/dist/nodes/Mineskin/resources/util/index.d.ts +2 -0
- package/dist/nodes/Mineskin/resources/util/index.js +168 -0
- package/dist/nodes/Mineskin/resources/util/index.js.map +1 -0
- package/dist/package.json +62 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +62 -0
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getDescription = void 0;
|
|
4
|
+
exports.getDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Get"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "GET Get Delay",
|
|
20
|
+
"value": "GET Get Delay",
|
|
21
|
+
"action": "GET Get Delay",
|
|
22
|
+
"description": "",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/get/delay"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "GET Get Id",
|
|
32
|
+
"value": "GET Get Id",
|
|
33
|
+
"action": "GET Get Id",
|
|
34
|
+
"description": "Deprecated. Use /get/uuid instead.",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "GET",
|
|
38
|
+
"url": "=/get/id/{{$parameter[\"id\"]}}"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "GET Get List",
|
|
44
|
+
"value": "GET Get List",
|
|
45
|
+
"action": "GET Get List",
|
|
46
|
+
"description": "",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "GET",
|
|
50
|
+
"url": "=/get/list/{{$parameter[\"page\"]}}"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "GET Get Uuid",
|
|
56
|
+
"value": "GET Get Uuid",
|
|
57
|
+
"action": "GET Get Uuid",
|
|
58
|
+
"description": "",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"url": "=/get/uuid/{{$parameter[\"uuid\"]}}"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"default": ""
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"displayName": "GET /get/delay",
|
|
71
|
+
"name": "operation",
|
|
72
|
+
"type": "notice",
|
|
73
|
+
"typeOptions": {
|
|
74
|
+
"theme": "info"
|
|
75
|
+
},
|
|
76
|
+
"default": "",
|
|
77
|
+
"displayOptions": {
|
|
78
|
+
"show": {
|
|
79
|
+
"resource": [
|
|
80
|
+
"Get"
|
|
81
|
+
],
|
|
82
|
+
"operation": [
|
|
83
|
+
"GET Get Delay"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"displayName": "User Agent",
|
|
90
|
+
"name": "User-Agent",
|
|
91
|
+
"required": true,
|
|
92
|
+
"description": "Custom User-Agent for your application, see [user-agent.dev](https://user-agent.dev/) for implementation examples",
|
|
93
|
+
"default": "ExampleApp/v1.0",
|
|
94
|
+
"type": "string",
|
|
95
|
+
"routing": {
|
|
96
|
+
"request": {
|
|
97
|
+
"headers": {
|
|
98
|
+
"User-Agent": "={{ $value }}"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"displayOptions": {
|
|
103
|
+
"show": {
|
|
104
|
+
"resource": [
|
|
105
|
+
"Get"
|
|
106
|
+
],
|
|
107
|
+
"operation": [
|
|
108
|
+
"GET Get Delay"
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"displayName": "Api Key API Key",
|
|
115
|
+
"name": "security_apikey",
|
|
116
|
+
"type": "string",
|
|
117
|
+
"default": "",
|
|
118
|
+
"description": "Get your key from https://mineskin.org/apikey",
|
|
119
|
+
"required": false,
|
|
120
|
+
"routing": {
|
|
121
|
+
"send": {
|
|
122
|
+
"type": "query",
|
|
123
|
+
"property": "key",
|
|
124
|
+
"value": "={{ $value }}",
|
|
125
|
+
"propertyInDotNotation": false
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"displayOptions": {
|
|
129
|
+
"show": {
|
|
130
|
+
"resource": [
|
|
131
|
+
"Get"
|
|
132
|
+
],
|
|
133
|
+
"operation": [
|
|
134
|
+
"GET Get Delay"
|
|
135
|
+
]
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"displayName": "Bearer Token",
|
|
141
|
+
"name": "security_bearerauth",
|
|
142
|
+
"type": "string",
|
|
143
|
+
"default": "",
|
|
144
|
+
"description": "Get your key from https://mineskin.org/apikey",
|
|
145
|
+
"required": false,
|
|
146
|
+
"routing": {
|
|
147
|
+
"request": {
|
|
148
|
+
"headers": {
|
|
149
|
+
"Authorization": "={{ 'Bearer ' + $value }}"
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"displayOptions": {
|
|
154
|
+
"show": {
|
|
155
|
+
"resource": [
|
|
156
|
+
"Get"
|
|
157
|
+
],
|
|
158
|
+
"operation": [
|
|
159
|
+
"GET Get Delay"
|
|
160
|
+
]
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"displayName": "GET /get/id/{id}",
|
|
166
|
+
"name": "operation",
|
|
167
|
+
"type": "notice",
|
|
168
|
+
"typeOptions": {
|
|
169
|
+
"theme": "info"
|
|
170
|
+
},
|
|
171
|
+
"default": "",
|
|
172
|
+
"displayOptions": {
|
|
173
|
+
"show": {
|
|
174
|
+
"resource": [
|
|
175
|
+
"Get"
|
|
176
|
+
],
|
|
177
|
+
"operation": [
|
|
178
|
+
"GET Get Id"
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"displayName": "Id",
|
|
185
|
+
"name": "id",
|
|
186
|
+
"required": true,
|
|
187
|
+
"default": 0,
|
|
188
|
+
"type": "number",
|
|
189
|
+
"displayOptions": {
|
|
190
|
+
"show": {
|
|
191
|
+
"resource": [
|
|
192
|
+
"Get"
|
|
193
|
+
],
|
|
194
|
+
"operation": [
|
|
195
|
+
"GET Get Id"
|
|
196
|
+
]
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"displayName": "User Agent",
|
|
202
|
+
"name": "User-Agent",
|
|
203
|
+
"required": true,
|
|
204
|
+
"description": "Custom User-Agent for your application, see [user-agent.dev](https://user-agent.dev/) for implementation examples",
|
|
205
|
+
"default": "ExampleApp/v1.0",
|
|
206
|
+
"type": "string",
|
|
207
|
+
"routing": {
|
|
208
|
+
"request": {
|
|
209
|
+
"headers": {
|
|
210
|
+
"User-Agent": "={{ $value }}"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"displayOptions": {
|
|
215
|
+
"show": {
|
|
216
|
+
"resource": [
|
|
217
|
+
"Get"
|
|
218
|
+
],
|
|
219
|
+
"operation": [
|
|
220
|
+
"GET Get Id"
|
|
221
|
+
]
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"displayName": "GET /get/list/{page}",
|
|
227
|
+
"name": "operation",
|
|
228
|
+
"type": "notice",
|
|
229
|
+
"typeOptions": {
|
|
230
|
+
"theme": "info"
|
|
231
|
+
},
|
|
232
|
+
"default": "",
|
|
233
|
+
"displayOptions": {
|
|
234
|
+
"show": {
|
|
235
|
+
"resource": [
|
|
236
|
+
"Get"
|
|
237
|
+
],
|
|
238
|
+
"operation": [
|
|
239
|
+
"GET Get List"
|
|
240
|
+
]
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"displayName": "Page",
|
|
246
|
+
"name": "page",
|
|
247
|
+
"required": true,
|
|
248
|
+
"description": "For reference pagination, the uuid of the last skin in the previous page. For numeric pagination (deprecated), the page number or 'start'.",
|
|
249
|
+
"default": 0,
|
|
250
|
+
"type": "number",
|
|
251
|
+
"displayOptions": {
|
|
252
|
+
"show": {
|
|
253
|
+
"resource": [
|
|
254
|
+
"Get"
|
|
255
|
+
],
|
|
256
|
+
"operation": [
|
|
257
|
+
"GET Get List"
|
|
258
|
+
]
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"displayName": "User Agent",
|
|
264
|
+
"name": "User-Agent",
|
|
265
|
+
"required": true,
|
|
266
|
+
"description": "Custom User-Agent for your application, see [user-agent.dev](https://user-agent.dev/) for implementation examples",
|
|
267
|
+
"default": "ExampleApp/v1.0",
|
|
268
|
+
"type": "string",
|
|
269
|
+
"routing": {
|
|
270
|
+
"request": {
|
|
271
|
+
"headers": {
|
|
272
|
+
"User-Agent": "={{ $value }}"
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"displayOptions": {
|
|
277
|
+
"show": {
|
|
278
|
+
"resource": [
|
|
279
|
+
"Get"
|
|
280
|
+
],
|
|
281
|
+
"operation": [
|
|
282
|
+
"GET Get List"
|
|
283
|
+
]
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"displayName": "GET /get/uuid/{uuid}",
|
|
289
|
+
"name": "operation",
|
|
290
|
+
"type": "notice",
|
|
291
|
+
"typeOptions": {
|
|
292
|
+
"theme": "info"
|
|
293
|
+
},
|
|
294
|
+
"default": "",
|
|
295
|
+
"displayOptions": {
|
|
296
|
+
"show": {
|
|
297
|
+
"resource": [
|
|
298
|
+
"Get"
|
|
299
|
+
],
|
|
300
|
+
"operation": [
|
|
301
|
+
"GET Get Uuid"
|
|
302
|
+
]
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"displayName": "Uuid",
|
|
308
|
+
"name": "uuid",
|
|
309
|
+
"required": true,
|
|
310
|
+
"default": "",
|
|
311
|
+
"type": "string",
|
|
312
|
+
"displayOptions": {
|
|
313
|
+
"show": {
|
|
314
|
+
"resource": [
|
|
315
|
+
"Get"
|
|
316
|
+
],
|
|
317
|
+
"operation": [
|
|
318
|
+
"GET Get Uuid"
|
|
319
|
+
]
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"displayName": "User Agent",
|
|
325
|
+
"name": "User-Agent",
|
|
326
|
+
"required": true,
|
|
327
|
+
"description": "Custom User-Agent for your application, see [user-agent.dev](https://user-agent.dev/) for implementation examples",
|
|
328
|
+
"default": "ExampleApp/v1.0",
|
|
329
|
+
"type": "string",
|
|
330
|
+
"routing": {
|
|
331
|
+
"request": {
|
|
332
|
+
"headers": {
|
|
333
|
+
"User-Agent": "={{ $value }}"
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"displayOptions": {
|
|
338
|
+
"show": {
|
|
339
|
+
"resource": [
|
|
340
|
+
"Get"
|
|
341
|
+
],
|
|
342
|
+
"operation": [
|
|
343
|
+
"GET Get Uuid"
|
|
344
|
+
]
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
];
|
|
349
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Mineskin/resources/get/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.utilDescription = exports.getDescription = exports.generateDescription = void 0;
|
|
4
|
+
var generate_1 = require("./generate");
|
|
5
|
+
Object.defineProperty(exports, "generateDescription", { enumerable: true, get: function () { return generate_1.generateDescription; } });
|
|
6
|
+
var get_1 = require("./get");
|
|
7
|
+
Object.defineProperty(exports, "getDescription", { enumerable: true, get: function () { return get_1.getDescription; } });
|
|
8
|
+
var util_1 = require("./util");
|
|
9
|
+
Object.defineProperty(exports, "utilDescription", { enumerable: true, get: function () { return util_1.utilDescription; } });
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../nodes/Mineskin/resources/index.ts"],"names":[],"mappings":";;;AAAA,uCAAiD;AAAxC,+GAAA,mBAAmB,OAAA;AAC5B,6BAAuC;AAA9B,qGAAA,cAAc,OAAA;AACvB,+BAAyC;AAAhC,uGAAA,eAAe,OAAA"}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.utilDescription = void 0;
|
|
4
|
+
exports.utilDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Util"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "GET Validate Name",
|
|
20
|
+
"value": "GET Validate Name",
|
|
21
|
+
"action": "GET Validate Name",
|
|
22
|
+
"description": "",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/validate/name/{{$parameter[\"name\"]}}"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "GET Validate Uuid",
|
|
32
|
+
"value": "GET Validate Uuid",
|
|
33
|
+
"action": "GET Validate Uuid",
|
|
34
|
+
"description": "",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "GET",
|
|
38
|
+
"url": "=/validate/uuid/{{$parameter[\"uuid\"]}}"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"default": ""
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"displayName": "GET /validate/name/{name}",
|
|
47
|
+
"name": "operation",
|
|
48
|
+
"type": "notice",
|
|
49
|
+
"typeOptions": {
|
|
50
|
+
"theme": "info"
|
|
51
|
+
},
|
|
52
|
+
"default": "",
|
|
53
|
+
"displayOptions": {
|
|
54
|
+
"show": {
|
|
55
|
+
"resource": [
|
|
56
|
+
"Util"
|
|
57
|
+
],
|
|
58
|
+
"operation": [
|
|
59
|
+
"GET Validate Name"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"displayName": "Name",
|
|
66
|
+
"name": "name",
|
|
67
|
+
"required": true,
|
|
68
|
+
"default": "",
|
|
69
|
+
"type": "string",
|
|
70
|
+
"displayOptions": {
|
|
71
|
+
"show": {
|
|
72
|
+
"resource": [
|
|
73
|
+
"Util"
|
|
74
|
+
],
|
|
75
|
+
"operation": [
|
|
76
|
+
"GET Validate Name"
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"displayName": "User Agent",
|
|
83
|
+
"name": "User-Agent",
|
|
84
|
+
"required": true,
|
|
85
|
+
"description": "Custom User-Agent for your application, see [user-agent.dev](https://user-agent.dev/) for implementation examples",
|
|
86
|
+
"default": "ExampleApp/v1.0",
|
|
87
|
+
"type": "string",
|
|
88
|
+
"routing": {
|
|
89
|
+
"request": {
|
|
90
|
+
"headers": {
|
|
91
|
+
"User-Agent": "={{ $value }}"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"displayOptions": {
|
|
96
|
+
"show": {
|
|
97
|
+
"resource": [
|
|
98
|
+
"Util"
|
|
99
|
+
],
|
|
100
|
+
"operation": [
|
|
101
|
+
"GET Validate Name"
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"displayName": "GET /validate/uuid/{uuid}",
|
|
108
|
+
"name": "operation",
|
|
109
|
+
"type": "notice",
|
|
110
|
+
"typeOptions": {
|
|
111
|
+
"theme": "info"
|
|
112
|
+
},
|
|
113
|
+
"default": "",
|
|
114
|
+
"displayOptions": {
|
|
115
|
+
"show": {
|
|
116
|
+
"resource": [
|
|
117
|
+
"Util"
|
|
118
|
+
],
|
|
119
|
+
"operation": [
|
|
120
|
+
"GET Validate Uuid"
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"displayName": "Uuid",
|
|
127
|
+
"name": "uuid",
|
|
128
|
+
"required": true,
|
|
129
|
+
"default": "",
|
|
130
|
+
"type": "string",
|
|
131
|
+
"displayOptions": {
|
|
132
|
+
"show": {
|
|
133
|
+
"resource": [
|
|
134
|
+
"Util"
|
|
135
|
+
],
|
|
136
|
+
"operation": [
|
|
137
|
+
"GET Validate Uuid"
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"displayName": "User Agent",
|
|
144
|
+
"name": "User-Agent",
|
|
145
|
+
"required": true,
|
|
146
|
+
"description": "Custom User-Agent for your application, see [user-agent.dev](https://user-agent.dev/) for implementation examples",
|
|
147
|
+
"default": "ExampleApp/v1.0",
|
|
148
|
+
"type": "string",
|
|
149
|
+
"routing": {
|
|
150
|
+
"request": {
|
|
151
|
+
"headers": {
|
|
152
|
+
"User-Agent": "={{ $value }}"
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"displayOptions": {
|
|
157
|
+
"show": {
|
|
158
|
+
"resource": [
|
|
159
|
+
"Util"
|
|
160
|
+
],
|
|
161
|
+
"operation": [
|
|
162
|
+
"GET Validate Uuid"
|
|
163
|
+
]
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
];
|
|
168
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Mineskin/resources/util/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@n8n-dev/n8n-nodes-mineskin",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Client implementations:",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://n8n-code.github.io/n8n-dev/#/n8n-nodes-mineskin",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"n8n",
|
|
9
|
+
"n8n-community-node",
|
|
10
|
+
"n8n-node",
|
|
11
|
+
"n8n-community-node-package",
|
|
12
|
+
"openapi",
|
|
13
|
+
"swagger",
|
|
14
|
+
"api",
|
|
15
|
+
"automation",
|
|
16
|
+
"workflow",
|
|
17
|
+
"mineskin"
|
|
18
|
+
],
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "kelvinzer0",
|
|
21
|
+
"email": ""
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/n8n-code/n8n-nodes-mineskin.git"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "n8n-node build",
|
|
29
|
+
"build:watch": "tsc --watch",
|
|
30
|
+
"dev": "n8n-node dev",
|
|
31
|
+
"lint": "n8n-node lint",
|
|
32
|
+
"lint:fix": "n8n-node lint --fix",
|
|
33
|
+
"release": "n8n-node release",
|
|
34
|
+
"prepublishOnly": "npm run build"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
39
|
+
"n8n": {
|
|
40
|
+
"n8nNodesApiVersion": 1,
|
|
41
|
+
"strict": true,
|
|
42
|
+
"credentials": [
|
|
43
|
+
"dist/credentials/MineskinApi.credentials.js"
|
|
44
|
+
],
|
|
45
|
+
"nodes": [
|
|
46
|
+
"dist/nodes/Mineskin/Mineskin.node.js"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"n8n-workflow": "*"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@n8n/node-cli": "*",
|
|
54
|
+
"eslint": "*",
|
|
55
|
+
"prettier": "3.8.3",
|
|
56
|
+
"release-it": "20.2.0",
|
|
57
|
+
"typescript": "5.9.3"
|
|
58
|
+
},
|
|
59
|
+
"peerDependencies": {
|
|
60
|
+
"n8n-workflow": "*"
|
|
61
|
+
}
|
|
62
|
+
}
|