UNPKG

@apify/n8n-nodes-apify

Version:
106 lines 2.74 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.properties = void 0; exports.properties = [ { displayName: 'GET /v2/acts', name: 'operation', type: 'notice', typeOptions: { theme: 'info', }, default: '', displayOptions: { show: { resource: ['Actors'], operation: ['Get list of actors'], }, }, }, { displayName: 'My', name: 'my', description: 'If `true` or `1` then the returned list only contains Actors owned by the user. The default value is `false`.', default: false, type: 'boolean', routing: { request: { qs: { my: '={{ $value }}', }, }, }, displayOptions: { show: { resource: ['Actors'], operation: ['Get list of actors'], }, }, }, { 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: ['Actors'], operation: ['Get list of actors'], }, }, }, { 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: ['Actors'], operation: ['Get list of actors'], }, }, }, { 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: ['Actors'], operation: ['Get list of actors'], }, }, }, ]; //# sourceMappingURL=properties.js.map