@pushwoosh/rpc-v2-http-api-data 0.1.588 → 0.1.590

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/cloud_pages.d.ts CHANGED
@@ -22,6 +22,7 @@ export type CloudPage = {
22
22
  categories: string[];
23
23
  content: string;
24
24
  redirectUrl: string;
25
+ pushwooshJson: string;
25
26
  created: Date;
26
27
  updated: Date;
27
28
  };
@@ -43,6 +44,7 @@ export type CreateCloudPageRequest = {
43
44
  categories?: string[];
44
45
  content?: string;
45
46
  redirectUrl?: string;
47
+ pushwooshJson?: string;
46
48
  };
47
49
  export type CreateCloudPageResponse = {
48
50
  preset: CloudPage;
@@ -53,6 +55,7 @@ export type UpdateCloudPageRequest = {
53
55
  categories?: string[];
54
56
  content?: string;
55
57
  redirectUrl?: string;
58
+ pushwooshJson?: string;
56
59
  };
57
60
  export type UpdateCloudPageResponse = {
58
61
  preset: CloudPage;
package/data.js CHANGED
@@ -4051,6 +4051,9 @@ export const data = {
4051
4051
  "redirectUrl": {
4052
4052
  "type": "string"
4053
4053
  },
4054
+ "pushwooshJson": {
4055
+ "type": "string"
4056
+ },
4054
4057
  "created": {
4055
4058
  "type": "Date"
4056
4059
  },
@@ -4111,6 +4114,9 @@ export const data = {
4111
4114
  },
4112
4115
  "redirectUrl": {
4113
4116
  "type": "string"
4117
+ },
4118
+ "pushwooshJson": {
4119
+ "type": "string"
4114
4120
  }
4115
4121
  }
4116
4122
  },
@@ -4140,6 +4146,9 @@ export const data = {
4140
4146
  },
4141
4147
  "redirectUrl": {
4142
4148
  "type": "string"
4149
+ },
4150
+ "pushwooshJson": {
4151
+ "type": "string"
4143
4152
  }
4144
4153
  }
4145
4154
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.588",
3
+ "version": "0.1.590",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",