@evercam/api 1.0.0-51a0c8745 → 1.0.0-58e7ec980

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 (51) hide show
  1. package/README.md +3 -0
  2. package/dist/api/api/3dFirebaseApi.d.ts +10 -0
  3. package/dist/api/api/adminApi.d.ts +51 -6
  4. package/dist/api/api/aiApi.d.ts +18 -6
  5. package/dist/api/api/authzApi.d.ts +7 -0
  6. package/dist/api/api/client/swr/Swr.d.ts +14 -0
  7. package/dist/api/api/client/swr/SwrStore.d.ts +10 -0
  8. package/dist/api/api/evercamApi.d.ts +26 -14
  9. package/dist/api/api/evercamLabsApi.d.ts +3 -2
  10. package/dist/api/api/ingestApi.d.ts +38 -11
  11. package/dist/api/api/videoWallApi.d.ts +7 -7
  12. package/dist/api/types/360.d.ts +52 -0
  13. package/dist/api/types/aconex.d.ts +102 -4
  14. package/dist/api/types/analytics.d.ts +71 -4
  15. package/dist/api/types/anpr.d.ts +5 -11
  16. package/dist/api/types/authz.d.ts +22 -0
  17. package/dist/api/types/automation.d.ts +51 -0
  18. package/dist/api/types/axios.d.ts +14 -0
  19. package/dist/api/types/camera.d.ts +21 -5
  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/index.d.ts +3 -0
  27. package/dist/api/types/ingest.d.ts +4 -0
  28. package/dist/api/types/kit.d.ts +28 -5
  29. package/dist/api/types/planner.d.ts +4 -1
  30. package/dist/api/types/progressPhoto.d.ts +5 -23
  31. package/dist/api/types/project.d.ts +42 -2
  32. package/dist/api/types/recording.d.ts +1 -0
  33. package/dist/api/types/recycleBin.d.ts +14 -0
  34. package/dist/api/types/routeParams.d.ts +2 -1
  35. package/dist/api/types/shared.d.ts +1 -6
  36. package/dist/api/types/siteAnalytics.d.ts +31 -9
  37. package/dist/api/types/snapshots.d.ts +9 -0
  38. package/dist/api/types/sso.d.ts +55 -0
  39. package/dist/api/types/streaming.d.ts +1 -2
  40. package/dist/api/types/time.d.ts +4 -0
  41. package/dist/api/types/user.d.ts +4 -0
  42. package/dist/api/types/videoWall.d.ts +34 -1
  43. package/dist/api/types/weather.d.ts +2 -0
  44. package/dist/api/types/widget.d.ts +27 -6
  45. package/dist/api/utils.d.ts +1 -0
  46. package/dist/index.js +1116 -710
  47. package/dist/index.js.map +1 -1
  48. package/dist/index.umd.cjs +1 -1
  49. package/dist/index.umd.cjs.map +1 -1
  50. package/dist/shared/types/components.d.ts +17 -2
  51. package/package.json +5 -4
@@ -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,12 @@ 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",
80
87
  WidgetsAddWidgetClick = "AddWidget",
81
88
  WidgetsCancelClick = "Cancel",
82
89
  WidgetsEditHeight = "EditHeight",
@@ -103,6 +110,7 @@ export declare enum AnalyticsEvent {
103
110
  WidgetsSettingToggleRestrictRecentImages = "ToggleRestrictRecentImages",
104
111
  WidgetsSettingToggleZoom = "ToggleZoom",
105
112
  WidgetsTogglePublicWidget = "TogglePublicWidget",
113
+ WidgetsToggleRestrictRecordingsRange = "ToggleRestrictRecordingsRange",
106
114
  PlayerSelectCamera = "Player-SelectCamera",
107
115
  PlayerDownload = "Player-Download",
108
116
  PlayerToggleFullscreen = "Player-ToggleFullscreen",
@@ -259,7 +267,17 @@ export declare enum AnalyticsEvent {
259
267
  SharingSortBy = "SortBy",
260
268
  SharingChangeAccessRight = "ChangeAccessRight",
261
269
  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",
262
277
  ThreeSixtyGalleryToggleUploadDialog = "Gallery-ToggleUploadDialog",
278
+ ThreeSixtyGalleryToggleFilters = "Gallery-ToggleFilters",
279
+ ThreeSixtyGalleryUpdateFloorName = "Gallery-UpdateFloorName",
280
+ ThreeSixtyGalleryEditWalkName = "Gallery-EditWalkName",
263
281
  ThreeSixtyChangeDate = "ChangeDate",
264
282
  ThreeSixtyChangeFloor = "ChangeFloor",
265
283
  ThreeSixtyCloseCompare = "CloseCompare",
@@ -296,7 +314,6 @@ export declare enum AnalyticsEvent {
296
314
  ThreeSixtyTourToggleLoop = "Tour-ToggleLoop",
297
315
  ThreeSixtyUnlockCompare = "UnlockCompare",
298
316
  ThreeSixtyUnlockForgeBIM = "UnlockForgeBIM",
299
- ThreeSixtyUpdateFloorName = "UpdateFloorName",
300
317
  ThreeSixtyUploadAssets = "UploadAssets",
301
318
  DroneAreaToolClick = "AreaTool-Click",
302
319
  DroneChangeDate = "ChangeDate",
@@ -334,6 +351,7 @@ export declare enum AnalyticsEvent {
334
351
  DroneVolumeToolClick = "VolumeTool-Click",
335
352
  DroneZoomIn = "ZoomIn",
336
353
  DroneZoomOut = "ZoomOut",
354
+ DroneUploadSkipping = "SkipImageUpload",// To be removed later
337
355
  PlannerAddCameraClick = "AddCameraClick",
338
356
  PlannerAddSitePlanDrawingClick = "AddSitePlanDrawingClick",
339
357
  PlannerAddSitePlanClick = "AddSitePlanClick",
@@ -357,8 +375,31 @@ export declare enum AnalyticsEvent {
357
375
  PlannerUploadSitePlanDrawing = "UploadSitePlanDrawing",
358
376
  PlannerZoomIn = "ZoomIn",
359
377
  PlannerZoomOut = "ZoomOut",
378
+ DrawingCreateSave = "CreateSave",
379
+ DrawingUpdateSave = "UpdateSave",
380
+ DrawingEditName = "EditName",
381
+ DrawingUpdateName = "UpdateName",
382
+ DrawingToggleSaveDialog = "ToggleSaveDialog",
383
+ DrawingClickHome = "ClickHome",
384
+ DrawingsUploadDrawing = "UploadDrawing",
385
+ DrawingsCreateDrawing = "CreateDrawing",
386
+ DrawingToggleFilter = "ToggleFilter",
387
+ DrawingToggleMapStyle = "ToggleMapStyle",
388
+ DrawingToggleMapLabels = "ToggleMapLabels",
389
+ DrawingToggleCamerasLabels = "ToggleCamerasLabels",
390
+ DrawingToggleCamerasVisibility = "ToggleCamerasVisibility",
391
+ DrawingToggleTransparencyMode = "ToggleTransparencyMode",
392
+ DrawingChooseDrawing = "ChooseDrawing",
393
+ DrawingChangeLocation = "ChangeLocation",
394
+ DrawingFilterDateRange = "FilterDateRange",
395
+ DrawingFilterDrawingName = "FilterDrawingName",
396
+ DrawingFilterCreatedBy = "FilterCreatedBy",
397
+ DrawingFilterMapStyle = "FilterMapStyle",
398
+ DrawingToggleRotate = "ToggleRotate",
399
+ DrawingToggleScale = "ToggleScale",
400
+ DrawingOpenExistingDrawing = "OpenExistingDrawing",
360
401
  MarkerClicked = "MarkerClicked",
361
- TimelapseToggleHelpDialog = "ToggleHelpDialog",
402
+ MarkerSelected = "MarkerSelected",
362
403
  TimelapseSelectCustomPeriod = "SelectCustomPeriod",
363
404
  TimelapseToggleCustomScheduleDialog = "ToggleCustomScheduleDialog",
364
405
  TimelapseSaveCustomSchedule = "SaveCustomSchedule",
@@ -386,12 +427,18 @@ export declare enum AnalyticsEvent {
386
427
  ProgressPhotoPause = "ProgressPhoto-Pause",
387
428
  ProgressPhotoResume = "ProgressPhoto-Resume",
388
429
  ProgressPhotoResumeDelete = "ProgressPhoto-ResumeDelete",
430
+ ProgressPhotoSelectType = "ProgressPhoto-SelectType",
389
431
  ProgressPhotoSelectCameras = "ProgressPhoto-SelectCameras",
432
+ ProgressPhotoToggleSelectAllOnlineCameras = "ProgressPhoto-ToggleSelectAllOnlineCameras",
433
+ ProgressPhotoToggleSelectAllCameras = "ProgressPhoto-ToggleSelectAllCameras",
434
+ ProgressPhotoClearAllCameras = "ProgressPhoto-ClearAllCameras",
435
+ ProgressPhotoEditCamerasSearchFilter = "ProgressPhoto-EditCamerasSearchFilter",
390
436
  ProgressPhotoSelectDays = "ProgressPhoto-SelectDays",
391
437
  ProgressPhotoSelectMember = "ProgressPhoto-SelectMember",
392
438
  ProgressPhotoSelectProvider = "ProgressPhoto-SelectProvider",
393
439
  ProgressPhotoSelectTime = "ProgressPhoto-SelectTime",
394
440
  ProgressPhotoSelectTimezone = "ProgressPhoto-SelectTimezone",
441
+ ProgressPhotoEditSelectedCameras = "ProgressPhoto-EditSelectedCameras",
395
442
  ProgressPhotoToggleCreateDialog = "ProgressPhoto-ToggleCreateDialog",
396
443
  ProgressPhotoToggleEditDialog = "ProgressPhoto-ToggleEditDialog",
397
444
  ProgressPhotoUnsubscribeUser = "ProgressPhoto-UnsubscribeUser",
@@ -449,6 +496,7 @@ export declare enum AnalyticsEvent {
449
496
  GateReportToggleThumbnails = "ToggleThumbnails",
450
497
  PpeTimelineDateClick = "PpeTimeline-DateClick",
451
498
  HelpMenuToggleMenuButton = "HelpMenu-ToggleMenuButton",
499
+ HelpMenuOpenProjectContactsDialog = "HelpMenu-OpenProjectContactsDialog",
452
500
  HelpMenuOpenLiveChat = "HelpMenu-OpenLiveChat",
453
501
  HelpMenuClickTutorialsLink = "HelpMenu-ClickTutorialsLink",
454
502
  HelpMenuClickWhatsNewLink = "HelpMenu-ClickWhatsNewLink",
@@ -465,6 +513,24 @@ export declare enum AnalyticsEvent {
465
513
  ExportPdf = "ExportPdf",
466
514
  ExportCsv = "ExportCsv",
467
515
  FilterCameras = "FilterCameras",
516
+ CompareSelectProvider = "Compare-SelectProvider",
517
+ CompareEditSelectedCameras = "Compare-EditSelectedCameras",
518
+ CompareEdit = "Compare-Edit",
519
+ CompareSelectTimezone = "Compare-SelectTimezone",
520
+ CompareSelectMember = "Compare-SelectMember",
521
+ CompareToggleSelectAllOnlineCameras = "Compare-ToggleSelectAllOnlineCameras",
522
+ CompareToggleSelectAllCameras = "Compare-ToggleSelectAllCameras",
523
+ CompareClearAllCameras = "Compare-ClearAllCameras",
524
+ CompareEditCamerasSearchFilter = "Compare-EditCamerasSearchFilter",
525
+ AutomationsSelectProgressPhoto = "SelectProgressPhoto",
526
+ AutomationsSelectCompare = "SelectCompare",
527
+ AutomationsCreateCompare = "CreateCompare",
528
+ AutomationToggleEditDialog = "ToggleEditDialog",
529
+ AutomationToggleCreateDialog = "ToggleCreateDialog",
530
+ AutomationTypeName = "TypeName",
531
+ CompareSelectDays = "Compare-SelectDays",
532
+ CompareSelectDelay = "Compare-SelectDelay",
533
+ CompareSelectTime = "Compare-SelectTime",
468
534
  SmartSearchToggleQueryBuilder = "SmartSearch-ToggleQueryBuilder",
469
535
  SmartSearchToggleQuerySelector = "SmartSearch-ToggleQuerySelector",
470
536
  SmartSearchDeleteComponent = "SmartSearch-DeleteComponent",
@@ -483,5 +549,6 @@ export declare enum AnalyticsEvent {
483
549
  SmartSearchDeleteQuery = "SmartSearch-DeleteQuery",
484
550
  SmartSearchSaveQuery = "SmartSearch-SaveQuery",
485
551
  SmartSearchThumbnailPlay = "SmartSearch-ThumbnailPlay",
486
- SmartSearchExportFile = "SmartSearch-ExportFile"
552
+ SmartSearchExportFile = "SmartSearch-ExportFile",
553
+ SmartSearchDownloadHeatmapImage = "SmartSearch-DownloadHeatmapImage"
487
554
  }
@@ -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,22 @@
1
+ export declare enum RoleResourceType {
2
+ Camera = "camera",
3
+ Project = "project"
4
+ }
5
+ export type Role = {
6
+ id: number;
7
+ name: string;
8
+ resource: string;
9
+ resourceType: RoleResourceType;
10
+ permissions: string[];
11
+ subRoles?: Array<{
12
+ resourceId: string;
13
+ roleId: number;
14
+ }>;
15
+ };
16
+ export type ProjectResourceRole = Role & {
17
+ resourceType: RoleResourceType.Project;
18
+ };
19
+ export type CameraResourceRole = Omit<Role, "subRoles"> & {
20
+ resourceType: RoleResourceType.Camera;
21
+ };
22
+ export type ProjectRoleRequestPayload = Omit<Role, "id" | "resource" | "resourceType">;
@@ -1,3 +1,4 @@
1
+ import { AconexIdentifiers, CameraExid } from "@evercam/api/types";
1
2
  export declare enum AutomationProvider {
2
3
  Aconex = "aconex",
3
4
  Procore = "procore",
@@ -8,3 +9,53 @@ export declare enum AutomationType {
8
9
  Photo = "photo",
9
10
  Compare = "compare"
10
11
  }
12
+ export type AutomationCompareConfig = {
13
+ compareDelay: number;
14
+ };
15
+ export type AutomationEmailProviderConfig = {
16
+ recipients: string | string[];
17
+ };
18
+ export type AutomationProcoreProviderConfig = {
19
+ companyId: number;
20
+ companyName: string;
21
+ projectId: number;
22
+ projectName: string;
23
+ categoryId: number;
24
+ categoryName: string;
25
+ };
26
+ export type AutomationAconexProviderConfig = {
27
+ projectId: number;
28
+ projectName: string;
29
+ } & Partial<Record<AconexIdentifiers, string | number | boolean>>;
30
+ export type AutomationAutodeskProviderConfig = {
31
+ hubId: number;
32
+ hubName: string;
33
+ projectId: number;
34
+ projectName: string;
35
+ folderId: number;
36
+ accFileType: string;
37
+ accFolderType: string;
38
+ folderName: string;
39
+ };
40
+ export type AutomationProviderConfig = AutomationEmailProviderConfig | AutomationProcoreProviderConfig | AutomationAconexProviderConfig | AutomationAutodeskProviderConfig;
41
+ export type AutomationOptionsConfig = AutomationCompareConfig | {};
42
+ export type AutomationConfig = AutomationProviderConfig & AutomationOptionsConfig;
43
+ export type Automation = {
44
+ cameraExids: CameraExid[];
45
+ name: string;
46
+ subject?: string;
47
+ provider: AutomationProvider;
48
+ type: AutomationType;
49
+ config: AutomationConfig;
50
+ notifyDays: string[];
51
+ notifyTime: string;
52
+ timezone: string;
53
+ isPaused: boolean;
54
+ restrictedCameraExids?: string[];
55
+ };
56
+ export declare enum AutomationConfigStep {
57
+ Type = "type",
58
+ Cameras = "cameras",
59
+ Settings = "settings",
60
+ Destination = "destination"
61
+ }
@@ -1,4 +1,5 @@
1
1
  import type { AxiosError, AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelTokenSource, CancelTokenStatic } from "axios";
2
+ import { Swr } from "@/api/client/swr/Swr";
2
3
  export type TimedRequest<T> = Promise<AxiosResponse<T> & {
3
4
  duration: number;
4
5
  error?: AxiosError;
@@ -16,10 +17,13 @@ export type AxiosEnvironment = {
16
17
  weatherApiBaseUrl?: string | null;
17
18
  evercamLabsUrl?: string | null;
18
19
  firebaseDbLink?: string | null;
20
+ firebaseStorageUrl?: string | null;
21
+ firebaseStorageToken?: string | null;
19
22
  snapshotsURL?: string | null;
20
23
  app?: string | null;
21
24
  getAuthToken?: () => string | null;
22
25
  errorLogger?: (error: AxiosError) => void;
26
+ swrKey?: string;
23
27
  };
24
28
  export type RequestInterceptor = (req: AxiosRequestConfig, env: AxiosEnvironment) => AxiosRequestConfig & any;
25
29
  export type ResponseInterceptor = (res: AxiosResponse, env: AxiosEnvironment) => AxiosResponse & any;
@@ -38,7 +42,13 @@ export interface ExtendedAxiosInstance extends AxiosInstance {
38
42
  addRequestInterceptor: (interceptor: RequestInterceptor, errorInterceptor?: ErrorInterceptor) => void;
39
43
  addResponseInterceptor: (interceptor: ResponseInterceptor, errorInterceptor?: ErrorInterceptor) => void;
40
44
  addErrorInterceptor: (interceptor: ErrorInterceptor) => void;
45
+ swr: Swr;
41
46
  }
47
+ export type ResponseValue<T> = T | undefined;
48
+ export type SwrResponse<T> = {
49
+ cachedValue: ResponseValue<T>;
50
+ freshPromise: Promise<ResponseValue<T>>;
51
+ };
42
52
  declare module "axios" {
43
53
  interface AxiosRequestConfig {
44
54
  raw?: boolean;
@@ -47,5 +57,9 @@ declare module "axios" {
47
57
  _metadata?: {
48
58
  startTime: number;
49
59
  };
60
+ swr?: boolean;
61
+ onSwrHit?: <T>(data: T) => unknown;
62
+ onSwrRefresh?: <T>(data: T) => unknown;
63
+ onSwrError?: (error: Error) => unknown;
50
64
  }
51
65
  }
@@ -1,4 +1,5 @@
1
- import { AuditLogActionType, DateTime_Z_micros, DateType, EntityByExid, NvrDeviceType, PaginationParams, PowerSchedule, PowerType, ProjectExid, Schedule } from "@/types";
1
+ import { AuditLogActionType, DateTime_Z_micros, DateType, EntityByExid, NvrDeviceType, PaginationParams, PowerSchedule, PowerType, ProjectExid, ProjectFeatureFlag, Schedule } from "@/types";
2
+ import { DateRangeFilter } from "@/types/time";
2
3
  export type CameraExid = string;
3
4
  export type CamerasByExid = EntityByExid<Camera>;
4
5
  export type Cartesian3 = {
@@ -17,7 +18,7 @@ export type Camera = {
17
18
  storageDuration: string;
18
19
  };
19
20
  createdAt: DateTime_Z_micros;
20
- description: null;
21
+ description: string | null;
21
22
  discoverable: boolean;
22
23
  external: {
23
24
  host: string;
@@ -62,7 +63,7 @@ export type Camera = {
62
63
  offlineReason: string;
63
64
  owned: boolean;
64
65
  owner: string;
65
- pitch: null;
66
+ pitch: string | null;
66
67
  project: {
67
68
  id: string;
68
69
  name: string;
@@ -73,7 +74,7 @@ export type Camera = {
73
74
  };
74
75
  ptz: boolean;
75
76
  rights: string;
76
- roll: null;
77
+ roll: string | null;
77
78
  routerId: number;
78
79
  status: CameraStatus;
79
80
  streamingServer: string;
@@ -135,7 +136,7 @@ export type AdminCamera = {
135
136
  pitch: null;
136
137
  powerSchedule: Schedule;
137
138
  projectExid: string;
138
- projectFeatureFlags: [];
139
+ projectFeatureFlags: ProjectFeatureFlag[];
139
140
  projectId: number;
140
141
  projectName: string;
141
142
  ptz: false;
@@ -176,6 +177,13 @@ export declare enum CameraStatus {
176
177
  UnderMaintenance = "under_maintenance",
177
178
  WaitingForSiteVisit = "waiting_for_site_visit"
178
179
  }
180
+ export declare enum IntensityChangeColors {
181
+ High = "#FF5252",
182
+ Moderate = "#FBC02D",
183
+ Low = "#006400",
184
+ NoChange = "#3ACF3A",
185
+ Default = "black"
186
+ }
179
187
  export declare enum CameraFeatureFlag {
180
188
  EdgeVideo = "edge_video",
181
189
  BimCompare = "bim_compare",
@@ -334,6 +342,7 @@ export type CameraPath = {
334
342
  export type CheckCameraPortPayload = {
335
343
  address: string;
336
344
  port: number;
345
+ open: boolean;
337
346
  };
338
347
  export type CameraCreateRequestPayload = {
339
348
  status: CameraStatus;
@@ -518,3 +527,10 @@ export type FetchCameraQueryParams = PaginationParams & {
518
527
  externalRsptPort: string;
519
528
  nvrHttpPort: string;
520
529
  };
530
+ export declare enum BimType {
531
+ TwoD = "2D",
532
+ Forge = "Forge"
533
+ }
534
+ export type CameraDateRangeFilter = DateRangeFilter & {
535
+ cameraExid: CameraExid;
536
+ };
@@ -1,7 +1,13 @@
1
- import { CameraExid, DateType, ProjectExid } from "@/types";
1
+ import { CameraExid, DateType, ProjectExid, PaginationParams } from "@/types";
2
2
  export declare enum CommentsScope {
3
3
  Recordings = "recordings",
4
- ThreeSixty = "360"
4
+ ThreeSixty = "360",
5
+ Drone = "drone"
6
+ }
7
+ export declare enum CommentsLabel {
8
+ Info = "Info",
9
+ Danger = "Danger",
10
+ Restricted = "Restricted"
5
11
  }
6
12
  export type CommentsRequestPayload = {
7
13
  cameraExid: CameraExid;
@@ -11,6 +17,16 @@ export type CommentsRequestPayload = {
11
17
  page?: number;
12
18
  limit?: number;
13
19
  };
20
+ export type CommentsListRequestPayload = PaginationParams & {
21
+ projectExid?: ProjectExid;
22
+ cameraExid?: CameraExid;
23
+ fromDate?: string;
24
+ toDate?: string;
25
+ scope?: CommentsScope;
26
+ creatorEmail?: string;
27
+ content?: string;
28
+ includeArchived?: boolean;
29
+ };
14
30
  export type Comment = {
15
31
  fromDate?: string;
16
32
  toDate?: string;
@@ -53,7 +53,7 @@ export type Company = {
53
53
  cameras: number;
54
54
  users: number;
55
55
  activeUsers: number;
56
- createdAt: DateType;
56
+ insertedAt: DateType;
57
57
  };
58
58
  export type CompanyQueryParams = PaginationParams & {
59
59
  name: string;
@@ -6,6 +6,7 @@ export type CreateCoolifyAppRequestPayload = {
6
6
  snapshotRequestTimeout: string | number;
7
7
  serverUuid: string;
8
8
  branch: string;
9
+ useThirdParty: boolean;
9
10
  };
10
11
  export type SaveCoolifyAppRequestPayload = {
11
12
  contextCameraExid: string;
@@ -15,4 +16,5 @@ export type SaveCoolifyAppRequestPayload = {
15
16
  branchName: string;
16
17
  snapshotRequestTimeout: string | number;
17
18
  serverUuid: string;
19
+ useThirdParty: boolean;
18
20
  };
@@ -2,4 +2,5 @@ export type ApiCredentials = {
2
2
  apiKey?: string;
3
3
  apiId?: string;
4
4
  token?: string;
5
+ includeImage?: boolean;
5
6
  };
@@ -1,4 +1,4 @@
1
- import { type BoundingBox, type ProjectExid, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision } from "@/types";
1
+ import { type BoundingBox, type ProjectExid, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision, DateRangeFilter, ProjectDateRangeFilter, CameraDateRangeFilter } from "@/types";
2
2
  export type BaseDetectionsFilters = {
3
3
  fromDate: string | Date;
4
4
  toDate: string | Date;
@@ -72,11 +72,6 @@ export type SegmentSimilarityResult = {
72
72
  distance: number;
73
73
  segment: Segment;
74
74
  };
75
- export type SegmentsSimilaritySearchResult = {
76
- firstSeen: DateType | null;
77
- lastSeen: DateType | null;
78
- similarSegments: SegmentSimilarityResult[];
79
- };
80
75
  export type SegmentsSimilaritySearchParams = {
81
76
  cameraExid: CameraExid;
82
77
  referenceId: string;
@@ -84,24 +79,15 @@ export type SegmentsSimilaritySearchParams = {
84
79
  fromDate: string;
85
80
  toDate: string;
86
81
  };
87
- export type BaseCountsParams = {
88
- fromDate: string | Date;
89
- toDate: string | Date;
82
+ export type BaseCountsParams = DateRangeFilter & {
90
83
  precision: keyof typeof TimelinePrecision;
91
84
  trackId: number;
92
85
  labels: DetectionLabel | DetectionLabel[];
93
86
  };
94
- export type DetectionsCountsParams = BaseCountsParams & {
95
- projectExid: ProjectExid;
87
+ export type DetectionsCountsParams = ProjectDateRangeFilter & BaseCountsParams & {
96
88
  cameraExids?: CameraExid[];
97
89
  };
98
- export type SegmentsCountsParams = BaseCountsParams & {
99
- cameraExid: CameraExid;
100
- };
101
- export type CountByPeriod = {
102
- date: string | Date;
103
- counts: Record<string, number>;
104
- };
90
+ export type SegmentsCountsParams = CameraDateRangeFilter & BaseCountsParams;
105
91
  export type DetectionsPresenceByLabel = Record<DetectionLabel, TimelineDateInterval[]>;
106
92
  export type SegmentsPresenceByLabel = Record<SegmentLabel, TimelineDateInterval[]>;
107
93
  export type LuminanceReading = {
@@ -113,7 +99,6 @@ export declare enum PpeLabel {
113
99
  Helmet = "helmet",
114
100
  HighVisibilityVest = "high-visibility-vest",
115
101
  SafetyGlasses = "safety-glasses",
116
- Gloves = "gloves",
117
102
  Person = "person",
118
103
  Man = "man",
119
104
  Woman = "woman"
@@ -121,7 +106,7 @@ export declare enum PpeLabel {
121
106
  export declare enum DetectionModel {
122
107
  Yolov10 = 1,
123
108
  Yolov11 = 2,
124
- Yolov11_2 = 3,
109
+ Yolov112 = 3,
125
110
  GroundingDino = 4,
126
111
  Owlv2 = 5
127
112
  }
@@ -26,6 +26,7 @@ export declare enum ErrorCode {
26
26
  ConflictError = 409
27
27
  }
28
28
  export declare enum EvercamApiErrorCode {
29
+ IntegrationError = "INTEGRATION_ERROR",
29
30
  BadArgument = "BAD_ARGUMENT",
30
31
  DeviceError = "DEVICE_ERROR",
31
32
  UnsupportedOperation = "UNSUPPORTED_OPERATION",
@@ -50,7 +50,10 @@ export * from "./siteAnalytics";
50
50
  export * from "./widget";
51
51
  export * from "./countries";
52
52
  export * from "./automation";
53
+ export * from "./sso";
53
54
  export * from "./coolify";
54
55
  export * from "./tag";
55
56
  export * from "./xweather";
56
57
  export * from "./posthog";
58
+ export * from "./recycleBin";
59
+ export * from "./authz";
@@ -9,6 +9,10 @@ export declare enum IngestProcessingStatus {
9
9
  InProgress = "inprogress",
10
10
  Pending = "pending"
11
11
  }
12
+ export declare enum MobileAssetsType {
13
+ Audio = "mobile_audios",
14
+ Photo = "mobile_photos"
15
+ }
12
16
  export declare enum IngestVersions {
13
17
  V1 = "v1",
14
18
  V2 = "v2"