@evercam/api 1.0.0-6ab11f2f5 → 1.0.0-6b7b296b5
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/dist/api/api/3dFirebaseApi.d.ts +1 -0
- package/dist/api/api/adminApi.d.ts +45 -57
- package/dist/api/api/aiApi.d.ts +54 -51
- package/dist/api/api/authzApi.d.ts +27 -17
- package/dist/api/api/client/axios.d.ts +1 -1
- package/dist/api/api/client/swr/Swr.d.ts +1 -1
- package/dist/api/api/evercamApi.d.ts +67 -93
- package/dist/api/api/evercamLabsApi.d.ts +3 -3
- package/dist/api/api/exNvrApi.d.ts +1 -1
- package/dist/api/api/ingestApi.d.ts +96 -45
- package/dist/api/api/ptzApi.d.ts +9 -4
- package/dist/api/api/videoWallApi.d.ts +2 -2
- package/dist/api/api/weatherApi.d.ts +2 -2
- package/dist/api/types/360.d.ts +4 -2
- package/dist/api/types/aconex.d.ts +9 -9
- package/dist/api/types/admin.d.ts +51 -0
- package/dist/api/types/analytics.d.ts +30 -10
- package/dist/api/types/anpr.d.ts +19 -2
- package/dist/api/types/auditLogs.d.ts +1 -1
- package/dist/api/types/authz.d.ts +44 -6
- package/dist/api/types/autodesk.d.ts +7 -7
- package/dist/api/types/automation.d.ts +37 -3
- package/dist/api/types/axios.d.ts +10 -5
- package/dist/api/types/bim.d.ts +11 -5
- package/dist/api/types/camera.d.ts +80 -73
- package/dist/api/types/comments.d.ts +4 -8
- package/dist/api/types/company.d.ts +42 -1
- package/dist/api/types/compare.d.ts +20 -5
- package/dist/api/types/connector.d.ts +2 -5
- package/dist/api/types/coolify.d.ts +18 -2
- package/dist/api/types/copilot.d.ts +11 -6
- package/dist/api/types/detections.d.ts +17 -8
- package/dist/api/types/gateReport.d.ts +43 -50
- package/dist/api/types/hdd.d.ts +26 -1
- package/dist/api/types/index.d.ts +3 -0
- package/dist/api/types/ingest.d.ts +85 -2
- package/dist/api/types/kit.d.ts +14 -7
- package/dist/api/types/media.d.ts +2 -1
- package/dist/api/types/notification.d.ts +32 -2
- package/dist/api/types/posthog.d.ts +15 -0
- package/dist/api/types/procore.d.ts +13 -6
- package/dist/api/types/progressPhoto.d.ts +6 -2
- package/dist/api/types/project.d.ts +94 -20
- package/dist/api/types/recording.d.ts +2 -3
- package/dist/api/types/recycleBin.d.ts +1 -1
- package/dist/api/types/router.d.ts +1 -1
- package/dist/api/types/shared.d.ts +11 -4
- package/dist/api/types/shares.d.ts +6 -144
- package/dist/api/types/sim.d.ts +6 -6
- package/dist/api/types/siteAnalytics.d.ts +79 -39
- package/dist/api/types/smartSeach.d.ts +5 -0
- package/dist/api/types/snapshots.d.ts +1 -1
- package/dist/api/types/storyblok.d.ts +40 -0
- package/dist/api/types/streaming.d.ts +3 -3
- package/dist/api/types/tag.d.ts +1 -1
- package/dist/api/types/time.d.ts +0 -18
- package/dist/api/types/timelapse.d.ts +3 -4
- package/dist/api/types/user.d.ts +101 -30
- package/dist/api/types/videoWall.d.ts +21 -21
- package/dist/api/types/weather.d.ts +75 -11
- package/dist/api/types/widget.d.ts +71 -12
- package/dist/api/types/xweather.d.ts +4 -4
- package/dist/index.js +818 -803
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/shared/types/components.d.ts +80 -9
- package/dist/shared/types/imagePlayer.d.ts +1 -1
- package/dist/shared/types/timeline.d.ts +2 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CameraExid, DateType, ProjectExid, PaginationParams } from "
|
|
1
|
+
import { CameraExid, DateType, ProjectExid, PaginationParams } from "@evercam/api/types";
|
|
2
2
|
export declare enum CommentsScope {
|
|
3
3
|
Recordings = "recordings",
|
|
4
4
|
ThreeSixty = "360",
|
|
@@ -10,12 +10,7 @@ export declare enum CommentsLabel {
|
|
|
10
10
|
Restricted = "Restricted"
|
|
11
11
|
}
|
|
12
12
|
export type CommentsRequestPayload = {
|
|
13
|
-
cameraExid: CameraExid;
|
|
14
|
-
fromDate: string;
|
|
15
|
-
toDate: string;
|
|
16
13
|
scope: CommentsScope;
|
|
17
|
-
page?: number;
|
|
18
|
-
limit?: number;
|
|
19
14
|
};
|
|
20
15
|
export type CommentsListRequestPayload = PaginationParams & {
|
|
21
16
|
projectExid?: ProjectExid;
|
|
@@ -44,6 +39,7 @@ export type Comment = {
|
|
|
44
39
|
context?: Record<string, unknown>;
|
|
45
40
|
canDelete?: boolean;
|
|
46
41
|
archivedAt?: string;
|
|
42
|
+
label?: CommentsLabel;
|
|
47
43
|
};
|
|
48
44
|
export type CommentCreationRequestPayload = {
|
|
49
45
|
fromDate?: DateType;
|
|
@@ -53,7 +49,7 @@ export type CommentCreationRequestPayload = {
|
|
|
53
49
|
projectExid: ProjectExid;
|
|
54
50
|
cameraExid?: CameraExid;
|
|
55
51
|
content: string;
|
|
56
|
-
position2d?: [
|
|
57
|
-
position3d?: [
|
|
52
|
+
position2d?: number[];
|
|
53
|
+
position3d?: number[];
|
|
58
54
|
context?: Record<string, unknown>;
|
|
59
55
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { DateType, PaginationParams } from "
|
|
1
|
+
import type { DateType, PaginationParams } from "@evercam/api/types";
|
|
2
2
|
export type CompanyUser = {
|
|
3
3
|
id: number;
|
|
4
4
|
fullname: string;
|
|
@@ -7,12 +7,28 @@ export type CompanyUser = {
|
|
|
7
7
|
lastSeenAt: string;
|
|
8
8
|
active: boolean;
|
|
9
9
|
};
|
|
10
|
+
export type AdminCompanyUser = {
|
|
11
|
+
id: number;
|
|
12
|
+
email: string;
|
|
13
|
+
fullname: string;
|
|
14
|
+
lastLoginAt: string;
|
|
15
|
+
};
|
|
10
16
|
export type CompanyProject = {
|
|
11
17
|
exid: string;
|
|
12
18
|
name: string;
|
|
13
19
|
status: string;
|
|
14
20
|
startedAt: DateType;
|
|
15
21
|
};
|
|
22
|
+
export type AdminCompanyProject = {
|
|
23
|
+
id: number;
|
|
24
|
+
name: string;
|
|
25
|
+
status: string;
|
|
26
|
+
insertedAt: DateType;
|
|
27
|
+
exid: string;
|
|
28
|
+
endDate: string | null;
|
|
29
|
+
startDate: string | null;
|
|
30
|
+
archiveTier: string | null;
|
|
31
|
+
};
|
|
16
32
|
export type CompanyKit = {
|
|
17
33
|
id: number;
|
|
18
34
|
name: string;
|
|
@@ -55,6 +71,31 @@ export type Company = {
|
|
|
55
71
|
activeUsers: number;
|
|
56
72
|
insertedAt: DateType;
|
|
57
73
|
};
|
|
74
|
+
export type CompanySummary = {
|
|
75
|
+
id: number;
|
|
76
|
+
name: string;
|
|
77
|
+
users: number;
|
|
78
|
+
insertedAt: DateType;
|
|
79
|
+
exid: string;
|
|
80
|
+
sessions: number;
|
|
81
|
+
projects: number;
|
|
82
|
+
zohoId: string;
|
|
83
|
+
domains: string;
|
|
84
|
+
linkedinUrl: string | null;
|
|
85
|
+
ssoProviders: string[];
|
|
86
|
+
cameras: number;
|
|
87
|
+
kits: number;
|
|
88
|
+
};
|
|
89
|
+
export type CompanyCameraSummary = {
|
|
90
|
+
id: number;
|
|
91
|
+
name: string;
|
|
92
|
+
status: string;
|
|
93
|
+
exid: string;
|
|
94
|
+
projectExid: string | null;
|
|
95
|
+
ownerEmail: string;
|
|
96
|
+
ownerFullname: string;
|
|
97
|
+
usersCount: number;
|
|
98
|
+
};
|
|
58
99
|
export type CompanyQueryParams = PaginationParams & {
|
|
59
100
|
name: string;
|
|
60
101
|
exid: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DateType, PaginationParams } from "
|
|
1
|
+
import { DateType, PaginationParams } from "@evercam/api/types";
|
|
2
2
|
export type Compare = {
|
|
3
3
|
cameraExid: string;
|
|
4
4
|
createdAt: string;
|
|
@@ -28,14 +28,29 @@ export declare enum CompareStatus {
|
|
|
28
28
|
Failed = 2
|
|
29
29
|
}
|
|
30
30
|
export type CompareRequestPayload = {
|
|
31
|
+
compareExid: string;
|
|
31
32
|
name: string;
|
|
32
|
-
afterDate: string;
|
|
33
33
|
beforeDate: string;
|
|
34
|
+
afterDate: string;
|
|
35
|
+
cameraExid: string;
|
|
34
36
|
embed: string;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
bim?: boolean;
|
|
38
|
+
custom?: boolean;
|
|
39
|
+
options?: {
|
|
40
|
+
type: string;
|
|
41
|
+
beforeSnap: string;
|
|
42
|
+
afterSnap: string;
|
|
43
|
+
};
|
|
37
44
|
createAnimation: boolean;
|
|
38
|
-
evercamWatermark
|
|
45
|
+
evercamWatermark: boolean;
|
|
46
|
+
logo?: CompareLogoPosition;
|
|
47
|
+
};
|
|
48
|
+
export type CompareLogoPosition = {
|
|
49
|
+
id?: number;
|
|
50
|
+
width: number;
|
|
51
|
+
height: number;
|
|
52
|
+
x: number;
|
|
53
|
+
y: number;
|
|
39
54
|
};
|
|
40
55
|
export type AdminCompare = {
|
|
41
56
|
id: number;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type ConnectorDetail = {
|
|
2
2
|
login: string;
|
|
3
3
|
hostname: string;
|
|
4
|
+
provider: string;
|
|
4
5
|
};
|
|
5
6
|
export declare enum Connector {
|
|
6
7
|
Aconex = "aconex",
|
|
@@ -14,8 +15,4 @@ export declare enum ProcoreType {
|
|
|
14
15
|
Observations = "observations",
|
|
15
16
|
Photos = "photos"
|
|
16
17
|
}
|
|
17
|
-
export type ConnectorResponsePayload = Array<
|
|
18
|
-
hostname: string;
|
|
19
|
-
login: string;
|
|
20
|
-
provider: string;
|
|
21
|
-
}>;
|
|
18
|
+
export type ConnectorResponsePayload = Array<ConnectorDetail>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { DateType } from "
|
|
1
|
+
import { CameraExid, DateType, ProjectExid } from "@evercam/api/types";
|
|
2
2
|
export type CreateCoolifyAppRequestPayload = {
|
|
3
|
-
cameraExid: string;
|
|
4
3
|
startDate: DateType;
|
|
5
4
|
modelVersion: string;
|
|
6
5
|
snapshotRequestTimeout: string | number;
|
|
@@ -18,3 +17,20 @@ export type SaveCoolifyAppRequestPayload = {
|
|
|
18
17
|
serverUuid: string;
|
|
19
18
|
useThirdParty: boolean;
|
|
20
19
|
};
|
|
20
|
+
export type CoolifyApp = {
|
|
21
|
+
id: number;
|
|
22
|
+
projectExid: ProjectExid;
|
|
23
|
+
anprCameraExid: CameraExid;
|
|
24
|
+
contextCameraExid: CameraExid;
|
|
25
|
+
modelVersion: string;
|
|
26
|
+
isActive: boolean;
|
|
27
|
+
insertedAt: DateType;
|
|
28
|
+
updatedAt: DateType;
|
|
29
|
+
};
|
|
30
|
+
export type RegisterCoolifyAppResponsePayload = {
|
|
31
|
+
created: boolean;
|
|
32
|
+
id: number;
|
|
33
|
+
data: CoolifyApp;
|
|
34
|
+
count: number;
|
|
35
|
+
message: string;
|
|
36
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AnalyticsEventPageId, CameraExid, CameraFeatureFlag, CameraStatus, ProjectExid, ProjectFeatureFlag, ProjectStatus } from "
|
|
1
|
+
import type { AnalyticsEventPageId, CameraExid, CameraFeatureFlag, CameraStatus, ProjectExid, ProjectFeatureFlag, ProjectStatus } from "@evercam/api/types";
|
|
2
2
|
export declare enum CopilotMessageAuthor {
|
|
3
3
|
Copilot = "copilot",
|
|
4
4
|
User = "user",
|
|
@@ -26,7 +26,9 @@ export declare enum CopilotStepId {
|
|
|
26
26
|
CompletedFieldsResponse = "completed_fields_response",
|
|
27
27
|
SendRawToolCallResponse = "send_raw_tool_call_response",
|
|
28
28
|
SubmitToolOutputsToLLM = "submit_tool_outputs_to_llm",
|
|
29
|
-
CancelCall = "cancel_call"
|
|
29
|
+
CancelCall = "cancel_call",
|
|
30
|
+
RequestAgentCall = "request_agent_call",
|
|
31
|
+
ExecAgentCall = "exec_agent_call"
|
|
30
32
|
}
|
|
31
33
|
export declare enum CopilotMissingFieldsLabels {
|
|
32
34
|
ProjectExid = "Project",
|
|
@@ -34,10 +36,10 @@ export declare enum CopilotMissingFieldsLabels {
|
|
|
34
36
|
FromDate = "Start date",
|
|
35
37
|
ToDate = "End date"
|
|
36
38
|
}
|
|
37
|
-
export type CopilotMissingField<T =
|
|
39
|
+
export type CopilotMissingField<T = unknown> = {
|
|
38
40
|
name: string;
|
|
39
41
|
label: string;
|
|
40
|
-
value:
|
|
42
|
+
value: unknown;
|
|
41
43
|
type: string;
|
|
42
44
|
toolId: string;
|
|
43
45
|
error?: T;
|
|
@@ -83,7 +85,8 @@ export declare enum CopilotSuggestion {
|
|
|
83
85
|
Weather = "weather",
|
|
84
86
|
Clip = "clip",
|
|
85
87
|
Timelapse = "timelapse",
|
|
86
|
-
Chart = "chart"
|
|
88
|
+
Chart = "chart",
|
|
89
|
+
SmartSearch = "smart_search"
|
|
87
90
|
}
|
|
88
91
|
export declare enum CopilotChatProvider {
|
|
89
92
|
Gemini = "gemini",
|
|
@@ -101,12 +104,14 @@ export declare enum CopilotToolId {
|
|
|
101
104
|
NavigateToPage = "navigateToPage",
|
|
102
105
|
CreateTimelapse = "createTimelapse",
|
|
103
106
|
RequestMissingFields = "requestMissingFields",
|
|
104
|
-
RenderCharts = "renderCharts"
|
|
107
|
+
RenderCharts = "renderCharts",
|
|
108
|
+
SmartSearch = "smartSearch"
|
|
105
109
|
}
|
|
106
110
|
export type CopilotSystemToolCallResponse<I = unknown, O = unknown> = {
|
|
107
111
|
toolId?: CopilotToolId;
|
|
108
112
|
input?: I;
|
|
109
113
|
output?: O;
|
|
114
|
+
isAgent?: boolean;
|
|
110
115
|
};
|
|
111
116
|
export type CopilotCamera = {
|
|
112
117
|
name: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type BoundingBox, type ProjectExid, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision,
|
|
1
|
+
import { type BoundingBox, type ProjectExid, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision, CameraDateRangeFilter } from "@evercam/api/types";
|
|
2
2
|
export type BaseDetectionsFilters = {
|
|
3
3
|
fromDate: string | Date;
|
|
4
4
|
toDate: string | Date;
|
|
@@ -31,7 +31,8 @@ export type Detection = {
|
|
|
31
31
|
};
|
|
32
32
|
export type DetectionsGroup = {
|
|
33
33
|
timestamp: DateType;
|
|
34
|
-
|
|
34
|
+
cameraExid: CameraExid;
|
|
35
|
+
trackings: Detection[];
|
|
35
36
|
};
|
|
36
37
|
export type DetectionsCounts = {
|
|
37
38
|
timestamps: number;
|
|
@@ -74,18 +75,26 @@ export type SegmentSimilarityResult = {
|
|
|
74
75
|
};
|
|
75
76
|
export type SegmentsSimilaritySearchParams = {
|
|
76
77
|
cameraExid: CameraExid;
|
|
77
|
-
referenceId: string;
|
|
78
|
+
referenceId: string | number;
|
|
78
79
|
iouThreshold?: number;
|
|
79
80
|
fromDate: string;
|
|
80
81
|
toDate: string;
|
|
81
82
|
};
|
|
82
|
-
export type BaseCountsParams =
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
83
|
+
export type BaseCountsParams = {
|
|
84
|
+
fromDate?: string;
|
|
85
|
+
toDate?: string;
|
|
86
|
+
precision?: TimelinePrecision;
|
|
87
|
+
trackId?: number;
|
|
88
|
+
labels?: DetectionLabel | DetectionLabel[];
|
|
86
89
|
};
|
|
87
|
-
export type DetectionsCountsParams =
|
|
90
|
+
export type DetectionsCountsParams = BaseCountsParams & {
|
|
88
91
|
cameraExids?: CameraExid[];
|
|
92
|
+
projectExid?: ProjectExid;
|
|
93
|
+
modelId?: DetectionModel;
|
|
94
|
+
labels?: Label[];
|
|
95
|
+
excludeLabels?: Label[];
|
|
96
|
+
confidenceThreshold?: number;
|
|
97
|
+
mergedClasses?: string[];
|
|
89
98
|
};
|
|
90
99
|
export type SegmentsCountsParams = CameraDateRangeFilter & BaseCountsParams;
|
|
91
100
|
export type DetectionsPresenceByLabel = Record<DetectionLabel, TimelineDateInterval[]>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AnprDirection,
|
|
1
|
+
import { AnprDirection, AnprEvent, CameraExid, DateType, PaginatedItems, PaginationParams, ProjectExid, RoiShapeType, Timestamp } from "@evercam/api/types";
|
|
2
2
|
export declare enum GateReportDetectionType {
|
|
3
3
|
Auto = "auto",
|
|
4
4
|
Manual = "manual",
|
|
@@ -147,8 +147,8 @@ export declare enum GateReportVehicleType {
|
|
|
147
147
|
Unknown = "unknown"
|
|
148
148
|
}
|
|
149
149
|
export type GateReportVehicleTypeItem = {
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
label: string;
|
|
151
|
+
value: GateReportVehicleType;
|
|
152
152
|
};
|
|
153
153
|
export type GateReportEvent = {
|
|
154
154
|
id: number;
|
|
@@ -174,10 +174,10 @@ export type GateReportLeftEvent = GateReportEvent & {
|
|
|
174
174
|
};
|
|
175
175
|
export type GateReportVerifiedDay = {
|
|
176
176
|
id: number;
|
|
177
|
-
day:
|
|
177
|
+
day: string;
|
|
178
178
|
isMatched: boolean;
|
|
179
|
-
insertedAt:
|
|
180
|
-
updatedAt:
|
|
179
|
+
insertedAt: string;
|
|
180
|
+
updatedAt: string;
|
|
181
181
|
verifiedBy: string;
|
|
182
182
|
cameraExid: CameraExid;
|
|
183
183
|
projectExid: ProjectExid;
|
|
@@ -195,16 +195,16 @@ export type EventsCount = {
|
|
|
195
195
|
source: GateReportDataSource;
|
|
196
196
|
};
|
|
197
197
|
export type YearlyEventCount = EventsCount & {
|
|
198
|
-
year:
|
|
198
|
+
year: string;
|
|
199
199
|
};
|
|
200
200
|
export type MonthlyEventCount = EventsCount & {
|
|
201
|
-
month:
|
|
201
|
+
month: string;
|
|
202
202
|
};
|
|
203
203
|
export type DailyEventCount = EventsCount & {
|
|
204
|
-
day:
|
|
204
|
+
day: string;
|
|
205
205
|
};
|
|
206
206
|
export type HourlyEventCount = {
|
|
207
|
-
hour:
|
|
207
|
+
hour: string;
|
|
208
208
|
count: number;
|
|
209
209
|
};
|
|
210
210
|
export type EventCountRequestPayload = {
|
|
@@ -223,7 +223,7 @@ export declare enum GateReportDataSource {
|
|
|
223
223
|
}
|
|
224
224
|
export type GateReportResponsePayload = {
|
|
225
225
|
source: GateReportDataSource;
|
|
226
|
-
results: PaginatedItems<
|
|
226
|
+
results: PaginatedItems<AnprEvent>;
|
|
227
227
|
};
|
|
228
228
|
export declare enum GateReportEventDirection {
|
|
229
229
|
In = "in",
|
|
@@ -233,43 +233,39 @@ export declare enum GateReportEventDirection {
|
|
|
233
233
|
export type GatReportRequestPayload = {
|
|
234
234
|
camerasExid?: CameraExid[];
|
|
235
235
|
eventType?: GateReportEventType;
|
|
236
|
-
fromDate?:
|
|
236
|
+
fromDate?: string;
|
|
237
237
|
isPublic?: boolean;
|
|
238
|
-
toDate?:
|
|
238
|
+
toDate?: string;
|
|
239
239
|
vehicleTypes?: GateReportVehicleType[];
|
|
240
240
|
} & PaginationParams;
|
|
241
241
|
export declare enum GateReportExportType {
|
|
242
242
|
Pdf = "pdf",
|
|
243
243
|
Csv = "csv"
|
|
244
244
|
}
|
|
245
|
-
export type
|
|
246
|
-
vehicleTypes: GateReportVehicleType[];
|
|
247
|
-
fileType: GateReportExportType;
|
|
248
|
-
fromDate: DateTimeSpaceSeparated;
|
|
249
|
-
toDate: DateTimeSpaceSeparated;
|
|
250
|
-
camerasExid: CameraExid[];
|
|
251
|
-
eventType: GateReportEventType;
|
|
252
|
-
};
|
|
253
|
-
export type AnprBasedGateReportExportRequestParams = {
|
|
245
|
+
export type AnprExportBaseParams = {
|
|
254
246
|
vehicleTypes?: GateReportVehicleType[];
|
|
255
247
|
fileType?: GateReportExportType;
|
|
256
|
-
fromDate?:
|
|
257
|
-
toDate?:
|
|
248
|
+
fromDate?: string;
|
|
249
|
+
toDate?: string;
|
|
258
250
|
camerasExid?: CameraExid[];
|
|
251
|
+
isPublic?: boolean;
|
|
252
|
+
};
|
|
253
|
+
export type EventsExportRequestParameters = AnprExportBaseParams & {
|
|
254
|
+
eventType: GateReportEventType;
|
|
255
|
+
};
|
|
256
|
+
export type AnprBasedGateReportExportRequestParams = AnprExportBaseParams & {
|
|
257
|
+
direction?: AnprDirection;
|
|
258
|
+
};
|
|
259
|
+
export type LegacyAnprExportParams = AnprExportBaseParams & {
|
|
259
260
|
direction?: AnprDirection;
|
|
260
261
|
};
|
|
261
262
|
type X1 = number;
|
|
262
263
|
type Y1 = number;
|
|
263
264
|
type X2 = number;
|
|
264
265
|
type Y2 = number;
|
|
265
|
-
export declare enum GateReportROIShapeType {
|
|
266
|
-
Rectangle = "rectangle",
|
|
267
|
-
Direction = "direction",
|
|
268
|
-
Line = "line"
|
|
269
|
-
}
|
|
270
266
|
export type GateReportROIShape = {
|
|
271
267
|
coordinates: [[X1, Y1], [X2, Y2]];
|
|
272
|
-
type:
|
|
268
|
+
type: RoiShapeType;
|
|
273
269
|
};
|
|
274
270
|
export type GateReportROI = {
|
|
275
271
|
cameraex?: string;
|
|
@@ -277,7 +273,7 @@ export type GateReportROI = {
|
|
|
277
273
|
directionFilter?: string;
|
|
278
274
|
id?: number;
|
|
279
275
|
insertedAt?: Timestamp;
|
|
280
|
-
|
|
276
|
+
isActive?: boolean;
|
|
281
277
|
name?: string;
|
|
282
278
|
roiType?: string;
|
|
283
279
|
updatedAt?: Timestamp;
|
|
@@ -301,14 +297,14 @@ export type VerifiedDaysQueryParams = PaginationParams & {
|
|
|
301
297
|
camerasExid: CameraExid[];
|
|
302
298
|
verifiedBy: string;
|
|
303
299
|
isMatched: boolean;
|
|
304
|
-
insertedAt:
|
|
305
|
-
updatedAt:
|
|
300
|
+
insertedAt: string[];
|
|
301
|
+
updatedAt: string[];
|
|
306
302
|
day: string;
|
|
307
303
|
};
|
|
308
304
|
export type VerifyDayUpdateRequestPayload = {
|
|
309
305
|
camerasExid: string[];
|
|
310
306
|
projectExid: string;
|
|
311
|
-
day:
|
|
307
|
+
day: string;
|
|
312
308
|
isMatched: boolean;
|
|
313
309
|
verifiedBy: string;
|
|
314
310
|
};
|
|
@@ -318,27 +314,24 @@ export type ProcessedDaysQueryParams = {
|
|
|
318
314
|
eventType: GateReportEventType;
|
|
319
315
|
};
|
|
320
316
|
export type RoisQueryParams = {
|
|
321
|
-
|
|
317
|
+
camerasExid: CameraExid[];
|
|
322
318
|
id: number;
|
|
323
319
|
name: string;
|
|
324
320
|
fromDate: string;
|
|
325
|
-
roiType:
|
|
326
|
-
|
|
321
|
+
roiType: RoiShapeType;
|
|
322
|
+
isActive: boolean;
|
|
327
323
|
directionFilter: string;
|
|
328
324
|
sort: string;
|
|
329
325
|
};
|
|
330
|
-
export type
|
|
331
|
-
id
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
note: string;
|
|
341
|
-
};
|
|
342
|
-
createdBy: string;
|
|
326
|
+
export type GateReportRoiRequestPayload = {
|
|
327
|
+
id: number;
|
|
328
|
+
cameraExid: string;
|
|
329
|
+
name: string;
|
|
330
|
+
roiType: string;
|
|
331
|
+
isActive: true;
|
|
332
|
+
fromDate: string;
|
|
333
|
+
shapes: GateReportROIShape[];
|
|
334
|
+
directionFilter: string;
|
|
335
|
+
note: string;
|
|
343
336
|
};
|
|
344
337
|
export {};
|
package/dist/api/types/hdd.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PaginationParams } from "
|
|
1
|
+
import { PaginationParams } from "@evercam/api/types";
|
|
2
2
|
export declare enum HddFormat {
|
|
3
3
|
ExFat = "ExFAT",
|
|
4
4
|
HikFs = "HikFS"
|
|
@@ -61,3 +61,28 @@ export type HDDsQueryParams = PaginationParams & {
|
|
|
61
61
|
type: string;
|
|
62
62
|
hddStatus: string;
|
|
63
63
|
};
|
|
64
|
+
export type AdminHddFootage = {
|
|
65
|
+
id: number;
|
|
66
|
+
cameraExid: string;
|
|
67
|
+
cameraName: string;
|
|
68
|
+
startDate: string | null;
|
|
69
|
+
endDate: string | null;
|
|
70
|
+
};
|
|
71
|
+
export type AdminHdd = {
|
|
72
|
+
id: number;
|
|
73
|
+
size: string;
|
|
74
|
+
type: string;
|
|
75
|
+
format: string;
|
|
76
|
+
location: string;
|
|
77
|
+
errorStatus: string | null;
|
|
78
|
+
createdAt: string;
|
|
79
|
+
serialNumber: string;
|
|
80
|
+
hddStatus: string;
|
|
81
|
+
reportedCapacity: string | null;
|
|
82
|
+
reportedFreeSpace: string | null;
|
|
83
|
+
reportedHddType: string | null;
|
|
84
|
+
reportedPath: string | null;
|
|
85
|
+
reportedProperty: string | null;
|
|
86
|
+
shelfBlock: string;
|
|
87
|
+
footages: AdminHddFootage[];
|
|
88
|
+
};
|
|
@@ -2,6 +2,7 @@ export * from "./360";
|
|
|
2
2
|
export * from "./aconex";
|
|
3
3
|
export * from "./analytics";
|
|
4
4
|
export * from "./anpr";
|
|
5
|
+
export * from "./admin";
|
|
5
6
|
export * from "./media";
|
|
6
7
|
export * from "./autodesk";
|
|
7
8
|
export * from "./bim";
|
|
@@ -31,6 +32,7 @@ export * from "./systemCheck";
|
|
|
31
32
|
export * from "./planner";
|
|
32
33
|
export * from "./storageServers";
|
|
33
34
|
export * from "./streaming";
|
|
35
|
+
export * from "./storyblok";
|
|
34
36
|
export * from "./time";
|
|
35
37
|
export * from "./timelapse";
|
|
36
38
|
export * from "./user";
|
|
@@ -57,3 +59,4 @@ export * from "./xweather";
|
|
|
57
59
|
export * from "./posthog";
|
|
58
60
|
export * from "./recycleBin";
|
|
59
61
|
export * from "./authz";
|
|
62
|
+
export * from "./smartSeach";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { PaginationParams, DateType } from "
|
|
1
|
+
import { PaginationParams, DateType, JsonValue } from "@evercam/api/types";
|
|
2
|
+
import type { _360FloorV2, _360WalkV2 } from "@evercam/api/types/360";
|
|
2
3
|
export declare enum IngestProcessingStatus {
|
|
3
4
|
Completed = "completed",
|
|
4
5
|
Uploading = "uploading",
|
|
@@ -15,7 +16,9 @@ export declare enum MobileAssetsType {
|
|
|
15
16
|
}
|
|
16
17
|
export declare enum IngestVersions {
|
|
17
18
|
V1 = "v1",
|
|
18
|
-
V2 = "v2"
|
|
19
|
+
V2 = "v2",
|
|
20
|
+
V3 = "v3",
|
|
21
|
+
V4 = "v4"
|
|
19
22
|
}
|
|
20
23
|
export type DronesQueryParams = Omit<PaginationParams, "sort"> & {
|
|
21
24
|
projectId: string;
|
|
@@ -23,6 +26,34 @@ export type DronesQueryParams = Omit<PaginationParams, "sort"> & {
|
|
|
23
26
|
token: string;
|
|
24
27
|
processingStatus: IngestProcessingStatus;
|
|
25
28
|
};
|
|
29
|
+
export type IngestPaginatedResponse<T> = {
|
|
30
|
+
items: T[];
|
|
31
|
+
page: number;
|
|
32
|
+
limit: number;
|
|
33
|
+
total: number;
|
|
34
|
+
pageCount?: number;
|
|
35
|
+
};
|
|
36
|
+
export type DroneUploadItem = {
|
|
37
|
+
id: number;
|
|
38
|
+
projectId: string;
|
|
39
|
+
consumed: boolean;
|
|
40
|
+
token: string;
|
|
41
|
+
flightDate: string;
|
|
42
|
+
flightGeolocation: string;
|
|
43
|
+
modelZip: string;
|
|
44
|
+
orthomosaicZip: string;
|
|
45
|
+
reportPdf: string;
|
|
46
|
+
uploadedBy: string;
|
|
47
|
+
processingStatus: IngestProcessingStatus | string;
|
|
48
|
+
modelCesiumAssetId: string;
|
|
49
|
+
updatedAt: string;
|
|
50
|
+
hasTusLinks: boolean;
|
|
51
|
+
};
|
|
52
|
+
export type DroneUploadsResponse = IngestPaginatedResponse<DroneUploadItem>;
|
|
53
|
+
export type DroneQueueResponse = {
|
|
54
|
+
size: number;
|
|
55
|
+
assetsDrone: DroneUploadItem[];
|
|
56
|
+
};
|
|
26
57
|
export type DroneUploadUpdateRequestPayload = {
|
|
27
58
|
flightMetadata: {
|
|
28
59
|
dateTime: string;
|
|
@@ -49,3 +80,55 @@ export type InspectionToolRequestPayload = {
|
|
|
49
80
|
gpsAltitude: string;
|
|
50
81
|
gpsCoordinates: string;
|
|
51
82
|
};
|
|
83
|
+
export type _360AssetsResponse = IngestPaginatedResponse<_360WalkV2>;
|
|
84
|
+
export type _360AssetsCountsDay = {
|
|
85
|
+
day: number;
|
|
86
|
+
walks?: number;
|
|
87
|
+
mobilePhotos?: number;
|
|
88
|
+
[key: string]: JsonValue | undefined;
|
|
89
|
+
};
|
|
90
|
+
export type _360AssetsCountsResponse = {
|
|
91
|
+
days: _360AssetsCountsDay[];
|
|
92
|
+
};
|
|
93
|
+
export type _360QueueResponse = {
|
|
94
|
+
size: number;
|
|
95
|
+
assets360: _360WalkV2[];
|
|
96
|
+
};
|
|
97
|
+
export type _360FloorsResponse = IngestPaginatedResponse<_360FloorV2>;
|
|
98
|
+
export type BimUploadItem = {
|
|
99
|
+
id: number;
|
|
100
|
+
projectId: string;
|
|
101
|
+
uploadedBy: string;
|
|
102
|
+
files: string[];
|
|
103
|
+
updatedAt: string;
|
|
104
|
+
archive?: string | null;
|
|
105
|
+
};
|
|
106
|
+
export type BimUploadsResponse = IngestPaginatedResponse<BimUploadItem>;
|
|
107
|
+
export type IngestUploadInitResponse = {
|
|
108
|
+
id: number;
|
|
109
|
+
projectId: string;
|
|
110
|
+
token?: string;
|
|
111
|
+
projectName?: string;
|
|
112
|
+
};
|
|
113
|
+
export type MobileAssetsQueryParams = Partial<Omit<PaginationParams, "sort">> & {
|
|
114
|
+
projectId?: string;
|
|
115
|
+
project_id?: string;
|
|
116
|
+
assetType?: MobileAssetsType | string;
|
|
117
|
+
date?: DateType;
|
|
118
|
+
isPaginated?: boolean;
|
|
119
|
+
};
|
|
120
|
+
export type MobileCaptureAssetsResponse = IngestPaginatedResponse<{
|
|
121
|
+
id: string;
|
|
122
|
+
projectId?: string;
|
|
123
|
+
uploadedBy: string;
|
|
124
|
+
updatedAt: string;
|
|
125
|
+
assetType: string;
|
|
126
|
+
thumbnailUrl: string;
|
|
127
|
+
}> | Array<{
|
|
128
|
+
id: string;
|
|
129
|
+
projectId?: string;
|
|
130
|
+
uploadedBy: string;
|
|
131
|
+
updatedAt: string;
|
|
132
|
+
assetType: string;
|
|
133
|
+
thumbnailUrl: string;
|
|
134
|
+
}>;
|
package/dist/api/types/kit.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CameraExid, CountryCode, CountryId,
|
|
1
|
+
import { CameraExid, CountryCode, CountryId, DateType, Nvr, PaginationParams, PowerType, Project, Router, Schedule, Tag } from "@evercam/api/types";
|
|
2
2
|
export type Kit = {
|
|
3
3
|
alarms: KitAlarm[];
|
|
4
4
|
countryCode: CountryCode;
|
|
@@ -305,6 +305,13 @@ export type KitCreatePayload = {
|
|
|
305
305
|
region: KitRegion;
|
|
306
306
|
};
|
|
307
307
|
};
|
|
308
|
+
export type KitMetricStatsEntry = {
|
|
309
|
+
timestamp: string;
|
|
310
|
+
voltage: number;
|
|
311
|
+
current: number;
|
|
312
|
+
panelVoltage: number;
|
|
313
|
+
panelPower: number;
|
|
314
|
+
};
|
|
308
315
|
export type KitUpdatePayload = {
|
|
309
316
|
countryId: number;
|
|
310
317
|
name: string;
|
|
@@ -329,8 +336,8 @@ export type KitStorage = {
|
|
|
329
336
|
formFactor: string;
|
|
330
337
|
};
|
|
331
338
|
model: string;
|
|
332
|
-
insertedAt:
|
|
333
|
-
updatedAt:
|
|
339
|
+
insertedAt: string;
|
|
340
|
+
updatedAt: string;
|
|
334
341
|
vendor: string;
|
|
335
342
|
kitId: number;
|
|
336
343
|
capacity: number;
|
|
@@ -352,16 +359,16 @@ export type KitAlarmItem = {
|
|
|
352
359
|
id: number;
|
|
353
360
|
kitId: number;
|
|
354
361
|
alarm: KitAlarm;
|
|
355
|
-
startDate:
|
|
356
|
-
endDate:
|
|
362
|
+
startDate: string;
|
|
363
|
+
endDate: string | null;
|
|
357
364
|
};
|
|
358
365
|
export type KitBox = {
|
|
359
366
|
id: string;
|
|
360
367
|
gatewaySerial: string;
|
|
361
368
|
gatewayMac: string;
|
|
362
369
|
gatewayConfig: Record<string, unknown> | null;
|
|
363
|
-
insertedAt:
|
|
364
|
-
updatedAt:
|
|
370
|
+
insertedAt: string;
|
|
371
|
+
updatedAt: string;
|
|
365
372
|
};
|
|
366
373
|
export type KitBoxCreatePayload = {
|
|
367
374
|
id?: string;
|