@evercam/api 1.0.0-feccd27be → 1.0.0-fefe23b74
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/dist/api/api/3dFirebaseApi.d.ts +51 -17
- package/dist/api/api/adminApi.d.ts +5 -4
- package/dist/api/api/aiApi.d.ts +29 -2
- package/dist/api/api/authzApi.d.ts +4 -1
- package/dist/api/api/evercamApi.d.ts +17 -8
- package/dist/api/api/evercamLabsApi.d.ts +5 -5
- package/dist/api/api/ingestApi.d.ts +7 -0
- package/dist/api/types/360.d.ts +117 -3
- package/dist/api/types/analytics.d.ts +10 -1
- package/dist/api/types/authz.d.ts +46 -0
- package/dist/api/types/axios.d.ts +8 -4
- package/dist/api/types/bim.d.ts +9 -1
- package/dist/api/types/camera.d.ts +2 -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 +1 -0
- package/dist/api/types/errors.d.ts +11 -0
- package/dist/api/types/gateReport.d.ts +1 -0
- package/dist/api/types/hammertech.d.ts +98 -0
- package/dist/api/types/index.d.ts +3 -0
- package/dist/api/types/ingest.d.ts +11 -0
- package/dist/api/types/kit.d.ts +38 -2
- package/dist/api/types/media.d.ts +8 -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 -1
- package/dist/api/types/roi.d.ts +2 -1
- package/dist/api/types/siteAnalyticsManagement.d.ts +92 -0
- package/dist/api/types/siteView.d.ts +0 -1
- package/dist/api/types/user.d.ts +1 -3
- package/dist/index.js +925 -605
- 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 +53 -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 +3 -1
|
@@ -1,5 +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";
|
|
2
|
-
import type { IngestUploadInitResponse } from "@evercam/api/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";
|
|
3
3
|
import type { TimelineChartType, TimelineEvent, TimelineEventsGroup } from "@evercam/ui";
|
|
4
4
|
import { TimelineDataProvider } from "@evercam/shared/components/timelinePlayer/providers";
|
|
5
5
|
import { SeriesOptionsType } from "highcharts";
|
|
@@ -7,6 +7,11 @@ export type SelectItem = {
|
|
|
7
7
|
text: string;
|
|
8
8
|
value: string | number;
|
|
9
9
|
};
|
|
10
|
+
export type RoiProjectGroup = {
|
|
11
|
+
exid: string;
|
|
12
|
+
name: string;
|
|
13
|
+
cameras: AdminCamera[];
|
|
14
|
+
};
|
|
10
15
|
export declare enum IframeMessageType {
|
|
11
16
|
LiveView = "liveView",
|
|
12
17
|
EditSnapshot = "editSnapshot",
|
|
@@ -182,12 +187,14 @@ export type TagSelectorItem = Tag & {
|
|
|
182
187
|
};
|
|
183
188
|
export declare enum FormSchemaComponents {
|
|
184
189
|
SelectField = "SelectField",
|
|
190
|
+
HierarchicalSelect = "HierarchicalSelectField",
|
|
185
191
|
MultiOption = "MultiOption",
|
|
186
192
|
TextField = "TextField",
|
|
187
193
|
SwitchField = "SwitchField",
|
|
188
194
|
CheckBox = "CheckBoxField",
|
|
189
195
|
Date = "DatePickerInput",
|
|
190
196
|
DateTime = "DateTimeField",
|
|
197
|
+
Time = "TimeField",
|
|
191
198
|
TextArea = "Textarea",
|
|
192
199
|
Search = "Autocomplete",
|
|
193
200
|
ReadOnly = "ReadOnly",
|
|
@@ -202,6 +209,7 @@ export declare enum FormSchemaDataType {
|
|
|
202
209
|
export type FormSchemaOptions = {
|
|
203
210
|
title: string;
|
|
204
211
|
value: string;
|
|
212
|
+
parentId?: string | null;
|
|
205
213
|
};
|
|
206
214
|
export type FormSchemaField = {
|
|
207
215
|
id: string;
|
|
@@ -229,6 +237,7 @@ export type DrawingStats = {
|
|
|
229
237
|
};
|
|
230
238
|
export interface ScrollListener {
|
|
231
239
|
element: Element | Window;
|
|
240
|
+
event: "scroll" | "resize";
|
|
232
241
|
handler: () => void;
|
|
233
242
|
}
|
|
234
243
|
export interface LeaderLineInstance {
|
|
@@ -253,8 +262,13 @@ export type DocumentExtended = Document & {
|
|
|
253
262
|
export type HighchartsSeriesWithData<T extends number = number> = SeriesOptionsType & {
|
|
254
263
|
data: T[];
|
|
255
264
|
};
|
|
265
|
+
export type NotificationTitleSegment = {
|
|
266
|
+
text: string;
|
|
267
|
+
isBold?: boolean;
|
|
268
|
+
};
|
|
256
269
|
export type FormattedNotificationData = {
|
|
257
270
|
title: string;
|
|
271
|
+
titleSegments?: NotificationTitleSegment[];
|
|
258
272
|
link: string;
|
|
259
273
|
thumbnail?: string;
|
|
260
274
|
icon?: string;
|
|
@@ -288,6 +302,20 @@ export type AutodeskUploadFormData = {
|
|
|
288
302
|
project: AutodeskProject | null;
|
|
289
303
|
folder: AutodeskFolder | null;
|
|
290
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
|
+
};
|
|
291
319
|
export interface MediaHubFilters {
|
|
292
320
|
title: string;
|
|
293
321
|
requesterEmail: string | undefined;
|
|
@@ -321,3 +349,26 @@ export type BimUploadFileResult = {
|
|
|
321
349
|
title: string;
|
|
322
350
|
fileExtension: string;
|
|
323
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-fefe23b74",
|
|
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",
|