@iblai/web-utils 1.1.1 → 1.1.2
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/data-layer/src/features/core/api-slice.d.ts +110 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +44 -22
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +13140 -13150
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +13156 -13166
- package/dist/index.js.map +1 -1
- package/dist/package.json +5 -4
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +1 -1
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +1 -1
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -995,7 +995,7 @@ declare function useAdvancedChat({ tenantKey, mentorId, username, token, wsUrl,
|
|
|
995
995
|
isConnected: React__default.MutableRefObject<boolean>;
|
|
996
996
|
messageQueue: React__default.MutableRefObject<any[]>;
|
|
997
997
|
sessionIds: SessionIds;
|
|
998
|
-
enableSafetyDisclaimer:
|
|
998
|
+
enableSafetyDisclaimer: boolean;
|
|
999
999
|
resetConnection: () => void;
|
|
1000
1000
|
};
|
|
1001
1001
|
|
|
@@ -1130,7 +1130,7 @@ type MentorSettingsData = {
|
|
|
1130
1130
|
mentorName?: string | null;
|
|
1131
1131
|
enableGuidedPrompts?: boolean | null;
|
|
1132
1132
|
mentorSlug?: string | null;
|
|
1133
|
-
safetyDisclaimer
|
|
1133
|
+
safetyDisclaimer: boolean;
|
|
1134
1134
|
mentorTools?: any[] | null;
|
|
1135
1135
|
allowAnonymous?: boolean | null;
|
|
1136
1136
|
};
|