@supernova-studio/client 1.14.2 → 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.d.mts +39 -1
- package/dist/index.d.ts +39 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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";
|
|
@@ -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(),
|