@evercam/api 1.0.0-5fab6756e → 1.0.0-61223f63e
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 +164 -15
- package/dist/api/api/adminApi.d.ts +8 -1
- package/dist/api/api/aiApi.d.ts +2 -2
- package/dist/api/api/authzApi.d.ts +1 -2
- package/dist/api/api/evercamApi.d.ts +10 -1
- package/dist/api/api/ingestApi.d.ts +44 -43
- package/dist/api/types/360.d.ts +55 -50
- package/dist/api/types/analytics.d.ts +33 -15
- package/dist/api/types/anpr.d.ts +0 -2
- package/dist/api/types/auditLogs.d.ts +18 -0
- package/dist/api/types/authz.d.ts +1 -0
- package/dist/api/types/axios.d.ts +3 -4
- package/dist/api/types/bim.d.ts +17 -0
- package/dist/api/types/camera.d.ts +8 -24
- package/dist/api/types/comments.d.ts +8 -6
- package/dist/api/types/detections.d.ts +0 -9
- package/dist/api/types/drone.d.ts +96 -6
- 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 +16 -3
- package/dist/api/types/map.d.ts +12 -0
- package/dist/api/types/planner.d.ts +55 -2
- package/dist/api/types/project.d.ts +8 -3
- package/dist/api/types/recording.d.ts +3 -1
- package/dist/api/types/roi.d.ts +2 -2
- package/dist/api/types/shared.d.ts +19 -0
- package/dist/api/types/siteAnalytics.d.ts +3 -3
- package/dist/api/types/siteView.d.ts +74 -0
- package/dist/api/types/snapshots.d.ts +43 -3
- package/dist/api/types/timelapse.d.ts +6 -2
- package/dist/api/types/user.d.ts +0 -1
- package/dist/index.js +1186 -696
- 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 +61 -9
- package/dist/shared/types/imagePlayer.d.ts +8 -1
- package/dist/shared/types/index.d.ts +1 -0
- package/dist/shared/types/rbac.d.ts +67 -0
- package/package.json +2 -2
|
@@ -76,6 +76,7 @@ export declare enum CloudRecordingDuration {
|
|
|
76
76
|
Month = 30,
|
|
77
77
|
ThreeMonths = 90
|
|
78
78
|
}
|
|
79
|
+
export declare const CloudRecordingDurationLabel: Record<CloudRecordingDuration, string>;
|
|
79
80
|
export declare enum CloudRecordingStatus {
|
|
80
81
|
On = "on",
|
|
81
82
|
Off = "off",
|
|
@@ -119,5 +120,6 @@ export declare enum VpnServer {
|
|
|
119
120
|
WireGuard7 = "WireGuard7",
|
|
120
121
|
WireGuard8 = "WireGuard8",
|
|
121
122
|
WireGuard9 = "WireGuard9",
|
|
122
|
-
WireGuard10 = "WireGuard10"
|
|
123
|
+
WireGuard10 = "WireGuard10",
|
|
124
|
+
WgHub = "WgHub"
|
|
123
125
|
}
|
package/dist/api/types/roi.d.ts
CHANGED
|
@@ -9,8 +9,7 @@ export declare enum RoiShapeType {
|
|
|
9
9
|
Polygon = "polygon",
|
|
10
10
|
Line = "line",
|
|
11
11
|
Direction = "direction",
|
|
12
|
-
Rectangle = "rectangle"
|
|
13
|
-
ROIBox = "ROIBox"
|
|
12
|
+
Rectangle = "rectangle"
|
|
14
13
|
}
|
|
15
14
|
export type RoiShape = {
|
|
16
15
|
id: number | null;
|
|
@@ -19,6 +18,7 @@ export type RoiShape = {
|
|
|
19
18
|
x2: number;
|
|
20
19
|
y1: number;
|
|
21
20
|
y2: number;
|
|
21
|
+
points?: [number, number][];
|
|
22
22
|
};
|
|
23
23
|
export declare enum RoiDirection {
|
|
24
24
|
Arrived = "arrived",
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { DateType } from "@evercam/api/types";
|
|
2
|
+
export declare enum Operator {
|
|
3
|
+
AND = "and",
|
|
4
|
+
OR = "or"
|
|
5
|
+
}
|
|
2
6
|
type sortby = string;
|
|
3
7
|
type sortDirection = "asc" | "desc";
|
|
4
8
|
export type SortingUrlParam = `${sortby}|${sortDirection}`;
|
|
@@ -133,6 +137,21 @@ export interface JSON {
|
|
|
133
137
|
stringify<T>(value: T, replacer?: (key: string, value: unknown) => unknown, space?: string | number): string & Stringified<T>;
|
|
134
138
|
parse<T>(text: Stringified<T>, reviver?: (key: unknown, value: unknown) => unknown): T;
|
|
135
139
|
}
|
|
140
|
+
export type TuplePoint2D = [number, number];
|
|
141
|
+
export type TuplePoint3D = [number, number, number];
|
|
142
|
+
export type Point2D = {
|
|
143
|
+
x: number;
|
|
144
|
+
y: number;
|
|
145
|
+
};
|
|
146
|
+
export type Point3D = {
|
|
147
|
+
x: number;
|
|
148
|
+
y: number;
|
|
149
|
+
z: number;
|
|
150
|
+
};
|
|
151
|
+
export type GeoPoint = {
|
|
152
|
+
lat: number;
|
|
153
|
+
lng: number;
|
|
154
|
+
};
|
|
136
155
|
export type Exid = string;
|
|
137
156
|
export type EntityByExid<Entity extends unknown> = Record<Exid, Entity>;
|
|
138
157
|
export type BatteryVoltage = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BBox, BoundingBox, DateType, Schedule, ScheduleLowercase, CameraExid, DetectionModel, PaginationParams, PpeLabel, ProjectExid, CameraDateRangeFilter, CameraFeatureFlag, TimelineDateInterval, Camera, AdminCamera, _360FloorV2, _360FloorId, PaginatedItems, DateRangeFilter } from "@evercam/api/types";
|
|
1
|
+
import { BBox, BoundingBox, DateType, Schedule, ScheduleLowercase, CameraExid, DetectionModel, PaginationParams, PpeLabel, ProjectExid, CameraDateRangeFilter, CameraFeatureFlag, TimelineDateInterval, Camera, AdminCamera, _360FloorV2, _360FloorId, PaginatedItems, DateRangeFilter, TuplePoint2D } from "@evercam/api/types";
|
|
2
2
|
import { DetectionLabel, DownloadFileType } from "@evercam/api/types";
|
|
3
3
|
export declare enum SiteAnalyticsMode {
|
|
4
4
|
Detections = "detections",
|
|
@@ -184,7 +184,7 @@ export type DetectionsExportRequestParams = DetectionsRequestParams & {
|
|
|
184
184
|
directDownload?: boolean;
|
|
185
185
|
};
|
|
186
186
|
export type SmartSearchHeatmapPoint = {
|
|
187
|
-
coordinates:
|
|
187
|
+
coordinates: TuplePoint2D;
|
|
188
188
|
detectionsCount: number;
|
|
189
189
|
};
|
|
190
190
|
export type SmartSearchHeatmapData = {
|
|
@@ -241,7 +241,7 @@ export type SmartSearchRequestPayload = {
|
|
|
241
241
|
fromDate?: string;
|
|
242
242
|
toDate?: string;
|
|
243
243
|
page?: number;
|
|
244
|
-
|
|
244
|
+
limit?: number;
|
|
245
245
|
threshold?: number;
|
|
246
246
|
};
|
|
247
247
|
type SmartSearchResultItemBase = {
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { ForgeView } from "@evercam/api/types/360";
|
|
2
|
+
import { Point2D, Point3D } from "@evercam/api/types/shared";
|
|
3
|
+
export declare enum SiteViewSoftwareType {
|
|
4
|
+
Revit = "Revit",
|
|
5
|
+
Navisworks = "Navisworks",
|
|
6
|
+
Drone = "Drone",
|
|
7
|
+
Synchro = "Synchro"
|
|
8
|
+
}
|
|
9
|
+
export declare enum SiteViewerType {
|
|
10
|
+
ITwin = "iTwin",
|
|
11
|
+
Cesium = "Cesium",
|
|
12
|
+
Forge = "Forge"
|
|
13
|
+
}
|
|
14
|
+
export type SiteViewCameraListItem = {
|
|
15
|
+
projectId: string;
|
|
16
|
+
projectName: string;
|
|
17
|
+
software: SiteViewSoftwareType;
|
|
18
|
+
type: SiteViewerType;
|
|
19
|
+
uniqueId: string;
|
|
20
|
+
integrationType?: string;
|
|
21
|
+
};
|
|
22
|
+
export type ForgeUrn = {
|
|
23
|
+
displayName: string;
|
|
24
|
+
urn: string;
|
|
25
|
+
isModelHostedByEvercamACC?: boolean;
|
|
26
|
+
};
|
|
27
|
+
export type ForgeAccAlignmentData = {
|
|
28
|
+
bbox: {
|
|
29
|
+
min: Point2D;
|
|
30
|
+
max: Point2D;
|
|
31
|
+
};
|
|
32
|
+
transform: number[];
|
|
33
|
+
};
|
|
34
|
+
export type TimelineItem = {
|
|
35
|
+
taskNumber: number;
|
|
36
|
+
taskID: string;
|
|
37
|
+
actualStartDate: string;
|
|
38
|
+
actualEndDate: string;
|
|
39
|
+
plannedStartDate: string;
|
|
40
|
+
plannedEndDate: string;
|
|
41
|
+
objectIDs: number[];
|
|
42
|
+
};
|
|
43
|
+
export type ForgeMarkerTransform = {
|
|
44
|
+
default: {
|
|
45
|
+
position: Point3D;
|
|
46
|
+
type: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
export type ForgeMarker = {
|
|
50
|
+
name: string;
|
|
51
|
+
cameraExid: string;
|
|
52
|
+
transforms: ForgeMarkerTransform;
|
|
53
|
+
};
|
|
54
|
+
export type ForgeProjectData = {
|
|
55
|
+
urns?: ForgeUrn[];
|
|
56
|
+
isEvercamAccount?: boolean;
|
|
57
|
+
accDrawingsAlignments?: Record<string, ForgeAccAlignmentData>;
|
|
58
|
+
timeline?: TimelineItem[];
|
|
59
|
+
savedView?: ForgeView;
|
|
60
|
+
markers?: ForgeMarker[];
|
|
61
|
+
};
|
|
62
|
+
export type ItwinModel = {
|
|
63
|
+
name: string;
|
|
64
|
+
iTwinId: string;
|
|
65
|
+
iModelId: string;
|
|
66
|
+
changeSetId?: string;
|
|
67
|
+
isIModel: boolean;
|
|
68
|
+
height?: number;
|
|
69
|
+
cesiumId?: number;
|
|
70
|
+
markerDistanceThreshold: number;
|
|
71
|
+
};
|
|
72
|
+
export type ItwinProjectData = {
|
|
73
|
+
models: ItwinModel[];
|
|
74
|
+
};
|
|
@@ -42,18 +42,58 @@ export type SnapshotTestResponse = {
|
|
|
42
42
|
status: string;
|
|
43
43
|
data: string;
|
|
44
44
|
};
|
|
45
|
+
export type SnapshotEmailDeliveryRequestPayload = {
|
|
46
|
+
snapshot: string;
|
|
47
|
+
recipients?: string[];
|
|
48
|
+
message?: string;
|
|
49
|
+
};
|
|
50
|
+
export type SnapshotEmailDeliveryResponsePayload = {
|
|
51
|
+
warning?: string;
|
|
52
|
+
};
|
|
45
53
|
export type DeleteSnapshotQueryParams = {
|
|
46
54
|
fromDate: DateType;
|
|
47
55
|
toDate: DateType;
|
|
48
56
|
adminEmail: string;
|
|
49
57
|
adminFullname: string;
|
|
50
58
|
};
|
|
51
|
-
export type
|
|
59
|
+
export type SnapshotTransfer = {
|
|
60
|
+
id: number;
|
|
61
|
+
sourceCamera: SnapshotTransferCamera;
|
|
62
|
+
targetCamera: SnapshotTransferCamera;
|
|
63
|
+
fromDate: DateType;
|
|
64
|
+
toDate: DateType;
|
|
65
|
+
overwriteExisting?: boolean | null;
|
|
66
|
+
deleteSource?: boolean | null;
|
|
67
|
+
requestor: SnapshotTransferRequestor;
|
|
68
|
+
status: SnapshotTransferStatus;
|
|
69
|
+
insertedAt: DateType;
|
|
70
|
+
attempts?: number | null;
|
|
71
|
+
errorMessage?: string | null;
|
|
72
|
+
snapshotsTransferred?: number | null;
|
|
73
|
+
};
|
|
74
|
+
export type SnapshotTransferCamera = {
|
|
75
|
+
id: number;
|
|
76
|
+
exid: CameraExid;
|
|
77
|
+
name: string;
|
|
78
|
+
};
|
|
79
|
+
export type SnapshotTransferRequestor = {
|
|
80
|
+
email: string;
|
|
81
|
+
firstname: string;
|
|
82
|
+
lastname: string;
|
|
83
|
+
};
|
|
84
|
+
export declare enum SnapshotTransferStatus {
|
|
85
|
+
Completed = "completed",
|
|
86
|
+
Failed = "failed",
|
|
87
|
+
Processing = "processing",
|
|
88
|
+
Pending = "pending",
|
|
89
|
+
Cancelled = "cancelled"
|
|
90
|
+
}
|
|
91
|
+
export type TransferCloudRecordingsQueryParams = PaginationParams & {
|
|
52
92
|
targetCameraExid: CameraExid;
|
|
53
93
|
fromDate: DateType;
|
|
54
94
|
toDate: DateType;
|
|
55
|
-
|
|
56
|
-
|
|
95
|
+
overwriteExisting?: boolean;
|
|
96
|
+
deleteSource?: boolean;
|
|
57
97
|
adminEmail?: string;
|
|
58
98
|
adminFullname?: string;
|
|
59
99
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DateType, Schedule } from "@evercam/api/types";
|
|
1
|
+
import { DateType, Point2D, Schedule } from "@evercam/api/types";
|
|
2
2
|
export declare enum TimelapseStatus {
|
|
3
3
|
Pending = 11,
|
|
4
4
|
Completed = 5,
|
|
@@ -7,7 +7,8 @@ export declare enum TimelapseStatus {
|
|
|
7
7
|
export declare enum TimelapseDuration {
|
|
8
8
|
ThirtySeconds = 30,
|
|
9
9
|
SixtySeconds = 60,
|
|
10
|
-
NintySeconds = 90
|
|
10
|
+
NintySeconds = 90,
|
|
11
|
+
TwoMinutes = 120
|
|
11
12
|
}
|
|
12
13
|
export type TimelapseVideoOptions = {
|
|
13
14
|
width?: number;
|
|
@@ -15,7 +16,9 @@ export type TimelapseVideoOptions = {
|
|
|
15
16
|
removeTimestamp: boolean;
|
|
16
17
|
smoothTransition: boolean;
|
|
17
18
|
evercamWatermark: boolean;
|
|
19
|
+
sectionBlur?: boolean;
|
|
18
20
|
timestampPosition?: TimestampPositionCoordinates;
|
|
21
|
+
blurRegions?: BlurRegionCoordinates[];
|
|
19
22
|
};
|
|
20
23
|
export type TimestampPositionCoordinates = {
|
|
21
24
|
x: number;
|
|
@@ -23,6 +26,7 @@ export type TimestampPositionCoordinates = {
|
|
|
23
26
|
w: number;
|
|
24
27
|
h: number;
|
|
25
28
|
};
|
|
29
|
+
export type BlurRegionCoordinates = Point2D[];
|
|
26
30
|
export type TimelapseLogoOptions = {
|
|
27
31
|
id?: number;
|
|
28
32
|
x: number;
|