/** * Copper Node - Version 1 * Discriminator: resource=project, operation=getAll */ interface Credentials { copperApi: CredentialReference; } export type CopperV1ProjectGetAllParams = { resource: 'project'; 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 5 */ limit?: number | Expression; /** * Filters * @default {} */ filterFields?: { /** Name of the project to filter by */ name?: string | Expression | PlaceholderValue; }; }; export type CopperV1ProjectGetAllNode = { type: 'n8n-nodes-base.copper'; version: 1; credentials?: Credentials; config: NodeConfig; };