UNPKG

n8n-nodes-useapi

Version:

Ability to use multiple Midjourney, Riffusion, Mureka, Runway, MiniMax, InsightFaceSwap, Pika and PixVerse accounts complete with automated load balancing.

57 lines 1.67 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.videosListFields = exports.VIDEOS_LIST_OPERATION = void 0; exports.VIDEOS_LIST_OPERATION = 'listVideos'; exports.videosListFields = [ { displayName: 'Limit', name: 'limit', type: 'number', typeOptions: { minValue: 1, maxValue: 100, }, default: 10, displayOptions: { show: { resource: ['minimax'], operation: [exports.VIDEOS_LIST_OPERATION], }, }, description: 'Maximum number of videos to return', }, { displayName: 'Filter Type', name: 'filterType', type: 'options', options: [ { name: 'None', value: 'none' }, { name: 'ID', value: 'id' }, { name: 'Status', value: 'status' }, { name: 'Created At', value: 'created_at' } ], default: 'none', displayOptions: { show: { resource: ['minimax'], operation: [exports.VIDEOS_LIST_OPERATION], }, }, description: 'Field to filter the results by', }, { displayName: 'Filter Value', name: 'filterValue', type: 'string', default: '', displayOptions: { show: { resource: ['minimax'], operation: [exports.VIDEOS_LIST_OPERATION], filterType: ['id', 'status', 'created_at'], }, }, description: 'Value to filter by', }, ]; //# sourceMappingURL=VideosListDescription.js.map