/** * Databricks Node - Version 1 * Discriminator: resource=genie, operation=startConversation */ interface Credentials { databricksApi: CredentialReference; databricksOAuth2Api: CredentialReference; } /** AI-powered data assistant. Learn more. */ export type DatabricksV1GenieStartConversationParams = { resource: 'genie'; operation: 'startConversation'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * The ID of the Genie space */ spaceId?: string | Expression | PlaceholderValue; /** * The initial message to start the conversation */ initialMessage?: string | Expression | PlaceholderValue; }; export type DatabricksV1GenieStartConversationNode = { type: 'n8n-nodes-base.databricks'; version: 1; credentials?: Credentials; config: NodeConfig; };