@evercam/api 1.0.0-01d5d3402 → 1.0.0-025384d3e
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 +90 -4
- package/dist/api/api/authzApi.d.ts +4 -1
- 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 +242 -0
- package/dist/api/types/analytics.d.ts +35 -19
- 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 +90 -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 +61 -0
- package/dist/api/types/observations.d.ts +85 -0
- package/dist/api/types/planner.d.ts +55 -10
- package/dist/api/types/posthog.d.ts +20 -0
- package/dist/api/types/project.d.ts +9 -1
- package/dist/api/types/recording.d.ts +7 -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 +1773 -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 +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 +21 -0
- package/package.json +4 -2
- package/dist/api/types/vendorModel.d.ts +0 -15
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
import { PaginatedItems, PaginationParams } from "@evercam/api/types";
|
|
2
|
+
export declare enum AiApp {
|
|
3
|
+
GateReport = "gate_report",
|
|
4
|
+
Ppe = "ppe",
|
|
5
|
+
SiteAnalytics = "site_analytics"
|
|
6
|
+
}
|
|
7
|
+
export declare enum AiProvider {
|
|
8
|
+
Gemini = "gemini",
|
|
9
|
+
OpenAi = "openai",
|
|
10
|
+
Anthropic = "anthropic"
|
|
11
|
+
}
|
|
12
|
+
export declare enum AiConfigsPromptDialogMode {
|
|
13
|
+
Create = "create",
|
|
14
|
+
Edit = "edit",
|
|
15
|
+
View = "view",
|
|
16
|
+
Subprompt = "subprompt"
|
|
17
|
+
}
|
|
18
|
+
export declare enum AiConfigsKeyDialogMode {
|
|
19
|
+
Create = "create",
|
|
20
|
+
Rotate = "rotate",
|
|
21
|
+
Rename = "rename"
|
|
22
|
+
}
|
|
23
|
+
export interface AiAppConfig {
|
|
24
|
+
bg: string;
|
|
25
|
+
fg: string;
|
|
26
|
+
border: string;
|
|
27
|
+
icon: string;
|
|
28
|
+
}
|
|
29
|
+
export declare const AI_APP_CONFIGS: Record<AiApp | "generic", AiAppConfig>;
|
|
30
|
+
export interface AiProviderConfig {
|
|
31
|
+
bg: string;
|
|
32
|
+
fg: string;
|
|
33
|
+
icon: string;
|
|
34
|
+
}
|
|
35
|
+
export declare const AI_PROVIDER_CONFIGS: Record<AiProvider, AiProviderConfig>;
|
|
36
|
+
export declare enum AiPromptModel {
|
|
37
|
+
Gemini3Pro = "gemini-3-pro",
|
|
38
|
+
Gemini3FlashPreview = "gemini-3-flash-preview",
|
|
39
|
+
Gemini25Pro = "gemini-2.5-pro",
|
|
40
|
+
Gemini25Flash = "gemini-2.5-flash",
|
|
41
|
+
Gemini20Flash = "gemini-2.0-flash",
|
|
42
|
+
Gpt5 = "gpt-5",
|
|
43
|
+
Gpt5Mini = "gpt-5-mini",
|
|
44
|
+
Gpt4o = "gpt-4o",
|
|
45
|
+
Gpt4oMini = "gpt-4o-mini",
|
|
46
|
+
ClaudeOpus45 = "claude-opus-4-5",
|
|
47
|
+
ClaudeSonnet46 = "claude-sonnet-4-6",
|
|
48
|
+
ClaudeHaiku45 = "claude-haiku-4-5"
|
|
49
|
+
}
|
|
50
|
+
export declare enum AiPromptType {
|
|
51
|
+
Prompt = "prompt",
|
|
52
|
+
Parent = "parent",
|
|
53
|
+
Subprompt = "subprompt"
|
|
54
|
+
}
|
|
55
|
+
export interface AiPrompt {
|
|
56
|
+
id: number;
|
|
57
|
+
title: string | null;
|
|
58
|
+
purpose: string | null;
|
|
59
|
+
app: string | null;
|
|
60
|
+
model: string | null;
|
|
61
|
+
prompt: string;
|
|
62
|
+
outputSchema: Record<string, unknown> | null;
|
|
63
|
+
createdBy: string;
|
|
64
|
+
createdAt: string;
|
|
65
|
+
updatedAt: string;
|
|
66
|
+
promptType: AiPromptType;
|
|
67
|
+
parentId: number | null;
|
|
68
|
+
subpromptCount: number;
|
|
69
|
+
}
|
|
70
|
+
export interface AiPromptCreatePayload {
|
|
71
|
+
title?: string | null;
|
|
72
|
+
purpose: string;
|
|
73
|
+
app: string;
|
|
74
|
+
model?: string | null;
|
|
75
|
+
prompt: string;
|
|
76
|
+
outputSchema?: Record<string, unknown> | null;
|
|
77
|
+
promptType?: AiPromptType.Prompt | AiPromptType.Parent;
|
|
78
|
+
}
|
|
79
|
+
export interface AiPromptUpdatePayload {
|
|
80
|
+
title?: string | null;
|
|
81
|
+
purpose?: string;
|
|
82
|
+
app?: string;
|
|
83
|
+
model?: string | null;
|
|
84
|
+
prompt?: string;
|
|
85
|
+
outputSchema?: Record<string, unknown> | null;
|
|
86
|
+
}
|
|
87
|
+
export type AiPromptQueryParams = PaginationParams & {
|
|
88
|
+
app?: string;
|
|
89
|
+
purpose?: string;
|
|
90
|
+
model?: string;
|
|
91
|
+
search?: string;
|
|
92
|
+
createdBy?: string;
|
|
93
|
+
promptType?: AiPromptType;
|
|
94
|
+
includeSubprompts?: boolean;
|
|
95
|
+
};
|
|
96
|
+
export interface AiSubpromptCreatePayload {
|
|
97
|
+
title?: string | null;
|
|
98
|
+
purpose: string;
|
|
99
|
+
model?: string | null;
|
|
100
|
+
prompt: string;
|
|
101
|
+
outputSchema?: Record<string, unknown> | null;
|
|
102
|
+
}
|
|
103
|
+
export type AiPromptListResponse = PaginatedItems<AiPrompt>;
|
|
104
|
+
export interface AiPromptCreateResponse {
|
|
105
|
+
created: boolean;
|
|
106
|
+
data: AiPrompt;
|
|
107
|
+
message: string;
|
|
108
|
+
}
|
|
109
|
+
export interface AiPromptUpdateResponse {
|
|
110
|
+
updated: boolean;
|
|
111
|
+
id: number | string;
|
|
112
|
+
message: string;
|
|
113
|
+
}
|
|
114
|
+
export interface AiPromptDeleteResponse {
|
|
115
|
+
deleted: boolean;
|
|
116
|
+
count: number;
|
|
117
|
+
message: string;
|
|
118
|
+
}
|
|
119
|
+
export interface AiApiKey {
|
|
120
|
+
id: number;
|
|
121
|
+
projectExid: string;
|
|
122
|
+
provider: string;
|
|
123
|
+
name: string;
|
|
124
|
+
purpose: string;
|
|
125
|
+
enabled: boolean;
|
|
126
|
+
autoGenerated: boolean;
|
|
127
|
+
firstUsedAt: string | null;
|
|
128
|
+
lastUsedAt: string | null;
|
|
129
|
+
insertedAt: string;
|
|
130
|
+
updatedAt: string;
|
|
131
|
+
}
|
|
132
|
+
export interface AiApiKeyCreatePayload {
|
|
133
|
+
projectExid: string;
|
|
134
|
+
provider: string;
|
|
135
|
+
name?: string;
|
|
136
|
+
purpose?: string;
|
|
137
|
+
apiKey?: string;
|
|
138
|
+
enabled?: boolean;
|
|
139
|
+
}
|
|
140
|
+
export interface AiApiKeyUpdatePayload {
|
|
141
|
+
name?: string;
|
|
142
|
+
enabled?: boolean;
|
|
143
|
+
apiKey?: string;
|
|
144
|
+
}
|
|
145
|
+
export type AiApiKeyQueryParams = {
|
|
146
|
+
projectExid?: string;
|
|
147
|
+
provider?: string;
|
|
148
|
+
purpose?: string;
|
|
149
|
+
enabled?: boolean;
|
|
150
|
+
};
|
|
151
|
+
export interface AiApiKeyCreateResponse {
|
|
152
|
+
created: boolean;
|
|
153
|
+
data: AiApiKey;
|
|
154
|
+
message: string;
|
|
155
|
+
}
|
|
156
|
+
export interface AiApiKeyUpdateResponse {
|
|
157
|
+
updated: boolean;
|
|
158
|
+
id: number | string;
|
|
159
|
+
message: string;
|
|
160
|
+
}
|
|
161
|
+
export interface AiApiKeyDeleteResponse {
|
|
162
|
+
deleted: boolean;
|
|
163
|
+
count: number;
|
|
164
|
+
message: string;
|
|
165
|
+
}
|
|
166
|
+
export declare enum AiObservationFeasibilityStatus {
|
|
167
|
+
Prod = "prod",
|
|
168
|
+
Beta = "beta",
|
|
169
|
+
Parked = "parked"
|
|
170
|
+
}
|
|
171
|
+
export declare enum AiObservationTimeDetection {
|
|
172
|
+
PerSecond = "per_second",
|
|
173
|
+
PerMinute = "per_minute",
|
|
174
|
+
Hourly = "hourly",
|
|
175
|
+
Daily = "daily"
|
|
176
|
+
}
|
|
177
|
+
export interface AiObservationFeasibilityConfig {
|
|
178
|
+
bg: string;
|
|
179
|
+
fg: string;
|
|
180
|
+
border: string;
|
|
181
|
+
label: string;
|
|
182
|
+
}
|
|
183
|
+
export declare const AI_OBSERVATION_FEASIBILITY_CONFIGS: Record<AiObservationFeasibilityStatus, AiObservationFeasibilityConfig>;
|
|
184
|
+
export interface AiObservationType {
|
|
185
|
+
id: number;
|
|
186
|
+
observationCode: string;
|
|
187
|
+
name: string;
|
|
188
|
+
description: string | null;
|
|
189
|
+
type: string;
|
|
190
|
+
rules: Record<string, unknown> | null;
|
|
191
|
+
timeDetection: string | null;
|
|
192
|
+
every: number | null;
|
|
193
|
+
severity: number | null;
|
|
194
|
+
feasibilityStatus: AiObservationFeasibilityStatus;
|
|
195
|
+
promptId: number | null;
|
|
196
|
+
promptName: string | null;
|
|
197
|
+
insertedAt: string;
|
|
198
|
+
updatedAt: string;
|
|
199
|
+
}
|
|
200
|
+
export interface AiObservationTypeCreatePayload {
|
|
201
|
+
observationCode: string;
|
|
202
|
+
name: string;
|
|
203
|
+
description?: string | null;
|
|
204
|
+
type: string;
|
|
205
|
+
rules?: Record<string, unknown> | null;
|
|
206
|
+
timeDetection?: string | null;
|
|
207
|
+
every?: number | null;
|
|
208
|
+
severity?: number | null;
|
|
209
|
+
feasibilityStatus: AiObservationFeasibilityStatus;
|
|
210
|
+
promptId?: number | null;
|
|
211
|
+
}
|
|
212
|
+
export type AiObservationTypeUpdatePayload = Partial<Omit<AiObservationTypeCreatePayload, "observationCode">>;
|
|
213
|
+
export type AiObservationTypeQueryParams = {
|
|
214
|
+
search?: string;
|
|
215
|
+
feasibilityStatus?: string;
|
|
216
|
+
type?: string;
|
|
217
|
+
page?: number;
|
|
218
|
+
limit?: number;
|
|
219
|
+
};
|
|
220
|
+
export interface AiObservationTypeListResponse {
|
|
221
|
+
items: AiObservationType[];
|
|
222
|
+
total: number;
|
|
223
|
+
page: number;
|
|
224
|
+
limit: number;
|
|
225
|
+
from: number;
|
|
226
|
+
to: number;
|
|
227
|
+
}
|
|
228
|
+
export interface AiObservationTypeCreateResponse {
|
|
229
|
+
created: boolean;
|
|
230
|
+
data: AiObservationType;
|
|
231
|
+
message: string;
|
|
232
|
+
}
|
|
233
|
+
export interface AiObservationTypeUpdateResponse {
|
|
234
|
+
updated: boolean;
|
|
235
|
+
id: number | string;
|
|
236
|
+
message: string;
|
|
237
|
+
}
|
|
238
|
+
export interface AiObservationTypeDeleteResponse {
|
|
239
|
+
deleted: boolean;
|
|
240
|
+
count: number;
|
|
241
|
+
message: string;
|
|
242
|
+
}
|
|
@@ -79,6 +79,9 @@ export declare enum AnalyticsEvent {
|
|
|
79
79
|
SettingsConnectorsRemoveVoyageControlConnection = "RemoveVoyageControl",
|
|
80
80
|
SettingsConnectorsToggleConnectorPromptDialog = "ToggleConnectorPromptDialog",
|
|
81
81
|
SettingsConnectorsToggleVoyageControlDialog = "ToggleVoyageControlDialog",
|
|
82
|
+
SettingsConnectorsConnectToHammertech = "ConnectToHammertech",
|
|
83
|
+
SettingsConnectorsRemoveHammertechConnection = "RemoveHammertech",
|
|
84
|
+
SettingsConnectorsToggleHammertechDialog = "ToggleHammertechDialog",
|
|
82
85
|
WidgetsSelectTypeThreeSixty = "Widgets-SelectType360",
|
|
83
86
|
WidgetsSelectProject = "SelectProject",
|
|
84
87
|
WidgetsSelect360Date = "Select360Date",
|
|
@@ -192,6 +195,7 @@ export declare enum AnalyticsEvent {
|
|
|
192
195
|
XraySendToConnectorProcoreObservations = "Xray-SendToConnector-Procore-Observations",
|
|
193
196
|
XraySendToConnectorAconex = "Xray-SendToConnector-Aconex",
|
|
194
197
|
XraySendToConnectorAutodesk = "Xray-SendToConnector-Autodesk",
|
|
198
|
+
XraySendToConnectorHammerTech = "Xray-SendToConnector-HammerTech",
|
|
195
199
|
WeatherGoBackDate = "Weather-GoBackDate",
|
|
196
200
|
WeatherGoForwardDate = "Weather-GoForwardDate",
|
|
197
201
|
WeatherReportExportFile = "ExportFile",
|
|
@@ -261,6 +265,9 @@ export declare enum AnalyticsEvent {
|
|
|
261
265
|
MarkUpToolSendToConnectorProcoreObservations = "MarkUpTool-SendToConnector-Procore-Observations",
|
|
262
266
|
MarkUpToolSendToConnectorAconex = "MarkUpTool-SendToConnector-Aconex",
|
|
263
267
|
MarkUpToolSendToConnectorAutodesk = "MarkUpTool-SendToConnector-Autodesk",
|
|
268
|
+
MarkUpToolSendToConnectorHammerTech = "MarkUpTool-SendToConnector-HammerTech",
|
|
269
|
+
MarkUpToolSendViaEmail = "MarkUpTool-SendViaEmail",
|
|
270
|
+
MarkUpToolSendViaEmailSent = "MarkUpTool-SendViaEmail-Sent",
|
|
264
271
|
RecordingsCancelExportDialog = "CancelExportDialog",
|
|
265
272
|
RecordingsClickSupportLink = "ClickSupportLink",
|
|
266
273
|
RecordingsCreateClip = "CreateClip",
|
|
@@ -282,16 +289,6 @@ export declare enum AnalyticsEvent {
|
|
|
282
289
|
SharingSortBy = "SortBy",
|
|
283
290
|
SharingChangeAccessRight = "ChangeAccessRight",
|
|
284
291
|
ThreeSixtyGallery = "Gallery",
|
|
285
|
-
ThreeSixtyGalleryFilterAssetTypes = "Gallery-FilterAssetTypes",
|
|
286
|
-
ThreeSixtyGalleryFilterDateRange = "Gallery-FilterDateRange",
|
|
287
|
-
ThreeSixtyGalleryFilterFeatures = "Gallery-FilterFeatures",
|
|
288
|
-
ThreeSixtyGalleryFilterFloorName = "Gallery-FilterFloorName",
|
|
289
|
-
ThreeSixtyGalleryFilterUploadedBy = "Gallery-FilterUploadedBy",
|
|
290
|
-
ThreeSixtyGalleryTimelineSelectMilestoneItem = "Gallery-TimelineSelectMilestoneItem",
|
|
291
|
-
ThreeSixtyGalleryTimelineDateClick = "Gallery-TimelineDateClick",
|
|
292
|
-
ThreeSixtyGalleryToggleUploadDialog = "Gallery-ToggleUploadDialog",
|
|
293
|
-
ThreeSixtyGalleryUpdateFloorName = "Gallery-UpdateFloorName",
|
|
294
|
-
ThreeSixtyGalleryEditWalkName = "Gallery-EditWalkName",
|
|
295
292
|
ThreeSixtyChangeDate = "ChangeDate",
|
|
296
293
|
ThreeSixtyChangeFloor = "ChangeFloor",
|
|
297
294
|
ThreeSixtyCloseCompare = "CloseCompare",
|
|
@@ -300,6 +297,7 @@ export declare enum AnalyticsEvent {
|
|
|
300
297
|
ThreeSixtyDisableMeasuringTool = "DisableMeasuringTool",
|
|
301
298
|
ThreeSixtyDisableCommnetTool = "DisableCommentTool",
|
|
302
299
|
ThreeSixtyEnableMeasuringTool = "EnableMeasuringTool",
|
|
300
|
+
ThreeSixtyMeasuringPerformed = "measuring_performed",
|
|
303
301
|
ThreeSixtyEnableCommentTool = "EnableCommentTool",
|
|
304
302
|
ThreeSixtyLockCompare = "LockCompare",
|
|
305
303
|
ThreeSixtyLockForgeBIM = "LockForgeBIM",
|
|
@@ -310,6 +308,7 @@ export declare enum AnalyticsEvent {
|
|
|
310
308
|
ThreeSixtyOpenForgeBIM = "OpenForgeBIM",
|
|
311
309
|
ThreeSixtyOpenMarkersThumbnailsList = "OpenMarkersThumbnailsList",
|
|
312
310
|
ThreeSixtyOpenCommentsList = "OpenCommentsList",
|
|
311
|
+
ThreeSixtyGalleryEditWalkName = "Gallery-EditWalkName",
|
|
313
312
|
ThreeSixtySaveComment = "SaveComment",
|
|
314
313
|
ThreeSixtyUnarchiveComment = "UnarchiveComment",
|
|
315
314
|
ThreeSixtyArchiveComment = "ArchiveComment",
|
|
@@ -319,13 +318,7 @@ export declare enum AnalyticsEvent {
|
|
|
319
318
|
ThreeSixtyToggleMinimapVisibility = "ToggleMinimapVisibility",
|
|
320
319
|
ThreeSixtyToggleMiniModel = "ToggleMiniModel",
|
|
321
320
|
ThreeSixtyToggleCommentsVisibility = "ToggleCommentsVisibility",
|
|
322
|
-
|
|
323
|
-
ThreeSixtyTourPlay = "Tour-Play",
|
|
324
|
-
ThreeSixtyTourSetSpeedXHalve = "Tour-SetSpeedX0.5",
|
|
325
|
-
ThreeSixtyTourSetSpeedX1 = "Tour-SetSpeedX1",
|
|
326
|
-
ThreeSixtyTourSetSpeedX2 = "Tour-SetSpeedX2",
|
|
327
|
-
ThreeSixtyTourSetSpeedX4 = "Tour-SetSpeedX4",
|
|
328
|
-
ThreeSixtyTourToggleLoop = "Tour-ToggleLoop",
|
|
321
|
+
ThreeSixtyToggleCameraPinsVisibility = "toggle_camera_pins_visibility",
|
|
329
322
|
ThreeSixtyUnlockCompare = "UnlockCompare",
|
|
330
323
|
ThreeSixtyUnlockForgeBIM = "UnlockForgeBIM",
|
|
331
324
|
ThreeSixtyUploadAssets = "UploadAssets",
|
|
@@ -348,7 +341,6 @@ export declare enum AnalyticsEvent {
|
|
|
348
341
|
DroneResetView = "ResetView",
|
|
349
342
|
DroneSettingsToggle360PathsVisibility = "Settings-Toggle360PathsVisibility",
|
|
350
343
|
DroneSettingsToggleCameraMarkersVisibility = "Settings-ToggleCameraMarkersVisibility",
|
|
351
|
-
DroneSettingsToggleSurroundingBuildingsTool = "Settings-ToggleSurroundingBuildingsTool",
|
|
352
344
|
DroneSettingsToggleCommentsVisibility = "Settings-ToggleCommentsVisibility",
|
|
353
345
|
DroneSettingsToggleAerialShotsVisibility = "Settings-ToggleAerialShotsVisibility",
|
|
354
346
|
DroneSettingsOpenCommentsList = "Settings-OpenCommentsList",
|
|
@@ -359,6 +351,7 @@ export declare enum AnalyticsEvent {
|
|
|
359
351
|
DroneToggleMapStyle = "ToggleMapStyle",
|
|
360
352
|
DroneTogglePointCloud = "TogglePointCloud",
|
|
361
353
|
DroneToggleGaussianSplat = "ToggleGaussianSplat",
|
|
354
|
+
DroneToggleGlobe = "ToggleGlobe",
|
|
362
355
|
DroneToggleQualityMode = "ChooseQuality",
|
|
363
356
|
DroneToggleSideMenu = "ToggleSideMenu",
|
|
364
357
|
DroneToggleImageryPlan = "ToggleImageryPlan",
|
|
@@ -405,6 +398,8 @@ export declare enum AnalyticsEvent {
|
|
|
405
398
|
DrawingClickHome = "ClickHome",
|
|
406
399
|
DrawingsUploadDrawing = "UploadDrawing",
|
|
407
400
|
DrawingsCreateDrawing = "CreateDrawing",
|
|
401
|
+
DrawingsSelectPdfPage = "SelectPdfPage",
|
|
402
|
+
DrawingsDeleteDrawing = "DeleteDrawing",
|
|
408
403
|
DrawingToggleMapStyle = "ToggleMapStyle",
|
|
409
404
|
DrawingToggleMapLabels = "ToggleMapLabels",
|
|
410
405
|
DrawingToggleCamerasLabels = "ToggleCamerasLabels",
|
|
@@ -593,5 +588,26 @@ export declare enum AnalyticsEvent {
|
|
|
593
588
|
AskAIClickVoice = "AskAI-ClickVoice",
|
|
594
589
|
AskAIClickFullscreen = "AskAI-ClickFullscreen",
|
|
595
590
|
AskAIExitFullscreen = "AskAI-ExitFullscreen",
|
|
596
|
-
AskAICloseChat = "AskAI-CloseChat"
|
|
591
|
+
AskAICloseChat = "AskAI-CloseChat",
|
|
592
|
+
ForgeBimAddModelButtonClicked = "ForgeBim-AddModelButtonClicked",
|
|
593
|
+
ForgeBimUploadChoiceDialogOpened = "ForgeBim-UploadChoiceDialogOpened",
|
|
594
|
+
ForgeBimModelAddMethodSelected = "ForgeBim-ModelAddMethodSelected",
|
|
595
|
+
ForgeBimUploadChoiceDialogDismissed = "ForgeBim-UploadChoiceDialogDismissed",
|
|
596
|
+
ForgeBimLocalModelFileSelected = "ForgeBim-LocalModelFileSelected",
|
|
597
|
+
ForgeBimLocalModelFileRejected = "ForgeBim-LocalModelFileRejected",
|
|
598
|
+
ForgeBimUploadModelFileToIngestStarted = "ForgeBim-UploadModelFileToIngestStarted",
|
|
599
|
+
ForgeBimUploadModelFileToIngestCompleted = "ForgeBim-UploadModelFileToIngestCompleted",
|
|
600
|
+
ForgeBimUploadModelFileToIngestFailed = "ForgeBim-UploadModelFileToIngestFailed",
|
|
601
|
+
ForgeBimAccModelSelectorOpened = "ForgeBim-AccModelSelectorOpened",
|
|
602
|
+
ForgeBimAccModelSelectorDismissed = "ForgeBim-AccModelSelectorDismissed",
|
|
603
|
+
ForgeBimAccModelConfirmed = "ForgeBim-AccModelConfirmed",
|
|
604
|
+
ForgeBimModelDuplicateDetected = "ForgeBim-ModelDuplicateDetected",
|
|
605
|
+
ForgeBimUpdateModelButtonClicked = "ForgeBim-UpdateModelButtonClicked",
|
|
606
|
+
ForgeBimReplaceModelWarningOpened = "ForgeBim-ReplaceModelWarningOpened",
|
|
607
|
+
ForgeBimReplaceModelConfirmed = "ForgeBim-ReplaceModelConfirmed",
|
|
608
|
+
ForgeBimReplaceModelCancelled = "ForgeBim-ReplaceModelCancelled",
|
|
609
|
+
ForgeBimModelAdded = "ForgeBim-ModelAdded",
|
|
610
|
+
ForgeBimModelUpdated = "ForgeBim-ModelUpdated",
|
|
611
|
+
ForgeBimModelSaveFailed = "ForgeBim-ModelSaveFailed",
|
|
612
|
+
ForgeBimIngestNotificationFailed = "ForgeBim-IngestNotificationFailed"
|
|
597
613
|
}
|
package/dist/api/types/anpr.d.ts
CHANGED
|
@@ -104,11 +104,40 @@ export declare enum AnprEventStatus {
|
|
|
104
104
|
export type AnprBulkUpdateRequestPayload = {
|
|
105
105
|
anprEventsIds: number[];
|
|
106
106
|
action: AnprEventStatus;
|
|
107
|
-
updatedBy: string;
|
|
108
107
|
};
|
|
109
108
|
export type AnprUpdateRequestPayload = {
|
|
110
109
|
plateNumber: string;
|
|
111
110
|
vehicleType: GateReportVehicleType;
|
|
112
111
|
direction: AnprDirection;
|
|
113
|
-
|
|
112
|
+
};
|
|
113
|
+
export declare enum AnprExtractionStatus {
|
|
114
|
+
Pending = "pending",
|
|
115
|
+
Running = "running",
|
|
116
|
+
Completed = "completed",
|
|
117
|
+
Failed = "failed"
|
|
118
|
+
}
|
|
119
|
+
export declare enum AnprExtractionSaveMode {
|
|
120
|
+
All = "all",
|
|
121
|
+
AiDbOnly = "ai_db_only",
|
|
122
|
+
ImagesOnly = "images_only"
|
|
123
|
+
}
|
|
124
|
+
export type AnprExtraction = {
|
|
125
|
+
id: number;
|
|
126
|
+
cameraId: number;
|
|
127
|
+
userId: number | null;
|
|
128
|
+
startDate: string;
|
|
129
|
+
endDate: string;
|
|
130
|
+
status: AnprExtractionStatus;
|
|
131
|
+
totalRecords: number;
|
|
132
|
+
error: string | null;
|
|
133
|
+
saveMode: AnprExtractionSaveMode;
|
|
134
|
+
startedAt: string | null;
|
|
135
|
+
completedAt: string | null;
|
|
136
|
+
insertedAt: string;
|
|
137
|
+
updatedAt: string;
|
|
138
|
+
};
|
|
139
|
+
export type AnprExtractionCreatePayload = {
|
|
140
|
+
startDate: string;
|
|
141
|
+
endDate: string;
|
|
142
|
+
saveMode?: AnprExtractionSaveMode;
|
|
114
143
|
};
|
|
@@ -33,6 +33,24 @@ export declare enum AuditLogActionType {
|
|
|
33
33
|
BIM_NOTE = "bim_note",
|
|
34
34
|
GATE_REPORT_NOTE = "gate_report_note"
|
|
35
35
|
}
|
|
36
|
+
export declare enum AuditLogEntity {
|
|
37
|
+
Cameras = "cameras",
|
|
38
|
+
Projects = "projects",
|
|
39
|
+
Layers = "layers",
|
|
40
|
+
Routers = "routers",
|
|
41
|
+
Sims = "sims",
|
|
42
|
+
Hdds = "hdds",
|
|
43
|
+
Nvr = "nvr",
|
|
44
|
+
Archives = "archives",
|
|
45
|
+
Users = "users",
|
|
46
|
+
Rois = "rois",
|
|
47
|
+
Kits = "kits",
|
|
48
|
+
Roles = "roles",
|
|
49
|
+
Tags = "tags",
|
|
50
|
+
KitsTags = "kits_tags",
|
|
51
|
+
Oauth = "oauth",
|
|
52
|
+
StorageProviders = "storage_providers"
|
|
53
|
+
}
|
|
36
54
|
export type AuditLog = {
|
|
37
55
|
id: number;
|
|
38
56
|
action: AuditLogActionType;
|
|
@@ -3,6 +3,10 @@ export declare enum RoleResourceType {
|
|
|
3
3
|
Camera = "camera",
|
|
4
4
|
Project = "project"
|
|
5
5
|
}
|
|
6
|
+
export declare enum RoleAssignmentLogAction {
|
|
7
|
+
Assign = "assign",
|
|
8
|
+
Unassign = "unassign"
|
|
9
|
+
}
|
|
6
10
|
export type RoleSubRole = {
|
|
7
11
|
resourceId: string;
|
|
8
12
|
roleId: number;
|
|
@@ -59,3 +63,70 @@ export type AuthzScopeCreatePayload = {
|
|
|
59
63
|
export type AuthzScopeUpdatePayload = Partial<AuthzScopeCreatePayload>;
|
|
60
64
|
export declare function isProjectRole(role: Role): role is ProjectResourceRole;
|
|
61
65
|
export declare function isCameraRole(role: Role): role is CameraResourceRole;
|
|
66
|
+
export type RoleAssignmentUserDetails = {
|
|
67
|
+
browser?: string | null;
|
|
68
|
+
device?: string | null;
|
|
69
|
+
os?: string | null;
|
|
70
|
+
country?: string | null;
|
|
71
|
+
countryCode?: string | null;
|
|
72
|
+
ip?: string | null;
|
|
73
|
+
impersonatedBy?: string | null;
|
|
74
|
+
};
|
|
75
|
+
export type RoleAssignmentRowUserDetails = RoleAssignmentUserDetails & {
|
|
76
|
+
via?: string | null;
|
|
77
|
+
inviteId?: number | null;
|
|
78
|
+
inviteEmail?: string | null;
|
|
79
|
+
};
|
|
80
|
+
export type RoleAssignmentLog = {
|
|
81
|
+
id: number;
|
|
82
|
+
action: RoleAssignmentLogAction;
|
|
83
|
+
assignerId: number | null;
|
|
84
|
+
assignerEmail: string | null;
|
|
85
|
+
assigneeId: number | null;
|
|
86
|
+
assigneeEmail: string;
|
|
87
|
+
roleId: number | null;
|
|
88
|
+
roleName: string | null;
|
|
89
|
+
previousRoleId: number | null;
|
|
90
|
+
previousRoleName: string | null;
|
|
91
|
+
scope: RoleResourceType;
|
|
92
|
+
projectExid: string | null;
|
|
93
|
+
cameraExid: string | null;
|
|
94
|
+
cameraName: string | null;
|
|
95
|
+
projectName: string | null;
|
|
96
|
+
ip: string | null;
|
|
97
|
+
userDetails: RoleAssignmentRowUserDetails | null;
|
|
98
|
+
insertedAt: string;
|
|
99
|
+
};
|
|
100
|
+
export type RoleAssignmentResourceRef = {
|
|
101
|
+
exid: string;
|
|
102
|
+
name: string | null;
|
|
103
|
+
};
|
|
104
|
+
export type RoleAssignmentLogBatch = {
|
|
105
|
+
groupId: string;
|
|
106
|
+
batchId: string | null;
|
|
107
|
+
batchSize: number;
|
|
108
|
+
assigneeId: number | null;
|
|
109
|
+
assigneeEmail: string;
|
|
110
|
+
actions: RoleAssignmentLogAction[];
|
|
111
|
+
projects: RoleAssignmentResourceRef[];
|
|
112
|
+
ip: string | null;
|
|
113
|
+
userDetails: RoleAssignmentUserDetails | null;
|
|
114
|
+
insertedAt: string;
|
|
115
|
+
children: RoleAssignmentLog[];
|
|
116
|
+
};
|
|
117
|
+
export type RoleAssignmentLogsParams = {
|
|
118
|
+
page?: number;
|
|
119
|
+
limit?: number;
|
|
120
|
+
sort?: string;
|
|
121
|
+
action?: RoleAssignmentLogAction;
|
|
122
|
+
roleId?: number;
|
|
123
|
+
roleName?: string;
|
|
124
|
+
assigneeEmail?: string;
|
|
125
|
+
assignerEmail?: string;
|
|
126
|
+
scope?: RoleResourceType;
|
|
127
|
+
projectExid?: string;
|
|
128
|
+
cameraExid?: string;
|
|
129
|
+
ip?: string;
|
|
130
|
+
from?: string;
|
|
131
|
+
to?: string;
|
|
132
|
+
};
|
|
@@ -8,8 +8,28 @@ export declare enum AutomationProvider {
|
|
|
8
8
|
export declare enum AutomationType {
|
|
9
9
|
Photo = "photo",
|
|
10
10
|
Compare = "compare",
|
|
11
|
-
GateReport = "gate_report"
|
|
11
|
+
GateReport = "gate_report",
|
|
12
|
+
Weather = "weather"
|
|
12
13
|
}
|
|
14
|
+
export declare enum AutomationWeatherReportType {
|
|
15
|
+
Forecast = "forecast",
|
|
16
|
+
History = "history"
|
|
17
|
+
}
|
|
18
|
+
export declare enum AutomationExportFormat {
|
|
19
|
+
Pdf = "pdf",
|
|
20
|
+
Csv = "csv"
|
|
21
|
+
}
|
|
22
|
+
export declare enum AutomationWeatherDataGranularity {
|
|
23
|
+
Daily = "daily",
|
|
24
|
+
Hourly = "hourly"
|
|
25
|
+
}
|
|
26
|
+
export type AutomationWeatherConfig = {
|
|
27
|
+
reportType: AutomationWeatherReportType;
|
|
28
|
+
exportFormat: AutomationExportFormat;
|
|
29
|
+
dataGranularity?: AutomationWeatherDataGranularity;
|
|
30
|
+
selectedColumns?: string[];
|
|
31
|
+
forecastDays?: number;
|
|
32
|
+
};
|
|
13
33
|
export type AutomationCompareConfig = {
|
|
14
34
|
compareDelay: number;
|
|
15
35
|
};
|
|
@@ -22,7 +42,6 @@ export type AutomationGateReportConfig = {
|
|
|
22
42
|
fileType: string;
|
|
23
43
|
period: number;
|
|
24
44
|
columns: string[];
|
|
25
|
-
recipients: string | string[];
|
|
26
45
|
};
|
|
27
46
|
export type AutomationEmailProviderConfig = {
|
|
28
47
|
cameraExids?: CameraExid[];
|
|
@@ -51,7 +70,7 @@ export type AutomationAutodeskProviderConfig = {
|
|
|
51
70
|
folderName: string;
|
|
52
71
|
};
|
|
53
72
|
export type AutomationProviderConfig = AutomationEmailProviderConfig | AutomationProcoreProviderConfig | AutomationAconexProviderConfig | AutomationAutodeskProviderConfig;
|
|
54
|
-
export type AutomationOptionsConfig = AutomationCompareConfig | AutomationGateReportConfig | {};
|
|
73
|
+
export type AutomationOptionsConfig = AutomationCompareConfig | AutomationGateReportConfig | AutomationWeatherConfig | {};
|
|
55
74
|
export type AutomationConfig = AutomationProviderConfig & AutomationOptionsConfig;
|
|
56
75
|
export type Automation = {
|
|
57
76
|
id?: number;
|
|
@@ -82,7 +101,7 @@ export type AutomationProviderOption = {
|
|
|
82
101
|
requiresConnection: boolean;
|
|
83
102
|
};
|
|
84
103
|
export type FormattedAutomation = {
|
|
85
|
-
cameraExids
|
|
104
|
+
cameraExids?: string;
|
|
86
105
|
name: string;
|
|
87
106
|
subject: string;
|
|
88
107
|
provider: AutomationProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import type { AxiosError, AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelTokenSource, CancelTokenStatic } from "axios";
|
|
2
2
|
import { Swr } from "@evercam/api/api/client/swr/Swr";
|
|
3
|
-
export type TimedRequest<T> = Promise<AxiosResponse<T> & {
|
|
4
|
-
duration: number;
|
|
5
|
-
error?: AxiosError;
|
|
6
|
-
}>;
|
|
7
3
|
export type AxiosEnvironment = {
|
|
8
4
|
baseUrl?: string | null;
|
|
9
5
|
stagingAiApiUrl?: string | null;
|
|
@@ -13,13 +9,14 @@ export type AxiosEnvironment = {
|
|
|
13
9
|
ingestGpuApiUrl?: string | null;
|
|
14
10
|
posthogApiUrl?: string | null;
|
|
15
11
|
posthogProjectId?: string | null;
|
|
16
|
-
posthogPrivateApiKey?: string | null;
|
|
17
12
|
firebaseVideowallUrl?: string | null;
|
|
18
13
|
weatherApiBaseUrl?: string | null;
|
|
19
14
|
evercamLabsUrl?: string | null;
|
|
15
|
+
isLabsStaging?: boolean;
|
|
20
16
|
firebaseDbLink?: string | null;
|
|
21
17
|
firebaseStorageUrl?: string | null;
|
|
22
18
|
firebaseStorageToken?: string | null;
|
|
19
|
+
forgeTokenServerUrl?: string | null;
|
|
23
20
|
snapshotsURL?: string | null;
|
|
24
21
|
app?: string | null;
|
|
25
22
|
getAuthToken?: () => string | null;
|
|
@@ -29,15 +26,18 @@ export type AxiosEnvironment = {
|
|
|
29
26
|
export type RequestInterceptor = (req: AxiosRequestConfig, env: AxiosEnvironment) => AxiosRequestConfig & any;
|
|
30
27
|
export type ResponseInterceptor = (res: AxiosResponse, env: AxiosEnvironment) => AxiosResponse & any;
|
|
31
28
|
export type ErrorInterceptor = (error: any, env: AxiosEnvironment) => any;
|
|
29
|
+
export type RequestManager = {
|
|
30
|
+
createToken: (key: string) => CancelTokenSource["token"];
|
|
31
|
+
cancelToken: (key: string) => void;
|
|
32
|
+
cancelAll: () => void;
|
|
33
|
+
};
|
|
32
34
|
export interface ExtendedAxiosInstance extends AxiosInstance {
|
|
33
35
|
CancelToken: CancelTokenStatic;
|
|
34
36
|
isCancel: (value: AxiosResponse | AxiosError | unknown) => boolean;
|
|
35
37
|
setToken: (token: string) => void;
|
|
36
38
|
setHeader: (headerName: string, value: any) => void;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
resetCancelTokens: () => void;
|
|
40
|
-
cancelRequests: () => void;
|
|
39
|
+
createRequestManager: () => RequestManager;
|
|
40
|
+
requestManager: RequestManager;
|
|
41
41
|
env: AxiosEnvironment;
|
|
42
42
|
addEnvironmentVariables: (vars: Record<string, any>) => void;
|
|
43
43
|
addRequestInterceptor: (interceptor: RequestInterceptor, errorInterceptor?: ErrorInterceptor) => void;
|
package/dist/api/types/bim.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CompareLogoPosition, DateType } from "@evercam/api/types";
|
|
1
|
+
import { CompareLogoPosition, DateType, PaginationParams } from "@evercam/api/types";
|
|
2
2
|
export declare enum BimModelType {
|
|
3
3
|
Architectural = "Architectural",
|
|
4
4
|
Structural = "Structural",
|
|
@@ -101,7 +101,7 @@ export type BIMLayerPostPayload = {
|
|
|
101
101
|
layerType: BIMLayerTypes;
|
|
102
102
|
startAt: DateType;
|
|
103
103
|
shapes: string;
|
|
104
|
-
zIndex
|
|
104
|
+
zIndex?: number;
|
|
105
105
|
};
|
|
106
106
|
export type BIMLayer = {
|
|
107
107
|
id: number;
|
|
@@ -137,9 +137,7 @@ export type ProcessPendingImagesBimParams = {
|
|
|
137
137
|
apiId: string;
|
|
138
138
|
apiKey: string;
|
|
139
139
|
};
|
|
140
|
-
export type BimUploadsQueryParams = {
|
|
141
|
-
page: number;
|
|
142
|
-
limit: number;
|
|
140
|
+
export type BimUploadsQueryParams = PaginationParams & {
|
|
143
141
|
projectId: string;
|
|
144
142
|
id: string;
|
|
145
143
|
uploadedBy: string;
|
|
@@ -151,3 +149,28 @@ export type BimUploadPayload = {
|
|
|
151
149
|
fileExtension: string;
|
|
152
150
|
}[];
|
|
153
151
|
};
|
|
152
|
+
export declare enum ForgeBimUploadMethod {
|
|
153
|
+
FileUpload = "file_upload",
|
|
154
|
+
AutodeskAcc = "autodesk_acc"
|
|
155
|
+
}
|
|
156
|
+
export declare enum ForgeBimFileRejectionReason {
|
|
157
|
+
InvalidType = "invalid_type",
|
|
158
|
+
ExceedsSizeLimit = "exceeds_size_limit"
|
|
159
|
+
}
|
|
160
|
+
export declare enum ForgeBimUploadStage {
|
|
161
|
+
TusUpload = "tus_upload",
|
|
162
|
+
IngestUpload = "ingest_upload"
|
|
163
|
+
}
|
|
164
|
+
export declare enum ForgeBimDialogTrigger {
|
|
165
|
+
UpdateModel = "update_model",
|
|
166
|
+
AddModel = "add_model",
|
|
167
|
+
InitialSetup = "initial_setup"
|
|
168
|
+
}
|
|
169
|
+
export type BimUpdatedWebhookPayload = {
|
|
170
|
+
eventName: "bim.updated";
|
|
171
|
+
projectId: string;
|
|
172
|
+
data: {
|
|
173
|
+
updatedAt: string;
|
|
174
|
+
bimIdentifier: string;
|
|
175
|
+
};
|
|
176
|
+
};
|