@dronedeploy/rocos-js-sdk 3.1.7 → 3.1.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.
@@ -21,7 +21,14 @@ export interface Panorama {
21
21
  pos: Vector3;
22
22
  };
23
23
  data: {
24
- path: string;
24
+ /**
25
+ * Conventional location of the panorama image. Optional: it is not read by the SDK
26
+ * (nor required by the server), and a placeholder panorama may be created before the
27
+ * image exists.
28
+ */
29
+ path?: string;
30
+ /** The panorama node carries arbitrary data beyond the conventional fields above. */
31
+ [key: string]: unknown;
25
32
  };
26
33
  }
27
34
  /**
@@ -21,7 +21,14 @@ export interface Panorama {
21
21
  pos: Vector3;
22
22
  };
23
23
  data: {
24
- path: string;
24
+ /**
25
+ * Conventional location of the panorama image. Optional: it is not read by the SDK
26
+ * (nor required by the server), and a placeholder panorama may be created before the
27
+ * image exists.
28
+ */
29
+ path?: string;
30
+ /** The panorama node carries arbitrary data beyond the conventional fields above. */
31
+ [key: string]: unknown;
25
32
  };
26
33
  }
27
34
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dronedeploy/rocos-js-sdk",
3
- "version": "3.1.7",
3
+ "version": "3.1.8",
4
4
  "description": "Javascript SDK for rocos",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",