import type { Endpoint } from '../../api.js'; import type { DBEnvironmentVariable } from '../db.js'; export type ApiEnvironmentVariable = Pick; export type PostEnvironmentVariables = Endpoint<{ Method: 'POST'; Path: '/api/v1/environments/variables'; Querystring: { env: string; }; Body: { variables: { name: string; value: string; }[]; }; Success: { success: boolean; }; }>;