@pushwoosh/rpc-v2-http-api-data 0.1.773 → 0.1.774

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
@@ -5388,6 +5388,9 @@ export const data = {
5388
5388
  "fields": {
5389
5389
  "body": {
5390
5390
  "type": "string"
5391
+ },
5392
+ "contentVariables": {
5393
+ "type": "string"
5391
5394
  }
5392
5395
  }
5393
5396
  },
@@ -5479,6 +5482,9 @@ export const data = {
5479
5482
  "openActions": {
5480
5483
  "type": "pushwoosh.channels.messagingApi.v2.OpenAction",
5481
5484
  "mapKeyType": "number"
5485
+ },
5486
+ "voipPush": {
5487
+ "type": "boolean"
5482
5488
  }
5483
5489
  },
5484
5490
  "oneofs": {
@@ -8685,7 +8691,8 @@ export const data = {
8685
8691
  "link_clicked_devices",
8686
8692
  "event_triggered_devices",
8687
8693
  "send_with_error_devices",
8688
- "send_with_email_error_devices"
8694
+ "send_with_email_error_devices",
8695
+ "not_opened_devices"
8689
8696
  ]
8690
8697
  },
8691
8698
  "pushwoosh.export_messages.v2.CreateSegmentFromMessageArgs.EmailErrorType": {
@@ -9086,6 +9093,9 @@ export const data = {
9086
9093
  },
9087
9094
  "deviceLoadPolicy": {
9088
9095
  "type": "pushwoosh.rpc_v2.filters.DeviceLoadPolicy"
9096
+ },
9097
+ "isSystem": {
9098
+ "type": "boolean"
9089
9099
  }
9090
9100
  },
9091
9101
  "oneofs": {
@@ -20508,6 +20518,9 @@ export const data = {
20508
20518
  "inboxIcon": {
20509
20519
  "type": "string"
20510
20520
  },
20521
+ "inboxDays": {
20522
+ "type": "number"
20523
+ },
20511
20524
  "categories": {
20512
20525
  "type": "string",
20513
20526
  "array": true
@@ -20637,6 +20650,9 @@ export const data = {
20637
20650
  "inboxIcon": {
20638
20651
  "type": "string"
20639
20652
  },
20653
+ "inboxDays": {
20654
+ "type": "number"
20655
+ },
20640
20656
  "customData": {
20641
20657
  "type": "object"
20642
20658
  },
@@ -20728,6 +20744,9 @@ export const data = {
20728
20744
  "inboxIcon": {
20729
20745
  "type": "string"
20730
20746
  },
20747
+ "inboxDays": {
20748
+ "type": "number"
20749
+ },
20731
20750
  "customData": {
20732
20751
  "type": "object"
20733
20752
  },
@@ -20805,6 +20824,9 @@ export const data = {
20805
20824
  "inboxIcon": {
20806
20825
  "type": "string"
20807
20826
  },
20827
+ "inboxDays": {
20828
+ "type": "number"
20829
+ },
20808
20830
  "customData": {
20809
20831
  "type": "object"
20810
20832
  },
package/filters.d.ts CHANGED
@@ -63,6 +63,7 @@ export type Filter = {
63
63
  hasRightAceModify: boolean;
64
64
  updated: Date;
65
65
  deviceLoadPolicy: DeviceLoadPolicy;
66
+ isSystem: boolean;
66
67
  type: Filter_type;
67
68
  };
68
69
  export type ListFiltersResponse = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.773",
3
+ "version": "0.1.774",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
package/presets.d.ts CHANGED
@@ -44,6 +44,7 @@ export type Preset = {
44
44
  url: string;
45
45
  inboxImage: string;
46
46
  inboxIcon: string;
47
+ inboxDays: number;
47
48
  categories: string[];
48
49
  created: Date;
49
50
  updated: Date;
@@ -85,6 +86,7 @@ export type CreatePresetRequest = {
85
86
  url?: string;
86
87
  inboxImage?: string;
87
88
  inboxIcon?: string;
89
+ inboxDays?: number;
88
90
  customData?: object;
89
91
  categories?: string[];
90
92
  banner?: string;
@@ -113,6 +115,7 @@ export type UpdatePresetRequest = {
113
115
  url?: string;
114
116
  inboxImage?: string;
115
117
  inboxIcon?: string;
118
+ inboxDays?: number;
116
119
  customData?: object;
117
120
  categories?: string[];
118
121
  banner?: string;
@@ -136,6 +139,7 @@ export type UpdatePresetPartialRequest = {
136
139
  url?: string;
137
140
  inboxImage?: string;
138
141
  inboxIcon?: string;
142
+ inboxDays?: number;
139
143
  customData?: object;
140
144
  categories?: string[];
141
145
  banner?: string;
@@ -358,6 +358,7 @@ export type Content_PlatformPropertiesWindows = {
358
358
  export type Content_PlatformPropertiesSMS = {};
359
359
  export type Content_PlatformPropertiesTelegram = {
360
360
  body: string;
361
+ contentVariables: string;
361
362
  };
362
363
  export type Content_PlatformPropertiesKakao = {
363
364
  content: string;
@@ -396,6 +397,7 @@ export type Payload = {
396
397
  customData: object;
397
398
  openAction: OpenAction;
398
399
  openActions: Record<number, OpenAction>;
400
+ voipPush: boolean;
399
401
  kind: Payload_kind;
400
402
  };
401
403
  export type EmailPayload_Attachment = {
@@ -602,7 +602,7 @@ export type ExportMessageErrorsDevicesArgs = {
602
602
  export type ExportMessageErrorsDevicesResult = {
603
603
  file: string;
604
604
  };
605
- export type CreateSegmentFromMessageArgs_Type = 'send_devices' | 'delivered_devices' | 'opened_devices' | 'link_clicked_devices' | 'event_triggered_devices' | 'send_with_error_devices' | 'send_with_email_error_devices';
605
+ export type CreateSegmentFromMessageArgs_Type = 'send_devices' | 'delivered_devices' | 'opened_devices' | 'link_clicked_devices' | 'event_triggered_devices' | 'send_with_error_devices' | 'send_with_email_error_devices' | 'not_opened_devices';
606
606
  export type CreateSegmentFromMessageArgs_EmailErrorType = 'complaints' | 'soft_bounces' | 'hard_bounces';
607
607
  export type CreateSegmentFromMessageArgs = {
608
608
  messageId: number;