@supernova-studio/model 1.48.8 → 1.48.9

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 CHANGED
@@ -158450,9 +158450,6 @@ declare const ForgeProjectFile: z$1.ZodObject<{
158450
158450
  }>;
158451
158451
  type ForgeProjectFile = z$1.infer<typeof ForgeProjectFile>;
158452
158452
 
158453
- declare const ForgeProjectAccessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
158454
- type ForgeProjectAccessMode = z$1.infer<typeof ForgeProjectAccessMode>;
158455
-
158456
158453
  declare const ForgeProjectInvitation: z$1.ZodObject<{
158457
158454
  email: z$1.ZodString;
158458
158455
  forgeProjectId: z$1.ZodString;
@@ -159680,6 +159677,9 @@ type ForgeSection = z$1.infer<typeof ForgeSection>;
159680
159677
  declare const ForgeProjectSectionChildType: z$1.ZodEnum<["Artifact", "Feature"]>;
159681
159678
  type ForgeProjectSectionChildType = z$1.infer<typeof ForgeProjectSectionChildType>;
159682
159679
 
159680
+ declare const ForgeProjectAccessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
159681
+ type ForgeProjectAccessMode = z$1.infer<typeof ForgeProjectAccessMode>;
159682
+
159683
159683
  declare const ForgeRelationType: z$1.ZodEnum<["Feature", "Document"]>;
159684
159684
  type ForgeRelationType = z$1.infer<typeof ForgeRelationType>;
159685
159685
  declare const ForgeRelation: z$1.ZodObject<{
package/dist/index.d.ts CHANGED
@@ -158450,9 +158450,6 @@ declare const ForgeProjectFile: z$1.ZodObject<{
158450
158450
  }>;
158451
158451
  type ForgeProjectFile = z$1.infer<typeof ForgeProjectFile>;
158452
158452
 
158453
- declare const ForgeProjectAccessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
158454
- type ForgeProjectAccessMode = z$1.infer<typeof ForgeProjectAccessMode>;
158455
-
158456
158453
  declare const ForgeProjectInvitation: z$1.ZodObject<{
158457
158454
  email: z$1.ZodString;
158458
158455
  forgeProjectId: z$1.ZodString;
@@ -159680,6 +159677,9 @@ type ForgeSection = z$1.infer<typeof ForgeSection>;
159680
159677
  declare const ForgeProjectSectionChildType: z$1.ZodEnum<["Artifact", "Feature"]>;
159681
159678
  type ForgeProjectSectionChildType = z$1.infer<typeof ForgeProjectSectionChildType>;
159682
159679
 
159680
+ declare const ForgeProjectAccessMode: z$1.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
159681
+ type ForgeProjectAccessMode = z$1.infer<typeof ForgeProjectAccessMode>;
159682
+
159683
159683
  declare const ForgeRelationType: z$1.ZodEnum<["Feature", "Document"]>;
159684
159684
  type ForgeRelationType = z$1.infer<typeof ForgeRelationType>;
159685
159685
  declare const ForgeRelation: z$1.ZodObject<{
package/dist/index.js CHANGED
@@ -5404,10 +5404,6 @@ var ForgeProjectFile = _zod.z.object({
5404
5404
  checksum: _zod.z.string()
5405
5405
  });
5406
5406
 
5407
- // src/forge/project.ts
5408
-
5409
- var ForgeProjectAccessMode = _zod.z.enum(["InviteOnly", "Open", "Unlisted"]);
5410
-
5411
5407
  // src/forge/project-invitation.ts
5412
5408
 
5413
5409
 
@@ -5450,6 +5446,10 @@ var ForgeProjectIteration = _zod.z.object({
5450
5446
  mergeMeta: ForgeProjectIterationMergeMeta.optional()
5451
5447
  });
5452
5448
 
5449
+ // src/forge/project.ts
5450
+
5451
+ var ForgeProjectAccessMode = _zod.z.enum(["InviteOnly", "Open", "Unlisted"]);
5452
+
5453
5453
  // src/forge/relation.ts
5454
5454
 
5455
5455
  var ForgeRelationType = _zod.z.enum(["Feature", "Document"]);