@evercam/api 1.0.0-92eee7184 → 1.0.0-9967cde88

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 (39) hide show
  1. package/dist/api/3dFirebaseApi.d.ts +1 -0
  2. package/dist/api/adminApi.d.ts +26 -17
  3. package/dist/api/aiApi.d.ts +35 -8
  4. package/dist/api/client/customErrors.d.ts +10 -0
  5. package/dist/api/client/interceptors.d.ts +1 -1
  6. package/dist/api/evercamApi.d.ts +44 -16
  7. package/dist/api/evercamLabsApi.d.ts +5 -9
  8. package/dist/api/ingestApi.d.ts +3 -1
  9. package/dist/api/weatherApi.d.ts +6 -24
  10. package/dist/index.js +632 -498
  11. package/dist/index.js.map +1 -1
  12. package/dist/index.umd.cjs +1 -1
  13. package/dist/index.umd.cjs.map +1 -1
  14. package/dist/types/360.d.ts +5 -0
  15. package/dist/types/aconex.d.ts +1 -1
  16. package/dist/types/analytics.d.ts +21 -44
  17. package/dist/types/anpr.d.ts +1 -0
  18. package/dist/types/camera.d.ts +4 -50
  19. package/dist/types/comments.d.ts +15 -8
  20. package/dist/types/connector.d.ts +6 -1
  21. package/dist/types/detections.d.ts +56 -5
  22. package/dist/types/errors.d.ts +12 -0
  23. package/dist/types/index.d.ts +3 -1
  24. package/dist/types/kit.d.ts +33 -4
  25. package/dist/types/planner.d.ts +4 -0
  26. package/dist/types/procore.d.ts +146 -3
  27. package/dist/types/project.d.ts +10 -1
  28. package/dist/types/recording.d.ts +1 -2
  29. package/dist/types/roi.d.ts +2 -1
  30. package/dist/types/shares.d.ts +5 -1
  31. package/dist/types/siteAnalytics.d.ts +76 -19
  32. package/dist/types/streaming.d.ts +1 -21
  33. package/dist/types/systemCheck.d.ts +11 -0
  34. package/dist/types/tag.d.ts +12 -0
  35. package/dist/types/time.d.ts +2 -0
  36. package/dist/types/weather.d.ts +6 -2
  37. package/dist/types/xweather.d.ts +12 -0
  38. package/package.json +2 -2
  39. package/dist/types/devices.d.ts +0 -228
@@ -40,6 +40,10 @@ export declare enum _360AssetType {
40
40
  MobilePhoto = "mobile_photos",
41
41
  MobileAudio = "mobile_audios"
42
42
  }
43
+ export declare enum _360Feature {
44
+ Minimap = "Minimap",
45
+ BIM = "BIM"
46
+ }
43
47
  export declare enum _360IntergrationType {
44
48
  Evercam = "Evercam",
45
49
  Matterport = "Matterport",
@@ -73,6 +77,7 @@ export type _360AssetsUploadPayload = {
73
77
  startPosition: string;
74
78
  endPosition: string;
75
79
  isTimelapse: boolean;
80
+ isImagesOnly: boolean;
76
81
  };
77
82
  export type Generate360MapRequestPayload = {
78
83
  dateId: string;
@@ -8,7 +8,7 @@ export type AconexUserProjectsResponsePayload = Array<{
8
8
  export type AconexDocumentSchemaField = {
9
9
  dataType: AconexDocumentDataType;
10
10
  identifier: string;
11
- schemaValues: Array<{
11
+ schemaValues?: Array<{
12
12
  id: string;
13
13
  value: string;
14
14
  }>;
@@ -1,10 +1,3 @@
1
- import { DateType } from "@/types";
2
- export type AnalyticsRequestPayload = {
3
- name: string;
4
- cameraExid: string;
5
- } & {
6
- [key: string]: any;
7
- };
8
1
  export declare enum AnalyticsEventPageId {
9
2
  Timeline = "Timeline",
10
3
  Copilot = "Copilot",
@@ -17,6 +10,7 @@ export declare enum AnalyticsEventPageId {
17
10
  Project = "Project",
18
11
  AllProjects = "AllProjects",
19
12
  Tutorials = "Tutorials",
13
+ SystemCheck = "SystemCheck",
20
14
  ProjectMapView = "ProjectMapView",
21
15
  AccountMapView = "AccountMapView",
22
16
  Automations = "Automations",
@@ -26,9 +20,9 @@ export declare enum AnalyticsEventPageId {
26
20
  ProjectSettingsCameraSettings = "ProjectSettings-CameraSettings",
27
21
  ProjectSettingsMembers = "ProjectSettings-Members",
28
22
  ProjectSettingsOverview = "ProjectSettings-Overview",
23
+ ProjectSettingsDangerZone = "ProjectSettings-DangerZone",
29
24
  Settings = "Settings",
30
25
  SettingsAccount = "Settings-Account",
31
- SettingsActivities = "Settings-Activities",
32
26
  SettingsConnectors = "Settings-Connectors",
33
27
  MediaHub = "MediaHub",
34
28
  MediaOveriew = "MediaOveriew",
@@ -47,7 +41,8 @@ export declare enum AnalyticsEventPageId {
47
41
  DroneInfo = "DroneInfo",
48
42
  ThreeSixtyInfo = "360Info",
49
43
  BimCompareInfo = "BimCompareInfo",
50
- WeatherReport = "WeatherReport"
44
+ WeatherReport = "WeatherReport",
45
+ PpeReport = "PpeReport"
51
46
  }
52
47
  export declare enum AnalyticsEvent {
53
48
  PageView = "PageView",
@@ -63,14 +58,13 @@ export declare enum AnalyticsEvent {
63
58
  Comment = "Comment-Toggle",
64
59
  Compare = "Compare-Toggle",
65
60
  Copilot = "Copilot-Toggle",
61
+ DownloadMediaOpen = "DownloadMedia-Open",
66
62
  SettingsAccountUpdatePassword = "UpdatePassword",
67
63
  SettingsAccountUpdatePersonalInformation = "UpdatePersonalInformation",
68
64
  SettingsAccountRevokeSession = "RevokeSession",
69
65
  SettingsAccountCancelRevokeSession = "CancelRevokeSession",
70
66
  SettingsAccountClickRowsPerPage = "ClickRowsPerPage",
71
67
  SettingsAccountOpenDeleteAccountDialog = "DeleteAccount",
72
- SettingsActivitiesFromDateSelect = "FromDateSelect",
73
- SettingsActivitiesToDateSelect = "ToDateSelect",
74
68
  SettingsConnectorsConnectToProcore = "ConnectToProcore",
75
69
  SettingsConnectorsConnectToAconex = "ConnectToAconex",
76
70
  SettingsConnectorsConnectToAutodesk = "ConnectToAutodesk",
@@ -242,7 +236,6 @@ export declare enum AnalyticsEvent {
242
236
  AiToolSelectObjectDetection = "AITool-SelectObjectDetection",
243
237
  AiToolSelectAskChatGpt = "AITool-SelectAskChatGpt",
244
238
  AiToolSelectSegmentation = "AITool-SelectSegmentation",
245
- AiToolSelectDepthAnalysis = "AITool-SelectDepthAnalysis",
246
239
  AiToolUpdateTransparency = "AITool-UpdateTransparency",
247
240
  RecordingsCancelExportDialog = "CancelExportDialog",
248
241
  RecordingsClickSupportLink = "ClickSupportLink",
@@ -264,15 +257,16 @@ export declare enum AnalyticsEvent {
264
257
  SharingTransferOwnership = "TransferOwnership",
265
258
  SharingSortBy = "SortBy",
266
259
  SharingChangeAccessRight = "ChangeAccessRight",
260
+ ThreeSixtyList = "360List",
267
261
  ThreeSixtyChangeDate = "ChangeDate",
268
262
  ThreeSixtyChangeFloor = "ChangeFloor",
269
263
  ThreeSixtyCloseCompare = "CloseCompare",
270
264
  ThreeSixtyCloseForgeBIM = "CloseForgeBIM",
271
- ThreeSixtyDeleteTag = "DeleteTag",
265
+ ThreeSixtyDeleteComment = "DeleteComment",
272
266
  ThreeSixtyDisableMeasuringTool = "DisableMeasuringTool",
273
- ThreeSixtyDisableTagTool = "DisableTagTool",
267
+ ThreeSixtyDisableCommnetTool = "DisableCommentTool",
274
268
  ThreeSixtyEnableMeasuringTool = "EnableMeasuringTool",
275
- ThreeSixtyEnableTagTool = "EnableTagTool",
269
+ ThreeSixtyEnableCommentTool = "EnableCommentTool",
276
270
  ThreeSixtyLockCompare = "LockCompare",
277
271
  ThreeSixtyLockForgeBIM = "LockForgeBIM",
278
272
  ThreeSixtyMarkerThumbnailClicked = "MarkerThumbnailClicked",
@@ -281,14 +275,16 @@ export declare enum AnalyticsEvent {
281
275
  ThreeSixtyOpenCompare = "OpenCompare",
282
276
  ThreeSixtyOpenForgeBIM = "OpenForgeBIM",
283
277
  ThreeSixtyOpenMarkersThumbnailsList = "OpenMarkersThumbnailsList",
284
- ThreeSixtyOpenTagsList = "OpenTagsList",
285
- ThreeSixtySaveTag = "SaveTag",
278
+ ThreeSixtyOpenCommentsList = "OpenCommentsList",
279
+ ThreeSixtySaveComment = "SaveComment",
280
+ ThreeSixtyUnarchiveComment = "UnarchiveComment",
281
+ ThreeSixtyArchiveComment = "ArchiveComment",
286
282
  ThreeSixtyShareView = "ShareView",
287
- ThreeSixtyTagClicked = "TagClicked",
283
+ ThreeSixtyCommentClicked = "CommentClicked",
288
284
  ThreeSixtyToggleMarkersVisibility = "ToggleMarkersVisibility",
289
285
  ThreeSixtyToggleMinimapVisibility = "ToggleMinimapVisibility",
290
286
  ThreeSixtyToggleMiniModel = "ToggleMiniModel",
291
- ThreeSixtyToggleTagsVisibility = "ToggleTagsVisibility",
287
+ ThreeSixtyToggleCommentsVisibility = "ToggleCommentsVisibility",
292
288
  ThreeSixtyTourPause = "Tour-Pause",
293
289
  ThreeSixtyTourPlay = "Tour-Play",
294
290
  ThreeSixtyTourSetSpeedXHalve = "Tour-SetSpeedX0.5",
@@ -441,40 +437,21 @@ export declare enum AnalyticsEvent {
441
437
  MediaCopyMediaLink = "Media-CopyMediaLink",
442
438
  MediaGoToMediaHub = "Media-GoBackToMediaHub",
443
439
  GateReportCalendarTreeDateClick = "CalendarTree-DateClick",
444
- GateReportExportPdf = "ExportPdf",
445
- GateReportExportCsv = "ExportCsv",
446
440
  GateReportFilterEntryExit = "FilterEntryExit",
447
- GateReportFilterCameras = "FilterCameras",
448
441
  GateReportFilterPlateNumber = "FilterPlateNumber",
449
442
  GateReportFilterVehicleTypes = "FilterVehicleTypes",
450
443
  GateReportOpenVehicleTypeInfo = "OpenVehicleTypeInfo",
451
444
  GateReportTimelineDateClick = "Timeline-DateClick",
452
445
  GateReportToggleThumbnails = "ToggleThumbnails",
446
+ PpeTimelineDateClick = "PpeTimeline-DateClick",
453
447
  HelpMenuToggleMenuButton = "HelpMenu-ToggleMenuButton",
454
448
  HelpMenuOpenLiveChat = "HelpMenu-OpenLiveChat",
455
449
  HelpMenuClickTutorialsLink = "HelpMenu-ClickTutorialsLink",
456
450
  HelpMenuClickWhatsNewLink = "HelpMenu-ClickWhatsNewLink",
457
451
  HelpMenuClickUserManuaLink = "HelpMenu-ClickUserManuaLink",
458
- HelpMenuClickSupportTicketsLink = "HelpMenu-ClickSupportTicketsLink"
452
+ HelpMenuClickSupportTicketsLink = "HelpMenu-ClickSupportTicketsLink",
453
+ HelpMenuClickSystemCheckLink = "HelpMenu-ClickSystemCheckLink",
454
+ ExportPdf = "ExportPdf",
455
+ ExportCsv = "ExportCsv",
456
+ FilterCameras = "FilterCameras"
459
457
  }
460
- export type ProjectPAStatsRequestPayload = {
461
- period: "day" | "week" | "month";
462
- startDate?: string;
463
- endDate?: string;
464
- };
465
- export type ProjectPAStatsResponsePayload = {
466
- period: DateType;
467
- name: string;
468
- count: number | string;
469
- };
470
- export type ActiveUsersStatsRequestPayload = {
471
- companyId: number;
472
- from: string;
473
- to: string;
474
- };
475
- export type ActiveUserStat = {
476
- date: string;
477
- dau: number;
478
- wau: number;
479
- mau: number;
480
- };
@@ -61,6 +61,7 @@ export type AnprEvent = {
61
61
  anprVehicleColor?: string;
62
62
  anprVehicleSpeed?: number;
63
63
  anprSnapshotLink: string;
64
+ contextSnapshotLink: string;
64
65
  mainSnapshotLink: string;
65
66
  contextCamera: string;
66
67
  votedVehicleType: GateReportVehicleType | string;
@@ -82,6 +82,7 @@ export type Camera = {
82
82
  timezone: string;
83
83
  updatedAt: DateTime_Z_micros;
84
84
  vendorName: string;
85
+ isAccessRestricted?: boolean;
85
86
  };
86
87
  export type AdminCamera = {
87
88
  cameraHost: string;
@@ -177,6 +178,8 @@ export declare enum CameraStatus {
177
178
  export declare enum CameraFeatureFlag {
178
179
  EdgeVideo = "edge_video",
179
180
  BimCompare = "bim_compare",
181
+ TwoDBimCompare = "2d_bim_compare",
182
+ ForgeBIMCompare = "forge_bim_compare",
180
183
  GateReport = "gate_report",
181
184
  VideoStream = "video_stream",
182
185
  WebRTC = "webrtc",
@@ -229,6 +232,7 @@ export type CameraUpdateRequestPayload = {
229
232
  fovAngle?: number;
230
233
  fovRadius?: number;
231
234
  featureFlags: CameraFeatureFlag[];
235
+ isAccessRestricted?: boolean;
232
236
  };
233
237
  export type CamerasResponsePayload = {
234
238
  cameras?: Camera[];
@@ -322,56 +326,6 @@ export type Hdd = {
322
326
  errorStatus: string;
323
327
  canExpand: boolean;
324
328
  };
325
- export declare enum ResolutionDimensions {
326
- QVGA = "320x240",
327
- VGA = "640x480",
328
- SVGA = "800x600",
329
- XGA = "1024x768",
330
- HD = "1280x720",
331
- WXGA = "1280x800",
332
- HDPlus = "1366x768",
333
- WXGAPlus = "1440x900",
334
- HDPlusPlus = "1600x900",
335
- UXGA = "1600x1200",
336
- FullHD = "1920x1080",
337
- WUXGA = "1920x1200",
338
- TwoK = "2048x1080",
339
- QHD = "2560x1440",
340
- WQXGA = "2560x1600",
341
- FourK = "3840x2160",
342
- FourKCinema = "4096x2160",
343
- FiveK = "5120x2880",
344
- EightK = "7680x4320",
345
- WHUXGA = "7680x4800"
346
- }
347
- export declare enum ResolutionLabel {
348
- QVGA = "QVGA",
349
- VGA = "VGA",
350
- SVGA = "SVGA",
351
- XGA = "XGA",
352
- HD = "HD",
353
- WXGA = "WXGA",
354
- HDPlus = "HD+",
355
- WXGAPlus = "WXGA++",
356
- HDPlusPlus = "HD++",
357
- UXGA = "UXGA",
358
- FullHD = "FullHD",
359
- WUXGA = "WUXGA",
360
- TwoK = "2K",
361
- QHD = "QHD",
362
- WQXGA = "WQXGA",
363
- FourK = "4K",
364
- FourKCinema = "4KCinema",
365
- FiveK = "5K",
366
- EightK = "8K",
367
- WHUXGA = "WHUXGA"
368
- }
369
- export type ResolutionInfo = {
370
- ratioString: string;
371
- ratioFloat: number;
372
- resolutionDimensions: ResolutionDimensions;
373
- resolutionLabel: ResolutionLabel;
374
- };
375
329
  export type CameraPath = {
376
330
  projectExid: ProjectExid;
377
331
  cameraExid: CameraExid;
@@ -1,15 +1,16 @@
1
1
  import { CameraExid, DateType, ProjectExid } from "@/types";
2
+ export declare enum CommentsScope {
3
+ Recordings = "recordings",
4
+ ThreeSixty = "360"
5
+ }
2
6
  export type CommentsRequestPayload = {
3
7
  cameraExid: CameraExid;
4
8
  fromDate: string;
5
9
  toDate: string;
10
+ scope: CommentsScope;
6
11
  page?: number;
7
12
  limit?: number;
8
13
  };
9
- export type CommentPosition = {
10
- coordinates: Array<number>;
11
- type: string;
12
- };
13
14
  export type Comment = {
14
15
  fromDate?: string;
15
16
  toDate?: string;
@@ -22,15 +23,21 @@ export type Comment = {
22
23
  createdAt?: string;
23
24
  creatorEmail?: string;
24
25
  creatorName?: string;
25
- position2d: CommentPosition;
26
+ position2d?: [number, number];
27
+ position3d?: [number, number, number];
28
+ context?: Record<string, unknown>;
26
29
  canDelete?: boolean;
30
+ archivedAt?: string;
27
31
  };
28
32
  export type CommentCreationRequestPayload = {
29
33
  fromDate?: DateType;
30
34
  toDate?: DateType;
31
- timestamp: DateType;
35
+ timestamp?: DateType;
36
+ scope?: CommentsScope;
32
37
  projectExid: ProjectExid;
33
- cameraExid: CameraExid;
38
+ cameraExid?: CameraExid;
34
39
  content: string;
35
- position2d: Array<number>;
40
+ position2d?: [number, number];
41
+ position3d?: [number, number, number];
42
+ context?: Record<string, unknown>;
36
43
  };
@@ -7,7 +7,12 @@ export declare enum Connector {
7
7
  Procore = "procore",
8
8
  Autodesk = "autodesk",
9
9
  AutodeskViewer = "autodesk_viewer",
10
- VoyageControl = "voyage_control"
10
+ VoyageControl = "voyage_control",
11
+ XWeather = "xweather"
12
+ }
13
+ export declare enum ProcoreType {
14
+ Observations = "observations",
15
+ Photos = "photos"
11
16
  }
12
17
  export type ConnectorResponsePayload = Array<{
13
18
  hostname: string;
@@ -1,11 +1,17 @@
1
- import { type BoundingBox, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision } from "@/types";
2
- export type DetectionsFilters = {
3
- cameraExid: CameraExid;
1
+ import { type BoundingBox, type ProjectExid, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision } from "@/types";
2
+ export type BaseDetectionsFilters = {
4
3
  fromDate: string | Date;
5
4
  toDate: string | Date;
6
5
  labels: DetectionLabel | DetectionLabel[];
7
6
  trackId?: number;
8
7
  };
8
+ export type DetectionsFilters = BaseDetectionsFilters & {
9
+ projectExid: ProjectExid;
10
+ cameraExids?: CameraExid[];
11
+ };
12
+ export type SegmentsFilters = BaseDetectionsFilters & {
13
+ cameraExid: CameraExid;
14
+ };
9
15
  export type BBox = number[];
10
16
  export type SelectedObjectPath = {
11
17
  label: string;
@@ -16,9 +22,32 @@ export type SelectedObjectPath = {
16
22
  bbox: BBox;
17
23
  }>;
18
24
  };
25
+ export type Label = DetectionLabel | PpeLabel;
19
26
  export type Detection = {
20
27
  bbox: BBox;
21
28
  timestamp: string | Date;
29
+ label: DetectionLabel;
30
+ confidenceScore: number;
31
+ };
32
+ export type DetectionsGroup = {
33
+ timestamp: DateType;
34
+ detections: Detection[];
35
+ };
36
+ export type DetectionsCounts = {
37
+ timestamps: number;
38
+ } & {
39
+ [label in Label]: number;
40
+ };
41
+ export type DetectionsCountsByPeriod = {
42
+ days: Array<{
43
+ day: string;
44
+ } & DetectionsCounts>;
45
+ months: Array<{
46
+ month: string;
47
+ } & DetectionsCounts>;
48
+ years: Array<{
49
+ year: string;
50
+ } & DetectionsCounts>;
22
51
  };
23
52
  export type Tracking = {
24
53
  trackId: number;
@@ -55,14 +84,20 @@ export type SegmentsSimilaritySearchParams = {
55
84
  fromDate: string;
56
85
  toDate: string;
57
86
  };
58
- export type CountsParams = {
59
- cameraExid: CameraExid;
87
+ export type BaseCountsParams = {
60
88
  fromDate: string | Date;
61
89
  toDate: string | Date;
62
90
  precision: keyof typeof TimelinePrecision;
63
91
  trackId: number;
64
92
  labels: DetectionLabel | DetectionLabel[];
65
93
  };
94
+ export type DetectionsCountsParams = BaseCountsParams & {
95
+ projectExid: ProjectExid;
96
+ cameraExids?: CameraExid[];
97
+ };
98
+ export type SegmentsCountsParams = BaseCountsParams & {
99
+ cameraExid: CameraExid;
100
+ };
66
101
  export type CountByPeriod = {
67
102
  date: string | Date;
68
103
  counts: Record<string, number>;
@@ -74,3 +109,19 @@ export type LuminanceReading = {
74
109
  luminanceDelta: number;
75
110
  luminanceAverage: number;
76
111
  };
112
+ export declare enum PpeLabel {
113
+ Helmet = "helmet",
114
+ HighVisibilityVest = "high-visibility-vest",
115
+ SafetyGlasses = "safety-glasses",
116
+ Gloves = "gloves",
117
+ Person = "person",
118
+ Man = "man",
119
+ Woman = "woman"
120
+ }
121
+ export declare enum DetectionModel {
122
+ Yolov10 = 1,
123
+ Yolov11 = 2,
124
+ Yolov11_2 = 3,
125
+ GroundingDino = 4,
126
+ Owlv2 = 5
127
+ }
@@ -14,12 +14,24 @@ export declare enum ErrorType {
14
14
  UnhandledRejection = "UnhandledRejection",
15
15
  TypeError = "TypeError"
16
16
  }
17
+ export declare enum ErrorCode {
18
+ InternalServerError = 500,
19
+ BadGatewayError = 502,
20
+ ServiceUnavailableError = 503,
21
+ GatewayTimeoutError = 504,
22
+ BadRequestError = 400,
23
+ UnauthorizedError = 401,
24
+ ForbiddenError = 403,
25
+ NotFoundError = 404,
26
+ ConflictError = 409
27
+ }
17
28
  export declare enum EvercamApiErrorCode {
18
29
  BadArgument = "BAD_ARGUMENT",
19
30
  DeviceError = "DEVICE_ERROR",
20
31
  UnsupportedOperation = "UNSUPPORTED_OPERATION",
21
32
  QuotaExceeded = "QUOTA_EXCEEDED",
22
33
  InvalidCredentials = "INVALID_CREDENTIALS",
34
+ InvalidToken = "INVALID_TOKEN",
23
35
  ProviderAuthFailure = "PROVIDER_AUTH_FAILURE",
24
36
  ProviderEmailRequired = "PROVIDER_EMAIL_REQUIRED",
25
37
  PasswordReset = "PASSWORD_RESET",
@@ -9,7 +9,6 @@ export * from "./camera";
9
9
  export * from "./compare";
10
10
  export * from "./copilot";
11
11
  export * from "./credentials";
12
- export * from "./devices";
13
12
  export * from "./drone";
14
13
  export * from "./errors";
15
14
  export * from "./gateReport";
@@ -28,6 +27,7 @@ export * from "./routeParams";
28
27
  export * from "./router";
29
28
  export * from "./shares";
30
29
  export * from "./sim";
30
+ export * from "./systemCheck";
31
31
  export * from "./planner";
32
32
  export * from "./storageServers";
33
33
  export * from "./streaming";
@@ -51,3 +51,5 @@ export * from "./widget";
51
51
  export * from "./countries";
52
52
  export * from "./automation";
53
53
  export * from "./coolify";
54
+ export * from "./tag";
55
+ export * from "./xweather";
@@ -1,4 +1,4 @@
1
- import { CountryCode, CountryId, DateType, Nvr, PaginationParams, PowerType, Project, Region, Router, Schedule } from "@/types";
1
+ import { CountryCode, CountryId, DateTime, DateType, Nvr, PaginationParams, PowerType, Project, Region, Router, Schedule, Tag } from "@/types";
2
2
  export type Kit = {
3
3
  alarms: KitAlarm[];
4
4
  countryCode: CountryCode;
@@ -16,6 +16,7 @@ export type Kit = {
16
16
  serial: string;
17
17
  status: KitStatus;
18
18
  powerSchedule: Schedule;
19
+ tags: Tag[];
19
20
  };
20
21
  export declare enum KitStatus {
21
22
  New = "new",
@@ -31,11 +32,14 @@ export declare enum KitAlarm {
31
32
  FullSD = "full_sd",
32
33
  FullStorage = "full_storage",
33
34
  HddUnmounted = "hdd_unmounted",
34
- NoHdd = "no_hdd"
35
+ NoHdd = "no_hdd",
36
+ MissingRouterInfo = "missing_router_info",
37
+ PowerLost = "ac_failure",
38
+ UpsLowBattery = "low_battery"
35
39
  }
36
40
  export declare enum KitMetricId {
37
- BatteryStats = "battery",
38
- PanelPowerStats = "panel_power"
41
+ SolarCharger = "solar_charger",
42
+ PanelPower = "panel_power"
39
43
  }
40
44
  export declare enum KitMetricPeriod {
41
45
  Last15Minutes = "now-15m",
@@ -240,6 +244,7 @@ export type KitQueryParams = PaginationParams & {
240
244
  name: string;
241
245
  serial: string;
242
246
  status: KitStatus;
247
+ tagId: number | number[];
243
248
  };
244
249
  export type AdminKit = {
245
250
  id: number;
@@ -297,3 +302,27 @@ export type KitUpdatePayload = {
297
302
  kitStatus: KitStatus;
298
303
  type: string;
299
304
  };
305
+ export declare enum KitStorageTransport {
306
+ Sata = "sata",
307
+ Nvme = "nvme",
308
+ Usb = "usb"
309
+ }
310
+ export type KitStorageRequestPayload = {
311
+ kitId: number;
312
+ };
313
+ export type KitStorageResponsePayload = {
314
+ id: number;
315
+ serial: string;
316
+ status: string;
317
+ type: string;
318
+ metadata: {
319
+ formFactor: string;
320
+ };
321
+ model: string;
322
+ insertedAt: DateTime;
323
+ updatedAt: DateTime;
324
+ vendor: string;
325
+ kitId: number;
326
+ capacity: number;
327
+ tran: KitStorageTransport;
328
+ };
@@ -1,3 +1,7 @@
1
+ export declare enum EDistortImageModes {
2
+ FreeRotate = "freeRotate",
3
+ Lock = "lock"
4
+ }
1
5
  export declare enum EMapTypes {
2
6
  Blank = "Blank",
3
7
  Satellite = "Satellite",