camstreamerlib 4.0.0-beta.11 → 4.0.0-beta.13
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/CamOverlayAPI.d.ts +1 -1
- package/cjs/CamScripterAPI.d.ts +1 -1
- package/cjs/CamScripterAPI.js +3 -3
- package/cjs/CamStreamerAPI.d.ts +1 -1
- package/cjs/index.d.ts +2 -0
- package/cjs/index.js +5 -1
- package/esm/CamOverlayAPI.d.ts +1 -1
- package/esm/CamScripterAPI.d.ts +1 -1
- package/esm/CamScripterAPI.js +1 -1
- package/esm/CamStreamerAPI.d.ts +1 -1
- package/esm/index.d.ts +2 -0
- package/esm/index.js +2 -0
- package/package.json +1 -1
package/cjs/CamOverlayAPI.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { IClient, TBlobResponse, TResponse } from './internal/types';
|
|
3
3
|
import { ImageType, TCoordinates, TField, TFile, TFileType, TStorage, TWidget } from './types/CamOverlayAPI';
|
|
4
4
|
export declare const BASE_URL = "/local/camoverlay/api";
|
|
5
|
-
export declare class CamOverlayAPI<Client extends IClient<TResponse>> {
|
|
5
|
+
export declare class CamOverlayAPI<Client extends IClient<TResponse> = IClient<TResponse>> {
|
|
6
6
|
private client;
|
|
7
7
|
constructor(client: Client);
|
|
8
8
|
static getProxyUrlPath: () => string;
|
package/cjs/CamScripterAPI.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IClient, TResponse } from './internal/types';
|
|
2
2
|
import { TNodeState, TPackageInfoList, TStorage, TStorageType } from './types/CamScripterAPI';
|
|
3
3
|
import { TNetworkCamera } from './types/common';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class CamScripterAPI<Client extends IClient<TResponse> = IClient<TResponse>> {
|
|
5
5
|
client: Client;
|
|
6
6
|
constructor(client: Client);
|
|
7
7
|
checkCameraTime(): Promise<boolean>;
|
package/cjs/CamScripterAPI.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.CamScripterAPI = void 0;
|
|
4
4
|
const utils_1 = require("./internal/utils");
|
|
5
5
|
const CamScripterAPI_1 = require("./types/CamScripterAPI");
|
|
6
6
|
const common_1 = require("./types/common");
|
|
7
|
-
class
|
|
7
|
+
class CamScripterAPI {
|
|
8
8
|
client;
|
|
9
9
|
constructor(client) {
|
|
10
10
|
this.client = client;
|
|
@@ -61,4 +61,4 @@ class CamOverlayAPI {
|
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
|
-
exports.
|
|
64
|
+
exports.CamScripterAPI = CamScripterAPI;
|
package/cjs/CamStreamerAPI.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IClient, TResponse } from './internal/types';
|
|
2
2
|
import { TStreamAttributes, TStreamList } from './types/CamStreamerAPI';
|
|
3
|
-
export declare class CamStreamerAPI<Client extends IClient<TResponse>> {
|
|
3
|
+
export declare class CamStreamerAPI<Client extends IClient<TResponse> = IClient<TResponse>> {
|
|
4
4
|
client: Client;
|
|
5
5
|
constructor(client: Client);
|
|
6
6
|
getStreamList(): Promise<TStreamList>;
|
package/cjs/index.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ export { CamSwitcherAPI } from './CamSwitcherAPI';
|
|
|
7
7
|
export { CamSwitcherEvents } from './CamSwitcherEvents';
|
|
8
8
|
export { VapixAPI } from './VapixAPI';
|
|
9
9
|
export { CamOverlayAPI } from './CamOverlayAPI';
|
|
10
|
+
export { CamScripterAPI } from './CamScripterAPI';
|
|
11
|
+
export { CamStreamerAPI } from './CamStreamerAPI';
|
|
10
12
|
export * from './types/CamSwitcherEvents';
|
|
11
13
|
export * from './types/CamSwitcherAPI';
|
|
12
14
|
export * from './types/VapixAPI';
|
package/cjs/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.CamOverlayAPI = exports.VapixAPI = exports.CamSwitcherEvents = exports.CamSwitcherAPI = void 0;
|
|
17
|
+
exports.CamStreamerAPI = exports.CamScripterAPI = exports.CamOverlayAPI = exports.VapixAPI = exports.CamSwitcherEvents = exports.CamSwitcherAPI = void 0;
|
|
18
18
|
__exportStar(require("./internal/types"), exports);
|
|
19
19
|
__exportStar(require("./internal/constants"), exports);
|
|
20
20
|
__exportStar(require("./internal/utils"), exports);
|
|
@@ -28,6 +28,10 @@ var VapixAPI_1 = require("./VapixAPI");
|
|
|
28
28
|
Object.defineProperty(exports, "VapixAPI", { enumerable: true, get: function () { return VapixAPI_1.VapixAPI; } });
|
|
29
29
|
var CamOverlayAPI_1 = require("./CamOverlayAPI");
|
|
30
30
|
Object.defineProperty(exports, "CamOverlayAPI", { enumerable: true, get: function () { return CamOverlayAPI_1.CamOverlayAPI; } });
|
|
31
|
+
var CamScripterAPI_1 = require("./CamScripterAPI");
|
|
32
|
+
Object.defineProperty(exports, "CamScripterAPI", { enumerable: true, get: function () { return CamScripterAPI_1.CamScripterAPI; } });
|
|
33
|
+
var CamStreamerAPI_1 = require("./CamStreamerAPI");
|
|
34
|
+
Object.defineProperty(exports, "CamStreamerAPI", { enumerable: true, get: function () { return CamStreamerAPI_1.CamStreamerAPI; } });
|
|
31
35
|
__exportStar(require("./types/CamSwitcherEvents"), exports);
|
|
32
36
|
__exportStar(require("./types/CamSwitcherAPI"), exports);
|
|
33
37
|
__exportStar(require("./types/VapixAPI"), exports);
|
package/esm/CamOverlayAPI.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { IClient, TBlobResponse, TResponse } from './internal/types';
|
|
3
3
|
import { ImageType, TCoordinates, TField, TFile, TFileType, TStorage, TWidget } from './types/CamOverlayAPI';
|
|
4
4
|
export declare const BASE_URL = "/local/camoverlay/api";
|
|
5
|
-
export declare class CamOverlayAPI<Client extends IClient<TResponse>> {
|
|
5
|
+
export declare class CamOverlayAPI<Client extends IClient<TResponse> = IClient<TResponse>> {
|
|
6
6
|
private client;
|
|
7
7
|
constructor(client: Client);
|
|
8
8
|
static getProxyUrlPath: () => string;
|
package/esm/CamScripterAPI.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IClient, TResponse } from './internal/types';
|
|
2
2
|
import { TNodeState, TPackageInfoList, TStorage, TStorageType } from './types/CamScripterAPI';
|
|
3
3
|
import { TNetworkCamera } from './types/common';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class CamScripterAPI<Client extends IClient<TResponse> = IClient<TResponse>> {
|
|
5
5
|
client: Client;
|
|
6
6
|
constructor(client: Client);
|
|
7
7
|
checkCameraTime(): Promise<boolean>;
|
package/esm/CamScripterAPI.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { responseStringify } from './internal/utils';
|
|
2
2
|
import { packageInfoListSchema, storageSchema, } from './types/CamScripterAPI';
|
|
3
3
|
import { networkCameraListSchema } from './types/common';
|
|
4
|
-
export class
|
|
4
|
+
export class CamScripterAPI {
|
|
5
5
|
client;
|
|
6
6
|
constructor(client) {
|
|
7
7
|
this.client = client;
|
package/esm/CamStreamerAPI.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IClient, TResponse } from './internal/types';
|
|
2
2
|
import { TStreamAttributes, TStreamList } from './types/CamStreamerAPI';
|
|
3
|
-
export declare class CamStreamerAPI<Client extends IClient<TResponse>> {
|
|
3
|
+
export declare class CamStreamerAPI<Client extends IClient<TResponse> = IClient<TResponse>> {
|
|
4
4
|
client: Client;
|
|
5
5
|
constructor(client: Client);
|
|
6
6
|
getStreamList(): Promise<TStreamList>;
|
package/esm/index.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ export { CamSwitcherAPI } from './CamSwitcherAPI';
|
|
|
7
7
|
export { CamSwitcherEvents } from './CamSwitcherEvents';
|
|
8
8
|
export { VapixAPI } from './VapixAPI';
|
|
9
9
|
export { CamOverlayAPI } from './CamOverlayAPI';
|
|
10
|
+
export { CamScripterAPI } from './CamScripterAPI';
|
|
11
|
+
export { CamStreamerAPI } from './CamStreamerAPI';
|
|
10
12
|
export * from './types/CamSwitcherEvents';
|
|
11
13
|
export * from './types/CamSwitcherAPI';
|
|
12
14
|
export * from './types/VapixAPI';
|
package/esm/index.js
CHANGED
|
@@ -7,6 +7,8 @@ export { CamSwitcherAPI } from './CamSwitcherAPI';
|
|
|
7
7
|
export { CamSwitcherEvents } from './CamSwitcherEvents';
|
|
8
8
|
export { VapixAPI } from './VapixAPI';
|
|
9
9
|
export { CamOverlayAPI } from './CamOverlayAPI';
|
|
10
|
+
export { CamScripterAPI } from './CamScripterAPI';
|
|
11
|
+
export { CamStreamerAPI } from './CamStreamerAPI';
|
|
10
12
|
export * from './types/CamSwitcherEvents';
|
|
11
13
|
export * from './types/CamSwitcherAPI';
|
|
12
14
|
export * from './types/VapixAPI';
|