@pushwoosh/rpc-v2-http-api-data 0.2.192 → 0.2.193
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 +3 -0
- package/package.json +1 -1
- package/pushwoosh_export_messages_v2.d.ts +5 -0
package/data.js
CHANGED
|
@@ -12075,6 +12075,9 @@ export const data = {
|
|
|
12075
12075
|
},
|
|
12076
12076
|
"timestampFrom": {
|
|
12077
12077
|
"type": "Date"
|
|
12078
|
+
},
|
|
12079
|
+
"controlGroupCode": {
|
|
12080
|
+
"type": "string"
|
|
12078
12081
|
}
|
|
12079
12082
|
}
|
|
12080
12083
|
},
|
package/package.json
CHANGED
|
@@ -235,6 +235,11 @@ export type GetLastTasksRequest = {
|
|
|
235
235
|
event?: string;
|
|
236
236
|
channel?: Channel;
|
|
237
237
|
timestampFrom?: Date;
|
|
238
|
+
/**
|
|
239
|
+
* Control group code (format XXXXX-XXXXX) to narrow control group exports
|
|
240
|
+
* to a single group. Empty matches every group.
|
|
241
|
+
*/
|
|
242
|
+
controlGroupCode?: string;
|
|
238
243
|
};
|
|
239
244
|
export type TaskInfo_args_trackingLogCsv = {
|
|
240
245
|
type: 'trackingLogCsv';
|