@supernova-studio/client 1.14.1 → 1.14.3

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
@@ -5629,7 +5629,8 @@ var ForgeProject = z204.object({
5629
5629
  updatedAt: z204.coerce.date().optional(),
5630
5630
  workspaceId: z204.string(),
5631
5631
  accessMode: ForgeProjectAccessMode,
5632
- isArchived: z204.boolean().optional()
5632
+ isArchived: z204.boolean().optional(),
5633
+ emoji: z204.string().optional()
5633
5634
  });
5634
5635
  var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
5635
5636
  OAuthProviderNames2["Figma"] = "figma";
@@ -9156,7 +9157,7 @@ var DTOCreateForgeProjectContext = DTOForgeProjectContext.pick({
9156
9157
  tailwindConfig: true,
9157
9158
  styling: true
9158
9159
  }).extend({ npmProxySettings: DTONpmRegistryConfig });
9159
- var DTOUpdateForgeProjectContext = DTOCreateForgeProjectContext.partial();
9160
+ var DTOUpdateForgeProjectContext = DTOCreateForgeProjectContext.partial().extend({ id: z313.string() });
9160
9161
  var DTOForgeProjectContextGetResponse = z313.object({ context: DTOForgeProjectContext });
9161
9162
  var DTOForgeProjectContextListResponse = z313.object({ contexts: z313.array(DTOForgeProjectContext) });
9162
9163
  var DTOForgeProjectContextCreateResponse = z313.object({ context: DTOForgeProjectContext });
@@ -9289,7 +9290,8 @@ var DTOCreateForgeProject = ForgeProject.pick({
9289
9290
  tags: true,
9290
9291
  accessMode: true,
9291
9292
  fpContextId: true,
9292
- isArchived: true
9293
+ isArchived: true,
9294
+ emoji: true
9293
9295
  }).extend({ membersToInvite: DTOCreateForgeProjectInvitation.array().min(1).optional() });
9294
9296
  var DTOUpdateForgeProject = DTOCreateForgeProject.omit({ membersToInvite: true }).partial().extend({
9295
9297
  id: z318.string(),