@evercam/api 1.0.0-55a4368ec → 1.0.0-57d7783ef
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 +202 -15
- package/dist/api/api/adminApi.d.ts +88 -71
- package/dist/api/api/aiApi.d.ts +99 -86
- package/dist/api/api/authzApi.d.ts +26 -17
- 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 +125 -100
- package/dist/api/api/evercamLabsApi.d.ts +7 -6
- package/dist/api/api/exNvrApi.d.ts +1 -1
- package/dist/api/api/ingestApi.d.ts +107 -46
- 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 +275 -27
- 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 +112 -59
- 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 +45 -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 +18 -10
- package/dist/api/types/bim.d.ts +36 -5
- package/dist/api/types/camera.d.ts +93 -93
- package/dist/api/types/comments.d.ts +10 -11
- 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 +4 -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 +50 -158
- 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 +10 -1
- package/dist/api/types/ingest.d.ts +110 -3
- package/dist/api/types/kit.d.ts +42 -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 +35 -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 +101 -22
- package/dist/api/types/recording.d.ts +8 -12
- 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 +4 -3
- package/dist/api/types/router.d.ts +20 -1
- package/dist/api/types/shared.d.ts +30 -4
- package/dist/api/types/shares.d.ts +6 -144
- package/dist/api/types/sim.d.ts +6 -6
- package/dist/api/types/siteAnalytics.d.ts +171 -47
- package/dist/api/types/siteAnalyticsManagement.d.ts +92 -0
- 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 -35
- 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 +1949 -1054
- 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 +151 -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,175 @@
|
|
|
1
|
+
import { CameraExid, DateType, ProjectExid } from "@evercam/api/types";
|
|
2
|
+
export declare enum VehicleClassifierSource {
|
|
3
|
+
Local = "local",
|
|
4
|
+
Api = "api"
|
|
5
|
+
}
|
|
6
|
+
export type GateReportCoolifyStatus = {
|
|
7
|
+
appUuid: string | null;
|
|
8
|
+
name: string | null;
|
|
9
|
+
serverUuid: string | null;
|
|
10
|
+
serverName: string | null;
|
|
11
|
+
appUrl: string | null;
|
|
12
|
+
status: string | null;
|
|
13
|
+
isRunning: boolean;
|
|
14
|
+
imageTag?: string | null;
|
|
15
|
+
fqdn: string | null;
|
|
16
|
+
updatedAt: string | null;
|
|
17
|
+
};
|
|
18
|
+
export type GateReportProjectMeta = {
|
|
19
|
+
exid: ProjectExid;
|
|
20
|
+
name: string | null;
|
|
21
|
+
timezone: string | null;
|
|
22
|
+
featureFlags: string[] | null;
|
|
23
|
+
};
|
|
24
|
+
export type GateReportCameraMeta = {
|
|
25
|
+
exid: CameraExid;
|
|
26
|
+
name: string | null;
|
|
27
|
+
status: string | null;
|
|
28
|
+
kitSerial: string | null;
|
|
29
|
+
kitAlarms: string[] | Record<string, unknown> | null;
|
|
30
|
+
};
|
|
31
|
+
export type GateReportManagedApp = {
|
|
32
|
+
id: number;
|
|
33
|
+
projectExid: ProjectExid;
|
|
34
|
+
anprCameraExid: CameraExid;
|
|
35
|
+
contextCameraExid: CameraExid | null;
|
|
36
|
+
coolifyAppId: string | null;
|
|
37
|
+
startDate: DateType | null;
|
|
38
|
+
endDate: DateType | null;
|
|
39
|
+
startHour: number;
|
|
40
|
+
endHour: number;
|
|
41
|
+
enabled: boolean;
|
|
42
|
+
enableEnrichments: boolean;
|
|
43
|
+
enableGemini: boolean;
|
|
44
|
+
geminiStartHour: number;
|
|
45
|
+
geminiEndHour: number;
|
|
46
|
+
reviewModel: string;
|
|
47
|
+
enrichmentModel: string;
|
|
48
|
+
reviewerPromptSlug: string | null;
|
|
49
|
+
geminiTimeoutSeconds: number;
|
|
50
|
+
geminiMaxAttempts: number;
|
|
51
|
+
vehicleClassifierSource: VehicleClassifierSource;
|
|
52
|
+
snapshotDelaySeconds: number;
|
|
53
|
+
snapshotRequestTimeout: number;
|
|
54
|
+
plateClassifierThreshold: number;
|
|
55
|
+
plateClassifierHighConfidence: number;
|
|
56
|
+
maxPriorEvents: number;
|
|
57
|
+
recordsFetchInterval: number;
|
|
58
|
+
priorRecentLimit: number;
|
|
59
|
+
priorSimilarLimit: number;
|
|
60
|
+
insertedAt: DateType;
|
|
61
|
+
updatedAt: DateType;
|
|
62
|
+
coolify: GateReportCoolifyStatus | null;
|
|
63
|
+
project: GateReportProjectMeta | null;
|
|
64
|
+
anprCamera: GateReportCameraMeta | null;
|
|
65
|
+
contextCamera: GateReportCameraMeta | null;
|
|
66
|
+
anprHasRoi: boolean;
|
|
67
|
+
contextHasRoi: boolean;
|
|
68
|
+
lastProcessedEventAt: DateType | null;
|
|
69
|
+
lastUnprocessedEventAt: DateType | null;
|
|
70
|
+
};
|
|
71
|
+
export type GateReportAppEvents = {
|
|
72
|
+
anprCameraExid: CameraExid;
|
|
73
|
+
lastProcessedEventAt: DateType | null;
|
|
74
|
+
lastUnprocessedEventAt: DateType | null;
|
|
75
|
+
};
|
|
76
|
+
export type AppConfigFormValue = {
|
|
77
|
+
contextCameraExid: string | null;
|
|
78
|
+
startDate: DateType | null;
|
|
79
|
+
endDate: DateType | null;
|
|
80
|
+
startHour: number;
|
|
81
|
+
endHour: number;
|
|
82
|
+
enabled: boolean;
|
|
83
|
+
enableEnrichments: boolean;
|
|
84
|
+
enableGemini: boolean;
|
|
85
|
+
geminiStartHour: number;
|
|
86
|
+
geminiEndHour: number;
|
|
87
|
+
reviewModel: string;
|
|
88
|
+
enrichmentModel: string;
|
|
89
|
+
reviewerPromptSlug: string | null;
|
|
90
|
+
geminiTimeoutSeconds: number;
|
|
91
|
+
geminiMaxAttempts: number;
|
|
92
|
+
vehicleClassifierSource: VehicleClassifierSource;
|
|
93
|
+
snapshotDelaySeconds: number;
|
|
94
|
+
snapshotRequestTimeout: number;
|
|
95
|
+
plateClassifierThreshold: number;
|
|
96
|
+
plateClassifierHighConfidence: number;
|
|
97
|
+
recordsFetchInterval: number;
|
|
98
|
+
priorRecentLimit: number;
|
|
99
|
+
priorSimilarLimit: number;
|
|
100
|
+
};
|
|
101
|
+
export type CreateGateReportAppPayload = {
|
|
102
|
+
projectExid: ProjectExid;
|
|
103
|
+
anprCameraExid: CameraExid;
|
|
104
|
+
contextCameraExid?: CameraExid | null;
|
|
105
|
+
coolifyServerUuid: string;
|
|
106
|
+
imageTag?: string;
|
|
107
|
+
geminiApiKey?: string | null;
|
|
108
|
+
startDate?: DateType | null;
|
|
109
|
+
endDate?: DateType | null;
|
|
110
|
+
startHour?: number;
|
|
111
|
+
endHour?: number;
|
|
112
|
+
enabled?: boolean;
|
|
113
|
+
enableEnrichments?: boolean;
|
|
114
|
+
enableGemini?: boolean;
|
|
115
|
+
geminiStartHour?: number;
|
|
116
|
+
geminiEndHour?: number;
|
|
117
|
+
reviewModel?: string;
|
|
118
|
+
enrichmentModel?: string;
|
|
119
|
+
reviewerPromptSlug?: string | null;
|
|
120
|
+
geminiTimeoutSeconds?: number;
|
|
121
|
+
geminiMaxAttempts?: number;
|
|
122
|
+
vehicleClassifierSource?: VehicleClassifierSource;
|
|
123
|
+
snapshotDelaySeconds?: number;
|
|
124
|
+
snapshotRequestTimeout?: number;
|
|
125
|
+
plateClassifierThreshold?: number;
|
|
126
|
+
plateClassifierHighConfidence?: number;
|
|
127
|
+
maxPriorEvents?: number;
|
|
128
|
+
recordsFetchInterval?: number;
|
|
129
|
+
priorRecentLimit?: number;
|
|
130
|
+
priorSimilarLimit?: number;
|
|
131
|
+
};
|
|
132
|
+
export type UpdateGateReportAppPayload = Partial<Omit<CreateGateReportAppPayload, "projectExid" | "anprCameraExid" | "coolifyServerUuid" | "geminiApiKey">>;
|
|
133
|
+
export type GateReportManagementListParams = {
|
|
134
|
+
projectExid?: ProjectExid;
|
|
135
|
+
includeStatus?: boolean;
|
|
136
|
+
page?: number;
|
|
137
|
+
limit?: number;
|
|
138
|
+
};
|
|
139
|
+
export type CoolifyProjectOption = {
|
|
140
|
+
uuid: string;
|
|
141
|
+
name: string;
|
|
142
|
+
description: string | null;
|
|
143
|
+
};
|
|
144
|
+
export type CoolifyServerOption = {
|
|
145
|
+
uuid: string;
|
|
146
|
+
name: string;
|
|
147
|
+
isReachable: boolean;
|
|
148
|
+
isUsable: boolean;
|
|
149
|
+
};
|
|
150
|
+
export declare enum AppRuntimeState {
|
|
151
|
+
Running = "running",
|
|
152
|
+
Stopped = "stopped",
|
|
153
|
+
Restarting = "restarting"
|
|
154
|
+
}
|
|
155
|
+
export type AppRuntimeStateRequest = {
|
|
156
|
+
state: AppRuntimeState;
|
|
157
|
+
};
|
|
158
|
+
export type AppActionResponse = {
|
|
159
|
+
success: boolean;
|
|
160
|
+
message: string | null;
|
|
161
|
+
appUuid: string | null;
|
|
162
|
+
state: AppRuntimeState | null;
|
|
163
|
+
};
|
|
164
|
+
export type APIEnvelope<T> = {
|
|
165
|
+
success: boolean;
|
|
166
|
+
data: T | null;
|
|
167
|
+
message: string;
|
|
168
|
+
};
|
|
169
|
+
export type CreateGateReportAppResponse = {
|
|
170
|
+
created: boolean;
|
|
171
|
+
id: number | null;
|
|
172
|
+
data: GateReportManagedApp | null;
|
|
173
|
+
count: number | null;
|
|
174
|
+
message: string;
|
|
175
|
+
};
|
package/dist/api/types/hdd.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PaginationParams } from "
|
|
1
|
+
import { PaginationParams } from "@evercam/api/types";
|
|
2
2
|
export declare enum HddFormat {
|
|
3
3
|
ExFat = "ExFAT",
|
|
4
4
|
HikFs = "HikFS"
|
|
@@ -61,3 +61,28 @@ export type HDDsQueryParams = PaginationParams & {
|
|
|
61
61
|
type: string;
|
|
62
62
|
hddStatus: string;
|
|
63
63
|
};
|
|
64
|
+
export type AdminHddFootage = {
|
|
65
|
+
id: number;
|
|
66
|
+
cameraExid: string;
|
|
67
|
+
cameraName: string;
|
|
68
|
+
startDate: string | null;
|
|
69
|
+
endDate: string | null;
|
|
70
|
+
};
|
|
71
|
+
export type AdminHdd = {
|
|
72
|
+
id: number;
|
|
73
|
+
size: string;
|
|
74
|
+
type: string;
|
|
75
|
+
format: string;
|
|
76
|
+
location: string;
|
|
77
|
+
errorStatus: string | null;
|
|
78
|
+
createdAt: string;
|
|
79
|
+
serialNumber: string;
|
|
80
|
+
hddStatus: string;
|
|
81
|
+
reportedCapacity: string | null;
|
|
82
|
+
reportedFreeSpace: string | null;
|
|
83
|
+
reportedHddType: string | null;
|
|
84
|
+
reportedPath: string | null;
|
|
85
|
+
reportedProperty: string | null;
|
|
86
|
+
shelfBlock: string;
|
|
87
|
+
footages: AdminHddFootage[];
|
|
88
|
+
};
|
|
@@ -2,6 +2,7 @@ export * from "./360";
|
|
|
2
2
|
export * from "./aconex";
|
|
3
3
|
export * from "./analytics";
|
|
4
4
|
export * from "./anpr";
|
|
5
|
+
export * from "./admin";
|
|
5
6
|
export * from "./media";
|
|
6
7
|
export * from "./autodesk";
|
|
7
8
|
export * from "./bim";
|
|
@@ -29,8 +30,9 @@ export * from "./shares";
|
|
|
29
30
|
export * from "./sim";
|
|
30
31
|
export * from "./systemCheck";
|
|
31
32
|
export * from "./planner";
|
|
32
|
-
export * from "./
|
|
33
|
+
export * from "./storageProvider";
|
|
33
34
|
export * from "./streaming";
|
|
35
|
+
export * from "./storyblok";
|
|
34
36
|
export * from "./time";
|
|
35
37
|
export * from "./timelapse";
|
|
36
38
|
export * from "./user";
|
|
@@ -47,6 +49,7 @@ export * from "./kit";
|
|
|
47
49
|
export * from "./auditLogs";
|
|
48
50
|
export * from "./snapshots";
|
|
49
51
|
export * from "./siteAnalytics";
|
|
52
|
+
export * from "./siteAnalyticsManagement";
|
|
50
53
|
export * from "./widget";
|
|
51
54
|
export * from "./countries";
|
|
52
55
|
export * from "./automation";
|
|
@@ -57,3 +60,9 @@ export * from "./xweather";
|
|
|
57
60
|
export * from "./posthog";
|
|
58
61
|
export * from "./recycleBin";
|
|
59
62
|
export * from "./authz";
|
|
63
|
+
export * from "./oauth";
|
|
64
|
+
export * from "./ring";
|
|
65
|
+
export * from "./smartSeach";
|
|
66
|
+
export * from "./siteView";
|
|
67
|
+
export * from "./aiConfigs";
|
|
68
|
+
export * from "./gateReportManagement";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { PaginationParams, DateType } from "
|
|
1
|
+
import { PaginationParams, DateType, JsonValue, TuplePoint2D } from "@evercam/api/types";
|
|
2
|
+
import type { _360FloorV2, _360WalkV2 } from "@evercam/api/types/360";
|
|
2
3
|
export declare enum IngestProcessingStatus {
|
|
3
4
|
Completed = "completed",
|
|
4
5
|
Uploading = "uploading",
|
|
@@ -15,7 +16,14 @@ export declare enum MobileAssetsType {
|
|
|
15
16
|
}
|
|
16
17
|
export declare enum IngestVersions {
|
|
17
18
|
V1 = "v1",
|
|
18
|
-
V2 = "v2"
|
|
19
|
+
V2 = "v2",
|
|
20
|
+
V3 = "v3",
|
|
21
|
+
V4 = "v4",
|
|
22
|
+
V5 = "v5"
|
|
23
|
+
}
|
|
24
|
+
export declare enum IngestTypes {
|
|
25
|
+
Drone = "drone",
|
|
26
|
+
ThreeSixty = "360"
|
|
19
27
|
}
|
|
20
28
|
export type DronesQueryParams = Omit<PaginationParams, "sort"> & {
|
|
21
29
|
projectId: string;
|
|
@@ -23,6 +31,36 @@ export type DronesQueryParams = Omit<PaginationParams, "sort"> & {
|
|
|
23
31
|
token: string;
|
|
24
32
|
processingStatus: IngestProcessingStatus;
|
|
25
33
|
};
|
|
34
|
+
export type IngestPaginatedResponse<T> = {
|
|
35
|
+
items: T[];
|
|
36
|
+
page: number;
|
|
37
|
+
limit: number;
|
|
38
|
+
total: number;
|
|
39
|
+
pageCount?: number;
|
|
40
|
+
};
|
|
41
|
+
export type DroneUploadItem = {
|
|
42
|
+
id: number;
|
|
43
|
+
projectId: string;
|
|
44
|
+
consumed: boolean;
|
|
45
|
+
token: string;
|
|
46
|
+
flightDate: string;
|
|
47
|
+
flightGeolocation: string;
|
|
48
|
+
modelZip: string;
|
|
49
|
+
orthomosaicZip: string;
|
|
50
|
+
reportPdf: string;
|
|
51
|
+
processingLog: string;
|
|
52
|
+
uploadedBy: string;
|
|
53
|
+
processingStatus: IngestProcessingStatus | string;
|
|
54
|
+
modelCesiumAssetId: string;
|
|
55
|
+
updatedAt: string;
|
|
56
|
+
hasTusLinks: boolean;
|
|
57
|
+
aerialShots: AerialShotItem[];
|
|
58
|
+
};
|
|
59
|
+
export type DroneUploadsResponse = IngestPaginatedResponse<DroneUploadItem>;
|
|
60
|
+
export type DroneQueueResponse = {
|
|
61
|
+
size: number;
|
|
62
|
+
assetsDrone: DroneUploadItem[];
|
|
63
|
+
};
|
|
26
64
|
export type DroneUploadUpdateRequestPayload = {
|
|
27
65
|
flightMetadata: {
|
|
28
66
|
dateTime: string;
|
|
@@ -34,18 +72,87 @@ export type DroneUploadUpdateRequestPayload = {
|
|
|
34
72
|
title: string;
|
|
35
73
|
fileExtension: string;
|
|
36
74
|
}[];
|
|
75
|
+
aerialShots: {
|
|
76
|
+
url: string;
|
|
77
|
+
title: string;
|
|
78
|
+
fileExtension: string;
|
|
79
|
+
gpsLatitude: string;
|
|
80
|
+
gpsLongitude: string;
|
|
81
|
+
gpsAltitude: string;
|
|
82
|
+
}[];
|
|
37
83
|
projectName: string;
|
|
38
84
|
};
|
|
39
85
|
export type CalculateMeasuringOperationRequestPayload = {
|
|
40
86
|
date: DateType;
|
|
41
|
-
points: [
|
|
87
|
+
points: TuplePoint2D[];
|
|
42
88
|
operation: string;
|
|
43
89
|
};
|
|
44
90
|
export type FlightImagesQueryParams = Partial<Omit<PaginationParams, "sort">> & {
|
|
45
91
|
date: DateType;
|
|
46
92
|
};
|
|
93
|
+
export type AerialShotItem = {
|
|
94
|
+
id: number;
|
|
95
|
+
droneUploadId: number;
|
|
96
|
+
fileLink: string;
|
|
97
|
+
thumbnailLink: string;
|
|
98
|
+
gpsLatitude: string;
|
|
99
|
+
gpsLongitude: string;
|
|
100
|
+
gpsAltitude: string;
|
|
101
|
+
};
|
|
47
102
|
export type InspectionToolRequestPayload = {
|
|
48
103
|
date: DateType;
|
|
49
104
|
gpsAltitude: string;
|
|
50
105
|
gpsCoordinates: string;
|
|
51
106
|
};
|
|
107
|
+
export type _360AssetsResponse = IngestPaginatedResponse<_360WalkV2>;
|
|
108
|
+
export type _360AssetsCountsDay = {
|
|
109
|
+
day: number;
|
|
110
|
+
walks?: number;
|
|
111
|
+
mobilePhotos?: number;
|
|
112
|
+
[key: string]: JsonValue | undefined;
|
|
113
|
+
};
|
|
114
|
+
export type _360AssetsCountsResponse = {
|
|
115
|
+
days: _360AssetsCountsDay[];
|
|
116
|
+
};
|
|
117
|
+
export type _360QueueResponse = {
|
|
118
|
+
size: number;
|
|
119
|
+
assets360: _360WalkV2[];
|
|
120
|
+
};
|
|
121
|
+
export type _360FloorsResponse = IngestPaginatedResponse<_360FloorV2>;
|
|
122
|
+
export type BimUploadItem = {
|
|
123
|
+
id: number;
|
|
124
|
+
projectId: string;
|
|
125
|
+
uploadedBy: string;
|
|
126
|
+
files: string[];
|
|
127
|
+
updatedAt: string;
|
|
128
|
+
archive?: string | null;
|
|
129
|
+
};
|
|
130
|
+
export type BimUploadsResponse = IngestPaginatedResponse<BimUploadItem>;
|
|
131
|
+
export type IngestUploadInitResponse = {
|
|
132
|
+
id: number;
|
|
133
|
+
projectId: string;
|
|
134
|
+
token?: string;
|
|
135
|
+
projectName?: string;
|
|
136
|
+
};
|
|
137
|
+
export type MobileAssetsQueryParams = Partial<Omit<PaginationParams, "sort">> & {
|
|
138
|
+
projectId?: string;
|
|
139
|
+
project_id?: string;
|
|
140
|
+
assetType?: MobileAssetsType | string;
|
|
141
|
+
date?: DateType;
|
|
142
|
+
isPaginated?: boolean;
|
|
143
|
+
};
|
|
144
|
+
export type MobileCaptureAssetsResponse = IngestPaginatedResponse<{
|
|
145
|
+
id: string;
|
|
146
|
+
projectId?: string;
|
|
147
|
+
uploadedBy: string;
|
|
148
|
+
updatedAt: string;
|
|
149
|
+
assetType: string;
|
|
150
|
+
thumbnailUrl: string;
|
|
151
|
+
}> | Array<{
|
|
152
|
+
id: string;
|
|
153
|
+
projectId?: string;
|
|
154
|
+
uploadedBy: string;
|
|
155
|
+
updatedAt: string;
|
|
156
|
+
assetType: string;
|
|
157
|
+
thumbnailUrl: string;
|
|
158
|
+
}>;
|
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;
|
|
@@ -45,11 +45,14 @@ export declare enum KitAlarm {
|
|
|
45
45
|
NoHdd = "no_hdd",
|
|
46
46
|
MissingRouterInfo = "missing_router_info",
|
|
47
47
|
AcFailure = "ac_failure",
|
|
48
|
-
LowBattery = "low_battery"
|
|
48
|
+
LowBattery = "low_battery",
|
|
49
|
+
GeneratorOff = "generator_off"
|
|
49
50
|
}
|
|
50
51
|
export declare enum KitMetricId {
|
|
51
52
|
SolarCharger = "solar_charger",
|
|
52
|
-
PanelPower = "panel_power"
|
|
53
|
+
PanelPower = "panel_power",
|
|
54
|
+
Fan = "fan",
|
|
55
|
+
FanTemperature = "fan_temperature"
|
|
53
56
|
}
|
|
54
57
|
export declare enum KitMetricPeriod {
|
|
55
58
|
Last15Minutes = "now-15m",
|
|
@@ -305,6 +308,19 @@ export type KitCreatePayload = {
|
|
|
305
308
|
region: KitRegion;
|
|
306
309
|
};
|
|
307
310
|
};
|
|
311
|
+
export type KitMetricStatsEntry = {
|
|
312
|
+
timestamp: string;
|
|
313
|
+
voltage: number;
|
|
314
|
+
current: number;
|
|
315
|
+
panelVoltage: number;
|
|
316
|
+
panelPower: number;
|
|
317
|
+
};
|
|
318
|
+
export type KitFanStatsEntry = {
|
|
319
|
+
timestamp: string;
|
|
320
|
+
speed: number;
|
|
321
|
+
internalTemperature: number;
|
|
322
|
+
externalTemperature: number | null;
|
|
323
|
+
};
|
|
308
324
|
export type KitUpdatePayload = {
|
|
309
325
|
countryId: number;
|
|
310
326
|
name: string;
|
|
@@ -329,8 +345,8 @@ export type KitStorage = {
|
|
|
329
345
|
formFactor: string;
|
|
330
346
|
};
|
|
331
347
|
model: string;
|
|
332
|
-
insertedAt:
|
|
333
|
-
updatedAt:
|
|
348
|
+
insertedAt: string;
|
|
349
|
+
updatedAt: string;
|
|
334
350
|
vendor: string;
|
|
335
351
|
kitId: number;
|
|
336
352
|
capacity: number;
|
|
@@ -352,6 +368,25 @@ export type KitAlarmItem = {
|
|
|
352
368
|
id: number;
|
|
353
369
|
kitId: number;
|
|
354
370
|
alarm: KitAlarm;
|
|
355
|
-
startDate:
|
|
356
|
-
endDate:
|
|
371
|
+
startDate: string;
|
|
372
|
+
endDate: string | null;
|
|
373
|
+
};
|
|
374
|
+
export type KitBox = {
|
|
375
|
+
id: string;
|
|
376
|
+
gatewaySerial: string;
|
|
377
|
+
gatewayMac: string;
|
|
378
|
+
gatewayConfig: Record<string, unknown> | null;
|
|
379
|
+
insertedAt: string;
|
|
380
|
+
updatedAt: string;
|
|
381
|
+
};
|
|
382
|
+
export type KitBoxCreatePayload = {
|
|
383
|
+
id?: string;
|
|
384
|
+
gatewaySerial: string;
|
|
385
|
+
gatewayMac: string;
|
|
386
|
+
gatewayConfig?: Record<string, unknown>;
|
|
387
|
+
};
|
|
388
|
+
export type KitBoxQueryParams = PaginationParams & {
|
|
389
|
+
id: string;
|
|
390
|
+
gatewaySerial: string;
|
|
391
|
+
gatewayMac: string;
|
|
357
392
|
};
|
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
|
+
};
|