cmd-control-client-lib 3.0.57 → 3.0.61

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.
@@ -122,5 +122,6 @@ export declare enum ACTION {
122
122
  CMDP_SGETTICKETS = "CMDP_SGETTICKETS",
123
123
  CMDP_SCHECKUPLOADEDMEDIA = "CMDP_SCHECKUPLOADEDMEDIA",
124
124
  CMDP_SGETUPLOADEDMEDIA = "CMDP_SGETUPLOADEDMEDIA",
125
- CMDC_CMEDIA = "CMDC_CMEDIA"
125
+ CMDC_CMEDIA = "CMDC_CMEDIA",
126
+ CMDP_SCLOSETICKET = "CMDP_SCLOSETICKET"
126
127
  }
@@ -53,4 +53,19 @@ export declare class CMDP_SGETTICKETS_PRESPONSE extends CMDP_SGETTICKETS impleme
53
53
  commands: CMDC_CMEDIA[];
54
54
  values: IKeyMaybeValue;
55
55
  }
56
+ /**
57
+ * Frontend command for close of ticket.
58
+ */
59
+ export declare class CMDP_SCLOSETICKET implements ICOMMAND {
60
+ action: ACTION;
61
+ params: baseParamsType & channelIdType;
62
+ }
63
+ /**
64
+ * Response command for CMDP_SCLOSETICKED.
65
+ */
66
+ export declare class CMDP_SCLOSETICKET_PRESPONSE extends CMDP_SCLOSETICKET implements IRESPONSE {
67
+ result: RESULT;
68
+ commands: ICOMMAND[];
69
+ values: IKeyMaybeValue;
70
+ }
56
71
  export {};
@@ -73,6 +73,8 @@ export interface SessionState extends IKeyMaybeValue {
73
73
  livePreviewState?: EnumBooleanStringified;
74
74
  /** */
75
75
  babeStation24State?: EnumBooleanStringified;
76
+ canOpenLobby?: EnumBooleanStringified;
77
+ canSellSingleC2CTicket?: EnumBooleanStringified;
76
78
  userLinks?: JSONString<IProductConfig["links"]>;
77
79
  chatMotto?: string;
78
80
  showInfoWizards?: ComaSeparatedValues<InfoWizard>;
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.57",
4
+ "version": "3.0.61",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },