@evercam/api 1.0.0-964e29308 → 1.0.0-9a767ebbe
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/dist/api/api/3dFirebaseApi.d.ts +171 -15
- package/dist/api/api/adminApi.d.ts +1 -0
- package/dist/api/api/aiApi.d.ts +2 -2
- package/dist/api/api/authzApi.d.ts +1 -2
- package/dist/api/types/360.d.ts +55 -50
- package/dist/api/types/analytics.d.ts +0 -4
- package/dist/api/types/axios.d.ts +1 -0
- package/dist/api/types/camera.d.ts +4 -23
- package/dist/api/types/drone.d.ts +91 -3
- package/dist/api/types/gateReport.d.ts +6 -11
- package/dist/api/types/index.d.ts +1 -0
- package/dist/api/types/ingest.d.ts +8 -0
- package/dist/api/types/map.d.ts +12 -0
- package/dist/api/types/planner.d.ts +54 -0
- package/dist/api/types/project.d.ts +4 -2
- package/dist/api/types/recording.d.ts +1 -0
- package/dist/api/types/roi.d.ts +2 -2
- package/dist/api/types/shared.d.ts +18 -0
- package/dist/api/types/siteView.d.ts +74 -0
- package/dist/api/types/timelapse.d.ts +7 -0
- package/dist/index.js +1104 -616
- 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 +3 -5
- package/package.json +2 -2
|
@@ -31,7 +31,9 @@ export declare enum IframeMessageType {
|
|
|
31
31
|
RefreshComments = "refreshComments",
|
|
32
32
|
CommentSyncFailed = "commentSyncFailed",
|
|
33
33
|
Load360Gallery = "load360Gallery",
|
|
34
|
-
Upload360 = "upload360"
|
|
34
|
+
Upload360 = "upload360",
|
|
35
|
+
FetchForgeToken = "FetchForgeToken",
|
|
36
|
+
ForgeTokenResponse = "ForgeTokenResponse"
|
|
35
37
|
}
|
|
36
38
|
export declare enum NavigationArrow {
|
|
37
39
|
Previous = "previous",
|
|
@@ -167,10 +169,6 @@ export type LineConfig = {
|
|
|
167
169
|
end: CssSelector | CssSelector[];
|
|
168
170
|
options?: LeaderLineOptions;
|
|
169
171
|
};
|
|
170
|
-
export type Point = {
|
|
171
|
-
x: number;
|
|
172
|
-
y: number;
|
|
173
|
-
};
|
|
174
172
|
export declare enum ZohoDeskTicketStatus {
|
|
175
173
|
Closed = "Closed",
|
|
176
174
|
OnHold = "On Hold",
|
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-9a767ebbe",
|
|
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": "^25.
|
|
39
|
+
"@types/node": "^25.6.0",
|
|
40
40
|
"vite": "latest",
|
|
41
41
|
"vite-plugin-commonjs": "^0.10.3",
|
|
42
42
|
"vite-plugin-dts": "^4.5.4"
|