/** * Drift Node - Version 1 * Discriminator: resource=contact, operation=create */ interface Credentials { driftApi: CredentialReference; driftOAuth2Api: CredentialReference; } /** Create a contact */ export type DriftV1ContactCreateParams = { resource: 'contact'; operation: 'create'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * The email of the contact */ email?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** The name of the contact */ name?: string | Expression | PlaceholderValue; /** The phone number associated with the contact */ phone?: string | Expression | PlaceholderValue; }; }; export type DriftV1ContactCreateNode = { type: 'n8n-nodes-base.drift'; version: 1; credentials?: Credentials; config: NodeConfig; };