@supernova-studio/model 1.38.1 → 1.39.1
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 +26 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- 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
|
|
@@ -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
|