cmd-control-client-lib 3.0.153 → 3.0.154

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.
@@ -225,3 +225,25 @@ export declare class CMDP_SMSGREACTION_RESPONSE extends CMDP_SMSGREACTION implem
225
225
  /** unused */
226
226
  values: IKeyMaybeValue;
227
227
  }
228
+ /**
229
+ * Estimate sending message. get count of possible recipients
230
+ */
231
+ export declare class CMDP_SMSGESTIMATE implements ICOMMAND {
232
+ action: ACTION;
233
+ params: baseParamsType & MediaMd5 & Chargeable & channelIdSelector & {
234
+ countOnly?: EnumBooleanStringified;
235
+ };
236
+ }
237
+ /**
238
+ * Response for CMDP_SMSGESTIMATE
239
+ */
240
+ export declare class CMDP_SMSGESTIMATE_RESPONSE extends CMDP_SMSGESTIMATE implements IRESPONSE {
241
+ result: RESULT;
242
+ commands: ICOMMAND[];
243
+ values: {
244
+ recipientCount: string;
245
+ recipientChannels: string;
246
+ skippedCount?: string;
247
+ skippedChannels?: string;
248
+ };
249
+ }
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.153",
4
+ "version": "3.0.154",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },