@supernova-studio/model 0.59.11 → 0.59.13
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/liveblocks/rooms/design-system-version-room.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -167108,6 +167108,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
167108
167108
|
updatedByUserId: string;
|
|
167109
167109
|
}>, "many">;
|
|
167110
167110
|
pageApprovalIdsToDelete: z.ZodArray<z.ZodString, "many">;
|
|
167111
|
+
executedTransactionIds: z.ZodArray<z.ZodString, "many">;
|
|
167111
167112
|
}, "strip", z.ZodTypeAny, {
|
|
167112
167113
|
groups: {
|
|
167113
167114
|
id: string;
|
|
@@ -167354,6 +167355,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
167354
167355
|
groupSnapshotIdsToDelete: string[];
|
|
167355
167356
|
pageHashesToUpdate: Record<string, string>;
|
|
167356
167357
|
pageApprovalIdsToDelete: string[];
|
|
167358
|
+
executedTransactionIds: string[];
|
|
167357
167359
|
}, {
|
|
167358
167360
|
groups: {
|
|
167359
167361
|
id: string;
|
|
@@ -168636,6 +168638,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
168636
168638
|
groupSnapshotIdsToDelete: string[];
|
|
168637
168639
|
pageHashesToUpdate: Record<string, string>;
|
|
168638
168640
|
pageApprovalIdsToDelete: string[];
|
|
168641
|
+
executedTransactionIds: string[];
|
|
168639
168642
|
}>;
|
|
168640
168643
|
type DesignSystemVersionRoomUpdate = z.infer<typeof DesignSystemVersionRoomUpdate>;
|
|
168641
168644
|
|
package/dist/index.d.ts
CHANGED
|
@@ -167108,6 +167108,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
167108
167108
|
updatedByUserId: string;
|
|
167109
167109
|
}>, "many">;
|
|
167110
167110
|
pageApprovalIdsToDelete: z.ZodArray<z.ZodString, "many">;
|
|
167111
|
+
executedTransactionIds: z.ZodArray<z.ZodString, "many">;
|
|
167111
167112
|
}, "strip", z.ZodTypeAny, {
|
|
167112
167113
|
groups: {
|
|
167113
167114
|
id: string;
|
|
@@ -167354,6 +167355,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
167354
167355
|
groupSnapshotIdsToDelete: string[];
|
|
167355
167356
|
pageHashesToUpdate: Record<string, string>;
|
|
167356
167357
|
pageApprovalIdsToDelete: string[];
|
|
167358
|
+
executedTransactionIds: string[];
|
|
167357
167359
|
}, {
|
|
167358
167360
|
groups: {
|
|
167359
167361
|
id: string;
|
|
@@ -168636,6 +168638,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
168636
168638
|
groupSnapshotIdsToDelete: string[];
|
|
168637
168639
|
pageHashesToUpdate: Record<string, string>;
|
|
168638
168640
|
pageApprovalIdsToDelete: string[];
|
|
168641
|
+
executedTransactionIds: string[];
|
|
168639
168642
|
}>;
|
|
168640
168643
|
type DesignSystemVersionRoomUpdate = z.infer<typeof DesignSystemVersionRoomUpdate>;
|
|
168641
168644
|
|
package/dist/index.js
CHANGED
|
@@ -5045,7 +5045,8 @@ var DesignSystemVersionRoomUpdate = _zod.z.object({
|
|
|
5045
5045
|
groupSnapshotIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
5046
5046
|
pageHashesToUpdate: _zod.z.record(_zod.z.string(), _zod.z.string()),
|
|
5047
5047
|
pageApprovals: _zod.z.array(DocumentationPageApproval),
|
|
5048
|
-
pageApprovalIdsToDelete: _zod.z.array(_zod.z.string())
|
|
5048
|
+
pageApprovalIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
5049
|
+
executedTransactionIds: _zod.z.array(_zod.z.string())
|
|
5049
5050
|
});
|
|
5050
5051
|
|
|
5051
5052
|
// src/liveblocks/rooms/documentation-page-room.ts
|