guideai-app 0.2.1 → 0.2.3
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/GuideAI.d.ts +1 -8
- package/GuideAI.js +1 -0
- package/GuideAI.js.LICENSE.txt +16 -0
- package/GuideAI.js.map +1 -0
- package/components/Styles.d.ts +3 -0
- package/dist/GuideAI.js +1 -1
- package/dist/GuideAI.js.map +1 -1
- package/dist/messageStorageUtils.d.ts +26 -0
- package/dist/utils/storage.d.ts +5 -0
- package/hooks/useConversation.d.ts +11 -0
- package/hooks/useRecording.d.ts +12 -0
- package/index.d.ts +3 -0
- package/package.json +1 -1
- package/types/index.d.ts +20 -0
- package/utils/api-services.d.ts +5 -0
- package/utils/dom-interaction.d.ts +2 -0
- package/utils/react-hooks.d.ts +9 -0
- package/utils/storage.d.ts +14 -0
- package/utils/webrtc.d.ts +3 -0
package/GuideAI.d.ts
CHANGED
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
// Generated by dts-bundle v0.7.3
|
|
2
|
-
// Dependencies for this module:
|
|
3
|
-
// ../react
|
|
4
|
-
|
|
5
1
|
import React from 'react';
|
|
6
|
-
|
|
7
2
|
export interface GuideAIProps {
|
|
8
3
|
apiKey?: string;
|
|
9
|
-
|
|
10
|
-
shortcutKey?: string;
|
|
4
|
+
organizationKey: string;
|
|
11
5
|
position?: {
|
|
12
6
|
top?: string;
|
|
13
7
|
right?: string;
|
|
@@ -19,4 +13,3 @@ export interface GuideAIProps {
|
|
|
19
13
|
}
|
|
20
14
|
declare const GuideAI: (props: GuideAIProps) => React.JSX.Element | null;
|
|
21
15
|
export default GuideAI;
|
|
22
|
-
|