@supernova-studio/model 1.10.11 → 1.10.12
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 +14 -6
- package/dist/index.d.ts +14 -6
- package/dist/index.js +7 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6338,11 +6338,13 @@ var ForgeProjectIteration = z195.object({
|
|
|
6338
6338
|
|
|
6339
6339
|
// src/forge/project-membership.ts
|
|
6340
6340
|
import { z as z196 } from "zod";
|
|
6341
|
-
var
|
|
6341
|
+
var ForgeProjectRole = z196.enum(["Viewer", "Editor", "Admin"]);
|
|
6342
|
+
var ForgeProjectMembership = z196.object({
|
|
6342
6343
|
userId: z196.string(),
|
|
6343
6344
|
fpId: z196.string(),
|
|
6344
|
-
|
|
6345
|
-
|
|
6345
|
+
workspaceMembershipId: z196.string(),
|
|
6346
|
+
workspaceRole: WorkspaceRoleSchema,
|
|
6347
|
+
role: ForgeProjectRole
|
|
6346
6348
|
});
|
|
6347
6349
|
|
|
6348
6350
|
// src/forge/project.ts
|
|
@@ -6851,7 +6853,8 @@ export {
|
|
|
6851
6853
|
ForgeProjectContextTailwindConfig,
|
|
6852
6854
|
ForgeProjectIteration,
|
|
6853
6855
|
ForgeProjectIterationMergeMeta,
|
|
6854
|
-
|
|
6856
|
+
ForgeProjectMembership,
|
|
6857
|
+
ForgeProjectRole,
|
|
6855
6858
|
ForgeProjectTag,
|
|
6856
6859
|
ForgeSpecArtifact,
|
|
6857
6860
|
GitBranch,
|