@@ -92,73 +92,7 @@ export namespace DeploymentCreateResponse {
9292/**
9393 * A stream of application events (state updates and logs) in SSE format.
9494 */
95- export type DeploymentFollowResponse = Array <
96- | DeploymentFollowResponse . StateEvent
97- | DeploymentFollowResponse . StateUpdateEvent
98- | DeploymentFollowResponse . LogEvent
99- > ;
100-
101- export namespace DeploymentFollowResponse {
102- /**
103- * Initial state of the application, emitted once when subscribing.
104- */
105- export interface StateEvent {
106- /**
107- * Event type identifier (always "state").
108- */
109- event : 'state' ;
110-
111- /**
112- * Current application state (e.g., "deploying", "running", "succeeded", "failed").
113- */
114- state : string ;
115-
116- /**
117- * Time the state was reported.
118- */
119- timestamp ?: string ;
120- }
121-
122- /**
123- * An update emitted when the application's state changes.
124- */
125- export interface StateUpdateEvent {
126- /**
127- * Event type identifier (always "state_update").
128- */
129- event : 'state_update' ;
130-
131- /**
132- * New application state (e.g., "running", "succeeded", "failed").
133- */
134- state : string ;
135-
136- /**
137- * Time the state change occurred.
138- */
139- timestamp ?: string ;
140- }
141-
142- /**
143- * A log entry from the application.
144- */
145- export interface LogEvent {
146- /**
147- * Event type identifier (always "log").
148- */
149- event : 'log' ;
150-
151- /**
152- * Log message text.
153- */
154- message : string ;
155-
156- /**
157- * Time the log entry was produced.
158- */
159- timestamp ?: string ;
160- }
161- }
95+ export type DeploymentFollowResponse = unknown ;
16296
16397export interface DeploymentCreateParams {
16498 /**
0 commit comments