@soonspacejs/plugin-cps-soonmanager 2.9.7 → 2.9.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/types.d.ts CHANGED
@@ -78,6 +78,7 @@ export interface IPoiData {
78
78
  scale: number;
79
79
  dimensional: PoiNodeType;
80
80
  content: string;
81
+ contentData?: PoiContent;
81
82
  media: PoiMedia | null;
82
83
  contentType: PoiContentTypeEnum;
83
84
  display: boolean;
@@ -227,6 +228,14 @@ export interface ILoadSceneOptions extends ConstructorOptions {
227
228
  * 需要加载的层级(DFS时有效)
228
229
  */
229
230
  loadLevel?: number;
231
+ /**
232
+ * 加载 poi
233
+ */
234
+ loadPoi?: boolean;
235
+ /**
236
+ * 通过数据源刷新 poi
237
+ */
238
+ refreshPoiByDataSource?: boolean;
230
239
  }
231
240
  /**
232
241
  * properties map
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.7",
4
+ "version": "2.9.9",
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,17 +13,19 @@
13
13
  ],
14
14
  "author": "xunwei",
15
15
  "license": "UNLICENSED",
16
- "gitHead": "a15e2ecffc921c604f41b9218553c63dd5e5e279",
16
+ "gitHead": "90efdc689ff6436f4c433252c90a92118b7f03a1",
17
17
  "dependentPlugins": [
18
18
  "plugin-poi-renderer"
19
19
  ],
20
20
  "dependencies": {
21
21
  "@soonflow/core": "^0.2.3",
22
22
  "@soonflow/plugin-soonmanager2-node": "^0.2.3",
23
- "@soonflow/plugin-soonmanager2-sync": "^0.2.3"
23
+ "@soonflow/plugin-soonmanager2-sync": "^0.2.3",
24
+ "mqtt": "^4.3.7",
25
+ "socket.io-client": "^4.7.2"
24
26
  },
25
27
  "peerDependencies": {
26
- "@soonspacejs/plugin-poi-renderer": "2.9.7",
27
- "soonspacejs": "2.9.7"
28
+ "@soonspacejs/plugin-poi-renderer": "2.9.9",
29
+ "soonspacejs": "2.9.9"
28
30
  }
29
31
  }