@pushwoosh/rpc-v2-http-api-data 0.2.43 → 0.2.44

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/rich_medias.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.2.43",
3
+ "version": "0.2.44",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
package/rich_medias.d.ts CHANGED
@@ -252,7 +252,7 @@ export type CreateResponse = {
252
252
  export type CreateNativeRequest = {
253
253
  /** Name of Rich Media. */
254
254
  name?: string;
255
- /** Content of native-config.json: json object with displayName and the matching display block. */
255
+ /** Content of native-config.json: json object with displayType and the matching display block. */
256
256
  content?: string;
257
257
  /** Json object of localizations keyed by language code, e.g. {"en": {...}}. */
258
258
  localization?: string;
@@ -268,7 +268,7 @@ export type UpdateNativeRequest = {
268
268
  code?: string;
269
269
  /** Name of Rich Media. */
270
270
  name?: string;
271
- /** Content of native-config.json: json object with displayName and the matching display block. */
271
+ /** Content of native-config.json: json object with displayType and the matching display block. */
272
272
  content?: string;
273
273
  /** Json object of localizations keyed by language code, e.g. {"en": {...}}. */
274
274
  localization?: string;