@evercam/api 1.0.0-0452596d6 → 1.0.0-04f2bddeb
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 +3 -0
- package/dist/api/api/adminApi.d.ts +2 -3
- package/dist/api/api/evercamApi.d.ts +0 -3
- package/dist/api/types/camera.d.ts +4 -0
- package/dist/api/types/company.d.ts +1 -1
- package/dist/api/types/project.d.ts +1 -0
- package/dist/index.js +251 -245
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +2 -2
|
@@ -13,4 +13,7 @@ export declare const _3dFirebaseApi: {
|
|
|
13
13
|
saveSteps(projectID: string, dateID: string, floorID: string, stepsValue: number): Promise<any>;
|
|
14
14
|
updateGPXFile(projectExid: ProjectExid, dateId: string, floorIndex: string, gpxContent: any): Promise<any>;
|
|
15
15
|
};
|
|
16
|
+
forge: {
|
|
17
|
+
getProjectInfo(projectExid: ProjectExid): Promise<any>;
|
|
18
|
+
};
|
|
16
19
|
};
|
|
@@ -62,11 +62,10 @@ export declare const AdminApi: {
|
|
|
62
62
|
message: string;
|
|
63
63
|
}>;
|
|
64
64
|
update(cameraId: string, params: CameraUpdateRequestPayload): Promise<CamerasResponsePayload>;
|
|
65
|
+
transferOwnership(cameraId: string, newOwnerId: number): Promise<void>;
|
|
65
66
|
};
|
|
66
67
|
companies: {
|
|
67
|
-
show(id: string, params:
|
|
68
|
-
with_zoho?: boolean;
|
|
69
|
-
}): Promise<Company>;
|
|
68
|
+
show(id: string, params: Object): Promise<Company>;
|
|
70
69
|
getCompanyUsers(id: string, params: {
|
|
71
70
|
params: {
|
|
72
71
|
page: number;
|
|
@@ -233,9 +233,6 @@ export declare const EvercamApi: {
|
|
|
233
233
|
cCreate(cameraId: string, payload: ShareCreateRequestPayload): Promise<ShareCreateResponsePayload>;
|
|
234
234
|
shareProjectCameras(projectExid: ProjectExid, payload: ShareProjectCamerasRequestPayload): Promise<import("axios").AxiosResponse<any, any>>;
|
|
235
235
|
getShareRequestByKey(key: string): Promise<Pick<ShareCreateResponsePayload, "shareRequests">>;
|
|
236
|
-
transferOwnership(cameraId: string, payload: {
|
|
237
|
-
userId: number;
|
|
238
|
-
}): Promise<void>;
|
|
239
236
|
resendShareRequest(cameraId: string, data: ResendShareRequestPayload): Promise<void>;
|
|
240
237
|
getProjectShares(exid: string): Promise<ProjectShareResponse>;
|
|
241
238
|
updateUserRestriction(projectExid: ProjectExid, payload: UpdateUserRestrictionPayload): Promise<import("axios").AxiosResponse<any, any>>;
|