alpic 1.100.0 → 1.102.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ export declare function calculateDeploymentDuration(deployment: {
7
7
  }): number | null;
8
8
  export declare function fetchDeployment(deploymentId: string): Promise<{
9
9
  id: string;
10
- status: "ongoing" | "deployed" | "failed" | "canceled";
10
+ status: "failed" | "ongoing" | "deployed" | "canceled";
11
11
  sourceRef: string | null;
12
12
  sourceCommitId: string | null;
13
13
  sourceCommitMessage: string | null;
@@ -22,7 +22,7 @@ export declare function fetchDeployment(deploymentId: string): Promise<{
22
22
  }>;
23
23
  export declare function fetchLatestDeploymentForEnvironment(environmentId: string): Promise<{
24
24
  id: string;
25
- status: "ongoing" | "deployed" | "failed" | "canceled";
25
+ status: "failed" | "ongoing" | "deployed" | "canceled";
26
26
  sourceRef: string | null;
27
27
  sourceCommitId: string | null;
28
28
  sourceCommitMessage: string | null;
@@ -41,7 +41,7 @@ export declare function resolveDeploymentId(flags: {
41
41
  }): Promise<string>;
42
42
  export declare function waitForDeployment(deployment: RouterOutput["deployments"]["get"]["v1"]): Promise<{
43
43
  id: string;
44
- status: "ongoing" | "deployed" | "failed" | "canceled";
44
+ status: "failed" | "ongoing" | "deployed" | "canceled";
45
45
  sourceRef: string | null;
46
46
  sourceCommitId: string | null;
47
47
  sourceCommitMessage: string | null;
@@ -70,7 +70,7 @@ export declare function deployAndWait({ initial, startedAt, }: {
70
70
  }): Promise<{
71
71
  deployment: {
72
72
  id: string;
73
- status: "ongoing" | "deployed" | "failed" | "canceled";
73
+ status: "failed" | "ongoing" | "deployed" | "canceled";
74
74
  sourceRef: string | null;
75
75
  sourceCommitId: string | null;
76
76
  sourceCommitMessage: string | null;
@@ -34,12 +34,12 @@ export declare class LinkWorkflow extends BaseWorkflow<LinkFlags> {
34
34
  mcpServerUrl: string;
35
35
  domains: {
36
36
  domain: string;
37
- status: "ongoing" | "deployed" | "failed";
37
+ status: "failed" | "ongoing" | "deployed";
38
38
  createdAt: Date;
39
39
  }[];
40
40
  latestDeployment: {
41
41
  id: string;
42
- status: "ongoing" | "deployed" | "failed" | "canceled";
42
+ status: "failed" | "ongoing" | "deployed" | "canceled";
43
43
  sourceCommitId: string | null;
44
44
  sourceCommitMessage: string | null;
45
45
  completedAt: Date | null;
@@ -54,7 +54,7 @@ export declare class LinkWorkflow extends BaseWorkflow<LinkFlags> {
54
54
  projectId: string;
55
55
  latestDeployment: {
56
56
  id: string;
57
- status: "ongoing" | "deployed" | "failed" | "canceled";
57
+ status: "failed" | "ongoing" | "deployed" | "canceled";
58
58
  sourceCommitId: string | null;
59
59
  sourceCommitMessage: string | null;
60
60
  completedAt: Date | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alpic",
3
- "version": "1.100.0",
3
+ "version": "1.102.0",
4
4
  "description": "The command-line interface for Alpic",
5
5
  "homepage": "https://alpic.ai",
6
6
  "preferGlobal": true,
@@ -44,7 +44,7 @@
44
44
  "tar": "^7.5.11",
45
45
  "undici": "^7.24.5",
46
46
  "zod": "^4.3.6",
47
- "@alpic-ai/api": "1.100.0"
47
+ "@alpic-ai/api": "1.102.0"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@orpc/openapi": "^1.13.9",