@pushwoosh/rpc-gateway-ai-assistant 0.1.250 → 0.1.252

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
@@ -946,6 +946,10 @@ export const data = {
946
946
  },
947
947
  "mobileAlign": {
948
948
  "type": "pushwoosh.aibuilder.v1.TextAlign"
949
+ },
950
+ "mobileWidth": {
951
+ "type": "string",
952
+ "optional": true
949
953
  }
950
954
  }
951
955
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.250",
3
+ "version": "0.1.252",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -840,6 +840,12 @@ export type Image = {
840
840
  borderRadius?: number;
841
841
  /** Mobile alignment override (content items only). UNSPECIFIED = inherit `align`. Client-managed. */
842
842
  mobileAlign: TextAlign;
843
+ /**
844
+ * Mobile width override as a CSS length ("200px" / "60%"). Unset or empty =
845
+ * the desktop width, scaled by the client. Only these two units are emitted;
846
+ * anything else is ignored rather than written into a rule. Client-managed.
847
+ */
848
+ mobileWidth?: string;
843
849
  };
844
850
  export type AiBuilderCard = {
845
851
  layout: CardLayout;