@evercam/api 1.0.0-bc158a880 → 1.0.0-bdf31a1d5
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 +22 -12
- package/dist/api/api/aiApi.d.ts +35 -3
- package/dist/api/api/authzApi.d.ts +1 -2
- package/dist/api/api/evercamApi.d.ts +25 -8
- package/dist/api/api/ingestApi.d.ts +51 -44
- package/dist/api/types/360.d.ts +65 -51
- package/dist/api/types/aiConfigs.d.ts +154 -0
- package/dist/api/types/analytics.d.ts +34 -15
- package/dist/api/types/anpr.d.ts +31 -2
- package/dist/api/types/auditLogs.d.ts +18 -0
- package/dist/api/types/authz.d.ts +1 -0
- package/dist/api/types/axios.d.ts +9 -8
- package/dist/api/types/bim.d.ts +25 -0
- package/dist/api/types/camera.d.ts +14 -25
- package/dist/api/types/comments.d.ts +8 -6
- package/dist/api/types/connector.d.ts +1 -0
- package/dist/api/types/detections.d.ts +2 -10
- 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 +7 -11
- package/dist/api/types/gateReportManagement.d.ts +175 -0
- package/dist/api/types/index.d.ts +3 -0
- package/dist/api/types/ingest.d.ts +17 -3
- package/dist/api/types/map.d.ts +12 -0
- package/dist/api/types/media.d.ts +6 -1
- package/dist/api/types/planner.d.ts +97 -0
- package/dist/api/types/project.d.ts +8 -3
- package/dist/api/types/recording.d.ts +6 -9
- package/dist/api/types/roi.d.ts +4 -3
- package/dist/api/types/shared.d.ts +19 -0
- package/dist/api/types/siteAnalytics.d.ts +3 -3
- package/dist/api/types/siteView.d.ts +73 -0
- package/dist/api/types/snapshots.d.ts +48 -3
- package/dist/api/types/timelapse.d.ts +6 -2
- package/dist/api/types/user.d.ts +1 -2
- package/dist/api/utils.d.ts +0 -1
- package/dist/index.js +1399 -717
- 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 +68 -9
- package/dist/shared/types/customDataTableFilters.d.ts +10 -0
- package/dist/shared/types/imagePlayer.d.ts +8 -1
- package/dist/shared/types/index.d.ts +2 -0
- package/dist/shared/types/rbac.d.ts +67 -0
- package/package.json +4 -2
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
import { GeoPoint, TuplePoint2D } from "./shared";
|
|
2
|
+
import { MapType } from "./map";
|
|
3
|
+
export type PlannerListItem = {
|
|
4
|
+
id: string;
|
|
5
|
+
projectId: string;
|
|
6
|
+
projectName: string;
|
|
7
|
+
projectLocation: string;
|
|
8
|
+
createdDate: string;
|
|
9
|
+
updatedDate: string;
|
|
10
|
+
owner?: string;
|
|
11
|
+
lastUpdatedBy?: string;
|
|
12
|
+
camerasCount?: number;
|
|
13
|
+
hasPlan?: boolean;
|
|
14
|
+
thumbnailUrl?: string;
|
|
15
|
+
projectMapType?: MapType;
|
|
16
|
+
sessionId?: string;
|
|
17
|
+
};
|
|
18
|
+
export type PolygonPath = TuplePoint2D[];
|
|
19
|
+
export type PolygonCoordinates = PolygonPath[];
|
|
20
|
+
export interface GeoJSONPolygon {
|
|
21
|
+
type: "Polygon";
|
|
22
|
+
coordinates: PolygonCoordinates;
|
|
23
|
+
}
|
|
24
|
+
export declare enum PlannerUrlParams {
|
|
25
|
+
SitePlanId = "site_plan_id",
|
|
26
|
+
IsNewSitePlan = "is_new_site_plan",
|
|
27
|
+
IsBoundsMode = "is_bounds_mode",
|
|
28
|
+
ProjectPosition = "project_position",
|
|
29
|
+
DealId = "deal_id"
|
|
30
|
+
}
|
|
1
31
|
export declare enum EDistortImageModes {
|
|
2
32
|
FreeRotate = "freeRotate",
|
|
3
33
|
Lock = "lock",
|
|
@@ -33,3 +63,70 @@ export declare enum ERoles {
|
|
|
33
63
|
Admin = "admin",
|
|
34
64
|
User = "user"
|
|
35
65
|
}
|
|
66
|
+
export type PlannerOverlay = {
|
|
67
|
+
imageUrl?: string;
|
|
68
|
+
corners?: {
|
|
69
|
+
topLeft: GeoPoint;
|
|
70
|
+
topRight: GeoPoint;
|
|
71
|
+
bottomLeft: GeoPoint;
|
|
72
|
+
bottomRight: GeoPoint;
|
|
73
|
+
} | null;
|
|
74
|
+
};
|
|
75
|
+
export type PlannerCameraMarker = {
|
|
76
|
+
name?: string;
|
|
77
|
+
location?: GeoPoint;
|
|
78
|
+
heading?: number;
|
|
79
|
+
fovAngle?: number;
|
|
80
|
+
fovRadius?: number;
|
|
81
|
+
isVisible?: boolean;
|
|
82
|
+
color?: string;
|
|
83
|
+
};
|
|
84
|
+
export type SitePlanBounds = {
|
|
85
|
+
northEast: GeoPoint;
|
|
86
|
+
southWest: GeoPoint;
|
|
87
|
+
};
|
|
88
|
+
export type SitePlan = {
|
|
89
|
+
id?: string;
|
|
90
|
+
projectId?: string;
|
|
91
|
+
owner?: string;
|
|
92
|
+
lastUpdatedBy?: string;
|
|
93
|
+
projectName?: string;
|
|
94
|
+
projectLocation?: string;
|
|
95
|
+
projectMapType?: EMapTypes;
|
|
96
|
+
projectBounds?: SitePlanBounds;
|
|
97
|
+
overlay?: PlannerOverlay;
|
|
98
|
+
markers?: PlannerCameraMarker[];
|
|
99
|
+
thumbnailUrl?: string;
|
|
100
|
+
createdDate?: string;
|
|
101
|
+
updatedDate?: string;
|
|
102
|
+
};
|
|
103
|
+
export interface IDrawControl {
|
|
104
|
+
_toolbars: {
|
|
105
|
+
draw: {
|
|
106
|
+
_activeMode: {
|
|
107
|
+
handler: {
|
|
108
|
+
disable(): void;
|
|
109
|
+
completeShape(): void;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
_modes: {
|
|
113
|
+
polygon: {
|
|
114
|
+
handler: {
|
|
115
|
+
enable(): void;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
edit: {
|
|
121
|
+
_modes: {
|
|
122
|
+
edit: {
|
|
123
|
+
handler: {
|
|
124
|
+
enable(): void;
|
|
125
|
+
disable(): void;
|
|
126
|
+
save(): void;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AdminCamera, Camera, CameraExid, DateType, EntityByExid, Exid, PaginationParams } from "@evercam/api/types";
|
|
1
|
+
import { AdminCamera, Camera, CameraExid, DateType, EntityByExid, Exid, Operator, PaginationParams } from "@evercam/api/types";
|
|
2
2
|
export type ProjectExid = Exid;
|
|
3
3
|
export type ProjectsByExid = EntityByExid<Project>;
|
|
4
4
|
export type Project = {
|
|
@@ -62,7 +62,8 @@ export declare enum ProjectArchiveTier {
|
|
|
62
62
|
Full = "Full",
|
|
63
63
|
Partial = "Partial",
|
|
64
64
|
Minimal = "Minimal",
|
|
65
|
-
ScheduledForDeletion = "Scheduled for Deletion"
|
|
65
|
+
ScheduledForDeletion = "Scheduled for Deletion",
|
|
66
|
+
No = "No"
|
|
66
67
|
}
|
|
67
68
|
export type UpdateCameraRestrictionPayload = {
|
|
68
69
|
isAccessRestricted?: boolean;
|
|
@@ -109,6 +110,7 @@ export type ProjectsQueryParams = PaginationParams & {
|
|
|
109
110
|
status: ProjectStatus;
|
|
110
111
|
cameras: string;
|
|
111
112
|
featureFlags: Array<ProjectFeatureFlag>;
|
|
113
|
+
featureFlagsOperator?: Operator;
|
|
112
114
|
archived: string;
|
|
113
115
|
};
|
|
114
116
|
export type ProjectCreateRequestPayload = {
|
|
@@ -163,6 +165,7 @@ export type ProjectRole = {
|
|
|
163
165
|
};
|
|
164
166
|
export type ProjectMember = {
|
|
165
167
|
id: string;
|
|
168
|
+
key?: string;
|
|
166
169
|
email: string;
|
|
167
170
|
fullname: string;
|
|
168
171
|
lastSeenAt?: string;
|
|
@@ -172,7 +175,9 @@ export type ProjectMember = {
|
|
|
172
175
|
resourceId: string;
|
|
173
176
|
roleId: number;
|
|
174
177
|
}>;
|
|
175
|
-
company?:
|
|
178
|
+
company?: {
|
|
179
|
+
name: string;
|
|
180
|
+
} | null;
|
|
176
181
|
};
|
|
177
182
|
export type ProjectInvite = {
|
|
178
183
|
id?: string;
|
|
@@ -5,18 +5,20 @@ export type Snapshot = {
|
|
|
5
5
|
data: string;
|
|
6
6
|
status?: string;
|
|
7
7
|
};
|
|
8
|
-
export type
|
|
8
|
+
export type SnapshotRequestPayload = {
|
|
9
9
|
apiKey?: string;
|
|
10
10
|
apiId?: string;
|
|
11
11
|
token?: string;
|
|
12
12
|
cancelToken?: object;
|
|
13
13
|
includeImage?: boolean;
|
|
14
|
+
view?: boolean;
|
|
14
15
|
};
|
|
15
16
|
export type AvailableDaysRequestPayload = {
|
|
16
17
|
cameraId: string;
|
|
17
18
|
year: string;
|
|
18
19
|
month: string;
|
|
19
20
|
payload?: ApiCredentials;
|
|
21
|
+
cancelToken?: CancelToken;
|
|
20
22
|
};
|
|
21
23
|
export type AvailableDaysResponsePayload = {
|
|
22
24
|
days: Array<number>;
|
|
@@ -76,6 +78,7 @@ export declare enum CloudRecordingDuration {
|
|
|
76
78
|
Month = 30,
|
|
77
79
|
ThreeMonths = 90
|
|
78
80
|
}
|
|
81
|
+
export declare const CloudRecordingDurationLabel: Record<CloudRecordingDuration, string>;
|
|
79
82
|
export declare enum CloudRecordingStatus {
|
|
80
83
|
On = "on",
|
|
81
84
|
Off = "off",
|
|
@@ -103,13 +106,6 @@ export declare enum SnapshotExtractionInterval {
|
|
|
103
106
|
}
|
|
104
107
|
export declare enum VpnServer {
|
|
105
108
|
None = "None",
|
|
106
|
-
OpenVPN1 = "OpenVPN1",
|
|
107
|
-
OpenVPN2 = "OpenVPN2",
|
|
108
|
-
OpenVPN3 = "OpenVPN3",
|
|
109
|
-
OpenVPN4 = "OpenVPN4",
|
|
110
|
-
OpenVPN5 = "OpenVPN5",
|
|
111
|
-
PPTP1 = "PPTP1",
|
|
112
|
-
PPTP2 = "PPTP2",
|
|
113
109
|
WireGuard1 = "WireGuard1",
|
|
114
110
|
WireGuard2 = "WireGuard2",
|
|
115
111
|
WireGuard3 = "WireGuard3",
|
|
@@ -119,5 +115,6 @@ export declare enum VpnServer {
|
|
|
119
115
|
WireGuard7 = "WireGuard7",
|
|
120
116
|
WireGuard8 = "WireGuard8",
|
|
121
117
|
WireGuard9 = "WireGuard9",
|
|
122
|
-
WireGuard10 = "WireGuard10"
|
|
118
|
+
WireGuard10 = "WireGuard10",
|
|
119
|
+
WgHub = "WgHub"
|
|
123
120
|
}
|
package/dist/api/types/roi.d.ts
CHANGED
|
@@ -3,14 +3,14 @@ export declare enum RoiType {
|
|
|
3
3
|
AnprContext = "anpr_context",
|
|
4
4
|
ExclusionZone = "exclusion_zone",
|
|
5
5
|
WorkflowArea = "workflow_area",
|
|
6
|
-
SiteAnalytics = "site_analytics"
|
|
6
|
+
SiteAnalytics = "site_analytics",
|
|
7
|
+
Ppe = "ppe_roi"
|
|
7
8
|
}
|
|
8
9
|
export declare enum RoiShapeType {
|
|
9
10
|
Polygon = "polygon",
|
|
10
11
|
Line = "line",
|
|
11
12
|
Direction = "direction",
|
|
12
|
-
Rectangle = "rectangle"
|
|
13
|
-
ROIBox = "ROIBox"
|
|
13
|
+
Rectangle = "rectangle"
|
|
14
14
|
}
|
|
15
15
|
export type RoiShape = {
|
|
16
16
|
id: number | null;
|
|
@@ -19,6 +19,7 @@ export type RoiShape = {
|
|
|
19
19
|
x2: number;
|
|
20
20
|
y1: number;
|
|
21
21
|
y2: number;
|
|
22
|
+
points?: [number, number][];
|
|
22
23
|
};
|
|
23
24
|
export declare enum RoiDirection {
|
|
24
25
|
Arrived = "arrived",
|
|
@@ -1,4 +1,8 @@
|
|
|
1
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}`;
|
|
@@ -133,6 +137,21 @@ export interface JSON {
|
|
|
133
137
|
stringify<T>(value: T, replacer?: (key: string, value: unknown) => unknown, space?: string | number): string & Stringified<T>;
|
|
134
138
|
parse<T>(text: Stringified<T>, reviver?: (key: unknown, value: unknown) => unknown): T;
|
|
135
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
|
+
};
|
|
136
155
|
export type Exid = string;
|
|
137
156
|
export type EntityByExid<Entity extends unknown> = Record<Exid, Entity>;
|
|
138
157
|
export type BatteryVoltage = {
|
|
@@ -1,4 +1,4 @@
|
|
|
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";
|
|
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",
|
|
@@ -184,7 +184,7 @@ export type DetectionsExportRequestParams = DetectionsRequestParams & {
|
|
|
184
184
|
directDownload?: boolean;
|
|
185
185
|
};
|
|
186
186
|
export type SmartSearchHeatmapPoint = {
|
|
187
|
-
coordinates:
|
|
187
|
+
coordinates: TuplePoint2D;
|
|
188
188
|
detectionsCount: number;
|
|
189
189
|
};
|
|
190
190
|
export type SmartSearchHeatmapData = {
|
|
@@ -241,7 +241,7 @@ export type SmartSearchRequestPayload = {
|
|
|
241
241
|
fromDate?: string;
|
|
242
242
|
toDate?: string;
|
|
243
243
|
page?: number;
|
|
244
|
-
|
|
244
|
+
limit?: number;
|
|
245
245
|
threshold?: number;
|
|
246
246
|
};
|
|
247
247
|
type SmartSearchResultItemBase = {
|
|
@@ -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
|
+
};
|
|
@@ -5,8 +5,11 @@ export type SnapshotExtractionQyeryParams = PaginationParams & {
|
|
|
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
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DateType, Schedule } from "@evercam/api/types";
|
|
1
|
+
import { DateType, Point2D, Schedule } from "@evercam/api/types";
|
|
2
2
|
export declare enum TimelapseStatus {
|
|
3
3
|
Pending = 11,
|
|
4
4
|
Completed = 5,
|
|
@@ -7,7 +7,8 @@ export declare enum TimelapseStatus {
|
|
|
7
7
|
export declare enum TimelapseDuration {
|
|
8
8
|
ThirtySeconds = 30,
|
|
9
9
|
SixtySeconds = 60,
|
|
10
|
-
NintySeconds = 90
|
|
10
|
+
NintySeconds = 90,
|
|
11
|
+
TwoMinutes = 120
|
|
11
12
|
}
|
|
12
13
|
export type TimelapseVideoOptions = {
|
|
13
14
|
width?: number;
|
|
@@ -15,7 +16,9 @@ export type TimelapseVideoOptions = {
|
|
|
15
16
|
removeTimestamp: boolean;
|
|
16
17
|
smoothTransition: boolean;
|
|
17
18
|
evercamWatermark: boolean;
|
|
19
|
+
sectionBlur?: boolean;
|
|
18
20
|
timestampPosition?: TimestampPositionCoordinates;
|
|
21
|
+
blurRegions?: BlurRegionCoordinates[];
|
|
19
22
|
};
|
|
20
23
|
export type TimestampPositionCoordinates = {
|
|
21
24
|
x: number;
|
|
@@ -23,6 +26,7 @@ export type TimestampPositionCoordinates = {
|
|
|
23
26
|
w: number;
|
|
24
27
|
h: number;
|
|
25
28
|
};
|
|
29
|
+
export type BlurRegionCoordinates = Point2D[];
|
|
26
30
|
export type TimelapseLogoOptions = {
|
|
27
31
|
id?: number;
|
|
28
32
|
x: number;
|
package/dist/api/types/user.d.ts
CHANGED
|
@@ -55,7 +55,6 @@ export declare enum UserFeatureFlag {
|
|
|
55
55
|
CompanyAdmin = "company-admin",
|
|
56
56
|
VideoWalls = "video-walls",
|
|
57
57
|
MassCameraSharing = "mass-camera-sharing",
|
|
58
|
-
Copilot = "copilot",
|
|
59
58
|
ProjectSharing = "project-sharing"
|
|
60
59
|
}
|
|
61
60
|
export type ProjectUser = User & {
|
|
@@ -177,7 +176,6 @@ export type SessionActivitiesListRequestPayload = {
|
|
|
177
176
|
};
|
|
178
177
|
export type SignupUserRequestPayload = {
|
|
179
178
|
telephone: string;
|
|
180
|
-
token: string;
|
|
181
179
|
firstname: string;
|
|
182
180
|
lastname: string;
|
|
183
181
|
email: string;
|
|
@@ -339,6 +337,7 @@ export type ProjectUserWithRole = {
|
|
|
339
337
|
name: string;
|
|
340
338
|
exid: string;
|
|
341
339
|
};
|
|
340
|
+
persona: Persona;
|
|
342
341
|
permissions: string[];
|
|
343
342
|
role: Role;
|
|
344
343
|
subRoles: RoleSubRole[];
|
package/dist/api/utils.d.ts
CHANGED
|
@@ -7,4 +7,3 @@ export declare const toQueryString: <T extends Record<string, unknown>>(paramsOb
|
|
|
7
7
|
forceArrayBrackets?: boolean | undefined;
|
|
8
8
|
}) => string | undefined;
|
|
9
9
|
export declare function queryStringToObject(queryString?: string): QueryParams;
|
|
10
|
-
export declare function capitalizeFirstLetter(inputString: string): string;
|