@pushwoosh/rpc-gateway-ai-assistant 0.1.227 → 0.1.228

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
@@ -275,6 +275,10 @@ export const data = {
275
275
  "showShadow": {
276
276
  "type": "boolean",
277
277
  "optional": true
278
+ },
279
+ "borderRadius": {
280
+ "type": "number",
281
+ "optional": true
278
282
  }
279
283
  }
280
284
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.227",
3
+ "version": "0.1.228",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -312,6 +312,11 @@ export type DocumentSettings = {
312
312
  * - Client-managed: render-only chrome, the LLM never sees this field.
313
313
  */
314
314
  showShadow?: boolean;
315
+ /**
316
+ * Corner rounding of the content column, px. Unset (or 0) = square.
317
+ * Client-managed render-only chrome, like show_shadow.
318
+ */
319
+ borderRadius?: number;
315
320
  };
316
321
  export type TextBlock = {
317
322
  variant: string;