cmd-control-client-lib 3.0.234 → 3.0.235

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.
@@ -112,7 +112,6 @@ export declare enum ACTION {
112
112
  CMDP_GETSETTINGS = "CMDP_GETSETTINGS",
113
113
  CMDC_MEDIAPURCHASED = "CMDC_MEDIAPURCHASED",
114
114
  CMDP_SGETMEDIAINFO = "CMDP_SGETMEDIAINFO",
115
- CMDP_SFORWARDMEDIA = "CMDP_SFORWARDMEDIA",
116
115
  CMDP_SIGNUP = "CMDP_SIGNUP",
117
116
  CMDP_RESETPASSWORD = "CMDP_RESETPASSWORD",
118
117
  CMDP_SQUERYSTARTSINGLEC2C = "CMDP_SQUERYSTARTSINGLEC2C",
@@ -2,8 +2,28 @@ import { ChatState } from "./chatstate";
2
2
  import { SessionState } from "./sessionstate";
3
3
  import { ACTION } from "./command/action";
4
4
  import { ICOMMAND } from "./command/icommand";
5
+ import { JSONString } from "../@types";
6
+ export declare enum EnumStreamOrientation {
7
+ HORIZONTAL = "horizontal",
8
+ VERTICAL = "vertical"
9
+ }
10
+ export declare enum EnumStreamingPlatform {
11
+ ANDROID = "android",
12
+ IOS = "ios"
13
+ }
14
+ export declare enum EnumCameraType {
15
+ FRONT = "front",
16
+ BACK = "back"
17
+ }
18
+ export declare type ProxyStreamInfo2Type = {
19
+ orientation: EnumStreamOrientation;
20
+ angle?: number;
21
+ platform?: EnumStreamingPlatform;
22
+ cameraType?: EnumCameraType;
23
+ };
5
24
  export declare type proxyStreamInfo = {
6
- proxyStreamInfo?: string;
25
+ proxyStreamInfo?: "horizontal" | "vertical" | string;
26
+ proxyStreamInfo2?: JSONString<ProxyStreamInfo2Type>;
7
27
  };
8
28
  export declare type proxyStateInfo = {
9
29
  proxyStateInfo?: string;
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.234",
4
+ "version": "3.0.235",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },