Skip to content

Commit c8b327b

Browse files
committed
Add installing status to the api schema and cli
1 parent 4569f01 commit c8b327b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/cli-v3/src/commands/deploy.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,7 @@ async function failDeploy(
676676

677677
switch (serverDeployment.status) {
678678
case "PENDING":
679+
case "INSTALLING":
679680
case "DEPLOYING":
680681
case "BUILDING": {
681682
await doOutputLogs();

packages/core/src/v3/schemas/api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,7 @@ export const GetDeploymentResponseBody = z.object({
465465
id: z.string(),
466466
status: z.enum([
467467
"PENDING",
468+
"INSTALLING",
468469
"BUILDING",
469470
"DEPLOYING",
470471
"DEPLOYED",

0 commit comments

Comments
 (0)