@evercam/api 1.0.0-e03adefb8 → 1.0.0-e13c64fc3
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 +3 -0
- package/dist/api/api/3dFirebaseApi.d.ts +17 -1
- package/dist/api/api/adminApi.d.ts +115 -62
- package/dist/api/api/aiApi.d.ts +65 -81
- 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 +14 -0
- package/dist/api/api/client/swr/SwrStore.d.ts +10 -0
- package/dist/api/api/evercamApi.d.ts +125 -96
- 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 +112 -33
- 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 +192 -5
- 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 +154 -40
- 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 +21 -1
- package/dist/api/types/bim.d.ts +11 -5
- package/dist/api/types/camera.d.ts +103 -75
- package/dist/api/types/comments.d.ts +21 -9
- package/dist/api/types/company.d.ts +71 -2
- 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 +20 -2
- package/dist/api/types/copilot.d.ts +11 -6
- package/dist/api/types/countries.d.ts +0 -7
- package/dist/api/types/credentials.d.ts +1 -0
- package/dist/api/types/detections.d.ts +18 -24
- package/dist/api/types/errors.d.ts +1 -0
- 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 +8 -0
- package/dist/api/types/ingest.d.ts +89 -2
- package/dist/api/types/kit.d.ts +64 -9
- 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 +4 -1
- package/dist/api/types/posthog.d.ts +15 -0
- package/dist/api/types/procore.d.ts +26 -16
- package/dist/api/types/progressPhoto.d.ts +10 -24
- package/dist/api/types/project.d.ts +131 -17
- package/dist/api/types/recording.d.ts +3 -3
- package/dist/api/types/recycleBin.d.ts +14 -0
- package/dist/api/types/ring.d.ts +53 -0
- package/dist/api/types/routeParams.d.ts +2 -1
- package/dist/api/types/router.d.ts +20 -1
- package/dist/api/types/shared.d.ts +12 -10
- 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 +194 -48
- package/dist/api/types/smartSeach.d.ts +5 -0
- package/dist/api/types/snapshots.d.ts +10 -1
- package/dist/api/types/sso.d.ts +55 -0
- package/dist/api/types/storyblok.d.ts +40 -0
- package/dist/api/types/streaming.d.ts +4 -5
- 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 +96 -16
- package/dist/api/types/xweather.d.ts +4 -4
- package/dist/api/utils.d.ts +1 -0
- package/dist/index.js +1416 -920
- 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 +98 -12
- package/dist/shared/types/imagePlayer.d.ts +2 -2
- package/dist/shared/types/timeline.d.ts +2 -1
- package/package.json +5 -4
|
@@ -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",
|
|
@@ -258,7 +281,18 @@ export declare enum AnalyticsEvent {
|
|
|
258
281
|
SharingTransferOwnership = "TransferOwnership",
|
|
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",
|
|
291
|
+
ThreeSixtyGalleryTimelineDateClick = "Gallery-TimelineDateClick",
|
|
292
|
+
ThreeSixtyGalleryToggleUploadDialog = "Gallery-ToggleUploadDialog",
|
|
293
|
+
ThreeSixtyGalleryToggleFilters = "Gallery-ToggleFilters",
|
|
294
|
+
ThreeSixtyGalleryUpdateFloorName = "Gallery-UpdateFloorName",
|
|
295
|
+
ThreeSixtyGalleryEditWalkName = "Gallery-EditWalkName",
|
|
262
296
|
ThreeSixtyChangeDate = "ChangeDate",
|
|
263
297
|
ThreeSixtyChangeFloor = "ChangeFloor",
|
|
264
298
|
ThreeSixtyCloseCompare = "CloseCompare",
|
|
@@ -295,10 +329,10 @@ export declare enum AnalyticsEvent {
|
|
|
295
329
|
ThreeSixtyTourToggleLoop = "Tour-ToggleLoop",
|
|
296
330
|
ThreeSixtyUnlockCompare = "UnlockCompare",
|
|
297
331
|
ThreeSixtyUnlockForgeBIM = "UnlockForgeBIM",
|
|
298
|
-
|
|
332
|
+
ThreeSixtyUploadAssets = "UploadAssets",
|
|
299
333
|
DroneAreaToolClick = "AreaTool-Click",
|
|
300
334
|
DroneChangeDate = "ChangeDate",
|
|
301
|
-
|
|
335
|
+
DroneChooseCommentType = "ChooseCommentType",
|
|
302
336
|
DroneClickCameraLiveView = "ClickCameraLiveView",
|
|
303
337
|
DroneClickCameraMarker = "ClickCameraMarker",
|
|
304
338
|
DroneCompareToolClick = "CompareTool-Click",
|
|
@@ -313,13 +347,14 @@ export declare enum AnalyticsEvent {
|
|
|
313
347
|
DroneOpenHelpPanel = "OpenHelpPanel",
|
|
314
348
|
DroneOpenImageViewer = "OpenImageViewer",
|
|
315
349
|
DroneResetView = "ResetView",
|
|
316
|
-
DroneSaveTag = "SaveTag",
|
|
317
350
|
DroneSettingsToggle360PathsVisibility = "Settings-Toggle360PathsVisibility",
|
|
318
351
|
DroneSettingsToggleCameraMarkersVisibility = "Settings-ToggleCameraMarkersVisibility",
|
|
319
352
|
DroneSettingsToggleSurroundingBuildingsTool = "Settings-ToggleSurroundingBuildingsTool",
|
|
320
|
-
|
|
353
|
+
DroneSettingsToggleCommentsVisibility = "Settings-ToggleCommentsVisibility",
|
|
354
|
+
DroneSettingsToggleAerialShotsVisibility = "Settings-ToggleAerialShotsVisibility",
|
|
355
|
+
DroneSettingsOpenCommentsList = "Settings-OpenCommentsList",
|
|
321
356
|
DroneShareLink = "ShareLink",
|
|
322
|
-
|
|
357
|
+
DroneCommentsToolClick = "CommentsTool-Click",
|
|
323
358
|
DroneToggleBimCompareTool = "ToggleBimCompareTool",
|
|
324
359
|
DroneToggleFullScreen = "ToggleFullScreen",
|
|
325
360
|
DroneToggleMapStyle = "ToggleMapStyle",
|
|
@@ -332,6 +367,11 @@ export declare enum AnalyticsEvent {
|
|
|
332
367
|
DroneVolumeToolClick = "VolumeTool-Click",
|
|
333
368
|
DroneZoomIn = "ZoomIn",
|
|
334
369
|
DroneZoomOut = "ZoomOut",
|
|
370
|
+
DroneUploadSkipping = "SkipImageUpload",// To be removed later
|
|
371
|
+
DroneSaveComment = "SaveComment",
|
|
372
|
+
DroneUnarchiveComment = "UnarchiveComment",
|
|
373
|
+
DroneArchiveComment = "ArchiveComment",
|
|
374
|
+
DroneDeleteComment = "DeleteComment",
|
|
335
375
|
PlannerAddCameraClick = "AddCameraClick",
|
|
336
376
|
PlannerAddSitePlanDrawingClick = "AddSitePlanDrawingClick",
|
|
337
377
|
PlannerAddSitePlanClick = "AddSitePlanClick",
|
|
@@ -355,8 +395,31 @@ export declare enum AnalyticsEvent {
|
|
|
355
395
|
PlannerUploadSitePlanDrawing = "UploadSitePlanDrawing",
|
|
356
396
|
PlannerZoomIn = "ZoomIn",
|
|
357
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",
|
|
358
421
|
MarkerClicked = "MarkerClicked",
|
|
359
|
-
|
|
422
|
+
MarkerSelected = "MarkerSelected",
|
|
360
423
|
TimelapseSelectCustomPeriod = "SelectCustomPeriod",
|
|
361
424
|
TimelapseToggleCustomScheduleDialog = "ToggleCustomScheduleDialog",
|
|
362
425
|
TimelapseSaveCustomSchedule = "SaveCustomSchedule",
|
|
@@ -368,31 +431,6 @@ export declare enum AnalyticsEvent {
|
|
|
368
431
|
TimelapseGoToMediaHub = "GoToMediaHub",
|
|
369
432
|
TimelapseToggleUploadLogoDialog = "ToggleUploadLogoDialog",
|
|
370
433
|
TimelapseUploadLogo = "UploadLogo",
|
|
371
|
-
ProgressPhotoCancelPause = "ProgressPhoto-CancelPause",
|
|
372
|
-
ProgressPhotoCancelResume = "ProgressPhoto-CancelResume",
|
|
373
|
-
ProgressPhotoCancelDelete = "ProgressPhoto-CancelDelete",
|
|
374
|
-
ProgressPhotoCreate = "ProgressPhoto-Create",
|
|
375
|
-
ProgressPhotoDelete = "ProgressPhoto-Delete",
|
|
376
|
-
ProgressPhotoEdit = "ProgressPhoto-Edit",
|
|
377
|
-
ProgressPhotoEditCamerasFilter = "ProgressPhoto-EditCamerasFilter",
|
|
378
|
-
ProgressPhotoEditDaysFilter = "ProgressPhoto-EditDaysFilter",
|
|
379
|
-
ProgressPhotoEditProjectsFilter = "ProgressPhoto-EditProjectsFilter",
|
|
380
|
-
ProgressPhotoEditSearchFilter = "ProgressPhoto-EditSearchFilter",
|
|
381
|
-
ProgressPhotoEditStatusFilter = "ProgressPhoto-EditStatusFilter",
|
|
382
|
-
ProgressPhotoEditUsersFilter = "ProgressPhoto-EditUsersFilter",
|
|
383
|
-
ProgressPhotoFiltersClicked = "ProgressPhoto-FiltersClicked",
|
|
384
|
-
ProgressPhotoPause = "ProgressPhoto-Pause",
|
|
385
|
-
ProgressPhotoResume = "ProgressPhoto-Resume",
|
|
386
|
-
ProgressPhotoResumeDelete = "ProgressPhoto-ResumeDelete",
|
|
387
|
-
ProgressPhotoSelectCameras = "ProgressPhoto-SelectCameras",
|
|
388
|
-
ProgressPhotoSelectDays = "ProgressPhoto-SelectDays",
|
|
389
|
-
ProgressPhotoSelectMember = "ProgressPhoto-SelectMember",
|
|
390
|
-
ProgressPhotoSelectProvider = "ProgressPhoto-SelectProvider",
|
|
391
|
-
ProgressPhotoSelectTime = "ProgressPhoto-SelectTime",
|
|
392
|
-
ProgressPhotoSelectTimezone = "ProgressPhoto-SelectTimezone",
|
|
393
|
-
ProgressPhotoToggleCreateDialog = "ProgressPhoto-ToggleCreateDialog",
|
|
394
|
-
ProgressPhotoToggleEditDialog = "ProgressPhoto-ToggleEditDialog",
|
|
395
|
-
ProgressPhotoUnsubscribeUser = "ProgressPhoto-UnsubscribeUser",
|
|
396
434
|
MapViewChooseSatellite = "MapView-ChooseSatellite",
|
|
397
435
|
MapViewChooseTerrain = "MapView-ChooseMap",
|
|
398
436
|
MapViewClickCameraLink = "MapView-ClickCameraLink",
|
|
@@ -447,15 +485,83 @@ export declare enum AnalyticsEvent {
|
|
|
447
485
|
GateReportToggleThumbnails = "ToggleThumbnails",
|
|
448
486
|
PpeTimelineDateClick = "PpeTimeline-DateClick",
|
|
449
487
|
HelpMenuToggleMenuButton = "HelpMenu-ToggleMenuButton",
|
|
488
|
+
HelpMenuOpenProjectContactsDialog = "HelpMenu-OpenProjectContactsDialog",
|
|
450
489
|
HelpMenuOpenLiveChat = "HelpMenu-OpenLiveChat",
|
|
451
490
|
HelpMenuClickTutorialsLink = "HelpMenu-ClickTutorialsLink",
|
|
452
491
|
HelpMenuClickWhatsNewLink = "HelpMenu-ClickWhatsNewLink",
|
|
453
492
|
HelpMenuClickUserManuaLink = "HelpMenu-ClickUserManuaLink",
|
|
454
493
|
HelpMenuClickSupportTicketsLink = "HelpMenu-ClickSupportTicketsLink",
|
|
455
494
|
HelpMenuClickSystemCheckLink = "HelpMenu-ClickSystemCheckLink",
|
|
495
|
+
Recording = "Recording",
|
|
496
|
+
CameraFilter = "CameraFilter",
|
|
497
|
+
MissingEquipmentHardHat = "MissingEquipment-HardHat",
|
|
498
|
+
MissingEquipmentHighVisibilityVest = "MissingEquipment-HighVisibilityVest",
|
|
499
|
+
MissingEquipmentSafetyGlasses = "MissingEquipment-SafetyGlasses",
|
|
500
|
+
MissingEquipmentSafetyGloves = "MissingEquipment-SafteyGLoves",
|
|
501
|
+
ExportAs = "ExportAs",
|
|
456
502
|
ExportPdf = "ExportPdf",
|
|
457
503
|
ExportCsv = "ExportCsv",
|
|
458
504
|
FilterCameras = "FilterCameras",
|
|
505
|
+
ProgressPhotoCancelPause = "ProgressPhoto-CancelPause",
|
|
506
|
+
ProgressPhotoCancelResume = "ProgressPhoto-CancelResume",
|
|
507
|
+
ProgressPhotoCancelDelete = "ProgressPhoto-CancelDelete",
|
|
508
|
+
ProgressPhotoCreate = "ProgressPhoto-Create",
|
|
509
|
+
ProgressPhotoDelete = "ProgressPhoto-Delete",
|
|
510
|
+
ProgressPhotoEdit = "ProgressPhoto-Edit",
|
|
511
|
+
ProgressPhotoPause = "ProgressPhoto-Pause",
|
|
512
|
+
ProgressPhotoResume = "ProgressPhoto-Resume",
|
|
513
|
+
ProgressPhotoResumeDelete = "ProgressPhoto-ResumeDelete",
|
|
514
|
+
ProgressPhotoSelectType = "ProgressPhoto-SelectType",
|
|
515
|
+
ProgressPhotoSelectCameras = "ProgressPhoto-SelectCameras",
|
|
516
|
+
ProgressPhotoToggleSelectAllOnlineCameras = "ProgressPhoto-ToggleSelectAllOnlineCameras",
|
|
517
|
+
ProgressPhotoToggleSelectAllCameras = "ProgressPhoto-ToggleSelectAllCameras",
|
|
518
|
+
ProgressPhotoClearAllCameras = "ProgressPhoto-ClearAllCameras",
|
|
519
|
+
ProgressPhotoEditCamerasSearchFilter = "ProgressPhoto-EditCamerasSearchFilter",
|
|
520
|
+
ProgressPhotoSelectDays = "ProgressPhoto-SelectDays",
|
|
521
|
+
ProgressPhotoSelectMember = "ProgressPhoto-SelectMember",
|
|
522
|
+
ProgressPhotoSelectProvider = "ProgressPhoto-SelectProvider",
|
|
523
|
+
ProgressPhotoSelectTime = "ProgressPhoto-SelectTime",
|
|
524
|
+
ProgressPhotoSelectTimezone = "ProgressPhoto-SelectTimezone",
|
|
525
|
+
ProgressPhotoUnsubscribeUser = "ProgressPhoto-UnsubscribeUser",
|
|
526
|
+
CompareSelectProvider = "Compare-SelectProvider",
|
|
527
|
+
CompareSelectCameras = "Compare-SelectCameras",
|
|
528
|
+
CompareEdit = "Compare-Edit",
|
|
529
|
+
CompareSelectTimezone = "Compare-SelectTimezone",
|
|
530
|
+
CompareSelectMember = "Compare-SelectMember",
|
|
531
|
+
CompareToggleSelectAllOnlineCameras = "Compare-ToggleSelectAllOnlineCameras",
|
|
532
|
+
CompareToggleSelectAllCameras = "Compare-ToggleSelectAllCameras",
|
|
533
|
+
CompareClearAllCameras = "Compare-ClearAllCameras",
|
|
534
|
+
CompareEditCamerasSearchFilter = "Compare-EditCamerasSearchFilter",
|
|
535
|
+
CompareSelectType = "Compare-SelectType",
|
|
536
|
+
CompareCreate = "Compare-Create",
|
|
537
|
+
AutomationsEditSearchFilter = "EditSearchFilter",
|
|
538
|
+
AutomationsEditStatusFilter = "EditStatusFilter",
|
|
539
|
+
AutomationsEditUsersFilter = "EditUsersFilter",
|
|
540
|
+
AutomationsEditDaysFilter = "EditDaysFilter",
|
|
541
|
+
AutomationsEditCamerasFilter = "EditCamerasFilter",
|
|
542
|
+
AutomationsFiltersClicked = "FiltersClicked",
|
|
543
|
+
AutomationToggleEditDialog = "ToggleEditDialog",
|
|
544
|
+
AutomationToggleCreateDialog = "ToggleCreateDialog",
|
|
545
|
+
AutomationTypeName = "TypeName",
|
|
546
|
+
GateReportSelectType = "GateReport-SelectType",
|
|
547
|
+
GateReportToggleSelectAllCameras = "GateReport-ToggleSelectAllCameras",
|
|
548
|
+
GateReportToggleSelectAllOnlineCameras = "GateReport-ToggleSelectAllOnlineCameras",
|
|
549
|
+
GateReportToggleClearAllCameras = "GateReport-ClearAllCameras",
|
|
550
|
+
GateReportEditCamerasSearchFilter = "GateReport-EditCamerasSearchFilter",
|
|
551
|
+
GateReportSelectDays = "GateReport-SelectDays",
|
|
552
|
+
GateReportSelectTime = "GateReport-SelectTime",
|
|
553
|
+
GateReportSelectTimezone = "GateReport-SelectTimezone",
|
|
554
|
+
GateReportSelectVehicleTypes = "GateReport-SelectVehicleTypes",
|
|
555
|
+
GateReportSelectColumn = "GateReport-SelectColumn",
|
|
556
|
+
GateReportSelectPeriod = "GateReport-SelectPeriod",
|
|
557
|
+
GateReportSelectExportType = "GateReport-SelectExportType",
|
|
558
|
+
GateReportSelectMember = "GateReport-SelectMember",
|
|
559
|
+
GateReportSelectCameras = "GateReport-SelectCameras",
|
|
560
|
+
GateReportCreate = "GateReport-Create",
|
|
561
|
+
GateReportEdit = "GateReport-Edit",
|
|
562
|
+
CompareSelectDays = "Compare-SelectDays",
|
|
563
|
+
CompareSelectDelay = "Compare-SelectDelay",
|
|
564
|
+
CompareSelectTime = "Compare-SelectTime",
|
|
459
565
|
SmartSearchToggleQueryBuilder = "SmartSearch-ToggleQueryBuilder",
|
|
460
566
|
SmartSearchToggleQuerySelector = "SmartSearch-ToggleQuerySelector",
|
|
461
567
|
SmartSearchDeleteComponent = "SmartSearch-DeleteComponent",
|
|
@@ -468,11 +574,19 @@ export declare enum AnalyticsEvent {
|
|
|
468
574
|
SmartSearchFilterSavedQueries = "SmartSearch-FilterSavedQueries",
|
|
469
575
|
SmartSearchThumbnailHover = "SmartSearch-ThumbnailHover",
|
|
470
576
|
SmartSearchThumbnailError = "SmartSearch-ThumbnailError",
|
|
471
|
-
|
|
577
|
+
SmartSearchViewSelected = "SmartSearch-ViewSelected",
|
|
472
578
|
SmartSearchOptionClicked = "SmartSearch-OptionClicked",
|
|
473
579
|
SmartSearchEditQuery = "SmartSearch-EditQuery",
|
|
474
580
|
SmartSearchDeleteQuery = "SmartSearch-DeleteQuery",
|
|
475
581
|
SmartSearchSaveQuery = "SmartSearch-SaveQuery",
|
|
476
582
|
SmartSearchThumbnailPlay = "SmartSearch-ThumbnailPlay",
|
|
477
|
-
SmartSearchExportFile = "SmartSearch-ExportFile"
|
|
583
|
+
SmartSearchExportFile = "SmartSearch-ExportFile",
|
|
584
|
+
SmartSearchDownloadHeatmapImage = "SmartSearch-DownloadHeatmapImage",
|
|
585
|
+
AskAIClickAskAI = "AskAI-ClickAskAI",
|
|
586
|
+
AskAIClickExpand = "AskAI-ClickExpand",
|
|
587
|
+
AskAIClickCollapse = "AskAI-ClickCollapse",
|
|
588
|
+
AskAIClickVoice = "AskAI-ClickVoice",
|
|
589
|
+
AskAIClickFullscreen = "AskAI-ClickFullscreen",
|
|
590
|
+
AskAIExitFullscreen = "AskAI-ExitFullscreen",
|
|
591
|
+
AskAICloseChat = "AskAI-CloseChat"
|
|
478
592
|
}
|
package/dist/api/types/anpr.d.ts
CHANGED
|
@@ -1,17 +1,7 @@
|
|
|
1
|
-
import { BoundingBox, CameraExid, DateType, GateReportVehicleType, TimelinePrecision } from "
|
|
1
|
+
import { BoundingBox, CameraExid, DateType, GateReportVehicleType, TimelinePrecision } from "@evercam/api/types";
|
|
2
2
|
export type AnprQueryParams = {
|
|
3
3
|
page?: number;
|
|
4
4
|
limit?: number;
|
|
5
|
-
firstSeen?: {
|
|
6
|
-
gte: DateType;
|
|
7
|
-
};
|
|
8
|
-
lastSeen?: {
|
|
9
|
-
lte: DateType;
|
|
10
|
-
};
|
|
11
|
-
captureTime?: {
|
|
12
|
-
gte?: DateType;
|
|
13
|
-
lt?: DateType;
|
|
14
|
-
};
|
|
15
5
|
direction?: {
|
|
16
6
|
eq?: string;
|
|
17
7
|
} | string;
|
|
@@ -21,7 +11,11 @@ export type AnprQueryParams = {
|
|
|
21
11
|
sort?: string;
|
|
22
12
|
fromDate?: DateType;
|
|
23
13
|
toDate?: DateType;
|
|
24
|
-
|
|
14
|
+
camerasExid?: CameraExid[];
|
|
15
|
+
vehicleTypes?: GateReportVehicleType[];
|
|
16
|
+
isDuplicate?: boolean;
|
|
17
|
+
isPostprocessed?: boolean;
|
|
18
|
+
isPlate?: boolean;
|
|
25
19
|
};
|
|
26
20
|
export type AnprCountsQueryParams = {
|
|
27
21
|
precision: TimelinePrecision;
|
|
@@ -68,7 +62,13 @@ export type AnprEvent = {
|
|
|
68
62
|
votedVehicleType: GateReportVehicleType | string;
|
|
69
63
|
roiId?: number;
|
|
70
64
|
captureTime: DateType;
|
|
71
|
-
|
|
65
|
+
contextThumbnailUrl: string;
|
|
66
|
+
isPublic: boolean;
|
|
67
|
+
label: string;
|
|
68
|
+
mp4Url: string;
|
|
69
|
+
plateThumbnailUrl: string;
|
|
70
|
+
thumbnailUrl: string;
|
|
71
|
+
metadata: {
|
|
72
72
|
evercamMetadata?: {
|
|
73
73
|
anpr?: {
|
|
74
74
|
bbox: BoundingBox;
|
|
@@ -101,3 +101,14 @@ export declare enum AnprEventStatus {
|
|
|
101
101
|
IsDuplicate = "is_duplicate",
|
|
102
102
|
NotDuplicate = "not_duplicate"
|
|
103
103
|
}
|
|
104
|
+
export type AnprBulkUpdateRequestPayload = {
|
|
105
|
+
anprEventsIds: number[];
|
|
106
|
+
action: AnprEventStatus;
|
|
107
|
+
updatedBy: string;
|
|
108
|
+
};
|
|
109
|
+
export type AnprUpdateRequestPayload = {
|
|
110
|
+
plateNumber: string;
|
|
111
|
+
vehicleType: GateReportVehicleType;
|
|
112
|
+
direction: AnprDirection;
|
|
113
|
+
updatedBy: string;
|
|
114
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export declare enum RoleResourceType {
|
|
2
|
+
App = "app",
|
|
3
|
+
Camera = "camera",
|
|
4
|
+
Project = "project"
|
|
5
|
+
}
|
|
6
|
+
export type RoleSubRole = {
|
|
7
|
+
resourceId: string;
|
|
8
|
+
roleId: number;
|
|
9
|
+
roleName?: string;
|
|
10
|
+
permissions?: string[];
|
|
11
|
+
};
|
|
12
|
+
export type Role = {
|
|
13
|
+
id: number;
|
|
14
|
+
name: string;
|
|
15
|
+
description?: string | null;
|
|
16
|
+
resource?: string;
|
|
17
|
+
resourceType: RoleResourceType;
|
|
18
|
+
resourceId?: string | null;
|
|
19
|
+
permissions: string[];
|
|
20
|
+
subRoles?: RoleSubRole[];
|
|
21
|
+
};
|
|
22
|
+
export type ProjectResourceRole = Role & {
|
|
23
|
+
resourceType: RoleResourceType.Project;
|
|
24
|
+
};
|
|
25
|
+
export type CameraResourceRole = Omit<Role, "subRoles"> & {
|
|
26
|
+
resourceType: RoleResourceType.Camera;
|
|
27
|
+
};
|
|
28
|
+
export type ProjectRoleRequestPayload = {
|
|
29
|
+
name: string;
|
|
30
|
+
permissions: string[];
|
|
31
|
+
subRoles?: RoleSubRole[];
|
|
32
|
+
};
|
|
33
|
+
export type AuthzRoleUser = {
|
|
34
|
+
email: string;
|
|
35
|
+
resourceId: string;
|
|
36
|
+
};
|
|
37
|
+
export type AuthzUserRolesResponse = {
|
|
38
|
+
roles: Role[];
|
|
39
|
+
};
|
|
40
|
+
export type AuthzScopePermission = {
|
|
41
|
+
id: number;
|
|
42
|
+
action: string;
|
|
43
|
+
exid: string;
|
|
44
|
+
};
|
|
45
|
+
export type AuthzScope = {
|
|
46
|
+
id: number;
|
|
47
|
+
name: string;
|
|
48
|
+
description: string | null;
|
|
49
|
+
permissions: AuthzScopePermission[];
|
|
50
|
+
app: string;
|
|
51
|
+
exid: string;
|
|
52
|
+
};
|
|
53
|
+
export type AuthzScopeCreatePayload = {
|
|
54
|
+
name: string;
|
|
55
|
+
description?: string;
|
|
56
|
+
permissions: string[];
|
|
57
|
+
};
|
|
58
|
+
export type AuthzScopeUpdatePayload = Partial<AuthzScopeCreatePayload>;
|
|
59
|
+
export declare function isProjectRole(role: Role): role is ProjectResourceRole;
|
|
60
|
+
export declare function isCameraRole(role: Role): role is CameraResourceRole;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export type AutodeskUserHub = {
|
|
2
2
|
text: string;
|
|
3
3
|
value: string;
|
|
4
|
-
}
|
|
5
|
-
export type
|
|
4
|
+
};
|
|
5
|
+
export type AutodeskProject = {
|
|
6
6
|
text: string;
|
|
7
7
|
value: string;
|
|
8
|
-
}
|
|
9
|
-
export type
|
|
8
|
+
};
|
|
9
|
+
export type AutodeskFolder = {
|
|
10
10
|
text: string;
|
|
11
11
|
value: string;
|
|
12
12
|
allowedFileType: string;
|
|
13
13
|
allowedFolderType: string;
|
|
14
|
-
children: Array<
|
|
14
|
+
children: Array<AutodeskFolder>;
|
|
15
15
|
parentName?: string;
|
|
16
16
|
};
|
|
17
|
-
export type
|
|
17
|
+
export type AutodeskSnapshot = {
|
|
18
18
|
projectId: string;
|
|
19
19
|
folderId: string;
|
|
20
20
|
accFileType: string;
|
|
@@ -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",
|
|
@@ -6,5 +7,89 @@ export declare enum AutomationProvider {
|
|
|
6
7
|
}
|
|
7
8
|
export declare enum AutomationType {
|
|
8
9
|
Photo = "photo",
|
|
9
|
-
Compare = "compare"
|
|
10
|
+
Compare = "compare",
|
|
11
|
+
GateReport = "gate_report"
|
|
10
12
|
}
|
|
13
|
+
export type AutomationCompareConfig = {
|
|
14
|
+
compareDelay: number;
|
|
15
|
+
};
|
|
16
|
+
export type AutomationEmailRecipient = string | {
|
|
17
|
+
email: string;
|
|
18
|
+
};
|
|
19
|
+
export type AutomationGateReportConfig = {
|
|
20
|
+
projectExid: string;
|
|
21
|
+
vehicleTypes: string[];
|
|
22
|
+
fileType: string;
|
|
23
|
+
period: number;
|
|
24
|
+
columns: string[];
|
|
25
|
+
recipients: string | string[];
|
|
26
|
+
};
|
|
27
|
+
export type AutomationEmailProviderConfig = {
|
|
28
|
+
cameraExids?: CameraExid[];
|
|
29
|
+
recipients: string | AutomationEmailRecipient[];
|
|
30
|
+
};
|
|
31
|
+
export type AutomationProcoreProviderConfig = {
|
|
32
|
+
companyId: number;
|
|
33
|
+
companyName: string;
|
|
34
|
+
projectId: number;
|
|
35
|
+
projectName: string;
|
|
36
|
+
categoryId: number;
|
|
37
|
+
categoryName: string;
|
|
38
|
+
};
|
|
39
|
+
export type AutomationAconexProviderConfig = {
|
|
40
|
+
projectId: number;
|
|
41
|
+
projectName: string;
|
|
42
|
+
} & Partial<Record<AconexIdentifiers, string | number | boolean>>;
|
|
43
|
+
export type AutomationAutodeskProviderConfig = {
|
|
44
|
+
hubId: number;
|
|
45
|
+
hubName: string;
|
|
46
|
+
projectId: number;
|
|
47
|
+
projectName: string;
|
|
48
|
+
folderId: number;
|
|
49
|
+
accFileType: string;
|
|
50
|
+
accFolderType: string;
|
|
51
|
+
folderName: string;
|
|
52
|
+
};
|
|
53
|
+
export type AutomationProviderConfig = AutomationEmailProviderConfig | AutomationProcoreProviderConfig | AutomationAconexProviderConfig | AutomationAutodeskProviderConfig;
|
|
54
|
+
export type AutomationOptionsConfig = AutomationCompareConfig | AutomationGateReportConfig | {};
|
|
55
|
+
export type AutomationConfig = AutomationProviderConfig & AutomationOptionsConfig;
|
|
56
|
+
export type Automation = {
|
|
57
|
+
id?: number;
|
|
58
|
+
cameraExids: CameraExid[];
|
|
59
|
+
name: string;
|
|
60
|
+
subject?: string;
|
|
61
|
+
provider: AutomationProvider;
|
|
62
|
+
type: AutomationType;
|
|
63
|
+
config: AutomationConfig;
|
|
64
|
+
notifyDays: string[];
|
|
65
|
+
notifyTime: string;
|
|
66
|
+
timezone: string;
|
|
67
|
+
isPaused: boolean;
|
|
68
|
+
restrictedCameraExids?: string[];
|
|
69
|
+
};
|
|
70
|
+
export declare enum AutomationConfigStep {
|
|
71
|
+
Type = "type",
|
|
72
|
+
Cameras = "cameras",
|
|
73
|
+
Settings = "settings",
|
|
74
|
+
Destination = "destination"
|
|
75
|
+
}
|
|
76
|
+
export type AutomationProviderOption = {
|
|
77
|
+
labelTranslationKey: string;
|
|
78
|
+
descriptionTranslationKey: string;
|
|
79
|
+
value: AutomationProvider;
|
|
80
|
+
icon: string;
|
|
81
|
+
iconSize?: string;
|
|
82
|
+
requiresConnection: boolean;
|
|
83
|
+
};
|
|
84
|
+
export type FormattedAutomation = {
|
|
85
|
+
cameraExids: string;
|
|
86
|
+
name: string;
|
|
87
|
+
subject: string;
|
|
88
|
+
provider: AutomationProvider;
|
|
89
|
+
type: AutomationType;
|
|
90
|
+
config: Partial<AutomationProviderConfig> & Partial<AutomationOptionsConfig>;
|
|
91
|
+
notifyDays: string;
|
|
92
|
+
notifyTime: string;
|
|
93
|
+
timezone: string;
|
|
94
|
+
isPaused: boolean;
|
|
95
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { AxiosError, AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelTokenSource, CancelTokenStatic } from "axios";
|
|
2
|
+
import { Swr } from "@evercam/api/api/client/swr/Swr";
|
|
2
3
|
export type TimedRequest<T> = Promise<AxiosResponse<T> & {
|
|
3
4
|
duration: number;
|
|
4
5
|
error?: AxiosError;
|
|
@@ -9,6 +10,8 @@ export type AxiosEnvironment = {
|
|
|
9
10
|
aiApiUrl?: string | null;
|
|
10
11
|
ingestApiUrl?: string | null;
|
|
11
12
|
ingestGpuApiUrl?: string | null;
|
|
13
|
+
ingestGpuV3ApiUrl?: string | null;
|
|
14
|
+
ingestGpuV4ApiUrl?: string | null;
|
|
12
15
|
posthogApiUrl?: string | null;
|
|
13
16
|
posthogProjectId?: string | null;
|
|
14
17
|
posthogPrivateApiKey?: string | null;
|
|
@@ -16,17 +19,20 @@ export type AxiosEnvironment = {
|
|
|
16
19
|
weatherApiBaseUrl?: string | null;
|
|
17
20
|
evercamLabsUrl?: string | null;
|
|
18
21
|
firebaseDbLink?: string | null;
|
|
22
|
+
firebaseStorageUrl?: string | null;
|
|
23
|
+
firebaseStorageToken?: string | null;
|
|
19
24
|
snapshotsURL?: string | null;
|
|
20
25
|
app?: string | null;
|
|
21
26
|
getAuthToken?: () => string | null;
|
|
22
27
|
errorLogger?: (error: AxiosError) => void;
|
|
28
|
+
swrKey?: string;
|
|
23
29
|
};
|
|
24
30
|
export type RequestInterceptor = (req: AxiosRequestConfig, env: AxiosEnvironment) => AxiosRequestConfig & any;
|
|
25
31
|
export type ResponseInterceptor = (res: AxiosResponse, env: AxiosEnvironment) => AxiosResponse & any;
|
|
26
32
|
export type ErrorInterceptor = (error: any, env: AxiosEnvironment) => any;
|
|
27
33
|
export interface ExtendedAxiosInstance extends AxiosInstance {
|
|
28
34
|
CancelToken: CancelTokenStatic;
|
|
29
|
-
isCancel: (value: AxiosResponse | AxiosError |
|
|
35
|
+
isCancel: (value: AxiosResponse | AxiosError | unknown) => boolean;
|
|
30
36
|
setToken: (token: string) => void;
|
|
31
37
|
setHeader: (headerName: string, value: any) => void;
|
|
32
38
|
generateCancelTokenSource: () => CancelTokenSource;
|
|
@@ -38,7 +44,17 @@ export interface ExtendedAxiosInstance extends AxiosInstance {
|
|
|
38
44
|
addRequestInterceptor: (interceptor: RequestInterceptor, errorInterceptor?: ErrorInterceptor) => void;
|
|
39
45
|
addResponseInterceptor: (interceptor: ResponseInterceptor, errorInterceptor?: ErrorInterceptor) => void;
|
|
40
46
|
addErrorInterceptor: (interceptor: ErrorInterceptor) => void;
|
|
47
|
+
swr: Swr;
|
|
41
48
|
}
|
|
49
|
+
export type ResponseValue<T> = T | undefined;
|
|
50
|
+
export type SwrResponse<T> = {
|
|
51
|
+
cachedValue: ResponseValue<T>;
|
|
52
|
+
freshPromise: Promise<ResponseValue<T>>;
|
|
53
|
+
};
|
|
54
|
+
export type SwrRequestConfig<T> = Omit<AxiosRequestConfig, "onSwrHit" | "onSwrRefresh"> & {
|
|
55
|
+
onSwrHit?: (data: T) => unknown;
|
|
56
|
+
onSwrRefresh?: (data: T) => unknown;
|
|
57
|
+
};
|
|
42
58
|
declare module "axios" {
|
|
43
59
|
interface AxiosRequestConfig {
|
|
44
60
|
raw?: boolean;
|
|
@@ -47,5 +63,9 @@ declare module "axios" {
|
|
|
47
63
|
_metadata?: {
|
|
48
64
|
startTime: number;
|
|
49
65
|
};
|
|
66
|
+
swr?: boolean;
|
|
67
|
+
onSwrHit?: (data: any) => unknown;
|
|
68
|
+
onSwrRefresh?: (data: any) => unknown;
|
|
69
|
+
onSwrError?: (error: Error) => unknown;
|
|
50
70
|
}
|
|
51
71
|
}
|
package/dist/api/types/bim.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CompareLogoPosition, DateType } from "@evercam/api/types";
|
|
2
2
|
export declare enum BimModelType {
|
|
3
3
|
Architectural = "Architectural",
|
|
4
4
|
Structural = "Structural",
|
|
@@ -48,14 +48,15 @@ export type BimCompareExportRequestPayload = {
|
|
|
48
48
|
layerId?: number;
|
|
49
49
|
maskId?: number;
|
|
50
50
|
evercamWatermark?: boolean;
|
|
51
|
+
logo?: CompareLogoPosition;
|
|
51
52
|
};
|
|
52
53
|
export type BimLayerResponsePayload = {
|
|
53
54
|
id: number;
|
|
54
55
|
name: string;
|
|
55
|
-
insertedAt:
|
|
56
|
-
updatedAt:
|
|
56
|
+
insertedAt: string;
|
|
57
|
+
updatedAt: string;
|
|
57
58
|
shapes: string;
|
|
58
|
-
startAt:
|
|
59
|
+
startAt: string;
|
|
59
60
|
};
|
|
60
61
|
export declare enum BimUploadStatus {
|
|
61
62
|
Initial = 0,
|
|
@@ -78,13 +79,18 @@ export type BimCreationPayload = {
|
|
|
78
79
|
};
|
|
79
80
|
export declare enum BIMLayerTypes {
|
|
80
81
|
Mask = "mask",
|
|
82
|
+
BimMask = "bim_mask",
|
|
81
83
|
MeasuringGrid = "measuring_grid",
|
|
82
84
|
BimArchitectural = "bim_architectural",
|
|
83
85
|
BimStructural = "bim_structural",
|
|
84
86
|
Bim4D = "bim_4d",
|
|
85
87
|
BimMep = "bim_mep",
|
|
86
88
|
RecordingsTag = "recordings_tag",
|
|
87
|
-
Milestone = "milestone"
|
|
89
|
+
Milestone = "milestone",
|
|
90
|
+
ForgeBimArchitectural = "forge_bim_architectural",
|
|
91
|
+
ForgeBimStructural = "forge_bim_structural",
|
|
92
|
+
ForgeBim4D = "forge_bim_4d",
|
|
93
|
+
ForgeBimMep = "forge_bim_mep"
|
|
88
94
|
}
|
|
89
95
|
export type BimLayersQueryParams = {
|
|
90
96
|
layerType: BIMLayerTypes;
|