@pushwoosh/rpc-gateway-ai-assistant 0.1.220 → 0.1.222

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
@@ -450,6 +450,12 @@ export const data = {
450
450
  "items": {
451
451
  "type": "pushwoosh.aibuilder.v1.ListItem",
452
452
  "array": true
453
+ },
454
+ "ordered": {
455
+ "type": "boolean"
456
+ },
457
+ "variant": {
458
+ "type": "string"
453
459
  }
454
460
  }
455
461
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-ai-assistant",
3
- "version": "0.1.220",
3
+ "version": "0.1.222",
4
4
  "description": "AI Assistant api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -429,11 +429,17 @@ export type ListItem = {
429
429
  };
430
430
  /**
431
431
  * List is a simple list of short entries — features, benefits, steps,
432
- * FAQ-style runs. Rendered as a <ul>; ordered/unordered is a styling concern
433
- * (CSS), not modelled here.
432
+ * FAQ-style runs, terms & conditions.
434
433
  */
435
434
  export type List = {
436
435
  items: ListItem[];
436
+ /** true = numbered (<ol>), false/unset = bulleted (<ul>). */
437
+ ordered: boolean;
438
+ /**
439
+ * Text variant of the entries (same registry as TextBlock.variant);
440
+ * unset = "normal".
441
+ */
442
+ variant: string;
437
443
  };
438
444
  export type FormFieldType =
439
445
  /** treated as TEXT */