@soonspacejs/plugin-cps-soonmanager 2.9.6 → 2.9.8

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/types.d.ts CHANGED
@@ -37,10 +37,13 @@ export declare enum PoiContentTypeEnum {
37
37
  VIDEO_STREAM = "VIDEO_STREAM"
38
38
  }
39
39
  export interface PoiMedia {
40
+ assetId?: string | null;
40
41
  url?: string;
41
42
  isLoop?: boolean;
43
+ location?: string | null;
42
44
  protocol?: string;
43
- fileId?: string;
45
+ fileId?: string | null;
46
+ fileSourceType?: string;
44
47
  }
45
48
  export interface PoiContentData {
46
49
  [group: string]: {
@@ -204,10 +207,6 @@ export interface ILoadSceneOptions extends ConstructorOptions {
204
207
  * 同步模型视角数据
205
208
  */
206
209
  syncModelVisions?: boolean;
207
- /**
208
- * 自动加载 poi
209
- */
210
- autoLoadPoi?: boolean;
211
210
  /**
212
211
  * 计算 bounds tree
213
212
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@soonspacejs/plugin-cps-soonmanager",
3
3
  "pluginName": "CpsSoonmanagerPlugin",
4
- "version": "2.9.6",
4
+ "version": "2.9.8",
5
5
  "description": "Sync cps soonmanager data plugin for SoonSpace.js",
6
6
  "main": "dist/index.esm.js",
7
7
  "module": "dist/index.esm.js",
@@ -13,12 +13,17 @@
13
13
  ],
14
14
  "author": "xunwei",
15
15
  "license": "UNLICENSED",
16
- "gitHead": "3ab8f7a974691b6456ca4adf0430b6950c13e868",
16
+ "gitHead": "ec841fdb5b45e8ec0cccfa9472083c8fc9c27639",
17
17
  "dependentPlugins": [
18
18
  "plugin-poi-renderer"
19
19
  ],
20
+ "dependencies": {
21
+ "@soonflow/core": "^0.2.3",
22
+ "@soonflow/plugin-soonmanager2-node": "^0.2.3",
23
+ "@soonflow/plugin-soonmanager2-sync": "^0.2.3"
24
+ },
20
25
  "peerDependencies": {
21
- "@soonspacejs/plugin-poi-renderer": "2.9.6",
22
- "soonspacejs": "2.9.6"
26
+ "@soonspacejs/plugin-poi-renderer": "2.9.8",
27
+ "soonspacejs": "2.9.8"
23
28
  }
24
29
  }