@supernova-studio/client 1.69.7 → 1.71.1

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
@@ -3719,15 +3719,20 @@ var Collection = z99.object({
3719
3719
  });
3720
3720
  var CollectionImportModelInput = z100.object({
3721
3721
  id: z100.string(),
3722
+ legacyId: z100.string(),
3722
3723
  name: z100.string(),
3723
3724
  parentId: z100.string().optional(),
3725
+ parentLegacyId: z100.string().optional(),
3724
3726
  parentPersistentId: z100.string().optional()
3725
3727
  });
3726
3728
  var CollectionImportModel = z100.object({
3727
3729
  id: z100.string(),
3730
+ legacyId: z100.string(),
3731
+ parentId: z100.string().optional(),
3732
+ parentLegacyId: z100.string().optional(),
3728
3733
  name: z100.string(),
3729
- parentPersistentId: z100.string().optional(),
3730
- origin: CollectionOrigin
3734
+ origin: CollectionOrigin,
3735
+ parentPersistentId: z100.string().optional()
3731
3736
  });
3732
3737
  var ImportModelBase = z101.object({
3733
3738
  id: z101.string(),
@@ -3831,20 +3836,22 @@ var ThemeOverrideImportModelInput = ThemeOverrideImportModelBase.and(
3831
3836
  })
3832
3837
  );
3833
3838
  var ThemeImportModel = z106.object({
3839
+ id: z106.string(),
3840
+ parentId: z106.string().optional(),
3834
3841
  meta: ObjectMeta,
3835
3842
  brandPersistentId: z106.string(),
3836
3843
  originSource: ThemeOriginSource,
3837
3844
  overrides: z106.array(ThemeOverrideImportModel),
3838
3845
  sortOrder: z106.number(),
3839
- collectionIds: z106.array(z106.string()).optional(),
3840
- parentPersistentId: z106.string().optional()
3846
+ collectionIds: z106.array(z106.string()).optional()
3841
3847
  });
3842
3848
  var ThemeImportModelInput = z106.object({
3849
+ id: z106.string(),
3850
+ parentId: z106.string().optional(),
3843
3851
  meta: ObjectMeta,
3844
3852
  originObjects: z106.array(ThemeOriginObject),
3845
3853
  overrides: z106.array(ThemeOverrideImportModelInput),
3846
- collectionIds: z106.array(z106.string()).optional(),
3847
- parentPersistentId: z106.string().optional()
3854
+ collectionIds: z106.array(z106.string()).optional()
3848
3855
  });
3849
3856
  var ThemeUpdateImportModel = z106.object({
3850
3857
  themePersistentId: z106.string(),
@@ -4836,6 +4843,7 @@ var ForgeProjectInvitation = z155.object({
4836
4843
  forgeProjectId: z155.string(),
4837
4844
  workspaceInvitationId: z155.string(),
4838
4845
  role: ForgeProjectRole,
4846
+ effectiveRole: ForgeProjectRole,
4839
4847
  createdAt: z155.coerce.date(),
4840
4848
  updatedAt: z155.coerce.date(),
4841
4849
  createdById: z155.string()