/** * Netlify Node - Version 1 * Discriminator: resource=deploy, operation=get */ interface Credentials { netlifyApi: CredentialReference; } /** Get a deployment */ export type NetlifyV1DeployGetParams = { resource: 'deploy'; operation: 'get'; /** * 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; /** * Deploy ID */ deployId?: string | Expression | PlaceholderValue; }; export type NetlifyV1DeployGetNode = { type: 'n8n-nodes-base.netlify'; version: 1; credentials?: Credentials; config: NodeConfig; };