@pushwoosh/rpc-gateway-ai-assistant 0.1.314 → 0.1.316

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
@@ -732,6 +732,10 @@ export const data = {
732
732
  "mobilePadding": {
733
733
  "type": "pushwoosh.aibuilder.v1.EdgeInsets",
734
734
  "optional": true
735
+ },
736
+ "backgroundGradient": {
737
+ "type": "pushwoosh.aibuilder.v1.BackgroundGradient",
738
+ "optional": true
735
739
  }
736
740
  }
737
741
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.314",
3
+ "version": "0.1.316",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -500,6 +500,11 @@ export type ButtonStyles = {
500
500
  mobileWidthPercent?: number;
501
501
  /** Mobile (media-query) override of padding. Client-managed; unset = desktop value. */
502
502
  mobilePadding?: EdgeInsets;
503
+ /**
504
+ * Gradient fill over background_color, the flat fallback for clients without
505
+ * gradient support (Outlook's Word engine). Client-managed.
506
+ */
507
+ backgroundGradient?: BackgroundGradient;
503
508
  };
504
509
  export type ButtonGroup = {
505
510
  buttons: Button[];