@evercam/api 1.0.0-336752725 → 1.0.0-39e7bbc90
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 +3 -0
- package/dist/api/api/3dFirebaseApi.d.ts +17 -1
- package/dist/api/api/adminApi.d.ts +104 -83
- package/dist/api/api/aiApi.d.ts +33 -52
- package/dist/api/api/authzApi.d.ts +32 -15
- package/dist/api/api/client/axios.d.ts +2 -1
- package/dist/api/api/client/swr/Swr.d.ts +1 -1
- package/dist/api/api/evercamApi.d.ts +79 -95
- package/dist/api/api/evercamLabsApi.d.ts +6 -3
- package/dist/api/api/exNvrApi.d.ts +1 -1
- package/dist/api/api/ingestApi.d.ts +110 -33
- package/dist/api/api/ptzApi.d.ts +12 -3
- package/dist/api/api/videoWallApi.d.ts +7 -7
- package/dist/api/api/weatherApi.d.ts +2 -2
- package/dist/api/types/360.d.ts +192 -5
- package/dist/api/types/aconex.d.ts +104 -6
- package/dist/api/types/admin.d.ts +51 -0
- package/dist/api/types/analytics.d.ts +101 -9
- package/dist/api/types/anpr.d.ts +13 -13
- package/dist/api/types/auditLogs.d.ts +1 -1
- package/dist/api/types/authz.d.ts +60 -0
- package/dist/api/types/autodesk.d.ts +7 -7
- package/dist/api/types/automation.d.ts +86 -1
- package/dist/api/types/axios.d.ts +11 -4
- package/dist/api/types/bim.d.ts +11 -5
- package/dist/api/types/camera.d.ts +97 -73
- package/dist/api/types/comments.d.ts +21 -9
- package/dist/api/types/company.d.ts +43 -2
- 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 +3 -1
- package/dist/api/types/copilot.d.ts +1 -1
- package/dist/api/types/credentials.d.ts +1 -0
- package/dist/api/types/detections.d.ts +17 -23
- package/dist/api/types/errors.d.ts +1 -0
- package/dist/api/types/gateReport.d.ts +32 -128
- package/dist/api/types/hdd.d.ts +26 -1
- package/dist/api/types/index.d.ts +5 -0
- package/dist/api/types/ingest.d.ts +86 -1
- package/dist/api/types/kit.d.ts +56 -7
- package/dist/api/types/media.d.ts +1 -1
- package/dist/api/types/notification.d.ts +32 -2
- package/dist/api/types/planner.d.ts +4 -1
- 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 +10 -24
- package/dist/api/types/project.d.ts +130 -17
- package/dist/api/types/recording.d.ts +2 -1
- package/dist/api/types/recycleBin.d.ts +14 -0
- package/dist/api/types/routeParams.d.ts +2 -1
- package/dist/api/types/router.d.ts +20 -1
- package/dist/api/types/shared.d.ts +12 -10
- 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 +197 -41
- package/dist/api/types/snapshots.d.ts +10 -1
- package/dist/api/types/sso.d.ts +55 -0
- package/dist/api/types/storyblok.d.ts +40 -0
- package/dist/api/types/streaming.d.ts +4 -5
- package/dist/api/types/tag.d.ts +1 -1
- package/dist/api/types/time.d.ts +4 -18
- package/dist/api/types/timelapse.d.ts +3 -4
- package/dist/api/types/user.d.ts +105 -30
- package/dist/api/types/videoWall.d.ts +47 -14
- package/dist/api/types/weather.d.ts +77 -11
- package/dist/api/types/widget.d.ts +96 -16
- package/dist/api/types/xweather.d.ts +4 -4
- package/dist/api/utils.d.ts +1 -0
- package/dist/index.js +1141 -942
- 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 +97 -11
- package/dist/shared/types/imagePlayer.d.ts +2 -2
- package/dist/shared/types/timeline.d.ts +2 -1
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { DateType } from "@evercam/api/types";
|
|
2
2
|
export type ShareRequest = {
|
|
3
3
|
cameraId: string;
|
|
4
4
|
createdAt: DateType | number;
|
|
@@ -24,19 +24,6 @@ export type Share = {
|
|
|
24
24
|
userId: number;
|
|
25
25
|
isUserAccessRestricted: boolean;
|
|
26
26
|
};
|
|
27
|
-
export type ShareRequestsResponsePayload = {
|
|
28
|
-
shareRequests: ShareRequest[];
|
|
29
|
-
};
|
|
30
|
-
export type ShareOwner = {
|
|
31
|
-
email: string;
|
|
32
|
-
fullname: string;
|
|
33
|
-
lastSeenAt: DateType;
|
|
34
|
-
sessionCount: number;
|
|
35
|
-
};
|
|
36
|
-
export type SharesResponsePayload = {
|
|
37
|
-
owner: ShareOwner;
|
|
38
|
-
shares: Share[];
|
|
39
|
-
};
|
|
40
27
|
export type ShareDeletionRequestPayload = {
|
|
41
28
|
email?: string;
|
|
42
29
|
key?: string;
|
|
@@ -54,143 +41,18 @@ export type ShareCreateRequestPayload = {
|
|
|
54
41
|
apiId?: string;
|
|
55
42
|
apiKey?: string;
|
|
56
43
|
};
|
|
57
|
-
export type ShareProjectCamerasRequestPayload = {
|
|
58
|
-
email: string[];
|
|
59
|
-
cameraExids: CameraExid[];
|
|
60
|
-
message: string;
|
|
61
|
-
permission?: string;
|
|
62
|
-
rights: string;
|
|
63
|
-
};
|
|
64
|
-
export type UpdateUserRestrictionPayload = {
|
|
65
|
-
email: string[];
|
|
66
|
-
isUserAccessRestricted: boolean;
|
|
67
|
-
};
|
|
68
44
|
export type ShareCreateResponsePayload = {
|
|
69
45
|
shares: Share[];
|
|
70
46
|
shareRequests: ShareRequest[];
|
|
71
47
|
};
|
|
72
|
-
export
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
cameraId: string;
|
|
78
|
-
sharerName: string;
|
|
79
|
-
userId: string;
|
|
80
|
-
sharerEmail: string;
|
|
81
|
-
createdAt: DateType;
|
|
82
|
-
}>;
|
|
83
|
-
};
|
|
84
|
-
export type ResendShareRequestPayload = {
|
|
85
|
-
email: string;
|
|
86
|
-
apiId?: string;
|
|
87
|
-
apiKey?: string;
|
|
88
|
-
};
|
|
89
|
-
export declare enum SharePermission {
|
|
90
|
-
Minimum = "minimum",
|
|
91
|
-
Share = "minimal+share",
|
|
92
|
-
Full = "full",
|
|
93
|
-
Custom = "custom"
|
|
94
|
-
}
|
|
95
|
-
export declare enum ShareType {
|
|
96
|
-
Share = "share",
|
|
97
|
-
Request = "request"
|
|
98
|
-
}
|
|
99
|
-
export declare enum ShareRequestStatus {
|
|
100
|
-
Pending = -1,
|
|
101
|
-
Cancelled = -2,
|
|
102
|
-
Failed = -3,
|
|
103
|
-
Used = 1
|
|
48
|
+
export declare enum InviteStatus {
|
|
49
|
+
Pending = 0,
|
|
50
|
+
Cancelled = -1,
|
|
51
|
+
Used = 1,
|
|
52
|
+
Failed = -2
|
|
104
53
|
}
|
|
105
54
|
export declare enum ShareVisibility {
|
|
106
55
|
PublicDiscoverable = "publicDiscoverable",
|
|
107
56
|
PublicUndiscoverable = "publicUndiscoverable",
|
|
108
57
|
Private = "private"
|
|
109
58
|
}
|
|
110
|
-
export type ProjectShare = {
|
|
111
|
-
id: number;
|
|
112
|
-
projectId: string;
|
|
113
|
-
userId: number;
|
|
114
|
-
email: string;
|
|
115
|
-
fullname: string;
|
|
116
|
-
sharerId: number;
|
|
117
|
-
sharerEmail: string;
|
|
118
|
-
sharerName: string;
|
|
119
|
-
role: "member" | "admin";
|
|
120
|
-
cameras: Record<string, string>;
|
|
121
|
-
message: string | null;
|
|
122
|
-
updatedAt: DateType;
|
|
123
|
-
insertedAt: DateType;
|
|
124
|
-
};
|
|
125
|
-
export type ProjectShareRequest = ProjectShare;
|
|
126
|
-
export type ProjectShareResponse = {
|
|
127
|
-
projectShares: ProjectShare[];
|
|
128
|
-
projectShareRequests: ProjectShareRequest[];
|
|
129
|
-
};
|
|
130
|
-
export type AdminShare = {
|
|
131
|
-
sharerId: number;
|
|
132
|
-
sharerFullname: string;
|
|
133
|
-
sharerApiId: string;
|
|
134
|
-
sharerApiKey: string;
|
|
135
|
-
shareeId: number;
|
|
136
|
-
shareeFullname: string;
|
|
137
|
-
shareeApiId: string;
|
|
138
|
-
shareeApiKey: string;
|
|
139
|
-
shareeEmail: string;
|
|
140
|
-
cameraId: number;
|
|
141
|
-
exid: string;
|
|
142
|
-
projectId: string;
|
|
143
|
-
name: string;
|
|
144
|
-
id: number;
|
|
145
|
-
message: string;
|
|
146
|
-
createdAt: DateType;
|
|
147
|
-
};
|
|
148
|
-
export type CameraShareRequestPayload = {
|
|
149
|
-
email: string[];
|
|
150
|
-
rights: string;
|
|
151
|
-
message?: string;
|
|
152
|
-
};
|
|
153
|
-
export type ShareQueryParams = {
|
|
154
|
-
exid: string;
|
|
155
|
-
sharerFullname: string;
|
|
156
|
-
shareeFullname: string;
|
|
157
|
-
shareeEmail: string;
|
|
158
|
-
};
|
|
159
|
-
export type CameraShare = {
|
|
160
|
-
sharerId: number;
|
|
161
|
-
sharerFullname: string;
|
|
162
|
-
sharerApiId: string;
|
|
163
|
-
sharerApiKey: string;
|
|
164
|
-
shareeId: number;
|
|
165
|
-
shareeFullname: string;
|
|
166
|
-
shareeApiId: string;
|
|
167
|
-
shareeApiKey: string;
|
|
168
|
-
shareeEmail: string;
|
|
169
|
-
cameraId: number;
|
|
170
|
-
exid: string;
|
|
171
|
-
projectId: string;
|
|
172
|
-
name: string;
|
|
173
|
-
id: number;
|
|
174
|
-
message: string;
|
|
175
|
-
createdAt: DateTime;
|
|
176
|
-
};
|
|
177
|
-
export type CameraShareRequestsQueryParams = {
|
|
178
|
-
shareeEmail: string;
|
|
179
|
-
camera: string;
|
|
180
|
-
sharer: string;
|
|
181
|
-
status: string;
|
|
182
|
-
};
|
|
183
|
-
export type CameraShareRequest = {
|
|
184
|
-
id: number;
|
|
185
|
-
shareeEmail: string;
|
|
186
|
-
camera: string;
|
|
187
|
-
sharer: string;
|
|
188
|
-
message: number;
|
|
189
|
-
rights: string;
|
|
190
|
-
status: number;
|
|
191
|
-
projectId: string;
|
|
192
|
-
cameraExid: string;
|
|
193
|
-
apiId: string;
|
|
194
|
-
apiKey: number;
|
|
195
|
-
createdAt: DateTime;
|
|
196
|
-
};
|
package/dist/api/types/sim.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PaginationParams } from "@evercam/api/types";
|
|
2
2
|
export declare enum SmsCommands {
|
|
3
3
|
Cellular = "cellular",
|
|
4
4
|
Gpson = "gpson",
|
|
@@ -63,7 +63,7 @@ export type Sim = {
|
|
|
63
63
|
puk: string;
|
|
64
64
|
iccid: string;
|
|
65
65
|
description: string;
|
|
66
|
-
lastSmsAt:
|
|
66
|
+
lastSmsAt: string;
|
|
67
67
|
cameras: {
|
|
68
68
|
name: string;
|
|
69
69
|
exid: string;
|
|
@@ -79,11 +79,11 @@ export type SendSmsResponse = {
|
|
|
79
79
|
errorText: string;
|
|
80
80
|
};
|
|
81
81
|
export type SmsHistory = {
|
|
82
|
-
insertedAt:
|
|
82
|
+
insertedAt: string;
|
|
83
83
|
type: string;
|
|
84
84
|
status: string;
|
|
85
85
|
text: string;
|
|
86
|
-
deliveryDatetime:
|
|
86
|
+
deliveryDatetime: string;
|
|
87
87
|
};
|
|
88
88
|
export type SmsHistoryResponse = {
|
|
89
89
|
singleSimSms: SmsHistory[];
|
|
@@ -98,8 +98,8 @@ export type Sms = {
|
|
|
98
98
|
status: string;
|
|
99
99
|
text: string;
|
|
100
100
|
type: string;
|
|
101
|
-
insertedAt:
|
|
102
|
-
deliveryDatetime:
|
|
101
|
+
insertedAt: string;
|
|
102
|
+
deliveryDatetime: string;
|
|
103
103
|
};
|
|
104
104
|
export type SmsQueryParams = PaginationParams & {
|
|
105
105
|
dateRange: string;
|
|
@@ -1,32 +1,61 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { DetectionLabel,
|
|
1
|
+
import { BBox, BoundingBox, DateType, Schedule, ScheduleLowercase, CameraExid, DetectionModel, PaginationParams, PpeLabel, ProjectExid, CameraDateRangeFilter, CameraFeatureFlag, TimelineDateInterval, Camera, AdminCamera, _360FloorV2, _360FloorId, PaginatedItems, DateRangeFilter } from "@evercam/api/types";
|
|
2
|
+
import { DetectionLabel, DownloadFileType } from "@evercam/api/types";
|
|
3
3
|
export declare enum SiteAnalyticsMode {
|
|
4
4
|
Detections = "detections",
|
|
5
5
|
Segments = "segments"
|
|
6
6
|
}
|
|
7
|
-
export type
|
|
7
|
+
export type SmartSearchObjectPart = {
|
|
8
8
|
id?: string;
|
|
9
|
-
type:
|
|
10
|
-
value: DetectionLabel
|
|
9
|
+
type: SmartSearchComponentType.Object;
|
|
10
|
+
value: DetectionLabel;
|
|
11
11
|
};
|
|
12
|
-
export type
|
|
13
|
-
|
|
12
|
+
export type SmartSearchOperatorPart = {
|
|
13
|
+
id?: string;
|
|
14
|
+
type: SmartSearchComponentType.Operator;
|
|
15
|
+
value: SmartSearchOperatorType;
|
|
16
|
+
};
|
|
17
|
+
export type SmartSearchConditionPart = {
|
|
18
|
+
id?: string;
|
|
19
|
+
type: SmartSearchComponentType.Condition;
|
|
20
|
+
value: SmartSearchCondition | SmartSearchConditionData;
|
|
21
|
+
};
|
|
22
|
+
export type SmartSearchViewPart = {
|
|
23
|
+
id?: string;
|
|
24
|
+
type: SmartSearchComponentType.View;
|
|
25
|
+
value: SiteAnalyticsView;
|
|
26
|
+
};
|
|
27
|
+
export type SmartSearchAreaPart = {
|
|
28
|
+
id?: string;
|
|
29
|
+
type: SmartSearchComponentType.Area;
|
|
30
|
+
value: BBox;
|
|
31
|
+
};
|
|
32
|
+
export type SmartSearchTimePart = {
|
|
33
|
+
id?: string;
|
|
34
|
+
type: SmartSearchComponentType.Time;
|
|
35
|
+
value: Schedule | ScheduleLowercase;
|
|
36
|
+
};
|
|
37
|
+
export type SmartSearchDateRangePart = {
|
|
38
|
+
id?: string;
|
|
39
|
+
type: SmartSearchComponentType.DateRange;
|
|
40
|
+
value: DateRangeFilter;
|
|
41
|
+
};
|
|
42
|
+
export type SmartSearchPart = SmartSearchObjectPart | SmartSearchOperatorPart | SmartSearchConditionPart | SmartSearchViewPart | SmartSearchAreaPart | SmartSearchTimePart | SmartSearchDateRangePart;
|
|
43
|
+
export type SmartSearchPartOrGroup = SmartSearchPart | SmartSearchPart[];
|
|
44
|
+
export declare enum SmartSearchComponentType {
|
|
14
45
|
Condition = "condition",
|
|
15
46
|
Object = "object",
|
|
16
47
|
Area = "in_area",
|
|
17
48
|
Time = "time",
|
|
18
49
|
Operator = "operator",
|
|
19
|
-
|
|
20
|
-
DateRange = "date_range"
|
|
50
|
+
View = "view",
|
|
51
|
+
DateRange = "date_range",
|
|
52
|
+
Heatmap = "heatmap"
|
|
21
53
|
}
|
|
22
|
-
export type
|
|
23
|
-
|
|
24
|
-
end: DateType;
|
|
25
|
-
};
|
|
26
|
-
export type SmartSearchQueryComponentData = {
|
|
54
|
+
export type SmartSearchPartType = SmartSearchComponentType | SmartSearchCondition;
|
|
55
|
+
export type SmartSearchComponentData = {
|
|
27
56
|
id: string;
|
|
28
|
-
type:
|
|
29
|
-
parts: [
|
|
57
|
+
type: SmartSearchComponentType;
|
|
58
|
+
parts: SmartSearchPartOrGroup[];
|
|
30
59
|
};
|
|
31
60
|
export declare enum SmartSearchCondition {
|
|
32
61
|
InArea = "in_area",
|
|
@@ -37,33 +66,49 @@ export type SmartSearchConditionData = {
|
|
|
37
66
|
condition: SmartSearchCondition;
|
|
38
67
|
value: string | BoundingBox | DetectionLabel | Date;
|
|
39
68
|
};
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
69
|
+
type SmartSearchBackendConditionBase = {
|
|
70
|
+
target: SmartSearchTargets;
|
|
71
|
+
};
|
|
72
|
+
export type SmartSearchSelectionCondition = SmartSearchBackendConditionBase & {
|
|
73
|
+
type: SmartSearchConditionTypes.Selection;
|
|
74
|
+
operator: SmartSearchOperators;
|
|
75
|
+
attribute: string;
|
|
45
76
|
value: string | number | string[];
|
|
46
|
-
|
|
47
|
-
|
|
77
|
+
};
|
|
78
|
+
export type SmartSearchSpatialCondition = SmartSearchBackendConditionBase & {
|
|
79
|
+
type: SmartSearchConditionTypes.Spatial;
|
|
80
|
+
operator: SmartSearchOperators;
|
|
81
|
+
reference: {
|
|
82
|
+
target: SmartSearchTargets;
|
|
48
83
|
attribute: string;
|
|
49
84
|
value: string | number | string[];
|
|
50
85
|
};
|
|
51
|
-
polygon?: BBox;
|
|
52
86
|
};
|
|
53
|
-
export type
|
|
54
|
-
|
|
87
|
+
export type SmartSearchAreaCondition = SmartSearchBackendConditionBase & {
|
|
88
|
+
type: SmartSearchConditionTypes.Area;
|
|
89
|
+
operator: SmartSearchOperators;
|
|
90
|
+
polygon: BBox;
|
|
91
|
+
};
|
|
92
|
+
export type SmartSearchGeoAreaCondition = SmartSearchBackendConditionBase & {
|
|
93
|
+
type: SmartSearchConditionTypes.GeoArea;
|
|
94
|
+
operator: SmartSearchOperators;
|
|
95
|
+
polygon: BBox;
|
|
96
|
+
};
|
|
97
|
+
export type SmartSearchBackendQueryCondition = SmartSearchSelectionCondition | SmartSearchSpatialCondition | SmartSearchAreaCondition | SmartSearchGeoAreaCondition;
|
|
98
|
+
export type SmartSearchBackendQuery = {
|
|
99
|
+
returnTargets: SmartSearchTargets[];
|
|
55
100
|
rulesLogic: SmartSearchOperatorType;
|
|
56
101
|
rules: {
|
|
57
102
|
logic: SmartSearchOperatorType;
|
|
58
|
-
conditions:
|
|
103
|
+
conditions: SmartSearchBackendQueryCondition[];
|
|
59
104
|
}[];
|
|
60
|
-
returnType:
|
|
105
|
+
returnType: SmartSearchReturnType;
|
|
61
106
|
};
|
|
62
|
-
export declare enum
|
|
107
|
+
export declare enum SmartSearchTargets {
|
|
63
108
|
Tracking = "tracking",
|
|
64
109
|
Segments = "segments"
|
|
65
110
|
}
|
|
66
|
-
export declare enum
|
|
111
|
+
export declare enum SmartSearchReturnType {
|
|
67
112
|
All = "all",
|
|
68
113
|
FirstLastSeen = "first_last_seen"
|
|
69
114
|
}
|
|
@@ -71,7 +116,7 @@ export declare enum SmartSearchOperatorType {
|
|
|
71
116
|
And = "AND",
|
|
72
117
|
Or = "OR"
|
|
73
118
|
}
|
|
74
|
-
export declare enum
|
|
119
|
+
export declare enum SmartSearchOperators {
|
|
75
120
|
Near = "near",
|
|
76
121
|
Far = "far",
|
|
77
122
|
Intersects = "intersects",
|
|
@@ -83,38 +128,42 @@ export declare enum SmartSearchQueryOperators {
|
|
|
83
128
|
Area = "in_area",
|
|
84
129
|
Equal = "="
|
|
85
130
|
}
|
|
86
|
-
export declare enum
|
|
131
|
+
export declare enum SmartSearchConditionTypes {
|
|
87
132
|
Selection = "selection",
|
|
88
133
|
Spatial = "spatial",
|
|
89
134
|
Area = "area",
|
|
135
|
+
GeoArea = "in_geo_area",
|
|
90
136
|
Iou = "iou",
|
|
91
137
|
Near = "near",
|
|
92
138
|
Far = "far"
|
|
93
139
|
}
|
|
94
|
-
export type SmartSearchOptionValue = DetectionLabel | SmartSearchOperatorType | SmartSearchConditionData;
|
|
95
|
-
export type
|
|
140
|
+
export type SmartSearchOptionValue = DetectionLabel | SmartSearchOperatorType | SmartSearchConditionData | DateRangeFilter | SiteAnalyticsView;
|
|
141
|
+
export type SmartSearchBackendQueryPayload = {
|
|
96
142
|
cameraExid: string;
|
|
97
143
|
name: string;
|
|
98
144
|
description: string;
|
|
99
145
|
query: {
|
|
100
|
-
req:
|
|
146
|
+
req: SmartSearchBackendQuery;
|
|
101
147
|
timeSchedule?: Schedule | undefined;
|
|
102
148
|
};
|
|
103
149
|
fromDate?: DateType;
|
|
104
150
|
toDate?: DateType;
|
|
105
151
|
author: string;
|
|
106
152
|
createdAt: DateType;
|
|
107
|
-
params?:
|
|
153
|
+
params?: {
|
|
154
|
+
start: string;
|
|
155
|
+
end: string;
|
|
156
|
+
};
|
|
108
157
|
};
|
|
109
158
|
export type SavedQuery = {
|
|
110
159
|
description: string;
|
|
111
160
|
id: number;
|
|
112
161
|
query: {
|
|
113
|
-
req:
|
|
162
|
+
req: SmartSearchBackendQuery;
|
|
114
163
|
timeSchedule?: Schedule | undefined;
|
|
115
164
|
};
|
|
116
165
|
params: Record<string, string>;
|
|
117
|
-
components?: Omit<
|
|
166
|
+
components?: Omit<SmartSearchPart, "id">[];
|
|
118
167
|
toDate?: DateType;
|
|
119
168
|
createdAt?: DateType;
|
|
120
169
|
cameraExid: string;
|
|
@@ -125,17 +174,124 @@ export type SavedQuery = {
|
|
|
125
174
|
export type DetectionsRequestParams = {
|
|
126
175
|
projectExid: ProjectExid;
|
|
127
176
|
cameraExids: CameraExid[];
|
|
128
|
-
fromDate?:
|
|
129
|
-
toDate?:
|
|
177
|
+
fromDate?: string;
|
|
178
|
+
toDate?: string;
|
|
130
179
|
labels?: Array<DetectionLabel | PpeLabel>;
|
|
131
180
|
modelId?: DetectionModel;
|
|
132
181
|
trackId?: number;
|
|
133
182
|
thresholds?: string[];
|
|
134
183
|
excludeLabels?: Array<DetectionLabel | PpeLabel>;
|
|
184
|
+
mergedClasses?: Array<string>;
|
|
135
185
|
confidenceThreshold?: number;
|
|
136
186
|
} & PaginationParams;
|
|
137
187
|
export type DetectionsExportRequestParams = DetectionsRequestParams & {
|
|
138
|
-
fileType:
|
|
188
|
+
fileType: DownloadFileType;
|
|
139
189
|
columns?: string[];
|
|
140
190
|
directDownload?: boolean;
|
|
141
191
|
};
|
|
192
|
+
export type SmartSearchHeatmapPoint = {
|
|
193
|
+
coordinates: [number, number];
|
|
194
|
+
detectionsCount: number;
|
|
195
|
+
};
|
|
196
|
+
export type SmartSearchHeatmapData = {
|
|
197
|
+
label: string;
|
|
198
|
+
points: SmartSearchHeatmapPoint[];
|
|
199
|
+
};
|
|
200
|
+
export type SmartSearchNearConfig = {
|
|
201
|
+
sourceLabels: DetectionLabel[];
|
|
202
|
+
targetLabel?: DetectionLabel;
|
|
203
|
+
};
|
|
204
|
+
export type HeatmapIntersectionsRequestParams = CameraDateRangeFilter & SmartSearchNearConfig;
|
|
205
|
+
export type SmartSearchSidebarItem = {
|
|
206
|
+
key: string;
|
|
207
|
+
displayLabel: string;
|
|
208
|
+
data: SmartSearchHeatmapData;
|
|
209
|
+
imagePath?: string;
|
|
210
|
+
};
|
|
211
|
+
export declare enum SiteAnalyticsViewType {
|
|
212
|
+
Camera = "camera",
|
|
213
|
+
ThreeSixty = "360"
|
|
214
|
+
}
|
|
215
|
+
export type SiteAnalyticsCameraView = {
|
|
216
|
+
type: SiteAnalyticsViewType.Camera;
|
|
217
|
+
id: CameraExid;
|
|
218
|
+
value: Camera | AdminCamera;
|
|
219
|
+
};
|
|
220
|
+
export type SiteAnalytics360View = {
|
|
221
|
+
type: SiteAnalyticsViewType.ThreeSixty;
|
|
222
|
+
id: _360FloorId;
|
|
223
|
+
value: _360FloorV2;
|
|
224
|
+
};
|
|
225
|
+
export type SiteAnalyticsView = SiteAnalyticsCameraView | SiteAnalytics360View;
|
|
226
|
+
export type SiteAnalyticsProcessingStatusPayload = {
|
|
227
|
+
projectExid?: ProjectExid;
|
|
228
|
+
fromDate?: DateType;
|
|
229
|
+
toDate?: DateType;
|
|
230
|
+
cameraExid?: CameraExid;
|
|
231
|
+
drawingId?: string;
|
|
232
|
+
features?: CameraFeatureFlag[];
|
|
233
|
+
};
|
|
234
|
+
export type SiteAnalyticsProcessingStatus = {
|
|
235
|
+
projectExid: ProjectExid;
|
|
236
|
+
viewType: SiteAnalyticsViewType;
|
|
237
|
+
viewId: string;
|
|
238
|
+
feature: CameraFeatureFlag;
|
|
239
|
+
processedIntervals: TimelineDateInterval[];
|
|
240
|
+
};
|
|
241
|
+
export type SmartSearchRequestPayload = {
|
|
242
|
+
cameraExids?: CameraExid[];
|
|
243
|
+
drawingIds?: _360FloorId[];
|
|
244
|
+
walkIds?: string[];
|
|
245
|
+
markerIds?: string[];
|
|
246
|
+
payload: SmartSearchBackendQuery;
|
|
247
|
+
fromDate?: string;
|
|
248
|
+
toDate?: string;
|
|
249
|
+
page?: number;
|
|
250
|
+
pageSize?: number;
|
|
251
|
+
threshold?: number;
|
|
252
|
+
};
|
|
253
|
+
type SmartSearchResultItemBase = {
|
|
254
|
+
area: number;
|
|
255
|
+
bbox: BBox;
|
|
256
|
+
cameraExid?: CameraExid;
|
|
257
|
+
centroid: number[];
|
|
258
|
+
confidenceScore: number;
|
|
259
|
+
drawingId?: _360FloorId;
|
|
260
|
+
label: DetectionLabel;
|
|
261
|
+
modelId: DetectionModel;
|
|
262
|
+
projectExid: ProjectExid;
|
|
263
|
+
segmentId?: number;
|
|
264
|
+
trackId: number;
|
|
265
|
+
walkId?: string | number;
|
|
266
|
+
};
|
|
267
|
+
export type SmartSearchResultItemFirstLastSeen = SmartSearchResultItemBase & {
|
|
268
|
+
firstSeen: DateType;
|
|
269
|
+
firstSeenMarkerId?: string | number;
|
|
270
|
+
lastSeen: DateType;
|
|
271
|
+
lastSeenMarkerId?: string | number;
|
|
272
|
+
};
|
|
273
|
+
export type SmartSearchResultItemAll = SmartSearchResultItemBase & {
|
|
274
|
+
walkId?: string | number;
|
|
275
|
+
markerId?: string | number;
|
|
276
|
+
geolocation?: number[];
|
|
277
|
+
mask?: number[][];
|
|
278
|
+
timestamp: DateType;
|
|
279
|
+
};
|
|
280
|
+
type SmartSearchResultItemByType = {
|
|
281
|
+
[SmartSearchReturnType.FirstLastSeen]: SmartSearchResultItemFirstLastSeen;
|
|
282
|
+
[SmartSearchReturnType.All]: SmartSearchResultItemAll;
|
|
283
|
+
};
|
|
284
|
+
export type SmartSearchResponse<R extends SmartSearchReturnType = SmartSearchReturnType.FirstLastSeen> = {
|
|
285
|
+
data: PaginatedItems<SmartSearchResultItemByType[R]>;
|
|
286
|
+
message?: string;
|
|
287
|
+
success: boolean;
|
|
288
|
+
};
|
|
289
|
+
export type SmartSearchMinifiedPart = {
|
|
290
|
+
t: SmartSearchComponentType;
|
|
291
|
+
v: unknown;
|
|
292
|
+
};
|
|
293
|
+
export type SmartSearchMinifiedComponent = {
|
|
294
|
+
t: SmartSearchComponentType;
|
|
295
|
+
p: SmartSearchMinifiedPart[];
|
|
296
|
+
};
|
|
297
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CameraExid, DateType, PaginationParams, Schedule } from "
|
|
1
|
+
import { CameraExid, DateType, PaginationParams, Schedule } from "@evercam/api/types";
|
|
2
2
|
export type SnapshotExtractionQyeryParams = PaginationParams & {
|
|
3
3
|
camera: string;
|
|
4
4
|
cameraExid: CameraExid;
|
|
@@ -48,3 +48,12 @@ export type DeleteSnapshotQueryParams = {
|
|
|
48
48
|
adminEmail: string;
|
|
49
49
|
adminFullname: string;
|
|
50
50
|
};
|
|
51
|
+
export type TransferCloudRecordingsQueryParams = {
|
|
52
|
+
targetCameraExid: CameraExid;
|
|
53
|
+
fromDate: DateType;
|
|
54
|
+
toDate: DateType;
|
|
55
|
+
overwriteExistingSnapshots?: boolean;
|
|
56
|
+
keepSourceSnapshots?: boolean;
|
|
57
|
+
adminEmail?: string;
|
|
58
|
+
adminFullname?: string;
|
|
59
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export type SsoProvider = {
|
|
2
|
+
id: number;
|
|
3
|
+
name: string;
|
|
4
|
+
exid: string;
|
|
5
|
+
clientId: string;
|
|
6
|
+
clientSecret: string;
|
|
7
|
+
scope: string;
|
|
8
|
+
responseType: string;
|
|
9
|
+
loginUrl: string;
|
|
10
|
+
iconUrl: string;
|
|
11
|
+
options: {
|
|
12
|
+
showOnLogin: boolean;
|
|
13
|
+
showOnSignup: boolean;
|
|
14
|
+
};
|
|
15
|
+
tokenUri: string;
|
|
16
|
+
tokenIntrospectionUri: string;
|
|
17
|
+
userInfoUri: string;
|
|
18
|
+
enabled: boolean;
|
|
19
|
+
};
|
|
20
|
+
export type SsoUpdatePayload = {
|
|
21
|
+
name: string;
|
|
22
|
+
exid: string;
|
|
23
|
+
clientId: string;
|
|
24
|
+
clientSecret: string;
|
|
25
|
+
scope: string;
|
|
26
|
+
responseType: string;
|
|
27
|
+
loginUrl: string;
|
|
28
|
+
iconUrl: string;
|
|
29
|
+
options: {
|
|
30
|
+
showOnLogin: boolean;
|
|
31
|
+
showOnSignup: boolean;
|
|
32
|
+
};
|
|
33
|
+
tokenUri: string;
|
|
34
|
+
tokenIntrospectionUri: string;
|
|
35
|
+
userInfoUri: string;
|
|
36
|
+
enabled: boolean;
|
|
37
|
+
};
|
|
38
|
+
export type SsoCreatePayload = {
|
|
39
|
+
name: string;
|
|
40
|
+
exid: string;
|
|
41
|
+
clientId: string;
|
|
42
|
+
clientSecret: string;
|
|
43
|
+
scope: string;
|
|
44
|
+
responseType: string;
|
|
45
|
+
loginUrl: string;
|
|
46
|
+
iconUrl: string;
|
|
47
|
+
options: {
|
|
48
|
+
showOnLogin: boolean;
|
|
49
|
+
showOnSignup: boolean;
|
|
50
|
+
};
|
|
51
|
+
tokenUri: string;
|
|
52
|
+
tokenIntrospectionUri: string;
|
|
53
|
+
userInfoUri: string;
|
|
54
|
+
enabled: boolean;
|
|
55
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { JsonObject, JsonValue } from "@evercam/api/types";
|
|
2
|
+
export type StoryblokAsset = {
|
|
3
|
+
id: number | null;
|
|
4
|
+
alt: string | null;
|
|
5
|
+
name: string;
|
|
6
|
+
focus: string | null;
|
|
7
|
+
title: string | null;
|
|
8
|
+
filename: string;
|
|
9
|
+
copyright: string | null;
|
|
10
|
+
fieldtype: "asset";
|
|
11
|
+
source?: string;
|
|
12
|
+
metaData?: JsonObject;
|
|
13
|
+
isExternalUrl?: boolean;
|
|
14
|
+
};
|
|
15
|
+
export type StoryblokStory<TContent extends JsonObject = JsonObject> = {
|
|
16
|
+
id: number;
|
|
17
|
+
uuid: string;
|
|
18
|
+
name: string;
|
|
19
|
+
slug: string;
|
|
20
|
+
fullSlug: string;
|
|
21
|
+
content: TContent;
|
|
22
|
+
createdAt: string;
|
|
23
|
+
publishedAt: string | null;
|
|
24
|
+
updatedAt: string;
|
|
25
|
+
position: number;
|
|
26
|
+
tagList: string[];
|
|
27
|
+
isStartpage: boolean;
|
|
28
|
+
parentId: number | null;
|
|
29
|
+
groupId: string;
|
|
30
|
+
firstPublishedAt: string | null;
|
|
31
|
+
releaseId: number | null;
|
|
32
|
+
lang: string;
|
|
33
|
+
path: string;
|
|
34
|
+
};
|
|
35
|
+
export type StoryblokResponse<TContent extends JsonObject = JsonObject> = {
|
|
36
|
+
story: StoryblokStory<TContent>;
|
|
37
|
+
cv: number;
|
|
38
|
+
rels: JsonValue[];
|
|
39
|
+
links: JsonValue[];
|
|
40
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { KitMetricData } from "@evercam/api/types";
|
|
2
2
|
export type ExNvrLoginResponse = {
|
|
3
3
|
accessToken: string;
|
|
4
4
|
};
|
|
5
5
|
export type ExNvrRecordingInterval = {
|
|
6
6
|
active: boolean;
|
|
7
|
-
startDate:
|
|
8
|
-
endDate:
|
|
7
|
+
startDate: string;
|
|
8
|
+
endDate: string;
|
|
9
9
|
};
|
|
10
10
|
export type ExNvrDeviceConfig = {
|
|
11
11
|
id: string;
|
|
@@ -39,8 +39,7 @@ export type ExNvrDeviceConfig = {
|
|
|
39
39
|
timezone: string;
|
|
40
40
|
};
|
|
41
41
|
export declare enum ExNvrFootageAvailableStatus {
|
|
42
|
-
|
|
43
|
-
NotActive = "Not Active",
|
|
42
|
+
Available = "Available",
|
|
44
43
|
NotAvailable = "Not Available"
|
|
45
44
|
}
|
|
46
45
|
export declare enum ExNvrDeviceState {
|
package/dist/api/types/tag.d.ts
CHANGED