@evercam/api 1.0.0-624ff9012 → 1.0.0-62d228551

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.
@@ -6,6 +6,7 @@ export declare enum WatermarkedImageDownloadOrigin {
6
6
  Bim = "BIM",
7
7
  Snapshot = "snapshot",
8
8
  The360 = "360",
9
+ The360Gallery = "360 Gallery",
9
10
  Planner = "Planner"
10
11
  }
11
12
  export declare enum PlayerMode {
@@ -181,4 +182,12 @@ export type FormSchemaField = {
181
182
  defaultValue?: any;
182
183
  columns?: number;
183
184
  };
184
- export type FormSchema = Array<FormSchemaField>;
185
+ export type FormSchema = Record<string, FormSchemaField>;
186
+ export interface ScrollListener {
187
+ element: Element | Window;
188
+ handler: () => void;
189
+ }
190
+ export interface LeaderLineInstance {
191
+ remove(): void;
192
+ position(): void;
193
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evercam/api",
3
- "version": "1.0.0-624ff9012",
3
+ "version": "1.0.0-62d228551",
4
4
  "description": "Evercam API client",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,7 +24,7 @@
24
24
  "dist"
25
25
  ],
26
26
  "engines": {
27
- "node": "20.x"
27
+ "node": "22.x"
28
28
  },
29
29
  "readme": "README.md",
30
30
  "scripts": {
@@ -36,7 +36,7 @@
36
36
  "publish-api": "cd ../.. && yarn publish-api"
37
37
  },
38
38
  "devDependencies": {
39
- "@types/node": "^24.2.1",
39
+ "@types/node": "^24.7.2",
40
40
  "vite": "latest",
41
41
  "vite-plugin-commonjs": "^0.10.3",
42
42
  "vite-plugin-dts": "^4.5.4"
@@ -44,6 +44,7 @@
44
44
  "peerDependencies": {
45
45
  "axios": "^1.7.7",
46
46
  "humps": "^2.0.1",
47
+ "idb-keyval": "^6.2.2",
47
48
  "moment-timezone": "^0.5.46"
48
49
  }
49
50
  }