@pushwoosh/rpc-v2-http-api-data 0.1.952 → 0.1.954

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.
package/data.js CHANGED
@@ -10576,6 +10576,9 @@ export const data = {
10576
10576
  },
10577
10577
  "perPage": {
10578
10578
  "type": "number"
10579
+ },
10580
+ "searchByName": {
10581
+ "type": "string"
10579
10582
  }
10580
10583
  }
10581
10584
  },
@@ -13828,6 +13831,9 @@ export const data = {
13828
13831
  },
13829
13832
  "totalOpens": {
13830
13833
  "type": "pushwoosh.rpc_v2.messages.GetStatisticsResponse.PlatformTimeSeries"
13834
+ },
13835
+ "totalDeliveries": {
13836
+ "type": "number"
13831
13837
  }
13832
13838
  }
13833
13839
  },
@@ -43,6 +43,8 @@ export type ListGeozonesClustersRequest = {
43
43
  orderDirection?: ListGeozonesClustersRequest_OrderDirection;
44
44
  page?: number;
45
45
  perPage?: number;
46
+ /** like %name% on name or code */
47
+ searchByName?: string;
46
48
  };
47
49
  export type ListGeozonesClustersResponse = {
48
50
  clusters: GeozonesCluster[];
package/messages.d.ts CHANGED
@@ -115,6 +115,7 @@ export type GetStatisticsResponse_Metrics = {
115
115
  recipientsByPlatform: Record<string, number>;
116
116
  recipients: number;
117
117
  totalOpens: GetStatisticsResponse_PlatformTimeSeries;
118
+ totalDeliveries: number;
118
119
  };
119
120
  export type GetStatisticsResponse = {
120
121
  metrics: GetStatisticsResponse_Metrics;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.952",
3
+ "version": "0.1.954",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",