n8n-nodes-supermachine 0.4.7 → 0.4.8
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.
|
@@ -22,7 +22,7 @@ exports.getImageOperations = [
|
|
|
22
22
|
{
|
|
23
23
|
name: 'Generate an Image v3',
|
|
24
24
|
value: 'generateV3',
|
|
25
|
-
description: 'Generate image using API v3 (requires Auth Token)',
|
|
25
|
+
description: 'Generate image using API v3 (requires Auth Token in credential)',
|
|
26
26
|
action: 'Generate an image v3',
|
|
27
27
|
},
|
|
28
28
|
{
|
|
@@ -327,23 +327,8 @@ exports.getImageFields = [
|
|
|
327
327
|
],
|
|
328
328
|
},
|
|
329
329
|
// ═══════════════════════════════════════════════════════════
|
|
330
|
-
// GENERATE V3
|
|
330
|
+
// GENERATE V3 - NO AUTH TOKEN FIELD (uses credential)
|
|
331
331
|
// ═══════════════════════════════════════════════════════════
|
|
332
|
-
{
|
|
333
|
-
displayName: 'Auth Token',
|
|
334
|
-
name: 'authToken',
|
|
335
|
-
type: 'string',
|
|
336
|
-
displayOptions: {
|
|
337
|
-
show: {
|
|
338
|
-
resource: ['image'],
|
|
339
|
-
operation: ['generateV3'],
|
|
340
|
-
},
|
|
341
|
-
},
|
|
342
|
-
default: '',
|
|
343
|
-
required: true,
|
|
344
|
-
placeholder: 'eyJhbGciOiJBMjU2S1ciLCJlbmMiOiJBMjU2Q0JDLUhTNTEyIi...',
|
|
345
|
-
description: 'Authentication token from Get Token operation',
|
|
346
|
-
},
|
|
347
332
|
{
|
|
348
333
|
displayName: 'Model Name',
|
|
349
334
|
name: 'modelNameV3',
|
package/package.json
CHANGED