@evercam/api 1.0.0-d7a4e6c9d → 1.0.0-d9534755d
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 +175 -13
- package/dist/api/api/adminApi.d.ts +87 -83
- package/dist/api/api/aiApi.d.ts +58 -85
- package/dist/api/api/authzApi.d.ts +31 -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 +118 -95
- package/dist/api/api/evercamLabsApi.d.ts +4 -3
- package/dist/api/api/exNvrApi.d.ts +1 -1
- package/dist/api/api/ingestApi.d.ts +99 -46
- package/dist/api/api/ptzApi.d.ts +12 -3
- package/dist/api/api/videoWallApi.d.ts +2 -2
- package/dist/api/api/weatherApi.d.ts +2 -2
- package/dist/api/types/360.d.ts +164 -24
- package/dist/api/types/aconex.d.ts +9 -9
- package/dist/api/types/admin.d.ts +51 -0
- package/dist/api/types/analytics.d.ts +112 -60
- package/dist/api/types/anpr.d.ts +19 -2
- package/dist/api/types/auditLogs.d.ts +1 -1
- package/dist/api/types/authz.d.ts +61 -0
- package/dist/api/types/autodesk.d.ts +7 -7
- package/dist/api/types/automation.d.ts +37 -3
- package/dist/api/types/axios.d.ts +11 -5
- package/dist/api/types/bim.d.ts +11 -5
- package/dist/api/types/camera.d.ts +97 -98
- package/dist/api/types/comments.d.ts +7 -9
- 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 +3 -5
- package/dist/api/types/coolify.d.ts +18 -2
- package/dist/api/types/copilot.d.ts +11 -6
- package/dist/api/types/credentials.d.ts +1 -0
- package/dist/api/types/detections.d.ts +20 -8
- package/dist/api/types/drone.d.ts +92 -3
- package/dist/api/types/gateReport.d.ts +49 -158
- package/dist/api/types/hdd.d.ts +26 -1
- package/dist/api/types/index.d.ts +8 -1
- package/dist/api/types/ingest.d.ts +98 -2
- package/dist/api/types/kit.d.ts +31 -5
- package/dist/api/types/map.d.ts +12 -0
- package/dist/api/types/media.d.ts +2 -1
- package/dist/api/types/notification.d.ts +32 -2
- package/dist/api/types/oauth.d.ts +62 -0
- package/dist/api/types/planner.d.ts +102 -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 -2
- package/dist/api/types/project.d.ts +136 -21
- package/dist/api/types/recording.d.ts +6 -4
- package/dist/api/types/recycleBin.d.ts +1 -1
- package/dist/api/types/ring.d.ts +53 -0
- package/dist/api/types/roi.d.ts +2 -2
- package/dist/api/types/router.d.ts +20 -1
- package/dist/api/types/shared.d.ts +29 -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 +170 -46
- package/dist/api/types/siteView.d.ts +74 -0
- package/dist/api/types/smartSeach.d.ts +5 -0
- package/dist/api/types/snapshots.d.ts +36 -4
- package/dist/api/types/storageProvider.d.ts +19 -0
- 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 +0 -18
- package/dist/api/types/timelapse.d.ts +12 -5
- package/dist/api/types/user.d.ts +105 -31
- package/dist/api/types/videoWall.d.ts +21 -21
- package/dist/api/types/weather.d.ts +75 -11
- package/dist/api/types/widget.d.ts +71 -12
- package/dist/api/types/xweather.d.ts +4 -4
- package/dist/index.js +1580 -940
- 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 +127 -14
- package/dist/shared/types/imagePlayer.d.ts +10 -3
- package/dist/shared/types/index.d.ts +1 -0
- package/dist/shared/types/rbac.d.ts +67 -0
- package/dist/shared/types/timeline.d.ts +2 -1
- package/package.json +2 -2
- package/dist/api/types/storageServers.d.ts +0 -4
package/dist/api/api/ptzApi.d.ts
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
import { MoveParams, ZoomParams } from "
|
|
1
|
+
import { MoveParams, ZoomParams } from "@evercam/api/types";
|
|
2
2
|
export declare const PtzApi: {
|
|
3
3
|
presets: {
|
|
4
|
-
index({ cameraExid }: {
|
|
4
|
+
index({ cameraExid, }: {
|
|
5
5
|
cameraExid: string;
|
|
6
|
-
}): Promise<
|
|
6
|
+
}): Promise<{
|
|
7
|
+
presets: Array<{
|
|
8
|
+
name: string;
|
|
9
|
+
token: string;
|
|
10
|
+
}>;
|
|
11
|
+
}>;
|
|
7
12
|
go({ cameraExid, presetId, }: {
|
|
8
13
|
cameraExid: string;
|
|
9
14
|
presetId: string | number;
|
|
@@ -21,6 +26,10 @@ export declare const PtzApi: {
|
|
|
21
26
|
presetId: string | number;
|
|
22
27
|
presetName: string;
|
|
23
28
|
}): Promise<import("axios").AxiosResponse<any, any>>;
|
|
29
|
+
updateHome({ cameraExid, presetName, }: {
|
|
30
|
+
cameraExid: string;
|
|
31
|
+
presetName: string;
|
|
32
|
+
}): Promise<import("axios").AxiosResponse<any, any>>;
|
|
24
33
|
delete({ cameraExid, presetId, }: {
|
|
25
34
|
cameraExid: string;
|
|
26
35
|
presetId: string | number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type PaginatedItems } from "@evercam/shared/types";
|
|
2
|
-
import { VideoWall,
|
|
2
|
+
import { VideoWall, VideoWallListParams, VideoWallCreateUpdatePayload } from "@evercam/api/types/videoWall";
|
|
3
3
|
export declare const VideoWallApi: {
|
|
4
|
-
list(params?:
|
|
4
|
+
list(params?: VideoWallListParams): Promise<import("axios").AxiosResponse<PaginatedItems<VideoWall>, any>>;
|
|
5
5
|
create(body: VideoWallCreateUpdatePayload): Promise<import("axios").AxiosResponse<VideoWall, any>>;
|
|
6
6
|
get(exid: string | number): Promise<import("axios").AxiosResponse<VideoWall, any>>;
|
|
7
7
|
update(exid: string | number, body: Partial<VideoWallCreateUpdatePayload>): Promise<import("axios").AxiosResponse<VideoWall, any>>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { CurrentWeatherRequestPayload, HistoryWeatherRequestPayload, WeatherDataResponse, WeatherResponsePayload } from "@evercam/api/types";
|
|
1
|
+
import { CurrentWeatherRequestPayload, HistoryWeatherRequestPayload, WeatherDataResponse, WeatherReportRequestPayload, WeatherResponsePayload } from "@evercam/api/types";
|
|
2
2
|
import { AxiosRequestConfig } from "axios";
|
|
3
3
|
export declare const WeatherApi: {
|
|
4
4
|
current(projectExid: string, payload: CurrentWeatherRequestPayload): Promise<WeatherResponsePayload> | undefined;
|
|
5
5
|
historical(projectExid: string, payload: HistoryWeatherRequestPayload): Promise<WeatherResponsePayload> | undefined;
|
|
6
|
-
report(projectExid: string, payload:
|
|
6
|
+
report(projectExid: string, payload: WeatherReportRequestPayload, config?: AxiosRequestConfig): Promise<{
|
|
7
7
|
data: WeatherDataResponse[];
|
|
8
8
|
}> | undefined;
|
|
9
9
|
};
|
package/dist/api/types/360.d.ts
CHANGED
|
@@ -1,25 +1,180 @@
|
|
|
1
|
-
import { DateType } from "
|
|
2
|
-
|
|
1
|
+
import { DateType } from "@evercam/api/types/time";
|
|
2
|
+
import { GeoPoint, Point3D } from "@evercam/api/types/shared";
|
|
3
|
+
export type _360OverlayPosition = {
|
|
4
|
+
northEast: GeoPoint;
|
|
5
|
+
northWest: GeoPoint;
|
|
6
|
+
southEast: GeoPoint;
|
|
7
|
+
southWest: GeoPoint;
|
|
8
|
+
};
|
|
9
|
+
export type ForgeViewport = {
|
|
10
|
+
name: string;
|
|
11
|
+
eye: number[];
|
|
12
|
+
target: number[];
|
|
13
|
+
worldUpVector?: number[];
|
|
14
|
+
};
|
|
15
|
+
export type ForgeView = {
|
|
16
|
+
name: string;
|
|
17
|
+
viewport: ForgeViewport;
|
|
18
|
+
timestamp: string;
|
|
19
|
+
};
|
|
20
|
+
export type _360CameraRotation = {
|
|
3
21
|
azimuthAngle: number;
|
|
4
22
|
polarAngle: number;
|
|
5
23
|
};
|
|
24
|
+
export type _360Geolocation = {
|
|
25
|
+
latitude: number;
|
|
26
|
+
longitude: number;
|
|
27
|
+
};
|
|
28
|
+
export type _360Marker3D = {
|
|
29
|
+
cameraPosition: Point3D;
|
|
30
|
+
geolocation: _360Geolocation;
|
|
31
|
+
nextRoomId: _360MakerId;
|
|
32
|
+
position: Point3D;
|
|
33
|
+
rotation: {
|
|
34
|
+
_order: "XYZ" | string;
|
|
35
|
+
_x: number;
|
|
36
|
+
_y: number;
|
|
37
|
+
_z: number;
|
|
38
|
+
isEuler: boolean;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export type _360Tag = {
|
|
42
|
+
id: string;
|
|
43
|
+
tagType: string;
|
|
44
|
+
comment: string;
|
|
45
|
+
creationDate: number;
|
|
46
|
+
currentRoom: _360MakerId;
|
|
47
|
+
position: Point3D;
|
|
48
|
+
cameraRotation: _360CameraRotation;
|
|
49
|
+
};
|
|
50
|
+
export type _360FloorId = string | number;
|
|
51
|
+
export type _360Walk = Record<_360FloorId, _360Floor>;
|
|
52
|
+
export type _360MakerId = string;
|
|
6
53
|
export type _360Floor = {
|
|
7
|
-
|
|
54
|
+
_3DMarkers: _360Marker3D[];
|
|
55
|
+
cameraRotation: _360CameraRotation;
|
|
56
|
+
fbxModel: string;
|
|
57
|
+
fbxModelHQ?: string;
|
|
58
|
+
pointCloudModelHQ?: string;
|
|
59
|
+
initialMarker: _360MakerId;
|
|
60
|
+
modelViewerFeatureFlag: boolean;
|
|
61
|
+
imagesOnlyFeatureFlag?: boolean;
|
|
62
|
+
forgeBIMFeatureFlag?: boolean;
|
|
63
|
+
isForgeGravityEnabled?: boolean;
|
|
64
|
+
initialForgeView?: ForgeView | null;
|
|
65
|
+
enhancedLightFeatureFlag?: boolean;
|
|
66
|
+
calibrationDetails?: Record<string, unknown>;
|
|
67
|
+
route: {
|
|
68
|
+
cameraHeadingOffset: string;
|
|
69
|
+
overlayID: number;
|
|
70
|
+
track: string;
|
|
71
|
+
};
|
|
72
|
+
sceneScale: number;
|
|
73
|
+
steps: number;
|
|
74
|
+
tags?: Record<string, _360Tag>;
|
|
75
|
+
};
|
|
76
|
+
export type _360WalkV2 = {
|
|
77
|
+
archive: string;
|
|
78
|
+
date: string;
|
|
79
|
+
deviceSerial: string | null;
|
|
80
|
+
endPosition: unknown | null;
|
|
81
|
+
floor: string;
|
|
82
|
+
floorId: number;
|
|
83
|
+
id: number;
|
|
84
|
+
images: string[];
|
|
85
|
+
insertedAt: string;
|
|
86
|
+
mobileAudios: string[];
|
|
87
|
+
mobileAudiosArchive: string;
|
|
88
|
+
mobilePhotos: string[];
|
|
89
|
+
mobilePhotosArchive: string;
|
|
90
|
+
model: string;
|
|
91
|
+
name: string;
|
|
92
|
+
processingStatus: string;
|
|
93
|
+
projectId: string;
|
|
94
|
+
report: string;
|
|
95
|
+
route: unknown | null;
|
|
96
|
+
startPosition: unknown | null;
|
|
97
|
+
tusLinks: unknown | null;
|
|
98
|
+
updatedAt: string;
|
|
99
|
+
uploadedBy: string;
|
|
100
|
+
videoArchive: string;
|
|
101
|
+
videos: string[];
|
|
102
|
+
};
|
|
103
|
+
export type _360FloorV2 = {
|
|
104
|
+
id: _360FloorId;
|
|
105
|
+
assets: _360WalkV2[];
|
|
106
|
+
projectId: string;
|
|
8
107
|
name: string;
|
|
108
|
+
mapStyle: string;
|
|
109
|
+
hasOverlay: boolean;
|
|
110
|
+
isCalibrated: boolean;
|
|
111
|
+
createdBy: string | null;
|
|
112
|
+
overlayPosition: _360OverlayPosition;
|
|
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 declare enum _360PinType {
|
|
127
|
+
Default = "Default"
|
|
128
|
+
}
|
|
129
|
+
export type _360Pin = {
|
|
130
|
+
position: Point3D;
|
|
131
|
+
pinType: _360PinType;
|
|
132
|
+
pinId?: string;
|
|
133
|
+
cameraExid?: string;
|
|
134
|
+
name: string;
|
|
135
|
+
currentRoom?: _360MakerId;
|
|
136
|
+
cameraRotation?: _360CameraRotation;
|
|
137
|
+
};
|
|
138
|
+
export type _360SceneRoute = {
|
|
139
|
+
cameraHeadingOffset?: number;
|
|
140
|
+
overlayID?: number;
|
|
141
|
+
track?: string;
|
|
142
|
+
};
|
|
143
|
+
export type _360ProjectListItem = {
|
|
144
|
+
integrationType: string;
|
|
145
|
+
projectId: string;
|
|
146
|
+
projectName: string;
|
|
147
|
+
providerID: string;
|
|
148
|
+
providerPrefix: string;
|
|
149
|
+
providerSuffix: string;
|
|
150
|
+
timeline: string;
|
|
151
|
+
uniqueId: string;
|
|
152
|
+
};
|
|
153
|
+
export type _360FullProject = {
|
|
154
|
+
dates: _360SceneWithFloors[];
|
|
155
|
+
integrationType: string;
|
|
156
|
+
projectId: string;
|
|
157
|
+
projectName: string;
|
|
158
|
+
providerID: string;
|
|
159
|
+
providerPrefix: string;
|
|
160
|
+
providerSuffix: string;
|
|
161
|
+
timeline: string;
|
|
162
|
+
uniqueId: string;
|
|
163
|
+
};
|
|
164
|
+
export type _360FullFloor = _360Floor & {
|
|
165
|
+
id: _360FloorId;
|
|
166
|
+
name: string;
|
|
167
|
+
};
|
|
168
|
+
export type _360SceneWithFloors = _360Scene & {
|
|
169
|
+
floors: _360FullFloor[];
|
|
170
|
+
};
|
|
17
171
|
export type _360ProjectJsonResponse = {
|
|
18
172
|
dates: _360Scene[];
|
|
19
173
|
[key: string]: any;
|
|
20
174
|
};
|
|
21
175
|
export type MobileCaptureSnapshot = {
|
|
22
|
-
id: string;
|
|
176
|
+
id: string | number;
|
|
177
|
+
projectId?: string;
|
|
23
178
|
uploadedBy: string;
|
|
24
179
|
updatedAt: string;
|
|
25
180
|
assetType: string;
|
|
@@ -27,6 +182,7 @@ export type MobileCaptureSnapshot = {
|
|
|
27
182
|
};
|
|
28
183
|
export declare enum _360UrlParams {
|
|
29
184
|
DateId = "date_id",
|
|
185
|
+
Date = "date",
|
|
30
186
|
Floor = "floor",
|
|
31
187
|
Marker = "marker",
|
|
32
188
|
PolarAngle = "polarAngle",
|
|
@@ -86,6 +242,7 @@ export type DrawingsRequestPayload = {
|
|
|
86
242
|
page?: number;
|
|
87
243
|
limit?: number;
|
|
88
244
|
paginate?: boolean;
|
|
245
|
+
withAsset?: boolean;
|
|
89
246
|
};
|
|
90
247
|
export type GenerateFloorPayload = {
|
|
91
248
|
overlay?: {
|
|
@@ -96,24 +253,7 @@ export type GenerateFloorPayload = {
|
|
|
96
253
|
changedBy: string;
|
|
97
254
|
name?: string;
|
|
98
255
|
mapStyle?: string;
|
|
99
|
-
overlayPositionCorners:
|
|
100
|
-
northEast: {
|
|
101
|
-
lat: number;
|
|
102
|
-
lng: number;
|
|
103
|
-
};
|
|
104
|
-
northWest: {
|
|
105
|
-
lat: number;
|
|
106
|
-
lng: number;
|
|
107
|
-
};
|
|
108
|
-
southWest: {
|
|
109
|
-
lat: number;
|
|
110
|
-
lng: number;
|
|
111
|
-
};
|
|
112
|
-
southEast: {
|
|
113
|
-
lat: number;
|
|
114
|
-
lng: number;
|
|
115
|
-
};
|
|
116
|
-
};
|
|
256
|
+
overlayPositionCorners: _360OverlayPosition;
|
|
117
257
|
};
|
|
118
258
|
export type _360QueueQueryParams = {
|
|
119
259
|
projectId?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export type AconexUserProject = {
|
|
2
2
|
id: number;
|
|
3
3
|
name: string;
|
|
4
4
|
shortName: string;
|
|
@@ -6,8 +6,8 @@ export type AconexUserProjectsResponsePayload = Array<{
|
|
|
6
6
|
endDate: string;
|
|
7
7
|
active: boolean;
|
|
8
8
|
hidden: boolean;
|
|
9
|
-
}
|
|
10
|
-
export type
|
|
9
|
+
};
|
|
10
|
+
export type AconexDocumentSchema = {
|
|
11
11
|
dataType: AconexDocumentDataType;
|
|
12
12
|
identifier: AconexIdentifiers;
|
|
13
13
|
fieldName: string;
|
|
@@ -17,18 +17,18 @@ export type AconexDocumentSchemaResponsePayload = Array<{
|
|
|
17
17
|
id: string;
|
|
18
18
|
value: string;
|
|
19
19
|
}>;
|
|
20
|
-
}
|
|
21
|
-
export type
|
|
20
|
+
};
|
|
21
|
+
export type AconexDocumentTypeSchema = {
|
|
22
22
|
dataType: AconexDocumentDataType;
|
|
23
|
-
identifier:
|
|
23
|
+
identifier: AconexIdentifiers;
|
|
24
24
|
fieldName: string;
|
|
25
25
|
modifiedFieldName?: string;
|
|
26
|
-
mandatoryStatus:
|
|
26
|
+
mandatoryStatus: AconexMandatoryStatus;
|
|
27
27
|
specifications?: Array<AconexFieldSpecification>;
|
|
28
|
-
}
|
|
28
|
+
};
|
|
29
29
|
export type AconexDocumentSchemaField = {
|
|
30
30
|
dataType: AconexDocumentDataType;
|
|
31
|
-
identifier: AconexIdentifiers
|
|
31
|
+
identifier: AconexIdentifiers;
|
|
32
32
|
schemaValues?: Array<{
|
|
33
33
|
id: string;
|
|
34
34
|
value: string;
|
|
@@ -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,6 +41,7 @@ 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
47
|
SmartSearch = "SmartSearch",
|
|
@@ -84,6 +85,13 @@ export declare enum AnalyticsEvent {
|
|
|
84
85
|
WidgetsSelect360Floor = "Select360Floor",
|
|
85
86
|
WidgetsSelect360Marker = "Select360Marker",
|
|
86
87
|
Widgets360LockMedia = "360LockMedia",
|
|
88
|
+
WidgetsPauseWidget = "PauseWidget",
|
|
89
|
+
WidgetsEditWidget = "EditWidget",
|
|
90
|
+
WidgetsOpenCredentials = "OpenCredentials",
|
|
91
|
+
WidgetsCopyEmbeddedCode = "CopyEmbeddedCode",
|
|
92
|
+
WidgetsCopyIFrameCode = "CopyIFrameCode",
|
|
93
|
+
WidgetsCopyURLCode = "CopyURLCode",
|
|
94
|
+
WidgetsDeleteWidget = "DeleteWidget",
|
|
87
95
|
WidgetsAddWidgetClick = "AddWidget",
|
|
88
96
|
WidgetsCancelClick = "Cancel",
|
|
89
97
|
WidgetsEditHeight = "EditHeight",
|
|
@@ -178,6 +186,12 @@ export declare enum AnalyticsEvent {
|
|
|
178
186
|
XarySelectLatestDate = "Xray-SelectLatestDate",
|
|
179
187
|
XarySelectOldestDate = "Xray-SelectOldestDate",
|
|
180
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",
|
|
181
195
|
WeatherGoBackDate = "Weather-GoBackDate",
|
|
182
196
|
WeatherGoForwardDate = "Weather-GoForwardDate",
|
|
183
197
|
WeatherReportExportFile = "ExportFile",
|
|
@@ -241,11 +255,12 @@ export declare enum AnalyticsEvent {
|
|
|
241
255
|
MarkUpToolSaveToMediaHub = "MarkUpTool-SaveToMediaHub",
|
|
242
256
|
MarkUpToolDownloadAs = "MarkUpTool-DownloadAs",
|
|
243
257
|
MarkUpToolSendToConnector = "MarkUpTool-SendToConnector",
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
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",
|
|
249
264
|
RecordingsCancelExportDialog = "CancelExportDialog",
|
|
250
265
|
RecordingsClickSupportLink = "ClickSupportLink",
|
|
251
266
|
RecordingsCreateClip = "CreateClip",
|
|
@@ -267,17 +282,6 @@ export declare enum AnalyticsEvent {
|
|
|
267
282
|
SharingSortBy = "SortBy",
|
|
268
283
|
SharingChangeAccessRight = "ChangeAccessRight",
|
|
269
284
|
ThreeSixtyGallery = "Gallery",
|
|
270
|
-
ThreeSixtyGalleryFilterAssetTypes = "Gallery-FilterAssetTypes",
|
|
271
|
-
ThreeSixtyGalleryFilterDateRange = "Gallery-FilterDateRange",
|
|
272
|
-
ThreeSixtyGalleryFilterFeatures = "Gallery-FilterFeatures",
|
|
273
|
-
ThreeSixtyGalleryFilterFloorName = "Gallery-FilterFloorName",
|
|
274
|
-
ThreeSixtyGalleryFilterUploadedBy = "Gallery-FilterUploadedBy",
|
|
275
|
-
ThreeSixtyGalleryTimelineSelectMilestoneItem = "Gallery-TimelineSelectMilestoneItem",
|
|
276
|
-
ThreeSixtyGalleryTimelineDateClick = "Gallery-TimelineDateClick",
|
|
277
|
-
ThreeSixtyGalleryToggleUploadDialog = "Gallery-ToggleUploadDialog",
|
|
278
|
-
ThreeSixtyGalleryToggleFilters = "Gallery-ToggleFilters",
|
|
279
|
-
ThreeSixtyGalleryUpdateFloorName = "Gallery-UpdateFloorName",
|
|
280
|
-
ThreeSixtyGalleryEditWalkName = "Gallery-EditWalkName",
|
|
281
285
|
ThreeSixtyChangeDate = "ChangeDate",
|
|
282
286
|
ThreeSixtyChangeFloor = "ChangeFloor",
|
|
283
287
|
ThreeSixtyCloseCompare = "CloseCompare",
|
|
@@ -317,7 +321,7 @@ export declare enum AnalyticsEvent {
|
|
|
317
321
|
ThreeSixtyUploadAssets = "UploadAssets",
|
|
318
322
|
DroneAreaToolClick = "AreaTool-Click",
|
|
319
323
|
DroneChangeDate = "ChangeDate",
|
|
320
|
-
|
|
324
|
+
DroneChooseCommentType = "ChooseCommentType",
|
|
321
325
|
DroneClickCameraLiveView = "ClickCameraLiveView",
|
|
322
326
|
DroneClickCameraMarker = "ClickCameraMarker",
|
|
323
327
|
DroneCompareToolClick = "CompareTool-Click",
|
|
@@ -332,16 +336,19 @@ export declare enum AnalyticsEvent {
|
|
|
332
336
|
DroneOpenHelpPanel = "OpenHelpPanel",
|
|
333
337
|
DroneOpenImageViewer = "OpenImageViewer",
|
|
334
338
|
DroneResetView = "ResetView",
|
|
335
|
-
DroneSaveTag = "SaveTag",
|
|
336
339
|
DroneSettingsToggle360PathsVisibility = "Settings-Toggle360PathsVisibility",
|
|
337
340
|
DroneSettingsToggleCameraMarkersVisibility = "Settings-ToggleCameraMarkersVisibility",
|
|
338
341
|
DroneSettingsToggleSurroundingBuildingsTool = "Settings-ToggleSurroundingBuildingsTool",
|
|
339
|
-
|
|
342
|
+
DroneSettingsToggleCommentsVisibility = "Settings-ToggleCommentsVisibility",
|
|
343
|
+
DroneSettingsToggleAerialShotsVisibility = "Settings-ToggleAerialShotsVisibility",
|
|
344
|
+
DroneSettingsOpenCommentsList = "Settings-OpenCommentsList",
|
|
340
345
|
DroneShareLink = "ShareLink",
|
|
341
|
-
|
|
346
|
+
DroneCommentsToolClick = "CommentsTool-Click",
|
|
342
347
|
DroneToggleBimCompareTool = "ToggleBimCompareTool",
|
|
343
348
|
DroneToggleFullScreen = "ToggleFullScreen",
|
|
344
349
|
DroneToggleMapStyle = "ToggleMapStyle",
|
|
350
|
+
DroneTogglePointCloud = "TogglePointCloud",
|
|
351
|
+
DroneToggleGaussianSplat = "ToggleGaussianSplat",
|
|
345
352
|
DroneToggleQualityMode = "ChooseQuality",
|
|
346
353
|
DroneToggleSideMenu = "ToggleSideMenu",
|
|
347
354
|
DroneToggleImageryPlan = "ToggleImageryPlan",
|
|
@@ -352,6 +359,11 @@ export declare enum AnalyticsEvent {
|
|
|
352
359
|
DroneZoomIn = "ZoomIn",
|
|
353
360
|
DroneZoomOut = "ZoomOut",
|
|
354
361
|
DroneUploadSkipping = "SkipImageUpload",// To be removed later
|
|
362
|
+
DroneSaveComment = "SaveComment",
|
|
363
|
+
DroneUnarchiveComment = "UnarchiveComment",
|
|
364
|
+
DroneArchiveComment = "ArchiveComment",
|
|
365
|
+
DroneDeleteComment = "DeleteComment",
|
|
366
|
+
DroneSaveAerialShot = "SaveAerialShot",
|
|
355
367
|
PlannerAddCameraClick = "AddCameraClick",
|
|
356
368
|
PlannerAddSitePlanDrawingClick = "AddSitePlanDrawingClick",
|
|
357
369
|
PlannerAddSitePlanClick = "AddSitePlanClick",
|
|
@@ -376,10 +388,27 @@ export declare enum AnalyticsEvent {
|
|
|
376
388
|
PlannerZoomIn = "ZoomIn",
|
|
377
389
|
PlannerZoomOut = "ZoomOut",
|
|
378
390
|
DrawingCreateSave = "CreateSave",
|
|
391
|
+
DrawingUpdateSave = "UpdateSave",
|
|
379
392
|
DrawingEditName = "EditName",
|
|
380
|
-
DrawingToggleSaveDialog = "ToggleSaveDialog",
|
|
381
393
|
DrawingUpdateName = "UpdateName",
|
|
382
|
-
|
|
394
|
+
DrawingToggleSaveDialog = "ToggleSaveDialog",
|
|
395
|
+
DrawingClickHome = "ClickHome",
|
|
396
|
+
DrawingsUploadDrawing = "UploadDrawing",
|
|
397
|
+
DrawingsCreateDrawing = "CreateDrawing",
|
|
398
|
+
DrawingToggleMapStyle = "ToggleMapStyle",
|
|
399
|
+
DrawingToggleMapLabels = "ToggleMapLabels",
|
|
400
|
+
DrawingToggleCamerasLabels = "ToggleCamerasLabels",
|
|
401
|
+
DrawingToggleCamerasVisibility = "ToggleCamerasVisibility",
|
|
402
|
+
DrawingToggleTransparencyMode = "ToggleTransparencyMode",
|
|
403
|
+
DrawingChooseDrawing = "ChooseDrawing",
|
|
404
|
+
DrawingChangeLocation = "ChangeLocation",
|
|
405
|
+
DrawingFilterDateRange = "FilterDateRange",
|
|
406
|
+
DrawingFilterDrawingName = "FilterDrawingName",
|
|
407
|
+
DrawingFilterCreatedBy = "FilterCreatedBy",
|
|
408
|
+
DrawingFilterMapStyle = "FilterMapStyle",
|
|
409
|
+
DrawingToggleRotate = "ToggleRotate",
|
|
410
|
+
DrawingToggleScale = "ToggleScale",
|
|
411
|
+
DrawingOpenExistingDrawing = "OpenExistingDrawing",
|
|
383
412
|
MarkerClicked = "MarkerClicked",
|
|
384
413
|
MarkerSelected = "MarkerSelected",
|
|
385
414
|
TimelapseSelectCustomPeriod = "SelectCustomPeriod",
|
|
@@ -393,37 +422,6 @@ export declare enum AnalyticsEvent {
|
|
|
393
422
|
TimelapseGoToMediaHub = "GoToMediaHub",
|
|
394
423
|
TimelapseToggleUploadLogoDialog = "ToggleUploadLogoDialog",
|
|
395
424
|
TimelapseUploadLogo = "UploadLogo",
|
|
396
|
-
ProgressPhotoCancelPause = "ProgressPhoto-CancelPause",
|
|
397
|
-
ProgressPhotoCancelResume = "ProgressPhoto-CancelResume",
|
|
398
|
-
ProgressPhotoCancelDelete = "ProgressPhoto-CancelDelete",
|
|
399
|
-
ProgressPhotoCreate = "ProgressPhoto-Create",
|
|
400
|
-
ProgressPhotoDelete = "ProgressPhoto-Delete",
|
|
401
|
-
ProgressPhotoEdit = "ProgressPhoto-Edit",
|
|
402
|
-
ProgressPhotoEditCamerasFilter = "ProgressPhoto-EditCamerasFilter",
|
|
403
|
-
ProgressPhotoEditDaysFilter = "ProgressPhoto-EditDaysFilter",
|
|
404
|
-
ProgressPhotoEditProjectsFilter = "ProgressPhoto-EditProjectsFilter",
|
|
405
|
-
ProgressPhotoEditSearchFilter = "ProgressPhoto-EditSearchFilter",
|
|
406
|
-
ProgressPhotoEditStatusFilter = "ProgressPhoto-EditStatusFilter",
|
|
407
|
-
ProgressPhotoEditUsersFilter = "ProgressPhoto-EditUsersFilter",
|
|
408
|
-
ProgressPhotoFiltersClicked = "ProgressPhoto-FiltersClicked",
|
|
409
|
-
ProgressPhotoPause = "ProgressPhoto-Pause",
|
|
410
|
-
ProgressPhotoResume = "ProgressPhoto-Resume",
|
|
411
|
-
ProgressPhotoResumeDelete = "ProgressPhoto-ResumeDelete",
|
|
412
|
-
ProgressPhotoSelectType = "ProgressPhoto-SelectType",
|
|
413
|
-
ProgressPhotoSelectCameras = "ProgressPhoto-SelectCameras",
|
|
414
|
-
ProgressPhotoToggleSelectAllOnlineCameras = "ProgressPhoto-ToggleSelectAllOnlineCameras",
|
|
415
|
-
ProgressPhotoToggleSelectAllCameras = "ProgressPhoto-ToggleSelectAllCameras",
|
|
416
|
-
ProgressPhotoClearAllCameras = "ProgressPhoto-ClearAllCameras",
|
|
417
|
-
ProgressPhotoEditCamerasSearchFilter = "ProgressPhoto-EditCamerasSearchFilter",
|
|
418
|
-
ProgressPhotoSelectDays = "ProgressPhoto-SelectDays",
|
|
419
|
-
ProgressPhotoSelectMember = "ProgressPhoto-SelectMember",
|
|
420
|
-
ProgressPhotoSelectProvider = "ProgressPhoto-SelectProvider",
|
|
421
|
-
ProgressPhotoSelectTime = "ProgressPhoto-SelectTime",
|
|
422
|
-
ProgressPhotoSelectTimezone = "ProgressPhoto-SelectTimezone",
|
|
423
|
-
ProgressPhotoEditSelectedCameras = "ProgressPhoto-EditSelectedCameras",
|
|
424
|
-
ProgressPhotoToggleCreateDialog = "ProgressPhoto-ToggleCreateDialog",
|
|
425
|
-
ProgressPhotoToggleEditDialog = "ProgressPhoto-ToggleEditDialog",
|
|
426
|
-
ProgressPhotoUnsubscribeUser = "ProgressPhoto-UnsubscribeUser",
|
|
427
425
|
MapViewChooseSatellite = "MapView-ChooseSatellite",
|
|
428
426
|
MapViewChooseTerrain = "MapView-ChooseMap",
|
|
429
427
|
MapViewClickCameraLink = "MapView-ClickCameraLink",
|
|
@@ -440,10 +438,15 @@ export declare enum AnalyticsEvent {
|
|
|
440
438
|
ProjectSettingsCameraSettingsSaveCameraName = "SaveCameraName",
|
|
441
439
|
ProjectSettingsMembersApplyCamerasFilter = "ApplyCamerasFilter",
|
|
442
440
|
ProjectSettingsMembersApplySearchFilter = "ApplySearchFilter",
|
|
441
|
+
ProjectSettingsMembersViewRoleInfo = "ViewRoleInfo",
|
|
442
|
+
ProjectSettingsMembersViewMemberInfo = "ViewMemberInfo",
|
|
443
|
+
ProjectSettingsMembersBulkRemove = "BulkRemove",
|
|
444
|
+
ProjectSettingsMembersInviteSent = "InviteSent",
|
|
445
|
+
ProjectSettingsMembersRejectInvite = "RejectInvite",
|
|
443
446
|
ProjectSettingsMembersAddMember = "AddMember",
|
|
447
|
+
ProjectSettingsMembersBulkRoleUpdate = "BulkRoleUpdate",
|
|
444
448
|
ProjectSettingsMembersDeleteCameraAccess = "DeleteCameraAccess",
|
|
445
449
|
ProjectSettingsMembersEditCameraAccess = "EditCameraAccess",
|
|
446
|
-
ProjectSettingsMembersFiltersClick = "FiltersClick",
|
|
447
450
|
ProjectSettingsMembersShareCamera = "ShareCamera",
|
|
448
451
|
ProjectSettingsMembersToggleAddDialog = "ToggleAddDialog",
|
|
449
452
|
ProjectSettingsOverviewOpenInMapView = "OpenInMapView",
|
|
@@ -478,6 +481,7 @@ export declare enum AnalyticsEvent {
|
|
|
478
481
|
GateReportToggleThumbnails = "ToggleThumbnails",
|
|
479
482
|
PpeTimelineDateClick = "PpeTimeline-DateClick",
|
|
480
483
|
HelpMenuToggleMenuButton = "HelpMenu-ToggleMenuButton",
|
|
484
|
+
HelpMenuOpenProjectContactsDialog = "HelpMenu-OpenProjectContactsDialog",
|
|
481
485
|
HelpMenuOpenLiveChat = "HelpMenu-OpenLiveChat",
|
|
482
486
|
HelpMenuClickTutorialsLink = "HelpMenu-ClickTutorialsLink",
|
|
483
487
|
HelpMenuClickWhatsNewLink = "HelpMenu-ClickWhatsNewLink",
|
|
@@ -494,8 +498,29 @@ export declare enum AnalyticsEvent {
|
|
|
494
498
|
ExportPdf = "ExportPdf",
|
|
495
499
|
ExportCsv = "ExportCsv",
|
|
496
500
|
FilterCameras = "FilterCameras",
|
|
501
|
+
ProgressPhotoCancelPause = "ProgressPhoto-CancelPause",
|
|
502
|
+
ProgressPhotoCancelResume = "ProgressPhoto-CancelResume",
|
|
503
|
+
ProgressPhotoCancelDelete = "ProgressPhoto-CancelDelete",
|
|
504
|
+
ProgressPhotoCreate = "ProgressPhoto-Create",
|
|
505
|
+
ProgressPhotoDelete = "ProgressPhoto-Delete",
|
|
506
|
+
ProgressPhotoEdit = "ProgressPhoto-Edit",
|
|
507
|
+
ProgressPhotoPause = "ProgressPhoto-Pause",
|
|
508
|
+
ProgressPhotoResume = "ProgressPhoto-Resume",
|
|
509
|
+
ProgressPhotoResumeDelete = "ProgressPhoto-ResumeDelete",
|
|
510
|
+
ProgressPhotoSelectType = "ProgressPhoto-SelectType",
|
|
511
|
+
ProgressPhotoSelectCameras = "ProgressPhoto-SelectCameras",
|
|
512
|
+
ProgressPhotoToggleSelectAllOnlineCameras = "ProgressPhoto-ToggleSelectAllOnlineCameras",
|
|
513
|
+
ProgressPhotoToggleSelectAllCameras = "ProgressPhoto-ToggleSelectAllCameras",
|
|
514
|
+
ProgressPhotoClearAllCameras = "ProgressPhoto-ClearAllCameras",
|
|
515
|
+
ProgressPhotoEditCamerasSearchFilter = "ProgressPhoto-EditCamerasSearchFilter",
|
|
516
|
+
ProgressPhotoSelectDays = "ProgressPhoto-SelectDays",
|
|
517
|
+
ProgressPhotoSelectMember = "ProgressPhoto-SelectMember",
|
|
518
|
+
ProgressPhotoSelectProvider = "ProgressPhoto-SelectProvider",
|
|
519
|
+
ProgressPhotoSelectTime = "ProgressPhoto-SelectTime",
|
|
520
|
+
ProgressPhotoSelectTimezone = "ProgressPhoto-SelectTimezone",
|
|
521
|
+
ProgressPhotoUnsubscribeUser = "ProgressPhoto-UnsubscribeUser",
|
|
497
522
|
CompareSelectProvider = "Compare-SelectProvider",
|
|
498
|
-
|
|
523
|
+
CompareSelectCameras = "Compare-SelectCameras",
|
|
499
524
|
CompareEdit = "Compare-Edit",
|
|
500
525
|
CompareSelectTimezone = "Compare-SelectTimezone",
|
|
501
526
|
CompareSelectMember = "Compare-SelectMember",
|
|
@@ -503,12 +528,32 @@ export declare enum AnalyticsEvent {
|
|
|
503
528
|
CompareToggleSelectAllCameras = "Compare-ToggleSelectAllCameras",
|
|
504
529
|
CompareClearAllCameras = "Compare-ClearAllCameras",
|
|
505
530
|
CompareEditCamerasSearchFilter = "Compare-EditCamerasSearchFilter",
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
531
|
+
CompareSelectType = "Compare-SelectType",
|
|
532
|
+
CompareCreate = "Compare-Create",
|
|
533
|
+
AutomationsEditSearchFilter = "EditSearchFilter",
|
|
534
|
+
AutomationsEditStatusFilter = "EditStatusFilter",
|
|
535
|
+
AutomationsEditUsersFilter = "EditUsersFilter",
|
|
536
|
+
AutomationsEditDaysFilter = "EditDaysFilter",
|
|
537
|
+
AutomationsEditCamerasFilter = "EditCamerasFilter",
|
|
509
538
|
AutomationToggleEditDialog = "ToggleEditDialog",
|
|
510
539
|
AutomationToggleCreateDialog = "ToggleCreateDialog",
|
|
511
540
|
AutomationTypeName = "TypeName",
|
|
541
|
+
GateReportSelectType = "GateReport-SelectType",
|
|
542
|
+
GateReportToggleSelectAllCameras = "GateReport-ToggleSelectAllCameras",
|
|
543
|
+
GateReportToggleSelectAllOnlineCameras = "GateReport-ToggleSelectAllOnlineCameras",
|
|
544
|
+
GateReportToggleClearAllCameras = "GateReport-ClearAllCameras",
|
|
545
|
+
GateReportEditCamerasSearchFilter = "GateReport-EditCamerasSearchFilter",
|
|
546
|
+
GateReportSelectDays = "GateReport-SelectDays",
|
|
547
|
+
GateReportSelectTime = "GateReport-SelectTime",
|
|
548
|
+
GateReportSelectTimezone = "GateReport-SelectTimezone",
|
|
549
|
+
GateReportSelectVehicleTypes = "GateReport-SelectVehicleTypes",
|
|
550
|
+
GateReportSelectColumn = "GateReport-SelectColumn",
|
|
551
|
+
GateReportSelectPeriod = "GateReport-SelectPeriod",
|
|
552
|
+
GateReportSelectExportType = "GateReport-SelectExportType",
|
|
553
|
+
GateReportSelectMember = "GateReport-SelectMember",
|
|
554
|
+
GateReportSelectCameras = "GateReport-SelectCameras",
|
|
555
|
+
GateReportCreate = "GateReport-Create",
|
|
556
|
+
GateReportEdit = "GateReport-Edit",
|
|
512
557
|
CompareSelectDays = "Compare-SelectDays",
|
|
513
558
|
CompareSelectDelay = "Compare-SelectDelay",
|
|
514
559
|
CompareSelectTime = "Compare-SelectTime",
|
|
@@ -524,12 +569,19 @@ export declare enum AnalyticsEvent {
|
|
|
524
569
|
SmartSearchFilterSavedQueries = "SmartSearch-FilterSavedQueries",
|
|
525
570
|
SmartSearchThumbnailHover = "SmartSearch-ThumbnailHover",
|
|
526
571
|
SmartSearchThumbnailError = "SmartSearch-ThumbnailError",
|
|
527
|
-
|
|
572
|
+
SmartSearchViewSelected = "SmartSearch-ViewSelected",
|
|
528
573
|
SmartSearchOptionClicked = "SmartSearch-OptionClicked",
|
|
529
574
|
SmartSearchEditQuery = "SmartSearch-EditQuery",
|
|
530
575
|
SmartSearchDeleteQuery = "SmartSearch-DeleteQuery",
|
|
531
576
|
SmartSearchSaveQuery = "SmartSearch-SaveQuery",
|
|
532
577
|
SmartSearchThumbnailPlay = "SmartSearch-ThumbnailPlay",
|
|
533
578
|
SmartSearchExportFile = "SmartSearch-ExportFile",
|
|
534
|
-
SmartSearchDownloadHeatmapImage = "SmartSearch-DownloadHeatmapImage"
|
|
579
|
+
SmartSearchDownloadHeatmapImage = "SmartSearch-DownloadHeatmapImage",
|
|
580
|
+
AskAIClickAskAI = "AskAI-ClickAskAI",
|
|
581
|
+
AskAIClickExpand = "AskAI-ClickExpand",
|
|
582
|
+
AskAIClickCollapse = "AskAI-ClickCollapse",
|
|
583
|
+
AskAIClickVoice = "AskAI-ClickVoice",
|
|
584
|
+
AskAIClickFullscreen = "AskAI-ClickFullscreen",
|
|
585
|
+
AskAIExitFullscreen = "AskAI-ExitFullscreen",
|
|
586
|
+
AskAICloseChat = "AskAI-CloseChat"
|
|
535
587
|
}
|