camstreamerlib 4.0.0-beta.28 → 4.0.0-beta.29
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/cjs/PlaneTrackerAPI.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export declare class PlaneTrackerAPI<Client extends IClient<TResponse> = IClient
|
|
|
35
35
|
exportAppSettings: (dataType: TExportDataType) => Promise<TBlobResponse<Client>>;
|
|
36
36
|
importAppSettings: (dataType: TImportDataType, formData: FormData) => Promise<TResponse>;
|
|
37
37
|
resetPtzCalibration: () => Promise<TResponse>;
|
|
38
|
+
resetFocusCalibration: () => Promise<TResponse>;
|
|
38
39
|
checkGenetecConnection: (params: TParameters) => Promise<TResponse>;
|
|
39
40
|
getGenetecCameraList: (params: TParameters) => Promise<any>;
|
|
40
41
|
serverRunCheck: () => Promise<TResponse>;
|
package/cjs/PlaneTrackerAPI.js
CHANGED
|
@@ -85,6 +85,9 @@ class PlaneTrackerAPI {
|
|
|
85
85
|
resetPtzCalibration = async () => {
|
|
86
86
|
return await this.client.get(`${exports.BASE_URL}/package/resetPtzCalibration.cgi?${this._apiUserQuery}`);
|
|
87
87
|
};
|
|
88
|
+
resetFocusCalibration = async () => {
|
|
89
|
+
return await this.client.get(`${exports.BASE_URL}/package/resetFocusCalibration.cgi?${this._apiUserQuery}`);
|
|
90
|
+
};
|
|
88
91
|
checkGenetecConnection = async (params) => {
|
|
89
92
|
return await this._postUrlEncoded(`${exports.BASE_URL}/package/checkGenetecConnection.cgi`, params);
|
|
90
93
|
};
|
package/esm/PlaneTrackerAPI.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export declare class PlaneTrackerAPI<Client extends IClient<TResponse> = IClient
|
|
|
35
35
|
exportAppSettings: (dataType: TExportDataType) => Promise<TBlobResponse<Client>>;
|
|
36
36
|
importAppSettings: (dataType: TImportDataType, formData: FormData) => Promise<TResponse>;
|
|
37
37
|
resetPtzCalibration: () => Promise<TResponse>;
|
|
38
|
+
resetFocusCalibration: () => Promise<TResponse>;
|
|
38
39
|
checkGenetecConnection: (params: TParameters) => Promise<TResponse>;
|
|
39
40
|
getGenetecCameraList: (params: TParameters) => Promise<any>;
|
|
40
41
|
serverRunCheck: () => Promise<TResponse>;
|
package/esm/PlaneTrackerAPI.js
CHANGED
|
@@ -82,6 +82,9 @@ export class PlaneTrackerAPI {
|
|
|
82
82
|
resetPtzCalibration = async () => {
|
|
83
83
|
return await this.client.get(`${BASE_URL}/package/resetPtzCalibration.cgi?${this._apiUserQuery}`);
|
|
84
84
|
};
|
|
85
|
+
resetFocusCalibration = async () => {
|
|
86
|
+
return await this.client.get(`${BASE_URL}/package/resetFocusCalibration.cgi?${this._apiUserQuery}`);
|
|
87
|
+
};
|
|
85
88
|
checkGenetecConnection = async (params) => {
|
|
86
89
|
return await this._postUrlEncoded(`${BASE_URL}/package/checkGenetecConnection.cgi`, params);
|
|
87
90
|
};
|