@supernova-studio/client 1.69.4 → 1.69.6

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.mjs CHANGED
@@ -9707,11 +9707,12 @@ var DTOFeatureSandbox = z314.object({
9707
9707
  url: z314.string(),
9708
9708
  parentMessageId: Id.optional(),
9709
9709
  currentIterationId: Id,
9710
- featureId: Id,
9710
+ // TODO (jovanblazek): Remove optional once we remove sandboxes from feature room ydoc
9711
+ featureId: Id.optional(),
9711
9712
  expiresAt: z314.string().optional(),
9712
9713
  error: DTOSandboxError.optional()
9713
9714
  });
9714
- var DTOCreateFeatureSandbox = DTOFeatureSandbox;
9715
+ var DTOCreateFeatureSandbox = DTOFeatureSandbox.extend({ featureId: Id });
9715
9716
  var DTOUpdateFeatureSandbox = DTOCreateFeatureSandbox.partial().extend({
9716
9717
  id: z314.string(),
9717
9718
  parentMessageId: Id.nullish(),
@@ -11107,7 +11108,7 @@ var DTOForgeProjectFeatureSandboxUpdated = z336.object({
11107
11108
  });
11108
11109
  var DTOForgeProjectIterationUpdated = z336.object({
11109
11110
  type: z336.literal("ProjectIterationUpdated"),
11110
- data: DTOFeatureIteration
11111
+ data: DTOFeatureIteration.extend({ featureId: Id })
11111
11112
  });
11112
11113
  var DTOForgeProjectRoomEvent = z336.discriminatedUnion("type", [
11113
11114
  DTOForgeProjectMembersCreated,
@@ -11144,7 +11145,8 @@ var DTOSandboxTemplateVersionCreated = z337.object({
11144
11145
  type: z337.literal("SandboxTemplateVersionCreated"),
11145
11146
  data: z337.object({
11146
11147
  templateId: z337.string(),
11147
- version: z337.string()
11148
+ version: z337.string(),
11149
+ designSystemId: z337.string()
11148
11150
  })
11149
11151
  });
11150
11152
  var DTOSandboxTemplateBuildCreated = z337.object({