@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
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;
|
package/dist/api/types/map.d.ts
CHANGED
|
@@ -2,3 +2,15 @@ export declare enum MapType {
|
|
|
2
2
|
Hybrid = "hybrid",
|
|
3
3
|
Terrain = "terrain"
|
|
4
4
|
}
|
|
5
|
+
export type MapView = {
|
|
6
|
+
east?: number;
|
|
7
|
+
floorID?: string;
|
|
8
|
+
image?: string;
|
|
9
|
+
mapStyle?: MapType;
|
|
10
|
+
name: string;
|
|
11
|
+
north?: number;
|
|
12
|
+
projectId: string;
|
|
13
|
+
projectName: string;
|
|
14
|
+
south?: number;
|
|
15
|
+
west?: number;
|
|
16
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CameraExid, Exid, DateType } from "
|
|
1
|
+
import type { CameraExid, Exid, DateType } from "@evercam/api/types";
|
|
2
2
|
export type MediaExid = Exid;
|
|
3
3
|
export type Media = {
|
|
4
4
|
project_exid?: string;
|
|
@@ -25,6 +25,7 @@ export type Media = {
|
|
|
25
25
|
projectExid?: string;
|
|
26
26
|
thumbnailUrl?: string;
|
|
27
27
|
mediaUrl?: string;
|
|
28
|
+
camera?: string;
|
|
28
29
|
};
|
|
29
30
|
export declare enum MediaType {
|
|
30
31
|
EditedImage = "edit",
|
|
@@ -92,7 +93,7 @@ export type MediaCreateRequestPayload = {
|
|
|
92
93
|
cameraExid?: string;
|
|
93
94
|
requestedBy?: string;
|
|
94
95
|
notes?: string;
|
|
95
|
-
category?: ClipsCategory;
|
|
96
|
+
category?: MediaCategory | ClipsCategory;
|
|
96
97
|
isUrgent?: boolean;
|
|
97
98
|
storeAsType?: MediaType;
|
|
98
99
|
};
|
|
@@ -107,6 +108,11 @@ export declare enum ClipsCategory {
|
|
|
107
108
|
Marketing = "marketing",
|
|
108
109
|
BestPracticies = "best_practices"
|
|
109
110
|
}
|
|
111
|
+
export declare enum MediaCategory {
|
|
112
|
+
Weather = "weather",
|
|
113
|
+
SmartSearch = "smart_search",
|
|
114
|
+
Copilot = "copilot"
|
|
115
|
+
}
|
|
110
116
|
export type MediaDeleteRequestPayload = {
|
|
111
117
|
timelapseIds: (string | number)[];
|
|
112
118
|
compareIds: (string | number)[];
|
|
@@ -7,11 +7,41 @@ export declare enum NotificationType {
|
|
|
7
7
|
DroneProcessing = "drone_processing_done",
|
|
8
8
|
Processing360 = "three_sixty_done"
|
|
9
9
|
}
|
|
10
|
-
export interface
|
|
10
|
+
export interface NotificationContextBase {
|
|
11
|
+
cameraExid?: string;
|
|
12
|
+
projectExid?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface CameraShareContext extends NotificationContextBase {
|
|
11
15
|
cameraExid: string;
|
|
12
16
|
projectExid: string;
|
|
13
17
|
shareId: number;
|
|
14
18
|
}
|
|
19
|
+
export interface CameraStatusChangeContext extends NotificationContextBase {
|
|
20
|
+
cameraExid: string;
|
|
21
|
+
projectExid: string;
|
|
22
|
+
newStatus: string;
|
|
23
|
+
}
|
|
24
|
+
export interface MentionContext extends NotificationContextBase {
|
|
25
|
+
}
|
|
26
|
+
export interface TimelapseCreatedContext extends NotificationContextBase {
|
|
27
|
+
cameraExid: string;
|
|
28
|
+
projectExid: string;
|
|
29
|
+
archiveExid: string;
|
|
30
|
+
}
|
|
31
|
+
export interface TimelapseFailedContext extends NotificationContextBase {
|
|
32
|
+
cameraExid: string;
|
|
33
|
+
projectExid: string;
|
|
34
|
+
}
|
|
35
|
+
export interface DroneProcessingContext extends NotificationContextBase {
|
|
36
|
+
projectExid: string;
|
|
37
|
+
droneDate: string;
|
|
38
|
+
}
|
|
39
|
+
export interface Processing360Context extends NotificationContextBase {
|
|
40
|
+
projectExid: string;
|
|
41
|
+
date: string;
|
|
42
|
+
floor: string;
|
|
43
|
+
}
|
|
44
|
+
export type NotificationContext = CameraShareContext | CameraStatusChangeContext | MentionContext | TimelapseCreatedContext | TimelapseFailedContext | DroneProcessingContext | Processing360Context;
|
|
15
45
|
export type Notification = {
|
|
16
46
|
id: number;
|
|
17
47
|
type: NotificationType;
|
|
@@ -23,5 +53,5 @@ export type Notification = {
|
|
|
23
53
|
targetFullname: string;
|
|
24
54
|
targetEmail: string;
|
|
25
55
|
readTimestamp: string | null;
|
|
26
|
-
context:
|
|
56
|
+
context: NotificationContext;
|
|
27
57
|
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export type OAuthClient = {
|
|
2
|
+
id: number;
|
|
3
|
+
name: string;
|
|
4
|
+
clientId: string;
|
|
5
|
+
redirectUris: string[];
|
|
6
|
+
logoUrl: string | null;
|
|
7
|
+
scopes: string[];
|
|
8
|
+
active: boolean;
|
|
9
|
+
description: string | null;
|
|
10
|
+
owner: {
|
|
11
|
+
id: number;
|
|
12
|
+
name: string;
|
|
13
|
+
email: string;
|
|
14
|
+
} | null;
|
|
15
|
+
createdAt: string;
|
|
16
|
+
updatedAt: string;
|
|
17
|
+
};
|
|
18
|
+
export type OAuthClientWithSecret = OAuthClient & {
|
|
19
|
+
clientSecret: string;
|
|
20
|
+
};
|
|
21
|
+
export type CreateOAuthClientPayload = {
|
|
22
|
+
name: string;
|
|
23
|
+
redirectUris: string[];
|
|
24
|
+
scopes?: string[];
|
|
25
|
+
description?: string;
|
|
26
|
+
logoUrl?: string;
|
|
27
|
+
};
|
|
28
|
+
export type AdminCreateOAuthClientPayload = CreateOAuthClientPayload & {
|
|
29
|
+
clientId?: string;
|
|
30
|
+
clientSecret?: string;
|
|
31
|
+
};
|
|
32
|
+
export type UpdateOAuthClientPayload = {
|
|
33
|
+
name?: string;
|
|
34
|
+
redirectUris?: string[];
|
|
35
|
+
scopes?: string[];
|
|
36
|
+
description?: string;
|
|
37
|
+
logoUrl?: string;
|
|
38
|
+
active?: boolean;
|
|
39
|
+
};
|
|
40
|
+
export type OAuthScopeDetail = {
|
|
41
|
+
scope: string;
|
|
42
|
+
description: string;
|
|
43
|
+
group: string;
|
|
44
|
+
};
|
|
45
|
+
export type OAuthConsentInfo = {
|
|
46
|
+
client: {
|
|
47
|
+
name: string;
|
|
48
|
+
logoUrl: string | null;
|
|
49
|
+
description: string | null;
|
|
50
|
+
};
|
|
51
|
+
scopes: OAuthScopeDetail[];
|
|
52
|
+
};
|
|
53
|
+
export type OAuthConsentPayload = {
|
|
54
|
+
clientId: string;
|
|
55
|
+
scope: string;
|
|
56
|
+
redirectUri: string;
|
|
57
|
+
state: string;
|
|
58
|
+
decision: "allow" | "deny";
|
|
59
|
+
};
|
|
60
|
+
export type OAuthConsentResponse = {
|
|
61
|
+
redirectUrl: string;
|
|
62
|
+
};
|
|
@@ -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
|
+
}
|
|
@@ -16,3 +16,18 @@ export declare enum ActiveUsersMetric {
|
|
|
16
16
|
WAU = "wau",
|
|
17
17
|
MAU = "mau"
|
|
18
18
|
}
|
|
19
|
+
export type PosthogUserParams = {
|
|
20
|
+
firstname?: string;
|
|
21
|
+
lastname?: string;
|
|
22
|
+
email: string;
|
|
23
|
+
telephone?: string;
|
|
24
|
+
country?: string;
|
|
25
|
+
isAdmin?: boolean;
|
|
26
|
+
persona?: string;
|
|
27
|
+
companyExid: string;
|
|
28
|
+
companyName: string;
|
|
29
|
+
isImpersonationLogin: boolean;
|
|
30
|
+
ImpersonatedUserEmail?: string;
|
|
31
|
+
ImpersonatedUserFirstname?: string;
|
|
32
|
+
impersonatedUserLastname?: string;
|
|
33
|
+
};
|
|
@@ -44,7 +44,7 @@ export type ProcoreObservationSpecificationSection = {
|
|
|
44
44
|
label: string;
|
|
45
45
|
currentRevisionId: number;
|
|
46
46
|
};
|
|
47
|
-
export type
|
|
47
|
+
export type ProcoreUserProject = {
|
|
48
48
|
accountingProjectNumber?: number;
|
|
49
49
|
active: boolean;
|
|
50
50
|
address: string;
|
|
@@ -85,7 +85,8 @@ export type ProcoreUserProjectsResponsePayload = Array<{
|
|
|
85
85
|
totalValue: string;
|
|
86
86
|
updatedAt: string;
|
|
87
87
|
zip: number;
|
|
88
|
-
}
|
|
88
|
+
};
|
|
89
|
+
export type ProcoreUserProjectsResponsePayload = Array<ProcoreUserProject>;
|
|
89
90
|
export type ProcoreToolUserAccessLevel = {
|
|
90
91
|
id: ProcoreToolUserAccessLevelIds;
|
|
91
92
|
name: string;
|
|
@@ -120,7 +121,7 @@ export type ProcoreEditedImageUploadRequestPayload = {
|
|
|
120
121
|
snapshot: string;
|
|
121
122
|
categoryId?: number;
|
|
122
123
|
};
|
|
123
|
-
export type
|
|
124
|
+
export type ProcoreProjectAlbum = {
|
|
124
125
|
count: number;
|
|
125
126
|
coverPhoto: string | null;
|
|
126
127
|
createdAt: string;
|
|
@@ -134,8 +135,9 @@ export type ProcoreProjectsAlbumsPayload = Array<{
|
|
|
134
135
|
position: number;
|
|
135
136
|
private: boolean;
|
|
136
137
|
updatedAt: string;
|
|
137
|
-
}
|
|
138
|
-
export type
|
|
138
|
+
};
|
|
139
|
+
export type ProcoreProjectsAlbumsPayload = Array<ProcoreProjectAlbum>;
|
|
140
|
+
export type ProcoreObservationType = {
|
|
139
141
|
id: number;
|
|
140
142
|
name: string;
|
|
141
143
|
localizedName: string;
|
|
@@ -147,12 +149,17 @@ export type ProcoreObservationTypesResponsePayload = Array<{
|
|
|
147
149
|
parentInactive: boolean;
|
|
148
150
|
isUse: boolean;
|
|
149
151
|
nameTranslations: string;
|
|
150
|
-
}
|
|
152
|
+
};
|
|
153
|
+
export type ProcoreObservationTypesResponsePayload = Array<ProcoreObservationType>;
|
|
151
154
|
export type ProcoreObservationFormRequestPayload = {
|
|
152
155
|
projectId: number;
|
|
153
156
|
companyId: number;
|
|
154
157
|
observationType: string;
|
|
155
158
|
};
|
|
159
|
+
export type ProcoreCustomFieldOptionsRequestPayload = {
|
|
160
|
+
optionsUrl: string;
|
|
161
|
+
companyId: number;
|
|
162
|
+
};
|
|
156
163
|
export type ProcoreObservationForm = Record<string, ProcoreObservationField | ProcoreObservationCustomField>;
|
|
157
164
|
export type ProcoreObservationField = {
|
|
158
165
|
name: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Automation, AutomationType,
|
|
1
|
+
import { Automation, AutomationType, DateType, PaginationParams } from "@evercam/api/types";
|
|
2
2
|
export type ProgressPhotosCreateUpdateRequestPayload = {
|
|
3
3
|
cameraExids?: string;
|
|
4
4
|
notifyDays?: string;
|
|
@@ -8,6 +8,7 @@ export type ProgressPhotosCreateUpdateRequestPayload = {
|
|
|
8
8
|
type?: string;
|
|
9
9
|
config?: {
|
|
10
10
|
compareDelay?: AutomationType;
|
|
11
|
+
period?: number;
|
|
11
12
|
recipients?: string;
|
|
12
13
|
projectId?: number;
|
|
13
14
|
companyId?: number;
|
|
@@ -24,6 +25,9 @@ export type ProgressPhotosUnSubscribeParams = {
|
|
|
24
25
|
export type ProgressPhotosResponsePayload = {
|
|
25
26
|
progressPhotos: Automation[];
|
|
26
27
|
};
|
|
28
|
+
export type ProgressPhotoItemResponsePayload = {
|
|
29
|
+
progressPhotos: Automation;
|
|
30
|
+
};
|
|
27
31
|
export declare enum AutomationDialogType {
|
|
28
32
|
Create = "create",
|
|
29
33
|
Edit = "edit",
|
|
@@ -70,5 +74,5 @@ export type ProgressPhotosHistory = {
|
|
|
70
74
|
cameraIds: string;
|
|
71
75
|
failedCameraIds: string;
|
|
72
76
|
subject: string;
|
|
73
|
-
recipients:
|
|
77
|
+
recipients: string;
|
|
74
78
|
};
|
|
@@ -1,25 +1,56 @@
|
|
|
1
|
-
import { AdminCamera, Camera, CameraExid,
|
|
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 = {
|
|
5
|
-
|
|
6
|
-
exid: ProjectExid;
|
|
7
|
-
name: string;
|
|
8
|
-
status?: ProjectStatus;
|
|
9
|
-
insertedAt?: string;
|
|
10
|
-
startedAt?: string;
|
|
11
|
-
timezone?: string;
|
|
12
|
-
zohoId?: string;
|
|
13
|
-
userId?: number;
|
|
5
|
+
archiveTier?: ProjectArchiveTier;
|
|
14
6
|
cameras?: Array<Camera | AdminCamera>;
|
|
15
|
-
|
|
7
|
+
camerasCount?: number;
|
|
8
|
+
camerasRestrictionType?: string;
|
|
9
|
+
companyId: number;
|
|
10
|
+
endDate: string;
|
|
11
|
+
exid: ProjectExid;
|
|
16
12
|
featureFlags: Array<ProjectFeatureFlag>;
|
|
13
|
+
geographicBounds?: unknown;
|
|
14
|
+
id: string | number;
|
|
15
|
+
insertedAt?: string;
|
|
16
|
+
name: string;
|
|
17
17
|
owner?: {
|
|
18
18
|
email?: string;
|
|
19
19
|
};
|
|
20
20
|
ownerEmail?: string;
|
|
21
21
|
ownerName?: string;
|
|
22
|
-
|
|
22
|
+
startedAt?: string;
|
|
23
|
+
status?: ProjectStatus;
|
|
24
|
+
timezone?: string;
|
|
25
|
+
unrestrictedCameras?: Camera[];
|
|
26
|
+
userId?: number;
|
|
27
|
+
zohoId?: string;
|
|
28
|
+
};
|
|
29
|
+
export type AdminProjectCameraRef = {
|
|
30
|
+
exid: string;
|
|
31
|
+
name: string;
|
|
32
|
+
};
|
|
33
|
+
export type AdminProjectListItem = {
|
|
34
|
+
id: number;
|
|
35
|
+
name: string;
|
|
36
|
+
status: ProjectStatus | string;
|
|
37
|
+
insertedAt: string;
|
|
38
|
+
timezone: string | null;
|
|
39
|
+
exid: ProjectExid;
|
|
40
|
+
endDate: string | null;
|
|
41
|
+
startDate: string | null;
|
|
42
|
+
archiveTier: ProjectArchiveTier | null;
|
|
43
|
+
featureFlags: Array<ProjectFeatureFlag | string>;
|
|
44
|
+
zohoId: string | null;
|
|
45
|
+
ownerEmail: string | null;
|
|
46
|
+
companyId: number | null;
|
|
47
|
+
companyName: string | null;
|
|
48
|
+
ownerName: string | null;
|
|
49
|
+
archived: boolean;
|
|
50
|
+
cameras?: AdminProjectCameraRef[];
|
|
51
|
+
};
|
|
52
|
+
export type AdminProjectDetail = AdminProjectListItem & {
|
|
53
|
+
userId: number;
|
|
23
54
|
};
|
|
24
55
|
export declare enum ProjectStatus {
|
|
25
56
|
ToStart = "To Start",
|
|
@@ -31,15 +62,15 @@ export declare enum ProjectArchiveTier {
|
|
|
31
62
|
Full = "Full",
|
|
32
63
|
Partial = "Partial",
|
|
33
64
|
Minimal = "Minimal",
|
|
34
|
-
ScheduledForDeletion = "Scheduled for Deletion"
|
|
65
|
+
ScheduledForDeletion = "Scheduled for Deletion",
|
|
66
|
+
No = "No"
|
|
35
67
|
}
|
|
36
|
-
export type ProjectResponsePayload = {
|
|
37
|
-
data?: Project[];
|
|
38
|
-
};
|
|
39
68
|
export type UpdateCameraRestrictionPayload = {
|
|
40
69
|
isAccessRestricted?: boolean;
|
|
41
70
|
};
|
|
42
71
|
export type Logo = {
|
|
72
|
+
id: number;
|
|
73
|
+
projectId: number;
|
|
43
74
|
name: string;
|
|
44
75
|
url: string;
|
|
45
76
|
};
|
|
@@ -79,6 +110,7 @@ export type ProjectsQueryParams = PaginationParams & {
|
|
|
79
110
|
status: ProjectStatus;
|
|
80
111
|
cameras: string;
|
|
81
112
|
featureFlags: Array<ProjectFeatureFlag>;
|
|
113
|
+
featureFlagsOperator?: Operator;
|
|
82
114
|
archived: string;
|
|
83
115
|
};
|
|
84
116
|
export type ProjectCreateRequestPayload = {
|
|
@@ -117,7 +149,7 @@ export type ProjectUserProperty = {
|
|
|
117
149
|
eventsCount: number;
|
|
118
150
|
fullname: string;
|
|
119
151
|
id: number;
|
|
120
|
-
lastSeenAt:
|
|
152
|
+
lastSeenAt: string;
|
|
121
153
|
persona: string;
|
|
122
154
|
};
|
|
123
155
|
export type ProjectUsers = {
|
|
@@ -127,38 +159,46 @@ export type ProjectUsers = {
|
|
|
127
159
|
}[];
|
|
128
160
|
users: Record<string, ProjectUserProperty[]>;
|
|
129
161
|
};
|
|
130
|
-
export type ProjectDateRangeFilter = DateRangeFilter & {
|
|
131
|
-
projectExid: ProjectExid;
|
|
132
|
-
};
|
|
133
162
|
export type ProjectRole = {
|
|
134
|
-
id:
|
|
163
|
+
id: number;
|
|
135
164
|
name: string;
|
|
136
165
|
};
|
|
137
166
|
export type ProjectMember = {
|
|
138
167
|
id: string;
|
|
168
|
+
key?: string;
|
|
139
169
|
email: string;
|
|
140
170
|
fullname: string;
|
|
141
|
-
lastSeenAt?:
|
|
171
|
+
lastSeenAt?: string;
|
|
142
172
|
role: ProjectRole;
|
|
143
173
|
permissions?: string[];
|
|
144
174
|
subRoles?: Array<{
|
|
145
175
|
resourceId: string;
|
|
146
176
|
roleId: number;
|
|
147
177
|
}>;
|
|
178
|
+
company?: {
|
|
179
|
+
name: string;
|
|
180
|
+
} | null;
|
|
148
181
|
};
|
|
149
182
|
export type ProjectInvite = {
|
|
150
183
|
id?: string;
|
|
151
184
|
email: string;
|
|
152
185
|
role?: ProjectRole;
|
|
186
|
+
permissions?: string[];
|
|
187
|
+
subRoles?: Array<{
|
|
188
|
+
resourceId: string;
|
|
189
|
+
roleId: number;
|
|
190
|
+
}>;
|
|
153
191
|
invitedAt?: string;
|
|
154
192
|
};
|
|
155
193
|
export type ProjectMembersResponsePayload = {
|
|
156
194
|
users: ProjectMember[];
|
|
157
195
|
invites: ProjectInvite[];
|
|
196
|
+
errors: ProjectUserError[];
|
|
158
197
|
};
|
|
159
198
|
export type ProjectMembersRequestPayload = {
|
|
160
199
|
roleId: number;
|
|
161
200
|
emails: string[];
|
|
201
|
+
message?: string;
|
|
162
202
|
overrideRole?: Partial<{
|
|
163
203
|
permissions?: string[];
|
|
164
204
|
subRoles?: Array<{
|
|
@@ -171,3 +211,37 @@ export type ProjectInviteMembersResponsePayload = {
|
|
|
171
211
|
users: ProjectMember[];
|
|
172
212
|
invites: ProjectInvite[];
|
|
173
213
|
};
|
|
214
|
+
export type PlaceholderThumbnailData = {
|
|
215
|
+
placeholder: string;
|
|
216
|
+
};
|
|
217
|
+
export type ProjectUserError = {
|
|
218
|
+
email: string;
|
|
219
|
+
error: Record<string, string[]>;
|
|
220
|
+
};
|
|
221
|
+
export type ProjectUsersResponsePayload = {
|
|
222
|
+
users: ProjectMember[];
|
|
223
|
+
invites: ProjectInvite[];
|
|
224
|
+
errors: ProjectUserError[];
|
|
225
|
+
};
|
|
226
|
+
export type ProjectStorageQueryParams = PaginationParams & {
|
|
227
|
+
cameraName: string;
|
|
228
|
+
cameraExid: CameraExid;
|
|
229
|
+
status: ProjectStorageStatus;
|
|
230
|
+
};
|
|
231
|
+
export type ProjectStorage = {
|
|
232
|
+
id: number;
|
|
233
|
+
cameraExid: CameraExid;
|
|
234
|
+
cameraName: string;
|
|
235
|
+
projectExid: string;
|
|
236
|
+
projectName: string;
|
|
237
|
+
status: ProjectStorageStatus;
|
|
238
|
+
requestor: string;
|
|
239
|
+
created_at: DateType;
|
|
240
|
+
};
|
|
241
|
+
export declare enum ProjectStorageStatus {
|
|
242
|
+
New = "new",
|
|
243
|
+
Pending = "pending",
|
|
244
|
+
Processing = "processing",
|
|
245
|
+
Completed = "completed",
|
|
246
|
+
Failed = "failed"
|
|
247
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ApiCredentials } from "
|
|
1
|
+
import { ApiCredentials } from "@evercam/api/types";
|
|
2
2
|
import { CancelToken } from "axios";
|
|
3
3
|
export type Snapshot = {
|
|
4
4
|
createdAt: string;
|
|
@@ -17,6 +17,7 @@ export type AvailableDaysRequestPayload = {
|
|
|
17
17
|
year: string;
|
|
18
18
|
month: string;
|
|
19
19
|
payload?: ApiCredentials;
|
|
20
|
+
cancelToken?: CancelToken;
|
|
20
21
|
};
|
|
21
22
|
export type AvailableDaysResponsePayload = {
|
|
22
23
|
days: Array<number>;
|
|
@@ -56,8 +57,7 @@ export type SnapshotRangeResponsePayload = {
|
|
|
56
57
|
snapshots: Array<SnapshotInstance>;
|
|
57
58
|
};
|
|
58
59
|
export declare enum BrainTool {
|
|
59
|
-
Detections = "detections"
|
|
60
|
-
Segmentation = "sam"
|
|
60
|
+
Detections = "detections"
|
|
61
61
|
}
|
|
62
62
|
export declare enum CloudRecordingFrequency {
|
|
63
63
|
EverySecond = 60,
|
|
@@ -77,6 +77,7 @@ export declare enum CloudRecordingDuration {
|
|
|
77
77
|
Month = 30,
|
|
78
78
|
ThreeMonths = 90
|
|
79
79
|
}
|
|
80
|
+
export declare const CloudRecordingDurationLabel: Record<CloudRecordingDuration, string>;
|
|
80
81
|
export declare enum CloudRecordingStatus {
|
|
81
82
|
On = "on",
|
|
82
83
|
Off = "off",
|
|
@@ -104,13 +105,6 @@ export declare enum SnapshotExtractionInterval {
|
|
|
104
105
|
}
|
|
105
106
|
export declare enum VpnServer {
|
|
106
107
|
None = "None",
|
|
107
|
-
OpenVPN1 = "OpenVPN1",
|
|
108
|
-
OpenVPN2 = "OpenVPN2",
|
|
109
|
-
OpenVPN3 = "OpenVPN3",
|
|
110
|
-
OpenVPN4 = "OpenVPN4",
|
|
111
|
-
OpenVPN5 = "OpenVPN5",
|
|
112
|
-
PPTP1 = "PPTP1",
|
|
113
|
-
PPTP2 = "PPTP2",
|
|
114
108
|
WireGuard1 = "WireGuard1",
|
|
115
109
|
WireGuard2 = "WireGuard2",
|
|
116
110
|
WireGuard3 = "WireGuard3",
|
|
@@ -120,5 +114,6 @@ export declare enum VpnServer {
|
|
|
120
114
|
WireGuard7 = "WireGuard7",
|
|
121
115
|
WireGuard8 = "WireGuard8",
|
|
122
116
|
WireGuard9 = "WireGuard9",
|
|
123
|
-
WireGuard10 = "WireGuard10"
|
|
117
|
+
WireGuard10 = "WireGuard10",
|
|
118
|
+
WgHub = "WgHub"
|
|
124
119
|
}
|