@evercam/api 1.0.0-964e29308 → 1.0.0-97bd6ccd7
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 +197 -15
- package/dist/api/api/adminApi.d.ts +20 -15
- package/dist/api/api/aiApi.d.ts +125 -4
- package/dist/api/api/authzApi.d.ts +5 -3
- package/dist/api/api/evercamApi.d.ts +32 -12
- package/dist/api/api/evercamLabsApi.d.ts +5 -5
- package/dist/api/api/ingestApi.d.ts +21 -7
- package/dist/api/types/360.d.ts +167 -83
- package/dist/api/types/aiConfigs.d.ts +244 -0
- package/dist/api/types/analytics.d.ts +36 -23
- 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 +71 -0
- package/dist/api/types/automation.d.ts +23 -4
- package/dist/api/types/axios.d.ts +9 -9
- package/dist/api/types/bim.d.ts +28 -5
- package/dist/api/types/camera.d.ts +13 -32
- package/dist/api/types/comments.d.ts +10 -7
- package/dist/api/types/connector.d.ts +2 -0
- package/dist/api/types/copilot.d.ts +0 -3
- package/dist/api/types/detections.d.ts +3 -10
- package/dist/api/types/drone.d.ts +94 -6
- package/dist/api/types/errors.d.ts +13 -1
- package/dist/api/types/gateReport.d.ts +7 -22
- package/dist/api/types/gateReportManagement.d.ts +170 -0
- package/dist/api/types/hammertech.d.ts +98 -0
- package/dist/api/types/index.d.ts +8 -1
- package/dist/api/types/ingest.d.ts +98 -3
- package/dist/api/types/kit.d.ts +41 -51
- 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 +41 -2
- package/dist/api/types/observationEvents.d.ts +135 -0
- package/dist/api/types/observations.d.ts +84 -0
- package/dist/api/types/planner.d.ts +56 -10
- package/dist/api/types/posthog.d.ts +20 -0
- package/dist/api/types/project.d.ts +11 -2
- package/dist/api/types/recording.d.ts +8 -13
- package/dist/api/types/ring.d.ts +16 -16
- package/dist/api/types/roi.d.ts +3 -11
- package/dist/api/types/routeParams.d.ts +1 -0
- package/dist/api/types/shared.d.ts +18 -18
- package/dist/api/types/shares.d.ts +0 -13
- package/dist/api/types/siteAnalytics.d.ts +3 -5
- package/dist/api/types/siteAnalyticsManagement.d.ts +117 -0
- package/dist/api/types/siteView.d.ts +73 -0
- package/dist/api/types/snapshots.d.ts +13 -0
- package/dist/api/types/socket.d.ts +4 -0
- package/dist/api/types/storyblok.d.ts +0 -13
- package/dist/api/types/timelapse.d.ts +4 -8
- package/dist/api/types/user.d.ts +1 -4
- package/dist/api/utils.d.ts +0 -1
- package/dist/index.js +1832 -682
- 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 +111 -38
- 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/observations.d.ts +25 -0
- package/package.json +4 -2
- package/dist/api/types/vendorModel.d.ts +0 -15
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
export declare enum HammertechRegion {
|
|
2
|
+
US = "us",
|
|
3
|
+
AU = "au",
|
|
4
|
+
EU = "eu"
|
|
5
|
+
}
|
|
6
|
+
export type HammertechConnectPayload = {
|
|
7
|
+
email: string;
|
|
8
|
+
password: string;
|
|
9
|
+
tenant: string;
|
|
10
|
+
region: HammertechRegion;
|
|
11
|
+
};
|
|
12
|
+
export type HammertechProject = {
|
|
13
|
+
projectId: string;
|
|
14
|
+
name: string;
|
|
15
|
+
};
|
|
16
|
+
export type HammertechLocation = {
|
|
17
|
+
id: string;
|
|
18
|
+
name: string;
|
|
19
|
+
parentId: string | null;
|
|
20
|
+
};
|
|
21
|
+
export type HammertechCustomFieldDataType = "FreeText" | "TextArea" | "Number" | "Date" | "Time" | "DateTime" | "ExpiryDate" | "Checkbox" | "YesNoRadio" | "YesNoNaRadio" | "Dropdown" | "Radio" | "MultiSelectDropdown" | "ImageUpload" | "FileUpload" | "Signature" | "SignatureWithName" | "Heading" | "BigLabel" | "ExpandingLabel" | "Separator" | "NoMargin" | "Image" | "FileDownload" | "ChildForm" | "SectionStart" | "SectionEnd" | "SystemField" | string;
|
|
22
|
+
export type HammertechCustomField = {
|
|
23
|
+
id: string;
|
|
24
|
+
internalName: string;
|
|
25
|
+
name?: string;
|
|
26
|
+
customFieldType: HammertechCustomFieldDataType;
|
|
27
|
+
isRequired?: boolean;
|
|
28
|
+
answerOptions?: string[];
|
|
29
|
+
};
|
|
30
|
+
export type HammertechCustomFieldForm = {
|
|
31
|
+
id: string;
|
|
32
|
+
customFields: HammertechCustomField[];
|
|
33
|
+
};
|
|
34
|
+
export declare enum HammertechPriority {
|
|
35
|
+
Low = "Low",
|
|
36
|
+
Medium = "Medium",
|
|
37
|
+
High = "High",
|
|
38
|
+
Critical = "Critical"
|
|
39
|
+
}
|
|
40
|
+
export declare enum HammertechClassification {
|
|
41
|
+
Undefined = "Undefined",
|
|
42
|
+
Positive = "Positive",
|
|
43
|
+
Negative = "Negative",
|
|
44
|
+
Neutral = "Neutral"
|
|
45
|
+
}
|
|
46
|
+
export type HammertechIssueType = {
|
|
47
|
+
id: string;
|
|
48
|
+
name: string;
|
|
49
|
+
forcePriority?: boolean;
|
|
50
|
+
suggestedPriority?: HammertechPriority | null;
|
|
51
|
+
canBeNegative?: boolean;
|
|
52
|
+
canBeNeutral?: boolean;
|
|
53
|
+
canBePositive?: boolean;
|
|
54
|
+
openIssueCustomFieldForm?: HammertechCustomFieldForm | null;
|
|
55
|
+
};
|
|
56
|
+
export type HammertechCustomFieldValue = {
|
|
57
|
+
customFieldId: string;
|
|
58
|
+
value?: unknown;
|
|
59
|
+
storedFileId?: string;
|
|
60
|
+
};
|
|
61
|
+
export declare const HAMMERTECH_FILE_FIELD_TYPES: string[];
|
|
62
|
+
export declare function isHammertechFileFieldType(type?: string): boolean;
|
|
63
|
+
export declare function isHammertechSignatureWithName(type?: string): boolean;
|
|
64
|
+
export type HammertechStoredFilePayload = {
|
|
65
|
+
fileName?: string;
|
|
66
|
+
base64FileContent: string;
|
|
67
|
+
annotation?: string;
|
|
68
|
+
id?: string;
|
|
69
|
+
};
|
|
70
|
+
export type HammertechStoredFileResponse = {
|
|
71
|
+
isSuccess: boolean;
|
|
72
|
+
httpStatusCode: number;
|
|
73
|
+
messageText: string;
|
|
74
|
+
createdEntityId: string;
|
|
75
|
+
xRequestId: string;
|
|
76
|
+
};
|
|
77
|
+
export type HammertechFileFieldValue = {
|
|
78
|
+
file: File | null;
|
|
79
|
+
name: string;
|
|
80
|
+
};
|
|
81
|
+
export type HammertechCreateIssuePayload = {
|
|
82
|
+
projectId: string;
|
|
83
|
+
issueTypeId: string;
|
|
84
|
+
snapshot: string;
|
|
85
|
+
issueDate?: string;
|
|
86
|
+
description?: string;
|
|
87
|
+
priority?: HammertechPriority;
|
|
88
|
+
dueDate?: string;
|
|
89
|
+
classification?: HammertechClassification;
|
|
90
|
+
locationId?: string;
|
|
91
|
+
isPositiveObservation?: boolean;
|
|
92
|
+
isPhotoForFixRequired?: boolean;
|
|
93
|
+
openIssueCustomFieldFormId?: string;
|
|
94
|
+
openIssueCustomFieldValues?: HammertechCustomFieldValue[];
|
|
95
|
+
};
|
|
96
|
+
export type HammertechIssueResponse = {
|
|
97
|
+
id: string;
|
|
98
|
+
};
|
|
@@ -36,12 +36,13 @@ export * from "./storyblok";
|
|
|
36
36
|
export * from "./time";
|
|
37
37
|
export * from "./timelapse";
|
|
38
38
|
export * from "./user";
|
|
39
|
-
export * from "./vendorModel";
|
|
40
39
|
export * from "./videoWall";
|
|
41
40
|
export * from "./voyageControl";
|
|
41
|
+
export * from "./hammertech";
|
|
42
42
|
export * from "./weather";
|
|
43
43
|
export * from "./comments";
|
|
44
44
|
export * from "./detections";
|
|
45
|
+
export * from "./observations";
|
|
45
46
|
export * from "./axios";
|
|
46
47
|
export * from "./shared";
|
|
47
48
|
export * from "./company";
|
|
@@ -49,6 +50,7 @@ export * from "./kit";
|
|
|
49
50
|
export * from "./auditLogs";
|
|
50
51
|
export * from "./snapshots";
|
|
51
52
|
export * from "./siteAnalytics";
|
|
53
|
+
export * from "./siteAnalyticsManagement";
|
|
52
54
|
export * from "./widget";
|
|
53
55
|
export * from "./countries";
|
|
54
56
|
export * from "./automation";
|
|
@@ -62,3 +64,8 @@ export * from "./authz";
|
|
|
62
64
|
export * from "./oauth";
|
|
63
65
|
export * from "./ring";
|
|
64
66
|
export * from "./smartSeach";
|
|
67
|
+
export * from "./siteView";
|
|
68
|
+
export * from "./aiConfigs";
|
|
69
|
+
export * from "./gateReportManagement";
|
|
70
|
+
export * from "./socket";
|
|
71
|
+
export * from "./observationEvents";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PaginationParams, DateType, JsonValue } from "@evercam/api/types";
|
|
1
|
+
import { PaginationParams, DateType, JsonValue, TuplePoint2D } from "@evercam/api/types";
|
|
2
2
|
import type { _360FloorV2, _360WalkV2 } from "@evercam/api/types/360";
|
|
3
3
|
export declare enum IngestProcessingStatus {
|
|
4
4
|
Completed = "completed",
|
|
@@ -8,7 +8,8 @@ export declare enum IngestProcessingStatus {
|
|
|
8
8
|
Aborted = "aborted",
|
|
9
9
|
Paused = "paused",
|
|
10
10
|
InProgress = "inprogress",
|
|
11
|
-
Pending = "pending"
|
|
11
|
+
Pending = "pending",
|
|
12
|
+
Downloading = "downloading"
|
|
12
13
|
}
|
|
13
14
|
export declare enum MobileAssetsType {
|
|
14
15
|
Audio = "mobile_audios",
|
|
@@ -38,6 +39,80 @@ export type IngestPaginatedResponse<T> = {
|
|
|
38
39
|
total: number;
|
|
39
40
|
pageCount?: number;
|
|
40
41
|
};
|
|
42
|
+
export declare enum IngestProcessingStepStatus {
|
|
43
|
+
Running = "running",
|
|
44
|
+
Completed = "completed",
|
|
45
|
+
Failed = "failed",
|
|
46
|
+
Skipped = "skipped"
|
|
47
|
+
}
|
|
48
|
+
export declare enum IngestProcessingRunStatus {
|
|
49
|
+
Processing = "processing",
|
|
50
|
+
Completed = "completed",
|
|
51
|
+
Failed = "failed"
|
|
52
|
+
}
|
|
53
|
+
export type IngestProcessingMetricStat = {
|
|
54
|
+
avg?: number;
|
|
55
|
+
peak?: number;
|
|
56
|
+
};
|
|
57
|
+
export type IngestProcessingStepMetrics = {
|
|
58
|
+
cpu?: IngestProcessingMetricStat;
|
|
59
|
+
ram?: IngestProcessingMetricStat;
|
|
60
|
+
gpuUtil?: IngestProcessingMetricStat;
|
|
61
|
+
gpuMemDevice?: IngestProcessingMetricStat;
|
|
62
|
+
gpuMemStep?: IngestProcessingMetricStat;
|
|
63
|
+
ramTotalMb?: number;
|
|
64
|
+
diskTotalMb?: number;
|
|
65
|
+
};
|
|
66
|
+
export type IngestProcessingStepDetail = {
|
|
67
|
+
input?: Record<string, JsonValue>;
|
|
68
|
+
params?: Record<string, JsonValue>;
|
|
69
|
+
output?: Record<string, JsonValue>;
|
|
70
|
+
metrics?: IngestProcessingStepMetrics;
|
|
71
|
+
error?: string;
|
|
72
|
+
};
|
|
73
|
+
export type IngestProcessingStep = {
|
|
74
|
+
name: string;
|
|
75
|
+
tool?: string;
|
|
76
|
+
status: IngestProcessingStepStatus | string;
|
|
77
|
+
startedAt?: string;
|
|
78
|
+
endedAt?: string;
|
|
79
|
+
durationSec?: number;
|
|
80
|
+
durationPct?: number;
|
|
81
|
+
detail?: IngestProcessingStepDetail;
|
|
82
|
+
};
|
|
83
|
+
export type IngestProcessingDiskUsage = {
|
|
84
|
+
sourceMb?: number;
|
|
85
|
+
framesMb?: number;
|
|
86
|
+
resultMb?: number;
|
|
87
|
+
totalMb?: number;
|
|
88
|
+
};
|
|
89
|
+
export type IngestProcessingPeakUsage = {
|
|
90
|
+
cpu?: number;
|
|
91
|
+
ram?: number;
|
|
92
|
+
gpuUtil?: number;
|
|
93
|
+
gpuMemDevice?: number;
|
|
94
|
+
gpuMemStep?: number;
|
|
95
|
+
};
|
|
96
|
+
export type IngestProcessingFootprint = {
|
|
97
|
+
disk?: IngestProcessingDiskUsage;
|
|
98
|
+
peak?: IngestProcessingPeakUsage;
|
|
99
|
+
};
|
|
100
|
+
export type IngestProcessingProgress = {
|
|
101
|
+
available: boolean;
|
|
102
|
+
status?: IngestProcessingRunStatus | string;
|
|
103
|
+
processingStatus?: IngestProcessingStatus | string;
|
|
104
|
+
currentStep?: string | null;
|
|
105
|
+
error?: string | null;
|
|
106
|
+
startedAt?: string;
|
|
107
|
+
steps: IngestProcessingStep[];
|
|
108
|
+
footprint?: IngestProcessingFootprint;
|
|
109
|
+
};
|
|
110
|
+
export type IngestTrackedAsset = {
|
|
111
|
+
id: number;
|
|
112
|
+
projectId: string;
|
|
113
|
+
name?: string;
|
|
114
|
+
processingStatus?: IngestProcessingStatus | string;
|
|
115
|
+
};
|
|
41
116
|
export type DroneUploadItem = {
|
|
42
117
|
id: number;
|
|
43
118
|
projectId: string;
|
|
@@ -48,11 +123,14 @@ export type DroneUploadItem = {
|
|
|
48
123
|
modelZip: string;
|
|
49
124
|
orthomosaicZip: string;
|
|
50
125
|
reportPdf: string;
|
|
126
|
+
processingLog: string;
|
|
51
127
|
uploadedBy: string;
|
|
52
128
|
processingStatus: IngestProcessingStatus | string;
|
|
53
129
|
modelCesiumAssetId: string;
|
|
54
130
|
updatedAt: string;
|
|
55
131
|
hasTusLinks: boolean;
|
|
132
|
+
hasSteps: boolean;
|
|
133
|
+
aerialShots: AerialShotItem[];
|
|
56
134
|
};
|
|
57
135
|
export type DroneUploadsResponse = IngestPaginatedResponse<DroneUploadItem>;
|
|
58
136
|
export type DroneQueueResponse = {
|
|
@@ -70,16 +148,33 @@ export type DroneUploadUpdateRequestPayload = {
|
|
|
70
148
|
title: string;
|
|
71
149
|
fileExtension: string;
|
|
72
150
|
}[];
|
|
151
|
+
aerialShots: {
|
|
152
|
+
url: string;
|
|
153
|
+
title: string;
|
|
154
|
+
fileExtension: string;
|
|
155
|
+
gpsLatitude: string;
|
|
156
|
+
gpsLongitude: string;
|
|
157
|
+
gpsAltitude: string;
|
|
158
|
+
}[];
|
|
73
159
|
projectName: string;
|
|
74
160
|
};
|
|
75
161
|
export type CalculateMeasuringOperationRequestPayload = {
|
|
76
162
|
date: DateType;
|
|
77
|
-
points: [
|
|
163
|
+
points: TuplePoint2D[];
|
|
78
164
|
operation: string;
|
|
79
165
|
};
|
|
80
166
|
export type FlightImagesQueryParams = Partial<Omit<PaginationParams, "sort">> & {
|
|
81
167
|
date: DateType;
|
|
82
168
|
};
|
|
169
|
+
export type AerialShotItem = {
|
|
170
|
+
id: number;
|
|
171
|
+
droneUploadId: number;
|
|
172
|
+
fileLink: string;
|
|
173
|
+
thumbnailLink: string;
|
|
174
|
+
gpsLatitude: string;
|
|
175
|
+
gpsLongitude: string;
|
|
176
|
+
gpsAltitude: string;
|
|
177
|
+
};
|
|
83
178
|
export type InspectionToolRequestPayload = {
|
|
84
179
|
date: DateType;
|
|
85
180
|
gpsAltitude: string;
|
package/dist/api/types/kit.d.ts
CHANGED
|
@@ -22,6 +22,36 @@ export type Kit = {
|
|
|
22
22
|
storages: KitStorage[];
|
|
23
23
|
createdAt: string;
|
|
24
24
|
};
|
|
25
|
+
export declare enum KitSupportCheckId {
|
|
26
|
+
RouterSmsRoundTrip = "router_sms_round_trip",
|
|
27
|
+
NvrRecordingAllCameras = "nvr_recording_all_cameras",
|
|
28
|
+
NvrRecordingThirdStream = "nvr_recording_third_stream",
|
|
29
|
+
CamerasHaveDeviceId = "cameras_have_device_id",
|
|
30
|
+
CamerasRecording = "cameras_recording",
|
|
31
|
+
CamerasSdCardMounted = "cameras_sd_card_mounted",
|
|
32
|
+
BatteryReadings = "battery_readings"
|
|
33
|
+
}
|
|
34
|
+
export declare enum KitSupportCheckStatus {
|
|
35
|
+
Passed = "passed",
|
|
36
|
+
Failed = "failed",
|
|
37
|
+
Skipped = "skipped"
|
|
38
|
+
}
|
|
39
|
+
export type KitSupportCheck = {
|
|
40
|
+
id: KitSupportCheckId;
|
|
41
|
+
name: string;
|
|
42
|
+
status: KitSupportCheckStatus;
|
|
43
|
+
error: string | null;
|
|
44
|
+
};
|
|
45
|
+
export type KitSupportChecklist = {
|
|
46
|
+
checks: KitSupportCheck[];
|
|
47
|
+
};
|
|
48
|
+
export type KitDiagnosticRun = {
|
|
49
|
+
kitId: number;
|
|
50
|
+
kitSerial: string;
|
|
51
|
+
checks: KitSupportCheck[];
|
|
52
|
+
ranAt: string;
|
|
53
|
+
isSeen: boolean;
|
|
54
|
+
};
|
|
25
55
|
export declare enum KitStatus {
|
|
26
56
|
New = "new",
|
|
27
57
|
Active = "active",
|
|
@@ -45,11 +75,14 @@ export declare enum KitAlarm {
|
|
|
45
75
|
NoHdd = "no_hdd",
|
|
46
76
|
MissingRouterInfo = "missing_router_info",
|
|
47
77
|
AcFailure = "ac_failure",
|
|
48
|
-
LowBattery = "low_battery"
|
|
78
|
+
LowBattery = "low_battery",
|
|
79
|
+
GeneratorOff = "generator_off"
|
|
49
80
|
}
|
|
50
81
|
export declare enum KitMetricId {
|
|
51
82
|
SolarCharger = "solar_charger",
|
|
52
|
-
PanelPower = "panel_power"
|
|
83
|
+
PanelPower = "panel_power",
|
|
84
|
+
Fan = "fan",
|
|
85
|
+
FanTemperature = "fan_temperature"
|
|
53
86
|
}
|
|
54
87
|
export declare enum KitMetricPeriod {
|
|
55
88
|
Last15Minutes = "now-15m",
|
|
@@ -115,55 +148,6 @@ export declare enum KitChartType {
|
|
|
115
148
|
TimeSeries = "timeseries",
|
|
116
149
|
BarChart = "barchart"
|
|
117
150
|
}
|
|
118
|
-
export type GrafanaDataSource = {
|
|
119
|
-
type: string;
|
|
120
|
-
uid: string;
|
|
121
|
-
};
|
|
122
|
-
export type GrafanaTarget = {
|
|
123
|
-
expr: string;
|
|
124
|
-
refId: string;
|
|
125
|
-
datasourceId?: string;
|
|
126
|
-
intervalMs?: number;
|
|
127
|
-
maxDataPoints?: number;
|
|
128
|
-
};
|
|
129
|
-
export type GrafanaPanel = {
|
|
130
|
-
[key: string]: unknown;
|
|
131
|
-
id: GrafanaMetricId;
|
|
132
|
-
name: keyof GrafanaMetricId;
|
|
133
|
-
title: string;
|
|
134
|
-
description: string;
|
|
135
|
-
type: KitChartType;
|
|
136
|
-
datasource: GrafanaDataSource;
|
|
137
|
-
targets: GrafanaTarget[];
|
|
138
|
-
maxDataPoints?: number;
|
|
139
|
-
interval?: string;
|
|
140
|
-
timeFrom?: string;
|
|
141
|
-
timeShift?: string;
|
|
142
|
-
options?: {
|
|
143
|
-
maxDataPoints?: number;
|
|
144
|
-
interval?: string;
|
|
145
|
-
};
|
|
146
|
-
};
|
|
147
|
-
export type GrafanaDashboard = {
|
|
148
|
-
[key: string]: unknown;
|
|
149
|
-
panels: GrafanaPanel[];
|
|
150
|
-
time?: {
|
|
151
|
-
from: string;
|
|
152
|
-
to: string;
|
|
153
|
-
};
|
|
154
|
-
timepicker?: {
|
|
155
|
-
refresh_intervals: string[];
|
|
156
|
-
time_options: string[];
|
|
157
|
-
};
|
|
158
|
-
};
|
|
159
|
-
export type GrafanaQueryOptions = {
|
|
160
|
-
metricId: GrafanaMetricId;
|
|
161
|
-
host: string;
|
|
162
|
-
job?: string;
|
|
163
|
-
from?: string;
|
|
164
|
-
to?: string;
|
|
165
|
-
variables?: Record<string, string>;
|
|
166
|
-
};
|
|
167
151
|
export type GrafanaTimeSeriesValue = number | string | null;
|
|
168
152
|
export type GrafanaTimeSeriesValues = GrafanaTimeSeriesValue[][];
|
|
169
153
|
export type GrafanaFieldConfig = {
|
|
@@ -312,6 +296,12 @@ export type KitMetricStatsEntry = {
|
|
|
312
296
|
panelVoltage: number;
|
|
313
297
|
panelPower: number;
|
|
314
298
|
};
|
|
299
|
+
export type KitFanStatsEntry = {
|
|
300
|
+
timestamp: string;
|
|
301
|
+
speed: number;
|
|
302
|
+
internalTemperature: number;
|
|
303
|
+
externalTemperature: number | null;
|
|
304
|
+
};
|
|
315
305
|
export type KitUpdatePayload = {
|
|
316
306
|
countryId: number;
|
|
317
307
|
name: 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
|
+
};
|
|
@@ -43,7 +43,8 @@ export declare enum MediaFileType {
|
|
|
43
43
|
Mp4 = "mp4",
|
|
44
44
|
Png = "png",
|
|
45
45
|
Pdf = "pdf",
|
|
46
|
-
Jpeg = "jpeg"
|
|
46
|
+
Jpeg = "jpeg",
|
|
47
|
+
Csv = "csv"
|
|
47
48
|
}
|
|
48
49
|
export declare enum MediaStatus {
|
|
49
50
|
Pending = "Pending",
|
|
@@ -93,7 +94,7 @@ export type MediaCreateRequestPayload = {
|
|
|
93
94
|
cameraExid?: string;
|
|
94
95
|
requestedBy?: string;
|
|
95
96
|
notes?: string;
|
|
96
|
-
category?: ClipsCategory;
|
|
97
|
+
category?: MediaCategory | ClipsCategory;
|
|
97
98
|
isUrgent?: boolean;
|
|
98
99
|
storeAsType?: MediaType;
|
|
99
100
|
};
|
|
@@ -108,6 +109,11 @@ export declare enum ClipsCategory {
|
|
|
108
109
|
Marketing = "marketing",
|
|
109
110
|
BestPracticies = "best_practices"
|
|
110
111
|
}
|
|
112
|
+
export declare enum MediaCategory {
|
|
113
|
+
Weather = "weather",
|
|
114
|
+
SmartSearch = "smart_search",
|
|
115
|
+
Copilot = "copilot"
|
|
116
|
+
}
|
|
111
117
|
export type MediaDeleteRequestPayload = {
|
|
112
118
|
timelapseIds: (string | number)[];
|
|
113
119
|
compareIds: (string | number)[];
|
|
@@ -5,7 +5,26 @@ export declare enum NotificationType {
|
|
|
5
5
|
TimelapseCreated = "timelapse_created",
|
|
6
6
|
TimelapseFailed = "timelapse_failed",
|
|
7
7
|
DroneProcessing = "drone_processing_done",
|
|
8
|
-
Processing360 = "three_sixty_done"
|
|
8
|
+
Processing360 = "three_sixty_done",
|
|
9
|
+
SmartSearchExportReady = "smart_search_export_ready",
|
|
10
|
+
SmartSearchExportFailed = "smart_search_export_failed",
|
|
11
|
+
GateReportExportReady = "gate_report_export_ready",
|
|
12
|
+
GateReportExportFailed = "gate_report_export_failed",
|
|
13
|
+
PpeExportReady = "ppe_export_ready",
|
|
14
|
+
PpeExportFailed = "ppe_export_failed",
|
|
15
|
+
WeatherExportReady = "weather_export_ready",
|
|
16
|
+
WeatherExportFailed = "weather_export_failed",
|
|
17
|
+
CompareReady = "compare_ready",
|
|
18
|
+
CompareFailed = "compare_failed",
|
|
19
|
+
ClipExportReady = "clip_export_ready",
|
|
20
|
+
ClipExportFailed = "clip_export_failed",
|
|
21
|
+
NvrClipReady = "nvr_clip_ready",
|
|
22
|
+
NvrClipFailed = "nvr_clip_failed",
|
|
23
|
+
UploadComplete = "upload_complete",
|
|
24
|
+
UploadFailed = "upload_failed",
|
|
25
|
+
RingCamerasImported = "ring_cameras_imported",
|
|
26
|
+
StorageWarning = "storage_warning",
|
|
27
|
+
Other = "other"
|
|
9
28
|
}
|
|
10
29
|
export interface NotificationContextBase {
|
|
11
30
|
cameraExid?: string;
|
|
@@ -41,7 +60,27 @@ export interface Processing360Context extends NotificationContextBase {
|
|
|
41
60
|
date: string;
|
|
42
61
|
floor: string;
|
|
43
62
|
}
|
|
44
|
-
export
|
|
63
|
+
export interface ExportNotificationContext extends NotificationContextBase {
|
|
64
|
+
projectExid: string;
|
|
65
|
+
archiveExid?: string;
|
|
66
|
+
compareExid?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface UploadNotificationContext extends NotificationContextBase {
|
|
69
|
+
projectExid: string;
|
|
70
|
+
}
|
|
71
|
+
export interface RingCamerasImportedContext extends NotificationContextBase {
|
|
72
|
+
projectExid: string;
|
|
73
|
+
projectName: string;
|
|
74
|
+
cameras: Array<{
|
|
75
|
+
exid: string;
|
|
76
|
+
name: string;
|
|
77
|
+
}>;
|
|
78
|
+
}
|
|
79
|
+
export interface StorageWarningContext extends NotificationContextBase {
|
|
80
|
+
projectExid: string;
|
|
81
|
+
cameraName: string;
|
|
82
|
+
}
|
|
83
|
+
export type NotificationContext = CameraShareContext | CameraStatusChangeContext | MentionContext | TimelapseCreatedContext | TimelapseFailedContext | DroneProcessingContext | Processing360Context | ExportNotificationContext | UploadNotificationContext | RingCamerasImportedContext | StorageWarningContext;
|
|
45
84
|
export type Notification = {
|
|
46
85
|
id: number;
|
|
47
86
|
type: NotificationType;
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
export declare enum ObservationEventStatus {
|
|
2
|
+
Detected = "detected",
|
|
3
|
+
Approved = "approved",
|
|
4
|
+
Disapproved = "disapproved",
|
|
5
|
+
Unsure = "unsure"
|
|
6
|
+
}
|
|
7
|
+
export interface ObservationEventStatusConfig {
|
|
8
|
+
bg: string;
|
|
9
|
+
fg: string;
|
|
10
|
+
border: string;
|
|
11
|
+
label: string;
|
|
12
|
+
}
|
|
13
|
+
export declare const OBSERVATION_EVENT_STATUS_CONFIGS: Record<ObservationEventStatus, ObservationEventStatusConfig>;
|
|
14
|
+
export interface SiteAnalyticsObservationEvent {
|
|
15
|
+
id: number;
|
|
16
|
+
sourceType?: ObservationSourceType;
|
|
17
|
+
sessionId?: string | null;
|
|
18
|
+
markerId?: string | null;
|
|
19
|
+
drawingId?: string | null;
|
|
20
|
+
drawingName?: string | null;
|
|
21
|
+
walkName?: string | null;
|
|
22
|
+
sightings?: Array<Record<string, unknown>> | null;
|
|
23
|
+
observationTypeId: number;
|
|
24
|
+
observationName: string | null;
|
|
25
|
+
observationCode: string | null;
|
|
26
|
+
cameraExid: string;
|
|
27
|
+
projectExid: string | null;
|
|
28
|
+
startTime: string;
|
|
29
|
+
endTime: string | null;
|
|
30
|
+
confidence: number | null;
|
|
31
|
+
status: ObservationEventStatus;
|
|
32
|
+
aiEvidence: string | null;
|
|
33
|
+
bbox: number[] | null;
|
|
34
|
+
model: string | null;
|
|
35
|
+
promptId: number | null;
|
|
36
|
+
observationMetadata: Record<string, unknown> | null;
|
|
37
|
+
trigger: ObservationEventTrigger | string;
|
|
38
|
+
reviewedBy: string | null;
|
|
39
|
+
reviewedAt: string | null;
|
|
40
|
+
insertedAt: string;
|
|
41
|
+
}
|
|
42
|
+
export type ObservationEventQueryParams = {
|
|
43
|
+
cameraExid?: string;
|
|
44
|
+
projectExid?: string;
|
|
45
|
+
observationTypeIds?: string;
|
|
46
|
+
status?: ObservationEventStatus | string;
|
|
47
|
+
sourceType?: ObservationSourceType | string;
|
|
48
|
+
sortBy?: string;
|
|
49
|
+
sortDir?: "asc" | "desc";
|
|
50
|
+
page?: number;
|
|
51
|
+
limit?: number;
|
|
52
|
+
};
|
|
53
|
+
export interface ObservationEventListResponse {
|
|
54
|
+
items: SiteAnalyticsObservationEvent[];
|
|
55
|
+
total: number;
|
|
56
|
+
page: number;
|
|
57
|
+
limit: number;
|
|
58
|
+
from: number;
|
|
59
|
+
to: number;
|
|
60
|
+
}
|
|
61
|
+
export type ObservationEventVerdict = ObservationEventStatus.Approved | ObservationEventStatus.Disapproved | ObservationEventStatus.Unsure;
|
|
62
|
+
export interface ObservationEventReviewPayload {
|
|
63
|
+
status: ObservationEventVerdict;
|
|
64
|
+
}
|
|
65
|
+
export interface ObservationEventReviewResponse {
|
|
66
|
+
updated: boolean;
|
|
67
|
+
id: number | string;
|
|
68
|
+
message: string;
|
|
69
|
+
}
|
|
70
|
+
export declare enum ObservationSourceType {
|
|
71
|
+
Camera = "camera",
|
|
72
|
+
Walk360 = "walk360",
|
|
73
|
+
Drone = "drone"
|
|
74
|
+
}
|
|
75
|
+
export declare enum ObservationEventTrigger {
|
|
76
|
+
CameraDetection = "camera_detection",
|
|
77
|
+
Walk = "walk"
|
|
78
|
+
}
|
|
79
|
+
export declare enum Walk360ProcessedSessionStatus {
|
|
80
|
+
Done = "done",
|
|
81
|
+
Processing = "processing",
|
|
82
|
+
Retryable = "retryable",
|
|
83
|
+
Error = "error"
|
|
84
|
+
}
|
|
85
|
+
export interface Walk360Activity {
|
|
86
|
+
observationTypeId: number;
|
|
87
|
+
}
|
|
88
|
+
export interface Walk360WorkerInfo {
|
|
89
|
+
coolifyAppId?: string | null;
|
|
90
|
+
workerStatus?: string | null;
|
|
91
|
+
workerIsRunning?: boolean;
|
|
92
|
+
appUrl?: string | null;
|
|
93
|
+
visionProvider?: string;
|
|
94
|
+
}
|
|
95
|
+
export interface Walk360Config extends Walk360WorkerInfo {
|
|
96
|
+
projectExid: string;
|
|
97
|
+
enabled: boolean;
|
|
98
|
+
startDate: string | null;
|
|
99
|
+
activities: Walk360Activity[];
|
|
100
|
+
configured: boolean;
|
|
101
|
+
maxParallelWalks?: number;
|
|
102
|
+
}
|
|
103
|
+
export interface Walk360ConfigSummary extends Walk360WorkerInfo {
|
|
104
|
+
projectExid: string;
|
|
105
|
+
projectName?: string | null;
|
|
106
|
+
enabled: boolean;
|
|
107
|
+
startDate: string | null;
|
|
108
|
+
activities: Walk360Activity[];
|
|
109
|
+
maxParallelWalks: number;
|
|
110
|
+
walksDone: number;
|
|
111
|
+
walksProcessing: number;
|
|
112
|
+
walksRetryable: number;
|
|
113
|
+
eventsCreated: number;
|
|
114
|
+
lastProcessedAt: string | null;
|
|
115
|
+
updatedAt: string | null;
|
|
116
|
+
}
|
|
117
|
+
export interface Walk360WorkerAction {
|
|
118
|
+
projectExid: string;
|
|
119
|
+
appUuid: string | null;
|
|
120
|
+
message: string;
|
|
121
|
+
state: string;
|
|
122
|
+
}
|
|
123
|
+
export interface Walk360ProcessedSession {
|
|
124
|
+
id: number;
|
|
125
|
+
projectExid: string;
|
|
126
|
+
sourceType: ObservationSourceType;
|
|
127
|
+
sessionId: string;
|
|
128
|
+
status: Walk360ProcessedSessionStatus;
|
|
129
|
+
markersTotal: number | null;
|
|
130
|
+
markersProcessed: number | null;
|
|
131
|
+
eventsCreated: number | null;
|
|
132
|
+
error: string | null;
|
|
133
|
+
startedAt: string;
|
|
134
|
+
finishedAt: string | null;
|
|
135
|
+
}
|