@dronedeploy/rocos-js-sdk 3.0.3 → 3.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@ export interface Location {
3
3
  name: string;
4
4
  level?: {
5
5
  id: string;
6
+ name: string;
6
7
  };
7
8
  locationType?: {
8
9
  id: string;
@@ -4,7 +4,7 @@ interface ObservationBase {
4
4
  panoramaID: string;
5
5
  assetID?: string;
6
6
  type?: 'asset' | 'target';
7
- data?: Record<string, string>;
7
+ data?: Record<string, unknown>;
8
8
  geometry?: Position[];
9
9
  center?: Position;
10
10
  }
@@ -3,6 +3,7 @@ export interface Location {
3
3
  name: string;
4
4
  level?: {
5
5
  id: string;
6
+ name: string;
6
7
  };
7
8
  locationType?: {
8
9
  id: string;
@@ -4,7 +4,7 @@ interface ObservationBase {
4
4
  panoramaID: string;
5
5
  assetID?: string;
6
6
  type?: 'asset' | 'target';
7
- data?: Record<string, string>;
7
+ data?: Record<string, unknown>;
8
8
  geometry?: Position[];
9
9
  center?: Position;
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dronedeploy/rocos-js-sdk",
3
- "version": "3.0.3",
3
+ "version": "3.0.5",
4
4
  "description": "Javascript SDK for rocos",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",