cmd-control-client-lib 3.0.179 → 3.0.182

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.
@@ -146,10 +146,10 @@ export declare type channelIdSelector = {
146
146
  selectRegularCustomer?: EnumBooleanStringified;
147
147
  selectAdvertised?: EnumBooleanStringified;
148
148
  selectPinned?: EnumBooleanStringified;
149
- selectVip?: EnumBooleanStringified;
150
149
  selectGroupId?: ComaSeparatedValues<string> | string;
151
150
  selectBadges?: ComaSeparatedValues<EnumBadge> | string;
152
151
  /** deprecated */
152
+ selectVip?: EnumBooleanStringified;
153
153
  groupId?: ComaSeparatedValues<string> | string;
154
154
  };
155
155
  export declare type channelIdFilter = {
@@ -165,5 +165,6 @@ export declare enum ACTION {
165
165
  CMDC_STARTWEBSIP = "CMDC_STARTWEBSIP",
166
166
  CMDC_STOPWEBSIP = "CMDC_STOPWEBSIP",
167
167
  CMDP_WSA_ADDUPDATEUSER = "CMDP_WSA_ADDUPDATEUSER",
168
- CMDP_WSA_HEARTBEAT = "CMDP_WSA_HEARTBEAT"
168
+ CMDP_WSA_HEARTBEAT = "CMDP_WSA_HEARTBEAT",
169
+ CMDP_DEEPL = "CMDP_DEEPL"
169
170
  }
@@ -255,3 +255,24 @@ export declare class CMDP_SMSGESTIMATE_RESPONSE extends CMDP_SMSGESTIMATE implem
255
255
  hasPurchasedChannels?: string;
256
256
  };
257
257
  }
258
+ export declare class CMDP_DEEPL implements ICOMMAND {
259
+ action: ACTION;
260
+ params: baseParamsType & {
261
+ text: string;
262
+ sourceLanguage?: string;
263
+ targetLanguage: string;
264
+ };
265
+ }
266
+ /**
267
+ * Response for CMDP_MSGDELETE
268
+ */
269
+ export declare class CMDP_DEEPL_RESPONSE extends CMDP_DEEPL implements IRESPONSE {
270
+ result: RESULT;
271
+ /** unused */
272
+ commands: ICOMMAND[];
273
+ /** unused */
274
+ values: IKeyMaybeValue & {
275
+ text: string;
276
+ detectedLanguage: string;
277
+ };
278
+ }
@@ -85,4 +85,6 @@ export interface SessionState extends IKeyMaybeValue {
85
85
  userLinks?: JSONString<IProductConfig["links"]>;
86
86
  chatMotto?: string;
87
87
  showInfoWizards?: ComaSeparatedValues<InfoWizard> | string;
88
+ /** last MomentumChat usage Date*/
89
+ lastMomentumUsage?: string;
88
90
  }
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.179",
4
+ "version": "3.0.182",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },