@milaboratories/pl-model-middle-layer 1.7.52 → 1.8.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/author_marker.d.ts +2 -7
- package/dist/author_marker.d.ts.map +1 -1
- package/dist/block_state.d.ts +1 -6
- package/dist/block_state.d.ts.map +1 -1
- package/dist/pframe/internal_api/api_factory.d.ts +15 -0
- package/dist/pframe/internal_api/api_factory.d.ts.map +1 -1
- package/dist/pframe/internal_api/pframe.d.ts +3 -1
- package/dist/pframe/internal_api/pframe.d.ts.map +1 -1
- package/dist/project_overview.d.ts +1 -2
- package/dist/project_overview.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/author_marker.ts +3 -8
- package/src/block_state.ts +1 -6
- package/src/pframe/internal_api/api_factory.ts +23 -0
- package/src/pframe/internal_api/pframe.ts +3 -1
- package/src/project_overview.ts +1 -2
package/dist/author_marker.d.ts
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
|
+
import { AuthorMarker } from '@milaboratories/pl-model-common';
|
|
1
2
|
/** Structure to help resolve conflicts if multiple participants writes to
|
|
2
3
|
* the same state */
|
|
3
|
-
export
|
|
4
|
-
/** Unique identifier of client or even a specific window that sets this
|
|
5
|
-
* particular state */
|
|
6
|
-
authorId: string;
|
|
7
|
-
/** Sequential version of the state local to the author */
|
|
8
|
-
localVersion: number;
|
|
9
|
-
}
|
|
4
|
+
export type { AuthorMarker };
|
|
10
5
|
//# sourceMappingURL=author_marker.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"author_marker.d.ts","sourceRoot":"","sources":["../src/author_marker.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"author_marker.d.ts","sourceRoot":"","sources":["../src/author_marker.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAEpE;oBACoB;AACpB,YAAY,EAAE,YAAY,EAAE,CAAC"}
|
package/dist/block_state.d.ts
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
import { BlockOutputsBase, BlockState } from '@milaboratories/pl-model-common';
|
|
2
|
-
import { AuthorMarker } from './author_marker';
|
|
3
2
|
import { Optional } from 'utility-types';
|
|
4
|
-
export type BlockStateInternal<Args = unknown, Outputs extends BlockOutputsBase = BlockOutputsBase, UiState = unknown, Href extends `/${string}` = `/${string}`> = Optional<Readonly<BlockState<Args, Outputs, UiState, Href>>, 'outputs'
|
|
5
|
-
/** Author marker for Args and UI State. Absence of author marker, means that
|
|
6
|
-
* last modifier of the state provided no author marker. */
|
|
7
|
-
readonly author?: AuthorMarker;
|
|
8
|
-
};
|
|
3
|
+
export type BlockStateInternal<Args = unknown, Outputs extends BlockOutputsBase = BlockOutputsBase, UiState = unknown, Href extends `/${string}` = `/${string}`> = Optional<Readonly<BlockState<Args, Outputs, UiState, Href>>, 'outputs'>;
|
|
9
4
|
//# sourceMappingURL=block_state.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block_state.d.ts","sourceRoot":"","sources":["../src/block_state.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"block_state.d.ts","sourceRoot":"","sources":["../src/block_state.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,MAAM,MAAM,kBAAkB,CAC5B,IAAI,GAAG,OAAO,EACd,OAAO,SAAS,gBAAgB,GAAG,gBAAgB,EACnD,OAAO,GAAG,OAAO,EACjB,IAAI,SAAS,IAAI,MAAM,EAAE,GAAG,IAAI,MAAM,EAAE,IACtC,QAAQ,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC"}
|
|
@@ -28,4 +28,19 @@ export interface PFrameFactoryAPI {
|
|
|
28
28
|
* any interactions with disposed PFrame will result in exception */
|
|
29
29
|
dispose(): void;
|
|
30
30
|
}
|
|
31
|
+
/** API exposed by PFrames library allowing to create and provide data for
|
|
32
|
+
* PFrame objects */
|
|
33
|
+
export interface PFrameFactoryAPIV2 {
|
|
34
|
+
/** Associates data source with this PFrame */
|
|
35
|
+
setDataSource(dataSource: PFrameDataSource): void;
|
|
36
|
+
/** Adds PColumn without spec */
|
|
37
|
+
addColumnSpec(columnId: PObjectId, columnSpec: PColumnSpec): void;
|
|
38
|
+
/** Associates data info with cpecific column */
|
|
39
|
+
setColumnData(columnId: PObjectId, dataInfo: DataInfo<PFrameBlobId>, options?: {
|
|
40
|
+
signal?: AbortSignal;
|
|
41
|
+
}): Promise<void>;
|
|
42
|
+
/** Releases all the data previously added to PFrame using methods above,
|
|
43
|
+
* any interactions with disposed PFrame will result in exception */
|
|
44
|
+
dispose(): void;
|
|
45
|
+
}
|
|
31
46
|
//# sourceMappingURL=api_factory.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api_factory.d.ts","sourceRoot":"","sources":["../../../src/pframe/internal_api/api_factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAEnF,wFAAwF;AACxF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAGlC;+EAC+E;AAC/E,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC;AAE9B,gGAAgG;AAChG,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;;OAIG;IACH,WAAW,CAAC,OAAO,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpD,qEAAqE;IACrE,kBAAkB,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;CAC/D,CAAC;AAEF;oBACoB;AACpB,MAAM,WAAW,gBAAgB;IAC/B,8CAA8C;IAC9C,aAAa,CAAC,UAAU,EAAE,gBAAgB,GAAG,IAAI,CAAC;IAElD,gCAAgC;IAChC,aAAa,CAAC,QAAQ,EAAE,SAAS,EAAE,UAAU,EAAE,WAAW,GAAG,IAAI,CAAC;IAElE,gDAAgD;IAChD,aAAa,CAAC,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC;IAE3E;wEACoE;IACpE,OAAO,IAAI,IAAI,CAAC;CACjB"}
|
|
1
|
+
{"version":3,"file":"api_factory.d.ts","sourceRoot":"","sources":["../../../src/pframe/internal_api/api_factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAEnF,wFAAwF;AACxF,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAGlC;+EAC+E;AAC/E,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC;AAE9B,gGAAgG;AAChG,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;;OAIG;IACH,WAAW,CAAC,OAAO,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpD,qEAAqE;IACrE,kBAAkB,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;CAC/D,CAAC;AAEF;oBACoB;AACpB,MAAM,WAAW,gBAAgB;IAC/B,8CAA8C;IAC9C,aAAa,CAAC,UAAU,EAAE,gBAAgB,GAAG,IAAI,CAAC;IAElD,gCAAgC;IAChC,aAAa,CAAC,QAAQ,EAAE,SAAS,EAAE,UAAU,EAAE,WAAW,GAAG,IAAI,CAAC;IAElE,gDAAgD;IAChD,aAAa,CAAC,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC;IAE3E;wEACoE;IACpE,OAAO,IAAI,IAAI,CAAC;CACjB;AAED;oBACoB;AACpB,MAAM,WAAW,kBAAkB;IACjC,8CAA8C;IAC9C,aAAa,CAAC,UAAU,EAAE,gBAAgB,GAAG,IAAI,CAAC;IAElD,gCAAgC;IAChC,aAAa,CAAC,QAAQ,EAAE,SAAS,EAAE,UAAU,EAAE,WAAW,GAAG,IAAI,CAAC;IAElE,gDAAgD;IAChD,aAAa,CACX,QAAQ,EAAE,SAAS,EACnB,QAAQ,EAAE,QAAQ,CAAC,YAAY,CAAC,EAChC,OAAO,CAAC,EAAE;QACR,MAAM,CAAC,EAAE,WAAW,CAAC;KACtB,GACA,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;wEACoE;IACpE,OAAO,IAAI,IAAI,CAAC;CACjB"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import { PFrameFactoryAPI } from './api_factory';
|
|
1
|
+
import { PFrameFactoryAPI, PFrameFactoryAPIV2 } from './api_factory';
|
|
2
2
|
import { PFrameReadAPIV8 } from './api_read';
|
|
3
3
|
export type Logger = (level: 'info' | 'warn' | 'error', message: string) => void;
|
|
4
4
|
export interface PFrameV8 extends PFrameFactoryAPI, PFrameReadAPIV8 {
|
|
5
5
|
}
|
|
6
|
+
export interface PFrameV9 extends PFrameFactoryAPIV2, PFrameReadAPIV8 {
|
|
7
|
+
}
|
|
6
8
|
//# sourceMappingURL=pframe.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pframe.d.ts","sourceRoot":"","sources":["../../../src/pframe/internal_api/pframe.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"pframe.d.ts","sourceRoot":"","sources":["../../../src/pframe/internal_api/pframe.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAC1E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAElD,MAAM,MAAM,MAAM,GAAG,CACnB,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,EAChC,OAAO,EAAE,MAAM,KACZ,IAAI,CAAC;AAEV,MAAM,WAAW,QAAS,SAAQ,gBAAgB,EAAE,eAAe;CAAG;AAEtE,MAAM,WAAW,QAAS,SAAQ,kBAAkB,EAAE,eAAe;CAAG"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ProjectMeta } from './project';
|
|
2
2
|
import { BlockPackSpec } from './block_registry/block_pack_spec';
|
|
3
|
-
import { BlockCodeFeatureFlags, BlockRenderingMode, BlockSection, NavigationState } from '@milaboratories/pl-model-common';
|
|
4
|
-
import { AuthorMarker } from './author_marker';
|
|
3
|
+
import { BlockCodeFeatureFlags, BlockRenderingMode, BlockSection, NavigationState, AuthorMarker } from '@milaboratories/pl-model-common';
|
|
5
4
|
import { UpdateSuggestions } from './update_info';
|
|
6
5
|
import { BlockSettings } from './block_settings';
|
|
7
6
|
/** Generalized block status, to be used in block item "styling". */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project_overview.d.ts","sourceRoot":"","sources":["../src/project_overview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,qBAAqB,EAAE,kBAAkB,EAAE,YAAY,EAAE,eAAe,EAAE,
|
|
1
|
+
{"version":3,"file":"project_overview.d.ts","sourceRoot":"","sources":["../src/project_overview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,OAAO,EAAE,qBAAqB,EAAE,kBAAkB,EAAE,YAAY,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACzI,OAAO,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,oEAAoE;AACpE,MAAM,MAAM,sBAAsB,GAAG,eAAe,GAAG,SAAS,GAAG,MAAM,GAAG,OAAO,CAAC;AAEpF,4EAA4E;AAC5E,MAAM,MAAM,eAAe,GAAG;IAC5B,+DAA+D;IAC/D,IAAI,EAAE,WAAW,CAAC;IAElB,0BAA0B;IAC1B,OAAO,EAAE,IAAI,CAAC;IAEd,mCAAmC;IACnC,YAAY,EAAE,IAAI,CAAC;IAEnB;;;;;;SAMK;IACL,YAAY,CAAC,EAAE,YAAY,CAAC;IAE5B,0CAA0C;IAC1C,MAAM,EAAE,kBAAkB,EAAE,CAAC;CAC9B,CAAC;AAEF,gFAAgF;AAChF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,kFAAkF;IAClF,iBAAiB,EAAE,MAAM,CAAC;IAE1B,eAAe;IACf,EAAE,EAAE,MAAM,CAAC;IAEX;;;;;SAKK;IACL,KAAK,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B;;;OAGG;IACH,KAAK,EAAE,MAAM,GAAG,SAAS,CAAC;IAE1B,2BAA2B;IAC3B,aAAa,EAAE,kBAAkB,CAAC;IAElC;;;SAGK;IACL,gBAAgB,EAAE,OAAO,CAAC;IAE1B;;;;;SAKK;IACL,KAAK,EAAE,OAAO,CAAC;IAEf;;;SAGK;IACL,YAAY,EAAE,OAAO,CAAC;IAEtB;;;SAGK;IACL,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;SAGK;IACL,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,2CAA2C;IAC3C,iBAAiB,EAAE,sBAAsB,CAAC;IAE1C;;;SAGK;IACL,SAAS,EAAE,MAAM,EAAE,CAAC;IAEpB;;;SAGK;IACL,WAAW,EAAE,MAAM,EAAE,CAAC;IAEtB;;;SAGK;IACL,QAAQ,EAAE,YAAY,EAAE,GAAG,SAAS,CAAC;IAErC;;;SAGK;IACL,WAAW,EAAE,OAAO,GAAG,SAAS,CAAC;IAEjC;;;SAGK;IACL,MAAM,EAAE,OAAO,CAAC;IAEhB;;;SAGK;IACL,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;IAE/B;;;SAGK;IACL,YAAY,EAAE,qBAAqB,GAAG,SAAS,CAAC;IAEhD;;;;;SAKK;IACL,yBAAyB,EAAE,OAAO,GAAG,SAAS,CAAC;IAE/C,mEAAmE;IACnE,gBAAgB,EAAE,aAAa,GAAG,SAAS,CAAC;IAE5C;;;SAGK;IACL,gBAAgB,EAAE,aAAa,GAAG,SAAS,CAAC;IAE5C,6BAA6B;IAC7B,QAAQ,EAAE,aAAa,CAAC;IAExB,8BAA8B;IAC9B,iBAAiB,EAAE,iBAAiB,CAAC;IAErC,4CAA4C;IAC5C,eAAe,EAAE,eAAe,CAAC;CAClC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pl-model-middle-layer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "Common model between middle layer and non-block UI code",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"remeda": "^2.22.6",
|
|
21
21
|
"zod": "~3.23.8",
|
|
22
22
|
"utility-types": "^3.11.0",
|
|
23
|
-
"@milaboratories/pl-model-common": "^1.
|
|
23
|
+
"@milaboratories/pl-model-common": "^1.17.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"typescript": "~5.6.3",
|
|
27
27
|
"vite": "^6.3.5",
|
|
28
|
-
"@milaboratories/build-configs": "1.0.
|
|
28
|
+
"@milaboratories/build-configs": "1.0.5"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"type-check": "tsc --noEmit --composite false",
|
package/src/author_marker.ts
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
|
+
import type { AuthorMarker } from '@milaboratories/pl-model-common';
|
|
2
|
+
|
|
1
3
|
/** Structure to help resolve conflicts if multiple participants writes to
|
|
2
4
|
* the same state */
|
|
3
|
-
export
|
|
4
|
-
/** Unique identifier of client or even a specific window that sets this
|
|
5
|
-
* particular state */
|
|
6
|
-
authorId: string;
|
|
7
|
-
|
|
8
|
-
/** Sequential version of the state local to the author */
|
|
9
|
-
localVersion: number;
|
|
10
|
-
}
|
|
5
|
+
export type { AuthorMarker };
|
package/src/block_state.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { BlockOutputsBase, BlockState } from '@milaboratories/pl-model-common';
|
|
2
|
-
import { AuthorMarker } from './author_marker';
|
|
3
2
|
import { Optional } from 'utility-types';
|
|
4
3
|
|
|
5
4
|
export type BlockStateInternal<
|
|
@@ -7,8 +6,4 @@ export type BlockStateInternal<
|
|
|
7
6
|
Outputs extends BlockOutputsBase = BlockOutputsBase,
|
|
8
7
|
UiState = unknown,
|
|
9
8
|
Href extends `/${string}` = `/${string}`
|
|
10
|
-
> = Optional<Readonly<BlockState<Args, Outputs, UiState, Href>>, 'outputs'
|
|
11
|
-
/** Author marker for Args and UI State. Absence of author marker, means that
|
|
12
|
-
* last modifier of the state provided no author marker. */
|
|
13
|
-
readonly author?: AuthorMarker;
|
|
14
|
-
};
|
|
9
|
+
> = Optional<Readonly<BlockState<Args, Outputs, UiState, Href>>, 'outputs'>;
|
|
@@ -37,3 +37,26 @@ export interface PFrameFactoryAPI {
|
|
|
37
37
|
* any interactions with disposed PFrame will result in exception */
|
|
38
38
|
dispose(): void;
|
|
39
39
|
}
|
|
40
|
+
|
|
41
|
+
/** API exposed by PFrames library allowing to create and provide data for
|
|
42
|
+
* PFrame objects */
|
|
43
|
+
export interface PFrameFactoryAPIV2 {
|
|
44
|
+
/** Associates data source with this PFrame */
|
|
45
|
+
setDataSource(dataSource: PFrameDataSource): void;
|
|
46
|
+
|
|
47
|
+
/** Adds PColumn without spec */
|
|
48
|
+
addColumnSpec(columnId: PObjectId, columnSpec: PColumnSpec): void;
|
|
49
|
+
|
|
50
|
+
/** Associates data info with cpecific column */
|
|
51
|
+
setColumnData(
|
|
52
|
+
columnId: PObjectId,
|
|
53
|
+
dataInfo: DataInfo<PFrameBlobId>,
|
|
54
|
+
options?: {
|
|
55
|
+
signal?: AbortSignal,
|
|
56
|
+
}
|
|
57
|
+
): Promise<void>;
|
|
58
|
+
|
|
59
|
+
/** Releases all the data previously added to PFrame using methods above,
|
|
60
|
+
* any interactions with disposed PFrame will result in exception */
|
|
61
|
+
dispose(): void;
|
|
62
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { PFrameFactoryAPI } from './api_factory';
|
|
1
|
+
import type { PFrameFactoryAPI, PFrameFactoryAPIV2 } from './api_factory';
|
|
2
2
|
import type { PFrameReadAPIV8 } from './api_read';
|
|
3
3
|
|
|
4
4
|
export type Logger = (
|
|
@@ -7,3 +7,5 @@ export type Logger = (
|
|
|
7
7
|
) => void;
|
|
8
8
|
|
|
9
9
|
export interface PFrameV8 extends PFrameFactoryAPI, PFrameReadAPIV8 {}
|
|
10
|
+
|
|
11
|
+
export interface PFrameV9 extends PFrameFactoryAPIV2, PFrameReadAPIV8 {}
|
package/src/project_overview.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ProjectMeta } from './project';
|
|
2
2
|
import { BlockPackSpec } from './block_registry/block_pack_spec';
|
|
3
|
-
import { BlockCodeFeatureFlags, BlockRenderingMode, BlockSection, NavigationState } from '@milaboratories/pl-model-common';
|
|
4
|
-
import { AuthorMarker } from './author_marker';
|
|
3
|
+
import { BlockCodeFeatureFlags, BlockRenderingMode, BlockSection, NavigationState, AuthorMarker } from '@milaboratories/pl-model-common';
|
|
5
4
|
import { UpdateSuggestions } from './update_info';
|
|
6
5
|
import { BlockSettings } from './block_settings';
|
|
7
6
|
|