@pushwoosh/rpc-gateway-messaging 0.6.49 → 0.6.51

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
@@ -1302,6 +1302,9 @@ export const data = {
1302
1302
  },
1303
1303
  "appleWalletPassSerial": {
1304
1304
  "type": "string"
1305
+ },
1306
+ "smsPreset": {
1307
+ "type": "string"
1305
1308
  }
1306
1309
  },
1307
1310
  "oneofs": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-messaging",
3
- "version": "0.6.49",
3
+ "version": "0.6.51",
4
4
  "description": "Channels Messaging API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -610,6 +610,11 @@ export type Payload = {
610
610
  openActions: Record<number, OpenAction>;
611
611
  voipPush: boolean;
612
612
  appleWalletPassSerial: string;
613
+ /**
614
+ * sms_preset references a saved SMS preset by code. When set, messaging-api resolves the
615
+ * preset content into the per-language SMS body; inline sms.body overrides the preset per language.
616
+ */
617
+ smsPreset: string;
613
618
  kind: Payload_kind;
614
619
  };
615
620
  /** Email attachments. */