@pushwoosh/rpc-v2-http-api-data 0.1.554 → 0.1.556
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 -3
- package/package.json +1 -1
- package/pushwoosh_export_messages_v2.d.ts +2 -2
package/data.js
CHANGED
|
@@ -6657,10 +6657,12 @@ export const data = {
|
|
|
6657
6657
|
"type": "I",
|
|
6658
6658
|
"fields": {
|
|
6659
6659
|
"messageId": {
|
|
6660
|
-
"type": "number"
|
|
6660
|
+
"type": "number",
|
|
6661
|
+
"optional": true
|
|
6661
6662
|
},
|
|
6662
6663
|
"campaign": {
|
|
6663
|
-
"type": "string"
|
|
6664
|
+
"type": "string",
|
|
6665
|
+
"optional": true
|
|
6664
6666
|
},
|
|
6665
6667
|
"event": {
|
|
6666
6668
|
"type": "string"
|
|
@@ -6674,7 +6676,8 @@ export const data = {
|
|
|
6674
6676
|
"dateTo": {
|
|
6675
6677
|
"type": "Date"
|
|
6676
6678
|
}
|
|
6677
|
-
}
|
|
6679
|
+
},
|
|
6680
|
+
"oneofs": {}
|
|
6678
6681
|
},
|
|
6679
6682
|
"pushwoosh.export_messages.v2.ExportMessageEventTriggeredDevicesResult": {
|
|
6680
6683
|
"type": "I",
|
package/package.json
CHANGED
|
@@ -531,8 +531,8 @@ export type ExportMessageClicksDevicesResult = {
|
|
|
531
531
|
file: string;
|
|
532
532
|
};
|
|
533
533
|
export type ExportMessageEventTriggeredDevicesArgs = {
|
|
534
|
-
messageId
|
|
535
|
-
campaign
|
|
534
|
+
messageId?: number;
|
|
535
|
+
campaign?: string;
|
|
536
536
|
event: string;
|
|
537
537
|
application: string;
|
|
538
538
|
dateFrom: Date;
|