@pushwoosh/rpc-v2-http-api-data 0.1.555 → 0.1.557

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
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.555",
3
+ "version": "0.1.557",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -531,8 +531,8 @@ export type ExportMessageClicksDevicesResult = {
531
531
  file: string;
532
532
  };
533
533
  export type ExportMessageEventTriggeredDevicesArgs = {
534
- messageId: number;
535
- campaign: string;
534
+ messageId?: number;
535
+ campaign?: string;
536
536
  event: string;
537
537
  application: string;
538
538
  dateFrom: Date;