@pushwoosh/rpc-v2-http-api-data 0.1.977 → 0.1.978
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 +6 -0
- package/messages.d.ts +2 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -14163,6 +14163,12 @@ export const data = {
|
|
|
14163
14163
|
},
|
|
14164
14164
|
"campaign": {
|
|
14165
14165
|
"type": "string"
|
|
14166
|
+
},
|
|
14167
|
+
"timestampFrom": {
|
|
14168
|
+
"type": "Date"
|
|
14169
|
+
},
|
|
14170
|
+
"timestampTo": {
|
|
14171
|
+
"type": "Date"
|
|
14166
14172
|
}
|
|
14167
14173
|
}
|
|
14168
14174
|
},
|
package/messages.d.ts
CHANGED
|
@@ -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 */
|