@evercam/api 1.0.0-eef6c21fd → 1.0.0-f0709bb7a
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 +53 -21
- package/dist/api/api/adminApi.d.ts +19 -15
- package/dist/api/api/aiApi.d.ts +60 -2
- package/dist/api/api/authzApi.d.ts +4 -1
- package/dist/api/api/evercamApi.d.ts +23 -8
- package/dist/api/api/evercamLabsApi.d.ts +5 -5
- package/dist/api/api/ingestApi.d.ts +13 -3
- package/dist/api/types/360.d.ts +142 -4
- package/dist/api/types/aiConfigs.d.ts +154 -0
- package/dist/api/types/analytics.d.ts +32 -1
- package/dist/api/types/anpr.d.ts +31 -2
- package/dist/api/types/authz.d.ts +46 -0
- package/dist/api/types/axios.d.ts +8 -5
- package/dist/api/types/bim.d.ts +26 -1
- package/dist/api/types/camera.d.ts +3 -1
- package/dist/api/types/comments.d.ts +2 -1
- package/dist/api/types/connector.d.ts +2 -0
- package/dist/api/types/detections.d.ts +3 -1
- package/dist/api/types/drone.d.ts +6 -5
- package/dist/api/types/errors.d.ts +11 -0
- package/dist/api/types/gateReport.d.ts +1 -0
- package/dist/api/types/gateReportManagement.d.ts +175 -0
- package/dist/api/types/hammertech.d.ts +98 -0
- package/dist/api/types/index.d.ts +5 -0
- package/dist/api/types/ingest.d.ts +13 -1
- package/dist/api/types/kit.d.ts +38 -2
- package/dist/api/types/media.d.ts +8 -2
- package/dist/api/types/notification.d.ts +12 -2
- package/dist/api/types/observations.d.ts +85 -0
- package/dist/api/types/posthog.d.ts +20 -0
- package/dist/api/types/recording.d.ts +3 -8
- package/dist/api/types/roi.d.ts +2 -1
- package/dist/api/types/siteAnalytics.d.ts +1 -1
- package/dist/api/types/siteAnalyticsManagement.d.ts +92 -0
- package/dist/api/types/siteView.d.ts +0 -1
- package/dist/api/types/snapshots.d.ts +5 -0
- package/dist/api/types/user.d.ts +1 -4
- package/dist/api/utils.d.ts +0 -1
- package/dist/index.js +1158 -687
- 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 +64 -2
- package/dist/shared/types/customDataTableFilters.d.ts +10 -0
- package/dist/shared/types/index.d.ts +2 -0
- package/dist/shared/types/observations.d.ts +21 -0
- package/package.json +4 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { type _360Scene, type Media, type DroneModel, type MobileCaptureSnapshot, type TimelineDateInterval, type TimelinePrecision, type Comment, type ProcoreUserProject, type ProcoreProjectAlbum, type ProcoreObservationType, type AconexUserProject, type AutodeskUserHub, type AutodeskProject, type AutodeskFolder, type ProcoreType, TaskStatus, Tag, TuplePoint2D } from "@evercam/shared/types";
|
|
1
|
+
import { type _360Scene, type Media, type DroneModel, type MobileCaptureSnapshot, type TimelineDateInterval, type TimelinePrecision, type Comment, type ProcoreUserProject, type ProcoreProjectAlbum, type ProcoreObservationType, type AconexUserProject, type AutodeskUserHub, type AutodeskProject, type AutodeskFolder, type ProcoreType, type HammertechProject, type HammertechIssueType, type HammertechPriority, type HammertechClassification, type HammertechFileFieldValue, TaskStatus, Tag, TuplePoint2D } from "@evercam/shared/types";
|
|
2
|
+
import type { AdminCamera, IngestUploadInitResponse } from "@evercam/api/types";
|
|
2
3
|
import type { TimelineChartType, TimelineEvent, TimelineEventsGroup } from "@evercam/ui";
|
|
3
4
|
import { TimelineDataProvider } from "@evercam/shared/components/timelinePlayer/providers";
|
|
4
5
|
import { SeriesOptionsType } from "highcharts";
|
|
@@ -6,6 +7,11 @@ export type SelectItem = {
|
|
|
6
7
|
text: string;
|
|
7
8
|
value: string | number;
|
|
8
9
|
};
|
|
10
|
+
export type RoiProjectGroup = {
|
|
11
|
+
exid: string;
|
|
12
|
+
name: string;
|
|
13
|
+
cameras: AdminCamera[];
|
|
14
|
+
};
|
|
9
15
|
export declare enum IframeMessageType {
|
|
10
16
|
LiveView = "liveView",
|
|
11
17
|
EditSnapshot = "editSnapshot",
|
|
@@ -34,7 +40,9 @@ export declare enum IframeMessageType {
|
|
|
34
40
|
Upload360 = "upload360",
|
|
35
41
|
FetchForgeToken = "FetchForgeToken",
|
|
36
42
|
ForgeTokenResponse = "ForgeTokenResponse",
|
|
37
|
-
|
|
43
|
+
ShowBimUploadChoice = "showBimUploadChoice",
|
|
44
|
+
ViewerLaunchFlags = "viewerLaunchFlags",
|
|
45
|
+
CloseCameraMarkerPreview = "CloseCameraMarkerPreview"
|
|
38
46
|
}
|
|
39
47
|
export declare enum NavigationArrow {
|
|
40
48
|
Previous = "previous",
|
|
@@ -179,12 +187,14 @@ export type TagSelectorItem = Tag & {
|
|
|
179
187
|
};
|
|
180
188
|
export declare enum FormSchemaComponents {
|
|
181
189
|
SelectField = "SelectField",
|
|
190
|
+
HierarchicalSelect = "HierarchicalSelectField",
|
|
182
191
|
MultiOption = "MultiOption",
|
|
183
192
|
TextField = "TextField",
|
|
184
193
|
SwitchField = "SwitchField",
|
|
185
194
|
CheckBox = "CheckBoxField",
|
|
186
195
|
Date = "DatePickerInput",
|
|
187
196
|
DateTime = "DateTimeField",
|
|
197
|
+
Time = "TimeField",
|
|
188
198
|
TextArea = "Textarea",
|
|
189
199
|
Search = "Autocomplete",
|
|
190
200
|
ReadOnly = "ReadOnly",
|
|
@@ -199,6 +209,7 @@ export declare enum FormSchemaDataType {
|
|
|
199
209
|
export type FormSchemaOptions = {
|
|
200
210
|
title: string;
|
|
201
211
|
value: string;
|
|
212
|
+
parentId?: string | null;
|
|
202
213
|
};
|
|
203
214
|
export type FormSchemaField = {
|
|
204
215
|
id: string;
|
|
@@ -226,6 +237,7 @@ export type DrawingStats = {
|
|
|
226
237
|
};
|
|
227
238
|
export interface ScrollListener {
|
|
228
239
|
element: Element | Window;
|
|
240
|
+
event: "scroll" | "resize";
|
|
229
241
|
handler: () => void;
|
|
230
242
|
}
|
|
231
243
|
export interface LeaderLineInstance {
|
|
@@ -250,8 +262,13 @@ export type DocumentExtended = Document & {
|
|
|
250
262
|
export type HighchartsSeriesWithData<T extends number = number> = SeriesOptionsType & {
|
|
251
263
|
data: T[];
|
|
252
264
|
};
|
|
265
|
+
export type NotificationTitleSegment = {
|
|
266
|
+
text: string;
|
|
267
|
+
isBold?: boolean;
|
|
268
|
+
};
|
|
253
269
|
export type FormattedNotificationData = {
|
|
254
270
|
title: string;
|
|
271
|
+
titleSegments?: NotificationTitleSegment[];
|
|
255
272
|
link: string;
|
|
256
273
|
thumbnail?: string;
|
|
257
274
|
icon?: string;
|
|
@@ -285,6 +302,20 @@ export type AutodeskUploadFormData = {
|
|
|
285
302
|
project: AutodeskProject | null;
|
|
286
303
|
folder: AutodeskFolder | null;
|
|
287
304
|
};
|
|
305
|
+
export type HammertechUploadFormData = {
|
|
306
|
+
project: HammertechProject | null;
|
|
307
|
+
issueType: HammertechIssueType | null;
|
|
308
|
+
description: string;
|
|
309
|
+
priority: HammertechPriority | null;
|
|
310
|
+
dueDate: string | null;
|
|
311
|
+
classification: HammertechClassification | null;
|
|
312
|
+
locationId: string | null;
|
|
313
|
+
isPositiveObservation: boolean;
|
|
314
|
+
isPhotoForFixRequired: boolean;
|
|
315
|
+
customFieldFormId: string | null;
|
|
316
|
+
customFieldValues: Record<string, unknown>;
|
|
317
|
+
fileCustomFieldValues: Record<string, HammertechFileFieldValue>;
|
|
318
|
+
};
|
|
288
319
|
export interface MediaHubFilters {
|
|
289
320
|
title: string;
|
|
290
321
|
requesterEmail: string | undefined;
|
|
@@ -310,3 +341,34 @@ export type TableHeaderParams<TItem = unknown> = {
|
|
|
310
341
|
toStringFn?: (item: TItem, key: string) => any;
|
|
311
342
|
sort?: (a: unknown, b: unknown) => number;
|
|
312
343
|
};
|
|
344
|
+
export type BimUploadObject = IngestUploadInitResponse & {
|
|
345
|
+
projectName: string;
|
|
346
|
+
};
|
|
347
|
+
export type BimUploadFileResult = {
|
|
348
|
+
url: string;
|
|
349
|
+
title: string;
|
|
350
|
+
fileExtension: string;
|
|
351
|
+
};
|
|
352
|
+
export interface ThreeSixtyWalk {
|
|
353
|
+
id: string;
|
|
354
|
+
name: string;
|
|
355
|
+
date: string;
|
|
356
|
+
color: string;
|
|
357
|
+
dateId: string;
|
|
358
|
+
floorId: string;
|
|
359
|
+
}
|
|
360
|
+
export interface ThreeSixtyWalkGroup {
|
|
361
|
+
date: string;
|
|
362
|
+
walks: ThreeSixtyWalk[];
|
|
363
|
+
}
|
|
364
|
+
export type DatePresetContext = {
|
|
365
|
+
minDate?: string;
|
|
366
|
+
maxDate: string;
|
|
367
|
+
effectiveMinDate?: string;
|
|
368
|
+
effectiveMaxDate: string;
|
|
369
|
+
};
|
|
370
|
+
export type DatePreset = {
|
|
371
|
+
name: string;
|
|
372
|
+
resolveRange?: (ctx: DatePresetContext) => [string, string];
|
|
373
|
+
isHide?: (ctx: DatePresetContext) => boolean;
|
|
374
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare enum CustomDataTableFilterType {
|
|
2
|
+
Select = "SelectSearchFilter",
|
|
3
|
+
Text = "TextFieldSearchFilter"
|
|
4
|
+
}
|
|
5
|
+
export interface CustomDataTableFilterField<T = unknown> {
|
|
6
|
+
component: CustomDataTableFilterType;
|
|
7
|
+
attributes?: Record<string, unknown>;
|
|
8
|
+
customFilter?: (item: T, fieldName: string, search: unknown) => boolean;
|
|
9
|
+
}
|
|
10
|
+
export type CustomDataTableFilterFields<T = unknown> = Record<string, CustomDataTableFilterField<T>>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type ObservationsTableHeader = {
|
|
2
|
+
isThumbnail?: boolean;
|
|
3
|
+
visible: boolean;
|
|
4
|
+
divider: boolean;
|
|
5
|
+
sortable: boolean;
|
|
6
|
+
text: string;
|
|
7
|
+
value: string;
|
|
8
|
+
class: string;
|
|
9
|
+
align: string;
|
|
10
|
+
};
|
|
11
|
+
export type ObservationsCountDay = {
|
|
12
|
+
day: string;
|
|
13
|
+
};
|
|
14
|
+
export type ObservationsTableOptionsUpdate = {
|
|
15
|
+
page: number;
|
|
16
|
+
sortBy: string[];
|
|
17
|
+
sortDesc: boolean[];
|
|
18
|
+
};
|
|
19
|
+
export type ObservationsEventsTableState = {
|
|
20
|
+
height: number | string;
|
|
21
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evercam/api",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-f0709bb7a",
|
|
4
4
|
"description": "Evercam API client",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -28,6 +28,8 @@
|
|
|
28
28
|
},
|
|
29
29
|
"readme": "README.md",
|
|
30
30
|
"scripts": {
|
|
31
|
+
"preinstall": "node ../shared/ci-scripts/check-bootstrap.js",
|
|
32
|
+
"bootstrap": "node ../shared/ci-scripts/bootstrap.js",
|
|
31
33
|
"clean": "rimraf dist",
|
|
32
34
|
"typecheck": "tsc --noEmit",
|
|
33
35
|
"build:types": "tsc --declaration --emitDeclarationOnly",
|
|
@@ -36,7 +38,7 @@
|
|
|
36
38
|
"publish-api": "cd ../.. && yarn publish-api"
|
|
37
39
|
},
|
|
38
40
|
"devDependencies": {
|
|
39
|
-
"@types/node": "^25.
|
|
41
|
+
"@types/node": "^25.9.1",
|
|
40
42
|
"vite": "latest",
|
|
41
43
|
"vite-plugin-commonjs": "^0.10.3",
|
|
42
44
|
"vite-plugin-dts": "^4.5.4"
|