@supernova-studio/model 0.47.45 → 0.47.46
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 +6236 -294
- package/dist/index.d.ts +6236 -294
- 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/src/liveblocks/rooms/design-system-version-room.ts +7 -0
package/dist/index.js
CHANGED
|
@@ -3243,7 +3243,11 @@ var DesignSystemVersionRoomUpdate = _zod.z.object({
|
|
|
3243
3243
|
pages: _zod.z.array(DocumentationPageV2),
|
|
3244
3244
|
groups: _zod.z.array(ElementGroup),
|
|
3245
3245
|
deletedPageIds: _zod.z.array(_zod.z.string()),
|
|
3246
|
-
deletedGroupIds: _zod.z.array(_zod.z.string())
|
|
3246
|
+
deletedGroupIds: _zod.z.array(_zod.z.string()),
|
|
3247
|
+
publishedPageSnapshots: _zod.z.array(DocumentationPageSnapshot),
|
|
3248
|
+
publishedGroupSnapshots: _zod.z.array(ElementGroupSnapshot),
|
|
3249
|
+
deletedPageSnapshots: _zod.z.array(DocumentationPageSnapshot),
|
|
3250
|
+
deletedGroupSnapshots: _zod.z.array(ElementGroupSnapshot)
|
|
3247
3251
|
});
|
|
3248
3252
|
|
|
3249
3253
|
// src/liveblocks/rooms/documentation-page-room.ts
|