UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

50 lines (46 loc) 1.11 kB
/** * 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<string>; /** * Project slug in the form org-name/repo-name */ projectSlug?: string | Expression<string> | PlaceholderValue; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression<boolean>; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression<number>; /** * Filters * @default {} */ filters?: { /** The name of a vcs branch */ branch?: string | Expression<string> | PlaceholderValue; }; }; export type CircleCiV1PipelineGetAllNode = { type: 'n8n-nodes-base.circleCi'; version: 1; credentials?: Credentials; config: NodeConfig<CircleCiV1PipelineGetAllParams>; };