/** * CircleCI Node - Version 1 * Discriminator: resource=pipeline, operation=getAll */ interface Credentials { circleCiApi: CredentialReference; } /** Get many pipelines */ export type CircleCiV1PipelineGetAllParams = { resource: 'pipeline'; operation: 'getAll'; /** * Source control system */ vcs?: 'bitbucket' | 'github' | Expression; /** * Project slug in the form org-name/repo-name */ projectSlug?: string | Expression | PlaceholderValue; /** * 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; /** * Filters * @default {} */ filters?: { /** The name of a vcs branch */ branch?: string | Expression | PlaceholderValue; }; }; export type CircleCiV1PipelineGetAllNode = { type: 'n8n-nodes-base.circleCi'; version: 1; credentials?: Credentials; config: NodeConfig; };