@pushwoosh/rpc-v2-http-api-data 0.1.856 → 0.1.858

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
@@ -10538,6 +10538,14 @@ export const data = {
10538
10538
  }
10539
10539
  }
10540
10540
  },
10541
+ "pushwoosh.rpc_v2.inapp_messages.UpdateInappRequest.Action": {
10542
+ "type": "E",
10543
+ "values": [
10544
+ "UNKNOWN",
10545
+ "SAVE_DRAFT",
10546
+ "PUBLISH"
10547
+ ]
10548
+ },
10541
10549
  "pushwoosh.rpc_v2.inapp_messages.UpdateInappRequest": {
10542
10550
  "type": "I",
10543
10551
  "fields": {
@@ -10586,6 +10594,10 @@ export const data = {
10586
10594
  "priority": {
10587
10595
  "type": "number",
10588
10596
  "optional": true
10597
+ },
10598
+ "action": {
10599
+ "type": "pushwoosh.rpc_v2.inapp_messages.UpdateInappRequest.Action",
10600
+ "optional": true
10589
10601
  }
10590
10602
  },
10591
10603
  "oneofs": {}
@@ -75,6 +75,7 @@ export type CreateInappRequest = {
75
75
  export type CreateInappResponse = {
76
76
  code: string;
77
77
  };
78
+ export type UpdateInappRequest_Action = 'UNKNOWN' | 'SAVE_DRAFT' | 'PUBLISH';
78
79
  export type UpdateInappRequest = {
79
80
  code?: string;
80
81
  name?: string;
@@ -88,6 +89,7 @@ export type UpdateInappRequest = {
88
89
  startDate?: Date;
89
90
  endDate?: Date;
90
91
  priority?: number;
92
+ action?: UpdateInappRequest_Action;
91
93
  };
92
94
  export type UpdateInappResponse = {};
93
95
  export type StopInappRequest = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.856",
3
+ "version": "0.1.858",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",