@evercam/api 1.0.0-9633bd3c5 → 1.0.0-9967cde88
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/3dFirebaseApi.d.ts +1 -0
- package/dist/api/adminApi.d.ts +7 -2
- package/dist/api/aiApi.d.ts +35 -8
- package/dist/api/client/customErrors.d.ts +10 -0
- package/dist/api/client/interceptors.d.ts +1 -1
- package/dist/api/evercamApi.d.ts +27 -4
- package/dist/api/evercamLabsApi.d.ts +2 -10
- package/dist/api/ingestApi.d.ts +1 -0
- package/dist/index.js +536 -407
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/types/360.d.ts +5 -0
- package/dist/types/aconex.d.ts +1 -1
- package/dist/types/analytics.d.ts +18 -13
- package/dist/types/camera.d.ts +2 -50
- package/dist/types/comments.d.ts +15 -8
- package/dist/types/connector.d.ts +4 -0
- package/dist/types/detections.d.ts +56 -5
- package/dist/types/errors.d.ts +12 -0
- package/dist/types/index.d.ts +0 -1
- package/dist/types/kit.d.ts +25 -1
- package/dist/types/planner.d.ts +4 -0
- package/dist/types/procore.d.ts +146 -3
- package/dist/types/project.d.ts +6 -1
- package/dist/types/recording.d.ts +1 -2
- package/dist/types/roi.d.ts +2 -1
- package/dist/types/siteAnalytics.d.ts +76 -19
- package/dist/types/streaming.d.ts +1 -21
- package/dist/types/time.d.ts +2 -0
- package/package.json +2 -2
- package/dist/types/devices.d.ts +0 -228
package/dist/types/360.d.ts
CHANGED
|
@@ -40,6 +40,10 @@ export declare enum _360AssetType {
|
|
|
40
40
|
MobilePhoto = "mobile_photos",
|
|
41
41
|
MobileAudio = "mobile_audios"
|
|
42
42
|
}
|
|
43
|
+
export declare enum _360Feature {
|
|
44
|
+
Minimap = "Minimap",
|
|
45
|
+
BIM = "BIM"
|
|
46
|
+
}
|
|
43
47
|
export declare enum _360IntergrationType {
|
|
44
48
|
Evercam = "Evercam",
|
|
45
49
|
Matterport = "Matterport",
|
|
@@ -73,6 +77,7 @@ export type _360AssetsUploadPayload = {
|
|
|
73
77
|
startPosition: string;
|
|
74
78
|
endPosition: string;
|
|
75
79
|
isTimelapse: boolean;
|
|
80
|
+
isImagesOnly: boolean;
|
|
76
81
|
};
|
|
77
82
|
export type Generate360MapRequestPayload = {
|
|
78
83
|
dateId: string;
|
package/dist/types/aconex.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export declare enum AnalyticsEventPageId {
|
|
|
20
20
|
ProjectSettingsCameraSettings = "ProjectSettings-CameraSettings",
|
|
21
21
|
ProjectSettingsMembers = "ProjectSettings-Members",
|
|
22
22
|
ProjectSettingsOverview = "ProjectSettings-Overview",
|
|
23
|
+
ProjectSettingsDangerZone = "ProjectSettings-DangerZone",
|
|
23
24
|
Settings = "Settings",
|
|
24
25
|
SettingsAccount = "Settings-Account",
|
|
25
26
|
SettingsConnectors = "Settings-Connectors",
|
|
@@ -40,7 +41,8 @@ export declare enum AnalyticsEventPageId {
|
|
|
40
41
|
DroneInfo = "DroneInfo",
|
|
41
42
|
ThreeSixtyInfo = "360Info",
|
|
42
43
|
BimCompareInfo = "BimCompareInfo",
|
|
43
|
-
WeatherReport = "WeatherReport"
|
|
44
|
+
WeatherReport = "WeatherReport",
|
|
45
|
+
PpeReport = "PpeReport"
|
|
44
46
|
}
|
|
45
47
|
export declare enum AnalyticsEvent {
|
|
46
48
|
PageView = "PageView",
|
|
@@ -234,7 +236,6 @@ export declare enum AnalyticsEvent {
|
|
|
234
236
|
AiToolSelectObjectDetection = "AITool-SelectObjectDetection",
|
|
235
237
|
AiToolSelectAskChatGpt = "AITool-SelectAskChatGpt",
|
|
236
238
|
AiToolSelectSegmentation = "AITool-SelectSegmentation",
|
|
237
|
-
AiToolSelectDepthAnalysis = "AITool-SelectDepthAnalysis",
|
|
238
239
|
AiToolUpdateTransparency = "AITool-UpdateTransparency",
|
|
239
240
|
RecordingsCancelExportDialog = "CancelExportDialog",
|
|
240
241
|
RecordingsClickSupportLink = "ClickSupportLink",
|
|
@@ -256,15 +257,16 @@ export declare enum AnalyticsEvent {
|
|
|
256
257
|
SharingTransferOwnership = "TransferOwnership",
|
|
257
258
|
SharingSortBy = "SortBy",
|
|
258
259
|
SharingChangeAccessRight = "ChangeAccessRight",
|
|
260
|
+
ThreeSixtyList = "360List",
|
|
259
261
|
ThreeSixtyChangeDate = "ChangeDate",
|
|
260
262
|
ThreeSixtyChangeFloor = "ChangeFloor",
|
|
261
263
|
ThreeSixtyCloseCompare = "CloseCompare",
|
|
262
264
|
ThreeSixtyCloseForgeBIM = "CloseForgeBIM",
|
|
263
|
-
|
|
265
|
+
ThreeSixtyDeleteComment = "DeleteComment",
|
|
264
266
|
ThreeSixtyDisableMeasuringTool = "DisableMeasuringTool",
|
|
265
|
-
|
|
267
|
+
ThreeSixtyDisableCommnetTool = "DisableCommentTool",
|
|
266
268
|
ThreeSixtyEnableMeasuringTool = "EnableMeasuringTool",
|
|
267
|
-
|
|
269
|
+
ThreeSixtyEnableCommentTool = "EnableCommentTool",
|
|
268
270
|
ThreeSixtyLockCompare = "LockCompare",
|
|
269
271
|
ThreeSixtyLockForgeBIM = "LockForgeBIM",
|
|
270
272
|
ThreeSixtyMarkerThumbnailClicked = "MarkerThumbnailClicked",
|
|
@@ -273,14 +275,16 @@ export declare enum AnalyticsEvent {
|
|
|
273
275
|
ThreeSixtyOpenCompare = "OpenCompare",
|
|
274
276
|
ThreeSixtyOpenForgeBIM = "OpenForgeBIM",
|
|
275
277
|
ThreeSixtyOpenMarkersThumbnailsList = "OpenMarkersThumbnailsList",
|
|
276
|
-
|
|
277
|
-
|
|
278
|
+
ThreeSixtyOpenCommentsList = "OpenCommentsList",
|
|
279
|
+
ThreeSixtySaveComment = "SaveComment",
|
|
280
|
+
ThreeSixtyUnarchiveComment = "UnarchiveComment",
|
|
281
|
+
ThreeSixtyArchiveComment = "ArchiveComment",
|
|
278
282
|
ThreeSixtyShareView = "ShareView",
|
|
279
|
-
|
|
283
|
+
ThreeSixtyCommentClicked = "CommentClicked",
|
|
280
284
|
ThreeSixtyToggleMarkersVisibility = "ToggleMarkersVisibility",
|
|
281
285
|
ThreeSixtyToggleMinimapVisibility = "ToggleMinimapVisibility",
|
|
282
286
|
ThreeSixtyToggleMiniModel = "ToggleMiniModel",
|
|
283
|
-
|
|
287
|
+
ThreeSixtyToggleCommentsVisibility = "ToggleCommentsVisibility",
|
|
284
288
|
ThreeSixtyTourPause = "Tour-Pause",
|
|
285
289
|
ThreeSixtyTourPlay = "Tour-Play",
|
|
286
290
|
ThreeSixtyTourSetSpeedXHalve = "Tour-SetSpeedX0.5",
|
|
@@ -433,20 +437,21 @@ export declare enum AnalyticsEvent {
|
|
|
433
437
|
MediaCopyMediaLink = "Media-CopyMediaLink",
|
|
434
438
|
MediaGoToMediaHub = "Media-GoBackToMediaHub",
|
|
435
439
|
GateReportCalendarTreeDateClick = "CalendarTree-DateClick",
|
|
436
|
-
GateReportExportPdf = "ExportPdf",
|
|
437
|
-
GateReportExportCsv = "ExportCsv",
|
|
438
440
|
GateReportFilterEntryExit = "FilterEntryExit",
|
|
439
|
-
GateReportFilterCameras = "FilterCameras",
|
|
440
441
|
GateReportFilterPlateNumber = "FilterPlateNumber",
|
|
441
442
|
GateReportFilterVehicleTypes = "FilterVehicleTypes",
|
|
442
443
|
GateReportOpenVehicleTypeInfo = "OpenVehicleTypeInfo",
|
|
443
444
|
GateReportTimelineDateClick = "Timeline-DateClick",
|
|
444
445
|
GateReportToggleThumbnails = "ToggleThumbnails",
|
|
446
|
+
PpeTimelineDateClick = "PpeTimeline-DateClick",
|
|
445
447
|
HelpMenuToggleMenuButton = "HelpMenu-ToggleMenuButton",
|
|
446
448
|
HelpMenuOpenLiveChat = "HelpMenu-OpenLiveChat",
|
|
447
449
|
HelpMenuClickTutorialsLink = "HelpMenu-ClickTutorialsLink",
|
|
448
450
|
HelpMenuClickWhatsNewLink = "HelpMenu-ClickWhatsNewLink",
|
|
449
451
|
HelpMenuClickUserManuaLink = "HelpMenu-ClickUserManuaLink",
|
|
450
452
|
HelpMenuClickSupportTicketsLink = "HelpMenu-ClickSupportTicketsLink",
|
|
451
|
-
HelpMenuClickSystemCheckLink = "HelpMenu-ClickSystemCheckLink"
|
|
453
|
+
HelpMenuClickSystemCheckLink = "HelpMenu-ClickSystemCheckLink",
|
|
454
|
+
ExportPdf = "ExportPdf",
|
|
455
|
+
ExportCsv = "ExportCsv",
|
|
456
|
+
FilterCameras = "FilterCameras"
|
|
452
457
|
}
|
package/dist/types/camera.d.ts
CHANGED
|
@@ -178,6 +178,8 @@ export declare enum CameraStatus {
|
|
|
178
178
|
export declare enum CameraFeatureFlag {
|
|
179
179
|
EdgeVideo = "edge_video",
|
|
180
180
|
BimCompare = "bim_compare",
|
|
181
|
+
TwoDBimCompare = "2d_bim_compare",
|
|
182
|
+
ForgeBIMCompare = "forge_bim_compare",
|
|
181
183
|
GateReport = "gate_report",
|
|
182
184
|
VideoStream = "video_stream",
|
|
183
185
|
WebRTC = "webrtc",
|
|
@@ -324,56 +326,6 @@ export type Hdd = {
|
|
|
324
326
|
errorStatus: string;
|
|
325
327
|
canExpand: boolean;
|
|
326
328
|
};
|
|
327
|
-
export declare enum ResolutionDimensions {
|
|
328
|
-
QVGA = "320x240",
|
|
329
|
-
VGA = "640x480",
|
|
330
|
-
SVGA = "800x600",
|
|
331
|
-
XGA = "1024x768",
|
|
332
|
-
HD = "1280x720",
|
|
333
|
-
WXGA = "1280x800",
|
|
334
|
-
HDPlus = "1366x768",
|
|
335
|
-
WXGAPlus = "1440x900",
|
|
336
|
-
HDPlusPlus = "1600x900",
|
|
337
|
-
UXGA = "1600x1200",
|
|
338
|
-
FullHD = "1920x1080",
|
|
339
|
-
WUXGA = "1920x1200",
|
|
340
|
-
TwoK = "2048x1080",
|
|
341
|
-
QHD = "2560x1440",
|
|
342
|
-
WQXGA = "2560x1600",
|
|
343
|
-
FourK = "3840x2160",
|
|
344
|
-
FourKCinema = "4096x2160",
|
|
345
|
-
FiveK = "5120x2880",
|
|
346
|
-
EightK = "7680x4320",
|
|
347
|
-
WHUXGA = "7680x4800"
|
|
348
|
-
}
|
|
349
|
-
export declare enum ResolutionLabel {
|
|
350
|
-
QVGA = "QVGA",
|
|
351
|
-
VGA = "VGA",
|
|
352
|
-
SVGA = "SVGA",
|
|
353
|
-
XGA = "XGA",
|
|
354
|
-
HD = "HD",
|
|
355
|
-
WXGA = "WXGA",
|
|
356
|
-
HDPlus = "HD+",
|
|
357
|
-
WXGAPlus = "WXGA++",
|
|
358
|
-
HDPlusPlus = "HD++",
|
|
359
|
-
UXGA = "UXGA",
|
|
360
|
-
FullHD = "FullHD",
|
|
361
|
-
WUXGA = "WUXGA",
|
|
362
|
-
TwoK = "2K",
|
|
363
|
-
QHD = "QHD",
|
|
364
|
-
WQXGA = "WQXGA",
|
|
365
|
-
FourK = "4K",
|
|
366
|
-
FourKCinema = "4KCinema",
|
|
367
|
-
FiveK = "5K",
|
|
368
|
-
EightK = "8K",
|
|
369
|
-
WHUXGA = "WHUXGA"
|
|
370
|
-
}
|
|
371
|
-
export type ResolutionInfo = {
|
|
372
|
-
ratioString: string;
|
|
373
|
-
ratioFloat: number;
|
|
374
|
-
resolutionDimensions: ResolutionDimensions;
|
|
375
|
-
resolutionLabel: ResolutionLabel;
|
|
376
|
-
};
|
|
377
329
|
export type CameraPath = {
|
|
378
330
|
projectExid: ProjectExid;
|
|
379
331
|
cameraExid: CameraExid;
|
package/dist/types/comments.d.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { CameraExid, DateType, ProjectExid } from "@/types";
|
|
2
|
+
export declare enum CommentsScope {
|
|
3
|
+
Recordings = "recordings",
|
|
4
|
+
ThreeSixty = "360"
|
|
5
|
+
}
|
|
2
6
|
export type CommentsRequestPayload = {
|
|
3
7
|
cameraExid: CameraExid;
|
|
4
8
|
fromDate: string;
|
|
5
9
|
toDate: string;
|
|
10
|
+
scope: CommentsScope;
|
|
6
11
|
page?: number;
|
|
7
12
|
limit?: number;
|
|
8
13
|
};
|
|
9
|
-
export type CommentPosition = {
|
|
10
|
-
coordinates: Array<number>;
|
|
11
|
-
type: string;
|
|
12
|
-
};
|
|
13
14
|
export type Comment = {
|
|
14
15
|
fromDate?: string;
|
|
15
16
|
toDate?: string;
|
|
@@ -22,15 +23,21 @@ export type Comment = {
|
|
|
22
23
|
createdAt?: string;
|
|
23
24
|
creatorEmail?: string;
|
|
24
25
|
creatorName?: string;
|
|
25
|
-
position2d
|
|
26
|
+
position2d?: [number, number];
|
|
27
|
+
position3d?: [number, number, number];
|
|
28
|
+
context?: Record<string, unknown>;
|
|
26
29
|
canDelete?: boolean;
|
|
30
|
+
archivedAt?: string;
|
|
27
31
|
};
|
|
28
32
|
export type CommentCreationRequestPayload = {
|
|
29
33
|
fromDate?: DateType;
|
|
30
34
|
toDate?: DateType;
|
|
31
|
-
timestamp
|
|
35
|
+
timestamp?: DateType;
|
|
36
|
+
scope?: CommentsScope;
|
|
32
37
|
projectExid: ProjectExid;
|
|
33
|
-
cameraExid
|
|
38
|
+
cameraExid?: CameraExid;
|
|
34
39
|
content: string;
|
|
35
|
-
position2d
|
|
40
|
+
position2d?: [number, number];
|
|
41
|
+
position3d?: [number, number, number];
|
|
42
|
+
context?: Record<string, unknown>;
|
|
36
43
|
};
|
|
@@ -10,6 +10,10 @@ export declare enum Connector {
|
|
|
10
10
|
VoyageControl = "voyage_control",
|
|
11
11
|
XWeather = "xweather"
|
|
12
12
|
}
|
|
13
|
+
export declare enum ProcoreType {
|
|
14
|
+
Observations = "observations",
|
|
15
|
+
Photos = "photos"
|
|
16
|
+
}
|
|
13
17
|
export type ConnectorResponsePayload = Array<{
|
|
14
18
|
hostname: string;
|
|
15
19
|
login: string;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
import { type BoundingBox, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision } from "@/types";
|
|
2
|
-
export type
|
|
3
|
-
cameraExid: CameraExid;
|
|
1
|
+
import { type BoundingBox, type ProjectExid, type CameraExid, type DateType, DetectionLabel, SegmentLabel, type TimelineDateInterval, TimelinePrecision } from "@/types";
|
|
2
|
+
export type BaseDetectionsFilters = {
|
|
4
3
|
fromDate: string | Date;
|
|
5
4
|
toDate: string | Date;
|
|
6
5
|
labels: DetectionLabel | DetectionLabel[];
|
|
7
6
|
trackId?: number;
|
|
8
7
|
};
|
|
8
|
+
export type DetectionsFilters = BaseDetectionsFilters & {
|
|
9
|
+
projectExid: ProjectExid;
|
|
10
|
+
cameraExids?: CameraExid[];
|
|
11
|
+
};
|
|
12
|
+
export type SegmentsFilters = BaseDetectionsFilters & {
|
|
13
|
+
cameraExid: CameraExid;
|
|
14
|
+
};
|
|
9
15
|
export type BBox = number[];
|
|
10
16
|
export type SelectedObjectPath = {
|
|
11
17
|
label: string;
|
|
@@ -16,9 +22,32 @@ export type SelectedObjectPath = {
|
|
|
16
22
|
bbox: BBox;
|
|
17
23
|
}>;
|
|
18
24
|
};
|
|
25
|
+
export type Label = DetectionLabel | PpeLabel;
|
|
19
26
|
export type Detection = {
|
|
20
27
|
bbox: BBox;
|
|
21
28
|
timestamp: string | Date;
|
|
29
|
+
label: DetectionLabel;
|
|
30
|
+
confidenceScore: number;
|
|
31
|
+
};
|
|
32
|
+
export type DetectionsGroup = {
|
|
33
|
+
timestamp: DateType;
|
|
34
|
+
detections: Detection[];
|
|
35
|
+
};
|
|
36
|
+
export type DetectionsCounts = {
|
|
37
|
+
timestamps: number;
|
|
38
|
+
} & {
|
|
39
|
+
[label in Label]: number;
|
|
40
|
+
};
|
|
41
|
+
export type DetectionsCountsByPeriod = {
|
|
42
|
+
days: Array<{
|
|
43
|
+
day: string;
|
|
44
|
+
} & DetectionsCounts>;
|
|
45
|
+
months: Array<{
|
|
46
|
+
month: string;
|
|
47
|
+
} & DetectionsCounts>;
|
|
48
|
+
years: Array<{
|
|
49
|
+
year: string;
|
|
50
|
+
} & DetectionsCounts>;
|
|
22
51
|
};
|
|
23
52
|
export type Tracking = {
|
|
24
53
|
trackId: number;
|
|
@@ -55,14 +84,20 @@ export type SegmentsSimilaritySearchParams = {
|
|
|
55
84
|
fromDate: string;
|
|
56
85
|
toDate: string;
|
|
57
86
|
};
|
|
58
|
-
export type
|
|
59
|
-
cameraExid: CameraExid;
|
|
87
|
+
export type BaseCountsParams = {
|
|
60
88
|
fromDate: string | Date;
|
|
61
89
|
toDate: string | Date;
|
|
62
90
|
precision: keyof typeof TimelinePrecision;
|
|
63
91
|
trackId: number;
|
|
64
92
|
labels: DetectionLabel | DetectionLabel[];
|
|
65
93
|
};
|
|
94
|
+
export type DetectionsCountsParams = BaseCountsParams & {
|
|
95
|
+
projectExid: ProjectExid;
|
|
96
|
+
cameraExids?: CameraExid[];
|
|
97
|
+
};
|
|
98
|
+
export type SegmentsCountsParams = BaseCountsParams & {
|
|
99
|
+
cameraExid: CameraExid;
|
|
100
|
+
};
|
|
66
101
|
export type CountByPeriod = {
|
|
67
102
|
date: string | Date;
|
|
68
103
|
counts: Record<string, number>;
|
|
@@ -74,3 +109,19 @@ export type LuminanceReading = {
|
|
|
74
109
|
luminanceDelta: number;
|
|
75
110
|
luminanceAverage: number;
|
|
76
111
|
};
|
|
112
|
+
export declare enum PpeLabel {
|
|
113
|
+
Helmet = "helmet",
|
|
114
|
+
HighVisibilityVest = "high-visibility-vest",
|
|
115
|
+
SafetyGlasses = "safety-glasses",
|
|
116
|
+
Gloves = "gloves",
|
|
117
|
+
Person = "person",
|
|
118
|
+
Man = "man",
|
|
119
|
+
Woman = "woman"
|
|
120
|
+
}
|
|
121
|
+
export declare enum DetectionModel {
|
|
122
|
+
Yolov10 = 1,
|
|
123
|
+
Yolov11 = 2,
|
|
124
|
+
Yolov11_2 = 3,
|
|
125
|
+
GroundingDino = 4,
|
|
126
|
+
Owlv2 = 5
|
|
127
|
+
}
|
package/dist/types/errors.d.ts
CHANGED
|
@@ -14,12 +14,24 @@ export declare enum ErrorType {
|
|
|
14
14
|
UnhandledRejection = "UnhandledRejection",
|
|
15
15
|
TypeError = "TypeError"
|
|
16
16
|
}
|
|
17
|
+
export declare enum ErrorCode {
|
|
18
|
+
InternalServerError = 500,
|
|
19
|
+
BadGatewayError = 502,
|
|
20
|
+
ServiceUnavailableError = 503,
|
|
21
|
+
GatewayTimeoutError = 504,
|
|
22
|
+
BadRequestError = 400,
|
|
23
|
+
UnauthorizedError = 401,
|
|
24
|
+
ForbiddenError = 403,
|
|
25
|
+
NotFoundError = 404,
|
|
26
|
+
ConflictError = 409
|
|
27
|
+
}
|
|
17
28
|
export declare enum EvercamApiErrorCode {
|
|
18
29
|
BadArgument = "BAD_ARGUMENT",
|
|
19
30
|
DeviceError = "DEVICE_ERROR",
|
|
20
31
|
UnsupportedOperation = "UNSUPPORTED_OPERATION",
|
|
21
32
|
QuotaExceeded = "QUOTA_EXCEEDED",
|
|
22
33
|
InvalidCredentials = "INVALID_CREDENTIALS",
|
|
34
|
+
InvalidToken = "INVALID_TOKEN",
|
|
23
35
|
ProviderAuthFailure = "PROVIDER_AUTH_FAILURE",
|
|
24
36
|
ProviderEmailRequired = "PROVIDER_EMAIL_REQUIRED",
|
|
25
37
|
PasswordReset = "PASSWORD_RESET",
|
package/dist/types/index.d.ts
CHANGED
package/dist/types/kit.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CountryCode, CountryId, DateType, Nvr, PaginationParams, PowerType, Project, Region, Router, Schedule, Tag } from "@/types";
|
|
1
|
+
import { CountryCode, CountryId, DateTime, DateType, Nvr, PaginationParams, PowerType, Project, Region, Router, Schedule, Tag } from "@/types";
|
|
2
2
|
export type Kit = {
|
|
3
3
|
alarms: KitAlarm[];
|
|
4
4
|
countryCode: CountryCode;
|
|
@@ -302,3 +302,27 @@ export type KitUpdatePayload = {
|
|
|
302
302
|
kitStatus: KitStatus;
|
|
303
303
|
type: string;
|
|
304
304
|
};
|
|
305
|
+
export declare enum KitStorageTransport {
|
|
306
|
+
Sata = "sata",
|
|
307
|
+
Nvme = "nvme",
|
|
308
|
+
Usb = "usb"
|
|
309
|
+
}
|
|
310
|
+
export type KitStorageRequestPayload = {
|
|
311
|
+
kitId: number;
|
|
312
|
+
};
|
|
313
|
+
export type KitStorageResponsePayload = {
|
|
314
|
+
id: number;
|
|
315
|
+
serial: string;
|
|
316
|
+
status: string;
|
|
317
|
+
type: string;
|
|
318
|
+
metadata: {
|
|
319
|
+
formFactor: string;
|
|
320
|
+
};
|
|
321
|
+
model: string;
|
|
322
|
+
insertedAt: DateTime;
|
|
323
|
+
updatedAt: DateTime;
|
|
324
|
+
vendor: string;
|
|
325
|
+
kitId: number;
|
|
326
|
+
capacity: number;
|
|
327
|
+
tran: KitStorageTransport;
|
|
328
|
+
};
|
package/dist/types/planner.d.ts
CHANGED
package/dist/types/procore.d.ts
CHANGED
|
@@ -3,9 +3,47 @@ export type ProcoreUserCompaniesResponsePayload = Array<{
|
|
|
3
3
|
isActive?: boolean;
|
|
4
4
|
name: string;
|
|
5
5
|
}>;
|
|
6
|
-
export type
|
|
6
|
+
export type ProcoreCompanyRequestPayload = {
|
|
7
7
|
companyId: number;
|
|
8
8
|
};
|
|
9
|
+
export type ProcoreProjectRequestPayload = {
|
|
10
|
+
companyId: number;
|
|
11
|
+
projectId: number;
|
|
12
|
+
};
|
|
13
|
+
export type ProcoreObservationListItem = {
|
|
14
|
+
id: number;
|
|
15
|
+
name: string;
|
|
16
|
+
};
|
|
17
|
+
export type ProcoreObservationDefaultList = Array<ProcoreObservationListItem & {
|
|
18
|
+
active: boolean;
|
|
19
|
+
global: boolean;
|
|
20
|
+
createdAt: string;
|
|
21
|
+
updatedAt: string;
|
|
22
|
+
}>;
|
|
23
|
+
export type ProcoreObservationAssignee = ProcoreObservationListItem & {
|
|
24
|
+
vendor: ProcoreObservationListItem;
|
|
25
|
+
};
|
|
26
|
+
export type ProcoreObservationDistributionMember = ProcoreObservationListItem & {
|
|
27
|
+
login: string;
|
|
28
|
+
};
|
|
29
|
+
export type ProcoreObservationTrades = ProcoreObservationListItem & {
|
|
30
|
+
active: boolean;
|
|
31
|
+
updatedAt: string;
|
|
32
|
+
};
|
|
33
|
+
export type ProcoreObservationLocation = ProcoreObservationListItem & {
|
|
34
|
+
nodeName: string;
|
|
35
|
+
parentId: number;
|
|
36
|
+
createdAt: string;
|
|
37
|
+
updatedAt: string;
|
|
38
|
+
code: string;
|
|
39
|
+
};
|
|
40
|
+
export type ProcoreObservationSpecificationSection = {
|
|
41
|
+
id: number;
|
|
42
|
+
number: string;
|
|
43
|
+
description: string;
|
|
44
|
+
label: string;
|
|
45
|
+
currentRevisionId: number;
|
|
46
|
+
};
|
|
9
47
|
export type ProcoreUserProjectsResponsePayload = Array<{
|
|
10
48
|
accountingProjectNumber?: number;
|
|
11
49
|
active: boolean;
|
|
@@ -48,6 +86,33 @@ export type ProcoreUserProjectsResponsePayload = Array<{
|
|
|
48
86
|
updatedAt: string;
|
|
49
87
|
zip: number;
|
|
50
88
|
}>;
|
|
89
|
+
export type ProcoreToolUserAccessLevel = {
|
|
90
|
+
id: ProcoreToolUserAccessLevelIds;
|
|
91
|
+
name: string;
|
|
92
|
+
};
|
|
93
|
+
export type ProcoreToolPermittedAction = {
|
|
94
|
+
id: number;
|
|
95
|
+
actionName: string;
|
|
96
|
+
label: string;
|
|
97
|
+
toolName: string;
|
|
98
|
+
};
|
|
99
|
+
export type ProcoreToolPermissions = {
|
|
100
|
+
id: number;
|
|
101
|
+
name: string;
|
|
102
|
+
friendlyName: string;
|
|
103
|
+
domainId: number;
|
|
104
|
+
tabGroup: string;
|
|
105
|
+
availableForUser: boolean;
|
|
106
|
+
url: string;
|
|
107
|
+
userAccessLevel: ProcoreToolUserAccessLevel;
|
|
108
|
+
permittedActions: Array<ProcoreToolPermittedAction>;
|
|
109
|
+
createUrl: string;
|
|
110
|
+
canCreate: boolean;
|
|
111
|
+
trial: boolean;
|
|
112
|
+
};
|
|
113
|
+
export type ProcoreUserProjectPermissionsResponsePayload = {
|
|
114
|
+
tools: Array<ProcoreToolPermissions>;
|
|
115
|
+
};
|
|
51
116
|
export type ProcoreEditedImageUploadRequestPayload = {
|
|
52
117
|
projectExid: string;
|
|
53
118
|
companyId: number;
|
|
@@ -70,7 +135,85 @@ export type ProcoreProjectsAlbumsPayload = Array<{
|
|
|
70
135
|
private: boolean;
|
|
71
136
|
updatedAt: string;
|
|
72
137
|
}>;
|
|
73
|
-
export type
|
|
74
|
-
|
|
138
|
+
export type ProcoreObservationTypesResponsePayload = Array<{
|
|
139
|
+
id: number;
|
|
140
|
+
name: string;
|
|
141
|
+
localizedName: string;
|
|
142
|
+
category: string;
|
|
143
|
+
categoryKey: string;
|
|
144
|
+
companyActive: boolean;
|
|
145
|
+
active: boolean;
|
|
146
|
+
kind: string;
|
|
147
|
+
parentInactive: boolean;
|
|
148
|
+
isUse: boolean;
|
|
149
|
+
nameTranslations: string;
|
|
150
|
+
}>;
|
|
151
|
+
export type ProcoreObservationFormRequestPayload = {
|
|
75
152
|
projectId: number;
|
|
153
|
+
companyId: number;
|
|
154
|
+
observationType: string;
|
|
155
|
+
};
|
|
156
|
+
export type ProcoreObservationForm = Record<string, ProcoreObservationField | ProcoreObservationCustomField>;
|
|
157
|
+
export type ProcoreObservationField = {
|
|
158
|
+
name: string;
|
|
159
|
+
required: boolean;
|
|
160
|
+
visible: boolean;
|
|
161
|
+
};
|
|
162
|
+
export type ProcoreObservationCustomField = {
|
|
163
|
+
id: number;
|
|
164
|
+
required: boolean;
|
|
165
|
+
visible: boolean;
|
|
166
|
+
name: string;
|
|
167
|
+
label: string;
|
|
168
|
+
description: string;
|
|
169
|
+
customFieldDefinitionId: number;
|
|
170
|
+
dataType: ProcoreObservationCustomFieldDataType;
|
|
171
|
+
variant: string;
|
|
172
|
+
position: number;
|
|
173
|
+
row: number;
|
|
174
|
+
column: number;
|
|
175
|
+
columnWidth: number;
|
|
176
|
+
optionsUrl: string | null;
|
|
177
|
+
defaultValue: string | null;
|
|
76
178
|
};
|
|
179
|
+
export declare enum ProcoreObservationCustomFieldDataType {
|
|
180
|
+
RichText = "rich_text",
|
|
181
|
+
Date = "date",
|
|
182
|
+
DateTime = "datetime",
|
|
183
|
+
LovEnty = "lov_entry",
|
|
184
|
+
LovEntries = "lov_entries",
|
|
185
|
+
Boolean = "boolean",
|
|
186
|
+
Vendor = "vendor",
|
|
187
|
+
Decimal = "decimal",
|
|
188
|
+
String = "string",
|
|
189
|
+
LoginInformation = "login_information",
|
|
190
|
+
LoginInformations = "login_informations",
|
|
191
|
+
Dropdown = "dropdown"
|
|
192
|
+
}
|
|
193
|
+
export declare enum ProcoreObservationDefaultFieldNames {
|
|
194
|
+
Number = "number",
|
|
195
|
+
Name = "name",
|
|
196
|
+
Status = "status",
|
|
197
|
+
Trade = "trade_id",
|
|
198
|
+
Assignee = "assignee_id",
|
|
199
|
+
DueDate = "due_date",
|
|
200
|
+
SpecificationSection = "specification_section_id",
|
|
201
|
+
Priority = "priority",
|
|
202
|
+
Location = "location_id",
|
|
203
|
+
DistributionMembers = "distribution_member_ids",
|
|
204
|
+
Personal = "personal",
|
|
205
|
+
Hazard = "hazard_id",
|
|
206
|
+
ContributingBehavior = "contributing_behavior_id",
|
|
207
|
+
ContributingCondition = "contributing_condition_id",
|
|
208
|
+
Description = "description"
|
|
209
|
+
}
|
|
210
|
+
export declare enum ProcoreTools {
|
|
211
|
+
Observations = "observations",
|
|
212
|
+
ProgressPhotos = "images"
|
|
213
|
+
}
|
|
214
|
+
export declare enum ProcoreToolUserAccessLevelIds {
|
|
215
|
+
NoAccess = 1,
|
|
216
|
+
ReadOnly = 2,
|
|
217
|
+
Standard = 3,
|
|
218
|
+
Admin = 4
|
|
219
|
+
}
|
package/dist/types/project.d.ts
CHANGED
|
@@ -10,11 +10,14 @@ export type Project = {
|
|
|
10
10
|
startedAt?: string;
|
|
11
11
|
timezone?: string;
|
|
12
12
|
zohoId?: string;
|
|
13
|
+
userId?: number;
|
|
13
14
|
cameras?: Array<Camera | AdminCamera>;
|
|
14
15
|
featureFlags: Array<ProjectFeatureFlag>;
|
|
15
16
|
owner?: {
|
|
16
17
|
email?: string;
|
|
17
18
|
};
|
|
19
|
+
ownerEmail?: string;
|
|
20
|
+
ownerName?: string;
|
|
18
21
|
camerasRestrictionType?: string;
|
|
19
22
|
};
|
|
20
23
|
export declare enum ProjectStatus {
|
|
@@ -55,7 +58,9 @@ export declare enum ProjectFeatureFlag {
|
|
|
55
58
|
MediaHubSharing = "archives_sharing",
|
|
56
59
|
GateReportAnprBased = "anpr_sourced",
|
|
57
60
|
NoLicensePlate = "no_license_plate",
|
|
58
|
-
DefaultToProjectApp = "default_to_project_app"
|
|
61
|
+
DefaultToProjectApp = "default_to_project_app",
|
|
62
|
+
SmartSearch = "smart_search",
|
|
63
|
+
PpeMonitoring = "ppe_monitoring"
|
|
59
64
|
}
|
|
60
65
|
export type ProjectBatteryReading = {
|
|
61
66
|
exid: number;
|
|
@@ -56,8 +56,7 @@ export type SnapshotRangeResponsePayload = {
|
|
|
56
56
|
};
|
|
57
57
|
export declare enum BrainTool {
|
|
58
58
|
Detections = "detections",
|
|
59
|
-
Segmentation = "sam"
|
|
60
|
-
DepthAnalysis = "depthAnalysis"
|
|
59
|
+
Segmentation = "sam"
|
|
61
60
|
}
|
|
62
61
|
export declare enum CloudRecordingFrequency {
|
|
63
62
|
EverySecond = 60,
|
package/dist/types/roi.d.ts
CHANGED