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
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.imagesListFields = exports.IMAGES_LIST_OPERATION = void 0;
exports.IMAGES_LIST_OPERATION = 'listImages';
exports.imagesListFields = [
{
displayName: 'Limit',
name: 'limit',
type: 'number',
typeOptions: {
minValue: 1,
maxValue: 100,
},
default: 10,
displayOptions: {
show: {
resource: ['minimax'],
operation: [exports.IMAGES_LIST_OPERATION],
},
},
description: 'Maximum number of images 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.IMAGES_LIST_OPERATION],
},
},
description: 'Field to filter the results by',
},
{
displayName: 'Filter Value',
name: 'filterValue',
type: 'string',
default: '',
displayOptions: {
show: {
resource: ['minimax'],
operation: [exports.IMAGES_LIST_OPERATION],
filterType: ['id', 'status', 'created_at'],
},
},
description: 'Value to filter by',
},
];
//# sourceMappingURL=ImagesListDescription.js.map
;