@evercam/api 1.0.0-a405572ff → 1.0.0-a99b6a77f
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 +1 -1
- package/dist/api/adminApi.d.ts +51 -24
- package/dist/api/aiApi.d.ts +38 -1
- package/dist/api/client/interceptors.d.ts +2 -1
- package/dist/api/evercamApi.d.ts +19 -14
- package/dist/api/evercamLabsApi.d.ts +7 -7
- package/dist/api/ingestApi.d.ts +2 -1
- package/dist/api/ptzApi.d.ts +1 -1
- package/dist/api/weatherApi.d.ts +7 -23
- package/dist/index.js +776 -638
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/types/360.d.ts +2 -2
- package/dist/types/analytics.d.ts +28 -59
- package/dist/types/anpr.d.ts +10 -7
- package/dist/types/axios.d.ts +0 -1
- package/dist/types/camera.d.ts +7 -3
- package/dist/types/connector.d.ts +2 -1
- package/dist/types/coolify.d.ts +18 -0
- package/dist/types/copilot.d.ts +11 -9
- package/dist/types/detections.d.ts +23 -9
- package/dist/types/gateReport.d.ts +50 -1
- package/dist/types/hdd.d.ts +63 -0
- package/dist/types/index.d.ts +5 -1
- package/dist/types/kit.d.ts +41 -8
- package/dist/types/nvr.d.ts +2 -1
- package/dist/types/{sitePlanner.d.ts → planner.d.ts} +6 -1
- package/dist/types/project.d.ts +5 -2
- package/dist/types/shared.d.ts +2 -11
- package/dist/types/shares.d.ts +5 -1
- package/dist/types/siteAnalytics.d.ts +80 -1
- package/dist/types/streaming.d.ts +3 -5
- package/dist/types/tag.d.ts +12 -0
- package/dist/types/timelapse.d.ts +15 -0
- package/dist/types/weather.d.ts +6 -2
- package/dist/types/widget.d.ts +11 -5
- package/dist/types/xweather.d.ts +12 -0
- package/package.json +7 -6
package/dist/types/360.d.ts
CHANGED
|
@@ -41,11 +41,11 @@ export declare enum _360AssetType {
|
|
|
41
41
|
MobileAudio = "mobile_audios"
|
|
42
42
|
}
|
|
43
43
|
export declare enum _360IntergrationType {
|
|
44
|
+
Evercam = "Evercam",
|
|
44
45
|
Matterport = "Matterport",
|
|
45
46
|
OpenSpace = "Openspace",
|
|
46
47
|
HoloBuilder = "Holobuilder",
|
|
47
|
-
DroneDeploy = "Dronedeploy"
|
|
48
|
-
Evercam = "Evercam"
|
|
48
|
+
DroneDeploy = "Dronedeploy"
|
|
49
49
|
}
|
|
50
50
|
export type _360AssetsQueryParams = {
|
|
51
51
|
page: number;
|
|
@@ -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",
|
|
@@ -28,7 +21,6 @@ export declare enum AnalyticsEventPageId {
|
|
|
28
21
|
ProjectSettingsOverview = "ProjectSettings-Overview",
|
|
29
22
|
Settings = "Settings",
|
|
30
23
|
SettingsAccount = "Settings-Account",
|
|
31
|
-
SettingsActivities = "Settings-Activities",
|
|
32
24
|
SettingsConnectors = "Settings-Connectors",
|
|
33
25
|
MediaHub = "MediaHub",
|
|
34
26
|
MediaOveriew = "MediaOveriew",
|
|
@@ -36,7 +28,7 @@ export declare enum AnalyticsEventPageId {
|
|
|
36
28
|
Bim = "Bim",
|
|
37
29
|
Drone = "Drone",
|
|
38
30
|
ThreeSixty = "360",
|
|
39
|
-
|
|
31
|
+
Planner = "Planner",
|
|
40
32
|
Widgets = "Widgets",
|
|
41
33
|
Company = "Company",
|
|
42
34
|
EmbeddedLive = "EmbeddedLive",
|
|
@@ -47,8 +39,7 @@ export declare enum AnalyticsEventPageId {
|
|
|
47
39
|
DroneInfo = "DroneInfo",
|
|
48
40
|
ThreeSixtyInfo = "360Info",
|
|
49
41
|
BimCompareInfo = "BimCompareInfo",
|
|
50
|
-
WeatherReport = "WeatherReport"
|
|
51
|
-
EvercamGoInfo = "EvercamGoInfo"
|
|
42
|
+
WeatherReport = "WeatherReport"
|
|
52
43
|
}
|
|
53
44
|
export declare enum AnalyticsEvent {
|
|
54
45
|
PageView = "PageView",
|
|
@@ -64,14 +55,13 @@ export declare enum AnalyticsEvent {
|
|
|
64
55
|
Comment = "Comment-Toggle",
|
|
65
56
|
Compare = "Compare-Toggle",
|
|
66
57
|
Copilot = "Copilot-Toggle",
|
|
58
|
+
DownloadMediaOpen = "DownloadMedia-Open",
|
|
67
59
|
SettingsAccountUpdatePassword = "UpdatePassword",
|
|
68
60
|
SettingsAccountUpdatePersonalInformation = "UpdatePersonalInformation",
|
|
69
61
|
SettingsAccountRevokeSession = "RevokeSession",
|
|
70
62
|
SettingsAccountCancelRevokeSession = "CancelRevokeSession",
|
|
71
63
|
SettingsAccountClickRowsPerPage = "ClickRowsPerPage",
|
|
72
64
|
SettingsAccountOpenDeleteAccountDialog = "DeleteAccount",
|
|
73
|
-
SettingsActivitiesFromDateSelect = "FromDateSelect",
|
|
74
|
-
SettingsActivitiesToDateSelect = "ToDateSelect",
|
|
75
65
|
SettingsConnectorsConnectToProcore = "ConnectToProcore",
|
|
76
66
|
SettingsConnectorsConnectToAconex = "ConnectToAconex",
|
|
77
67
|
SettingsConnectorsConnectToAutodesk = "ConnectToAutodesk",
|
|
@@ -99,7 +89,8 @@ export declare enum AnalyticsEvent {
|
|
|
99
89
|
WidgetsSettingRefreshRate = "EditRefreshRate",
|
|
100
90
|
WidgetsSettingRestrictRecentImagesInput = "EditRestrictRecentImagesInput",
|
|
101
91
|
WidgetsSettingToggleBIMCompareDarkMode = "ToggleBIMDarkMode",
|
|
102
|
-
WidgetsSettingToggleBIMCompareTimeLine = "
|
|
92
|
+
WidgetsSettingToggleBIMCompareTimeLine = "ToggleBIMTimeline",
|
|
93
|
+
WidgetsSettingToggleBIMCompareCalendar = "ToggleBIMCalendar",
|
|
103
94
|
WidgetsSettingToggleDownload = "ToggleDownload",
|
|
104
95
|
WidgetsSettingToggleFullScreen = "ToggleFullScreen",
|
|
105
96
|
WidgetsSettingTogglePlayPause = "TogglePlayPause",
|
|
@@ -334,30 +325,29 @@ export declare enum AnalyticsEvent {
|
|
|
334
325
|
DroneVolumeToolClick = "VolumeTool-Click",
|
|
335
326
|
DroneZoomIn = "ZoomIn",
|
|
336
327
|
DroneZoomOut = "ZoomOut",
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
SitePlannerZoomOut = "ZoomOut",
|
|
328
|
+
PlannerAddCameraClick = "AddCameraClick",
|
|
329
|
+
PlannerAddSitePlanDrawingClick = "AddSitePlanDrawingClick",
|
|
330
|
+
PlannerAddSitePlanClick = "AddSitePlanClick",
|
|
331
|
+
PlannerAttachSitePlanDrawing = "AttachSitePlanDrawing",
|
|
332
|
+
PlannerCameraMarkerEditFOVAngle = "CameraMarker-EditFOVAngle",
|
|
333
|
+
PlannerCameraMarkerEditHeading = "CameraMarker-EditHeading",
|
|
334
|
+
PlannerCameraMarkerEditName = "CameraMarker-EditName",
|
|
335
|
+
PlannerCameraMarkerEditRadius = "CameraMarker-EditRadius",
|
|
336
|
+
PlannerCameraMarkerSelectColor = "CameraMarker-SelectColor",
|
|
337
|
+
PlannerCameraMarkerToggleVisibility = "CameraMarker-ToggleVisibility",
|
|
338
|
+
PlannerCameraMarkerToggleDeleteDialog = "CameraMarker-ToggleDeleteDialog",
|
|
339
|
+
PlannerCancelUploadSitePlanDrawing = "CancelUploadSitePlanDrawing",
|
|
340
|
+
PlannerChangeLocation = "ChangeLocation",
|
|
341
|
+
PlannerOpen = "Open",
|
|
342
|
+
PlannerResetView = "ResetView",
|
|
343
|
+
PlannerSitePlansList = "SitePlansList",
|
|
344
|
+
PlannerToggleCamerasLabel = "ToggleCamerasLabel",
|
|
345
|
+
PlannerToggleFullscreen = "ToggleFullscreen",
|
|
346
|
+
PlannerToggleMapStyle = "ToggleMapStyle",
|
|
347
|
+
PlannerToggleSaveSessionDialog = "ToggleSaveSessionDialog",
|
|
348
|
+
PlannerUploadSitePlanDrawing = "UploadSitePlanDrawing",
|
|
349
|
+
PlannerZoomIn = "ZoomIn",
|
|
350
|
+
PlannerZoomOut = "ZoomOut",
|
|
361
351
|
MarkerClicked = "MarkerClicked",
|
|
362
352
|
TimelapseToggleHelpDialog = "ToggleHelpDialog",
|
|
363
353
|
TimelapseSelectCustomPeriod = "SelectCustomPeriod",
|
|
@@ -458,24 +448,3 @@ export declare enum AnalyticsEvent {
|
|
|
458
448
|
HelpMenuClickUserManuaLink = "HelpMenu-ClickUserManuaLink",
|
|
459
449
|
HelpMenuClickSupportTicketsLink = "HelpMenu-ClickSupportTicketsLink"
|
|
460
450
|
}
|
|
461
|
-
export type ProjectPAStatsRequestPayload = {
|
|
462
|
-
period: "day" | "week" | "month";
|
|
463
|
-
startDate?: string;
|
|
464
|
-
endDate?: string;
|
|
465
|
-
};
|
|
466
|
-
export type ProjectPAStatsResponsePayload = {
|
|
467
|
-
period: DateType;
|
|
468
|
-
name: string;
|
|
469
|
-
count: number | string;
|
|
470
|
-
};
|
|
471
|
-
export type ActiveUsersStatsRequestPayload = {
|
|
472
|
-
companyId: number;
|
|
473
|
-
from: string;
|
|
474
|
-
to: string;
|
|
475
|
-
};
|
|
476
|
-
export type ActiveUserStat = {
|
|
477
|
-
date: string;
|
|
478
|
-
dau: number;
|
|
479
|
-
wau: number;
|
|
480
|
-
mau: number;
|
|
481
|
-
};
|
package/dist/types/anpr.d.ts
CHANGED
|
@@ -43,26 +43,29 @@ export declare enum AnprDirection {
|
|
|
43
43
|
export type AnprEvent = {
|
|
44
44
|
id: number;
|
|
45
45
|
plateNumber: string;
|
|
46
|
-
|
|
46
|
+
cameraExid: CameraExid;
|
|
47
47
|
picName: string;
|
|
48
|
-
|
|
48
|
+
eventTime: string;
|
|
49
49
|
insertedAt: string;
|
|
50
50
|
isDuplicate: boolean;
|
|
51
51
|
direction: AnprDirection;
|
|
52
52
|
updatedAt: string;
|
|
53
|
+
edited?: boolean;
|
|
53
54
|
isPlate: boolean;
|
|
54
55
|
isPostprocessed: boolean;
|
|
55
56
|
vehicleType?: GateReportVehicleType;
|
|
56
57
|
contextVehicleType?: GateReportVehicleType;
|
|
57
|
-
anprVehicleType
|
|
58
|
-
anprVehicleModel
|
|
59
|
-
anprVehicleMake
|
|
60
|
-
anprVehicleColor
|
|
61
|
-
anprVehicleSpeed
|
|
58
|
+
anprVehicleType?: string;
|
|
59
|
+
anprVehicleModel?: string;
|
|
60
|
+
anprVehicleMake?: string;
|
|
61
|
+
anprVehicleColor?: string;
|
|
62
|
+
anprVehicleSpeed?: number;
|
|
62
63
|
anprSnapshotLink: string;
|
|
63
64
|
contextSnapshotLink: string;
|
|
65
|
+
mainSnapshotLink: string;
|
|
64
66
|
contextCamera: string;
|
|
65
67
|
votedVehicleType: GateReportVehicleType | string;
|
|
68
|
+
roiId?: number;
|
|
66
69
|
metadata_: {
|
|
67
70
|
evercamMetadata?: {
|
|
68
71
|
anpr?: {
|
package/dist/types/axios.d.ts
CHANGED
package/dist/types/camera.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AuditLogActionType, DateTime_Z_micros, DateType, EntityByExid,
|
|
2
|
-
export type CameraExid =
|
|
1
|
+
import { AuditLogActionType, DateTime_Z_micros, DateType, EntityByExid, NvrDeviceType, PaginationParams, PowerSchedule, PowerType, ProjectExid, Schedule } from "@/types";
|
|
2
|
+
export type CameraExid = string;
|
|
3
3
|
export type CamerasByExid = EntityByExid<Camera>;
|
|
4
4
|
export type Cartesian3 = {
|
|
5
5
|
x: number;
|
|
@@ -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;
|
|
@@ -185,7 +186,8 @@ export declare enum CameraFeatureFlag {
|
|
|
185
186
|
PTZ = "ptz",
|
|
186
187
|
ObjectDetection = "object_detection",
|
|
187
188
|
Segmentation = "segmentation",
|
|
188
|
-
SegmentationAutoLabelling = "segmentation_auto_labelling"
|
|
189
|
+
SegmentationAutoLabelling = "segmentation_auto_labelling",
|
|
190
|
+
PpeMonitoring = "ppe_monitoring"
|
|
189
191
|
}
|
|
190
192
|
export type CameraLogsRequestPayload = {
|
|
191
193
|
limit: number;
|
|
@@ -227,6 +229,8 @@ export type CameraUpdateRequestPayload = {
|
|
|
227
229
|
heading?: number;
|
|
228
230
|
fovAngle?: number;
|
|
229
231
|
fovRadius?: number;
|
|
232
|
+
featureFlags: CameraFeatureFlag[];
|
|
233
|
+
isAccessRestricted?: boolean;
|
|
230
234
|
};
|
|
231
235
|
export type CamerasResponsePayload = {
|
|
232
236
|
cameras?: Camera[];
|
|
@@ -7,7 +7,8 @@ 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"
|
|
11
12
|
}
|
|
12
13
|
export type ConnectorResponsePayload = Array<{
|
|
13
14
|
hostname: string;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DateType } from "@/types/time";
|
|
2
|
+
export type CreateCoolifyAppRequestPayload = {
|
|
3
|
+
cameraExid: string;
|
|
4
|
+
startDate: DateType;
|
|
5
|
+
modelVersion: string;
|
|
6
|
+
snapshotRequestTimeout: string | number;
|
|
7
|
+
serverUuid: string;
|
|
8
|
+
branch: string;
|
|
9
|
+
};
|
|
10
|
+
export type SaveCoolifyAppRequestPayload = {
|
|
11
|
+
contextCameraExid: string;
|
|
12
|
+
coolifyServiceId: string;
|
|
13
|
+
modelVersion: string;
|
|
14
|
+
startTime: string;
|
|
15
|
+
branchName: string;
|
|
16
|
+
snapshotRequestTimeout: string | number;
|
|
17
|
+
serverUuid: string;
|
|
18
|
+
};
|
package/dist/types/copilot.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { AnalyticsEventPageId, CameraExid, CameraFeatureFlag, CameraStatus, ProjectExid, ProjectFeatureFlag, ProjectStatus } from "@/types";
|
|
2
2
|
export declare enum CopilotMessageAuthor {
|
|
3
3
|
Copilot = "copilot",
|
|
4
|
-
User = "user"
|
|
4
|
+
User = "user",
|
|
5
|
+
System = "system"
|
|
5
6
|
}
|
|
6
7
|
export declare enum CopilotMessageType {
|
|
7
8
|
Text = "text",
|
|
@@ -33,12 +34,13 @@ export declare enum CopilotMissingFieldsLabels {
|
|
|
33
34
|
FromDate = "Start date",
|
|
34
35
|
ToDate = "End date"
|
|
35
36
|
}
|
|
36
|
-
export type CopilotMissingField = {
|
|
37
|
+
export type CopilotMissingField<T = any> = {
|
|
37
38
|
name: string;
|
|
38
39
|
label: string;
|
|
39
40
|
value: any;
|
|
40
41
|
type: string;
|
|
41
42
|
toolId: string;
|
|
43
|
+
error?: T;
|
|
42
44
|
};
|
|
43
45
|
export type CopilotMissingFields = Record<number, CopilotMissingField[]>;
|
|
44
46
|
export type UserConversations = CopilotConversation & {
|
|
@@ -57,7 +59,8 @@ export declare enum CopilotSocketEvent {
|
|
|
57
59
|
ChatError = "chat:chatError",
|
|
58
60
|
MissingFields = "chat:missingFields",
|
|
59
61
|
MissingFieldsCompleted = "chat:missingFields:completed",
|
|
60
|
-
SystemToolCallResponse = "system:toolCall:response"
|
|
62
|
+
SystemToolCallResponse = "system:toolCall:response",
|
|
63
|
+
ChangeProvider = "chat:changeProvider"
|
|
61
64
|
}
|
|
62
65
|
export type CopilotConversation = {
|
|
63
66
|
id: number;
|
|
@@ -79,7 +82,8 @@ export declare enum CopilotSuggestion {
|
|
|
79
82
|
GateReport = "gate_report",
|
|
80
83
|
Weather = "weather",
|
|
81
84
|
Clip = "clip",
|
|
82
|
-
Timelapse = "timelapse"
|
|
85
|
+
Timelapse = "timelapse",
|
|
86
|
+
Chart = "chart"
|
|
83
87
|
}
|
|
84
88
|
export declare enum CopilotChatProvider {
|
|
85
89
|
Gemini = "gemini",
|
|
@@ -117,9 +121,6 @@ export type CopilotProject = {
|
|
|
117
121
|
featureFlags?: ProjectFeatureFlag[];
|
|
118
122
|
cameras?: CopilotCamera[];
|
|
119
123
|
};
|
|
120
|
-
export type CopilotConversationContext = {
|
|
121
|
-
availableProjects: CopilotProject[];
|
|
122
|
-
};
|
|
123
124
|
export type CopilotMessageContext = {
|
|
124
125
|
pageId?: AnalyticsEventPageId;
|
|
125
126
|
selectedCamera?: CopilotCamera;
|
|
@@ -128,8 +129,8 @@ export type CopilotMessageContext = {
|
|
|
128
129
|
export type CopilotMessageStep = {
|
|
129
130
|
args: string[];
|
|
130
131
|
depth: number;
|
|
131
|
-
id
|
|
132
|
-
message_id
|
|
132
|
+
id?: number;
|
|
133
|
+
message_id?: number;
|
|
133
134
|
step: CopilotStepId;
|
|
134
135
|
timestamp: string;
|
|
135
136
|
};
|
|
@@ -153,3 +154,4 @@ export declare enum CopilotMissingFieldType {
|
|
|
153
154
|
String = "string",
|
|
154
155
|
Number = "number"
|
|
155
156
|
}
|
|
157
|
+
export type CopilotCompletedFields = Record<string, unknown>;
|
|
@@ -1,11 +1,21 @@
|
|
|
1
|
-
import { type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision } from "@/types";
|
|
1
|
+
import { type BoundingBox, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision } from "@/types";
|
|
2
2
|
export type DetectionsFilters = {
|
|
3
3
|
cameraExid: CameraExid;
|
|
4
4
|
fromDate: string | Date;
|
|
5
5
|
toDate: string | Date;
|
|
6
6
|
labels: DetectionLabel | DetectionLabel[];
|
|
7
|
+
trackId?: number;
|
|
8
|
+
};
|
|
9
|
+
export type BBox = number[];
|
|
10
|
+
export type SelectedObjectPath = {
|
|
11
|
+
label: string;
|
|
12
|
+
trackId: string;
|
|
13
|
+
paths: Array<{
|
|
14
|
+
timestamp: number;
|
|
15
|
+
center: [number, number];
|
|
16
|
+
bbox: BBox;
|
|
17
|
+
}>;
|
|
7
18
|
};
|
|
8
|
-
export type BBox = [number, number, number, number];
|
|
9
19
|
export type Detection = {
|
|
10
20
|
bbox: BBox;
|
|
11
21
|
timestamp: string | Date;
|
|
@@ -22,9 +32,12 @@ export type SegmentsByLabel = Record<SegmentLabel, Segment[]>;
|
|
|
22
32
|
export type SegmentPolygonCoords = number[][];
|
|
23
33
|
export type Segment = {
|
|
24
34
|
id: number;
|
|
25
|
-
mask
|
|
35
|
+
mask?: SegmentPolygonCoords;
|
|
26
36
|
label: string;
|
|
27
37
|
timestamp: string | Date;
|
|
38
|
+
cameraExid?: CameraExid;
|
|
39
|
+
bbox?: BoundingBox;
|
|
40
|
+
area?: number;
|
|
28
41
|
};
|
|
29
42
|
export type SegmentSimilarityResult = {
|
|
30
43
|
distance: number;
|
|
@@ -37,17 +50,18 @@ export type SegmentsSimilaritySearchResult = {
|
|
|
37
50
|
};
|
|
38
51
|
export type SegmentsSimilaritySearchParams = {
|
|
39
52
|
cameraExid: CameraExid;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
areaTolerance: number;
|
|
53
|
+
referenceId: string;
|
|
54
|
+
iouThreshold?: number;
|
|
55
|
+
fromDate: string;
|
|
56
|
+
toDate: string;
|
|
45
57
|
};
|
|
46
58
|
export type CountsParams = {
|
|
47
59
|
cameraExid: CameraExid;
|
|
48
60
|
fromDate: string | Date;
|
|
49
61
|
toDate: string | Date;
|
|
50
|
-
precision: TimelinePrecision;
|
|
62
|
+
precision: keyof typeof TimelinePrecision;
|
|
63
|
+
trackId: number;
|
|
64
|
+
labels: DetectionLabel | DetectionLabel[];
|
|
51
65
|
};
|
|
52
66
|
export type CountByPeriod = {
|
|
53
67
|
date: string | Date;
|
|
@@ -40,7 +40,56 @@ export declare enum DetectionLabel {
|
|
|
40
40
|
TruckMixer = "truck-mixer",
|
|
41
41
|
TruckMountedMobileCrane = "truck-mounted-mobile-crane",
|
|
42
42
|
Unknown = "unknown",
|
|
43
|
-
Worker = "worker"
|
|
43
|
+
Worker = "worker",
|
|
44
|
+
Rubble = "rubble",
|
|
45
|
+
Puddle = "puddle",
|
|
46
|
+
DirtGravelCementPile = "dirt_gravel_cement_pile",
|
|
47
|
+
DetachedExcavatorBucket = "detached_excavator_bucket",
|
|
48
|
+
IntermediateBulkContainer = "intermediate_bulk_container",
|
|
49
|
+
WoodenPallet = "wooden_pallet",
|
|
50
|
+
ShippingContainer = "shipping_container",
|
|
51
|
+
AirCompressor = "air_compressor",
|
|
52
|
+
DryMortarSilo = "dry_mortar_silo",
|
|
53
|
+
Fence = "fence",
|
|
54
|
+
Brick = "brick",
|
|
55
|
+
Barrel = "barrel",
|
|
56
|
+
Cardboard = "cardboard",
|
|
57
|
+
CardboardBox = "cardboard_box",
|
|
58
|
+
CementBag = "cement_bag",
|
|
59
|
+
ConcreteBlock = "concrete_block",
|
|
60
|
+
ConcretePipe = "concrete_pipe",
|
|
61
|
+
ConcreteSlab = "concrete_slab",
|
|
62
|
+
PlasticWrap = "plastic_wrap",
|
|
63
|
+
ContainerOffice = "container_office",
|
|
64
|
+
ElectricalPole = "electrical_pole",
|
|
65
|
+
ElectricalBox = "electrical_box",
|
|
66
|
+
FireHydrant = "fire_hydrant",
|
|
67
|
+
HoseReel = "hose_reel",
|
|
68
|
+
Ladder = "ladder",
|
|
69
|
+
MetalBeam = "metal_beam",
|
|
70
|
+
MetalPipe = "metal_pipe",
|
|
71
|
+
Pallet = "pallet",
|
|
72
|
+
Pillar = "pillar",
|
|
73
|
+
PlasticBin = "plastic_bin",
|
|
74
|
+
PlasticBucket = "plastic_bucket",
|
|
75
|
+
PlasticPipe = "plastic_pipe",
|
|
76
|
+
PublicToilet = "public_toilet",
|
|
77
|
+
Sign = "sign",
|
|
78
|
+
SiteToolbox = "site_toolbox",
|
|
79
|
+
StreetSink = "street_sink",
|
|
80
|
+
TrafficBarrier = "traffic_barrier",
|
|
81
|
+
TrafficCone = "traffic_cone",
|
|
82
|
+
Wall = "wall",
|
|
83
|
+
WasteContainer = "waste_container",
|
|
84
|
+
WaterStorageTank = "water_storage_tank",
|
|
85
|
+
Wheelbarrow = "wheelbarrow",
|
|
86
|
+
Window = "window",
|
|
87
|
+
WoodPlank = "wood_plank",
|
|
88
|
+
CableReel = "cable_reel",
|
|
89
|
+
AirConditioningSystem = "air_conditioning_system",
|
|
90
|
+
WoodenBox = "wooden_box",
|
|
91
|
+
PlasticBag = "plastic_bag",
|
|
92
|
+
MaterialStack = "material_stack"
|
|
44
93
|
}
|
|
45
94
|
export declare enum SegmentLabel {
|
|
46
95
|
AirCompressor = "air_compressor",
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { PaginationParams } from "@/types";
|
|
2
|
+
export declare enum HddFormat {
|
|
3
|
+
ExFat = "ExFAT",
|
|
4
|
+
HikFs = "HikFS"
|
|
5
|
+
}
|
|
6
|
+
export declare enum HddType {
|
|
7
|
+
Magnetic35 = "3.5\" Magnetic",
|
|
8
|
+
Magnetic25 = "2.5\" Magnetic",
|
|
9
|
+
Ssd25 = "2.5\" SSD"
|
|
10
|
+
}
|
|
11
|
+
export declare enum HddState {
|
|
12
|
+
Blank = "Blank",
|
|
13
|
+
InUse = "In Use",
|
|
14
|
+
ColdStorage = "Cold Storage"
|
|
15
|
+
}
|
|
16
|
+
export declare enum WarehouseLocationIndex {
|
|
17
|
+
IEWarehouse = 1,
|
|
18
|
+
Deployed = 2,
|
|
19
|
+
CustomerStorage = 3,
|
|
20
|
+
USWarehouse = 4,
|
|
21
|
+
AUWarehouse = 5,
|
|
22
|
+
UKWarehouse = 6
|
|
23
|
+
}
|
|
24
|
+
export declare enum WarehouseLocation {
|
|
25
|
+
IEWarehouse = "IE Warehouse",
|
|
26
|
+
Deployed = "Deployed",
|
|
27
|
+
CustomerStorage = "Customer Storage",
|
|
28
|
+
USWarehouse = "US Warehouse",
|
|
29
|
+
AUWarehouse = "AU Warehouse",
|
|
30
|
+
UKWarehouse = "UK Warehouse"
|
|
31
|
+
}
|
|
32
|
+
export declare enum HddSize {
|
|
33
|
+
TwoTB = "2 TB",
|
|
34
|
+
FourTB = "4 TB",
|
|
35
|
+
FiveTB = "5 TB",
|
|
36
|
+
SixTB = "6 TB",
|
|
37
|
+
EightTB = "8 TB",
|
|
38
|
+
TenTB = "10 TB"
|
|
39
|
+
}
|
|
40
|
+
export type FootageCreateUpdatePayload = {
|
|
41
|
+
cameraId: string;
|
|
42
|
+
startDate: string;
|
|
43
|
+
endDate: string;
|
|
44
|
+
};
|
|
45
|
+
export type HDDCreateUpdatePayload = {
|
|
46
|
+
size: string;
|
|
47
|
+
type: string;
|
|
48
|
+
format: string;
|
|
49
|
+
locationId: string;
|
|
50
|
+
serialNumber: string;
|
|
51
|
+
hddStatus: string;
|
|
52
|
+
shelfBlock: string;
|
|
53
|
+
};
|
|
54
|
+
export type HDDsQueryParams = PaginationParams & {
|
|
55
|
+
id: number;
|
|
56
|
+
location: string;
|
|
57
|
+
serialNumber: string;
|
|
58
|
+
shelfBlock: string;
|
|
59
|
+
format: string;
|
|
60
|
+
size: string;
|
|
61
|
+
type: string;
|
|
62
|
+
hddStatus: string;
|
|
63
|
+
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export * from "./devices";
|
|
|
13
13
|
export * from "./drone";
|
|
14
14
|
export * from "./errors";
|
|
15
15
|
export * from "./gateReport";
|
|
16
|
+
export * from "./hdd";
|
|
16
17
|
export * from "./ingest";
|
|
17
18
|
export * from "./map";
|
|
18
19
|
export * from "./connector";
|
|
@@ -27,7 +28,7 @@ export * from "./routeParams";
|
|
|
27
28
|
export * from "./router";
|
|
28
29
|
export * from "./shares";
|
|
29
30
|
export * from "./sim";
|
|
30
|
-
export * from "./
|
|
31
|
+
export * from "./planner";
|
|
31
32
|
export * from "./storageServers";
|
|
32
33
|
export * from "./streaming";
|
|
33
34
|
export * from "./time";
|
|
@@ -49,3 +50,6 @@ export * from "./siteAnalytics";
|
|
|
49
50
|
export * from "./widget";
|
|
50
51
|
export * from "./countries";
|
|
51
52
|
export * from "./automation";
|
|
53
|
+
export * from "./coolify";
|
|
54
|
+
export * from "./tag";
|
|
55
|
+
export * from "./xweather";
|
package/dist/types/kit.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { CountryCode, CountryId, DateType, Nvr, PaginationParams, PowerType, Project, Region, Router, Schedule } from "@/types";
|
|
1
|
+
import { CountryCode, CountryId, DateType, Nvr, PaginationParams, PowerType, Project, Region, Router, Schedule, Tag } from "@/types";
|
|
2
2
|
export type Kit = {
|
|
3
|
+
alarms: KitAlarm[];
|
|
3
4
|
countryCode: CountryCode;
|
|
4
5
|
countryId: CountryId;
|
|
5
6
|
countryName: string;
|
|
@@ -14,18 +15,39 @@ export type Kit = {
|
|
|
14
15
|
router: Partial<Router>;
|
|
15
16
|
serial: string;
|
|
16
17
|
status: KitStatus;
|
|
18
|
+
powerSchedule: Schedule;
|
|
19
|
+
tags: Tag[];
|
|
17
20
|
};
|
|
18
21
|
export declare enum KitStatus {
|
|
19
22
|
New = "new",
|
|
20
23
|
Active = "active",
|
|
21
24
|
Deployed = "deployed",
|
|
22
|
-
OfflineScheduled = "offline_scheduled",
|
|
23
25
|
Decommissioned = "decommissioned"
|
|
24
26
|
}
|
|
25
27
|
export declare enum KitAlarm {
|
|
26
28
|
NvrOffline = "nvr_offline",
|
|
27
29
|
UnknownCamera = "unknown_camera",
|
|
28
|
-
NotRecordingCamera = "not_recording_camera"
|
|
30
|
+
NotRecordingCamera = "not_recording_camera",
|
|
31
|
+
OfflineScheduled = "offline_scheduled",
|
|
32
|
+
FullSD = "full_sd",
|
|
33
|
+
FullStorage = "full_storage",
|
|
34
|
+
HddUnmounted = "hdd_unmounted",
|
|
35
|
+
NoHdd = "no_hdd",
|
|
36
|
+
MissingRouterInfo = "missing_router_info",
|
|
37
|
+
PowerLost = "ac_failure",
|
|
38
|
+
UpsLowBattery = "low_battery"
|
|
39
|
+
}
|
|
40
|
+
export declare enum KitMetricId {
|
|
41
|
+
SolarCharger = "solar_charger",
|
|
42
|
+
PanelPower = "panel_power"
|
|
43
|
+
}
|
|
44
|
+
export declare enum KitMetricPeriod {
|
|
45
|
+
Last15Minutes = "now-15m",
|
|
46
|
+
Last1Hour = "now-1h",
|
|
47
|
+
Last24Hours = "now-24h",
|
|
48
|
+
Last7Days = "now-7d",
|
|
49
|
+
Last30Days = "now-30d",
|
|
50
|
+
Last90Days = "now-90d"
|
|
29
51
|
}
|
|
30
52
|
export declare enum GrafanaMetricId {
|
|
31
53
|
SbcCpuLoad = "SbcCpuLoad",
|
|
@@ -73,7 +95,7 @@ export declare enum GrafanaMetricId {
|
|
|
73
95
|
ExNvrMemoryUsage = "ExNvrMemoryUsage",
|
|
74
96
|
ExNvrLogs = "ExNvrLogs"
|
|
75
97
|
}
|
|
76
|
-
export declare enum
|
|
98
|
+
export declare enum KitChartType {
|
|
77
99
|
Stat = "stat",
|
|
78
100
|
Gauge = "gauge",
|
|
79
101
|
Graph = "graph",
|
|
@@ -100,7 +122,7 @@ export type GrafanaPanel = {
|
|
|
100
122
|
name: keyof GrafanaMetricId;
|
|
101
123
|
title: string;
|
|
102
124
|
description: string;
|
|
103
|
-
type:
|
|
125
|
+
type: KitChartType;
|
|
104
126
|
datasource: GrafanaDataSource;
|
|
105
127
|
targets: GrafanaTarget[];
|
|
106
128
|
maxDataPoints?: number;
|
|
@@ -197,21 +219,32 @@ export type GrafanaFrame = {
|
|
|
197
219
|
nanos?: Array<number[] | null>;
|
|
198
220
|
};
|
|
199
221
|
};
|
|
222
|
+
export type KitMetricData = {
|
|
223
|
+
type: KitChartType;
|
|
224
|
+
chartProps?: Record<string, unknown>;
|
|
225
|
+
};
|
|
200
226
|
export type GrafanaQueryResult = {
|
|
201
227
|
status: number;
|
|
202
228
|
frames: GrafanaFrame[];
|
|
203
229
|
};
|
|
204
|
-
export type
|
|
230
|
+
export type GrafanaMetricData = KitMetricData & {
|
|
205
231
|
results: {
|
|
206
232
|
[key: string]: GrafanaQueryResult;
|
|
207
233
|
};
|
|
208
|
-
type: GrafanaChartType;
|
|
209
234
|
};
|
|
210
|
-
export type
|
|
235
|
+
export type EvercamMetricData = KitMetricData & {
|
|
236
|
+
stats: EvercamStats[];
|
|
237
|
+
};
|
|
238
|
+
export type GrafanaKitMetrics = Record<keyof typeof GrafanaMetricId, GrafanaMetricData>;
|
|
239
|
+
export type EvercamStats = {
|
|
240
|
+
[k: string]: number | string;
|
|
241
|
+
timestamp: string;
|
|
242
|
+
};
|
|
211
243
|
export type KitQueryParams = PaginationParams & {
|
|
212
244
|
name: string;
|
|
213
245
|
serial: string;
|
|
214
246
|
status: KitStatus;
|
|
247
|
+
tagId: number | number[];
|
|
215
248
|
};
|
|
216
249
|
export type AdminKit = {
|
|
217
250
|
id: number;
|
package/dist/types/nvr.d.ts
CHANGED
|
@@ -3,7 +3,12 @@ export declare enum EMapTypes {
|
|
|
3
3
|
Satellite = "Satellite",
|
|
4
4
|
Street = "Street",
|
|
5
5
|
GoogleSatellite = "hybrid",
|
|
6
|
-
GoogleStreet = "roadmap"
|
|
6
|
+
GoogleStreet = "roadmap",
|
|
7
|
+
GoogleTerrain = "terrain"
|
|
8
|
+
}
|
|
9
|
+
export declare enum EMarkers {
|
|
10
|
+
CameraMarker = "cameraMarker",
|
|
11
|
+
ThreeSixtyMarker = "threeSixtyMarkers"
|
|
7
12
|
}
|
|
8
13
|
export declare enum EPageType {
|
|
9
14
|
List = "list",
|