/** * TravisCI Node - Version 1 * Discriminator: resource=build, operation=getAll */ interface Credentials { travisCiApi: CredentialReference; } /** Get many builds */ export type TravisCiV1BuildGetAllParams = { resource: 'build'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** List of attributes to eager load */ include?: string | Expression | PlaceholderValue; /** You may specify order to sort your response * @default asc */ order?: 'asc' | 'desc' | Expression; /** Sort By * @default number */ sortBy?: 'created_at' | 'finished_at' | 'id' | 'number' | 'started_at' | Expression; }; }; export type TravisCiV1BuildGetAllNode = { type: 'n8n-nodes-base.travisCi'; version: 1; credentials?: Credentials; config: NodeConfig; };