@evercam/api 1.0.0-03c122778 → 1.0.0-04945bc61
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 +2 -0
- package/dist/api/api/3dFirebaseApi.d.ts +7 -1
- package/dist/api/api/adminApi.d.ts +24 -30
- package/dist/api/api/aiApi.d.ts +22 -44
- package/dist/api/api/authzApi.d.ts +7 -0
- package/dist/api/api/client/axios.d.ts +1 -0
- package/dist/api/api/evercamApi.d.ts +16 -6
- package/dist/api/api/evercamLabsApi.d.ts +5 -2
- package/dist/api/api/ingestApi.d.ts +30 -9
- 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 +180 -5
- package/dist/api/types/aconex.d.ts +102 -4
- package/dist/api/types/analytics.d.ts +76 -5
- package/dist/api/types/anpr.d.ts +5 -11
- package/dist/api/types/authz.d.ts +22 -0
- package/dist/api/types/automation.d.ts +51 -0
- package/dist/api/types/axios.d.ts +1 -0
- package/dist/api/types/camera.d.ts +14 -8
- package/dist/api/types/coolify.d.ts +2 -0
- package/dist/api/types/credentials.d.ts +1 -0
- package/dist/api/types/detections.d.ts +4 -18
- package/dist/api/types/gateReport.d.ts +4 -101
- package/dist/api/types/index.d.ts +1 -0
- package/dist/api/types/ingest.d.ts +4 -0
- package/dist/api/types/kit.d.ts +21 -0
- package/dist/api/types/planner.d.ts +4 -1
- package/dist/api/types/progressPhoto.d.ts +1 -31
- package/dist/api/types/project.d.ts +41 -3
- package/dist/api/types/recording.d.ts +1 -0
- package/dist/api/types/router.d.ts +19 -0
- package/dist/api/types/siteAnalytics.d.ts +132 -27
- 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 +6 -4
- package/dist/api/utils.d.ts +1 -0
- package/dist/index.js +746 -660
- 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 +8 -2
- package/dist/shared/types/imagePlayer.d.ts +1 -1
- package/package.json +4 -4
package/dist/api/types/360.d.ts
CHANGED
|
@@ -3,17 +3,149 @@ export type _360CameraParams = {
|
|
|
3
3
|
azimuthAngle: number;
|
|
4
4
|
polarAngle: number;
|
|
5
5
|
};
|
|
6
|
+
export type _360Vector3D = {
|
|
7
|
+
x: number;
|
|
8
|
+
y: number;
|
|
9
|
+
z: number;
|
|
10
|
+
};
|
|
11
|
+
export type _360Geolocation = {
|
|
12
|
+
latitude: number;
|
|
13
|
+
longitude: number;
|
|
14
|
+
};
|
|
15
|
+
export type _360CameraRotation = {
|
|
16
|
+
azimuthAngle: number;
|
|
17
|
+
polarAngle: number;
|
|
18
|
+
};
|
|
19
|
+
export type _360Marker3D = {
|
|
20
|
+
cameraPosition: _360Vector3D;
|
|
21
|
+
geolocation: _360Geolocation;
|
|
22
|
+
nextRoomId: _360MakerId;
|
|
23
|
+
position: _360Vector3D;
|
|
24
|
+
rotation: {
|
|
25
|
+
_order: "XYZ" | string;
|
|
26
|
+
_x: number;
|
|
27
|
+
_y: number;
|
|
28
|
+
_z: number;
|
|
29
|
+
isEuler: boolean;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
export type _360Tag = {
|
|
33
|
+
id: string;
|
|
34
|
+
tagType: string;
|
|
35
|
+
comment: string;
|
|
36
|
+
creationDate: number;
|
|
37
|
+
currentRoom: _360MakerId;
|
|
38
|
+
position: _360Vector3D;
|
|
39
|
+
cameraRotation: _360CameraRotation;
|
|
40
|
+
};
|
|
41
|
+
export type _360FloorId = string | number;
|
|
42
|
+
export type _360Walk = Record<_360FloorId, _360Floor>;
|
|
43
|
+
export type _360MakerId = string;
|
|
6
44
|
export type _360Floor = {
|
|
7
|
-
|
|
45
|
+
_3DMarkers: _360Marker3D[];
|
|
46
|
+
cameraRotation: _360CameraRotation;
|
|
47
|
+
fbxModel: string;
|
|
48
|
+
initialMarker: _360MakerId;
|
|
49
|
+
modelViewerFeatureFlag: boolean;
|
|
50
|
+
route: {
|
|
51
|
+
cameraHeadingOffset: string;
|
|
52
|
+
overlayID: number;
|
|
53
|
+
track: string;
|
|
54
|
+
};
|
|
55
|
+
sceneScale: number;
|
|
56
|
+
steps: number;
|
|
57
|
+
tags: Record<string, _360Tag>;
|
|
58
|
+
};
|
|
59
|
+
export type _360WalkV2 = {
|
|
60
|
+
archive: string;
|
|
61
|
+
date: string;
|
|
62
|
+
deviceSerial: string | null;
|
|
63
|
+
endPosition: unknown | null;
|
|
64
|
+
floor: string;
|
|
65
|
+
floorId: number;
|
|
66
|
+
id: number;
|
|
67
|
+
images: string[];
|
|
68
|
+
insertedAt: string;
|
|
69
|
+
mobileAudios: string[];
|
|
70
|
+
mobileAudiosArchive: string;
|
|
71
|
+
mobilePhotos: string[];
|
|
72
|
+
mobilePhotosArchive: string;
|
|
73
|
+
model: string;
|
|
8
74
|
name: string;
|
|
75
|
+
processingStatus: string;
|
|
76
|
+
projectId: string;
|
|
77
|
+
report: string;
|
|
78
|
+
route: unknown | null;
|
|
79
|
+
startPosition: unknown | null;
|
|
80
|
+
tusLinks: unknown | null;
|
|
81
|
+
updatedAt: string;
|
|
82
|
+
uploadedBy: string;
|
|
83
|
+
videoArchive: string;
|
|
84
|
+
videos: string[];
|
|
85
|
+
};
|
|
86
|
+
export type _360FloorV2 = {
|
|
87
|
+
id: _360FloorId;
|
|
88
|
+
assets: _360WalkV2[];
|
|
89
|
+
projectId: string;
|
|
90
|
+
name: string;
|
|
91
|
+
mapStyle: string;
|
|
92
|
+
hasOverlay: boolean;
|
|
93
|
+
isCalibrated: boolean;
|
|
94
|
+
createdBy: string | null;
|
|
95
|
+
overlayPosition: {
|
|
96
|
+
northEast: {
|
|
97
|
+
lat: number;
|
|
98
|
+
lng: number;
|
|
99
|
+
};
|
|
100
|
+
northWest: {
|
|
101
|
+
lat: number;
|
|
102
|
+
lng: number;
|
|
103
|
+
};
|
|
104
|
+
southEast: {
|
|
105
|
+
lat: number;
|
|
106
|
+
lng: number;
|
|
107
|
+
};
|
|
108
|
+
southWest: {
|
|
109
|
+
lat: number;
|
|
110
|
+
lng: number;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
insertedAt: string;
|
|
114
|
+
updatedAt: string;
|
|
9
115
|
};
|
|
10
116
|
export type _360Scene = {
|
|
11
117
|
date: string;
|
|
12
|
-
dateID:
|
|
13
|
-
floors:
|
|
118
|
+
dateID: number;
|
|
119
|
+
floors: {
|
|
120
|
+
floorID: _360FloorId;
|
|
121
|
+
name: string;
|
|
122
|
+
}[];
|
|
14
123
|
polarAngle: number;
|
|
15
124
|
azimuthAngle: number;
|
|
16
125
|
};
|
|
126
|
+
export type _360SceneRoute = {
|
|
127
|
+
cameraHeadingOffset?: number;
|
|
128
|
+
overlayID?: number;
|
|
129
|
+
track?: string;
|
|
130
|
+
};
|
|
131
|
+
export type _360FullProject = {
|
|
132
|
+
dates: _360SceneWithFloors[];
|
|
133
|
+
integrationType: string;
|
|
134
|
+
projectId: string;
|
|
135
|
+
projectName: string;
|
|
136
|
+
providerID: string;
|
|
137
|
+
providerPrefix: string;
|
|
138
|
+
providerSuffix: string;
|
|
139
|
+
timeline: string;
|
|
140
|
+
uniqueId: string;
|
|
141
|
+
};
|
|
142
|
+
export type _360FullFloor = _360Floor & {
|
|
143
|
+
id: _360FloorId;
|
|
144
|
+
name: string;
|
|
145
|
+
};
|
|
146
|
+
export type _360SceneWithFloors = _360Scene & {
|
|
147
|
+
floors: _360FullFloor[];
|
|
148
|
+
};
|
|
17
149
|
export type _360ProjectJsonResponse = {
|
|
18
150
|
dates: _360Scene[];
|
|
19
151
|
[key: string]: any;
|
|
@@ -27,6 +159,7 @@ export type MobileCaptureSnapshot = {
|
|
|
27
159
|
};
|
|
28
160
|
export declare enum _360UrlParams {
|
|
29
161
|
DateId = "date_id",
|
|
162
|
+
Date = "date",
|
|
30
163
|
Floor = "floor",
|
|
31
164
|
Marker = "marker",
|
|
32
165
|
PolarAngle = "polarAngle",
|
|
@@ -47,8 +180,7 @@ export declare enum _360AssetLabel {
|
|
|
47
180
|
export declare enum _360Feature {
|
|
48
181
|
BIM = "BIM",
|
|
49
182
|
Minimap = "Minimap",
|
|
50
|
-
Minimodel = "Minimodel"
|
|
51
|
-
MobilePhoto = "MobilePhoto"
|
|
183
|
+
Minimodel = "Minimodel"
|
|
52
184
|
}
|
|
53
185
|
export declare enum _360IntergrationType {
|
|
54
186
|
Evercam = "Evercam",
|
|
@@ -76,6 +208,49 @@ export type _360AssetsRequestPayload = {
|
|
|
76
208
|
floor: string;
|
|
77
209
|
uploadedBy?: string;
|
|
78
210
|
};
|
|
211
|
+
export type DrawingsRequestPayload = {
|
|
212
|
+
projectId?: string;
|
|
213
|
+
name?: string;
|
|
214
|
+
changedBy?: string;
|
|
215
|
+
mapStyle?: string;
|
|
216
|
+
startDate?: string;
|
|
217
|
+
endDate?: string;
|
|
218
|
+
id?: number;
|
|
219
|
+
page?: number;
|
|
220
|
+
limit?: number;
|
|
221
|
+
paginate?: boolean;
|
|
222
|
+
};
|
|
223
|
+
export type GenerateFloorPayload = {
|
|
224
|
+
overlay?: {
|
|
225
|
+
url: string;
|
|
226
|
+
title: string;
|
|
227
|
+
fileExtension: string;
|
|
228
|
+
};
|
|
229
|
+
changedBy: string;
|
|
230
|
+
name?: string;
|
|
231
|
+
mapStyle?: string;
|
|
232
|
+
overlayPositionCorners: {
|
|
233
|
+
northEast: {
|
|
234
|
+
lat: number;
|
|
235
|
+
lng: number;
|
|
236
|
+
};
|
|
237
|
+
northWest: {
|
|
238
|
+
lat: number;
|
|
239
|
+
lng: number;
|
|
240
|
+
};
|
|
241
|
+
southWest: {
|
|
242
|
+
lat: number;
|
|
243
|
+
lng: number;
|
|
244
|
+
};
|
|
245
|
+
southEast: {
|
|
246
|
+
lat: number;
|
|
247
|
+
lng: number;
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
export type _360QueueQueryParams = {
|
|
252
|
+
projectId?: string;
|
|
253
|
+
};
|
|
79
254
|
export type _360AssetsUploadPayload = {
|
|
80
255
|
targetPointsCount: number;
|
|
81
256
|
assetType: string;
|
|
@@ -4,26 +4,63 @@ export type AconexUserProjectsResponsePayload = Array<{
|
|
|
4
4
|
shortName: string;
|
|
5
5
|
startDate: string;
|
|
6
6
|
endDate: string;
|
|
7
|
+
active: boolean;
|
|
8
|
+
hidden: boolean;
|
|
7
9
|
}>;
|
|
8
|
-
export type
|
|
10
|
+
export type AconexDocumentSchemaResponsePayload = Array<{
|
|
11
|
+
dataType: AconexDocumentDataType;
|
|
12
|
+
identifier: AconexIdentifiers;
|
|
13
|
+
fieldName: string;
|
|
14
|
+
modifiedFieldName?: string;
|
|
15
|
+
mandatoryStatus: AconexMandatoryStatus;
|
|
16
|
+
schemaValues?: Array<{
|
|
17
|
+
id: string;
|
|
18
|
+
value: string;
|
|
19
|
+
}>;
|
|
20
|
+
}>;
|
|
21
|
+
export type AconexDocumentTypeSchemaResponsePayload = Array<{
|
|
9
22
|
dataType: AconexDocumentDataType;
|
|
10
23
|
identifier: string;
|
|
24
|
+
fieldName: string;
|
|
25
|
+
modifiedFieldName?: string;
|
|
26
|
+
mandatoryStatus: string;
|
|
27
|
+
specifications?: Array<AconexFieldSpecification>;
|
|
28
|
+
}>;
|
|
29
|
+
export type AconexDocumentSchemaField = {
|
|
30
|
+
dataType: AconexDocumentDataType;
|
|
31
|
+
identifier: AconexIdentifiers | string;
|
|
11
32
|
schemaValues?: Array<{
|
|
12
33
|
id: string;
|
|
13
34
|
value: string;
|
|
14
35
|
}>;
|
|
15
36
|
fieldName: string;
|
|
37
|
+
modifiedFieldName?: string;
|
|
16
38
|
mandatoryStatus: AconexMandatoryStatus;
|
|
17
39
|
componentType?: AconexFormComponentType;
|
|
18
40
|
items?: Array<any>;
|
|
19
41
|
disabled?: boolean;
|
|
42
|
+
specifications?: Array<AconexFieldSpecification>;
|
|
43
|
+
};
|
|
44
|
+
export type AconexFormSchema = Record<AconexIdentifiers | string, AconexDocumentSchemaField>;
|
|
45
|
+
export type AconexFieldSpecification = {
|
|
46
|
+
name: string;
|
|
47
|
+
options: Array<string>;
|
|
20
48
|
};
|
|
21
49
|
export declare enum AconexDocumentDataType {
|
|
22
|
-
Long = "LONG",
|
|
23
|
-
Integer = "INTEGER",
|
|
24
50
|
String = "STRING",
|
|
25
51
|
Boolean = "BOOLEAN",
|
|
26
|
-
|
|
52
|
+
Ratio = "RATIO",
|
|
53
|
+
Integer = "INTEGER",
|
|
54
|
+
Double = "DOUBLE",
|
|
55
|
+
Long = "LONG",
|
|
56
|
+
Date = "DATE",
|
|
57
|
+
Complex = "COMPLEX",
|
|
58
|
+
SingleLineText = "SINGLE_LINE_TEXT",
|
|
59
|
+
MultiLineText = "MULTI_LINE_TEXT",
|
|
60
|
+
SingleSelect = "SINGLE_SELECT",
|
|
61
|
+
MultiSelect = "MULTI_SELECT",
|
|
62
|
+
User = "USER",
|
|
63
|
+
Number = "NUMBER"
|
|
27
64
|
}
|
|
28
65
|
export declare enum AconexFormComponentType {
|
|
29
66
|
Select = "SelectField",
|
|
@@ -43,3 +80,64 @@ export type AconexEditedImageUploadRequestPayload = {
|
|
|
43
80
|
projectExid: string;
|
|
44
81
|
snapshot: string;
|
|
45
82
|
};
|
|
83
|
+
export declare enum AconexIdentifiers {
|
|
84
|
+
DocumentNumber = "DocumentNumber",
|
|
85
|
+
DocumentTypeId = "DocumentTypeId",
|
|
86
|
+
Revision = "Revision",
|
|
87
|
+
HasFile = "HasFile",
|
|
88
|
+
AccessList = "AccessList",
|
|
89
|
+
AsBuiltRequired = "AsBuiltRequired",
|
|
90
|
+
Attribute1 = "Attribute1",
|
|
91
|
+
Attribute2 = "Attribute2",
|
|
92
|
+
Attribute3 = "Attribute3",
|
|
93
|
+
Attribute4 = "Attribute4",
|
|
94
|
+
Author = "Author",
|
|
95
|
+
AuthorisedBy = "AuthorisedBy",
|
|
96
|
+
Category = "Category",
|
|
97
|
+
Check1 = "Check1",
|
|
98
|
+
Check2 = "Check2",
|
|
99
|
+
Comments = "Comments",
|
|
100
|
+
Comments2 = "Comments2",
|
|
101
|
+
ContractNumber = "ContractNumber",
|
|
102
|
+
ContractDeliverable = "ContractDeliverable",
|
|
103
|
+
ContractorDocumentNumber = "ContractorDocumentNumber",
|
|
104
|
+
ContractorRev = "ContractorRev",
|
|
105
|
+
Date1 = "Date1",
|
|
106
|
+
Date2 = "Date2",
|
|
107
|
+
DateApproved = "DateApproved",
|
|
108
|
+
DateCreated = "DateCreated",
|
|
109
|
+
DateForReview = "DateForReview",
|
|
110
|
+
DateReviewed = "DateReviewed",
|
|
111
|
+
Discipline = "Discipline",
|
|
112
|
+
DocumentStatusId = "DocumentStatusId",
|
|
113
|
+
MilestoneDate = "MilestoneDate",
|
|
114
|
+
PackageNumber = "PackageNumber",
|
|
115
|
+
PercentageComplete = "PercentageComplete",
|
|
116
|
+
PlannedSubmissionDate = "PlannedSubmissionDate",
|
|
117
|
+
PrintSize = "PrintSize",
|
|
118
|
+
ProjectField1 = "ProjectField1",
|
|
119
|
+
ProjectField2 = "ProjectField2",
|
|
120
|
+
ProjectField3 = "ProjectField3",
|
|
121
|
+
Reference = "Reference",
|
|
122
|
+
RevisionDate = "RevisionDate",
|
|
123
|
+
Scale = "Scale",
|
|
124
|
+
SelectList1 = "SelectList1",
|
|
125
|
+
SelectList2 = "SelectList2",
|
|
126
|
+
SelectList3 = "SelectList3",
|
|
127
|
+
SelectList4 = "SelectList4",
|
|
128
|
+
SelectList5 = "SelectList5",
|
|
129
|
+
SelectList6 = "SelectList6",
|
|
130
|
+
SelectList7 = "SelectList7",
|
|
131
|
+
SelectList8 = "SelectList8",
|
|
132
|
+
SelectList9 = "SelectList9",
|
|
133
|
+
SelectList10 = "SelectList10",
|
|
134
|
+
TagNumber = "TagNumber",
|
|
135
|
+
Title = "Title",
|
|
136
|
+
ToClientDate = "ToClientDate",
|
|
137
|
+
UploadDate = "UploadDate",
|
|
138
|
+
UploadedBy = "UploadedBy",
|
|
139
|
+
Vdrcode = "Vdrcode",
|
|
140
|
+
VendorDocumentNumber = "VendorDocumentNumber",
|
|
141
|
+
VendorRev = "VendorRev",
|
|
142
|
+
AutoNumber = "AutoNumber"
|
|
143
|
+
}
|
|
@@ -43,7 +43,8 @@ export declare enum AnalyticsEventPageId {
|
|
|
43
43
|
BimCompareInfo = "BimCompareInfo",
|
|
44
44
|
WeatherReport = "WeatherReport",
|
|
45
45
|
PpeReport = "PpeReport",
|
|
46
|
-
SmartSearch = "SmartSearch"
|
|
46
|
+
SmartSearch = "SmartSearch",
|
|
47
|
+
Drawings = "Drawings"
|
|
47
48
|
}
|
|
48
49
|
export declare enum AnalyticsEvent {
|
|
49
50
|
PageView = "PageView",
|
|
@@ -77,6 +78,19 @@ export declare enum AnalyticsEvent {
|
|
|
77
78
|
SettingsConnectorsRemoveVoyageControlConnection = "RemoveVoyageControl",
|
|
78
79
|
SettingsConnectorsToggleConnectorPromptDialog = "ToggleConnectorPromptDialog",
|
|
79
80
|
SettingsConnectorsToggleVoyageControlDialog = "ToggleVoyageControlDialog",
|
|
81
|
+
WidgetsSelectTypeThreeSixty = "Widgets-SelectType360",
|
|
82
|
+
WidgetsSelectProject = "SelectProject",
|
|
83
|
+
WidgetsSelect360Date = "Select360Date",
|
|
84
|
+
WidgetsSelect360Floor = "Select360Floor",
|
|
85
|
+
WidgetsSelect360Marker = "Select360Marker",
|
|
86
|
+
Widgets360LockMedia = "360LockMedia",
|
|
87
|
+
WidgetsPauseWidget = "PauseWidget",
|
|
88
|
+
WidgetsEditWidget = "EditWidget",
|
|
89
|
+
WidgetsOpenCredentials = "OpenCredentials",
|
|
90
|
+
WidgetsCopyEmbeddedCode = "CopyEmbeddedCode",
|
|
91
|
+
WidgetsCopyIFrameCode = "CopyIFrameCode",
|
|
92
|
+
WidgetsCopyURLCode = "CopyURLCode",
|
|
93
|
+
WidgetsDeleteWidget = "DeleteWidget",
|
|
80
94
|
WidgetsAddWidgetClick = "AddWidget",
|
|
81
95
|
WidgetsCancelClick = "Cancel",
|
|
82
96
|
WidgetsEditHeight = "EditHeight",
|
|
@@ -103,6 +117,7 @@ export declare enum AnalyticsEvent {
|
|
|
103
117
|
WidgetsSettingToggleRestrictRecentImages = "ToggleRestrictRecentImages",
|
|
104
118
|
WidgetsSettingToggleZoom = "ToggleZoom",
|
|
105
119
|
WidgetsTogglePublicWidget = "TogglePublicWidget",
|
|
120
|
+
WidgetsToggleRestrictRecordingsRange = "ToggleRestrictRecordingsRange",
|
|
106
121
|
PlayerSelectCamera = "Player-SelectCamera",
|
|
107
122
|
PlayerDownload = "Player-Download",
|
|
108
123
|
PlayerToggleFullscreen = "Player-ToggleFullscreen",
|
|
@@ -259,8 +274,17 @@ export declare enum AnalyticsEvent {
|
|
|
259
274
|
SharingSortBy = "SortBy",
|
|
260
275
|
SharingChangeAccessRight = "ChangeAccessRight",
|
|
261
276
|
ThreeSixtyGallery = "Gallery",
|
|
277
|
+
ThreeSixtyGalleryFilterAssetTypes = "Gallery-FilterAssetTypes",
|
|
278
|
+
ThreeSixtyGalleryFilterDateRange = "Gallery-FilterDateRange",
|
|
279
|
+
ThreeSixtyGalleryFilterFeatures = "Gallery-FilterFeatures",
|
|
280
|
+
ThreeSixtyGalleryFilterFloorName = "Gallery-FilterFloorName",
|
|
281
|
+
ThreeSixtyGalleryFilterUploadedBy = "Gallery-FilterUploadedBy",
|
|
282
|
+
ThreeSixtyGalleryTimelineSelectMilestoneItem = "Gallery-TimelineSelectMilestoneItem",
|
|
262
283
|
ThreeSixtyGalleryTimelineDateClick = "Gallery-TimelineDateClick",
|
|
263
284
|
ThreeSixtyGalleryToggleUploadDialog = "Gallery-ToggleUploadDialog",
|
|
285
|
+
ThreeSixtyGalleryToggleFilters = "Gallery-ToggleFilters",
|
|
286
|
+
ThreeSixtyGalleryUpdateFloorName = "Gallery-UpdateFloorName",
|
|
287
|
+
ThreeSixtyGalleryEditWalkName = "Gallery-EditWalkName",
|
|
264
288
|
ThreeSixtyChangeDate = "ChangeDate",
|
|
265
289
|
ThreeSixtyChangeFloor = "ChangeFloor",
|
|
266
290
|
ThreeSixtyCloseCompare = "CloseCompare",
|
|
@@ -297,7 +321,6 @@ export declare enum AnalyticsEvent {
|
|
|
297
321
|
ThreeSixtyTourToggleLoop = "Tour-ToggleLoop",
|
|
298
322
|
ThreeSixtyUnlockCompare = "UnlockCompare",
|
|
299
323
|
ThreeSixtyUnlockForgeBIM = "UnlockForgeBIM",
|
|
300
|
-
ThreeSixtyUpdateFloorName = "UpdateFloorName",
|
|
301
324
|
ThreeSixtyUploadAssets = "UploadAssets",
|
|
302
325
|
DroneAreaToolClick = "AreaTool-Click",
|
|
303
326
|
DroneChangeDate = "ChangeDate",
|
|
@@ -359,7 +382,31 @@ export declare enum AnalyticsEvent {
|
|
|
359
382
|
PlannerUploadSitePlanDrawing = "UploadSitePlanDrawing",
|
|
360
383
|
PlannerZoomIn = "ZoomIn",
|
|
361
384
|
PlannerZoomOut = "ZoomOut",
|
|
385
|
+
DrawingCreateSave = "CreateSave",
|
|
386
|
+
DrawingUpdateSave = "UpdateSave",
|
|
387
|
+
DrawingEditName = "EditName",
|
|
388
|
+
DrawingUpdateName = "UpdateName",
|
|
389
|
+
DrawingToggleSaveDialog = "ToggleSaveDialog",
|
|
390
|
+
DrawingClickHome = "ClickHome",
|
|
391
|
+
DrawingsUploadDrawing = "UploadDrawing",
|
|
392
|
+
DrawingsCreateDrawing = "CreateDrawing",
|
|
393
|
+
DrawingToggleFilter = "ToggleFilter",
|
|
394
|
+
DrawingToggleMapStyle = "ToggleMapStyle",
|
|
395
|
+
DrawingToggleMapLabels = "ToggleMapLabels",
|
|
396
|
+
DrawingToggleCamerasLabels = "ToggleCamerasLabels",
|
|
397
|
+
DrawingToggleCamerasVisibility = "ToggleCamerasVisibility",
|
|
398
|
+
DrawingToggleTransparencyMode = "ToggleTransparencyMode",
|
|
399
|
+
DrawingChooseDrawing = "ChooseDrawing",
|
|
400
|
+
DrawingChangeLocation = "ChangeLocation",
|
|
401
|
+
DrawingFilterDateRange = "FilterDateRange",
|
|
402
|
+
DrawingFilterDrawingName = "FilterDrawingName",
|
|
403
|
+
DrawingFilterCreatedBy = "FilterCreatedBy",
|
|
404
|
+
DrawingFilterMapStyle = "FilterMapStyle",
|
|
405
|
+
DrawingToggleRotate = "ToggleRotate",
|
|
406
|
+
DrawingToggleScale = "ToggleScale",
|
|
407
|
+
DrawingOpenExistingDrawing = "OpenExistingDrawing",
|
|
362
408
|
MarkerClicked = "MarkerClicked",
|
|
409
|
+
MarkerSelected = "MarkerSelected",
|
|
363
410
|
TimelapseSelectCustomPeriod = "SelectCustomPeriod",
|
|
364
411
|
TimelapseToggleCustomScheduleDialog = "ToggleCustomScheduleDialog",
|
|
365
412
|
TimelapseSaveCustomSchedule = "SaveCustomSchedule",
|
|
@@ -389,12 +436,16 @@ export declare enum AnalyticsEvent {
|
|
|
389
436
|
ProgressPhotoResumeDelete = "ProgressPhoto-ResumeDelete",
|
|
390
437
|
ProgressPhotoSelectType = "ProgressPhoto-SelectType",
|
|
391
438
|
ProgressPhotoSelectCameras = "ProgressPhoto-SelectCameras",
|
|
439
|
+
ProgressPhotoToggleSelectAllOnlineCameras = "ProgressPhoto-ToggleSelectAllOnlineCameras",
|
|
440
|
+
ProgressPhotoToggleSelectAllCameras = "ProgressPhoto-ToggleSelectAllCameras",
|
|
441
|
+
ProgressPhotoClearAllCameras = "ProgressPhoto-ClearAllCameras",
|
|
442
|
+
ProgressPhotoEditCamerasSearchFilter = "ProgressPhoto-EditCamerasSearchFilter",
|
|
392
443
|
ProgressPhotoSelectDays = "ProgressPhoto-SelectDays",
|
|
393
444
|
ProgressPhotoSelectMember = "ProgressPhoto-SelectMember",
|
|
394
445
|
ProgressPhotoSelectProvider = "ProgressPhoto-SelectProvider",
|
|
395
446
|
ProgressPhotoSelectTime = "ProgressPhoto-SelectTime",
|
|
396
447
|
ProgressPhotoSelectTimezone = "ProgressPhoto-SelectTimezone",
|
|
397
|
-
|
|
448
|
+
ProgressPhotoEditSelectedCameras = "ProgressPhoto-EditSelectedCameras",
|
|
398
449
|
ProgressPhotoToggleCreateDialog = "ProgressPhoto-ToggleCreateDialog",
|
|
399
450
|
ProgressPhotoToggleEditDialog = "ProgressPhoto-ToggleEditDialog",
|
|
400
451
|
ProgressPhotoUnsubscribeUser = "ProgressPhoto-UnsubscribeUser",
|
|
@@ -452,6 +503,7 @@ export declare enum AnalyticsEvent {
|
|
|
452
503
|
GateReportToggleThumbnails = "ToggleThumbnails",
|
|
453
504
|
PpeTimelineDateClick = "PpeTimeline-DateClick",
|
|
454
505
|
HelpMenuToggleMenuButton = "HelpMenu-ToggleMenuButton",
|
|
506
|
+
HelpMenuOpenProjectContactsDialog = "HelpMenu-OpenProjectContactsDialog",
|
|
455
507
|
HelpMenuOpenLiveChat = "HelpMenu-OpenLiveChat",
|
|
456
508
|
HelpMenuClickTutorialsLink = "HelpMenu-ClickTutorialsLink",
|
|
457
509
|
HelpMenuClickWhatsNewLink = "HelpMenu-ClickWhatsNewLink",
|
|
@@ -468,6 +520,24 @@ export declare enum AnalyticsEvent {
|
|
|
468
520
|
ExportPdf = "ExportPdf",
|
|
469
521
|
ExportCsv = "ExportCsv",
|
|
470
522
|
FilterCameras = "FilterCameras",
|
|
523
|
+
CompareSelectProvider = "Compare-SelectProvider",
|
|
524
|
+
CompareEditSelectedCameras = "Compare-EditSelectedCameras",
|
|
525
|
+
CompareEdit = "Compare-Edit",
|
|
526
|
+
CompareSelectTimezone = "Compare-SelectTimezone",
|
|
527
|
+
CompareSelectMember = "Compare-SelectMember",
|
|
528
|
+
CompareToggleSelectAllOnlineCameras = "Compare-ToggleSelectAllOnlineCameras",
|
|
529
|
+
CompareToggleSelectAllCameras = "Compare-ToggleSelectAllCameras",
|
|
530
|
+
CompareClearAllCameras = "Compare-ClearAllCameras",
|
|
531
|
+
CompareEditCamerasSearchFilter = "Compare-EditCamerasSearchFilter",
|
|
532
|
+
AutomationsSelectProgressPhoto = "SelectProgressPhoto",
|
|
533
|
+
AutomationsSelectCompare = "SelectCompare",
|
|
534
|
+
AutomationsCreateCompare = "CreateCompare",
|
|
535
|
+
AutomationToggleEditDialog = "ToggleEditDialog",
|
|
536
|
+
AutomationToggleCreateDialog = "ToggleCreateDialog",
|
|
537
|
+
AutomationTypeName = "TypeName",
|
|
538
|
+
CompareSelectDays = "Compare-SelectDays",
|
|
539
|
+
CompareSelectDelay = "Compare-SelectDelay",
|
|
540
|
+
CompareSelectTime = "Compare-SelectTime",
|
|
471
541
|
SmartSearchToggleQueryBuilder = "SmartSearch-ToggleQueryBuilder",
|
|
472
542
|
SmartSearchToggleQuerySelector = "SmartSearch-ToggleQuerySelector",
|
|
473
543
|
SmartSearchDeleteComponent = "SmartSearch-DeleteComponent",
|
|
@@ -480,11 +550,12 @@ export declare enum AnalyticsEvent {
|
|
|
480
550
|
SmartSearchFilterSavedQueries = "SmartSearch-FilterSavedQueries",
|
|
481
551
|
SmartSearchThumbnailHover = "SmartSearch-ThumbnailHover",
|
|
482
552
|
SmartSearchThumbnailError = "SmartSearch-ThumbnailError",
|
|
483
|
-
|
|
553
|
+
SmartSearchViewSelected = "SmartSearch-ViewSelected",
|
|
484
554
|
SmartSearchOptionClicked = "SmartSearch-OptionClicked",
|
|
485
555
|
SmartSearchEditQuery = "SmartSearch-EditQuery",
|
|
486
556
|
SmartSearchDeleteQuery = "SmartSearch-DeleteQuery",
|
|
487
557
|
SmartSearchSaveQuery = "SmartSearch-SaveQuery",
|
|
488
558
|
SmartSearchThumbnailPlay = "SmartSearch-ThumbnailPlay",
|
|
489
|
-
SmartSearchExportFile = "SmartSearch-ExportFile"
|
|
559
|
+
SmartSearchExportFile = "SmartSearch-ExportFile",
|
|
560
|
+
SmartSearchDownloadHeatmapImage = "SmartSearch-DownloadHeatmapImage"
|
|
490
561
|
}
|
package/dist/api/types/anpr.d.ts
CHANGED
|
@@ -2,16 +2,6 @@ import { BoundingBox, CameraExid, DateType, GateReportVehicleType, TimelinePreci
|
|
|
2
2
|
export type AnprQueryParams = {
|
|
3
3
|
page?: number;
|
|
4
4
|
limit?: number;
|
|
5
|
-
firstSeen?: {
|
|
6
|
-
gte: DateType;
|
|
7
|
-
};
|
|
8
|
-
lastSeen?: {
|
|
9
|
-
lte: DateType;
|
|
10
|
-
};
|
|
11
|
-
captureTime?: {
|
|
12
|
-
gte?: DateType;
|
|
13
|
-
lt?: DateType;
|
|
14
|
-
};
|
|
15
5
|
direction?: {
|
|
16
6
|
eq?: string;
|
|
17
7
|
} | string;
|
|
@@ -21,7 +11,11 @@ export type AnprQueryParams = {
|
|
|
21
11
|
sort?: string;
|
|
22
12
|
fromDate?: DateType;
|
|
23
13
|
toDate?: DateType;
|
|
24
|
-
|
|
14
|
+
camerasExid?: CameraExid[];
|
|
15
|
+
vehicleTypes?: GateReportVehicleType[];
|
|
16
|
+
isDuplicate?: boolean;
|
|
17
|
+
isPostprocessed?: boolean;
|
|
18
|
+
isPlate?: boolean;
|
|
25
19
|
};
|
|
26
20
|
export type AnprCountsQueryParams = {
|
|
27
21
|
precision: TimelinePrecision;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare enum RoleResourceType {
|
|
2
|
+
Camera = "camera",
|
|
3
|
+
Project = "project"
|
|
4
|
+
}
|
|
5
|
+
export type Role = {
|
|
6
|
+
id: number;
|
|
7
|
+
name: string;
|
|
8
|
+
resource: string;
|
|
9
|
+
resourceType: RoleResourceType;
|
|
10
|
+
permissions: string[];
|
|
11
|
+
subRoles?: Array<{
|
|
12
|
+
resourceId: string;
|
|
13
|
+
roleId: number;
|
|
14
|
+
}>;
|
|
15
|
+
};
|
|
16
|
+
export type ProjectResourceRole = Role & {
|
|
17
|
+
resourceType: RoleResourceType.Project;
|
|
18
|
+
};
|
|
19
|
+
export type CameraResourceRole = Omit<Role, "subRoles"> & {
|
|
20
|
+
resourceType: RoleResourceType.Camera;
|
|
21
|
+
};
|
|
22
|
+
export type ProjectRoleRequestPayload = Omit<Role, "id" | "resource" | "resourceType">;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AconexIdentifiers, CameraExid } from "@evercam/api/types";
|
|
1
2
|
export declare enum AutomationProvider {
|
|
2
3
|
Aconex = "aconex",
|
|
3
4
|
Procore = "procore",
|
|
@@ -8,3 +9,53 @@ export declare enum AutomationType {
|
|
|
8
9
|
Photo = "photo",
|
|
9
10
|
Compare = "compare"
|
|
10
11
|
}
|
|
12
|
+
export type AutomationCompareConfig = {
|
|
13
|
+
compareDelay: number;
|
|
14
|
+
};
|
|
15
|
+
export type AutomationEmailProviderConfig = {
|
|
16
|
+
recipients: string | string[];
|
|
17
|
+
};
|
|
18
|
+
export type AutomationProcoreProviderConfig = {
|
|
19
|
+
companyId: number;
|
|
20
|
+
companyName: string;
|
|
21
|
+
projectId: number;
|
|
22
|
+
projectName: string;
|
|
23
|
+
categoryId: number;
|
|
24
|
+
categoryName: string;
|
|
25
|
+
};
|
|
26
|
+
export type AutomationAconexProviderConfig = {
|
|
27
|
+
projectId: number;
|
|
28
|
+
projectName: string;
|
|
29
|
+
} & Partial<Record<AconexIdentifiers, string | number | boolean>>;
|
|
30
|
+
export type AutomationAutodeskProviderConfig = {
|
|
31
|
+
hubId: number;
|
|
32
|
+
hubName: string;
|
|
33
|
+
projectId: number;
|
|
34
|
+
projectName: string;
|
|
35
|
+
folderId: number;
|
|
36
|
+
accFileType: string;
|
|
37
|
+
accFolderType: string;
|
|
38
|
+
folderName: string;
|
|
39
|
+
};
|
|
40
|
+
export type AutomationProviderConfig = AutomationEmailProviderConfig | AutomationProcoreProviderConfig | AutomationAconexProviderConfig | AutomationAutodeskProviderConfig;
|
|
41
|
+
export type AutomationOptionsConfig = AutomationCompareConfig | {};
|
|
42
|
+
export type AutomationConfig = AutomationProviderConfig & AutomationOptionsConfig;
|
|
43
|
+
export type Automation = {
|
|
44
|
+
cameraExids: CameraExid[];
|
|
45
|
+
name: string;
|
|
46
|
+
subject?: string;
|
|
47
|
+
provider: AutomationProvider;
|
|
48
|
+
type: AutomationType;
|
|
49
|
+
config: AutomationConfig;
|
|
50
|
+
notifyDays: string[];
|
|
51
|
+
notifyTime: string;
|
|
52
|
+
timezone: string;
|
|
53
|
+
isPaused: boolean;
|
|
54
|
+
restrictedCameraExids?: string[];
|
|
55
|
+
};
|
|
56
|
+
export declare enum AutomationConfigStep {
|
|
57
|
+
Type = "type",
|
|
58
|
+
Cameras = "cameras",
|
|
59
|
+
Settings = "settings",
|
|
60
|
+
Destination = "destination"
|
|
61
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { AuditLogActionType, DateTime_Z_micros, DateType, EntityByExid, NvrDeviceType, PaginationParams, PowerSchedule, PowerType, ProjectExid, Schedule } from "@/types";
|
|
1
|
+
import { AuditLogActionType, DateTime_Z_micros, DateType, EntityByExid, NvrDeviceType, PaginationParams, PowerSchedule, PowerType, ProjectExid, ProjectFeatureFlag, Schedule } from "@/types";
|
|
2
|
+
import { DateRangeFilter } from "@/types/time";
|
|
2
3
|
export type CameraExid = string;
|
|
3
4
|
export type CamerasByExid = EntityByExid<Camera>;
|
|
4
5
|
export type Cartesian3 = {
|
|
@@ -135,7 +136,7 @@ export type AdminCamera = {
|
|
|
135
136
|
pitch: null;
|
|
136
137
|
powerSchedule: Schedule;
|
|
137
138
|
projectExid: string;
|
|
138
|
-
projectFeatureFlags: [];
|
|
139
|
+
projectFeatureFlags: ProjectFeatureFlag[];
|
|
139
140
|
projectId: number;
|
|
140
141
|
projectName: string;
|
|
141
142
|
ptz: false;
|
|
@@ -154,6 +155,7 @@ export type AdminCamera = {
|
|
|
154
155
|
userId: number;
|
|
155
156
|
zohoId: string;
|
|
156
157
|
thumbnailUrl?: string;
|
|
158
|
+
sharedWithConstruction: boolean;
|
|
157
159
|
};
|
|
158
160
|
export type CameraMapMarker = {
|
|
159
161
|
isOnline: boolean;
|
|
@@ -176,13 +178,14 @@ export declare enum CameraStatus {
|
|
|
176
178
|
UnderMaintenance = "under_maintenance",
|
|
177
179
|
WaitingForSiteVisit = "waiting_for_site_visit"
|
|
178
180
|
}
|
|
179
|
-
export declare enum
|
|
180
|
-
High = "
|
|
181
|
-
Moderate = "
|
|
182
|
-
Low = "
|
|
183
|
-
NoChange = "
|
|
184
|
-
Default = "
|
|
181
|
+
export declare enum IntensityChange {
|
|
182
|
+
High = "High",
|
|
183
|
+
Moderate = "Moderate",
|
|
184
|
+
Low = "Low",
|
|
185
|
+
NoChange = "No change",
|
|
186
|
+
Default = "Default"
|
|
185
187
|
}
|
|
188
|
+
export declare const IntensityChangeColorMap: Record<IntensityChange, string>;
|
|
186
189
|
export declare enum CameraFeatureFlag {
|
|
187
190
|
EdgeVideo = "edge_video",
|
|
188
191
|
BimCompare = "bim_compare",
|
|
@@ -530,3 +533,6 @@ export declare enum BimType {
|
|
|
530
533
|
TwoD = "2D",
|
|
531
534
|
Forge = "Forge"
|
|
532
535
|
}
|
|
536
|
+
export type CameraDateRangeFilter = DateRangeFilter & {
|
|
537
|
+
cameraExid: CameraExid;
|
|
538
|
+
};
|