@milaboratories/pl-model-middle-layer 1.10.2 → 1.10.3
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.
|
@@ -140,7 +140,7 @@ export type BlockStateOverview = {
|
|
|
140
140
|
/** Current navigation state of the block */
|
|
141
141
|
navigationState: NavigationState;
|
|
142
142
|
/**
|
|
143
|
-
* Storage debug view as JSON string (e.g., '{"dataVersion":
|
|
143
|
+
* Storage debug view as JSON string (e.g., '{"dataVersion": "v1"}').
|
|
144
144
|
* Used by developer tools to display block state info.
|
|
145
145
|
* Undefined when block-pack is not yet materialized or for non-V2 blocks.
|
|
146
146
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pl-model-middle-layer",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.3",
|
|
4
4
|
"description": "Common model between middle layer and non-block UI code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"remeda": "^2.28.0",
|
|
21
21
|
"zod": "~3.23.8",
|
|
22
22
|
"utility-types": "^3.11.0",
|
|
23
|
-
"@platforma-sdk/model": "1.53.
|
|
23
|
+
"@platforma-sdk/model": "1.53.1",
|
|
24
24
|
"@milaboratories/pl-model-common": "1.24.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"eslint": "^9.25.1",
|
|
28
28
|
"typescript": "~5.6.3",
|
|
29
29
|
"@types/node": "~24.5.2",
|
|
30
|
+
"@platforma-sdk/eslint-config": "1.2.0",
|
|
30
31
|
"@milaboratories/build-configs": "1.4.0",
|
|
31
32
|
"@milaboratories/ts-builder": "1.2.4",
|
|
32
|
-
"@milaboratories/ts-configs": "1.2.0"
|
|
33
|
-
"@platforma-sdk/eslint-config": "1.2.0"
|
|
33
|
+
"@milaboratories/ts-configs": "1.2.0"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"type-check": "ts-builder types --target node",
|
package/src/project_overview.ts
CHANGED
|
@@ -173,7 +173,7 @@ export type BlockStateOverview = {
|
|
|
173
173
|
navigationState: NavigationState;
|
|
174
174
|
|
|
175
175
|
/**
|
|
176
|
-
* Storage debug view as JSON string (e.g., '{"dataVersion":
|
|
176
|
+
* Storage debug view as JSON string (e.g., '{"dataVersion": "v1"}').
|
|
177
177
|
* Used by developer tools to display block state info.
|
|
178
178
|
* Undefined when block-pack is not yet materialized or for non-V2 blocks.
|
|
179
179
|
*/
|