@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 CHANGED
@@ -6,7 +6,7 @@
6
6
  */
7
7
  interface WebSDKCommonConfig {
8
8
  /** Base URL for the Aily service */
9
- baseURL: string;
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: WebSDKCommonConfig;
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: string;
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: WebSDKCommonConfig;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/aily-web-sdk",
3
- "version": "0.0.2-alpha.2",
3
+ "version": "0.0.2-alpha.3",
4
4
  "description": "Aily Web SDK - iframe-based chat panel integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",