@supernova-studio/model 1.38.0 → 1.39.0
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 +27 -1
- package/dist/index.d.ts +27 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5923,7 +5923,8 @@ var ForgeProjectArtifact = z176.object({
|
|
|
5923
5923
|
createdAt: z176.coerce.date(),
|
|
5924
5924
|
updatedAt: z176.coerce.date(),
|
|
5925
5925
|
createdByUserId: z176.string(),
|
|
5926
|
-
sectionId: Id.optional()
|
|
5926
|
+
sectionId: Id.optional(),
|
|
5927
|
+
threadId: z176.string().optional()
|
|
5927
5928
|
});
|
|
5928
5929
|
|
|
5929
5930
|
// src/forge/project-context.ts
|
|
@@ -5938,7 +5939,6 @@ var ForgeProjectContextTailwindConfig = z177.object({
|
|
|
5938
5939
|
version: z177.string()
|
|
5939
5940
|
});
|
|
5940
5941
|
var ForgeProjectContext = z177.object({
|
|
5941
|
-
createdAt: z177.coerce.date(),
|
|
5942
5942
|
definition: z177.string(),
|
|
5943
5943
|
dependencies: z177.array(ForgeProjectContextDependency),
|
|
5944
5944
|
designSystemId: z177.string(),
|
|
@@ -5949,6 +5949,7 @@ var ForgeProjectContext = z177.object({
|
|
|
5949
5949
|
platform: z177.enum(["React", "Vue", "Angular"]),
|
|
5950
5950
|
styling: z177.enum(["CSS", "Tailwind"]),
|
|
5951
5951
|
tailwindConfig: ForgeProjectContextTailwindConfig.optional(),
|
|
5952
|
+
createdAt: z177.coerce.date(),
|
|
5952
5953
|
updatedAt: z177.coerce.date(),
|
|
5953
5954
|
workspaceId: z177.string()
|
|
5954
5955
|
});
|
|
@@ -5970,7 +5971,8 @@ var ProjectFeature = z178.object({
|
|
|
5970
5971
|
updatedAt: z178.coerce.date().optional(),
|
|
5971
5972
|
numberOfIterations: z178.number().min(0).default(0),
|
|
5972
5973
|
numberOfBookmarkedIterations: z178.number().min(0).default(0),
|
|
5973
|
-
lastReplyTimestamp: z178.coerce.date().optional()
|
|
5974
|
+
lastReplyTimestamp: z178.coerce.date().optional(),
|
|
5975
|
+
threadId: z178.string().optional()
|
|
5974
5976
|
});
|
|
5975
5977
|
|
|
5976
5978
|
// src/forge/project-figma-node.ts
|