@pushwoosh/rpc-gateway-ai-assistant 0.1.191 → 0.1.192

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
@@ -161,6 +161,10 @@ export const data = {
161
161
  "borderRadius": {
162
162
  "type": "number",
163
163
  "optional": true
164
+ },
165
+ "borderRadiusCss": {
166
+ "type": "string",
167
+ "optional": true
164
168
  }
165
169
  }
166
170
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.191",
3
+ "version": "0.1.192",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -187,8 +187,8 @@ export type EdgeInsets = {
187
187
  * LLM-managed: background_color, border_color, border_radius — the
188
188
  * block generator may emit these via AiGenBlockStyles and the
189
189
  * pipeline lifts them into BlockStyles.
190
- * Client-managed: border_width — the LLM never sees it, the backend
191
- * preserves it verbatim across edits.
190
+ * Client-managed: border_width and border_radius_css — the LLM never sees
191
+ * them, the backend preserves them verbatim across edits.
192
192
  */
193
193
  export type BlockStyles = {
194
194
  /**
@@ -205,6 +205,12 @@ export type BlockStyles = {
205
205
  borderWidth?: number;
206
206
  /** Explicit 0 is distinct from unset and preserved. */
207
207
  borderRadius?: number;
208
+ /**
209
+ * CSS border-radius shorthand for per-corner rounding ("20px 20px 0px
210
+ * 0px"). Written by Unlayer conversion; clients render border_radius
211
+ * when set (user-edited uniform value wins), else this.
212
+ */
213
+ borderRadiusCss?: string;
208
214
  };
209
215
  /** Two-stop CSS linear gradient: `linear-gradient(<angle>deg, from, to)`. */
210
216
  export type BackgroundGradient = {