@tung-engineering/agent-platform-web-sdk 0.0.49
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 +31 -0
- package/dist/web-sdk.cjs +1560 -0
- package/dist/web-sdk.cjs.map +1 -0
- package/dist/web-sdk.min.js +1560 -0
- package/dist/web-sdk.min.js.map +1 -0
- package/dist/web-sdk.mjs +10733 -0
- package/dist/web-sdk.mjs.map +1 -0
- package/package.json +45 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare function activateElementPicker(): void;
|
|
2
|
+
|
|
3
|
+
export declare function autoInit(): void;
|
|
4
|
+
|
|
5
|
+
export declare function clearConfig(): void;
|
|
6
|
+
|
|
7
|
+
export declare function closePanelIfOpen(): void;
|
|
8
|
+
|
|
9
|
+
export declare function configure(): void;
|
|
10
|
+
|
|
11
|
+
export declare function deactivateElementPicker(): void;
|
|
12
|
+
|
|
13
|
+
export declare function destroy(): void;
|
|
14
|
+
|
|
15
|
+
export declare function hideFab(): void;
|
|
16
|
+
|
|
17
|
+
export declare function init(options: SdkOptions): Promise<void>;
|
|
18
|
+
|
|
19
|
+
export declare function isPickerRunning(): boolean;
|
|
20
|
+
|
|
21
|
+
export declare interface SdkOptions {
|
|
22
|
+
projectCode: string;
|
|
23
|
+
backendUrl?: string;
|
|
24
|
+
token?: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export declare function showFab(): void;
|
|
28
|
+
|
|
29
|
+
export declare function updateCredentials(backendUrl: string, token: string): Promise<void>;
|
|
30
|
+
|
|
31
|
+
export { }
|