@pushwoosh/rpc-v2-http-api-data 0.1.772 → 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.
@@ -54,7 +54,6 @@ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_PresetsSummary =
54
54
  };
55
55
  export type GetAccountEntitiesOverviewResponse_EntitiesOverview_RichMediasSummary_RichMediaInfo = {
56
56
  name: string;
57
- isSystem: boolean;
58
57
  };
59
58
  export type GetAccountEntitiesOverviewResponse_EntitiesOverview_RichMediasSummary = {
60
59
  total: number;
@@ -115,7 +114,6 @@ export type GetAccountEntitiesOverviewResponse_EntitiesOverview = {
115
114
  export type GetAccountEntitiesOverviewResponse_TagsSummary_TagInfo = {
116
115
  name: string;
117
116
  type: string;
118
- system: boolean;
119
117
  };
120
118
  export type GetAccountEntitiesOverviewResponse_TagsSummary = {
121
119
  total: number;
package/data.js CHANGED
@@ -568,9 +568,6 @@ export const data = {
568
568
  "fields": {
569
569
  "name": {
570
570
  "type": "string"
571
- },
572
- "isSystem": {
573
- "type": "boolean"
574
571
  }
575
572
  }
576
573
  },
@@ -744,9 +741,6 @@ export const data = {
744
741
  },
745
742
  "type": {
746
743
  "type": "string"
747
- },
748
- "system": {
749
- "type": "boolean"
750
744
  }
751
745
  }
752
746
  },
@@ -5394,6 +5388,9 @@ export const data = {
5394
5388
  "fields": {
5395
5389
  "body": {
5396
5390
  "type": "string"
5391
+ },
5392
+ "contentVariables": {
5393
+ "type": "string"
5397
5394
  }
5398
5395
  }
5399
5396
  },
@@ -5485,6 +5482,9 @@ export const data = {
5485
5482
  "openActions": {
5486
5483
  "type": "pushwoosh.channels.messagingApi.v2.OpenAction",
5487
5484
  "mapKeyType": "number"
5485
+ },
5486
+ "voipPush": {
5487
+ "type": "boolean"
5488
5488
  }
5489
5489
  },
5490
5490
  "oneofs": {
@@ -8691,7 +8691,8 @@ export const data = {
8691
8691
  "link_clicked_devices",
8692
8692
  "event_triggered_devices",
8693
8693
  "send_with_error_devices",
8694
- "send_with_email_error_devices"
8694
+ "send_with_email_error_devices",
8695
+ "not_opened_devices"
8695
8696
  ]
8696
8697
  },
8697
8698
  "pushwoosh.export_messages.v2.CreateSegmentFromMessageArgs.EmailErrorType": {
@@ -9092,6 +9093,9 @@ export const data = {
9092
9093
  },
9093
9094
  "deviceLoadPolicy": {
9094
9095
  "type": "pushwoosh.rpc_v2.filters.DeviceLoadPolicy"
9096
+ },
9097
+ "isSystem": {
9098
+ "type": "boolean"
9095
9099
  }
9096
9100
  },
9097
9101
  "oneofs": {
@@ -20514,6 +20518,9 @@ export const data = {
20514
20518
  "inboxIcon": {
20515
20519
  "type": "string"
20516
20520
  },
20521
+ "inboxDays": {
20522
+ "type": "number"
20523
+ },
20517
20524
  "categories": {
20518
20525
  "type": "string",
20519
20526
  "array": true
@@ -20643,6 +20650,9 @@ export const data = {
20643
20650
  "inboxIcon": {
20644
20651
  "type": "string"
20645
20652
  },
20653
+ "inboxDays": {
20654
+ "type": "number"
20655
+ },
20646
20656
  "customData": {
20647
20657
  "type": "object"
20648
20658
  },
@@ -20734,6 +20744,9 @@ export const data = {
20734
20744
  "inboxIcon": {
20735
20745
  "type": "string"
20736
20746
  },
20747
+ "inboxDays": {
20748
+ "type": "number"
20749
+ },
20737
20750
  "customData": {
20738
20751
  "type": "object"
20739
20752
  },
@@ -20811,6 +20824,9 @@ export const data = {
20811
20824
  "inboxIcon": {
20812
20825
  "type": "string"
20813
20826
  },
20827
+ "inboxDays": {
20828
+ "type": "number"
20829
+ },
20814
20830
  "customData": {
20815
20831
  "type": "object"
20816
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.772",
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;