cmd-control-client-lib 3.0.228 → 3.0.231

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.
@@ -1,4 +1,6 @@
1
1
  import { ComaSeparatedValues } from "./sessionstate";
2
+ import { ICOMMAND } from "./command/icommand";
3
+ import { ACTION } from "./command/action";
2
4
  declare enum EnumFeedbackKey {
3
5
  HARASSMENT_THREATS = "harassment-threats",
4
6
  UNAUTHORIZED_CONTENT = "unauthorized-content",
@@ -18,4 +20,12 @@ export declare type Feedback = {
18
20
  reasons?: ComaSeparatedValues<EnumFeedbackKey> | string;
19
21
  details?: string;
20
22
  };
23
+ export declare class CMDC_FEEDBACK implements ICOMMAND {
24
+ action: ACTION;
25
+ params: {
26
+ sessionID?: string;
27
+ clientID?: string;
28
+ uploadFeedbackUrl?: string;
29
+ };
30
+ }
21
31
  export {};
@@ -75,6 +75,7 @@ export interface SessionState extends IKeyMaybeValue {
75
75
  /** the live preview*/
76
76
  livePreviewState?: EnumBooleanStringified;
77
77
  /** only exclusive stream available*/
78
+ showBabeStation24Tab?: EnumBooleanStringified;
78
79
  babeStation24State?: EnumBooleanStringified;
79
80
  showMobileVideoCallTab?: EnumBooleanStringified;
80
81
  mobileVideoCallState?: EnumBooleanStringified;
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.228",
4
+ "version": "3.0.231",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },