@evercam/api 1.0.0-45ea32a9b → 1.0.0-4691f88e3

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.
Files changed (55) hide show
  1. package/README.md +3 -0
  2. package/dist/api/api/3dFirebaseApi.d.ts +16 -1
  3. package/dist/api/api/adminApi.d.ts +65 -32
  4. package/dist/api/api/aiApi.d.ts +25 -44
  5. package/dist/api/api/authzApi.d.ts +10 -1
  6. package/dist/api/api/client/axios.d.ts +1 -0
  7. package/dist/api/api/evercamApi.d.ts +24 -14
  8. package/dist/api/api/evercamLabsApi.d.ts +5 -2
  9. package/dist/api/api/ingestApi.d.ts +39 -11
  10. package/dist/api/api/ptzApi.d.ts +4 -0
  11. package/dist/api/api/videoWallApi.d.ts +7 -7
  12. package/dist/api/types/360.d.ts +188 -3
  13. package/dist/api/types/aconex.d.ts +102 -4
  14. package/dist/api/types/analytics.d.ts +78 -6
  15. package/dist/api/types/anpr.d.ts +5 -11
  16. package/dist/api/types/authz.d.ts +23 -0
  17. package/dist/api/types/automation.d.ts +51 -0
  18. package/dist/api/types/axios.d.ts +3 -0
  19. package/dist/api/types/camera.d.ts +20 -3
  20. package/dist/api/types/comments.d.ts +18 -2
  21. package/dist/api/types/company.d.ts +1 -1
  22. package/dist/api/types/coolify.d.ts +2 -0
  23. package/dist/api/types/credentials.d.ts +1 -0
  24. package/dist/api/types/detections.d.ts +5 -20
  25. package/dist/api/types/errors.d.ts +1 -0
  26. package/dist/api/types/gateReport.d.ts +4 -101
  27. package/dist/api/types/index.d.ts +3 -0
  28. package/dist/api/types/ingest.d.ts +4 -0
  29. package/dist/api/types/kit.d.ts +47 -5
  30. package/dist/api/types/planner.d.ts +4 -1
  31. package/dist/api/types/progressPhoto.d.ts +1 -30
  32. package/dist/api/types/project.d.ts +47 -3
  33. package/dist/api/types/recording.d.ts +1 -0
  34. package/dist/api/types/recycleBin.d.ts +14 -0
  35. package/dist/api/types/routeParams.d.ts +2 -1
  36. package/dist/api/types/router.d.ts +19 -0
  37. package/dist/api/types/shared.d.ts +0 -5
  38. package/dist/api/types/shares.d.ts +5 -5
  39. package/dist/api/types/siteAnalytics.d.ts +132 -27
  40. package/dist/api/types/snapshots.d.ts +9 -0
  41. package/dist/api/types/sso.d.ts +55 -0
  42. package/dist/api/types/streaming.d.ts +1 -2
  43. package/dist/api/types/time.d.ts +4 -0
  44. package/dist/api/types/user.d.ts +4 -0
  45. package/dist/api/types/videoWall.d.ts +34 -1
  46. package/dist/api/types/weather.d.ts +2 -0
  47. package/dist/api/types/widget.d.ts +27 -6
  48. package/dist/api/utils.d.ts +1 -0
  49. package/dist/index.js +1083 -860
  50. package/dist/index.js.map +1 -1
  51. package/dist/index.umd.cjs +1 -1
  52. package/dist/index.umd.cjs.map +1 -1
  53. package/dist/shared/types/components.d.ts +9 -2
  54. package/dist/shared/types/imagePlayer.d.ts +1 -1
  55. package/package.json +4 -4
@@ -1,9 +1,9 @@
1
- import { VideoWallPreset } from "@evercam/api/types";
1
+ import { type PaginatedItems } from "@evercam/shared/types";
2
+ import { VideoWall, ListParams, VideoWallCreateUpdatePayload } from "@evercam/api/types/videoWall";
2
3
  export declare const VideoWallApi: {
3
- presets: {
4
- getProjectPresets(email: string, projectId: number): Promise<import("axios").AxiosResponse<any, any>>;
5
- saveProjectPreset(email: string, projectId: string, payload: Record<string, unknown>): Promise<import("axios").AxiosResponse<any, any>>;
6
- getGlobalPreset(email: string): Promise<VideoWallPreset>;
7
- saveGlobalPreset(email: string, payload: VideoWallPreset): Promise<void>;
8
- };
4
+ list(params?: ListParams): Promise<import("axios").AxiosResponse<PaginatedItems<VideoWall>, any>>;
5
+ create(body: VideoWallCreateUpdatePayload): Promise<import("axios").AxiosResponse<VideoWall, any>>;
6
+ get(exid: string | number): Promise<import("axios").AxiosResponse<VideoWall, any>>;
7
+ update(exid: string | number, body: Partial<VideoWallCreateUpdatePayload>): Promise<import("axios").AxiosResponse<VideoWall, any>>;
8
+ delete(exid: string | number): Promise<import("axios").AxiosResponse<any, any>>;
9
9
  };
@@ -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
- floorID: string;
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: string;
13
- floors: _360Floor[];
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",
@@ -40,6 +173,10 @@ export declare enum _360AssetType {
40
173
  MobilePhoto = "mobile_photos",
41
174
  MobileAudio = "mobile_audios"
42
175
  }
176
+ export declare enum _360AssetLabel {
177
+ Walks = "walks",
178
+ MobilePhotos = "mobilePhotos"
179
+ }
43
180
  export declare enum _360Feature {
44
181
  BIM = "BIM",
45
182
  Minimap = "Minimap",
@@ -52,6 +189,11 @@ export declare enum _360IntergrationType {
52
189
  HoloBuilder = "Holobuilder",
53
190
  DroneDeploy = "Dronedeploy"
54
191
  }
192
+ export declare enum PathMarkerColor {
193
+ Start = "#00e74c",
194
+ End = "#fd7567",
195
+ Default = "#2196F3"
196
+ }
55
197
  export type _360AssetsQueryParams = {
56
198
  page: number;
57
199
  limit: number;
@@ -66,6 +208,49 @@ export type _360AssetsRequestPayload = {
66
208
  floor: string;
67
209
  uploadedBy?: string;
68
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
+ };
69
254
  export type _360AssetsUploadPayload = {
70
255
  targetPointsCount: number;
71
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 AconexDocumentSchemaField = {
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
- Date = "DATE"
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,7 +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",
283
+ ThreeSixtyGalleryTimelineDateClick = "Gallery-TimelineDateClick",
262
284
  ThreeSixtyGalleryToggleUploadDialog = "Gallery-ToggleUploadDialog",
285
+ ThreeSixtyGalleryToggleFilters = "Gallery-ToggleFilters",
286
+ ThreeSixtyGalleryUpdateFloorName = "Gallery-UpdateFloorName",
287
+ ThreeSixtyGalleryEditWalkName = "Gallery-EditWalkName",
263
288
  ThreeSixtyChangeDate = "ChangeDate",
264
289
  ThreeSixtyChangeFloor = "ChangeFloor",
265
290
  ThreeSixtyCloseCompare = "CloseCompare",
@@ -296,7 +321,6 @@ export declare enum AnalyticsEvent {
296
321
  ThreeSixtyTourToggleLoop = "Tour-ToggleLoop",
297
322
  ThreeSixtyUnlockCompare = "UnlockCompare",
298
323
  ThreeSixtyUnlockForgeBIM = "UnlockForgeBIM",
299
- ThreeSixtyUpdateFloorName = "UpdateFloorName",
300
324
  ThreeSixtyUploadAssets = "UploadAssets",
301
325
  DroneAreaToolClick = "AreaTool-Click",
302
326
  DroneChangeDate = "ChangeDate",
@@ -334,6 +358,7 @@ export declare enum AnalyticsEvent {
334
358
  DroneVolumeToolClick = "VolumeTool-Click",
335
359
  DroneZoomIn = "ZoomIn",
336
360
  DroneZoomOut = "ZoomOut",
361
+ DroneUploadSkipping = "SkipImageUpload",// To be removed later
337
362
  PlannerAddCameraClick = "AddCameraClick",
338
363
  PlannerAddSitePlanDrawingClick = "AddSitePlanDrawingClick",
339
364
  PlannerAddSitePlanClick = "AddSitePlanClick",
@@ -357,8 +382,31 @@ export declare enum AnalyticsEvent {
357
382
  PlannerUploadSitePlanDrawing = "UploadSitePlanDrawing",
358
383
  PlannerZoomIn = "ZoomIn",
359
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",
360
408
  MarkerClicked = "MarkerClicked",
361
- TimelapseToggleHelpDialog = "ToggleHelpDialog",
409
+ MarkerSelected = "MarkerSelected",
362
410
  TimelapseSelectCustomPeriod = "SelectCustomPeriod",
363
411
  TimelapseToggleCustomScheduleDialog = "ToggleCustomScheduleDialog",
364
412
  TimelapseSaveCustomSchedule = "SaveCustomSchedule",
@@ -388,12 +436,16 @@ export declare enum AnalyticsEvent {
388
436
  ProgressPhotoResumeDelete = "ProgressPhoto-ResumeDelete",
389
437
  ProgressPhotoSelectType = "ProgressPhoto-SelectType",
390
438
  ProgressPhotoSelectCameras = "ProgressPhoto-SelectCameras",
439
+ ProgressPhotoToggleSelectAllOnlineCameras = "ProgressPhoto-ToggleSelectAllOnlineCameras",
440
+ ProgressPhotoToggleSelectAllCameras = "ProgressPhoto-ToggleSelectAllCameras",
441
+ ProgressPhotoClearAllCameras = "ProgressPhoto-ClearAllCameras",
442
+ ProgressPhotoEditCamerasSearchFilter = "ProgressPhoto-EditCamerasSearchFilter",
391
443
  ProgressPhotoSelectDays = "ProgressPhoto-SelectDays",
392
444
  ProgressPhotoSelectMember = "ProgressPhoto-SelectMember",
393
445
  ProgressPhotoSelectProvider = "ProgressPhoto-SelectProvider",
394
446
  ProgressPhotoSelectTime = "ProgressPhoto-SelectTime",
395
447
  ProgressPhotoSelectTimezone = "ProgressPhoto-SelectTimezone",
396
- ProgressPhotoSelectDelay = "ProgressPhoto-SelectDelay",
448
+ ProgressPhotoEditSelectedCameras = "ProgressPhoto-EditSelectedCameras",
397
449
  ProgressPhotoToggleCreateDialog = "ProgressPhoto-ToggleCreateDialog",
398
450
  ProgressPhotoToggleEditDialog = "ProgressPhoto-ToggleEditDialog",
399
451
  ProgressPhotoUnsubscribeUser = "ProgressPhoto-UnsubscribeUser",
@@ -451,6 +503,7 @@ export declare enum AnalyticsEvent {
451
503
  GateReportToggleThumbnails = "ToggleThumbnails",
452
504
  PpeTimelineDateClick = "PpeTimeline-DateClick",
453
505
  HelpMenuToggleMenuButton = "HelpMenu-ToggleMenuButton",
506
+ HelpMenuOpenProjectContactsDialog = "HelpMenu-OpenProjectContactsDialog",
454
507
  HelpMenuOpenLiveChat = "HelpMenu-OpenLiveChat",
455
508
  HelpMenuClickTutorialsLink = "HelpMenu-ClickTutorialsLink",
456
509
  HelpMenuClickWhatsNewLink = "HelpMenu-ClickWhatsNewLink",
@@ -467,6 +520,24 @@ export declare enum AnalyticsEvent {
467
520
  ExportPdf = "ExportPdf",
468
521
  ExportCsv = "ExportCsv",
469
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",
470
541
  SmartSearchToggleQueryBuilder = "SmartSearch-ToggleQueryBuilder",
471
542
  SmartSearchToggleQuerySelector = "SmartSearch-ToggleQuerySelector",
472
543
  SmartSearchDeleteComponent = "SmartSearch-DeleteComponent",
@@ -479,11 +550,12 @@ export declare enum AnalyticsEvent {
479
550
  SmartSearchFilterSavedQueries = "SmartSearch-FilterSavedQueries",
480
551
  SmartSearchThumbnailHover = "SmartSearch-ThumbnailHover",
481
552
  SmartSearchThumbnailError = "SmartSearch-ThumbnailError",
482
- SmartSearchCameraSelected = "SmartSearch-CameraSelected",
553
+ SmartSearchViewSelected = "SmartSearch-ViewSelected",
483
554
  SmartSearchOptionClicked = "SmartSearch-OptionClicked",
484
555
  SmartSearchEditQuery = "SmartSearch-EditQuery",
485
556
  SmartSearchDeleteQuery = "SmartSearch-DeleteQuery",
486
557
  SmartSearchSaveQuery = "SmartSearch-SaveQuery",
487
558
  SmartSearchThumbnailPlay = "SmartSearch-ThumbnailPlay",
488
- SmartSearchExportFile = "SmartSearch-ExportFile"
559
+ SmartSearchExportFile = "SmartSearch-ExportFile",
560
+ SmartSearchDownloadHeatmapImage = "SmartSearch-DownloadHeatmapImage"
489
561
  }
@@ -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
- tab?: string;
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,23 @@
1
+ export declare enum RoleResourceType {
2
+ App = "app",
3
+ Camera = "camera",
4
+ Project = "project"
5
+ }
6
+ export type Role = {
7
+ id: number;
8
+ name: string;
9
+ resource: string;
10
+ resourceType: RoleResourceType;
11
+ permissions: string[];
12
+ subRoles?: Array<{
13
+ resourceId: string;
14
+ roleId: number;
15
+ }>;
16
+ };
17
+ export type ProjectResourceRole = Role & {
18
+ resourceType: RoleResourceType.Project;
19
+ };
20
+ export type CameraResourceRole = Omit<Role, "subRoles"> & {
21
+ resourceType: RoleResourceType.Camera;
22
+ };
23
+ 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
+ }
@@ -8,6 +8,7 @@ export type AxiosEnvironment = {
8
8
  baseUrl?: string | null;
9
9
  stagingAiApiUrl?: string | null;
10
10
  aiApiUrl?: string | null;
11
+ aiApiUrlV2?: string | null;
11
12
  ingestApiUrl?: string | null;
12
13
  ingestGpuApiUrl?: string | null;
13
14
  posthogApiUrl?: string | null;
@@ -17,6 +18,8 @@ export type AxiosEnvironment = {
17
18
  weatherApiBaseUrl?: string | null;
18
19
  evercamLabsUrl?: string | null;
19
20
  firebaseDbLink?: string | null;
21
+ firebaseStorageUrl?: string | null;
22
+ firebaseStorageToken?: string | null;
20
23
  snapshotsURL?: string | null;
21
24
  app?: string | null;
22
25
  getAuthToken?: () => string | null;