@uptiqai/widgets-sdk 1.170.0 → 1.171.0
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/dist/index.css +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +5750 -5750
- package/dist/index.umd.cjs +74 -74
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -55,7 +55,8 @@ declare type AgentQuestion = {
|
|
|
55
55
|
question: string;
|
|
56
56
|
/** Allow selecting more than one option. */
|
|
57
57
|
multiSelect?: boolean;
|
|
58
|
-
|
|
58
|
+
/** May be absent for free-text questions (e.g. date fields) where the agent expects typed input. */
|
|
59
|
+
options?: AgentQuestionOption[];
|
|
59
60
|
};
|
|
60
61
|
|
|
61
62
|
/** A single selectable choice within a structured agent question. */
|