@evercam/api 1.0.0-e03adefb8 → 1.0.0-e405b2c39
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 +3 -0
- package/dist/api/api/3dFirebaseApi.d.ts +17 -1
- package/dist/api/api/adminApi.d.ts +67 -33
- package/dist/api/api/aiApi.d.ts +26 -45
- package/dist/api/api/authzApi.d.ts +10 -1
- package/dist/api/api/client/axios.d.ts +1 -0
- 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 +42 -44
- package/dist/api/api/evercamLabsApi.d.ts +5 -2
- package/dist/api/api/ingestApi.d.ts +40 -12
- package/dist/api/api/ptzApi.d.ts +4 -0
- package/dist/api/api/videoWallApi.d.ts +7 -7
- package/dist/api/types/360.d.ts +188 -3
- package/dist/api/types/aconex.d.ts +102 -4
- package/dist/api/types/analytics.d.ts +89 -6
- package/dist/api/types/anpr.d.ts +5 -11
- package/dist/api/types/authz.d.ts +23 -0
- package/dist/api/types/automation.d.ts +51 -0
- package/dist/api/types/axios.d.ts +15 -0
- package/dist/api/types/camera.d.ts +23 -6
- package/dist/api/types/comments.d.ts +18 -2
- package/dist/api/types/company.d.ts +29 -1
- package/dist/api/types/coolify.d.ts +2 -0
- package/dist/api/types/countries.d.ts +0 -7
- package/dist/api/types/credentials.d.ts +1 -0
- package/dist/api/types/detections.d.ts +5 -20
- package/dist/api/types/errors.d.ts +1 -0
- package/dist/api/types/gateReport.d.ts +4 -101
- package/dist/api/types/index.d.ts +3 -0
- package/dist/api/types/ingest.d.ts +4 -0
- package/dist/api/types/kit.d.ts +55 -7
- package/dist/api/types/planner.d.ts +4 -1
- package/dist/api/types/procore.d.ts +13 -10
- package/dist/api/types/progressPhoto.d.ts +5 -23
- package/dist/api/types/project.d.ts +47 -3
- package/dist/api/types/recording.d.ts +1 -0
- package/dist/api/types/recycleBin.d.ts +14 -0
- package/dist/api/types/routeParams.d.ts +2 -1
- package/dist/api/types/router.d.ts +19 -0
- package/dist/api/types/shared.d.ts +1 -6
- package/dist/api/types/shares.d.ts +6 -144
- package/dist/api/types/siteAnalytics.d.ts +135 -29
- package/dist/api/types/snapshots.d.ts +9 -0
- package/dist/api/types/sso.d.ts +55 -0
- package/dist/api/types/streaming.d.ts +1 -2
- package/dist/api/types/time.d.ts +4 -0
- package/dist/api/types/user.d.ts +4 -0
- package/dist/api/types/videoWall.d.ts +34 -1
- package/dist/api/types/weather.d.ts +2 -0
- package/dist/api/types/widget.d.ts +27 -6
- package/dist/api/utils.d.ts +1 -0
- package/dist/index.js +1227 -866
- 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 +18 -3
- package/dist/shared/types/imagePlayer.d.ts +1 -1
- package/package.json +5 -4
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import { type _360Scene, type Media, type DroneModel, type MobileCaptureSnapshot, type TimelineDateInterval, type TimelinePrecision, type Comment, TaskStatus, Tag } from "@evercam/api/types";
|
|
2
2
|
import type { TimelineChartType, TimelineEvent, TimelineEventsGroup } from "@evercam/ui";
|
|
3
3
|
import { TimelineDataProvider } from "@evercam/shared/components/timelinePlayer/providers";
|
|
4
|
+
export declare enum NavigationArrow {
|
|
5
|
+
Previous = "previous",
|
|
6
|
+
Next = "next"
|
|
7
|
+
}
|
|
4
8
|
export declare enum WatermarkedImageDownloadOrigin {
|
|
5
9
|
Drone = "drone",
|
|
6
10
|
Bim = "BIM",
|
|
7
11
|
Snapshot = "snapshot",
|
|
8
12
|
The360 = "360",
|
|
13
|
+
The360Gallery = "360 Gallery",
|
|
9
14
|
Planner = "Planner"
|
|
10
15
|
}
|
|
11
16
|
export declare enum PlayerMode {
|
|
@@ -154,10 +159,12 @@ export declare enum FormSchemaComponents {
|
|
|
154
159
|
MultiOption = "MultiOption",
|
|
155
160
|
TextField = "TextField",
|
|
156
161
|
CheckBox = "SwitchField",
|
|
157
|
-
|
|
162
|
+
Date = "DatePickerInput",
|
|
163
|
+
DateTime = "DateTimeField",
|
|
158
164
|
TextArea = "Textarea",
|
|
159
165
|
Search = "Autocomplete",
|
|
160
|
-
ReadOnly = "ReadOnly"
|
|
166
|
+
ReadOnly = "ReadOnly",
|
|
167
|
+
Ratio = "RatioField"
|
|
161
168
|
}
|
|
162
169
|
export declare enum FormSchemaDataType {
|
|
163
170
|
String = "string",
|
|
@@ -181,4 +188,12 @@ export type FormSchemaField = {
|
|
|
181
188
|
defaultValue?: any;
|
|
182
189
|
columns?: number;
|
|
183
190
|
};
|
|
184
|
-
export type FormSchema =
|
|
191
|
+
export type FormSchema = Record<string, FormSchemaField>;
|
|
192
|
+
export interface ScrollListener {
|
|
193
|
+
element: Element | Window;
|
|
194
|
+
handler: () => void;
|
|
195
|
+
}
|
|
196
|
+
export interface LeaderLineInstance {
|
|
197
|
+
remove(): void;
|
|
198
|
+
position(): void;
|
|
199
|
+
}
|
|
@@ -23,7 +23,7 @@ export type MatchedSnapshotEvent<T extends {}> = SnapshotEvent<T> & {
|
|
|
23
23
|
snapshotTimestamp: Timestamp;
|
|
24
24
|
};
|
|
25
25
|
export declare enum ImageQuality {
|
|
26
|
-
|
|
26
|
+
ThreeSixty = "360",
|
|
27
27
|
FourEighty = "480",
|
|
28
28
|
SevenTwenty = "720",
|
|
29
29
|
OneZeroEightZero = "1080",
|
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-e405b2c39",
|
|
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"
|
|
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": "^
|
|
39
|
+
"@types/node": "^25.2.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
|
+
}
|