@evercam/api 1.0.0-04bc4cb07 → 1.0.0-04f2bddeb

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.
@@ -182,3 +182,11 @@ export type FormSchemaField = {
182
182
  columns?: number;
183
183
  };
184
184
  export type FormSchema = Record<string, FormSchemaField>;
185
+ export interface ScrollListener {
186
+ element: Element | Window;
187
+ handler: () => void;
188
+ }
189
+ export interface LeaderLineInstance {
190
+ remove(): void;
191
+ position(): void;
192
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evercam/api",
3
- "version": "1.0.0-04bc4cb07",
3
+ "version": "1.0.0-04f2bddeb",
4
4
  "description": "Evercam API client",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,7 +36,7 @@
36
36
  "publish-api": "cd ../.. && yarn publish-api"
37
37
  },
38
38
  "devDependencies": {
39
- "@types/node": "^24.3.1",
39
+ "@types/node": "^24.6.0",
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
  }