oasis-chat-button 0.4.0 → 0.6.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.d.ts +9 -0
- package/dist/react/index.cjs.js.map +1 -1
- package/dist/react/index.d.ts +5 -3
- package/dist/react/index.es.js.map +1 -1
- package/dist/vue/index.d.ts +16 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,8 +7,17 @@ export interface CreateButtonOptions {
|
|
|
7
7
|
* @default 'auto'
|
|
8
8
|
*/
|
|
9
9
|
theme?: 'light' | 'dark' | 'auto'
|
|
10
|
+
/**
|
|
11
|
+
* 어시스턴트 UUID
|
|
12
|
+
*/
|
|
13
|
+
assistantUuid: string
|
|
10
14
|
}
|
|
11
15
|
|
|
12
16
|
export function createButton(options?: CreateButtonOptions): HTMLElement
|
|
13
17
|
|
|
14
18
|
export function resetPanelInstance(): void
|
|
19
|
+
|
|
20
|
+
export function performLogin(
|
|
21
|
+
accountId: string,
|
|
22
|
+
password: string,
|
|
23
|
+
): Promise<boolean>
|