UNPKG

@apify/n8n-nodes-apify

Version:
107 lines 2.81 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.properties = void 0; exports.properties = [ { displayName: 'GET /v2/actor-runs', name: 'operation', type: 'notice', typeOptions: { theme: 'info', }, default: '', displayOptions: { show: { resource: ['Actor runs'], operation: ['Get user runs list'], }, }, }, { displayName: 'Offset', name: 'offset', description: `Number of array elements 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 runs'], operation: ['Get user runs list'], }, }, }, { 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 runs'], operation: ['Get user runs list'], }, }, }, { displayName: 'Desc', name: 'desc', description: `If \`true\` or \`1\` then the objects are sorted by the \`startedAt\` 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 runs'], operation: ['Get user runs list'], }, }, }, { displayName: 'Status', name: 'status', description: `Return only runs with the provided status ([available statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle))`, default: 'SUCCEEDED', type: 'string', routing: { request: { qs: { status: '={{ $value }}', }, }, }, displayOptions: { show: { resource: ['Actor runs'], operation: ['Get user runs list'], }, }, }, ]; //# sourceMappingURL=properties.js.map