/** * Merge new environment variables into the existing set. * @see https://docs.squarecloud.app/en/api-reference/endpoint/apps/envs */ interface RESTPostAPIEnvVarsJSONBody { envs: Record; } /** * Replace the entire set of environment variables. * @see https://docs.squarecloud.app/en/api-reference/endpoint/apps/envs */ interface RESTPutAPIEnvVarsJSONBody { envs: Record; } /** * Remove specific environment variables by key. * @see https://docs.squarecloud.app/en/api-reference/endpoint/apps/envs */ interface RESTDeleteAPIEnvVarsJSONBody { envs: string[]; } export type { RESTDeleteAPIEnvVarsJSONBody, RESTPostAPIEnvVarsJSONBody, RESTPutAPIEnvVarsJSONBody };