UNPKG

@apify/n8n-nodes-apify

Version:
85 lines 2.2 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.properties = void 0; exports.properties = [ { displayName: 'GET /v2/actor-tasks', name: 'operation', type: 'notice', typeOptions: { theme: 'info', }, default: '', displayOptions: { show: { resource: ['Actor tasks'], operation: ['Get list of tasks'], }, }, }, { displayName: 'Offset', name: 'offset', description: 'Number of records that should be skipped at the start. The default value is `0`.', default: 0, type: 'number', routing: { request: { qs: { offset: '={{ $value }}', }, }, }, displayOptions: { show: { resource: ['Actor tasks'], operation: ['Get list of tasks'], }, }, }, { displayName: 'Limit', name: 'limit', description: 'Max number of results to return', default: 50, type: 'number', typeOptions: { minValue: 1, }, routing: { request: { qs: { limit: '={{ $value }}', }, }, }, displayOptions: { show: { resource: ['Actor tasks'], operation: ['Get list of tasks'], }, }, }, { displayName: 'Desc', name: 'desc', description: `If \`true\` or \`1\` then the objects are sorted by the \`createdAt\` field in descending order. By default, they are sorted in ascending order.`, default: true, type: 'boolean', routing: { request: { qs: { desc: '={{ $value }}', }, }, }, displayOptions: { show: { resource: ['Actor tasks'], operation: ['Get list of tasks'], }, }, }, ]; //# sourceMappingURL=properties.js.map