@supernova-studio/model 1.42.6 → 1.42.8
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 -39
- package/dist/index.d.ts +39 -39
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -25
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5882,48 +5882,48 @@ var ForgeIterationMessage = z172.object({
|
|
|
5882
5882
|
text: z172.string()
|
|
5883
5883
|
});
|
|
5884
5884
|
|
|
5885
|
-
// src/forge/project-artifact.ts
|
|
5886
|
-
import { z as z174 } from "zod";
|
|
5887
|
-
|
|
5888
|
-
// src/forge/project-section.ts
|
|
5885
|
+
// src/forge/project-artifact-content.ts
|
|
5889
5886
|
import { z as z173 } from "zod";
|
|
5890
|
-
var
|
|
5891
|
-
var
|
|
5892
|
-
|
|
5893
|
-
|
|
5887
|
+
var ForgeProjectArtifactContentData = DocumentationPageContentData;
|
|
5888
|
+
var ForgeProjectArtifactContent = z173.object({
|
|
5889
|
+
id: z173.string(),
|
|
5890
|
+
artifactId: z173.string(),
|
|
5894
5891
|
projectId: z173.string(),
|
|
5895
|
-
name: z173.string(),
|
|
5896
|
-
sortOrder: SortOrder.default(0),
|
|
5897
5892
|
createdAt: z173.coerce.date(),
|
|
5898
5893
|
updatedAt: z173.coerce.date(),
|
|
5899
|
-
|
|
5894
|
+
data: ForgeProjectArtifactContentData
|
|
5900
5895
|
});
|
|
5901
5896
|
|
|
5902
5897
|
// src/forge/project-artifact.ts
|
|
5903
|
-
|
|
5898
|
+
import { z as z175 } from "zod";
|
|
5899
|
+
|
|
5900
|
+
// src/forge/project-section.ts
|
|
5901
|
+
import { z as z174 } from "zod";
|
|
5902
|
+
var ForgeProjectSectionChildType = z174.enum(["Artifact", "Feature"]);
|
|
5903
|
+
var SortOrder = z174.number().int();
|
|
5904
|
+
var ForgeSection = z174.object({
|
|
5904
5905
|
id: Id,
|
|
5905
5906
|
projectId: z174.string(),
|
|
5906
|
-
|
|
5907
|
-
title: z174.string(),
|
|
5908
|
-
previewUrl: z174.string().nullish(),
|
|
5907
|
+
name: z174.string(),
|
|
5909
5908
|
sortOrder: SortOrder.default(0),
|
|
5910
5909
|
createdAt: z174.coerce.date(),
|
|
5911
5910
|
updatedAt: z174.coerce.date(),
|
|
5912
|
-
|
|
5913
|
-
sectionId: Id.optional(),
|
|
5914
|
-
threadId: z174.string().optional()
|
|
5911
|
+
childType: ForgeProjectSectionChildType
|
|
5915
5912
|
});
|
|
5916
5913
|
|
|
5917
|
-
// src/forge/project-artifact
|
|
5918
|
-
|
|
5919
|
-
|
|
5920
|
-
var ForgeProjectArtifactContent = z175.object({
|
|
5921
|
-
id: z175.string(),
|
|
5922
|
-
artifactId: z175.string(),
|
|
5914
|
+
// src/forge/project-artifact.ts
|
|
5915
|
+
var ForgeProjectArtifact = z175.object({
|
|
5916
|
+
id: Id,
|
|
5923
5917
|
projectId: z175.string(),
|
|
5918
|
+
iterationId: z175.string().nullish(),
|
|
5919
|
+
title: z175.string(),
|
|
5920
|
+
previewUrl: z175.string().nullish(),
|
|
5921
|
+
sortOrder: SortOrder.default(0),
|
|
5924
5922
|
createdAt: z175.coerce.date(),
|
|
5925
5923
|
updatedAt: z175.coerce.date(),
|
|
5926
|
-
|
|
5924
|
+
createdByUserId: z175.string(),
|
|
5925
|
+
sectionId: Id.optional(),
|
|
5926
|
+
threadId: z175.string().optional()
|
|
5927
5927
|
});
|
|
5928
5928
|
|
|
5929
5929
|
// src/forge/project-feature.ts
|