@evercam/api 1.0.0-68a5f1f7b → 1.0.0-6ccc7ae52
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/adminApi.d.ts +0 -3
- package/dist/index.js +0 -3
- 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 +1 -1
package/dist/api/adminApi.d.ts
CHANGED
|
@@ -35,9 +35,6 @@ export declare const AdminApi: {
|
|
|
35
35
|
cameras: [AdminCamera];
|
|
36
36
|
}>;
|
|
37
37
|
deleteCamera(exid: string, payload: CameraDeletePayload): Promise<void>;
|
|
38
|
-
restoreCamera(exid: string): Promise<{
|
|
39
|
-
message: string;
|
|
40
|
-
}>;
|
|
41
38
|
testSnapshot(payload: SnapshotTestPayload): Promise<SnapshotTestResponse>;
|
|
42
39
|
getDuplicateCameras(params: {
|
|
43
40
|
params: {
|
package/dist/index.js
CHANGED
|
@@ -241,9 +241,6 @@ const rs = {
|
|
|
241
241
|
deleteCamera(e, r) {
|
|
242
242
|
return a.post(`/admin/cameras/${e}/delete`, r);
|
|
243
243
|
},
|
|
244
|
-
restoreCamera(e) {
|
|
245
|
-
return a.put(`/admin/cameras/${e}/restore`);
|
|
246
|
-
},
|
|
247
244
|
testSnapshot(e) {
|
|
248
245
|
return a.post("/admin/cameras/test-snapshot", e);
|
|
249
246
|
},
|