cmd-control-client-lib 3.0.355 → 3.0.357

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.
@@ -335,6 +335,20 @@ export declare type channelSeenParamsType = channelIdType & {
335
335
  /** last seen messageId, by default all messages marked as seen */
336
336
  messageId?: string;
337
337
  };
338
+ export declare class CMDP_SGETCHANNELMESSAGE implements ICOMMAND {
339
+ action: ACTION;
340
+ params: baseParamsType & {
341
+ channelId: string;
342
+ messageId: string;
343
+ };
344
+ }
345
+ export declare class CMDP_SGETCHANNELMESSAGE_RESPONSE extends CMDP_SGETCHANNELMESSAGE implements IRESPONSE {
346
+ result: RESULT;
347
+ /** found message */
348
+ commands: CMDC_CMSG[];
349
+ /** unused */
350
+ values: IKeyMaybeValue;
351
+ }
338
352
  /**
339
353
  * Mark messages as seen
340
354
  */
@@ -210,5 +210,6 @@ export declare enum ACTION {
210
210
  CMDC_TPLCATEGORY = "CMDC_TPLCATEGORY",
211
211
  CMDP_SGETTPLCATEGORIES = "CMDP_SGETTPLCATEGORIES",
212
212
  CMDP_SUPSERTTPLCATEGORY = "CMDP_SUPSERTTPLCATEGORY",
213
- CMDP_SDELETETPLCATEGORY = "CMDP_SDELETETPLCATEGORY"
213
+ CMDP_SDELETETPLCATEGORY = "CMDP_SDELETETPLCATEGORY",
214
+ CMDP_SGETCHANNELMESSAGE = "CMDP_SGETCHANNELMESSAGE"
214
215
  }
@@ -62,7 +62,7 @@ export declare class CMDP_SMEDIAOFFERCREATE_RESPONSE extends CMDP_SMEDIAOFFERCRE
62
62
  values: IKeyMaybeValue;
63
63
  }
64
64
  /**
65
- * B2B command for inform partnter about media purchase. Will be sent to partners B2B backend.
65
+ * B2B command for inform partner about media purchase. Will be sent to partners B2B backend.
66
66
  */
67
67
  export declare class CMDP_SINFORMMEDIAPURCHASED implements ICOMMAND {
68
68
  action: ACTION;
@@ -71,8 +71,10 @@ export declare class CMDP_SINFORMMEDIAPURCHASED implements ICOMMAND {
71
71
  MessageId &
72
72
  /** MediaPrice is added to proxy call from CmdControl to B2B backend */
73
73
  MediaPrice &
74
- /** MediaFile is added to proxy call from Cmdontrol to B2B backend */
75
- MediaFile;
74
+ /** MediaFile is added to proxy call from CmdControl to B2B backend */
75
+ MediaFile & {
76
+ billId: string;
77
+ };
76
78
  }
77
79
  /**
78
80
  * Response command for CMDP_SMEDIAPURCHASE.
@@ -41,7 +41,8 @@ export declare enum InfoWizard {
41
41
  CONTENTSELLMULTI = "CONTENT_SELL_MULTI",
42
42
  TICKETSHOW = "TICKET_SHOW",
43
43
  CUSTOMTAGS = "CUSTOM_TAGS",
44
- TOY_UPDATE = "TOY_UPDATE"
44
+ TOY_UPDATE = "TOY_UPDATE",
45
+ MSG_TEMPLATES = "MSG_TEMPLATES"
45
46
  }
46
47
  /**
47
48
  * @remarks String having <T>'s separated by ','
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.355",
4
+ "version": "3.0.357",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },