@nangohq/types
Version:
Types used in Nango applications
17 lines (16 loc) • 451 B
TypeScript
import type { Endpoint } from '../../api';
import type { DBEnvironmentVariable } from '../db';
export type ApiEnvironmentVariable = Pick<DBEnvironmentVariable, 'name' | 'value'>;
export type PostEnvironmentVariables = Endpoint<{
Method: 'POST';
Path: '/api/v1/environments/variables';
Body: {
variables: {
name: string;
value: string;
}[];
};
Success: {
success: boolean;
};
}>;