@supernova-studio/model 0.59.8 → 0.59.9
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 +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -160317,6 +160317,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
160317
160317
|
approvalRequiredForPublishing: boolean;
|
|
160318
160318
|
isDraftFeatureAdopted: boolean;
|
|
160319
160319
|
}>;
|
|
160320
|
+
pageHashes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
160320
160321
|
}, "strip", z.ZodTypeAny, {
|
|
160321
160322
|
groups: {
|
|
160322
160323
|
id: string;
|
|
@@ -160563,6 +160564,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
160563
160564
|
approvalRequiredForPublishing: boolean;
|
|
160564
160565
|
isDraftFeatureAdopted: boolean;
|
|
160565
160566
|
};
|
|
160567
|
+
pageHashes?: Record<string, string> | undefined;
|
|
160566
160568
|
}, {
|
|
160567
160569
|
groups: {
|
|
160568
160570
|
id: string;
|
|
@@ -161845,6 +161847,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
161845
161847
|
approvalRequiredForPublishing: boolean;
|
|
161846
161848
|
isDraftFeatureAdopted: boolean;
|
|
161847
161849
|
};
|
|
161850
|
+
pageHashes?: Record<string, string> | undefined;
|
|
161848
161851
|
}>;
|
|
161849
161852
|
type DesignSystemVersionRoomInitialState = z.infer<typeof DesignSystemVersionRoomInitialState>;
|
|
161850
161853
|
declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -160317,6 +160317,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
160317
160317
|
approvalRequiredForPublishing: boolean;
|
|
160318
160318
|
isDraftFeatureAdopted: boolean;
|
|
160319
160319
|
}>;
|
|
160320
|
+
pageHashes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
160320
160321
|
}, "strip", z.ZodTypeAny, {
|
|
160321
160322
|
groups: {
|
|
160322
160323
|
id: string;
|
|
@@ -160563,6 +160564,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
160563
160564
|
approvalRequiredForPublishing: boolean;
|
|
160564
160565
|
isDraftFeatureAdopted: boolean;
|
|
160565
160566
|
};
|
|
160567
|
+
pageHashes?: Record<string, string> | undefined;
|
|
160566
160568
|
}, {
|
|
160567
160569
|
groups: {
|
|
160568
160570
|
id: string;
|
|
@@ -161845,6 +161847,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
161845
161847
|
approvalRequiredForPublishing: boolean;
|
|
161846
161848
|
isDraftFeatureAdopted: boolean;
|
|
161847
161849
|
};
|
|
161850
|
+
pageHashes?: Record<string, string> | undefined;
|
|
161848
161851
|
}>;
|
|
161849
161852
|
type DesignSystemVersionRoomInitialState = z.infer<typeof DesignSystemVersionRoomInitialState>;
|
|
161850
161853
|
declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -5020,7 +5020,8 @@ var DesignSystemVersionRoomInitialState = _zod.z.object({
|
|
|
5020
5020
|
pageSnapshots: _zod.z.array(DocumentationPageSnapshot),
|
|
5021
5021
|
groupSnapshots: _zod.z.array(ElementGroupSnapshot),
|
|
5022
5022
|
pageApprovals: _zod.z.array(DocumentationPageApproval),
|
|
5023
|
-
internalSettings: DesignSystemVersionRoomInternalSettings
|
|
5023
|
+
internalSettings: DesignSystemVersionRoomInternalSettings,
|
|
5024
|
+
pageHashes: _zod.z.record(_zod.z.string()).optional()
|
|
5024
5025
|
});
|
|
5025
5026
|
var DesignSystemVersionRoomUpdate = _zod.z.object({
|
|
5026
5027
|
pages: _zod.z.array(DocumentationPageV2),
|