@pushwoosh/rpc-gateway-ai-assistant 0.1.215 → 0.1.216

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
@@ -372,6 +372,14 @@ export const data = {
372
372
  "fontFamily": {
373
373
  "type": "string",
374
374
  "optional": true
375
+ },
376
+ "padding": {
377
+ "type": "pushwoosh.aibuilder.v1.EdgeInsets",
378
+ "optional": true
379
+ },
380
+ "widthPercent": {
381
+ "type": "number",
382
+ "optional": true
375
383
  }
376
384
  }
377
385
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.215",
3
+ "version": "0.1.216",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -360,6 +360,10 @@ export type ButtonStyles = {
360
360
  * enforced by construction.
361
361
  */
362
362
  fontFamily?: string;
363
+ /** Label padding, px. Client-managed; unset = renderer default (8 / 16). */
364
+ padding?: EdgeInsets;
365
+ /** Width as % of the block row (1-100). Client-managed; unset = auto (fit the label). */
366
+ widthPercent?: number;
363
367
  };
364
368
  export type ButtonGroup = {
365
369
  buttons: Button[];