@soonspacejs/plugin-cps-soonmanager 2.14.29 → 2.14.30

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
@@ -348,4 +348,47 @@ export declare enum LoadSceneAlgorithm {
348
348
  BFS = "BFS",
349
349
  DFS = "DFS"
350
350
  }
351
+ export interface Imagery {
352
+ id: string;
353
+ sid: string;
354
+ name: string;
355
+ visible: boolean;
356
+ order: number;
357
+ url: string;
358
+ imageryType?: 'XYZ' | 'TMS' | 'WMTS';
359
+ }
360
+ export interface Geo {
361
+ id: string;
362
+ sid: string;
363
+ name: string;
364
+ visible: boolean;
365
+ order: number;
366
+ contentType: string;
367
+ content: string;
368
+ lineColor?: any;
369
+ fillColor?: any;
370
+ lineWidth?: any;
371
+ }
372
+ export interface Terrain {
373
+ id: string;
374
+ sid: string;
375
+ name: string;
376
+ visible: boolean;
377
+ order: number;
378
+ url: string;
379
+ }
380
+ export interface Tileset {
381
+ id: string;
382
+ sid: string;
383
+ name: string;
384
+ visible: boolean;
385
+ order: number;
386
+ url: string;
387
+ }
388
+ export interface IGisData {
389
+ imagery?: Imagery[];
390
+ geo?: Geo[];
391
+ terrain?: Terrain[];
392
+ tileset?: Tileset[];
393
+ }
351
394
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@soonspacejs/plugin-cps-soonmanager",
3
3
  "pluginName": "CpsSoonmanagerPlugin",
4
- "version": "2.14.29",
4
+ "version": "2.14.30",
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",
@@ -35,14 +35,13 @@
35
35
  "socket.io-client": "^4.7.2"
36
36
  },
37
37
  "peerDependencies": {
38
- "3d-tiles-renderer": "^0.4.17",
39
- "@soonspacejs/plugin-atmosphere": "2.14.29",
40
- "@soonspacejs/plugin-effect": "2.14.29",
41
- "@soonspacejs/plugin-flow": "2.14.29",
42
- "@soonspacejs/plugin-gs3d-loader": "2.14.29",
43
- "@soonspacejs/plugin-poi-renderer": "2.14.29",
44
- "@soonspacejs/plugin-tiles": "2.14.29",
45
- "soonspacejs": "2.14.29",
38
+ "@soonspacejs/plugin-atmosphere": "2.14.30",
39
+ "@soonspacejs/plugin-effect": "2.14.30",
40
+ "@soonspacejs/plugin-flow": "2.14.30",
41
+ "@soonspacejs/plugin-gs3d-loader": "2.14.30",
42
+ "@soonspacejs/plugin-poi-renderer": "2.14.30",
43
+ "@soonspacejs/plugin-tiles": "2.14.30",
44
+ "soonspacejs": "2.14.30",
46
45
  "umanager-animation-parser": "^0.0.6"
47
46
  }
48
47
  }