@evercam/api 1.0.0-44d59f453 → 1.0.0-4530231e7
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 +5 -0
- package/dist/api/api/3dFirebaseApi.d.ts +27 -0
- package/dist/api/{adminApi.d.ts → api/adminApi.d.ts} +126 -78
- package/dist/api/api/aiApi.d.ts +124 -0
- package/dist/api/api/authzApi.d.ts +38 -0
- package/dist/api/{client → api/client}/axios.d.ts +2 -1
- package/dist/api/{client → api/client}/customErrors.d.ts +10 -0
- package/dist/api/{client → api/client}/interceptors.d.ts +1 -1
- package/dist/api/api/client/swr/Swr.d.ts +14 -0
- package/dist/api/api/client/swr/SwrStore.d.ts +10 -0
- package/dist/api/api/evercamApi.d.ts +295 -0
- package/dist/api/api/evercamLabsApi.d.ts +46 -0
- package/dist/api/{exNvrApi.d.ts → api/exNvrApi.d.ts} +1 -1
- package/dist/api/api/index.d.ts +13 -0
- package/dist/api/api/ingestApi.d.ts +145 -0
- package/dist/api/{ptzApi.d.ts → api/ptzApi.d.ts} +12 -3
- package/dist/api/api/videoWallApi.d.ts +9 -0
- package/dist/api/api/weatherApi.d.ts +9 -0
- package/dist/api/index.d.ts +3 -13
- package/dist/api/types/360.d.ts +276 -0
- package/dist/api/types/aconex.d.ts +143 -0
- package/dist/api/types/admin.d.ts +51 -0
- package/dist/{types → api/types}/analytics.d.ts +171 -73
- package/dist/{types → api/types}/anpr.d.ts +24 -19
- package/dist/{types → api/types}/auditLogs.d.ts +1 -1
- package/dist/api/types/authz.d.ts +60 -0
- package/dist/{types → api/types}/autodesk.d.ts +7 -7
- package/dist/api/types/automation.d.ts +86 -0
- package/dist/{types → api/types}/axios.d.ts +21 -2
- package/dist/{types → api/types}/bim.d.ts +11 -5
- package/dist/{types → api/types}/camera.d.ts +103 -123
- package/dist/api/types/comments.d.ts +55 -0
- package/dist/api/types/company.d.ts +115 -0
- package/dist/{types → api/types}/compare.d.ts +20 -5
- package/dist/{types → api/types}/connector.d.ts +8 -6
- package/dist/api/types/coolify.d.ts +20 -0
- package/dist/{types → api/types}/copilot.d.ts +10 -9
- package/dist/{types → api/types}/countries.d.ts +0 -7
- package/dist/{types → api/types}/credentials.d.ts +1 -0
- package/dist/api/types/detections.d.ts +121 -0
- package/dist/{types → api/types}/errors.d.ts +13 -0
- package/dist/{types → api/types}/gateReport.d.ts +32 -128
- package/dist/{types → api/types}/hdd.d.ts +26 -1
- package/dist/{types → api/types}/index.d.ts +11 -2
- package/dist/api/types/ingest.d.ts +132 -0
- package/dist/{types → api/types}/kit.d.ts +93 -7
- package/dist/{types → api/types}/media.d.ts +1 -1
- package/dist/api/types/notification.d.ts +57 -0
- package/dist/{types/sitePlanner.d.ts → api/types/planner.d.ts} +7 -0
- package/dist/api/types/posthog.d.ts +33 -0
- package/dist/api/types/procore.d.ts +229 -0
- package/dist/{types → api/types}/progressPhoto.d.ts +10 -23
- package/dist/api/types/project.d.ts +241 -0
- package/dist/{types → api/types}/recording.d.ts +3 -3
- package/dist/api/types/recycleBin.d.ts +14 -0
- package/dist/{types → api/types}/roi.d.ts +2 -1
- package/dist/{types → api/types}/routeParams.d.ts +4 -2
- package/dist/{types → api/types}/router.d.ts +20 -1
- package/dist/{types → api/types}/shared.d.ts +13 -20
- package/dist/api/types/shares.d.ts +58 -0
- package/dist/{types → api/types}/sim.d.ts +6 -6
- package/dist/api/types/siteAnalytics.d.ts +297 -0
- package/dist/{types → api/types}/snapshots.d.ts +10 -1
- package/dist/api/types/sso.d.ts +55 -0
- package/dist/api/types/storyblok.d.ts +40 -0
- package/dist/api/types/streaming.d.ts +97 -0
- package/dist/api/types/systemCheck.d.ts +11 -0
- package/dist/api/types/tag.d.ts +12 -0
- package/dist/api/types/time.d.ts +7 -0
- package/dist/{types → api/types}/timelapse.d.ts +10 -4
- package/dist/{types → api/types}/user.d.ts +105 -35
- package/dist/api/types/videoWall.d.ts +66 -0
- package/dist/api/types/weather.d.ts +153 -0
- package/dist/{types → api/types}/widget.d.ts +99 -19
- package/dist/api/types/xweather.d.ts +12 -0
- package/dist/{utils.d.ts → api/utils.d.ts} +1 -0
- package/dist/index.d.ts +2 -3
- package/dist/index.js +1570 -944
- 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/api/index.d.ts +3 -0
- package/dist/shared/components/timelinePlayer/providers/index.d.ts +3 -0
- package/dist/shared/components/timelinePlayer/providers/timelineAnprProvider.d.ts +17 -0
- package/dist/shared/components/timelinePlayer/providers/timelineDataProvider.d.ts +13 -0
- package/dist/shared/components/timelinePlayer/providers/timelineLuminanceProvider.d.ts +16 -0
- package/dist/shared/types/components.d.ts +270 -0
- package/dist/shared/types/imagePlayer.d.ts +34 -0
- package/dist/shared/types/index.d.ts +4 -0
- package/dist/shared/types/timeline.d.ts +10 -0
- package/package.json +6 -5
- package/dist/api/3dFirebaseApi.d.ts +0 -9
- package/dist/api/aiApi.d.ts +0 -86
- package/dist/api/authzApi.d.ts +0 -21
- package/dist/api/evercamApi.d.ts +0 -266
- package/dist/api/evercamLabsApi.d.ts +0 -46
- package/dist/api/ingestApi.d.ts +0 -65
- package/dist/api/videoWallApi.d.ts +0 -9
- package/dist/api/weatherApi.d.ts +0 -25
- package/dist/types/360.d.ts +0 -83
- package/dist/types/aconex.d.ts +0 -45
- package/dist/types/automation.d.ts +0 -6
- package/dist/types/comments.d.ts +0 -36
- package/dist/types/company.d.ts +0 -46
- package/dist/types/detections.d.ts +0 -76
- package/dist/types/devices.d.ts +0 -228
- package/dist/types/ingest.d.ts +0 -43
- package/dist/types/notification.d.ts +0 -27
- package/dist/types/procore.d.ts +0 -76
- package/dist/types/project.d.ts +0 -120
- package/dist/types/shares.d.ts +0 -192
- package/dist/types/siteAnalytics.d.ts +0 -84
- package/dist/types/streaming.d.ts +0 -119
- package/dist/types/time.d.ts +0 -19
- package/dist/types/videoWall.d.ts +0 -33
- package/dist/types/weather.d.ts +0 -83
- /package/dist/api/{client → api/client}/index.d.ts +0 -0
- /package/dist/api/{webRtcApi.d.ts → api/webRtcApi.d.ts} +0 -0
- /package/dist/{types → api/types}/drone.d.ts +0 -0
- /package/dist/{types → api/types}/map.d.ts +0 -0
- /package/dist/{types → api/types}/nvr.d.ts +0 -0
- /package/dist/{types → api/types}/storageServers.d.ts +0 -0
- /package/dist/{types → api/types}/vendorModel.d.ts +0 -0
- /package/dist/{types → api/types}/voyageControl.d.ts +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { CountryCode, CountryId, DateType, Nvr, PaginationParams, PowerType, Project,
|
|
1
|
+
import { CameraExid, CountryCode, CountryId, DateType, Nvr, PaginationParams, PowerType, Project, Router, Schedule, Tag } from "@evercam/api/types";
|
|
2
2
|
export type Kit = {
|
|
3
3
|
alarms: KitAlarm[];
|
|
4
4
|
countryCode: CountryCode;
|
|
5
5
|
countryId: CountryId;
|
|
6
6
|
countryName: string;
|
|
7
|
-
countryRegion:
|
|
7
|
+
countryRegion: KitRegion;
|
|
8
8
|
id?: number;
|
|
9
9
|
jobId: number;
|
|
10
10
|
name: string;
|
|
@@ -16,6 +16,11 @@ export type Kit = {
|
|
|
16
16
|
serial: string;
|
|
17
17
|
status: KitStatus;
|
|
18
18
|
powerSchedule: Schedule;
|
|
19
|
+
ups: boolean;
|
|
20
|
+
boxId: string;
|
|
21
|
+
tags: Tag[];
|
|
22
|
+
storages: KitStorage[];
|
|
23
|
+
createdAt: string;
|
|
19
24
|
};
|
|
20
25
|
export declare enum KitStatus {
|
|
21
26
|
New = "new",
|
|
@@ -23,17 +28,28 @@ export declare enum KitStatus {
|
|
|
23
28
|
Deployed = "deployed",
|
|
24
29
|
Decommissioned = "decommissioned"
|
|
25
30
|
}
|
|
31
|
+
export declare enum KitRegion {
|
|
32
|
+
APAC = "apac",
|
|
33
|
+
EMEA = "emea",
|
|
34
|
+
LATAM = "latam",
|
|
35
|
+
US = "na"
|
|
36
|
+
}
|
|
26
37
|
export declare enum KitAlarm {
|
|
27
38
|
NvrOffline = "nvr_offline",
|
|
39
|
+
OfflineScheduled = "offline_scheduled",
|
|
28
40
|
UnknownCamera = "unknown_camera",
|
|
29
41
|
NotRecordingCamera = "not_recording_camera",
|
|
30
|
-
OfflineScheduled = "offline_scheduled",
|
|
31
42
|
FullSD = "full_sd",
|
|
32
|
-
FullStorage = "full_storage"
|
|
43
|
+
FullStorage = "full_storage",
|
|
44
|
+
HddUnmounted = "hdd_unmounted",
|
|
45
|
+
NoHdd = "no_hdd",
|
|
46
|
+
MissingRouterInfo = "missing_router_info",
|
|
47
|
+
AcFailure = "ac_failure",
|
|
48
|
+
LowBattery = "low_battery"
|
|
33
49
|
}
|
|
34
50
|
export declare enum KitMetricId {
|
|
35
|
-
|
|
36
|
-
|
|
51
|
+
SolarCharger = "solar_charger",
|
|
52
|
+
PanelPower = "panel_power"
|
|
37
53
|
}
|
|
38
54
|
export declare enum KitMetricPeriod {
|
|
39
55
|
Last15Minutes = "now-15m",
|
|
@@ -238,6 +254,7 @@ export type KitQueryParams = PaginationParams & {
|
|
|
238
254
|
name: string;
|
|
239
255
|
serial: string;
|
|
240
256
|
status: KitStatus;
|
|
257
|
+
tagId: number | number[];
|
|
241
258
|
};
|
|
242
259
|
export type AdminKit = {
|
|
243
260
|
id: number;
|
|
@@ -285,9 +302,16 @@ export type KitCreatePayload = {
|
|
|
285
302
|
status: KitStatus;
|
|
286
303
|
powerType: PowerType;
|
|
287
304
|
config: {
|
|
288
|
-
region:
|
|
305
|
+
region: KitRegion;
|
|
289
306
|
};
|
|
290
307
|
};
|
|
308
|
+
export type KitMetricStatsEntry = {
|
|
309
|
+
timestamp: string;
|
|
310
|
+
voltage: number;
|
|
311
|
+
current: number;
|
|
312
|
+
panelVoltage: number;
|
|
313
|
+
panelPower: number;
|
|
314
|
+
};
|
|
291
315
|
export type KitUpdatePayload = {
|
|
292
316
|
countryId: number;
|
|
293
317
|
name: string;
|
|
@@ -295,3 +319,65 @@ export type KitUpdatePayload = {
|
|
|
295
319
|
kitStatus: KitStatus;
|
|
296
320
|
type: string;
|
|
297
321
|
};
|
|
322
|
+
export declare enum KitStorageTransport {
|
|
323
|
+
Sata = "sata",
|
|
324
|
+
Nvme = "nvme",
|
|
325
|
+
Usb = "usb"
|
|
326
|
+
}
|
|
327
|
+
export type KitStorageRequestPayload = {
|
|
328
|
+
kitId: number;
|
|
329
|
+
};
|
|
330
|
+
export type KitStorage = {
|
|
331
|
+
id: number;
|
|
332
|
+
serial: string;
|
|
333
|
+
status: string;
|
|
334
|
+
type: string;
|
|
335
|
+
metadata: {
|
|
336
|
+
formFactor: string;
|
|
337
|
+
};
|
|
338
|
+
model: string;
|
|
339
|
+
insertedAt: string;
|
|
340
|
+
updatedAt: string;
|
|
341
|
+
vendor: string;
|
|
342
|
+
kitId: number;
|
|
343
|
+
capacity: number;
|
|
344
|
+
freeSpace: number;
|
|
345
|
+
tran: KitStorageTransport;
|
|
346
|
+
};
|
|
347
|
+
export type KitFootageRequestPayload = {
|
|
348
|
+
cameraId: CameraExid;
|
|
349
|
+
storageId: number;
|
|
350
|
+
};
|
|
351
|
+
export type KitFootage = {
|
|
352
|
+
id: number;
|
|
353
|
+
startDate: string;
|
|
354
|
+
endDate: string;
|
|
355
|
+
cameraId: number;
|
|
356
|
+
storageId: number;
|
|
357
|
+
};
|
|
358
|
+
export type KitAlarmItem = {
|
|
359
|
+
id: number;
|
|
360
|
+
kitId: number;
|
|
361
|
+
alarm: KitAlarm;
|
|
362
|
+
startDate: string;
|
|
363
|
+
endDate: string | null;
|
|
364
|
+
};
|
|
365
|
+
export type KitBox = {
|
|
366
|
+
id: string;
|
|
367
|
+
gatewaySerial: string;
|
|
368
|
+
gatewayMac: string;
|
|
369
|
+
gatewayConfig: Record<string, unknown> | null;
|
|
370
|
+
insertedAt: string;
|
|
371
|
+
updatedAt: string;
|
|
372
|
+
};
|
|
373
|
+
export type KitBoxCreatePayload = {
|
|
374
|
+
id?: string;
|
|
375
|
+
gatewaySerial: string;
|
|
376
|
+
gatewayMac: string;
|
|
377
|
+
gatewayConfig?: Record<string, unknown>;
|
|
378
|
+
};
|
|
379
|
+
export type KitBoxQueryParams = PaginationParams & {
|
|
380
|
+
id: string;
|
|
381
|
+
gatewaySerial: string;
|
|
382
|
+
gatewayMac: string;
|
|
383
|
+
};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export declare enum NotificationType {
|
|
2
|
+
CameraShare = "camera_share",
|
|
3
|
+
CameraStatusChange = "camera_status_changed",
|
|
4
|
+
Mention = "mention",
|
|
5
|
+
TimelapseCreated = "timelapse_created",
|
|
6
|
+
TimelapseFailed = "timelapse_failed",
|
|
7
|
+
DroneProcessing = "drone_processing_done",
|
|
8
|
+
Processing360 = "three_sixty_done"
|
|
9
|
+
}
|
|
10
|
+
export interface NotificationContextBase {
|
|
11
|
+
cameraExid?: string;
|
|
12
|
+
projectExid?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface CameraShareContext extends NotificationContextBase {
|
|
15
|
+
cameraExid: string;
|
|
16
|
+
projectExid: string;
|
|
17
|
+
shareId: number;
|
|
18
|
+
}
|
|
19
|
+
export interface CameraStatusChangeContext extends NotificationContextBase {
|
|
20
|
+
cameraExid: string;
|
|
21
|
+
projectExid: string;
|
|
22
|
+
newStatus: string;
|
|
23
|
+
}
|
|
24
|
+
export interface MentionContext extends NotificationContextBase {
|
|
25
|
+
}
|
|
26
|
+
export interface TimelapseCreatedContext extends NotificationContextBase {
|
|
27
|
+
cameraExid: string;
|
|
28
|
+
projectExid: string;
|
|
29
|
+
archiveExid: string;
|
|
30
|
+
}
|
|
31
|
+
export interface TimelapseFailedContext extends NotificationContextBase {
|
|
32
|
+
cameraExid: string;
|
|
33
|
+
projectExid: string;
|
|
34
|
+
}
|
|
35
|
+
export interface DroneProcessingContext extends NotificationContextBase {
|
|
36
|
+
projectExid: string;
|
|
37
|
+
droneDate: string;
|
|
38
|
+
}
|
|
39
|
+
export interface Processing360Context extends NotificationContextBase {
|
|
40
|
+
projectExid: string;
|
|
41
|
+
date: string;
|
|
42
|
+
floor: string;
|
|
43
|
+
}
|
|
44
|
+
export type NotificationContext = CameraShareContext | CameraStatusChangeContext | MentionContext | TimelapseCreatedContext | TimelapseFailedContext | DroneProcessingContext | Processing360Context;
|
|
45
|
+
export type Notification = {
|
|
46
|
+
id: number;
|
|
47
|
+
type: NotificationType;
|
|
48
|
+
insertedAt: string;
|
|
49
|
+
initiatorId: number;
|
|
50
|
+
initiatorFullname: string;
|
|
51
|
+
initiatorEmail: string;
|
|
52
|
+
targetId: number;
|
|
53
|
+
targetFullname: string;
|
|
54
|
+
targetEmail: string;
|
|
55
|
+
readTimestamp: string | null;
|
|
56
|
+
context: NotificationContext;
|
|
57
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export type ActiveUsersRequestPayload = {
|
|
2
|
+
from?: string;
|
|
3
|
+
to?: string;
|
|
4
|
+
companyExid?: string;
|
|
5
|
+
projectExid?: string;
|
|
6
|
+
cameraExid?: string;
|
|
7
|
+
};
|
|
8
|
+
export type ActiveUsersResponsePayload = Array<{
|
|
9
|
+
date?: string;
|
|
10
|
+
dau?: number;
|
|
11
|
+
wau?: number;
|
|
12
|
+
mau?: number;
|
|
13
|
+
}>;
|
|
14
|
+
export declare enum ActiveUsersMetric {
|
|
15
|
+
DAU = "dau",
|
|
16
|
+
WAU = "wau",
|
|
17
|
+
MAU = "mau"
|
|
18
|
+
}
|
|
19
|
+
export type PosthogUserParams = {
|
|
20
|
+
firstname?: string;
|
|
21
|
+
lastname?: string;
|
|
22
|
+
email: string;
|
|
23
|
+
telephone?: string;
|
|
24
|
+
country?: string;
|
|
25
|
+
isAdmin?: boolean;
|
|
26
|
+
persona?: string;
|
|
27
|
+
companyExid: string;
|
|
28
|
+
companyName: string;
|
|
29
|
+
isImpersonationLogin: boolean;
|
|
30
|
+
ImpersonatedUserEmail?: string;
|
|
31
|
+
ImpersonatedUserFirstname?: string;
|
|
32
|
+
impersonatedUserLastname?: string;
|
|
33
|
+
};
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
export type ProcoreUserCompaniesResponsePayload = Array<{
|
|
2
|
+
id: number;
|
|
3
|
+
isActive?: boolean;
|
|
4
|
+
name: string;
|
|
5
|
+
}>;
|
|
6
|
+
export type ProcoreCompanyRequestPayload = {
|
|
7
|
+
companyId: number;
|
|
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
|
+
};
|
|
47
|
+
export type ProcoreUserProject = {
|
|
48
|
+
accountingProjectNumber?: number;
|
|
49
|
+
active: boolean;
|
|
50
|
+
address: string;
|
|
51
|
+
city: string;
|
|
52
|
+
company: {
|
|
53
|
+
id: number;
|
|
54
|
+
name: string;
|
|
55
|
+
};
|
|
56
|
+
completionDate: string;
|
|
57
|
+
countryCode: string;
|
|
58
|
+
county: string;
|
|
59
|
+
createdAt: string;
|
|
60
|
+
customFields?: object;
|
|
61
|
+
designatedMarketArea: string;
|
|
62
|
+
displayName: string;
|
|
63
|
+
estimatedValue: string;
|
|
64
|
+
id: number;
|
|
65
|
+
isDemo: boolean;
|
|
66
|
+
latitude: number;
|
|
67
|
+
longitude: number;
|
|
68
|
+
name: string;
|
|
69
|
+
originCode: string | number | null;
|
|
70
|
+
originData: string | null;
|
|
71
|
+
originId: number | null;
|
|
72
|
+
ownersProjectId: number | null;
|
|
73
|
+
parentJobId: number | null;
|
|
74
|
+
phone: string | number;
|
|
75
|
+
photoId: number;
|
|
76
|
+
projectBidTypeId: number | null;
|
|
77
|
+
projectNumber: string;
|
|
78
|
+
projectOwnerTypeId: number | null;
|
|
79
|
+
projectRegionId: number | null;
|
|
80
|
+
stage: string;
|
|
81
|
+
startDate: string;
|
|
82
|
+
stateCode: string;
|
|
83
|
+
storeNumber?: string;
|
|
84
|
+
timeZone: string;
|
|
85
|
+
totalValue: string;
|
|
86
|
+
updatedAt: string;
|
|
87
|
+
zip: number;
|
|
88
|
+
};
|
|
89
|
+
export type ProcoreUserProjectsResponsePayload = Array<ProcoreUserProject>;
|
|
90
|
+
export type ProcoreToolUserAccessLevel = {
|
|
91
|
+
id: ProcoreToolUserAccessLevelIds;
|
|
92
|
+
name: string;
|
|
93
|
+
};
|
|
94
|
+
export type ProcoreToolPermittedAction = {
|
|
95
|
+
id: number;
|
|
96
|
+
actionName: string;
|
|
97
|
+
label: string;
|
|
98
|
+
toolName: string;
|
|
99
|
+
};
|
|
100
|
+
export type ProcoreToolPermissions = {
|
|
101
|
+
id: number;
|
|
102
|
+
name: string;
|
|
103
|
+
friendlyName: string;
|
|
104
|
+
domainId: number;
|
|
105
|
+
tabGroup: string;
|
|
106
|
+
availableForUser: boolean;
|
|
107
|
+
url: string;
|
|
108
|
+
userAccessLevel: ProcoreToolUserAccessLevel;
|
|
109
|
+
permittedActions: Array<ProcoreToolPermittedAction>;
|
|
110
|
+
createUrl: string;
|
|
111
|
+
canCreate: boolean;
|
|
112
|
+
trial: boolean;
|
|
113
|
+
};
|
|
114
|
+
export type ProcoreUserProjectPermissionsResponsePayload = {
|
|
115
|
+
tools: Array<ProcoreToolPermissions>;
|
|
116
|
+
};
|
|
117
|
+
export type ProcoreEditedImageUploadRequestPayload = {
|
|
118
|
+
projectExid: string;
|
|
119
|
+
companyId: number;
|
|
120
|
+
projectId: number;
|
|
121
|
+
snapshot: string;
|
|
122
|
+
categoryId?: number;
|
|
123
|
+
};
|
|
124
|
+
export type ProcoreProjectAlbum = {
|
|
125
|
+
count: number;
|
|
126
|
+
coverPhoto: string | null;
|
|
127
|
+
createdAt: string;
|
|
128
|
+
id: number;
|
|
129
|
+
links: {
|
|
130
|
+
delete: string;
|
|
131
|
+
show: string;
|
|
132
|
+
update: string;
|
|
133
|
+
};
|
|
134
|
+
name: string;
|
|
135
|
+
position: number;
|
|
136
|
+
private: boolean;
|
|
137
|
+
updatedAt: string;
|
|
138
|
+
};
|
|
139
|
+
export type ProcoreProjectsAlbumsPayload = Array<ProcoreProjectAlbum>;
|
|
140
|
+
export type ProcoreObservationType = {
|
|
141
|
+
id: number;
|
|
142
|
+
name: string;
|
|
143
|
+
localizedName: string;
|
|
144
|
+
category: string;
|
|
145
|
+
categoryKey: string;
|
|
146
|
+
companyActive: boolean;
|
|
147
|
+
active: boolean;
|
|
148
|
+
kind: string;
|
|
149
|
+
parentInactive: boolean;
|
|
150
|
+
isUse: boolean;
|
|
151
|
+
nameTranslations: string;
|
|
152
|
+
};
|
|
153
|
+
export type ProcoreObservationTypesResponsePayload = Array<ProcoreObservationType>;
|
|
154
|
+
export type ProcoreObservationFormRequestPayload = {
|
|
155
|
+
projectId: number;
|
|
156
|
+
companyId: number;
|
|
157
|
+
observationType: string;
|
|
158
|
+
};
|
|
159
|
+
export type ProcoreCustomFieldOptionsRequestPayload = {
|
|
160
|
+
optionsUrl: string;
|
|
161
|
+
companyId: number;
|
|
162
|
+
};
|
|
163
|
+
export type ProcoreObservationForm = Record<string, ProcoreObservationField | ProcoreObservationCustomField>;
|
|
164
|
+
export type ProcoreObservationField = {
|
|
165
|
+
name: string;
|
|
166
|
+
required: boolean;
|
|
167
|
+
visible: boolean;
|
|
168
|
+
};
|
|
169
|
+
export type ProcoreObservationCustomField = {
|
|
170
|
+
id: number;
|
|
171
|
+
required: boolean;
|
|
172
|
+
visible: boolean;
|
|
173
|
+
name: string;
|
|
174
|
+
label: string;
|
|
175
|
+
description: string;
|
|
176
|
+
customFieldDefinitionId: number;
|
|
177
|
+
dataType: ProcoreObservationCustomFieldDataType;
|
|
178
|
+
variant: string;
|
|
179
|
+
position: number;
|
|
180
|
+
row: number;
|
|
181
|
+
column: number;
|
|
182
|
+
columnWidth: number;
|
|
183
|
+
optionsUrl: string | null;
|
|
184
|
+
defaultValue: string | null;
|
|
185
|
+
};
|
|
186
|
+
export type ProcoreNextObservationAvailableNumber = {
|
|
187
|
+
nextAvailableNumber: number;
|
|
188
|
+
};
|
|
189
|
+
export declare enum ProcoreObservationCustomFieldDataType {
|
|
190
|
+
RichText = "rich_text",
|
|
191
|
+
Date = "date",
|
|
192
|
+
DateTime = "datetime",
|
|
193
|
+
LovEntry = "lov_entry",
|
|
194
|
+
LovEntries = "lov_entries",
|
|
195
|
+
Boolean = "boolean",
|
|
196
|
+
Vendor = "vendor",
|
|
197
|
+
Decimal = "decimal",
|
|
198
|
+
String = "string",
|
|
199
|
+
LoginInformation = "login_information",
|
|
200
|
+
LoginInformations = "login_informations",
|
|
201
|
+
Dropdown = "dropdown"
|
|
202
|
+
}
|
|
203
|
+
export declare enum ProcoreObservationDefaultFieldNames {
|
|
204
|
+
Number = "number",
|
|
205
|
+
Name = "name",
|
|
206
|
+
Status = "status",
|
|
207
|
+
Trade = "tradeId",
|
|
208
|
+
Assignee = "assigneeId",
|
|
209
|
+
DueDate = "dueDate",
|
|
210
|
+
SpecificationSection = "specificationSectionId",
|
|
211
|
+
Priority = "priority",
|
|
212
|
+
Location = "locationId",
|
|
213
|
+
DistributionMembers = "distributionMemberIds",
|
|
214
|
+
Personal = "personal",
|
|
215
|
+
Hazard = "hazardId",
|
|
216
|
+
ContributingBehavior = "contributingBehaviorId",
|
|
217
|
+
ContributingCondition = "contributingConditionId",
|
|
218
|
+
Description = "description"
|
|
219
|
+
}
|
|
220
|
+
export declare enum ProcoreTools {
|
|
221
|
+
Observations = "observations",
|
|
222
|
+
ProgressPhotos = "images"
|
|
223
|
+
}
|
|
224
|
+
export declare enum ProcoreToolUserAccessLevelIds {
|
|
225
|
+
NoAccess = 1,
|
|
226
|
+
ReadOnly = 2,
|
|
227
|
+
Standard = 3,
|
|
228
|
+
Admin = 4
|
|
229
|
+
}
|
|
@@ -1,29 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export type ProgressPhoto = {
|
|
3
|
-
cameraIds: string;
|
|
4
|
-
cameraNames: number;
|
|
5
|
-
createdAt: string;
|
|
6
|
-
id: number;
|
|
7
|
-
provider: string;
|
|
8
|
-
config: Partial<{
|
|
9
|
-
recipients: string;
|
|
10
|
-
projectId: number;
|
|
11
|
-
companyId: number;
|
|
12
|
-
}>;
|
|
13
|
-
isPaused: boolean;
|
|
14
|
-
notifyDays: string;
|
|
15
|
-
notifyTime: string;
|
|
16
|
-
requesterEmail: string;
|
|
17
|
-
requesterName: string;
|
|
18
|
-
timezone: string;
|
|
19
|
-
title: string;
|
|
20
|
-
};
|
|
1
|
+
import { Automation, AutomationType, DateType, PaginationParams } from "@evercam/api/types";
|
|
21
2
|
export type ProgressPhotosCreateUpdateRequestPayload = {
|
|
22
3
|
cameraExids?: string;
|
|
23
4
|
notifyDays?: string;
|
|
5
|
+
compareDelay?: AutomationType;
|
|
24
6
|
notifyTime?: string;
|
|
25
7
|
provider?: string;
|
|
8
|
+
type?: string;
|
|
26
9
|
config?: {
|
|
10
|
+
compareDelay?: AutomationType;
|
|
27
11
|
recipients?: string;
|
|
28
12
|
projectId?: number;
|
|
29
13
|
companyId?: number;
|
|
@@ -38,9 +22,12 @@ export type ProgressPhotosUnSubscribeParams = {
|
|
|
38
22
|
token?: string;
|
|
39
23
|
};
|
|
40
24
|
export type ProgressPhotosResponsePayload = {
|
|
41
|
-
progressPhotos:
|
|
25
|
+
progressPhotos: Automation[];
|
|
42
26
|
};
|
|
43
|
-
export
|
|
27
|
+
export type ProgressPhotoItemResponsePayload = {
|
|
28
|
+
progressPhoto: Automation;
|
|
29
|
+
};
|
|
30
|
+
export declare enum AutomationDialogType {
|
|
44
31
|
Create = "create",
|
|
45
32
|
Edit = "edit",
|
|
46
33
|
Pause = "pause"
|
|
@@ -86,5 +73,5 @@ export type ProgressPhotosHistory = {
|
|
|
86
73
|
cameraIds: string;
|
|
87
74
|
failedCameraIds: string;
|
|
88
75
|
subject: string;
|
|
89
|
-
recipients:
|
|
76
|
+
recipients: string;
|
|
90
77
|
};
|