@lark-apaas/aily-web-sdk 0.0.2-alpha.2 → 0.0.2-alpha.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/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
interface WebSDKCommonConfig {
|
|
8
8
|
/** Base URL for the Aily service */
|
|
9
|
-
baseURL
|
|
9
|
+
baseURL?: string;
|
|
10
10
|
/** Additional headers to send with requests */
|
|
11
11
|
headers?: Record<string, string>;
|
|
12
12
|
/** APAAS application info for API authentication */
|
|
@@ -108,7 +108,7 @@ interface WebSDKConfig {
|
|
|
108
108
|
*/
|
|
109
109
|
anonymous?: boolean;
|
|
110
110
|
/** Common configuration */
|
|
111
|
-
common
|
|
111
|
+
common?: WebSDKCommonConfig;
|
|
112
112
|
/** Conversation/conversion configuration (avatar, caching, etc.) */
|
|
113
113
|
conversion?: WebSDKConversionConfig;
|
|
114
114
|
/** Editor configuration (interaction mode, auto skill, etc.) */
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
interface WebSDKCommonConfig {
|
|
8
8
|
/** Base URL for the Aily service */
|
|
9
|
-
baseURL
|
|
9
|
+
baseURL?: string;
|
|
10
10
|
/** Additional headers to send with requests */
|
|
11
11
|
headers?: Record<string, string>;
|
|
12
12
|
/** APAAS application info for API authentication */
|
|
@@ -108,7 +108,7 @@ interface WebSDKConfig {
|
|
|
108
108
|
*/
|
|
109
109
|
anonymous?: boolean;
|
|
110
110
|
/** Common configuration */
|
|
111
|
-
common
|
|
111
|
+
common?: WebSDKCommonConfig;
|
|
112
112
|
/** Conversation/conversion configuration (avatar, caching, etc.) */
|
|
113
113
|
conversion?: WebSDKConversionConfig;
|
|
114
114
|
/** Editor configuration (interaction mode, auto skill, etc.) */
|