@evercam/api 1.0.0-e13c64fc3 → 1.0.0-e1cf8aca7
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 +198 -15
- package/dist/api/api/adminApi.d.ts +30 -16
- package/dist/api/api/aiApi.d.ts +45 -4
- package/dist/api/api/authzApi.d.ts +1 -2
- package/dist/api/api/evercamApi.d.ts +27 -10
- package/dist/api/api/evercamLabsApi.d.ts +5 -6
- package/dist/api/api/ingestApi.d.ts +53 -44
- package/dist/api/types/360.d.ts +173 -54
- package/dist/api/types/aiConfigs.d.ts +154 -0
- package/dist/api/types/analytics.d.ts +37 -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 +10 -7
- package/dist/api/types/connector.d.ts +1 -0
- package/dist/api/types/detections.d.ts +5 -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 +5 -1
- package/dist/api/types/ingest.d.ts +27 -3
- package/dist/api/types/kit.d.ts +11 -2
- 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/posthog.d.ts +20 -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/siteAnalyticsManagement.d.ts +92 -0
- package/dist/api/types/siteView.d.ts +73 -0
- package/dist/api/types/snapshots.d.ts +48 -3
- package/dist/api/types/storageProvider.d.ts +19 -0
- package/dist/api/types/timelapse.d.ts +6 -2
- package/dist/api/types/user.d.ts +1 -5
- package/dist/api/utils.d.ts +0 -1
- package/dist/index.js +1628 -767
- 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 +73 -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
- package/dist/api/types/storageServers.d.ts +0 -4
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { CameraExid, DateType, ProjectExid } from "@evercam/api/types";
|
|
2
|
+
export type SiteAnalyticsCoolifyStatus = {
|
|
3
|
+
appUuid: string | null;
|
|
4
|
+
name: string | null;
|
|
5
|
+
serverUuid: string | null;
|
|
6
|
+
serverName: string | null;
|
|
7
|
+
appUrl: string | null;
|
|
8
|
+
status: string | null;
|
|
9
|
+
isRunning: boolean;
|
|
10
|
+
updatedAt: string | null;
|
|
11
|
+
};
|
|
12
|
+
export type SiteAnalyticsProjectMeta = {
|
|
13
|
+
exid: ProjectExid;
|
|
14
|
+
name: string | null;
|
|
15
|
+
timezone: string | null;
|
|
16
|
+
featureFlags: string[] | null;
|
|
17
|
+
};
|
|
18
|
+
export type SiteAnalyticsCameraMeta = {
|
|
19
|
+
exid: CameraExid;
|
|
20
|
+
name: string | null;
|
|
21
|
+
status: string | null;
|
|
22
|
+
featureFlags: string[] | null;
|
|
23
|
+
};
|
|
24
|
+
export type SiteAnalyticsManagedApp = {
|
|
25
|
+
id: number;
|
|
26
|
+
projectExid: ProjectExid;
|
|
27
|
+
cameraExid: CameraExid;
|
|
28
|
+
coolifyAppId: string | null;
|
|
29
|
+
appVersion: string;
|
|
30
|
+
modelId: number | null;
|
|
31
|
+
startDate: DateType | null;
|
|
32
|
+
endDate: DateType | null;
|
|
33
|
+
startHour: number;
|
|
34
|
+
endHour: number;
|
|
35
|
+
source: string;
|
|
36
|
+
override: boolean;
|
|
37
|
+
timeIncreaseFrequency: number;
|
|
38
|
+
insertedAt: DateType | null;
|
|
39
|
+
updatedAt: DateType | null;
|
|
40
|
+
coolify: SiteAnalyticsCoolifyStatus | null;
|
|
41
|
+
project: SiteAnalyticsProjectMeta | null;
|
|
42
|
+
camera: SiteAnalyticsCameraMeta | null;
|
|
43
|
+
lastTrackingAt: DateType | null;
|
|
44
|
+
};
|
|
45
|
+
export type CreateSiteAnalyticsAppPayload = {
|
|
46
|
+
projectExid: ProjectExid;
|
|
47
|
+
cameraExid: CameraExid;
|
|
48
|
+
coolifyServerUuid: string;
|
|
49
|
+
appVersion?: string;
|
|
50
|
+
modelId?: number | null;
|
|
51
|
+
startDate?: DateType | null;
|
|
52
|
+
endDate?: DateType | null;
|
|
53
|
+
startHour?: number;
|
|
54
|
+
endHour?: number;
|
|
55
|
+
source?: string;
|
|
56
|
+
override?: boolean;
|
|
57
|
+
timeIncreaseFrequency?: number;
|
|
58
|
+
};
|
|
59
|
+
export type UpdateSiteAnalyticsAppPayload = Partial<Omit<CreateSiteAnalyticsAppPayload, "projectExid" | "cameraExid" | "coolifyServerUuid">>;
|
|
60
|
+
export type ModelOption = {
|
|
61
|
+
modelId: number;
|
|
62
|
+
version: string;
|
|
63
|
+
};
|
|
64
|
+
export type SiteAnalyticsAppConfigFormValue = {
|
|
65
|
+
appVersion: string;
|
|
66
|
+
modelId: number | null;
|
|
67
|
+
startDate: string | null;
|
|
68
|
+
endDate: string | null;
|
|
69
|
+
startHour: number;
|
|
70
|
+
endHour: number;
|
|
71
|
+
source: string;
|
|
72
|
+
override: boolean;
|
|
73
|
+
timeIncreaseFrequency: number;
|
|
74
|
+
};
|
|
75
|
+
export type SiteAnalyticsManagementListParams = {
|
|
76
|
+
projectExid?: ProjectExid;
|
|
77
|
+
includeStatus?: boolean;
|
|
78
|
+
page?: number;
|
|
79
|
+
limit?: number;
|
|
80
|
+
};
|
|
81
|
+
export type CreateSiteAnalyticsAppResponse = {
|
|
82
|
+
created: boolean;
|
|
83
|
+
id: number | null;
|
|
84
|
+
data: SiteAnalyticsManagedApp | null;
|
|
85
|
+
count: number | null;
|
|
86
|
+
message: string;
|
|
87
|
+
};
|
|
88
|
+
export type DeleteSiteAnalyticsAppResponse = {
|
|
89
|
+
deleted: boolean;
|
|
90
|
+
count: number;
|
|
91
|
+
message: string;
|
|
92
|
+
};
|
|
@@ -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
|
};
|
|
@@ -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
|
+
}
|
|
@@ -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;
|
|
@@ -195,9 +193,6 @@ export type UserUpdateRequestPayload = {
|
|
|
195
193
|
country: string;
|
|
196
194
|
persona: string;
|
|
197
195
|
};
|
|
198
|
-
export type UserDeleteRequestPayload = {
|
|
199
|
-
verifEmail: string;
|
|
200
|
-
};
|
|
201
196
|
export type GoogleAuthRequestPayload = {
|
|
202
197
|
code: string;
|
|
203
198
|
redirectUri: string;
|
|
@@ -339,6 +334,7 @@ export type ProjectUserWithRole = {
|
|
|
339
334
|
name: string;
|
|
340
335
|
exid: string;
|
|
341
336
|
};
|
|
337
|
+
persona: Persona;
|
|
342
338
|
permissions: string[];
|
|
343
339
|
role: Role;
|
|
344
340
|
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;
|