@pushwoosh/rpc-gateway-messaging 0.6.107 → 0.6.108

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
@@ -1186,6 +1186,17 @@ export const data = {
1186
1186
  }
1187
1187
  }
1188
1188
  },
1189
+ "pushwoosh.channels.messagingApi.v2.Content.PlatformPropertiesAppInbox.CarouselSlide": {
1190
+ "type": "I",
1191
+ "fields": {
1192
+ "imageUrl": {
1193
+ "type": "string"
1194
+ },
1195
+ "caption": {
1196
+ "type": "string"
1197
+ }
1198
+ }
1199
+ },
1189
1200
  "pushwoosh.channels.messagingApi.v2.Content.PlatformPropertiesAppInbox": {
1190
1201
  "type": "I",
1191
1202
  "fields": {
@@ -1206,6 +1217,13 @@ export const data = {
1206
1217
  },
1207
1218
  "customData": {
1208
1219
  "type": "object"
1220
+ },
1221
+ "layoutType": {
1222
+ "type": "string"
1223
+ },
1224
+ "carousel": {
1225
+ "type": "pushwoosh.channels.messagingApi.v2.Content.PlatformPropertiesAppInbox.CarouselSlide",
1226
+ "array": true
1209
1227
  }
1210
1228
  }
1211
1229
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-messaging",
3
- "version": "0.6.107",
3
+ "version": "0.6.108",
4
4
  "description": "Channels Messaging API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -786,6 +786,10 @@ export type Content_PlatformPropertiesWindows = {
786
786
  timeToLive: Duration;
787
787
  content: Content_PlatformPropertiesWindows_content;
788
788
  };
789
+ export type Content_PlatformPropertiesAppInbox_CarouselSlide = {
790
+ imageUrl: string;
791
+ caption: string;
792
+ };
789
793
  export type Content_PlatformPropertiesAppInbox = {
790
794
  /** Title of the inbox entry. */
791
795
  title: string;
@@ -799,6 +803,10 @@ export type Content_PlatformPropertiesAppInbox = {
799
803
  openAction: OpenAction;
800
804
  /** Free-form JSON delivered to the SDK with the entry. */
801
805
  customData: object;
806
+ /** Inbox cell layout: classic (default when empty), captioned, banner or carousel. */
807
+ layoutType: string;
808
+ /** Slides of the carousel layout. */
809
+ carousel: Content_PlatformPropertiesAppInbox_CarouselSlide[];
802
810
  };
803
811
  export type Content_PlatformPropertiesSMS = {
804
812
  /** Notification body text. */