@evercam/api 1.0.0-b42ce3404 → 1.0.0-b908926bb
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 -0
- package/dist/api/api/3dFirebaseApi.d.ts +164 -15
- package/dist/api/api/adminApi.d.ts +81 -48
- package/dist/api/api/aiApi.d.ts +89 -54
- package/dist/api/api/authzApi.d.ts +23 -16
- 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 +121 -73
- package/dist/api/api/evercamLabsApi.d.ts +4 -5
- package/dist/api/api/exNvrApi.d.ts +1 -1
- package/dist/api/api/ingestApi.d.ts +102 -47
- 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 +69 -53
- package/dist/api/types/aconex.d.ts +9 -9
- package/dist/api/types/admin.d.ts +51 -0
- package/dist/api/types/aiConfigs.d.ts +154 -0
- package/dist/api/types/analytics.d.ts +107 -58
- package/dist/api/types/anpr.d.ts +48 -2
- package/dist/api/types/auditLogs.d.ts +19 -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 +17 -11
- package/dist/api/types/bim.d.ts +28 -5
- package/dist/api/types/camera.d.ts +93 -93
- package/dist/api/types/comments.d.ts +8 -10
- 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 +3 -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 +22 -18
- package/dist/api/types/drone.d.ts +96 -6
- package/dist/api/types/errors.d.ts +11 -0
- package/dist/api/types/gateReport.d.ts +47 -58
- package/dist/api/types/gateReportManagement.d.ts +175 -0
- package/dist/api/types/hdd.d.ts +26 -1
- package/dist/api/types/index.d.ts +9 -1
- package/dist/api/types/ingest.d.ts +100 -3
- package/dist/api/types/kit.d.ts +14 -7
- package/dist/api/types/map.d.ts +12 -0
- package/dist/api/types/media.d.ts +8 -2
- package/dist/api/types/notification.d.ts +32 -2
- package/dist/api/types/oauth.d.ts +62 -0
- package/dist/api/types/planner.d.ts +97 -0
- 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 +96 -22
- package/dist/api/types/recording.d.ts +6 -11
- package/dist/api/types/recycleBin.d.ts +1 -1
- package/dist/api/types/ring.d.ts +53 -0
- package/dist/api/types/roi.d.ts +2 -2
- package/dist/api/types/router.d.ts +1 -1
- package/dist/api/types/shared.d.ts +30 -4
- package/dist/api/types/shares.d.ts +1 -1
- package/dist/api/types/sim.d.ts +6 -6
- package/dist/api/types/siteAnalytics.d.ts +81 -41
- package/dist/api/types/siteView.d.ts +73 -0
- package/dist/api/types/smartSeach.d.ts +5 -0
- package/dist/api/types/snapshots.d.ts +49 -4
- package/dist/api/types/storageProvider.d.ts +19 -0
- 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 +8 -5
- package/dist/api/types/user.d.ts +102 -32
- 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/api/utils.d.ts +0 -1
- package/dist/index.js +1590 -786
- 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 +141 -16
- package/dist/shared/types/customDataTableFilters.d.ts +10 -0
- package/dist/shared/types/imagePlayer.d.ts +9 -2
- package/dist/shared/types/index.d.ts +2 -0
- package/dist/shared/types/rbac.d.ts +67 -0
- package/dist/shared/types/timeline.d.ts +2 -1
- package/package.json +4 -2
- package/dist/api/types/storageServers.d.ts +0 -4
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export type RingDevice = {
|
|
2
|
+
deviceId: string;
|
|
3
|
+
name: string;
|
|
4
|
+
deviceType: string;
|
|
5
|
+
firmwareVersion: string | null;
|
|
6
|
+
batteryLife: number | null;
|
|
7
|
+
location: string | null;
|
|
8
|
+
imported: boolean;
|
|
9
|
+
cameraExid?: string;
|
|
10
|
+
projectExid?: string;
|
|
11
|
+
projectName?: string;
|
|
12
|
+
};
|
|
13
|
+
export type RingDevicesResponsePayload = {
|
|
14
|
+
devices: RingDevice[];
|
|
15
|
+
};
|
|
16
|
+
export type RingImportDevicesPayload = {
|
|
17
|
+
deviceIds: string[];
|
|
18
|
+
projectExid: string;
|
|
19
|
+
deviceNames?: Record<string, string>;
|
|
20
|
+
};
|
|
21
|
+
export type RingImportResponsePayload = {
|
|
22
|
+
cameras: Array<{
|
|
23
|
+
exid: string;
|
|
24
|
+
name: string;
|
|
25
|
+
}>;
|
|
26
|
+
project: {
|
|
27
|
+
exid: string;
|
|
28
|
+
name: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
export type RingMoveDevicePayload = {
|
|
32
|
+
projectExid: string;
|
|
33
|
+
};
|
|
34
|
+
export type RingMoveDeviceResponsePayload = {
|
|
35
|
+
status: string;
|
|
36
|
+
cameraExid: string;
|
|
37
|
+
projectExid: string;
|
|
38
|
+
};
|
|
39
|
+
export type RingLiveViewPayload = {
|
|
40
|
+
sdpOffer: string;
|
|
41
|
+
};
|
|
42
|
+
export type RingLiveViewResponse = {
|
|
43
|
+
sdpAnswer: string;
|
|
44
|
+
sessionUrl: string;
|
|
45
|
+
iceServers: Array<{
|
|
46
|
+
urls: string;
|
|
47
|
+
username?: string;
|
|
48
|
+
credential?: string;
|
|
49
|
+
}>;
|
|
50
|
+
};
|
|
51
|
+
export type RingStopLiveViewResponse = {
|
|
52
|
+
status: string;
|
|
53
|
+
};
|
package/dist/api/types/roi.d.ts
CHANGED
|
@@ -9,8 +9,7 @@ export declare enum RoiShapeType {
|
|
|
9
9
|
Polygon = "polygon",
|
|
10
10
|
Line = "line",
|
|
11
11
|
Direction = "direction",
|
|
12
|
-
Rectangle = "rectangle"
|
|
13
|
-
ROIBox = "ROIBox"
|
|
12
|
+
Rectangle = "rectangle"
|
|
14
13
|
}
|
|
15
14
|
export type RoiShape = {
|
|
16
15
|
id: number | null;
|
|
@@ -19,6 +18,7 @@ export type RoiShape = {
|
|
|
19
18
|
x2: number;
|
|
20
19
|
y1: number;
|
|
21
20
|
y2: number;
|
|
21
|
+
points?: [number, number][];
|
|
22
22
|
};
|
|
23
23
|
export declare enum RoiDirection {
|
|
24
24
|
Arrived = "arrived",
|
|
@@ -1,7 +1,17 @@
|
|
|
1
|
-
import { DateType } from "
|
|
1
|
+
import { DateType } from "@evercam/api/types";
|
|
2
|
+
export declare enum Operator {
|
|
3
|
+
AND = "and",
|
|
4
|
+
OR = "or"
|
|
5
|
+
}
|
|
2
6
|
type sortby = string;
|
|
3
7
|
type sortDirection = "asc" | "desc";
|
|
4
8
|
export type SortingUrlParam = `${sortby}|${sortDirection}`;
|
|
9
|
+
export type JsonPrimitive = string | number | boolean | null;
|
|
10
|
+
export type JsonValue = JsonPrimitive | JsonObject | JsonArray;
|
|
11
|
+
export type JsonObject = {
|
|
12
|
+
[key: string]: JsonValue;
|
|
13
|
+
};
|
|
14
|
+
export type JsonArray = JsonValue[];
|
|
5
15
|
export type BatteryReading = {
|
|
6
16
|
id: number;
|
|
7
17
|
voltage: number;
|
|
@@ -53,7 +63,7 @@ export declare enum UnitSystem {
|
|
|
53
63
|
Metric = "metric"
|
|
54
64
|
}
|
|
55
65
|
export type Timestamp = string | number;
|
|
56
|
-
export type
|
|
66
|
+
export type ScheduleUppercase = {
|
|
57
67
|
Friday: string[];
|
|
58
68
|
Monday: string[];
|
|
59
69
|
Saturday: string[];
|
|
@@ -71,6 +81,7 @@ export type ScheduleLowercase = {
|
|
|
71
81
|
tuesday: string[];
|
|
72
82
|
wednesday: string[];
|
|
73
83
|
};
|
|
84
|
+
export type Schedule = ScheduleUppercase | ScheduleLowercase;
|
|
74
85
|
export type PaginationParams = {
|
|
75
86
|
sort?: SortingUrlParam;
|
|
76
87
|
page?: number;
|
|
@@ -108,11 +119,11 @@ export declare enum DownloadFileType {
|
|
|
108
119
|
export declare enum FeedbackContext {
|
|
109
120
|
CopilotMessage = "copilot_message"
|
|
110
121
|
}
|
|
111
|
-
export type FeedbackPayload
|
|
122
|
+
export type FeedbackPayload = {
|
|
112
123
|
id?: number;
|
|
113
124
|
user: string;
|
|
114
125
|
text: string;
|
|
115
|
-
type:
|
|
126
|
+
type: string;
|
|
116
127
|
context: FeedbackContext;
|
|
117
128
|
messageId?: number;
|
|
118
129
|
conversationId?: number;
|
|
@@ -126,6 +137,21 @@ export interface JSON {
|
|
|
126
137
|
stringify<T>(value: T, replacer?: (key: string, value: unknown) => unknown, space?: string | number): string & Stringified<T>;
|
|
127
138
|
parse<T>(text: Stringified<T>, reviver?: (key: unknown, value: unknown) => unknown): T;
|
|
128
139
|
}
|
|
140
|
+
export type TuplePoint2D = [number, number];
|
|
141
|
+
export type TuplePoint3D = [number, number, number];
|
|
142
|
+
export type Point2D = {
|
|
143
|
+
x: number;
|
|
144
|
+
y: number;
|
|
145
|
+
};
|
|
146
|
+
export type Point3D = {
|
|
147
|
+
x: number;
|
|
148
|
+
y: number;
|
|
149
|
+
z: number;
|
|
150
|
+
};
|
|
151
|
+
export type GeoPoint = {
|
|
152
|
+
lat: number;
|
|
153
|
+
lng: number;
|
|
154
|
+
};
|
|
129
155
|
export type Exid = string;
|
|
130
156
|
export type EntityByExid<Entity extends unknown> = Record<Exid, Entity>;
|
|
131
157
|
export type BatteryVoltage = {
|
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,14 +1,46 @@
|
|
|
1
|
-
import { BBox, BoundingBox, DateType, Schedule,
|
|
1
|
+
import { BBox, BoundingBox, DateType, Schedule, ScheduleLowercase, CameraExid, DetectionModel, PaginationParams, PpeLabel, ProjectExid, CameraDateRangeFilter, CameraFeatureFlag, TimelineDateInterval, Camera, AdminCamera, _360FloorV2, _360FloorId, PaginatedItems, DateRangeFilter, TuplePoint2D } from "@evercam/api/types";
|
|
2
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 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[];
|
|
12
44
|
export declare enum SmartSearchComponentType {
|
|
13
45
|
Condition = "condition",
|
|
14
46
|
Object = "object",
|
|
@@ -20,14 +52,10 @@ export declare enum SmartSearchComponentType {
|
|
|
20
52
|
Heatmap = "heatmap"
|
|
21
53
|
}
|
|
22
54
|
export type SmartSearchPartType = SmartSearchComponentType | SmartSearchCondition;
|
|
23
|
-
export type SmartSearchDateRange = {
|
|
24
|
-
start: DateType;
|
|
25
|
-
end: DateType;
|
|
26
|
-
};
|
|
27
55
|
export type SmartSearchComponentData = {
|
|
28
56
|
id: string;
|
|
29
57
|
type: SmartSearchComponentType;
|
|
30
|
-
parts:
|
|
58
|
+
parts: SmartSearchPartOrGroup[];
|
|
31
59
|
};
|
|
32
60
|
export declare enum SmartSearchCondition {
|
|
33
61
|
InArea = "in_area",
|
|
@@ -38,19 +66,35 @@ export type SmartSearchConditionData = {
|
|
|
38
66
|
condition: SmartSearchCondition;
|
|
39
67
|
value: string | BoundingBox | DetectionLabel | Date;
|
|
40
68
|
};
|
|
41
|
-
|
|
42
|
-
type: SmartSearchConditionTypes;
|
|
69
|
+
type SmartSearchBackendConditionBase = {
|
|
43
70
|
target: SmartSearchTargets;
|
|
44
|
-
|
|
45
|
-
|
|
71
|
+
};
|
|
72
|
+
export type SmartSearchSelectionCondition = SmartSearchBackendConditionBase & {
|
|
73
|
+
type: SmartSearchConditionTypes.Selection;
|
|
74
|
+
operator: SmartSearchOperators;
|
|
75
|
+
attribute: string;
|
|
46
76
|
value: string | number | string[];
|
|
47
|
-
|
|
77
|
+
};
|
|
78
|
+
export type SmartSearchSpatialCondition = SmartSearchBackendConditionBase & {
|
|
79
|
+
type: SmartSearchConditionTypes.Spatial;
|
|
80
|
+
operator: SmartSearchOperators;
|
|
81
|
+
reference: {
|
|
48
82
|
target: SmartSearchTargets;
|
|
49
83
|
attribute: string;
|
|
50
84
|
value: string | number | string[];
|
|
51
85
|
};
|
|
52
|
-
polygon?: BBox;
|
|
53
86
|
};
|
|
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;
|
|
54
98
|
export type SmartSearchBackendQuery = {
|
|
55
99
|
returnTargets: SmartSearchTargets[];
|
|
56
100
|
rulesLogic: SmartSearchOperatorType;
|
|
@@ -59,6 +103,7 @@ export type SmartSearchBackendQuery = {
|
|
|
59
103
|
conditions: SmartSearchBackendQueryCondition[];
|
|
60
104
|
}[];
|
|
61
105
|
returnType: SmartSearchReturnType;
|
|
106
|
+
timeSchedule?: Schedule;
|
|
62
107
|
};
|
|
63
108
|
export declare enum SmartSearchTargets {
|
|
64
109
|
Tracking = "tracking",
|
|
@@ -93,28 +138,24 @@ export declare enum SmartSearchConditionTypes {
|
|
|
93
138
|
Near = "near",
|
|
94
139
|
Far = "far"
|
|
95
140
|
}
|
|
96
|
-
export type SmartSearchOptionValue = DetectionLabel | SmartSearchOperatorType | SmartSearchConditionData;
|
|
141
|
+
export type SmartSearchOptionValue = DetectionLabel | SmartSearchOperatorType | SmartSearchConditionData | DateRangeFilter | SiteAnalyticsView;
|
|
97
142
|
export type SmartSearchBackendQueryPayload = {
|
|
98
|
-
cameraExid: string;
|
|
99
143
|
name: string;
|
|
100
144
|
description: string;
|
|
101
|
-
query:
|
|
102
|
-
req: SmartSearchBackendQuery;
|
|
103
|
-
timeSchedule?: Schedule | undefined;
|
|
104
|
-
};
|
|
145
|
+
query: SmartSearchBackendQuery;
|
|
105
146
|
fromDate?: DateType;
|
|
106
147
|
toDate?: DateType;
|
|
107
148
|
author: string;
|
|
108
149
|
createdAt: DateType;
|
|
109
|
-
params?:
|
|
150
|
+
params?: {
|
|
151
|
+
start: string;
|
|
152
|
+
end: string;
|
|
153
|
+
};
|
|
110
154
|
};
|
|
111
155
|
export type SavedQuery = {
|
|
112
156
|
description: string;
|
|
113
157
|
id: number;
|
|
114
|
-
query:
|
|
115
|
-
req: SmartSearchBackendQuery;
|
|
116
|
-
timeSchedule?: Schedule | undefined;
|
|
117
|
-
};
|
|
158
|
+
query: SmartSearchBackendQuery;
|
|
118
159
|
params: Record<string, string>;
|
|
119
160
|
components?: Omit<SmartSearchPart, "id">[];
|
|
120
161
|
toDate?: DateType;
|
|
@@ -127,8 +168,8 @@ export type SavedQuery = {
|
|
|
127
168
|
export type DetectionsRequestParams = {
|
|
128
169
|
projectExid: ProjectExid;
|
|
129
170
|
cameraExids: CameraExid[];
|
|
130
|
-
fromDate?:
|
|
131
|
-
toDate?:
|
|
171
|
+
fromDate?: string;
|
|
172
|
+
toDate?: string;
|
|
132
173
|
labels?: Array<DetectionLabel | PpeLabel>;
|
|
133
174
|
modelId?: DetectionModel;
|
|
134
175
|
trackId?: number;
|
|
@@ -143,7 +184,7 @@ export type DetectionsExportRequestParams = DetectionsRequestParams & {
|
|
|
143
184
|
directDownload?: boolean;
|
|
144
185
|
};
|
|
145
186
|
export type SmartSearchHeatmapPoint = {
|
|
146
|
-
coordinates:
|
|
187
|
+
coordinates: TuplePoint2D;
|
|
147
188
|
detectionsCount: number;
|
|
148
189
|
};
|
|
149
190
|
export type SmartSearchHeatmapData = {
|
|
@@ -165,14 +206,17 @@ export declare enum SiteAnalyticsViewType {
|
|
|
165
206
|
Camera = "camera",
|
|
166
207
|
ThreeSixty = "360"
|
|
167
208
|
}
|
|
168
|
-
type
|
|
169
|
-
|
|
170
|
-
|
|
209
|
+
export type SiteAnalyticsCameraView = {
|
|
210
|
+
type: SiteAnalyticsViewType.Camera;
|
|
211
|
+
id: CameraExid;
|
|
212
|
+
value: Camera | AdminCamera;
|
|
171
213
|
};
|
|
172
|
-
export type
|
|
173
|
-
type: SiteAnalyticsViewType;
|
|
174
|
-
|
|
214
|
+
export type SiteAnalytics360View = {
|
|
215
|
+
type: SiteAnalyticsViewType.ThreeSixty;
|
|
216
|
+
id: _360FloorId;
|
|
217
|
+
value: _360FloorV2;
|
|
175
218
|
};
|
|
219
|
+
export type SiteAnalyticsView = SiteAnalyticsCameraView | SiteAnalytics360View;
|
|
176
220
|
export type SiteAnalyticsProcessingStatusPayload = {
|
|
177
221
|
projectExid?: ProjectExid;
|
|
178
222
|
fromDate?: DateType;
|
|
@@ -197,7 +241,7 @@ export type SmartSearchRequestPayload = {
|
|
|
197
241
|
fromDate?: string;
|
|
198
242
|
toDate?: string;
|
|
199
243
|
page?: number;
|
|
200
|
-
|
|
244
|
+
limit?: number;
|
|
201
245
|
threshold?: number;
|
|
202
246
|
};
|
|
203
247
|
type SmartSearchResultItemBase = {
|
|
@@ -231,11 +275,7 @@ type SmartSearchResultItemByType = {
|
|
|
231
275
|
[SmartSearchReturnType.FirstLastSeen]: SmartSearchResultItemFirstLastSeen;
|
|
232
276
|
[SmartSearchReturnType.All]: SmartSearchResultItemAll;
|
|
233
277
|
};
|
|
234
|
-
export type SmartSearchResponse<R extends SmartSearchReturnType = SmartSearchReturnType.FirstLastSeen> =
|
|
235
|
-
data: PaginatedItems<SmartSearchResultItemByType[R]>;
|
|
236
|
-
message?: string;
|
|
237
|
-
success: boolean;
|
|
238
|
-
};
|
|
278
|
+
export type SmartSearchResponse<R extends SmartSearchReturnType = SmartSearchReturnType.FirstLastSeen> = PaginatedItems<SmartSearchResultItemByType[R]>;
|
|
239
279
|
export type SmartSearchMinifiedPart = {
|
|
240
280
|
t: SmartSearchComponentType;
|
|
241
281
|
v: unknown;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { ForgeView } from "@evercam/api/types/360";
|
|
2
|
+
import { Point2D, Point3D } from "@evercam/api/types/shared";
|
|
3
|
+
export declare enum SiteViewSoftwareType {
|
|
4
|
+
Revit = "Revit",
|
|
5
|
+
Navisworks = "Navisworks",
|
|
6
|
+
Drone = "Drone",
|
|
7
|
+
Synchro = "Synchro"
|
|
8
|
+
}
|
|
9
|
+
export declare enum SiteViewerType {
|
|
10
|
+
ITwin = "iTwin",
|
|
11
|
+
Cesium = "Cesium",
|
|
12
|
+
Forge = "Forge"
|
|
13
|
+
}
|
|
14
|
+
export type SiteViewCameraListItem = {
|
|
15
|
+
projectId: string;
|
|
16
|
+
projectName: string;
|
|
17
|
+
software: SiteViewSoftwareType;
|
|
18
|
+
type: SiteViewerType;
|
|
19
|
+
uniqueId: string;
|
|
20
|
+
integrationType?: string;
|
|
21
|
+
};
|
|
22
|
+
export type ForgeUrn = {
|
|
23
|
+
displayName: string;
|
|
24
|
+
urn: string;
|
|
25
|
+
isModelHostedByEvercamACC?: boolean;
|
|
26
|
+
};
|
|
27
|
+
export type ForgeAccAlignmentData = {
|
|
28
|
+
bbox: {
|
|
29
|
+
min: Point2D;
|
|
30
|
+
max: Point2D;
|
|
31
|
+
};
|
|
32
|
+
transform: number[];
|
|
33
|
+
};
|
|
34
|
+
export type TimelineItem = {
|
|
35
|
+
taskNumber: number;
|
|
36
|
+
taskID: string;
|
|
37
|
+
actualStartDate: string;
|
|
38
|
+
actualEndDate: string;
|
|
39
|
+
plannedStartDate: string;
|
|
40
|
+
plannedEndDate: string;
|
|
41
|
+
objectIDs: number[];
|
|
42
|
+
};
|
|
43
|
+
export type ForgeMarkerTransform = {
|
|
44
|
+
default: {
|
|
45
|
+
position: Point3D;
|
|
46
|
+
type: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
export type ForgeMarker = {
|
|
50
|
+
name: string;
|
|
51
|
+
cameraExid: string;
|
|
52
|
+
transforms: ForgeMarkerTransform;
|
|
53
|
+
};
|
|
54
|
+
export type ForgeProjectData = {
|
|
55
|
+
urns?: ForgeUrn[];
|
|
56
|
+
accDrawingsAlignments?: Record<string, ForgeAccAlignmentData>;
|
|
57
|
+
timeline?: TimelineItem[];
|
|
58
|
+
savedView?: ForgeView;
|
|
59
|
+
markers?: ForgeMarker[];
|
|
60
|
+
};
|
|
61
|
+
export type ItwinModel = {
|
|
62
|
+
name: string;
|
|
63
|
+
iTwinId: string;
|
|
64
|
+
iModelId: string;
|
|
65
|
+
changeSetId?: string;
|
|
66
|
+
isIModel: boolean;
|
|
67
|
+
height?: number;
|
|
68
|
+
cesiumId?: number;
|
|
69
|
+
markerDistanceThreshold: number;
|
|
70
|
+
};
|
|
71
|
+
export type ItwinProjectData = {
|
|
72
|
+
models: ItwinModel[];
|
|
73
|
+
};
|
|
@@ -1,12 +1,15 @@
|
|
|
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;
|
|
5
5
|
status: SnapshotExtractionStatus;
|
|
6
6
|
};
|
|
7
7
|
export declare enum SnapshotExtractionStatus {
|
|
8
|
+
Cancelling = "canceling",
|
|
9
|
+
Cancelled = "cancelled",
|
|
8
10
|
Completed = "completed",
|
|
9
11
|
Failed = "failed",
|
|
12
|
+
Pending = "pending",
|
|
10
13
|
Processing = "processing"
|
|
11
14
|
}
|
|
12
15
|
export declare enum SnapshotExtractionType {
|
|
@@ -30,6 +33,8 @@ export type SnapshotExtraction = {
|
|
|
30
33
|
injectTo_cr: Boolean;
|
|
31
34
|
schedule: Schedule;
|
|
32
35
|
created_at: DateType;
|
|
36
|
+
jpegCount?: number;
|
|
37
|
+
obanJobId?: number;
|
|
33
38
|
};
|
|
34
39
|
export type SnapshotTestPayload = {
|
|
35
40
|
cameraExid?: CameraExid;
|
|
@@ -42,18 +47,58 @@ export type SnapshotTestResponse = {
|
|
|
42
47
|
status: string;
|
|
43
48
|
data: string;
|
|
44
49
|
};
|
|
50
|
+
export type SnapshotEmailDeliveryRequestPayload = {
|
|
51
|
+
snapshot: string;
|
|
52
|
+
recipients?: string[];
|
|
53
|
+
message?: string;
|
|
54
|
+
};
|
|
55
|
+
export type SnapshotEmailDeliveryResponsePayload = {
|
|
56
|
+
warning?: string;
|
|
57
|
+
};
|
|
45
58
|
export type DeleteSnapshotQueryParams = {
|
|
46
59
|
fromDate: DateType;
|
|
47
60
|
toDate: DateType;
|
|
48
61
|
adminEmail: string;
|
|
49
62
|
adminFullname: string;
|
|
50
63
|
};
|
|
51
|
-
export type
|
|
64
|
+
export type SnapshotTransfer = {
|
|
65
|
+
id: number;
|
|
66
|
+
sourceCamera: SnapshotTransferCamera;
|
|
67
|
+
targetCamera: SnapshotTransferCamera;
|
|
68
|
+
fromDate: DateType;
|
|
69
|
+
toDate: DateType;
|
|
70
|
+
overwriteExisting?: boolean | null;
|
|
71
|
+
deleteSource?: boolean | null;
|
|
72
|
+
requestor: SnapshotTransferRequestor;
|
|
73
|
+
status: SnapshotTransferStatus;
|
|
74
|
+
insertedAt: DateType;
|
|
75
|
+
attempts?: number | null;
|
|
76
|
+
errorMessage?: string | null;
|
|
77
|
+
snapshotsTransferred?: number | null;
|
|
78
|
+
};
|
|
79
|
+
export type SnapshotTransferCamera = {
|
|
80
|
+
id: number;
|
|
81
|
+
exid: CameraExid;
|
|
82
|
+
name: string;
|
|
83
|
+
};
|
|
84
|
+
export type SnapshotTransferRequestor = {
|
|
85
|
+
email: string;
|
|
86
|
+
firstname: string;
|
|
87
|
+
lastname: string;
|
|
88
|
+
};
|
|
89
|
+
export declare enum SnapshotTransferStatus {
|
|
90
|
+
Completed = "completed",
|
|
91
|
+
Failed = "failed",
|
|
92
|
+
Processing = "processing",
|
|
93
|
+
Pending = "pending",
|
|
94
|
+
Cancelled = "cancelled"
|
|
95
|
+
}
|
|
96
|
+
export type TransferCloudRecordingsQueryParams = PaginationParams & {
|
|
52
97
|
targetCameraExid: CameraExid;
|
|
53
98
|
fromDate: DateType;
|
|
54
99
|
toDate: DateType;
|
|
55
|
-
|
|
56
|
-
|
|
100
|
+
overwriteExisting?: boolean;
|
|
101
|
+
deleteSource?: boolean;
|
|
57
102
|
adminEmail?: string;
|
|
58
103
|
adminFullname?: string;
|
|
59
104
|
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { DateType } from "@evercam/api/types";
|
|
2
|
+
export type StorageProvider = {
|
|
3
|
+
id?: number;
|
|
4
|
+
cameraId: number;
|
|
5
|
+
type: string;
|
|
6
|
+
provider: string;
|
|
7
|
+
url: string;
|
|
8
|
+
startDate: DateType;
|
|
9
|
+
endDate: DateType;
|
|
10
|
+
config: Record<string, any>;
|
|
11
|
+
insertedAt?: DateType;
|
|
12
|
+
};
|
|
13
|
+
export type StorageProvidersResponsePayload = {
|
|
14
|
+
providers: StorageProvider[];
|
|
15
|
+
};
|
|
16
|
+
export declare enum ProjectStorageProvider {
|
|
17
|
+
Seaweedfs = "seaweedfs",
|
|
18
|
+
S3 = "s3"
|
|
19
|
+
}
|
|
@@ -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;
|
package/dist/api/types/tag.d.ts
CHANGED
package/dist/api/types/time.d.ts
CHANGED
|
@@ -1,25 +1,7 @@
|
|
|
1
1
|
import { Moment } from "moment-timezone";
|
|
2
2
|
export type DateType = Date | string | number;
|
|
3
3
|
export type ExtendedDateType = Moment | DateType;
|
|
4
|
-
type YYYY = number;
|
|
5
|
-
type MM = number;
|
|
6
|
-
type DD = number;
|
|
7
|
-
type HH = number;
|
|
8
|
-
type mm = number;
|
|
9
|
-
type ss = number;
|
|
10
|
-
type microS = number;
|
|
11
|
-
export type Date_YYYY = `${YYYY}` | string;
|
|
12
|
-
export type Date_YYYY_MM = `${YYYY}-${MM}` | string;
|
|
13
|
-
export type Date_YYYY_MM_DD = `${YYYY}-${MM}-${DD}` | string;
|
|
14
|
-
export type Time_HH_mm_ss = `${HH}:${mm}:${ss}` | string;
|
|
15
|
-
export type Date_HH = `${HH}` | string;
|
|
16
|
-
export type DateTime = `${Date_YYYY_MM_DD}T${Time_HH_mm_ss}` | string;
|
|
17
|
-
export type DateTime_tz = `${Date_YYYY_MM_DD}T${Time_HH_mm_ss}${"+" | "-"}${HH}:${mm}` | string;
|
|
18
|
-
export type DateTime_Z = `${Date_YYYY_MM_DD}T${Time_HH_mm_ss}Z` | string;
|
|
19
|
-
export type DateTime_Z_micros = `${Date_YYYY_MM_DD}T${Time_HH_mm_ss}.${microS}Z` | string;
|
|
20
|
-
export type DateTimeSpaceSeparated = `${Date_YYYY_MM_DD} ${Time_HH_mm_ss}` | string;
|
|
21
4
|
export type DateRangeFilter = {
|
|
22
5
|
fromDate: DateType;
|
|
23
6
|
toDate: DateType;
|
|
24
7
|
};
|
|
25
|
-
export {};
|