@nangohq/types
Version:
Types used in Nango applications
17 lines (16 loc) • 466 B
TypeScript
import type { ScriptTypeLiteral } from '../nangoYaml/index.js';
export interface SyncDeploymentResult {
name: string;
version?: string;
providerConfigKey: string;
type: ScriptTypeLiteral;
last_deployed?: Date;
input?: string | undefined | null;
models: string | string[];
id?: number | undefined;
runs?: string | null;
/** @deprecated legacy **/
sync_name?: string;
/** @deprecated legacy **/
syncName?: string;
}