/** * Jenkins Node - Version 1 * Discriminator: resource=job, operation=triggerParams */ interface Credentials { jenkinsApi: CredentialReference; } /** Trigger a specific job */ export type JenkinsV1JobTriggerParamsParams = { resource: 'job'; operation: 'triggerParams'; /** * Name of the job. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ job?: string | Expression; /** * Parameters for Jenkins job * @default {} */ param?: { /** Parameters */ params?: Array<{ /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ name?: string | Expression; /** Value */ value?: string | Expression | PlaceholderValue; }>; }; }; export type JenkinsV1JobTriggerParamsOutput = { success?: boolean; }; export type JenkinsV1JobTriggerParamsNode = { type: 'n8n-nodes-base.jenkins'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };