@supernova-studio/client 1.10.12 → 1.10.13
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 -2
- package/dist/index.d.ts +39 -2
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5566,6 +5566,7 @@ var ForgeProjectMembership = z196.object({
|
|
|
5566
5566
|
role: ForgeProjectRole
|
|
5567
5567
|
});
|
|
5568
5568
|
var ForgeProjectTag = z197.array(z197.string()).default([]);
|
|
5569
|
+
var ForgeProjectAccessMode = z197.enum(["InviteOnly", "Open"]);
|
|
5569
5570
|
var ForgeProject = z197.object({
|
|
5570
5571
|
createdAt: z197.coerce.date(),
|
|
5571
5572
|
createdByUserId: z197.string().optional(),
|
|
@@ -5576,7 +5577,8 @@ var ForgeProject = z197.object({
|
|
|
5576
5577
|
name: z197.string(),
|
|
5577
5578
|
tags: ForgeProjectTag,
|
|
5578
5579
|
updatedAt: z197.coerce.date().optional(),
|
|
5579
|
-
workspaceId: z197.string()
|
|
5580
|
+
workspaceId: z197.string(),
|
|
5581
|
+
accessMode: ForgeProjectAccessMode
|
|
5580
5582
|
});
|
|
5581
5583
|
var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
|
|
5582
5584
|
OAuthProviderNames2["Figma"] = "figma";
|
|
@@ -9005,6 +9007,8 @@ var DTOCreateForgeProject = ForgeProject.pick({
|
|
|
9005
9007
|
instruction: true,
|
|
9006
9008
|
name: true,
|
|
9007
9009
|
meta: true,
|
|
9010
|
+
tags: true,
|
|
9011
|
+
accessMode: true,
|
|
9008
9012
|
fpContextId: true
|
|
9009
9013
|
});
|
|
9010
9014
|
var DTOUpdateForgeProject = DTOCreateForgeProject.extend({ id: z302.string() });
|