UNPKG

@voiceflow/base-types

Version:

Voiceflow base project types

24 lines 653 B
import type { Nullable } from '@voiceflow/common'; export declare enum IntegrationType { ZAPIER = "Zapier", CUSTOM_API = "Custom API", GOOGLE_SHEETS = "Google Sheets" } export declare enum IntegrationPlatform { ZAPIER = "Zapier", GOOGLE_SHEETS = "Google Sheets" } export interface IntegrationUser { user_id?: string; platform?: IntegrationPlatform; user_data?: { email?: string; name?: string; }; created_at?: string; creator_id?: number; project_id?: Nullable<string>; requires_refresh?: Nullable<boolean>; integration_user_id?: string; } //# sourceMappingURL=integration.d.ts.map