@supernova-studio/client 1.10.18 → 1.10.19

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
@@ -5588,7 +5588,8 @@ var ForgeProject = z198.object({
5588
5588
  tags: ForgeProjectTag,
5589
5589
  updatedAt: z198.coerce.date().optional(),
5590
5590
  workspaceId: z198.string(),
5591
- accessMode: ForgeProjectAccessMode
5591
+ accessMode: ForgeProjectAccessMode,
5592
+ isArchived: z198.boolean().optional()
5592
5593
  });
5593
5594
  var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
5594
5595
  OAuthProviderNames2["Figma"] = "figma";
@@ -9059,7 +9060,8 @@ var DTOCreateForgeProject = ForgeProject.pick({
9059
9060
  meta: true,
9060
9061
  tags: true,
9061
9062
  accessMode: true,
9062
- fpContextId: true
9063
+ fpContextId: true,
9064
+ isArchived: true
9063
9065
  });
9064
9066
  var DTOUpdateForgeProject = DTOCreateForgeProject.extend({ id: z305.string() });
9065
9067
  var DTOForgeProjectGetResponse = z305.object({ project: DTOForgeProject.nullable() });