@supernova-studio/model 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 +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6350,6 +6350,7 @@ var ForgeProjectMembership = z196.object({
|
|
|
6350
6350
|
// src/forge/project.ts
|
|
6351
6351
|
import { z as z197 } from "zod";
|
|
6352
6352
|
var ForgeProjectTag = z197.array(z197.string()).default([]);
|
|
6353
|
+
var ForgeProjectAccessMode = z197.enum(["InviteOnly", "Open"]);
|
|
6353
6354
|
var ForgeProject = z197.object({
|
|
6354
6355
|
createdAt: z197.coerce.date(),
|
|
6355
6356
|
createdByUserId: z197.string().optional(),
|
|
@@ -6360,7 +6361,8 @@ var ForgeProject = z197.object({
|
|
|
6360
6361
|
name: z197.string(),
|
|
6361
6362
|
tags: ForgeProjectTag,
|
|
6362
6363
|
updatedAt: z197.coerce.date().optional(),
|
|
6363
|
-
workspaceId: z197.string()
|
|
6364
|
+
workspaceId: z197.string(),
|
|
6365
|
+
accessMode: ForgeProjectAccessMode
|
|
6364
6366
|
});
|
|
6365
6367
|
|
|
6366
6368
|
// src/integrations/external-oauth-request.ts
|
|
@@ -6848,6 +6850,7 @@ export {
|
|
|
6848
6850
|
ForgeMeta,
|
|
6849
6851
|
ForgeParticipant,
|
|
6850
6852
|
ForgeProject,
|
|
6853
|
+
ForgeProjectAccessMode,
|
|
6851
6854
|
ForgeProjectContext,
|
|
6852
6855
|
ForgeProjectContextDependency,
|
|
6853
6856
|
ForgeProjectContextTailwindConfig,
|