@uptiqai/widgets-sdk 1.178.0 → 1.180.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 +11 -0
- package/dist/index.js +20887 -20445
- package/dist/index.umd.cjs +130 -154
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -144,6 +144,7 @@ declare type CommonWidgetProps = {
|
|
|
144
144
|
responseFormat?: AgentResponseFormat;
|
|
145
145
|
enableViewOnObservability?: boolean;
|
|
146
146
|
isConsumer?: boolean;
|
|
147
|
+
solutionDetails?: SolutionDetails;
|
|
147
148
|
};
|
|
148
149
|
|
|
149
150
|
export declare type ContextualKnowledge = {
|
|
@@ -413,6 +414,16 @@ export declare type SdkUserMessage = Pick<UserMessage_2, 'metadata' | 'id' | 'co
|
|
|
413
414
|
status?: 'pending' | 'acknowledged' | 'error' | 'failed';
|
|
414
415
|
};
|
|
415
416
|
|
|
417
|
+
declare type SolutionDetails = {
|
|
418
|
+
name?: string;
|
|
419
|
+
description?: string;
|
|
420
|
+
howItWorks?: string;
|
|
421
|
+
whatYouGet?: string;
|
|
422
|
+
whyItMatters?: string;
|
|
423
|
+
logoUrl?: string;
|
|
424
|
+
updatedAt?: string;
|
|
425
|
+
};
|
|
426
|
+
|
|
416
427
|
declare interface StatusUpdateElement extends ConversationElement {
|
|
417
428
|
type: ConversationElementType.STATUS_UPDATE;
|
|
418
429
|
status: string;
|