@supernova-studio/client 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.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.js
CHANGED
|
@@ -3858,6 +3858,8 @@ var FigmaNodeStructureV2 = _zod.z.object({
|
|
|
3858
3858
|
createdAt: _zod.z.coerce.date(),
|
|
3859
3859
|
updatedAt: _zod.z.coerce.date(),
|
|
3860
3860
|
importState: FigmaNodeStructureStateV2,
|
|
3861
|
+
error: _zod.z.string().optional(),
|
|
3862
|
+
chunkSize: _zod.z.number().optional(),
|
|
3861
3863
|
// TODO Artem: remove after migration
|
|
3862
3864
|
isFromLegacyStorage: _zod.z.boolean()
|
|
3863
3865
|
});
|
|
@@ -4276,7 +4278,9 @@ var PublishedDocPageVisitsEntry = _zod.z.object({
|
|
|
4276
4278
|
pagePersistentId: _zod.z.string(),
|
|
4277
4279
|
locale: _zod.z.string().optional(),
|
|
4278
4280
|
timestamp: _zod.z.coerce.date(),
|
|
4279
|
-
visits: _zod.z.number()
|
|
4281
|
+
visits: _zod.z.number(),
|
|
4282
|
+
userId: _zod.z.string().optional(),
|
|
4283
|
+
anonymousId: _zod.z.string().optional()
|
|
4280
4284
|
});
|
|
4281
4285
|
var PublishedDocPage = _zod.z.object({
|
|
4282
4286
|
id: _zod.z.string(),
|