@supernova-studio/model 1.4.14 → 1.4.16
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 +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4389,6 +4389,8 @@ var FigmaNodeStructureV2 = z122.object({
|
|
|
4389
4389
|
createdAt: z122.coerce.date(),
|
|
4390
4390
|
updatedAt: z122.coerce.date(),
|
|
4391
4391
|
importState: FigmaNodeStructureStateV2,
|
|
4392
|
+
error: z122.string().optional(),
|
|
4393
|
+
chunkSize: z122.number().optional(),
|
|
4392
4394
|
// TODO Artem: remove after migration
|
|
4393
4395
|
isFromLegacyStorage: z122.boolean()
|
|
4394
4396
|
});
|
|
@@ -4918,7 +4920,9 @@ var PublishedDocPageVisitsEntry = z149.object({
|
|
|
4918
4920
|
pagePersistentId: z149.string(),
|
|
4919
4921
|
locale: z149.string().optional(),
|
|
4920
4922
|
timestamp: z149.coerce.date(),
|
|
4921
|
-
visits: z149.number()
|
|
4923
|
+
visits: z149.number(),
|
|
4924
|
+
userId: z149.string().optional(),
|
|
4925
|
+
anonymousId: z149.string().optional()
|
|
4922
4926
|
});
|
|
4923
4927
|
|
|
4924
4928
|
// src/dsm/published-doc-page.ts
|