interface DriftNodeParameters {
additionalFields?: { name?: string; phone?: string };
authentication?: "oAuth2" | "accessToken";
contactId?: string;
email?: string;
operation?:
| "create"
| "get"
| "update"
| "delete"
| "getCustomAttributes";
resource?: "contact";
updateFields?: {
email?: string;
name?: string;
phone?: string;
};
}
Default: {}