@pushwoosh/rpc-gateway-ai-assistant 0.1.446 → 0.1.447

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
@@ -509,9 +509,23 @@ export const data = {
509
509
  "backgroundImagePosition": {
510
510
  "type": "pushwoosh.aibuilder.v1.CardImagePosition",
511
511
  "optional": true
512
+ },
513
+ "borderSides": {
514
+ "type": "pushwoosh.aibuilder.v1.BorderSide",
515
+ "array": true
512
516
  }
513
517
  }
514
518
  },
519
+ "pushwoosh.aibuilder.v1.BorderSide": {
520
+ "type": "E",
521
+ "values": [
522
+ "BORDER_SIDE_UNSPECIFIED",
523
+ "BORDER_SIDE_TOP",
524
+ "BORDER_SIDE_RIGHT",
525
+ "BORDER_SIDE_BOTTOM",
526
+ "BORDER_SIDE_LEFT"
527
+ ]
528
+ },
515
529
  "pushwoosh.aibuilder.v1.BackgroundGradient": {
516
530
  "type": "I",
517
531
  "fields": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.446",
3
+ "version": "0.1.447",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -269,7 +269,10 @@ export type BlockStyles = {
269
269
  */
270
270
  backgroundImageFit?: CardImageFit;
271
271
  backgroundImagePosition?: CardImagePosition;
272
+ /** Sides border_width is drawn on; empty = all four, the historical box. */
273
+ borderSides: BorderSide[];
272
274
  };
275
+ export type BorderSide = 'BORDER_SIDE_UNSPECIFIED' | 'BORDER_SIDE_TOP' | 'BORDER_SIDE_RIGHT' | 'BORDER_SIDE_BOTTOM' | 'BORDER_SIDE_LEFT';
273
276
  /** Two-stop CSS linear gradient: `linear-gradient(<angle>deg, from, to)`. */
274
277
  export type BackgroundGradient = {
275
278
  /** #RRGGBB */