@evercam/api 1.0.0-bc158a880 → 1.0.0-bc5229297
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 +171 -15
- package/dist/api/api/adminApi.d.ts +8 -1
- package/dist/api/api/aiApi.d.ts +2 -2
- package/dist/api/api/authzApi.d.ts +1 -2
- package/dist/api/api/evercamApi.d.ts +10 -2
- package/dist/api/api/ingestApi.d.ts +44 -43
- package/dist/api/types/360.d.ts +55 -50
- package/dist/api/types/analytics.d.ts +9 -14
- package/dist/api/types/authz.d.ts +1 -0
- package/dist/api/types/axios.d.ts +3 -3
- package/dist/api/types/camera.d.ts +10 -23
- package/dist/api/types/drone.d.ts +92 -3
- package/dist/api/types/gateReport.d.ts +6 -11
- package/dist/api/types/index.d.ts +1 -0
- package/dist/api/types/ingest.d.ts +14 -1
- package/dist/api/types/map.d.ts +12 -0
- package/dist/api/types/planner.d.ts +98 -0
- package/dist/api/types/project.d.ts +8 -3
- package/dist/api/types/recording.d.ts +3 -1
- package/dist/api/types/roi.d.ts +2 -2
- package/dist/api/types/shared.d.ts +18 -0
- package/dist/api/types/siteView.d.ts +74 -0
- package/dist/api/types/snapshots.d.ts +35 -3
- package/dist/api/types/timelapse.d.ts +9 -1
- package/dist/api/types/user.d.ts +0 -1
- package/dist/index.js +1240 -710
- 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 +48 -6
- package/dist/shared/types/index.d.ts +1 -0
- package/dist/shared/types/rbac.d.ts +67 -0
- package/package.json +2 -2
|
@@ -1,27 +1,183 @@
|
|
|
1
|
-
import { _360ProjectJsonResponse,
|
|
1
|
+
import { _360Floor, _360FloorId, _360Marker3D, _360Pin, _360ProjectJsonResponse, _360ProjectListItem, _360Scene, _360SceneRoute, _360Walk, Point3D, DroneBimData, DroneImageryPlan, DroneMarker, DroneModel, DroneProjectData, DroneProjectDataPatch, DroneProjectTransform, DroneTag, DroneTransformPatch, ForgeMarker, ForgeProjectData, ForgeView, ItwinProjectData, MapView, PlannerListItem, SitePlan, ProjectExid, SiteViewCameraListItem, SiteViewerType, DroneCameraTransform } from "@evercam/api/types";
|
|
2
2
|
import { AxiosRequestConfig } from "axios";
|
|
3
|
-
export declare const getFirebaseDbApi: () => string
|
|
4
|
-
export declare const getFirebaseStorageUrl: () => string
|
|
5
|
-
export declare const getFirebaseStorageToken: () => string
|
|
3
|
+
export declare const getFirebaseDbApi: () => string;
|
|
4
|
+
export declare const getFirebaseStorageUrl: () => string;
|
|
5
|
+
export declare const getFirebaseStorageToken: () => string;
|
|
6
|
+
export declare const getForgeTokenServerUrl: () => string;
|
|
6
7
|
export declare const _3dFirebaseApi: {
|
|
7
8
|
drone: {
|
|
8
|
-
getProjectInfo(projectExid: ProjectExid): Promise<
|
|
9
|
-
|
|
9
|
+
getProjectInfo(projectExid: ProjectExid): Promise<DroneProjectData>;
|
|
10
|
+
getTransformInfo(projectExid: ProjectExid): Promise<DroneProjectTransform>;
|
|
11
|
+
getProjectTags(projectExid: ProjectExid): Promise<Record<string, DroneTag>>;
|
|
12
|
+
getTags(projectId: ProjectExid): Promise<Record<string, DroneTag>>;
|
|
13
|
+
patchTags({ projectId, tags, }: {
|
|
14
|
+
projectId: ProjectExid;
|
|
15
|
+
tags: Record<string, DroneTag | null>;
|
|
16
|
+
}): Promise<void>;
|
|
17
|
+
saveMarkers({ projectId, markers, }: {
|
|
18
|
+
projectId: ProjectExid;
|
|
19
|
+
markers: Record<string, DroneMarker>;
|
|
20
|
+
}): Promise<void>;
|
|
21
|
+
patchTransform({ projectId, data, }: {
|
|
22
|
+
projectId: ProjectExid;
|
|
23
|
+
data: DroneTransformPatch;
|
|
24
|
+
}): Promise<void>;
|
|
25
|
+
saveTerrainPoints({ projectId, dateId, points, }: {
|
|
26
|
+
projectId: ProjectExid;
|
|
27
|
+
dateId: string;
|
|
28
|
+
points: Point3D[];
|
|
29
|
+
}): Promise<void>;
|
|
30
|
+
patchImageryPlan({ projectId, plan, }: {
|
|
31
|
+
projectId: ProjectExid;
|
|
32
|
+
plan: Record<string, DroneImageryPlan>;
|
|
33
|
+
}): Promise<void>;
|
|
34
|
+
deleteImageryPlan({ projectId, uuid, }: {
|
|
35
|
+
projectId: ProjectExid;
|
|
36
|
+
uuid: string;
|
|
37
|
+
}): Promise<void>;
|
|
38
|
+
saveImageryPlans({ projectId, plans, }: {
|
|
39
|
+
projectId: ProjectExid;
|
|
40
|
+
plans: Record<string, DroneImageryPlan>;
|
|
41
|
+
}): Promise<void>;
|
|
42
|
+
getBlackListIds(projectId: ProjectExid): Promise<string | null>;
|
|
43
|
+
saveBlackListIds({ projectId, ids, }: {
|
|
44
|
+
projectId: ProjectExid;
|
|
45
|
+
ids: string;
|
|
46
|
+
}): Promise<void>;
|
|
47
|
+
saveModel({ projectId, model, }: {
|
|
48
|
+
projectId: ProjectExid;
|
|
49
|
+
model: DroneModel;
|
|
50
|
+
}): Promise<void>;
|
|
51
|
+
saveModels({ projectId, models, }: {
|
|
52
|
+
projectId: ProjectExid;
|
|
53
|
+
models: DroneModel[];
|
|
54
|
+
}): Promise<void>;
|
|
55
|
+
saveBimData({ projectId, data, }: {
|
|
56
|
+
projectId: ProjectExid;
|
|
57
|
+
data: DroneBimData;
|
|
58
|
+
}): Promise<void>;
|
|
59
|
+
getBimTransparencyFlag(projectId: ProjectExid): Promise<boolean | null>;
|
|
60
|
+
saveCameraTransform({ projectId, isScene3D, transform, }: {
|
|
61
|
+
projectId: ProjectExid;
|
|
62
|
+
isScene3D: boolean;
|
|
63
|
+
transform: Record<string, DroneCameraTransform>;
|
|
64
|
+
}): Promise<void>;
|
|
10
65
|
};
|
|
11
66
|
_360: {
|
|
12
67
|
getProjectInfo(projectExid: ProjectExid, params?: {
|
|
13
68
|
config?: AxiosRequestConfig;
|
|
14
69
|
}): Promise<_360ProjectJsonResponse>;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
70
|
+
getProjectsList(): Promise<_360ProjectListItem[]>;
|
|
71
|
+
updateProjectsList(items: Record<string, _360ProjectListItem>): Promise<void>;
|
|
72
|
+
updateProjectsListItem(index: number, data: _360ProjectListItem): Promise<void>;
|
|
73
|
+
deleteProject(projectId: string): Promise<void>;
|
|
74
|
+
updateProjectInfo(projectId: string, data: Partial<_360ProjectJsonResponse>): Promise<void>;
|
|
75
|
+
getDateWalks(projectExid: ProjectExid, dateId: string): Promise<_360Walk>;
|
|
76
|
+
updateFloor(projectExid: ProjectExid, dateId: string, floorIndex: string, body: Partial<_360Floor>): Promise<_360ProjectJsonResponse>;
|
|
77
|
+
getRoute(projectExid: ProjectExid, dateId: string, floorIndex: string): Promise<_360SceneRoute | null>;
|
|
78
|
+
getDates(projectId: ProjectExid): Promise<_360Scene[]>;
|
|
79
|
+
getAerialShotsDates(projectId: ProjectExid): Promise<_360Scene[]>;
|
|
80
|
+
getAerialShotDate(projectId: ProjectExid, dateId: number): Promise<string | null>;
|
|
81
|
+
getFloor({ projectId, dateId, floorId, }: {
|
|
82
|
+
projectId: ProjectExid;
|
|
83
|
+
dateId: number;
|
|
84
|
+
floorId: _360FloorId;
|
|
85
|
+
}): Promise<_360Floor>;
|
|
86
|
+
getAerialShotsFloor({ projectId, dateId, floorId, }: {
|
|
87
|
+
projectId: ProjectExid;
|
|
88
|
+
dateId: number;
|
|
89
|
+
floorId: _360FloorId;
|
|
90
|
+
}): Promise<_360Floor>;
|
|
91
|
+
update3DMarkers({ projectId, dateId, floorId, markers, }: {
|
|
92
|
+
projectId: ProjectExid;
|
|
93
|
+
dateId: number;
|
|
94
|
+
floorId: _360FloorId;
|
|
95
|
+
markers: Record<string, _360Marker3D>;
|
|
96
|
+
}): Promise<void>;
|
|
97
|
+
patchFloor({ projectId, dateId, floorId, data, }: {
|
|
98
|
+
projectId: ProjectExid;
|
|
99
|
+
dateId: number;
|
|
100
|
+
floorId: _360FloorId;
|
|
101
|
+
data: Partial<_360Floor>;
|
|
102
|
+
}): Promise<void>;
|
|
103
|
+
updateFloors({ projectId, dateId, floors, }: {
|
|
104
|
+
projectId: ProjectExid;
|
|
105
|
+
dateId: number;
|
|
106
|
+
floors: _360Scene["floors"];
|
|
107
|
+
}): Promise<void>;
|
|
108
|
+
deleteFloor({ projectId, dateId, floorId, }: {
|
|
109
|
+
projectId: ProjectExid;
|
|
110
|
+
dateId: number;
|
|
111
|
+
floorId: _360FloorId;
|
|
112
|
+
}): Promise<void>;
|
|
113
|
+
updateDates(projectId: ProjectExid, dates: _360Scene[]): Promise<void>;
|
|
114
|
+
deleteDate(projectId: ProjectExid, dateId: number): Promise<void>;
|
|
115
|
+
getPins({ projectId, dateId, floorId, }: {
|
|
116
|
+
projectId: ProjectExid;
|
|
117
|
+
dateId: number;
|
|
118
|
+
floorId: _360FloorId;
|
|
119
|
+
}): Promise<Record<string, _360Pin>>;
|
|
120
|
+
updatePins({ projectId, dateId, floorId, pins, }: {
|
|
121
|
+
projectId: ProjectExid;
|
|
122
|
+
dateId: number;
|
|
123
|
+
floorId: _360FloorId;
|
|
124
|
+
pins: Record<string, _360Pin>;
|
|
125
|
+
}): Promise<void>;
|
|
126
|
+
getGPXText(url: string): Promise<string>;
|
|
127
|
+
updateRoute(projectExid: ProjectExid, dateId: string, floorIndex: string, body: Partial<_360SceneRoute>): Promise<void>;
|
|
128
|
+
updateFeatureFlag(projectID: string, dateID: string, floorID: string, featureFlagName: string, value: boolean): Promise<void>;
|
|
129
|
+
saveSteps(projectID: string, dateID: string, floorID: string, stepsValue: number): Promise<void>;
|
|
130
|
+
updateGPXFile(projectExid: ProjectExid, dateId: string, floorIndex: string, gpxContent: string): Promise<void>;
|
|
131
|
+
getProjectDates(projectId: ProjectExid): Promise<_360Scene[]>;
|
|
132
|
+
getProjectAerialShotsDates(projectId: ProjectExid): Promise<_360Scene[]>;
|
|
133
|
+
getProjectDateFloors({ projectId, dateId, }: {
|
|
134
|
+
projectId: ProjectExid;
|
|
135
|
+
dateId: string | number;
|
|
136
|
+
}): Promise<Record<string, _360Floor>>;
|
|
23
137
|
};
|
|
24
138
|
forge: {
|
|
25
|
-
|
|
139
|
+
getAccessToken(): Promise<{
|
|
140
|
+
access_token: string;
|
|
141
|
+
}>;
|
|
142
|
+
getProjectInfo(projectExid: ProjectExid): Promise<ForgeProjectData | null>;
|
|
143
|
+
getForgeData(projectId: string): Promise<ForgeProjectData | null>;
|
|
144
|
+
saveSavedView(projectId: string, payload: ForgeView): Promise<void>;
|
|
145
|
+
saveMarkers(projectId: string, markers: ForgeMarker[]): Promise<void>;
|
|
146
|
+
};
|
|
147
|
+
itwin: {
|
|
148
|
+
getProjectInfo(projectId: string): Promise<ItwinProjectData | null>;
|
|
149
|
+
clearBimCompare(projectId: string): Promise<void>;
|
|
150
|
+
clearSiteView(projectId: string, modelIndex: number): Promise<void>;
|
|
151
|
+
};
|
|
152
|
+
siteView: {
|
|
153
|
+
getCamerasList(): Promise<SiteViewCameraListItem[]>;
|
|
154
|
+
updateCamerasList(items: Record<string, SiteViewCameraListItem>): Promise<void>;
|
|
155
|
+
updateCamerasListItem(trueIndex: number, item: SiteViewCameraListItem): Promise<void>;
|
|
156
|
+
updateProjectData({ viewerType, projectId, data, subPath, }: {
|
|
157
|
+
viewerType: SiteViewerType;
|
|
158
|
+
projectId: ProjectExid;
|
|
159
|
+
data: ForgeProjectData | ItwinProjectData | DroneProjectDataPatch;
|
|
160
|
+
subPath?: string;
|
|
161
|
+
}): Promise<void>;
|
|
162
|
+
deleteProjectData(viewerType: SiteViewerType, projectId: ProjectExid): Promise<void>;
|
|
163
|
+
readAllData(dbLink: string): Promise<Record<string, unknown>>;
|
|
164
|
+
writeAllData(dbLink: string, data: Record<string, unknown>): Promise<void>;
|
|
165
|
+
};
|
|
166
|
+
map: {
|
|
167
|
+
getMapViews(projectExid: ProjectExid): Promise<MapView[]>;
|
|
168
|
+
updateMapViews(projectExid: ProjectExid, mapViews: Record<string, MapView>): Promise<void>;
|
|
169
|
+
};
|
|
170
|
+
safety: {
|
|
171
|
+
getTPulseLink(projectExid: ProjectExid): Promise<{
|
|
172
|
+
link?: string;
|
|
173
|
+
} | null>;
|
|
174
|
+
updateTPulseLink(projectExid: ProjectExid, link: string): Promise<void>;
|
|
175
|
+
};
|
|
176
|
+
planner: {
|
|
177
|
+
getPlannerList(): Promise<Record<string, PlannerListItem>>;
|
|
178
|
+
getPlannerItem(sitePlanId: string): Promise<PlannerListItem | null>;
|
|
179
|
+
saveSitePlanMetaData(sitePlanId: string, payload: PlannerListItem): Promise<void>;
|
|
180
|
+
getSitePlan(sitePlanId: string): Promise<SitePlan | null>;
|
|
181
|
+
saveSitePlan(sitePlanId: string, payload: SitePlan): Promise<void>;
|
|
26
182
|
};
|
|
27
183
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FootageCreateUpdatePayload, HDDCreateUpdatePayload, HDDsQueryParams } from "@evercam/api/types/hdd";
|
|
2
2
|
import type { OAuthClient, OAuthClientWithSecret, AdminCreateOAuthClientPayload, UpdateOAuthClientPayload } from "@evercam/api/types/oauth";
|
|
3
|
-
import type { CamerasResponsePayload, CameraUpdateRequestPayload, PaginatedItems, AdminCamera, AdminProjectDetail, AdminProjectListItem, AdminHdd, AdminUser, ProgressPhotosCreateUpdateRequestPayload, Kit, PatchPayload, StorageProvidersResponsePayload, MediaFilterQueryParams, Media, MediaDeleteRequestPayload, AuditLogsParams, AuditLog, SnapshotExtractionQyeryParams, SnapshotExtraction, CameraCreateRequestPayload, CameraDeletePayload, SnapshotTestPayload, SnapshotTestResponse, DuplicatedCameraFields, DuplicatedCameraResponse, MergeDuplicatedCameraPayload, FetchCameraQueryParams, DeleteSnapshotQueryParams, SaveNotePayload, CameraNote, CreateCameraNotePayload, CompanyQueryParams, CompanySummary, CompanyUpdatePayload, SsoProvider, SsoUpdatePayload, SsoCreatePayload, SuppressionsQueryParams, Suppression, SnapshotExtractionType, KitQueryParams, KitCreatePayload, AdminKit, KitMetricStatsEntry, CameraLogsQueryParams, CameraLog, CameraAuditLogsQueryParams, CameraAuditLog, NvrQueryParams, Nvr, SiteVisitCamerasQueryParams, OfflineCameraQueryParams, OfflineCamera, OfflineCameraNoteResponse, UserStatsResponse, UserCameraResponse, UserProjectResponse, ProjectUsers, ProjectCamera, ProjectsQueryParams, ProjectStatusStats, ProjectCreateRequestPayload, ProjectCreateResponse, ProjectUpdateRequestPayload, RouterQueryParams, Router, RouterCreatePayload, GlobalSearchQueryParams, SimCreateUpdatePayload, SimsQueryParams, Sim, SendSmsPayload, SendSmsResponse, SmsHistoryResponse, SmsQueryParams, Sms, ProgressPhotosQueryParams, ProgressPhotoItem, progressPhotosHistoryQueryParams, ProgressPhotosHistory, AdminUserUpdateRequestPayload, AdminQueryParams, Admin, ImpersonateUserResponse, AdminUserQueryParams, AdminCompareQueryParams, AdminCompare, NvrCreatePayload, WidgetsListRequestPayload, AdminWidget, AdminWidgetFull, WidgetPayload, PaginationParams, KitStorageRequestPayload, AdminCompanyUser, AdminCompanyProject, CompanyKit, CompanyCameraSummary, Automation, KitStorage, KitFootageRequestPayload, CommentsListRequestPayload, Comment, KitFootage, KitAlarmItem, RecycleBin, RecycleBinQueryParams, TransferCloudRecordingsQueryParams, CheckCameraPortPayload, CameraStatusLog, KitBox, KitBoxCreatePayload, KitBoxQueryParams, AdminInvite, AdminSearchItem, WithZohoParams, ZohoDeskTicketSearchResponse, JsonObject, ProjectStorageQueryParams, ProjectStorage, StorageProvider } from "@evercam/api/types";
|
|
3
|
+
import type { CamerasResponsePayload, CameraUpdateRequestPayload, PaginatedItems, AdminCamera, AdminProjectDetail, AdminProjectListItem, AdminHdd, AdminUser, ProgressPhotosCreateUpdateRequestPayload, Kit, PatchPayload, StorageProvidersResponsePayload, MediaFilterQueryParams, Media, MediaDeleteRequestPayload, AuditLogsParams, AuditLog, SnapshotExtractionQyeryParams, SnapshotExtraction, CameraCreateRequestPayload, CameraDeletePayload, SnapshotTestPayload, SnapshotTestResponse, DuplicatedCameraFields, DuplicatedCameraResponse, MergeDuplicatedCameraPayload, FetchCameraQueryParams, DeleteSnapshotQueryParams, SaveNotePayload, CameraNote, CreateCameraNotePayload, CompanyQueryParams, CompanySummary, CompanyUpdatePayload, SsoProvider, SsoUpdatePayload, SsoCreatePayload, SuppressionsQueryParams, Suppression, SnapshotExtractionType, KitQueryParams, KitCreatePayload, AdminKit, KitMetricStatsEntry, CameraLogsQueryParams, CameraLog, CameraAuditLogsQueryParams, CameraAuditLog, NvrQueryParams, Nvr, SiteVisitCamerasQueryParams, OfflineCameraQueryParams, OfflineCamera, OfflineCameraNoteResponse, UserStatsResponse, UserCameraResponse, UserProjectResponse, ProjectUsers, ProjectCamera, ProjectsQueryParams, ProjectStatusStats, ProjectCreateRequestPayload, ProjectCreateResponse, ProjectUpdateRequestPayload, RouterQueryParams, Router, RouterCreatePayload, GlobalSearchQueryParams, SimCreateUpdatePayload, SimsQueryParams, Sim, SendSmsPayload, SendSmsResponse, SmsHistoryResponse, SmsQueryParams, Sms, ProgressPhotosQueryParams, ProgressPhotoItem, progressPhotosHistoryQueryParams, ProgressPhotosHistory, AdminUserUpdateRequestPayload, AdminQueryParams, Admin, ImpersonateUserResponse, AdminUserQueryParams, AdminCompareQueryParams, AdminCompare, NvrCreatePayload, WidgetsListRequestPayload, AdminWidget, AdminWidgetFull, WidgetPayload, PaginationParams, KitStorageRequestPayload, AdminCompanyUser, AdminCompanyProject, CompanyKit, CompanyCameraSummary, Automation, KitStorage, KitFootageRequestPayload, CommentsListRequestPayload, Comment, KitFootage, KitAlarmItem, RecycleBin, RecycleBinQueryParams, TransferCloudRecordingsQueryParams, SnapshotTransfer, CheckCameraPortPayload, CameraStatusLog, KitBox, KitBoxCreatePayload, KitBoxQueryParams, AdminInvite, AdminSearchItem, WithZohoParams, ZohoDeskTicketSearchResponse, JsonObject, ProjectStorageQueryParams, ProjectStorage, StorageProvider } from "@evercam/api/types";
|
|
4
4
|
import { KitMetricId } from "@evercam/api/types";
|
|
5
5
|
import { Tag } from "@evercam/api/types/tag";
|
|
6
6
|
import type { AxiosRequestConfig } from "axios";
|
|
@@ -175,6 +175,7 @@ export declare const AdminApi: {
|
|
|
175
175
|
params: Partial<KitBoxQueryParams>;
|
|
176
176
|
}): Promise<PaginatedItems<KitBox>>;
|
|
177
177
|
createBox(params: KitBoxCreatePayload): Promise<KitBox>;
|
|
178
|
+
updateBox(id: string, params: KitBoxCreatePayload): Promise<KitBox>;
|
|
178
179
|
};
|
|
179
180
|
logs: {
|
|
180
181
|
getAllCamerasStatusLogs(params: {
|
|
@@ -366,5 +367,11 @@ export declare const AdminApi: {
|
|
|
366
367
|
params: Partial<CommentsListRequestPayload>;
|
|
367
368
|
}): Promise<PaginatedItems<Comment>>;
|
|
368
369
|
};
|
|
370
|
+
snapshotTransfers: {
|
|
371
|
+
index(params: AxiosRequestConfig & {
|
|
372
|
+
params: Partial<TransferCloudRecordingsQueryParams>;
|
|
373
|
+
}): Promise<PaginatedItems<SnapshotTransfer>>;
|
|
374
|
+
cancel(id: number): Promise<SnapshotTransfer>;
|
|
375
|
+
};
|
|
369
376
|
};
|
|
370
377
|
export {};
|
package/dist/api/api/aiApi.d.ts
CHANGED
|
@@ -30,10 +30,10 @@ export declare const AiApi: {
|
|
|
30
30
|
roi: {
|
|
31
31
|
getROIs(projectExid: string, params?: Partial<RoisQueryParams>): Promise<GateReportROI[]>;
|
|
32
32
|
createROI(params: Omit<GateReportRoiRequestPayload, "id"> & {
|
|
33
|
-
createdBy
|
|
33
|
+
createdBy?: string;
|
|
34
34
|
}): Promise<import("axios").AxiosResponse<any, any>>;
|
|
35
35
|
updateROI({ updatedBy, id, ...params }: Partial<GateReportRoiRequestPayload> & {
|
|
36
|
-
updatedBy
|
|
36
|
+
updatedBy?: string;
|
|
37
37
|
}): Promise<import("axios").AxiosResponse<any, any>>;
|
|
38
38
|
deleteROI({ id, updatedBy }: {
|
|
39
39
|
id: number;
|
|
@@ -17,8 +17,7 @@ export declare const AuthzApi: {
|
|
|
17
17
|
addPermission(id: number, action: string): Promise<void>;
|
|
18
18
|
deletePermission(id: number, action: string): Promise<void>;
|
|
19
19
|
getRoleUsers(id: number): Promise<AuthzRoleUser[]>;
|
|
20
|
-
assignUsers(
|
|
21
|
-
unassignUsers(id: number, emails: Array<string>, resourceId: string): Promise<void>;
|
|
20
|
+
assignUsers(roleId: number, emails: Array<string>, resourceId?: string): Promise<void>;
|
|
22
21
|
getUserRoles(projectExid?: ProjectExid, resourceType?: RoleResourceType): Promise<AuthzUserRolesResponse>;
|
|
23
22
|
};
|
|
24
23
|
projectRoles: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { AxiosRequestConfig } from "axios";
|
|
2
|
-
import { Automation, ProgressPhotoItemResponsePayload, Project, SwrRequestConfig, UserFeatureFlag } from "@evercam/api/types";
|
|
2
|
+
import { Automation, GeoJSONPolygon, ProgressPhotoItemResponsePayload, Project, SwrRequestConfig, UserFeatureFlag } from "@evercam/api/types";
|
|
3
3
|
import type { AconexAuthCallbackParams, AconexEditedImageUploadRequestPayload, AconexUserProject, AconexDocumentSchema, AconexDocumentTypeSchema, ApiCredentials, AutodeskFolder, AutodeskProject, AutodeskTokenResponsePayload, AutodeskSnapshot, AutodeskUserHub, AvailableDaysRequestPayload, AvailableDaysResponsePayload, AvailableHoursRequestPayload, AvailableHoursResponsePayload, BatteryReading, BatteryVoltage, BimCompareExportRequestPayload, BimCreationPayload, BIMLayer, BIMLayerPostPayload, BimLayersQueryParams, BimModelRequestPayload, BimModelResponsePayload, BimPendingImage, BimSnapshotRequestPayload, BimSnapshotResponsePayload, BimUploadCameraParameters, CameraLogsResponsePayload, CamerasResponsePayload, CameraStatusLog, CameraUpdateRequestPayload, Comment, CommentCreationRequestPayload, CommentsRequestPayload, CompanyCameraSummary, CompanyProject, CompanyKit, CompanySummary, CompanyUser, Compare, CompareRequestPayload, ConnectorResponsePayload, Credentials, FetchCameraQueryParams, GoogleAuthRequestPayload, LoginRequestPayload, User, Logo, LogoutParams, Media, MediaCreateRequestPayload, MediaFilterQueryParams, MediaUpdateRequestPayload, MediaUsersResponsePayload, NearestSnapshotRequestPayload, NearestSnapshotResponsePayload, PaginatedItems, PendingBimImagesParams, ProcessPendingImagesBimParams, ProcoreEditedImageUploadRequestPayload, ProcoreObservationFormRequestPayload, ProcoreObservationTypesResponsePayload, ProcoreProjectsAlbumsPayload, ProcoreProjectRequestPayload, ProcoreUserCompaniesResponsePayload, ProcoreCompanyRequestPayload, ProcoreUserProjectsResponsePayload, ProcoreUserProjectPermissionsResponsePayload, ProcoreObservationAssignee, ProcoreObservationDistributionMember, ProcoreObservationTrades, ProcoreObservationLocation, ProcoreObservationSpecificationSection, ProcoreObservationForm, ProcoreObservationDefaultList, ProcoreObservationListItem, ProcoreCustomFieldOptionsRequestPayload, ProgressPhotosCreateUpdateRequestPayload, ProgressPhotosResponsePayload, ProgressPhotosUnSubscribeParams, ProjectBatteryReading, ProjectCreateResponse, ProjectExid, ProjectLogoResponsePayload, ProjectMembersResponsePayload, ProjectMembersRequestPayload, ProjectInviteMembersResponsePayload, RemotePasswordUpdateRequestPayload, SessionsListRequestPayload, ShareCreateResponsePayload, ShareDeletionRequestPayload, SharedUsersResponsePayload, UpdateCameraRestrictionPayload, SignupUserRequestPayload, Snapshot, SnapshotRangeRequestPayload, SnapshotRangeResponsePayload, ThumbnailData, TimelapseCreationRequestPayload, TimelapseCreationResponsePayload, TimelapseSnapshotRequestPayload, TimelapseSnapshotResponsePayload, UpdatePasswordRequestPayload, UserDeleteRequestPayload, UserSession, UserUpdateRequestPayload, VoyageControlConnectorPayload, RingDevicesResponsePayload, RingImportDevicesPayload, RingImportResponsePayload, RingMoveDevicePayload, RingMoveDeviceResponsePayload, RingLiveViewPayload, RingLiveViewResponse, RingStopLiveViewResponse, AuthOptionsResponsePayload, AuthProviderConfigPayload, ConfirmUserRequestPayload, DeleteActiveSessionRequestPayload, ProjectContactsResponsePayload, XWeatherCreatePayload, XWeatherResponse, Widget, WidgetFull, WidgetPayload, WidgetSessionSettingsPayload, WidgetsListRequestPayload, Camera, ProcoreNextObservationAvailableNumber, OAuthClient, OAuthClientWithSecret, OAuthConsentInfo, OAuthConsentPayload, OAuthConsentResponse, CreateOAuthClientPayload, UpdateOAuthClientPayload, PaginationParams, StoryblokResponse, Notification, PlaceholderThumbnailData, ProjectUsersResponsePayload, ProjectMember } from "@evercam/api/types";
|
|
4
4
|
export declare const EvercamApi: {
|
|
5
5
|
apiStatus: {
|
|
@@ -227,7 +227,7 @@ export declare const EvercamApi: {
|
|
|
227
227
|
getAllMedia(projectExid: string, params: MediaFilterQueryParams): Promise<PaginatedItems<Media>>;
|
|
228
228
|
getAllMediaUsers(projectExid: string): Promise<MediaUsersResponsePayload>;
|
|
229
229
|
cShow(projectExid: string, id: string): Promise<Media>;
|
|
230
|
-
cCreate(projectExid: string, payload: MediaCreateRequestPayload): Promise<Media>;
|
|
230
|
+
cCreate(projectExid: string, payload: FormData | MediaCreateRequestPayload, onUploadProgress?: (progressEvent: any) => void): Promise<Media>;
|
|
231
231
|
cUpdate(projectExid: string, id: string, payload: MediaUpdateRequestPayload): Promise<Media>;
|
|
232
232
|
cDelete(projectExid: string, id: string): Promise<void>;
|
|
233
233
|
};
|
|
@@ -326,4 +326,12 @@ export declare const EvercamApi: {
|
|
|
326
326
|
getClientInfo(clientId: string, scope: string): Promise<OAuthConsentInfo>;
|
|
327
327
|
submitConsent(payload: OAuthConsentPayload): Promise<OAuthConsentResponse>;
|
|
328
328
|
};
|
|
329
|
+
zoho: {
|
|
330
|
+
getDealLocation(dealId: string): Promise<{
|
|
331
|
+
geographicBounds: GeoJSONPolygon | null;
|
|
332
|
+
}>;
|
|
333
|
+
updateDealLocation(dealId: string, payload: {
|
|
334
|
+
geographicBounds: GeoJSONPolygon;
|
|
335
|
+
}): Promise<void>;
|
|
336
|
+
};
|
|
329
337
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { AxiosRequestConfig } from "axios";
|
|
2
2
|
import type { SwrRequestConfig } from "@evercam/api/types";
|
|
3
3
|
import type { _360AssetsQueryParams, _360AssetsRequestPayload, _360QueueQueryParams, _360AssetsUploadPayload, _360AssetsResponse, _360AssetsCountsResponse, _360QueueResponse, _360FloorsResponse, DroneQueueResponse, DroneUploadsResponse, IngestUploadInitResponse, BimUploadsResponse, MobileAssetsQueryParams, MobileCaptureAssetsResponse, BimUploadPayload, BimUploadsQueryParams, CalculateMeasuringOperationRequestPayload, DrawingsRequestPayload, DronesQueryParams, DroneUploadUpdateRequestPayload, FlightImagesQueryParams, Generate360MapRequestPayload, GenerateFloorPayload, InspectionToolRequestPayload, JsonObject, _360WalkV2, _360FloorV2 } from "@evercam/api/types";
|
|
4
|
-
import { IngestVersions } from "@evercam/api/types";
|
|
5
|
-
export declare const
|
|
4
|
+
import { IngestVersions, IngestTypes } from "@evercam/api/types";
|
|
5
|
+
export declare const getIngestApiUrls: (type: string) => string[];
|
|
6
6
|
export declare const IngestApi: {
|
|
7
7
|
drone: {
|
|
8
8
|
createUpload(projectId: string, params: {
|
|
@@ -30,48 +30,48 @@ export declare const IngestApi: {
|
|
|
30
30
|
calculateMeasuringOperation(projectId: string, params: CalculateMeasuringOperationRequestPayload): Promise<JsonObject>;
|
|
31
31
|
inspectionTool(projectId: string, params: InspectionToolRequestPayload): Promise<JsonObject>;
|
|
32
32
|
isInspectionEnabled(projectId: string, params?: JsonObject): Promise<JsonObject>;
|
|
33
|
-
getDroneQueueSize(
|
|
33
|
+
getDroneQueueSize(droneUrl: string): Promise<DroneQueueResponse>;
|
|
34
34
|
getFlightImages(projectId: string, params: FlightImagesQueryParams): Promise<JsonObject>;
|
|
35
35
|
checkFlightAvailableFeatures(projectId: string, params: JsonObject): Promise<JsonObject>;
|
|
36
36
|
};
|
|
37
37
|
assets360: {
|
|
38
38
|
get360Assets(params: {
|
|
39
39
|
params: Partial<_360AssetsQueryParams>;
|
|
40
|
-
}
|
|
40
|
+
}): Promise<_360AssetsResponse>;
|
|
41
41
|
get360AssetsCounts(projectId: string, params: {
|
|
42
42
|
uploadedBy: string;
|
|
43
|
-
}
|
|
43
|
+
}): Promise<_360AssetsCountsResponse>;
|
|
44
44
|
get360AssetLink(projectId: string, date: string, floor: string, assetType: string, drawingId: string, marker: string | null): Promise<string>;
|
|
45
|
-
update360(id: number, payload: _360AssetsRequestPayload
|
|
46
|
-
update360ByProjectDateName(projectId: string, date: string, floor: string, payload: _360AssetsRequestPayload
|
|
47
|
-
deleteUpload(id: number
|
|
45
|
+
update360(id: number, payload: _360AssetsRequestPayload): Promise<_360WalkV2>;
|
|
46
|
+
update360ByProjectDateName(projectId: string, date: string, floor: string, payload: _360AssetsRequestPayload): Promise<_360WalkV2>;
|
|
47
|
+
deleteUpload(id: number): Promise<void>;
|
|
48
48
|
getArchive(id: number, params: {
|
|
49
49
|
dateType: string;
|
|
50
|
-
}
|
|
51
|
-
createUpload(projectId: string, params: _360AssetsRequestPayload
|
|
52
|
-
upload(id: number, params: JsonObject, payload: _360AssetsUploadPayload
|
|
53
|
-
reprocess360(id: number
|
|
50
|
+
}): Promise<Blob>;
|
|
51
|
+
createUpload(projectId: string, params: _360AssetsRequestPayload): Promise<IngestUploadInitResponse>;
|
|
52
|
+
upload(id: number, params: JsonObject, payload: _360AssetsUploadPayload): Promise<_360WalkV2>;
|
|
53
|
+
reprocess360(id: number): Promise<void>;
|
|
54
54
|
drawingExists(payload: {
|
|
55
55
|
params: {
|
|
56
56
|
name: string;
|
|
57
57
|
project_id: string;
|
|
58
58
|
};
|
|
59
|
-
}
|
|
59
|
+
}): Promise<JsonObject>;
|
|
60
60
|
getDrawings(payload: {
|
|
61
61
|
params: DrawingsRequestPayload;
|
|
62
62
|
config?: SwrRequestConfig<_360FloorsResponse>;
|
|
63
|
-
}
|
|
64
|
-
getDrawingById(id: number, projectExid: string
|
|
65
|
-
updateDrawing(id: number, projectExid: string, payload: GenerateFloorPayload
|
|
66
|
-
deleteDrawing(id: number
|
|
67
|
-
transferWalks(sourceId: number, targetId: number, projectExid: string
|
|
68
|
-
createDrawing(projectExid: string, payload: GenerateFloorPayload, createdBy: string
|
|
63
|
+
}): Promise<_360FloorsResponse>;
|
|
64
|
+
getDrawingById(id: number, projectExid: string): Promise<_360FloorV2>;
|
|
65
|
+
updateDrawing(id: number, projectExid: string, payload: GenerateFloorPayload): Promise<_360FloorV2>;
|
|
66
|
+
deleteDrawing(id: number): Promise<void>;
|
|
67
|
+
transferWalks(sourceId: number, targetId: number, projectExid: string): Promise<void>;
|
|
68
|
+
createDrawing(projectExid: string, payload: GenerateFloorPayload, createdBy: string): Promise<_360FloorV2>;
|
|
69
69
|
fetchDrawingOverlay(id: number, params: {
|
|
70
70
|
view: boolean;
|
|
71
|
-
}, onDownloadProgress: (progress: ProgressEvent) => void
|
|
72
|
-
getFloorArchive(id: number
|
|
73
|
-
generate360map(projectId: string, params: Generate360MapRequestPayload
|
|
74
|
-
get360QueueSize(
|
|
71
|
+
}, onDownloadProgress: (progress: ProgressEvent) => void): Promise<Blob>;
|
|
72
|
+
getFloorArchive(id: number): Promise<string>;
|
|
73
|
+
generate360map(projectId: string, params: Generate360MapRequestPayload): Promise<JsonObject>;
|
|
74
|
+
get360QueueSize(ingestUrl: string, params?: _360QueueQueryParams): Promise<_360QueueResponse>;
|
|
75
75
|
};
|
|
76
76
|
bim: {
|
|
77
77
|
createUpload(projectId: string, params: {
|
|
@@ -88,17 +88,33 @@ export declare const IngestApi: {
|
|
|
88
88
|
}, payload: BimUploadPayload): Promise<void>;
|
|
89
89
|
};
|
|
90
90
|
mobileCapture: {
|
|
91
|
-
getProjectMobileAssets(params: MobileAssetsQueryParams, extraConfig?: AxiosRequestConfig
|
|
91
|
+
getProjectMobileAssets(params: MobileAssetsQueryParams, extraConfig?: AxiosRequestConfig): Promise<MobileCaptureAssetsResponse>;
|
|
92
92
|
getMobileAssetPhoto(assetId: string | number, params: {
|
|
93
93
|
projectId?: string;
|
|
94
94
|
project_id?: string;
|
|
95
95
|
isThumbnail?: boolean;
|
|
96
96
|
is_thumbnail?: boolean;
|
|
97
|
-
}
|
|
98
|
-
deleteAsset(assetId: string | number
|
|
97
|
+
}): Promise<string>;
|
|
98
|
+
deleteAsset(assetId: string | number): Promise<void>;
|
|
99
99
|
};
|
|
100
100
|
utils: {
|
|
101
101
|
loadAllAssetsInQueue(): Promise<({
|
|
102
|
+
ingestVersion: string;
|
|
103
|
+
id: number;
|
|
104
|
+
projectId: string;
|
|
105
|
+
consumed: boolean;
|
|
106
|
+
token: string;
|
|
107
|
+
flightDate: string;
|
|
108
|
+
flightGeolocation: string;
|
|
109
|
+
modelZip: string;
|
|
110
|
+
orthomosaicZip: string;
|
|
111
|
+
reportPdf: string;
|
|
112
|
+
uploadedBy: string;
|
|
113
|
+
processingStatus: import("@evercam/api/types").IngestProcessingStatus | string;
|
|
114
|
+
modelCesiumAssetId: string;
|
|
115
|
+
updatedAt: string;
|
|
116
|
+
hasTusLinks: boolean;
|
|
117
|
+
} | {
|
|
102
118
|
ingestVersion: string;
|
|
103
119
|
archive: string;
|
|
104
120
|
date: string;
|
|
@@ -125,23 +141,8 @@ export declare const IngestApi: {
|
|
|
125
141
|
uploadedBy: string;
|
|
126
142
|
videoArchive: string;
|
|
127
143
|
videos: string[];
|
|
128
|
-
} | {
|
|
129
|
-
ingestVersion: string;
|
|
130
|
-
id: number;
|
|
131
|
-
projectId: string;
|
|
132
|
-
consumed: boolean;
|
|
133
|
-
token: string;
|
|
134
|
-
flightDate: string;
|
|
135
|
-
flightGeolocation: string;
|
|
136
|
-
modelZip: string;
|
|
137
|
-
orthomosaicZip: string;
|
|
138
|
-
reportPdf: string;
|
|
139
|
-
uploadedBy: string;
|
|
140
|
-
processingStatus: import("@evercam/api/types").IngestProcessingStatus | string;
|
|
141
|
-
modelCesiumAssetId: string;
|
|
142
|
-
updatedAt: string;
|
|
143
|
-
hasTusLinks: boolean;
|
|
144
144
|
})[]>;
|
|
145
|
-
|
|
145
|
+
getIngestVersion(ingestUrl: string): IngestVersions;
|
|
146
|
+
chooseIngestApiUrl(type: IngestTypes): Promise<string>;
|
|
146
147
|
};
|
|
147
148
|
};
|
package/dist/api/types/360.d.ts
CHANGED
|
@@ -1,26 +1,35 @@
|
|
|
1
1
|
import { DateType } from "@evercam/api/types/time";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { GeoPoint, Point3D } from "@evercam/api/types/shared";
|
|
3
|
+
export type _360OverlayPosition = {
|
|
4
|
+
northEast: GeoPoint;
|
|
5
|
+
northWest: GeoPoint;
|
|
6
|
+
southEast: GeoPoint;
|
|
7
|
+
southWest: GeoPoint;
|
|
5
8
|
};
|
|
6
|
-
export type
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
export type ForgeViewport = {
|
|
10
|
+
name: string;
|
|
11
|
+
eye: number[];
|
|
12
|
+
target: number[];
|
|
13
|
+
worldUpVector?: number[];
|
|
10
14
|
};
|
|
11
|
-
export type
|
|
12
|
-
|
|
13
|
-
|
|
15
|
+
export type ForgeView = {
|
|
16
|
+
name: string;
|
|
17
|
+
viewport: ForgeViewport;
|
|
18
|
+
timestamp: string;
|
|
14
19
|
};
|
|
15
20
|
export type _360CameraRotation = {
|
|
16
21
|
azimuthAngle: number;
|
|
17
22
|
polarAngle: number;
|
|
18
23
|
};
|
|
24
|
+
export type _360Geolocation = {
|
|
25
|
+
latitude: number;
|
|
26
|
+
longitude: number;
|
|
27
|
+
};
|
|
19
28
|
export type _360Marker3D = {
|
|
20
|
-
cameraPosition:
|
|
29
|
+
cameraPosition: Point3D;
|
|
21
30
|
geolocation: _360Geolocation;
|
|
22
31
|
nextRoomId: _360MakerId;
|
|
23
|
-
position:
|
|
32
|
+
position: Point3D;
|
|
24
33
|
rotation: {
|
|
25
34
|
_order: "XYZ" | string;
|
|
26
35
|
_x: number;
|
|
@@ -35,7 +44,7 @@ export type _360Tag = {
|
|
|
35
44
|
comment: string;
|
|
36
45
|
creationDate: number;
|
|
37
46
|
currentRoom: _360MakerId;
|
|
38
|
-
position:
|
|
47
|
+
position: Point3D;
|
|
39
48
|
cameraRotation: _360CameraRotation;
|
|
40
49
|
};
|
|
41
50
|
export type _360FloorId = string | number;
|
|
@@ -45,8 +54,16 @@ export type _360Floor = {
|
|
|
45
54
|
_3DMarkers: _360Marker3D[];
|
|
46
55
|
cameraRotation: _360CameraRotation;
|
|
47
56
|
fbxModel: string;
|
|
57
|
+
fbxModelHQ?: string;
|
|
58
|
+
pointCloudModelHQ?: string;
|
|
48
59
|
initialMarker: _360MakerId;
|
|
49
60
|
modelViewerFeatureFlag: boolean;
|
|
61
|
+
imagesOnlyFeatureFlag?: boolean;
|
|
62
|
+
forgeBIMFeatureFlag?: boolean;
|
|
63
|
+
isForgeGravityEnabled?: boolean;
|
|
64
|
+
initialForgeView?: ForgeView | null;
|
|
65
|
+
enhancedLightFeatureFlag?: boolean;
|
|
66
|
+
calibrationDetails?: Record<string, unknown>;
|
|
50
67
|
route: {
|
|
51
68
|
cameraHeadingOffset: string;
|
|
52
69
|
overlayID: number;
|
|
@@ -54,7 +71,7 @@ export type _360Floor = {
|
|
|
54
71
|
};
|
|
55
72
|
sceneScale: number;
|
|
56
73
|
steps: number;
|
|
57
|
-
tags
|
|
74
|
+
tags?: Record<string, _360Tag>;
|
|
58
75
|
};
|
|
59
76
|
export type _360WalkV2 = {
|
|
60
77
|
archive: string;
|
|
@@ -92,24 +109,7 @@ export type _360FloorV2 = {
|
|
|
92
109
|
hasOverlay: boolean;
|
|
93
110
|
isCalibrated: boolean;
|
|
94
111
|
createdBy: string | null;
|
|
95
|
-
overlayPosition:
|
|
96
|
-
northEast: {
|
|
97
|
-
lat: number;
|
|
98
|
-
lng: number;
|
|
99
|
-
};
|
|
100
|
-
northWest: {
|
|
101
|
-
lat: number;
|
|
102
|
-
lng: number;
|
|
103
|
-
};
|
|
104
|
-
southEast: {
|
|
105
|
-
lat: number;
|
|
106
|
-
lng: number;
|
|
107
|
-
};
|
|
108
|
-
southWest: {
|
|
109
|
-
lat: number;
|
|
110
|
-
lng: number;
|
|
111
|
-
};
|
|
112
|
-
};
|
|
112
|
+
overlayPosition: _360OverlayPosition;
|
|
113
113
|
insertedAt: string;
|
|
114
114
|
updatedAt: string;
|
|
115
115
|
};
|
|
@@ -123,11 +123,33 @@ export type _360Scene = {
|
|
|
123
123
|
polarAngle: number;
|
|
124
124
|
azimuthAngle: number;
|
|
125
125
|
};
|
|
126
|
+
export declare enum _360PinType {
|
|
127
|
+
Default = "Default"
|
|
128
|
+
}
|
|
129
|
+
export type _360Pin = {
|
|
130
|
+
position: Point3D;
|
|
131
|
+
pinType: _360PinType;
|
|
132
|
+
pinId?: string;
|
|
133
|
+
cameraExid?: string;
|
|
134
|
+
name: string;
|
|
135
|
+
currentRoom?: _360MakerId;
|
|
136
|
+
cameraRotation?: _360CameraRotation;
|
|
137
|
+
};
|
|
126
138
|
export type _360SceneRoute = {
|
|
127
139
|
cameraHeadingOffset?: number;
|
|
128
140
|
overlayID?: number;
|
|
129
141
|
track?: string;
|
|
130
142
|
};
|
|
143
|
+
export type _360ProjectListItem = {
|
|
144
|
+
integrationType: string;
|
|
145
|
+
projectId: string;
|
|
146
|
+
projectName: string;
|
|
147
|
+
providerID: string;
|
|
148
|
+
providerPrefix: string;
|
|
149
|
+
providerSuffix: string;
|
|
150
|
+
timeline: string;
|
|
151
|
+
uniqueId: string;
|
|
152
|
+
};
|
|
131
153
|
export type _360FullProject = {
|
|
132
154
|
dates: _360SceneWithFloors[];
|
|
133
155
|
integrationType: string;
|
|
@@ -231,24 +253,7 @@ export type GenerateFloorPayload = {
|
|
|
231
253
|
changedBy: string;
|
|
232
254
|
name?: string;
|
|
233
255
|
mapStyle?: string;
|
|
234
|
-
overlayPositionCorners:
|
|
235
|
-
northEast: {
|
|
236
|
-
lat: number;
|
|
237
|
-
lng: number;
|
|
238
|
-
};
|
|
239
|
-
northWest: {
|
|
240
|
-
lat: number;
|
|
241
|
-
lng: number;
|
|
242
|
-
};
|
|
243
|
-
southWest: {
|
|
244
|
-
lat: number;
|
|
245
|
-
lng: number;
|
|
246
|
-
};
|
|
247
|
-
southEast: {
|
|
248
|
-
lat: number;
|
|
249
|
-
lng: number;
|
|
250
|
-
};
|
|
251
|
-
};
|
|
256
|
+
overlayPositionCorners: _360OverlayPosition;
|
|
252
257
|
};
|
|
253
258
|
export type _360QueueQueryParams = {
|
|
254
259
|
projectId?: string;
|