@supernova-studio/model 0.47.56 → 0.47.58
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 +47 -2998
- package/dist/index.d.ts +47 -2998
- package/dist/index.js +7 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/element-snapshots/base.ts +1 -0
- package/src/liveblocks/rooms/design-system-version-room.ts +6 -8
package/dist/index.js
CHANGED
|
@@ -2826,6 +2826,7 @@ var DocumentationCommentThread = _zod.z.object({
|
|
|
2826
2826
|
var DesignElementSnapshotReason = _zod.z.enum(["Publish", "Deletion"]);
|
|
2827
2827
|
var DesignElementSnapshotBase = _zod.z.object({
|
|
2828
2828
|
id: _zod.z.string(),
|
|
2829
|
+
persistentId: _zod.z.string(),
|
|
2829
2830
|
designSystemVersionId: _zod.z.string(),
|
|
2830
2831
|
createdAt: _zod.z.coerce.date(),
|
|
2831
2832
|
updatedAt: _zod.z.coerce.date(),
|
|
@@ -3282,12 +3283,12 @@ var DesignSystemVersionRoomInitialState = _zod.z.object({
|
|
|
3282
3283
|
var DesignSystemVersionRoomUpdate = _zod.z.object({
|
|
3283
3284
|
pages: _zod.z.array(DocumentationPageV2),
|
|
3284
3285
|
groups: _zod.z.array(ElementGroup),
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3286
|
+
pageIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
3287
|
+
groupIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
3288
|
+
pageSnapshots: _zod.z.array(DocumentationPageSnapshot),
|
|
3289
|
+
groupSnapshots: _zod.z.array(ElementGroupSnapshot),
|
|
3290
|
+
pageSnapshotIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
3291
|
+
groupSnapshotIdsToDelete: _zod.z.array(_zod.z.string())
|
|
3291
3292
|
});
|
|
3292
3293
|
|
|
3293
3294
|
// src/liveblocks/rooms/documentation-page-room.ts
|