cmd-control-client-lib 3.0.203 → 3.0.204

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.
@@ -8,18 +8,21 @@ export declare enum EnumStreamQuality {
8
8
  BAD = "BAD"
9
9
  }
10
10
  /**
11
- * Update incomming stream state.
12
- * Server inform you about the state of incloming video audio stream.
11
+ * Update incoming stream state.
12
+ * Server inform you about the state of incoming video audio stream.
13
13
  */
14
14
  export declare class CMDC_STREAMSTATE implements ICOMMAND {
15
15
  action: ACTION;
16
16
  params: {
17
- bandwith?: string;
17
+ startTime?: string;
18
+ bandWith?: string;
18
19
  quality?: EnumStreamQuality;
19
20
  videoWidth?: string;
20
- videoHeigth?: string;
21
+ videoHeight?: string;
21
22
  videoFps?: string;
22
23
  hasAudio?: EnumBooleanStringifiedExtended;
23
24
  audioMuted?: EnumBooleanStringifiedExtended;
25
+ bandwith?: string;
26
+ videoHeigth?: string;
24
27
  };
25
28
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cmd-control-client-lib",
3
3
  "description": "Cmd-Client-Library",
4
- "version": "3.0.203",
4
+ "version": "3.0.204",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },