@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 +6 -0
- package/package.json +1 -1
- package/pushwoosh_aibuilder_v1.d.ts +8 -2
package/data.js
CHANGED
package/package.json
CHANGED
|
@@ -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
|
|
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 */
|