cmd-control-client-lib 3.0.404 → 3.0.406

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.
@@ -161,6 +161,7 @@ export declare type channelIdSelector = {
161
161
  * @deprecated/ignored
162
162
  */
163
163
  selectVip?: EnumBooleanStringified;
164
+ selectYoungerThan?: string;
164
165
  };
165
166
  export declare type channelIdFilter = {
166
167
  /** search for contact-name, default empty, any lenght */
@@ -217,6 +218,8 @@ export declare type channelIdFilter = {
217
218
  filterMinWeight?: string;
218
219
  filterMaxWeight?: string;
219
220
  filterShadowban?: EnumChannelFilterValues;
221
+ /** json encoded date time */
222
+ filterYoungerThan?: string;
220
223
  };
221
224
  export declare type channelIdSelectOrFilter = channelIdSelector & channelIdFilter;
222
225
  export declare type getChannelsParamsType = {
@@ -7,11 +7,19 @@ export declare type groupIdType = {
7
7
  /** id */
8
8
  groupId: string;
9
9
  };
10
+ export declare enum EnumSignificance {
11
+ ZERO = 0,
12
+ ONE = 1,
13
+ TWO = 2,
14
+ THREE = 3,
15
+ FOUR = 4,
16
+ FIVE = 5
17
+ }
10
18
  export declare type groupDataType = {
11
19
  key?: "ticketShow" | string;
12
20
  auto_generated?: boolean;
13
21
  product_summary?: Map<string, number>;
14
- significance?: number;
22
+ significance?: EnumSignificance;
15
23
  };
16
24
  export declare type groupType = groupIdType & {
17
25
  /** display name */
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.404",
4
+ "version": "3.0.406",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },