@forge/cli
12.22.012.22.0-experimental-04cc2b9
out/deploy/deployer/deploy-monitor-graphql-client.d.ts~
out/deploy/deployer/deploy-monitor-graphql-client.d.tsModified+2−2
Index: package/out/deploy/deployer/deploy-monitor-graphql-client.d.ts
===================================================================
--- package/out/deploy/deployer/deploy-monitor-graphql-client.d.ts
+++ package/out/deploy/deployer/deploy-monitor-graphql-client.d.ts
@@ -3,12 +3,12 @@
appId: string;
deploymentId: string;
environmentKey: string;
}
-export declare type DeployMonitor = Pick<AppDeployment, 'stages' | 'errorDetails' | 'status'> & {
+export type DeployMonitor = Pick<AppDeployment, 'stages' | 'errorDetails' | 'status'> & {
requestId: string;
};
-export declare type DeployMonitorEvent = AppDeploymentDisplayEvent | AppDeploymentLogEvent | AppDeploymentSnapshotLogEvent | AppDeploymentTransitionEvent;
+export type DeployMonitorEvent = AppDeploymentDisplayEvent | AppDeploymentLogEvent | AppDeploymentSnapshotLogEvent | AppDeploymentTransitionEvent;
export interface DeployMonitorClient {
getDeployment(details: DeployMonitorDetails): Promise<DeployMonitor>;
}
export declare class DeployMonitorGraphqlClient implements DeployMonitorClient {