@supernova-studio/model 1.86.0 → 1.87.1
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 +9 -5
- package/dist/index.d.ts +9 -5
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6166,7 +6166,8 @@ var DesignSystemVersionRoomInitialState = z182.object({
|
|
|
6166
6166
|
groupSnapshots: z182.array(ElementGroupSnapshot),
|
|
6167
6167
|
pageApprovals: z182.array(DocumentationPageApproval),
|
|
6168
6168
|
internalSettings: DesignSystemVersionRoomInternalSettings,
|
|
6169
|
-
pageHashes: z182.record(z182.string()).optional()
|
|
6169
|
+
pageHashes: z182.record(z182.string()).optional(),
|
|
6170
|
+
storageVersion: z182.literal(1).or(z182.literal(2))
|
|
6170
6171
|
});
|
|
6171
6172
|
var DesignSystemVersionRoomUpdate = z182.object({
|
|
6172
6173
|
pages: z182.array(DocumentationPageV2),
|
|
@@ -6710,10 +6711,12 @@ var FlaggedFeature = z208.enum([
|
|
|
6710
6711
|
"ForgeRestartPlaywright",
|
|
6711
6712
|
"ForgeCopyTemplatePreset",
|
|
6712
6713
|
"ForgeSandboxTimeout",
|
|
6713
|
-
"ForgeFileUploadBatchSize"
|
|
6714
|
+
"ForgeFileUploadBatchSize",
|
|
6715
|
+
"DSVersionRoomYJSStorageVersion"
|
|
6714
6716
|
]);
|
|
6715
6717
|
var FeatureFlagDefaults = {
|
|
6716
|
-
DocumentationIgnoreSnapshotsOnPublish: "route-bff+route-p3"
|
|
6718
|
+
DocumentationIgnoreSnapshotsOnPublish: "route-bff+route-p3",
|
|
6719
|
+
DSVersionRoomYJSStorageVersion: 1
|
|
6717
6720
|
};
|
|
6718
6721
|
var FeatureFlagMap = z208.record(FlaggedFeature, z208.boolean());
|
|
6719
6722
|
var FeatureFlag = z208.object({
|