@vcp-dev/contracts 0.9.1 → 0.9.2

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.
package/dist/index.d.ts CHANGED
@@ -3290,6 +3290,7 @@ export declare const PrepareVersionPreviewResponseSchema: z.ZodDiscriminatedUnio
3290
3290
  status: z.ZodLiteral<"ready">;
3291
3291
  snapshot_id: z.ZodUUID;
3292
3292
  preview_url: z.ZodString;
3293
+ launch_id: z.ZodOptional<z.ZodString>;
3293
3294
  }, z.core.$strip>, z.ZodObject<{
3294
3295
  status: z.ZodLiteral<"failed">;
3295
3296
  code: z.ZodString;
@@ -3307,6 +3308,7 @@ export declare const InternalPrepareSubsitePreviewResponseSchema: z.ZodDiscrimin
3307
3308
  status: z.ZodLiteral<"ready">;
3308
3309
  snapshot_id: z.ZodUUID;
3309
3310
  preview_url: z.ZodString;
3311
+ launch_id: z.ZodOptional<z.ZodString>;
3310
3312
  }, z.core.$strip>, z.ZodObject<{
3311
3313
  status: z.ZodLiteral<"failed">;
3312
3314
  code: z.ZodString;
@@ -12616,6 +12618,7 @@ export declare const AgentEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
12616
12618
  type: z.ZodLiteral<"preview.ready">;
12617
12619
  url: z.ZodString;
12618
12620
  at: z.ZodString;
12621
+ launch_id: z.ZodOptional<z.ZodString>;
12619
12622
  }, z.core.$strip>, z.ZodObject<{
12620
12623
  type: z.ZodLiteral<"preview.build.started">;
12621
12624
  snapshot_id: z.ZodUUID;
@@ -13489,6 +13492,7 @@ export declare const AgentEventRecordSchema: z.ZodObject<{
13489
13492
  type: z.ZodLiteral<"preview.ready">;
13490
13493
  url: z.ZodString;
13491
13494
  at: z.ZodString;
13495
+ launch_id: z.ZodOptional<z.ZodString>;
13492
13496
  }, z.core.$strip>, z.ZodObject<{
13493
13497
  type: z.ZodLiteral<"preview.build.started">;
13494
13498
  snapshot_id: z.ZodUUID;
@@ -14359,6 +14363,7 @@ export declare const AppendAgentEventRequestSchema: z.ZodObject<{
14359
14363
  type: z.ZodLiteral<"preview.ready">;
14360
14364
  url: z.ZodString;
14361
14365
  at: z.ZodString;
14366
+ launch_id: z.ZodOptional<z.ZodString>;
14362
14367
  }, z.core.$strip>, z.ZodObject<{
14363
14368
  type: z.ZodLiteral<"preview.build.started">;
14364
14369
  snapshot_id: z.ZodUUID;
@@ -15268,6 +15273,7 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
15268
15273
  type: z.ZodLiteral<"preview.ready">;
15269
15274
  url: z.ZodString;
15270
15275
  at: z.ZodString;
15276
+ launch_id: z.ZodOptional<z.ZodString>;
15271
15277
  }, z.core.$strip>, z.ZodObject<{
15272
15278
  type: z.ZodLiteral<"preview.build.started">;
15273
15279
  snapshot_id: z.ZodUUID;
@@ -16178,6 +16184,7 @@ export declare const AppendAgentEventResponseSchema: z.ZodDiscriminatedUnion<[z.
16178
16184
  type: z.ZodLiteral<"preview.ready">;
16179
16185
  url: z.ZodString;
16180
16186
  at: z.ZodString;
16187
+ launch_id: z.ZodOptional<z.ZodString>;
16181
16188
  }, z.core.$strip>, z.ZodObject<{
16182
16189
  type: z.ZodLiteral<"preview.build.started">;
16183
16190
  snapshot_id: z.ZodUUID;
@@ -17056,6 +17063,7 @@ export declare const ListAgentEventsResponseSchema: z.ZodObject<{
17056
17063
  type: z.ZodLiteral<"preview.ready">;
17057
17064
  url: z.ZodString;
17058
17065
  at: z.ZodString;
17066
+ launch_id: z.ZodOptional<z.ZodString>;
17059
17067
  }, z.core.$strip>, z.ZodObject<{
17060
17068
  type: z.ZodLiteral<"preview.build.started">;
17061
17069
  snapshot_id: z.ZodUUID;
@@ -19600,6 +19608,7 @@ export declare const WorkspaceServerMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
19600
19608
  payload: z.ZodObject<{
19601
19609
  reason: z.ZodString;
19602
19610
  next_preview_url: z.ZodOptional<z.ZodString>;
19611
+ launch_id: z.ZodOptional<z.ZodString>;
19603
19612
  }, z.core.$strip>;
19604
19613
  }, z.core.$strip>, z.ZodObject<{
19605
19614
  id: z.ZodString;
@@ -20797,6 +20806,7 @@ export declare const WorkspaceWebSocketMessageSchema: z.ZodUnion<readonly [z.Zod
20797
20806
  payload: z.ZodObject<{
20798
20807
  reason: z.ZodString;
20799
20808
  next_preview_url: z.ZodOptional<z.ZodString>;
20809
+ launch_id: z.ZodOptional<z.ZodString>;
20800
20810
  }, z.core.$strip>;
20801
20811
  }, z.core.$strip>, z.ZodObject<{
20802
20812
  id: z.ZodString;
@@ -21472,6 +21482,7 @@ export declare const SandboxSessionSchema: z.ZodObject<{
21472
21482
  last_snapshot_id: z.ZodNullable<z.ZodUUID>;
21473
21483
  preview_url: z.ZodNullable<z.ZodString>;
21474
21484
  browser_preview_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21485
+ launch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21475
21486
  last_activity_at: z.ZodNullable<z.ZodString>;
21476
21487
  created_at: z.ZodString;
21477
21488
  updated_at: z.ZodString;
@@ -21498,6 +21509,7 @@ export declare const PersistPreviewSessionRequestSchema: z.ZodObject<{
21498
21509
  stopped: "stopped";
21499
21510
  }>;
21500
21511
  preview_url: z.ZodOptional<z.ZodString>;
21512
+ launch_id: z.ZodOptional<z.ZodString>;
21501
21513
  }, z.core.$strip>;
21502
21514
  export type PersistPreviewSessionRequest = z.infer<typeof PersistPreviewSessionRequestSchema>;
21503
21515
  export declare const PersistPreviewSessionResponseSchema: z.ZodObject<{
@@ -21522,6 +21534,7 @@ export declare const PersistPreviewSessionResponseSchema: z.ZodObject<{
21522
21534
  last_snapshot_id: z.ZodNullable<z.ZodUUID>;
21523
21535
  preview_url: z.ZodNullable<z.ZodString>;
21524
21536
  browser_preview_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21537
+ launch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21525
21538
  last_activity_at: z.ZodNullable<z.ZodString>;
21526
21539
  created_at: z.ZodString;
21527
21540
  updated_at: z.ZodString;