@pushwoosh/rpc-v2-http-api-data 0.1.977 → 0.1.979

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
@@ -13894,7 +13894,8 @@ export const data = {
13894
13894
  "values": [
13895
13895
  "NAME",
13896
13896
  "CREATED",
13897
- "SEND_DATE"
13897
+ "SEND_DATE",
13898
+ "UPDATED"
13898
13899
  ]
13899
13900
  },
13900
13901
  "pushwoosh.rpc_v2.messages.ListMessagesRequest.OrderDirection": {
@@ -14163,6 +14164,12 @@ export const data = {
14163
14164
  },
14164
14165
  "campaign": {
14165
14166
  "type": "string"
14167
+ },
14168
+ "timestampFrom": {
14169
+ "type": "Date"
14170
+ },
14171
+ "timestampTo": {
14172
+ "type": "Date"
14166
14173
  }
14167
14174
  }
14168
14175
  },
package/messages.d.ts CHANGED
@@ -59,7 +59,7 @@ export type Message = {
59
59
  childMessages: Message[];
60
60
  info: Message_info;
61
61
  };
62
- export type ListMessagesRequest_OrderBy = 'NAME' | 'CREATED' | 'SEND_DATE';
62
+ export type ListMessagesRequest_OrderBy = 'NAME' | 'CREATED' | 'SEND_DATE' | 'UPDATED';
63
63
  export type ListMessagesRequest_OrderDirection = 'ASC' | 'DESC';
64
64
  export type ListMessagesRequest = {
65
65
  application?: string;
@@ -154,6 +154,8 @@ export type GetDeliveryReportRequest = {
154
154
  applicationGroup?: string;
155
155
  messageCode?: string;
156
156
  campaign?: string;
157
+ timestampFrom?: Date;
158
+ timestampTo?: Date;
157
159
  };
158
160
  export type GetDeliveryReportResponse_ProcessingErrorsType =
159
161
  /** Any error types */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.977",
3
+ "version": "0.1.979",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",