UNPKG

@nangohq/types

Version:

Types used in Nango applications

18 lines (17 loc) 542 B
import type { ScriptTypeLiteral } from '../nangoYaml'; import type { LegacySyncModelSchema } from './incomingFlow'; export interface SyncDeploymentResult { name: string; version?: string; providerConfigKey: string; type: ScriptTypeLiteral; last_deployed?: Date; input?: string | LegacySyncModelSchema | undefined | null; models: string | string[]; id?: number | undefined; runs?: string | null; /** @deprecated legacy **/ sync_name?: string; /** @deprecated legacy **/ syncName?: string; }