@evercam/api 1.0.0-e03adefb8 → 1.0.0-e405b2c39

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 (59) hide show
  1. package/README.md +3 -0
  2. package/dist/api/api/3dFirebaseApi.d.ts +17 -1
  3. package/dist/api/api/adminApi.d.ts +67 -33
  4. package/dist/api/api/aiApi.d.ts +26 -45
  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/client/swr/Swr.d.ts +14 -0
  8. package/dist/api/api/client/swr/SwrStore.d.ts +10 -0
  9. package/dist/api/api/evercamApi.d.ts +42 -44
  10. package/dist/api/api/evercamLabsApi.d.ts +5 -2
  11. package/dist/api/api/ingestApi.d.ts +40 -12
  12. package/dist/api/api/ptzApi.d.ts +4 -0
  13. package/dist/api/api/videoWallApi.d.ts +7 -7
  14. package/dist/api/types/360.d.ts +188 -3
  15. package/dist/api/types/aconex.d.ts +102 -4
  16. package/dist/api/types/analytics.d.ts +89 -6
  17. package/dist/api/types/anpr.d.ts +5 -11
  18. package/dist/api/types/authz.d.ts +23 -0
  19. package/dist/api/types/automation.d.ts +51 -0
  20. package/dist/api/types/axios.d.ts +15 -0
  21. package/dist/api/types/camera.d.ts +23 -6
  22. package/dist/api/types/comments.d.ts +18 -2
  23. package/dist/api/types/company.d.ts +29 -1
  24. package/dist/api/types/coolify.d.ts +2 -0
  25. package/dist/api/types/countries.d.ts +0 -7
  26. package/dist/api/types/credentials.d.ts +1 -0
  27. package/dist/api/types/detections.d.ts +5 -20
  28. package/dist/api/types/errors.d.ts +1 -0
  29. package/dist/api/types/gateReport.d.ts +4 -101
  30. package/dist/api/types/index.d.ts +3 -0
  31. package/dist/api/types/ingest.d.ts +4 -0
  32. package/dist/api/types/kit.d.ts +55 -7
  33. package/dist/api/types/planner.d.ts +4 -1
  34. package/dist/api/types/procore.d.ts +13 -10
  35. package/dist/api/types/progressPhoto.d.ts +5 -23
  36. package/dist/api/types/project.d.ts +47 -3
  37. package/dist/api/types/recording.d.ts +1 -0
  38. package/dist/api/types/recycleBin.d.ts +14 -0
  39. package/dist/api/types/routeParams.d.ts +2 -1
  40. package/dist/api/types/router.d.ts +19 -0
  41. package/dist/api/types/shared.d.ts +1 -6
  42. package/dist/api/types/shares.d.ts +6 -144
  43. package/dist/api/types/siteAnalytics.d.ts +135 -29
  44. package/dist/api/types/snapshots.d.ts +9 -0
  45. package/dist/api/types/sso.d.ts +55 -0
  46. package/dist/api/types/streaming.d.ts +1 -2
  47. package/dist/api/types/time.d.ts +4 -0
  48. package/dist/api/types/user.d.ts +4 -0
  49. package/dist/api/types/videoWall.d.ts +34 -1
  50. package/dist/api/types/weather.d.ts +2 -0
  51. package/dist/api/types/widget.d.ts +27 -6
  52. package/dist/api/utils.d.ts +1 -0
  53. package/dist/index.js +1227 -866
  54. package/dist/index.js.map +1 -1
  55. package/dist/index.umd.cjs +1 -1
  56. package/dist/index.umd.cjs.map +1 -1
  57. package/dist/shared/types/components.d.ts +18 -3
  58. package/dist/shared/types/imagePlayer.d.ts +1 -1
  59. package/package.json +5 -4
@@ -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
+ }
@@ -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;
@@ -7,6 +8,7 @@ export type AxiosEnvironment = {
7
8
  baseUrl?: string | null;
8
9
  stagingAiApiUrl?: string | null;
9
10
  aiApiUrl?: string | null;
11
+ aiApiUrlV2?: string | null;
10
12
  ingestApiUrl?: string | null;
11
13
  ingestGpuApiUrl?: string | null;
12
14
  posthogApiUrl?: string | null;
@@ -16,10 +18,13 @@ export type AxiosEnvironment = {
16
18
  weatherApiBaseUrl?: string | null;
17
19
  evercamLabsUrl?: string | null;
18
20
  firebaseDbLink?: string | null;
21
+ firebaseStorageUrl?: string | null;
22
+ firebaseStorageToken?: string | null;
19
23
  snapshotsURL?: string | null;
20
24
  app?: string | null;
21
25
  getAuthToken?: () => string | null;
22
26
  errorLogger?: (error: AxiosError) => void;
27
+ swrKey?: string;
23
28
  };
24
29
  export type RequestInterceptor = (req: AxiosRequestConfig, env: AxiosEnvironment) => AxiosRequestConfig & any;
25
30
  export type ResponseInterceptor = (res: AxiosResponse, env: AxiosEnvironment) => AxiosResponse & any;
@@ -38,7 +43,13 @@ export interface ExtendedAxiosInstance extends AxiosInstance {
38
43
  addRequestInterceptor: (interceptor: RequestInterceptor, errorInterceptor?: ErrorInterceptor) => void;
39
44
  addResponseInterceptor: (interceptor: ResponseInterceptor, errorInterceptor?: ErrorInterceptor) => void;
40
45
  addErrorInterceptor: (interceptor: ErrorInterceptor) => void;
46
+ swr: Swr;
41
47
  }
48
+ export type ResponseValue<T> = T | undefined;
49
+ export type SwrResponse<T> = {
50
+ cachedValue: ResponseValue<T>;
51
+ freshPromise: Promise<ResponseValue<T>>;
52
+ };
42
53
  declare module "axios" {
43
54
  interface AxiosRequestConfig {
44
55
  raw?: boolean;
@@ -47,5 +58,9 @@ declare module "axios" {
47
58
  _metadata?: {
48
59
  startTime: number;
49
60
  };
61
+ swr?: boolean;
62
+ onSwrHit?: <T>(data: T) => unknown;
63
+ onSwrRefresh?: <T>(data: T) => unknown;
64
+ onSwrError?: (error: Error) => unknown;
50
65
  }
51
66
  }
@@ -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;
@@ -72,8 +73,7 @@ export type Camera = {
72
73
  rtmp: string;
73
74
  };
74
75
  ptz: boolean;
75
- rights: string;
76
- roll: null;
76
+ roll: string | null;
77
77
  routerId: number;
78
78
  status: CameraStatus;
79
79
  streamingServer: string;
@@ -135,7 +135,7 @@ export type AdminCamera = {
135
135
  pitch: null;
136
136
  powerSchedule: Schedule;
137
137
  projectExid: string;
138
- projectFeatureFlags: [];
138
+ projectFeatureFlags: ProjectFeatureFlag[];
139
139
  projectId: number;
140
140
  projectName: string;
141
141
  ptz: false;
@@ -154,6 +154,7 @@ export type AdminCamera = {
154
154
  userId: number;
155
155
  zohoId: string;
156
156
  thumbnailUrl?: string;
157
+ sharedWithConstruction: boolean;
157
158
  };
158
159
  export type CameraMapMarker = {
159
160
  isOnline: boolean;
@@ -176,6 +177,14 @@ export declare enum CameraStatus {
176
177
  UnderMaintenance = "under_maintenance",
177
178
  WaitingForSiteVisit = "waiting_for_site_visit"
178
179
  }
180
+ export declare enum IntensityChange {
181
+ High = "High",
182
+ Moderate = "Moderate",
183
+ Low = "Low",
184
+ NoChange = "No change",
185
+ Default = "Default"
186
+ }
187
+ export declare const IntensityChangeColorMap: Record<IntensityChange, string>;
179
188
  export declare enum CameraFeatureFlag {
180
189
  EdgeVideo = "edge_video",
181
190
  BimCompare = "bim_compare",
@@ -334,6 +343,7 @@ export type CameraPath = {
334
343
  export type CheckCameraPortPayload = {
335
344
  address: string;
336
345
  port: number;
346
+ open: boolean;
337
347
  };
338
348
  export type CameraCreateRequestPayload = {
339
349
  status: CameraStatus;
@@ -518,3 +528,10 @@ export type FetchCameraQueryParams = PaginationParams & {
518
528
  externalRsptPort: string;
519
529
  nvrHttpPort: string;
520
530
  };
531
+ export declare enum BimType {
532
+ TwoD = "2D",
533
+ Forge = "Forge"
534
+ }
535
+ export type CameraDateRangeFilter = DateRangeFilter & {
536
+ cameraExid: CameraExid;
537
+ };
@@ -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;
@@ -13,6 +13,34 @@ export type CompanyProject = {
13
13
  status: string;
14
14
  startedAt: DateType;
15
15
  };
16
+ export type CompanyKit = {
17
+ id: number;
18
+ name: string;
19
+ serial: string;
20
+ status: string;
21
+ powerType: string;
22
+ countryName: string;
23
+ nvrId: string;
24
+ nvrSerial: string;
25
+ nvrVersion: string;
26
+ nvrNerves: boolean;
27
+ nvrModel: string;
28
+ nvrDeviceType: string;
29
+ routerId: string;
30
+ routerSerial: string;
31
+ projectExid: string;
32
+ projectName: string;
33
+ alarms: Array<string>;
34
+ sims: Array<{
35
+ id: number;
36
+ number: string;
37
+ }>;
38
+ cameras: Array<{
39
+ exid: string;
40
+ name: string;
41
+ status: string;
42
+ }>;
43
+ };
16
44
  export type Company = {
17
45
  id: number;
18
46
  exid: string;
@@ -25,7 +53,7 @@ export type Company = {
25
53
  cameras: number;
26
54
  users: number;
27
55
  activeUsers: number;
28
- createdAt: DateType;
56
+ insertedAt: DateType;
29
57
  };
30
58
  export type CompanyQueryParams = PaginationParams & {
31
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
  };
@@ -490,13 +490,6 @@ export declare enum CountryCode {
490
490
  Zambia = "zm",
491
491
  Zimbabwe = "zw"
492
492
  }
493
- export declare enum Region {
494
- Apac = "apac",
495
- Emea = "emea",
496
- Us = "us",
497
- Latam = "latam",
498
- Na = "na"
499
- }
500
493
  export declare enum CameraRegion {
501
494
  APAC = "apac",
502
495
  AU = "au",
@@ -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",
@@ -1,4 +1,4 @@
1
- import { AnprDirection, CameraExid, Date_HH, Date_YYYY, Date_YYYY_MM, Date_YYYY_MM_DD, DateTime, DateTimeSpaceSeparated, DateType, PaginatedItems, PaginationParams, ProjectExid, ProjectFeatureFlag, Timestamp } from "@/types";
1
+ import { AnprDirection, CameraExid, Date_HH, Date_YYYY, Date_YYYY_MM, Date_YYYY_MM_DD, DateTime, DateTimeSpaceSeparated, DateType, PaginatedItems, PaginationParams, ProjectExid, Timestamp } from "@/types";
2
2
  export declare enum GateReportDetectionType {
3
3
  Auto = "auto",
4
4
  Manual = "manual",
@@ -59,16 +59,19 @@ export declare enum DetectionLabel {
59
59
  ConcreteBlock = "concrete_block",
60
60
  ConcretePipe = "concrete_pipe",
61
61
  ConcreteSlab = "concrete_slab",
62
+ Door = "door",
62
63
  PlasticWrap = "plastic_wrap",
63
64
  ContainerOffice = "container_office",
64
65
  ElectricalPole = "electrical_pole",
65
66
  ElectricalBox = "electrical_box",
66
67
  FireHydrant = "fire_hydrant",
68
+ FireExtinguisher = "fire-extinguisher",
67
69
  HoseReel = "hose_reel",
68
70
  Ladder = "ladder",
69
71
  MetalBeam = "metal_beam",
70
72
  MetalPipe = "metal_pipe",
71
73
  Pallet = "pallet",
74
+ Person = "person",
72
75
  Pillar = "pillar",
73
76
  PlasticBin = "plastic_bin",
74
77
  PlasticBucket = "plastic_bucket",
@@ -214,24 +217,6 @@ export type EventCountResponsePayload = {
214
217
  months?: MonthlyEventCount[];
215
218
  years?: YearlyEventCount[];
216
219
  };
217
- export type ProcessedDaysRequestPayload = {
218
- apiId?: string;
219
- apiKey?: string;
220
- isPublic?: Boolean;
221
- };
222
- export type EventsRequestPayload = {
223
- apiId?: string;
224
- apiKey?: string;
225
- camerasExid?: CameraExid[];
226
- cameras?: string[];
227
- eventType?: GateReportEventType;
228
- fromDate?: DateTime;
229
- isPublic?: boolean;
230
- toDate?: DateTime;
231
- truckTypes?: GateReportVehicleType[];
232
- vehicleTypes?: string[];
233
- } & PaginationParams;
234
- export type EventsResponsePayload = PaginatedItems<GateReportEvent>;
235
220
  export declare enum GateReportDataSource {
236
221
  Anpr = "anpr",
237
222
  Events = "events"
@@ -311,52 +296,6 @@ export type GateReportCamera = {
311
296
  last_published_day: DateType;
312
297
  last_processed_day: DateType;
313
298
  };
314
- export type GateReportProject = {
315
- exid: string;
316
- name: string;
317
- status: string;
318
- featureFlags: ProjectFeatureFlag;
319
- cameras: GateReportCamera[];
320
- };
321
- export type AnalyticsParameters = {
322
- id: number;
323
- cameraex: string;
324
- processingType: string;
325
- startDate: DateTime;
326
- endDate: DateTime;
327
- skipWeekend: boolean;
328
- hourSiteOpening: number;
329
- hourSiteClosure: number;
330
- gateReportActive: boolean;
331
- countingActive: boolean;
332
- queueSystem: string;
333
- reprocess: boolean;
334
- framesToSkip: number;
335
- detection_model: string;
336
- detectionThreshold: number;
337
- printLogsFrame: number;
338
- crossingVectorAngleLimit: number;
339
- minTruckLife: number;
340
- insideMinTime: number;
341
- trackerMaxAge: number;
342
- trackerMinHit: number;
343
- snapshotUpload: boolean;
344
- snapshotPerSecond: number;
345
- detectionClasses: string;
346
- deepEventEndpointUrl: string;
347
- timestampCalculation: string;
348
- matchingEmbeddedDstCoeff: number;
349
- matchingTimeCoeff: number;
350
- matchingQueueOrderCoeff: number;
351
- rabbitmqServerUrl: string;
352
- rabbitmqEventsQueue: string;
353
- rabbitmqEventsExchange: string;
354
- rabbitmqCountingQueue: string;
355
- rabbitmqCountingExchange: string;
356
- dangerZones: boolean;
357
- workflows: boolean;
358
- linkedAnprCameras: Record<string, unknown>;
359
- };
360
299
  export type VerifiedDaysQueryParams = PaginationParams & {
361
300
  projectExid: ProjectExid;
362
301
  camerasExid: CameraExid[];
@@ -366,30 +305,6 @@ export type VerifiedDaysQueryParams = PaginationParams & {
366
305
  updatedAt: DateTime[];
367
306
  day: string;
368
307
  };
369
- export type EventUpdateRequestPayload = {
370
- cameraex: string;
371
- roiId: number;
372
- eventType: string;
373
- eventTime: "2024-12-13T14:25:58.066Z";
374
- truckType: string;
375
- isPublic: boolean;
376
- boundingBox: {
377
- additionalProp1: number;
378
- additionalProp2: number;
379
- additionalProp3: number;
380
- };
381
- valid: boolean;
382
- loadState: string;
383
- embeddingId: number;
384
- embedding: number[];
385
- similarityDst: number;
386
- detectionType: string;
387
- trackingId: number;
388
- deliveriesId: number;
389
- edited: boolean;
390
- isDeleted: boolean;
391
- modelVersion: string;
392
- };
393
308
  export type VerifyDayUpdateRequestPayload = {
394
309
  camerasExid: string[];
395
310
  projectExid: string;
@@ -402,18 +317,6 @@ export type ProcessedDaysQueryParams = {
402
317
  isPublic: boolean;
403
318
  eventType: GateReportEventType;
404
319
  };
405
- export type SecurityMeasurementQueryParams = {
406
- cameraex: string;
407
- timestamp: DateTime;
408
- prompt: string;
409
- snapshotUrl: string;
410
- };
411
- export type ObjectDetectionQueryParams = {
412
- cameraex: string;
413
- timestamp: DateTime;
414
- base64Img: string;
415
- snapshotUrl: string;
416
- };
417
320
  export type RoisQueryParams = {
418
321
  cameraExid: string;
419
322
  id: number;
@@ -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"