UNPKG

@apify/n8n-nodes-apify

Version:
43 lines 1.48 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.properties = void 0; exports.properties = [ { displayName: 'Actor', name: 'userActorId', required: true, description: 'Actor ID or a tilde-separated username and Actor name', default: 'janedoe~my-actor', type: 'string', displayOptions: { show: { resource: ['Actors'], operation: ['Get last run'], }, }, }, { displayName: 'Status', name: 'status', description: 'Return only runs with the provided status. See the dropdown options or the Apify documentation https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle.', default: 'SUCCEEDED', type: 'options', options: [ { name: 'ABORTED', value: 'ABORTED' }, { name: 'ABORTING', value: 'ABORTING' }, { name: 'FAILED', value: 'FAILED' }, { name: 'READY', value: 'READY' }, { name: 'RUNNING', value: 'RUNNING' }, { name: 'SUCCEEDED', value: 'SUCCEEDED' }, { name: 'TIMED-OUT', value: 'TIMED-OUT' }, { name: 'TIMING-OUT', value: 'TIMING-OUT' }, ], displayOptions: { show: { resource: ['Actors'], operation: ['Get last run'], }, }, }, ]; //# sourceMappingURL=properties.js.map