/**
 * 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 &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;.
 */
    siteId?: string | Expression<string>;
/**
 * Additional Fields
 * @default {}
 */
    additionalFields?: {
    /** Branch
     */
    branch?: string | Expression<string> | PlaceholderValue;
    /** Title
     */
    title?: string | Expression<string> | PlaceholderValue;
  };
};

export type NetlifyV1DeployCreateNode = {
  type: 'n8n-nodes-base.netlify';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<NetlifyV1DeployCreateParams>;
};