/** * Netlify Node - Version 1 * Discriminator: resource=deploy, operation=create */ interface Credentials { netlifyApi: CredentialReference; } /** Create a new deployment */ export type NetlifyV1DeployCreateParams = { resource: 'deploy'; operation: 'create'; /** * Enter the Site ID. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ siteId?: string | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Branch */ branch?: string | Expression | PlaceholderValue; /** Title */ title?: string | Expression | PlaceholderValue; }; }; export type NetlifyV1DeployCreateNode = { type: 'n8n-nodes-base.netlify'; version: 1; credentials?: Credentials; config: NodeConfig; };