From e5aff06f61aca18a762e75db2299de15f6e134d5 Mon Sep 17 00:00:00 2001 From: Sujay Jayakar Date: Mon, 2 Sep 2024 15:58:46 -0400 Subject: [PATCH] Check for environment variable changes during push (#29416) GitOrigin-RevId: f28a06d4307da97f181dfa4a7fa0edc08fca46cd --- src/cli/lib/deployApi/startPush.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cli/lib/deployApi/startPush.ts b/src/cli/lib/deployApi/startPush.ts index 52f35d4..310fb65 100644 --- a/src/cli/lib/deployApi/startPush.ts +++ b/src/cli/lib/deployApi/startPush.ts @@ -29,6 +29,8 @@ export const schemaChange = z.object({ export type SchemaChange = z.infer; export const startPushResponse = z.object({ + environmentVariables: z.record(z.string(), z.string()), + externalDepsId: z.nullable(z.string()), componentDefinitionPackages: z.record(componentDefinitionPath, sourcePackage),