@soonspacejs/plugin-cps-soonmanager 2.13.17 → 2.14.0
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/License/types.d.ts +1 -1
- package/dist/WaterMark/index.d.ts +2 -2
- package/dist/batch-update-poi/index.d.ts +2 -2
- package/dist/batch-update-poi/types.d.ts +1 -1
- package/dist/data-source/types.d.ts +1 -1
- package/dist/data-source/utils/mqtt.d.ts +1 -1
- package/dist/index.d.ts +12 -13
- package/dist/index.esm.js +43425 -5
- package/dist/tiles-renderer/ArcgisTilesRenderer.d.ts +1 -1
- package/dist/update-poi/index.d.ts +2 -2
- package/dist/utils.d.ts +5 -5
- package/package.json +8 -8
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import SoonSpace from 'soonspacejs';
|
|
1
|
+
import { default as SoonSpace } from 'soonspacejs';
|
|
2
2
|
import { TilesRenderer } from '3d-tiles-renderer';
|
|
3
3
|
import { TilesFadePlugin, UpdateOnChangePlugin, ReorientationPlugin } from '3d-tiles-renderer/plugins';
|
|
4
4
|
import { ArcgisXYZTilesPlugin } from './ArcgisXYZTilesPlugin';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import PoiRendererPlugin from '@soonspacejs/plugin-poi-renderer';
|
|
2
|
-
import CpsManagerPlugin from '../';
|
|
1
|
+
import { default as PoiRendererPlugin } from '@soonspacejs/plugin-poi-renderer';
|
|
2
|
+
import { default as CpsManagerPlugin } from '../';
|
|
3
3
|
import { IUpdatePoi } from './type';
|
|
4
4
|
declare class UpdatePoi {
|
|
5
5
|
#private;
|
package/dist/utils.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import SoonSpace,
|
|
1
|
+
import { default as SoonSpace, BaseObject3D } from 'soonspacejs';
|
|
2
2
|
import { TAnimationFrame } from 'umanager-animation-parser';
|
|
3
3
|
import { BaseTreeNode, IKeyframe, ITreeData } from './types';
|
|
4
|
-
import CpsSoonmanagerPlugin from '.';
|
|
4
|
+
import { default as CpsSoonmanagerPlugin } from '.';
|
|
5
5
|
/**
|
|
6
6
|
* 解码
|
|
7
7
|
* @param encodedStr
|
|
@@ -16,8 +16,8 @@ export declare function isSpace(renderType: ITreeData['renderType']): renderType
|
|
|
16
16
|
* @param node
|
|
17
17
|
* @returns
|
|
18
18
|
*/
|
|
19
|
-
export declare function createSpace(ssp: SoonSpace, node: ITreeData, objectId: string): import(
|
|
20
|
-
export declare function createWaterSurface(cpsPlugin: CpsSoonmanagerPlugin, node: ITreeData, objectId: string): import(
|
|
21
|
-
export declare function createDecal(ssp: SoonSpace, node: ITreeData, objectId: string, path: string | null): Promise<import(
|
|
19
|
+
export declare function createSpace(ssp: SoonSpace, node: ITreeData, objectId: string): import('soonspacejs').Canvas3D;
|
|
20
|
+
export declare function createWaterSurface(cpsPlugin: CpsSoonmanagerPlugin, node: ITreeData, objectId: string): import('soonspacejs').PluginObject | null;
|
|
21
|
+
export declare function createDecal(ssp: SoonSpace, node: ITreeData, objectId: string, path: string | null): Promise<import('soonspacejs').Decal | null>;
|
|
22
22
|
export declare function createGs3d(ssp: SoonSpace, node: ITreeData, path: string | null): Promise<BaseObject3D>;
|
|
23
23
|
export declare function transformKeyframes(keyframes: IKeyframe[]): TAnimationFrame[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soonspacejs/plugin-cps-soonmanager",
|
|
3
3
|
"pluginName": "CpsSoonmanagerPlugin",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.14.0",
|
|
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,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"author": "xunwei",
|
|
15
15
|
"license": "UNLICENSED",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "4c85e8b7b8ad24ccb9b42f3a1826bca377c42a6d",
|
|
17
17
|
"dependencyPlugins": [
|
|
18
18
|
"plugin-poi-renderer",
|
|
19
19
|
"plugin-effect",
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
"@types/node-rsa": "^1.1.1",
|
|
29
29
|
"crypto-browserify": "^3.12.0",
|
|
30
30
|
"lodash-es": "^4.17.21",
|
|
31
|
-
"mqtt": "^
|
|
31
|
+
"mqtt": "^5.14.0",
|
|
32
32
|
"node-rsa": "^1.1.1",
|
|
33
33
|
"socket.io-client": "^4.7.2"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"3d-tiles-renderer": "^0.4.14",
|
|
37
|
-
"@soonspacejs/plugin-atmosphere": "2.
|
|
38
|
-
"@soonspacejs/plugin-effect": "2.
|
|
39
|
-
"@soonspacejs/plugin-gs3d-loader": "2.
|
|
40
|
-
"@soonspacejs/plugin-poi-renderer": "2.
|
|
41
|
-
"soonspacejs": "2.
|
|
37
|
+
"@soonspacejs/plugin-atmosphere": "2.14.0",
|
|
38
|
+
"@soonspacejs/plugin-effect": "2.14.0",
|
|
39
|
+
"@soonspacejs/plugin-gs3d-loader": "2.14.0",
|
|
40
|
+
"@soonspacejs/plugin-poi-renderer": "2.14.0",
|
|
41
|
+
"soonspacejs": "2.14.0",
|
|
42
42
|
"umanager-animation-parser": "^0.0.6"
|
|
43
43
|
}
|
|
44
44
|
}
|