@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.
- package/README.md +1 -0
- package/dist/api/api/3dFirebaseApi.d.ts +9 -0
- package/dist/api/api/adminApi.d.ts +56 -4
- package/dist/api/api/aiApi.d.ts +5 -2
- package/dist/api/api/client/swr/Swr.d.ts +14 -0
- package/dist/api/api/client/swr/SwrStore.d.ts +10 -0
- package/dist/api/api/evercamApi.d.ts +32 -11
- package/dist/api/api/ingestApi.d.ts +9 -4
- package/dist/api/types/360.d.ts +11 -1
- package/dist/api/types/analytics.d.ts +13 -2
- package/dist/api/types/axios.d.ts +14 -0
- package/dist/api/types/camera.d.ts +14 -3
- package/dist/api/types/comments.d.ts +18 -2
- package/dist/api/types/company.d.ts +29 -1
- package/dist/api/types/countries.d.ts +0 -7
- package/dist/api/types/detections.d.ts +1 -2
- package/dist/api/types/errors.d.ts +1 -0
- package/dist/api/types/index.d.ts +2 -0
- package/dist/api/types/kit.d.ts +34 -7
- package/dist/api/types/procore.d.ts +13 -10
- package/dist/api/types/progressPhoto.d.ts +20 -8
- package/dist/api/types/project.d.ts +1 -0
- package/dist/api/types/recycleBin.d.ts +14 -0
- package/dist/api/types/shared.d.ts +1 -6
- package/dist/api/types/siteAnalytics.d.ts +3 -2
- package/dist/api/types/sso.d.ts +55 -0
- package/dist/api/types/streaming.d.ts +1 -2
- package/dist/api/types/user.d.ts +1 -6
- package/dist/api/types/widget.d.ts +21 -2
- package/dist/index.js +954 -644
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/shared/types/components.d.ts +10 -1
- package/package.json +4 -3
|
@@ -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 =
|
|
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-
|
|
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": "
|
|
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
|
|
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
|
}
|