@evercam/api 1.0.0-94830523a → 1.0.0-95d4e9e69
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 +8 -1
- package/dist/api/api/adminApi.d.ts +69 -82
- package/dist/api/api/aiApi.d.ts +61 -80
- package/dist/api/api/authzApi.d.ts +32 -15
- package/dist/api/api/client/axios.d.ts +2 -1
- package/dist/api/api/client/swr/Swr.d.ts +1 -1
- package/dist/api/api/evercamApi.d.ts +79 -100
- package/dist/api/api/evercamLabsApi.d.ts +6 -3
- package/dist/api/api/exNvrApi.d.ts +1 -1
- package/dist/api/api/ingestApi.d.ts +105 -34
- package/dist/api/api/ptzApi.d.ts +12 -3
- package/dist/api/api/videoWallApi.d.ts +7 -7
- package/dist/api/api/weatherApi.d.ts +2 -2
- package/dist/api/types/360.d.ts +184 -7
- package/dist/api/types/aconex.d.ts +104 -6
- package/dist/api/types/admin.d.ts +51 -0
- package/dist/api/types/analytics.d.ts +99 -14
- package/dist/api/types/anpr.d.ts +24 -13
- package/dist/api/types/auditLogs.d.ts +1 -1
- package/dist/api/types/authz.d.ts +60 -0
- package/dist/api/types/autodesk.d.ts +7 -7
- package/dist/api/types/automation.d.ts +86 -1
- package/dist/api/types/axios.d.ts +10 -4
- package/dist/api/types/bim.d.ts +11 -5
- package/dist/api/types/camera.d.ts +89 -76
- package/dist/api/types/comments.d.ts +4 -8
- package/dist/api/types/company.d.ts +42 -1
- package/dist/api/types/compare.d.ts +20 -5
- package/dist/api/types/connector.d.ts +2 -5
- package/dist/api/types/coolify.d.ts +20 -2
- package/dist/api/types/copilot.d.ts +1 -1
- package/dist/api/types/credentials.d.ts +1 -0
- package/dist/api/types/detections.d.ts +17 -22
- package/dist/api/types/gateReport.d.ts +46 -150
- package/dist/api/types/hdd.d.ts +26 -1
- package/dist/api/types/index.d.ts +4 -0
- package/dist/api/types/ingest.d.ts +89 -2
- package/dist/api/types/kit.d.ts +33 -5
- package/dist/api/types/media.d.ts +1 -1
- package/dist/api/types/notification.d.ts +32 -2
- package/dist/api/types/planner.d.ts +4 -1
- package/dist/api/types/posthog.d.ts +15 -0
- package/dist/api/types/procore.d.ts +13 -6
- package/dist/api/types/progressPhoto.d.ts +6 -32
- package/dist/api/types/project.d.ts +131 -18
- package/dist/api/types/recording.d.ts +3 -3
- package/dist/api/types/recycleBin.d.ts +1 -1
- package/dist/api/types/router.d.ts +20 -1
- package/dist/api/types/shared.d.ts +11 -4
- package/dist/api/types/shares.d.ts +6 -144
- package/dist/api/types/sim.d.ts +6 -6
- package/dist/api/types/siteAnalytics.d.ts +191 -46
- package/dist/api/types/smartSeach.d.ts +5 -0
- package/dist/api/types/snapshots.d.ts +1 -1
- package/dist/api/types/storyblok.d.ts +40 -0
- package/dist/api/types/streaming.d.ts +3 -3
- package/dist/api/types/tag.d.ts +1 -1
- package/dist/api/types/time.d.ts +4 -18
- package/dist/api/types/timelapse.d.ts +3 -4
- package/dist/api/types/user.d.ts +105 -30
- package/dist/api/types/videoWall.d.ts +47 -14
- package/dist/api/types/weather.d.ts +77 -11
- package/dist/api/types/widget.d.ts +76 -15
- package/dist/api/types/xweather.d.ts +4 -4
- package/dist/api/utils.d.ts +1 -0
- package/dist/index.js +1073 -980
- 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 +88 -11
- package/dist/shared/types/imagePlayer.d.ts +2 -2
- package/dist/shared/types/timeline.d.ts +2 -1
- package/package.json +4 -4
package/dist/api/types/360.d.ts
CHANGED
|
@@ -1,25 +1,158 @@
|
|
|
1
|
-
import { DateType } from "
|
|
1
|
+
import { DateType } from "@evercam/api/types/time";
|
|
2
2
|
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;
|
|
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;
|
|
8
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;
|
|
20
152
|
};
|
|
21
153
|
export type MobileCaptureSnapshot = {
|
|
22
|
-
id: string;
|
|
154
|
+
id: string | number;
|
|
155
|
+
projectId?: string;
|
|
23
156
|
uploadedBy: string;
|
|
24
157
|
updatedAt: string;
|
|
25
158
|
assetType: string;
|
|
@@ -27,6 +160,7 @@ export type MobileCaptureSnapshot = {
|
|
|
27
160
|
};
|
|
28
161
|
export declare enum _360UrlParams {
|
|
29
162
|
DateId = "date_id",
|
|
163
|
+
Date = "date",
|
|
30
164
|
Floor = "floor",
|
|
31
165
|
Marker = "marker",
|
|
32
166
|
PolarAngle = "polarAngle",
|
|
@@ -47,8 +181,7 @@ export declare enum _360AssetLabel {
|
|
|
47
181
|
export declare enum _360Feature {
|
|
48
182
|
BIM = "BIM",
|
|
49
183
|
Minimap = "Minimap",
|
|
50
|
-
Minimodel = "Minimodel"
|
|
51
|
-
MobilePhoto = "MobilePhoto"
|
|
184
|
+
Minimodel = "Minimodel"
|
|
52
185
|
}
|
|
53
186
|
export declare enum _360IntergrationType {
|
|
54
187
|
Evercam = "Evercam",
|
|
@@ -76,6 +209,50 @@ export type _360AssetsRequestPayload = {
|
|
|
76
209
|
floor: string;
|
|
77
210
|
uploadedBy?: string;
|
|
78
211
|
};
|
|
212
|
+
export type DrawingsRequestPayload = {
|
|
213
|
+
projectId?: string;
|
|
214
|
+
name?: string;
|
|
215
|
+
changedBy?: string;
|
|
216
|
+
mapStyle?: string;
|
|
217
|
+
startDate?: string;
|
|
218
|
+
endDate?: string;
|
|
219
|
+
id?: number;
|
|
220
|
+
page?: number;
|
|
221
|
+
limit?: number;
|
|
222
|
+
paginate?: boolean;
|
|
223
|
+
withAsset?: boolean;
|
|
224
|
+
};
|
|
225
|
+
export type GenerateFloorPayload = {
|
|
226
|
+
overlay?: {
|
|
227
|
+
url: string;
|
|
228
|
+
title: string;
|
|
229
|
+
fileExtension: string;
|
|
230
|
+
};
|
|
231
|
+
changedBy: string;
|
|
232
|
+
name?: string;
|
|
233
|
+
mapStyle?: string;
|
|
234
|
+
overlayPositionCorners: {
|
|
235
|
+
northEast: {
|
|
236
|
+
lat: number;
|
|
237
|
+
lng: number;
|
|
238
|
+
};
|
|
239
|
+
northWest: {
|
|
240
|
+
lat: number;
|
|
241
|
+
lng: number;
|
|
242
|
+
};
|
|
243
|
+
southWest: {
|
|
244
|
+
lat: number;
|
|
245
|
+
lng: number;
|
|
246
|
+
};
|
|
247
|
+
southEast: {
|
|
248
|
+
lat: number;
|
|
249
|
+
lng: number;
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
export type _360QueueQueryParams = {
|
|
254
|
+
projectId?: string;
|
|
255
|
+
};
|
|
79
256
|
export type _360AssetsUploadPayload = {
|
|
80
257
|
targetPointsCount: number;
|
|
81
258
|
assetType: string;
|
|
@@ -1,29 +1,66 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export type AconexUserProject = {
|
|
2
2
|
id: number;
|
|
3
3
|
name: string;
|
|
4
4
|
shortName: string;
|
|
5
5
|
startDate: string;
|
|
6
6
|
endDate: string;
|
|
7
|
-
|
|
7
|
+
active: boolean;
|
|
8
|
+
hidden: boolean;
|
|
9
|
+
};
|
|
10
|
+
export type AconexDocumentSchema = {
|
|
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 AconexDocumentTypeSchema = {
|
|
22
|
+
dataType: AconexDocumentDataType;
|
|
23
|
+
identifier: AconexIdentifiers;
|
|
24
|
+
fieldName: string;
|
|
25
|
+
modifiedFieldName?: string;
|
|
26
|
+
mandatoryStatus: AconexMandatoryStatus;
|
|
27
|
+
specifications?: Array<AconexFieldSpecification>;
|
|
28
|
+
};
|
|
8
29
|
export type AconexDocumentSchemaField = {
|
|
9
30
|
dataType: AconexDocumentDataType;
|
|
10
|
-
identifier:
|
|
31
|
+
identifier: AconexIdentifiers;
|
|
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
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type { JsonObject } from "@evercam/api/types";
|
|
2
|
+
export type WithZohoParams = {
|
|
3
|
+
with_zoho?: boolean;
|
|
4
|
+
};
|
|
5
|
+
export type AdminSearchProjectItem = {
|
|
6
|
+
id: number;
|
|
7
|
+
name: string;
|
|
8
|
+
status: string;
|
|
9
|
+
exid: string;
|
|
10
|
+
featureFlags: string[];
|
|
11
|
+
};
|
|
12
|
+
export type AdminSearchItem = AdminSearchProjectItem | JsonObject;
|
|
13
|
+
export type AdminInviteRole = {
|
|
14
|
+
id: number;
|
|
15
|
+
name: string;
|
|
16
|
+
resourceType: string;
|
|
17
|
+
};
|
|
18
|
+
export type AdminInviteAssigner = {
|
|
19
|
+
id: number;
|
|
20
|
+
email: string;
|
|
21
|
+
fullname: string;
|
|
22
|
+
};
|
|
23
|
+
export type AdminInviteAuthContextSubRole = {
|
|
24
|
+
resourceId: string;
|
|
25
|
+
roleId: number;
|
|
26
|
+
};
|
|
27
|
+
export type AdminInviteAuthContext = {
|
|
28
|
+
permissions: string[] | null;
|
|
29
|
+
subRoles: AdminInviteAuthContextSubRole[];
|
|
30
|
+
hasOverride: boolean;
|
|
31
|
+
};
|
|
32
|
+
export type AdminInvite = {
|
|
33
|
+
id: number;
|
|
34
|
+
message: string | null;
|
|
35
|
+
status: number;
|
|
36
|
+
email: string;
|
|
37
|
+
key: string;
|
|
38
|
+
updatedAt: string;
|
|
39
|
+
role: AdminInviteRole;
|
|
40
|
+
createdAt: string;
|
|
41
|
+
resourceId: string;
|
|
42
|
+
assigner: AdminInviteAssigner;
|
|
43
|
+
sentCount: number;
|
|
44
|
+
lastSentAt: string;
|
|
45
|
+
authContext: AdminInviteAuthContext;
|
|
46
|
+
statusName: string;
|
|
47
|
+
};
|
|
48
|
+
export type ZohoDeskTicketSearchResponse = {
|
|
49
|
+
data: JsonObject[];
|
|
50
|
+
count: number;
|
|
51
|
+
};
|
|
@@ -41,9 +41,11 @@ export declare enum AnalyticsEventPageId {
|
|
|
41
41
|
DroneInfo = "DroneInfo",
|
|
42
42
|
ThreeSixtyInfo = "360Info",
|
|
43
43
|
BimCompareInfo = "BimCompareInfo",
|
|
44
|
+
TimelineInfo = "TimelineInfo",
|
|
44
45
|
WeatherReport = "WeatherReport",
|
|
45
46
|
PpeReport = "PpeReport",
|
|
46
|
-
SmartSearch = "SmartSearch"
|
|
47
|
+
SmartSearch = "SmartSearch",
|
|
48
|
+
Drawings = "Drawings"
|
|
47
49
|
}
|
|
48
50
|
export declare enum AnalyticsEvent {
|
|
49
51
|
PageView = "PageView",
|
|
@@ -77,6 +79,19 @@ export declare enum AnalyticsEvent {
|
|
|
77
79
|
SettingsConnectorsRemoveVoyageControlConnection = "RemoveVoyageControl",
|
|
78
80
|
SettingsConnectorsToggleConnectorPromptDialog = "ToggleConnectorPromptDialog",
|
|
79
81
|
SettingsConnectorsToggleVoyageControlDialog = "ToggleVoyageControlDialog",
|
|
82
|
+
WidgetsSelectTypeThreeSixty = "Widgets-SelectType360",
|
|
83
|
+
WidgetsSelectProject = "SelectProject",
|
|
84
|
+
WidgetsSelect360Date = "Select360Date",
|
|
85
|
+
WidgetsSelect360Floor = "Select360Floor",
|
|
86
|
+
WidgetsSelect360Marker = "Select360Marker",
|
|
87
|
+
Widgets360LockMedia = "360LockMedia",
|
|
88
|
+
WidgetsPauseWidget = "PauseWidget",
|
|
89
|
+
WidgetsEditWidget = "EditWidget",
|
|
90
|
+
WidgetsOpenCredentials = "OpenCredentials",
|
|
91
|
+
WidgetsCopyEmbeddedCode = "CopyEmbeddedCode",
|
|
92
|
+
WidgetsCopyIFrameCode = "CopyIFrameCode",
|
|
93
|
+
WidgetsCopyURLCode = "CopyURLCode",
|
|
94
|
+
WidgetsDeleteWidget = "DeleteWidget",
|
|
80
95
|
WidgetsAddWidgetClick = "AddWidget",
|
|
81
96
|
WidgetsCancelClick = "Cancel",
|
|
82
97
|
WidgetsEditHeight = "EditHeight",
|
|
@@ -103,6 +118,7 @@ export declare enum AnalyticsEvent {
|
|
|
103
118
|
WidgetsSettingToggleRestrictRecentImages = "ToggleRestrictRecentImages",
|
|
104
119
|
WidgetsSettingToggleZoom = "ToggleZoom",
|
|
105
120
|
WidgetsTogglePublicWidget = "TogglePublicWidget",
|
|
121
|
+
WidgetsToggleRestrictRecordingsRange = "ToggleRestrictRecordingsRange",
|
|
106
122
|
PlayerSelectCamera = "Player-SelectCamera",
|
|
107
123
|
PlayerDownload = "Player-Download",
|
|
108
124
|
PlayerToggleFullscreen = "Player-ToggleFullscreen",
|
|
@@ -170,6 +186,12 @@ export declare enum AnalyticsEvent {
|
|
|
170
186
|
XarySelectLatestDate = "Xray-SelectLatestDate",
|
|
171
187
|
XarySelectOldestDate = "Xray-SelectOldestDate",
|
|
172
188
|
XraySendToConnector = "Xray-SendToConnector",
|
|
189
|
+
XraySendToConnectorSent = "Xray-SendToConnector-Sent",
|
|
190
|
+
XraySendToConnectorProcore = "Xray-SendToConnector-Procore",
|
|
191
|
+
XraySendToConnectorProcorePhotos = "Xray-SendToConnector-Procore-Photos",
|
|
192
|
+
XraySendToConnectorProcoreObservations = "Xray-SendToConnector-Procore-Observations",
|
|
193
|
+
XraySendToConnectorAconex = "Xray-SendToConnector-Aconex",
|
|
194
|
+
XraySendToConnectorAutodesk = "Xray-SendToConnector-Autodesk",
|
|
173
195
|
WeatherGoBackDate = "Weather-GoBackDate",
|
|
174
196
|
WeatherGoForwardDate = "Weather-GoForwardDate",
|
|
175
197
|
WeatherReportExportFile = "ExportFile",
|
|
@@ -233,11 +255,12 @@ export declare enum AnalyticsEvent {
|
|
|
233
255
|
MarkUpToolSaveToMediaHub = "MarkUpTool-SaveToMediaHub",
|
|
234
256
|
MarkUpToolDownloadAs = "MarkUpTool-DownloadAs",
|
|
235
257
|
MarkUpToolSendToConnector = "MarkUpTool-SendToConnector",
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
258
|
+
MarkUpToolSendToConnectorSent = "MarkUpTool-SendToConnector-Sent",
|
|
259
|
+
MarkUpToolSendToConnectorProcore = "MarkUpTool-SendToConnector-Procore",
|
|
260
|
+
MarkUpToolSendToConnectorProcorePhotos = "MarkUpTool-SendToConnector-Procore-Photos",
|
|
261
|
+
MarkUpToolSendToConnectorProcoreObservations = "MarkUpTool-SendToConnector-Procore-Observations",
|
|
262
|
+
MarkUpToolSendToConnectorAconex = "MarkUpTool-SendToConnector-Aconex",
|
|
263
|
+
MarkUpToolSendToConnectorAutodesk = "MarkUpTool-SendToConnector-Autodesk",
|
|
241
264
|
RecordingsCancelExportDialog = "CancelExportDialog",
|
|
242
265
|
RecordingsClickSupportLink = "ClickSupportLink",
|
|
243
266
|
RecordingsCreateClip = "CreateClip",
|
|
@@ -259,8 +282,17 @@ export declare enum AnalyticsEvent {
|
|
|
259
282
|
SharingSortBy = "SortBy",
|
|
260
283
|
SharingChangeAccessRight = "ChangeAccessRight",
|
|
261
284
|
ThreeSixtyGallery = "Gallery",
|
|
285
|
+
ThreeSixtyGalleryFilterAssetTypes = "Gallery-FilterAssetTypes",
|
|
286
|
+
ThreeSixtyGalleryFilterDateRange = "Gallery-FilterDateRange",
|
|
287
|
+
ThreeSixtyGalleryFilterFeatures = "Gallery-FilterFeatures",
|
|
288
|
+
ThreeSixtyGalleryFilterFloorName = "Gallery-FilterFloorName",
|
|
289
|
+
ThreeSixtyGalleryFilterUploadedBy = "Gallery-FilterUploadedBy",
|
|
290
|
+
ThreeSixtyGalleryTimelineSelectMilestoneItem = "Gallery-TimelineSelectMilestoneItem",
|
|
262
291
|
ThreeSixtyGalleryTimelineDateClick = "Gallery-TimelineDateClick",
|
|
263
292
|
ThreeSixtyGalleryToggleUploadDialog = "Gallery-ToggleUploadDialog",
|
|
293
|
+
ThreeSixtyGalleryToggleFilters = "Gallery-ToggleFilters",
|
|
294
|
+
ThreeSixtyGalleryUpdateFloorName = "Gallery-UpdateFloorName",
|
|
295
|
+
ThreeSixtyGalleryEditWalkName = "Gallery-EditWalkName",
|
|
264
296
|
ThreeSixtyChangeDate = "ChangeDate",
|
|
265
297
|
ThreeSixtyChangeFloor = "ChangeFloor",
|
|
266
298
|
ThreeSixtyCloseCompare = "CloseCompare",
|
|
@@ -297,11 +329,10 @@ export declare enum AnalyticsEvent {
|
|
|
297
329
|
ThreeSixtyTourToggleLoop = "Tour-ToggleLoop",
|
|
298
330
|
ThreeSixtyUnlockCompare = "UnlockCompare",
|
|
299
331
|
ThreeSixtyUnlockForgeBIM = "UnlockForgeBIM",
|
|
300
|
-
ThreeSixtyUpdateFloorName = "UpdateFloorName",
|
|
301
332
|
ThreeSixtyUploadAssets = "UploadAssets",
|
|
302
333
|
DroneAreaToolClick = "AreaTool-Click",
|
|
303
334
|
DroneChangeDate = "ChangeDate",
|
|
304
|
-
|
|
335
|
+
DroneChooseCommentType = "ChooseCommentType",
|
|
305
336
|
DroneClickCameraLiveView = "ClickCameraLiveView",
|
|
306
337
|
DroneClickCameraMarker = "ClickCameraMarker",
|
|
307
338
|
DroneCompareToolClick = "CompareTool-Click",
|
|
@@ -316,13 +347,14 @@ export declare enum AnalyticsEvent {
|
|
|
316
347
|
DroneOpenHelpPanel = "OpenHelpPanel",
|
|
317
348
|
DroneOpenImageViewer = "OpenImageViewer",
|
|
318
349
|
DroneResetView = "ResetView",
|
|
319
|
-
DroneSaveTag = "SaveTag",
|
|
320
350
|
DroneSettingsToggle360PathsVisibility = "Settings-Toggle360PathsVisibility",
|
|
321
351
|
DroneSettingsToggleCameraMarkersVisibility = "Settings-ToggleCameraMarkersVisibility",
|
|
322
352
|
DroneSettingsToggleSurroundingBuildingsTool = "Settings-ToggleSurroundingBuildingsTool",
|
|
323
|
-
|
|
353
|
+
DroneSettingsToggleCommentsVisibility = "Settings-ToggleCommentsVisibility",
|
|
354
|
+
DroneSettingsToggleAerialShotsVisibility = "Settings-ToggleAerialShotsVisibility",
|
|
355
|
+
DroneSettingsOpenCommentsList = "Settings-OpenCommentsList",
|
|
324
356
|
DroneShareLink = "ShareLink",
|
|
325
|
-
|
|
357
|
+
DroneCommentsToolClick = "CommentsTool-Click",
|
|
326
358
|
DroneToggleBimCompareTool = "ToggleBimCompareTool",
|
|
327
359
|
DroneToggleFullScreen = "ToggleFullScreen",
|
|
328
360
|
DroneToggleMapStyle = "ToggleMapStyle",
|
|
@@ -335,6 +367,11 @@ export declare enum AnalyticsEvent {
|
|
|
335
367
|
DroneVolumeToolClick = "VolumeTool-Click",
|
|
336
368
|
DroneZoomIn = "ZoomIn",
|
|
337
369
|
DroneZoomOut = "ZoomOut",
|
|
370
|
+
DroneUploadSkipping = "SkipImageUpload",// To be removed later
|
|
371
|
+
DroneSaveComment = "SaveComment",
|
|
372
|
+
DroneUnarchiveComment = "UnarchiveComment",
|
|
373
|
+
DroneArchiveComment = "ArchiveComment",
|
|
374
|
+
DroneDeleteComment = "DeleteComment",
|
|
338
375
|
PlannerAddCameraClick = "AddCameraClick",
|
|
339
376
|
PlannerAddSitePlanDrawingClick = "AddSitePlanDrawingClick",
|
|
340
377
|
PlannerAddSitePlanClick = "AddSitePlanClick",
|
|
@@ -358,7 +395,31 @@ export declare enum AnalyticsEvent {
|
|
|
358
395
|
PlannerUploadSitePlanDrawing = "UploadSitePlanDrawing",
|
|
359
396
|
PlannerZoomIn = "ZoomIn",
|
|
360
397
|
PlannerZoomOut = "ZoomOut",
|
|
398
|
+
DrawingCreateSave = "CreateSave",
|
|
399
|
+
DrawingUpdateSave = "UpdateSave",
|
|
400
|
+
DrawingEditName = "EditName",
|
|
401
|
+
DrawingUpdateName = "UpdateName",
|
|
402
|
+
DrawingToggleSaveDialog = "ToggleSaveDialog",
|
|
403
|
+
DrawingClickHome = "ClickHome",
|
|
404
|
+
DrawingsUploadDrawing = "UploadDrawing",
|
|
405
|
+
DrawingsCreateDrawing = "CreateDrawing",
|
|
406
|
+
DrawingToggleFilter = "ToggleFilter",
|
|
407
|
+
DrawingToggleMapStyle = "ToggleMapStyle",
|
|
408
|
+
DrawingToggleMapLabels = "ToggleMapLabels",
|
|
409
|
+
DrawingToggleCamerasLabels = "ToggleCamerasLabels",
|
|
410
|
+
DrawingToggleCamerasVisibility = "ToggleCamerasVisibility",
|
|
411
|
+
DrawingToggleTransparencyMode = "ToggleTransparencyMode",
|
|
412
|
+
DrawingChooseDrawing = "ChooseDrawing",
|
|
413
|
+
DrawingChangeLocation = "ChangeLocation",
|
|
414
|
+
DrawingFilterDateRange = "FilterDateRange",
|
|
415
|
+
DrawingFilterDrawingName = "FilterDrawingName",
|
|
416
|
+
DrawingFilterCreatedBy = "FilterCreatedBy",
|
|
417
|
+
DrawingFilterMapStyle = "FilterMapStyle",
|
|
418
|
+
DrawingToggleRotate = "ToggleRotate",
|
|
419
|
+
DrawingToggleScale = "ToggleScale",
|
|
420
|
+
DrawingOpenExistingDrawing = "OpenExistingDrawing",
|
|
361
421
|
MarkerClicked = "MarkerClicked",
|
|
422
|
+
MarkerSelected = "MarkerSelected",
|
|
362
423
|
TimelapseSelectCustomPeriod = "SelectCustomPeriod",
|
|
363
424
|
TimelapseToggleCustomScheduleDialog = "ToggleCustomScheduleDialog",
|
|
364
425
|
TimelapseSaveCustomSchedule = "SaveCustomSchedule",
|
|
@@ -388,12 +449,16 @@ export declare enum AnalyticsEvent {
|
|
|
388
449
|
ProgressPhotoResumeDelete = "ProgressPhoto-ResumeDelete",
|
|
389
450
|
ProgressPhotoSelectType = "ProgressPhoto-SelectType",
|
|
390
451
|
ProgressPhotoSelectCameras = "ProgressPhoto-SelectCameras",
|
|
452
|
+
ProgressPhotoToggleSelectAllOnlineCameras = "ProgressPhoto-ToggleSelectAllOnlineCameras",
|
|
453
|
+
ProgressPhotoToggleSelectAllCameras = "ProgressPhoto-ToggleSelectAllCameras",
|
|
454
|
+
ProgressPhotoClearAllCameras = "ProgressPhoto-ClearAllCameras",
|
|
455
|
+
ProgressPhotoEditCamerasSearchFilter = "ProgressPhoto-EditCamerasSearchFilter",
|
|
391
456
|
ProgressPhotoSelectDays = "ProgressPhoto-SelectDays",
|
|
392
457
|
ProgressPhotoSelectMember = "ProgressPhoto-SelectMember",
|
|
393
458
|
ProgressPhotoSelectProvider = "ProgressPhoto-SelectProvider",
|
|
394
459
|
ProgressPhotoSelectTime = "ProgressPhoto-SelectTime",
|
|
395
460
|
ProgressPhotoSelectTimezone = "ProgressPhoto-SelectTimezone",
|
|
396
|
-
|
|
461
|
+
ProgressPhotoEditSelectedCameras = "ProgressPhoto-EditSelectedCameras",
|
|
397
462
|
ProgressPhotoToggleCreateDialog = "ProgressPhoto-ToggleCreateDialog",
|
|
398
463
|
ProgressPhotoToggleEditDialog = "ProgressPhoto-ToggleEditDialog",
|
|
399
464
|
ProgressPhotoUnsubscribeUser = "ProgressPhoto-UnsubscribeUser",
|
|
@@ -451,6 +516,7 @@ export declare enum AnalyticsEvent {
|
|
|
451
516
|
GateReportToggleThumbnails = "ToggleThumbnails",
|
|
452
517
|
PpeTimelineDateClick = "PpeTimeline-DateClick",
|
|
453
518
|
HelpMenuToggleMenuButton = "HelpMenu-ToggleMenuButton",
|
|
519
|
+
HelpMenuOpenProjectContactsDialog = "HelpMenu-OpenProjectContactsDialog",
|
|
454
520
|
HelpMenuOpenLiveChat = "HelpMenu-OpenLiveChat",
|
|
455
521
|
HelpMenuClickTutorialsLink = "HelpMenu-ClickTutorialsLink",
|
|
456
522
|
HelpMenuClickWhatsNewLink = "HelpMenu-ClickWhatsNewLink",
|
|
@@ -467,6 +533,24 @@ export declare enum AnalyticsEvent {
|
|
|
467
533
|
ExportPdf = "ExportPdf",
|
|
468
534
|
ExportCsv = "ExportCsv",
|
|
469
535
|
FilterCameras = "FilterCameras",
|
|
536
|
+
CompareSelectProvider = "Compare-SelectProvider",
|
|
537
|
+
CompareEditSelectedCameras = "Compare-EditSelectedCameras",
|
|
538
|
+
CompareEdit = "Compare-Edit",
|
|
539
|
+
CompareSelectTimezone = "Compare-SelectTimezone",
|
|
540
|
+
CompareSelectMember = "Compare-SelectMember",
|
|
541
|
+
CompareToggleSelectAllOnlineCameras = "Compare-ToggleSelectAllOnlineCameras",
|
|
542
|
+
CompareToggleSelectAllCameras = "Compare-ToggleSelectAllCameras",
|
|
543
|
+
CompareClearAllCameras = "Compare-ClearAllCameras",
|
|
544
|
+
CompareEditCamerasSearchFilter = "Compare-EditCamerasSearchFilter",
|
|
545
|
+
AutomationsSelectProgressPhoto = "SelectProgressPhoto",
|
|
546
|
+
AutomationsSelectCompare = "SelectCompare",
|
|
547
|
+
AutomationsCreateCompare = "CreateCompare",
|
|
548
|
+
AutomationToggleEditDialog = "ToggleEditDialog",
|
|
549
|
+
AutomationToggleCreateDialog = "ToggleCreateDialog",
|
|
550
|
+
AutomationTypeName = "TypeName",
|
|
551
|
+
CompareSelectDays = "Compare-SelectDays",
|
|
552
|
+
CompareSelectDelay = "Compare-SelectDelay",
|
|
553
|
+
CompareSelectTime = "Compare-SelectTime",
|
|
470
554
|
SmartSearchToggleQueryBuilder = "SmartSearch-ToggleQueryBuilder",
|
|
471
555
|
SmartSearchToggleQuerySelector = "SmartSearch-ToggleQuerySelector",
|
|
472
556
|
SmartSearchDeleteComponent = "SmartSearch-DeleteComponent",
|
|
@@ -479,11 +563,12 @@ export declare enum AnalyticsEvent {
|
|
|
479
563
|
SmartSearchFilterSavedQueries = "SmartSearch-FilterSavedQueries",
|
|
480
564
|
SmartSearchThumbnailHover = "SmartSearch-ThumbnailHover",
|
|
481
565
|
SmartSearchThumbnailError = "SmartSearch-ThumbnailError",
|
|
482
|
-
|
|
566
|
+
SmartSearchViewSelected = "SmartSearch-ViewSelected",
|
|
483
567
|
SmartSearchOptionClicked = "SmartSearch-OptionClicked",
|
|
484
568
|
SmartSearchEditQuery = "SmartSearch-EditQuery",
|
|
485
569
|
SmartSearchDeleteQuery = "SmartSearch-DeleteQuery",
|
|
486
570
|
SmartSearchSaveQuery = "SmartSearch-SaveQuery",
|
|
487
571
|
SmartSearchThumbnailPlay = "SmartSearch-ThumbnailPlay",
|
|
488
|
-
SmartSearchExportFile = "SmartSearch-ExportFile"
|
|
572
|
+
SmartSearchExportFile = "SmartSearch-ExportFile",
|
|
573
|
+
SmartSearchDownloadHeatmapImage = "SmartSearch-DownloadHeatmapImage"
|
|
489
574
|
}
|