@sendbird/ai-agent-messenger-react 1.31.0 → 1.31.1
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/cjs/DP95uu-Y.cjs +1 -0
- package/dist/es/ClXsn-JF.js +5 -0
- package/dist/index.cjs +96 -96
- package/dist/index.d.ts +6 -2
- package/dist/index.js +2315 -2296
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -2259,6 +2259,9 @@ export declare interface ExtendedMessagePayload {
|
|
|
2259
2259
|
form?: Form;
|
|
2260
2260
|
steward?: Steward;
|
|
2261
2261
|
|
|
2262
|
+
// safeguard
|
|
2263
|
+
flagged_types?: string[];
|
|
2264
|
+
|
|
2262
2265
|
// logs
|
|
2263
2266
|
groundedness: GroundednessInfo[];
|
|
2264
2267
|
manual: ActionbookInfo;
|
|
@@ -4612,7 +4615,7 @@ export declare const MessageListUILayout: {
|
|
|
4612
4615
|
}) => null;
|
|
4613
4616
|
};
|
|
4614
4617
|
|
|
4615
|
-
export declare const MessageLogs: ({ actionbook, functionCalls, groundedness, agentMessageTemplates, onClickActionbook, onClickFunctionCall, onClickFunctionCallDetail, onClickGroundedness, onClickAgentMessageTemplate, topContent, bottomContent, renderCustomGroundednessIcon, style, }: Props_2) => JSX.Element;
|
|
4618
|
+
export declare const MessageLogs: ({ actionbook, functionCalls, groundedness, agentMessageTemplates, flaggedTypes, onClickActionbook, onClickFunctionCall, onClickFunctionCallDetail, onClickGroundedness, onClickAgentMessageTemplate, topContent, bottomContent, renderCustomGroundednessIcon, style, }: Props_2) => JSX.Element;
|
|
4616
4619
|
|
|
4617
4620
|
declare interface MessageTemplateCache {
|
|
4618
4621
|
set(key: string, value: string): void;
|
|
@@ -5113,6 +5116,7 @@ declare type Props_2 = {
|
|
|
5113
5116
|
functionCalls?: FunctionCallsInfo[];
|
|
5114
5117
|
groundedness?: GroundednessInfo[];
|
|
5115
5118
|
agentMessageTemplates?: AgentMessageTemplateInfo[];
|
|
5119
|
+
flaggedTypes?: string[];
|
|
5116
5120
|
onClickActionbook?: (value: ActionbookInfo) => void;
|
|
5117
5121
|
onClickFunctionCall?: (value: FunctionCallsInfo) => void;
|
|
5118
5122
|
onClickFunctionCallDetail?: (value: FunctionCallsInfo) => void;
|
|
@@ -5156,7 +5160,7 @@ declare type Props_4 = PropsWithChildren<{
|
|
|
5156
5160
|
style?: CSSProperties;
|
|
5157
5161
|
}>;
|
|
5158
5162
|
|
|
5159
|
-
declare type ReactOnlyIconName = 'expand' | 'collapse' | 'chevron-right' | 'attach' | 'close-filled' | 'actionbook' | 'function' | 'confluence' | 'zendesk' | 'salesforce' | 'sprinklr' | 'website' | 'snippet' | 'template' | 'show' | 'mute';
|
|
5163
|
+
declare type ReactOnlyIconName = 'expand' | 'collapse' | 'chevron-right' | 'attach' | 'close-filled' | 'actionbook' | 'function' | 'confluence' | 'zendesk' | 'salesforce' | 'sprinklr' | 'website' | 'snippet' | 'template' | 'show' | 'mute' | 'activity';
|
|
5160
5164
|
|
|
5161
5165
|
declare type ReleaseDisabledByValue =
|
|
5162
5166
|
| 'unavailable'
|