camstreamerlib 4.0.0-beta.11 → 4.0.0-beta.12

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.
@@ -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;
@@ -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 CamOverlayAPI<Client extends IClient<TResponse>> {
4
+ export declare class CamOverlayAPI<Client extends IClient<TResponse> = IClient<TResponse>> {
5
5
  client: Client;
6
6
  constructor(client: Client);
7
7
  checkCameraTime(): Promise<boolean>;
@@ -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>;
@@ -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;
@@ -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 CamOverlayAPI<Client extends IClient<TResponse>> {
4
+ export declare class CamOverlayAPI<Client extends IClient<TResponse> = IClient<TResponse>> {
5
5
  client: Client;
6
6
  constructor(client: Client);
7
7
  checkCameraTime(): Promise<boolean>;
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "camstreamerlib",
3
- "version": "4.0.0-beta.11",
3
+ "version": "4.0.0-beta.12",
4
4
  "description": "Helper library for CamStreamer ACAP applications.",
5
5
  "prettier": "@camstreamer/prettier-config",
6
6
  "dependencies": {