nim-web-sdk-ng 0.17.2 → 0.19.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/CHATROOM_BROWSER_SDK/ChatroomInterface.d.ts +9 -9
- package/dist/CHATROOM_BROWSER_SDK/CloudStorageServiceInterface.d.ts +13 -2
- package/dist/CHATROOM_BROWSER_SDK.js +4 -4
- package/dist/CHATROOM_MINIAPP_SDK/ChatroomInterface.d.ts +9 -9
- package/dist/CHATROOM_MINIAPP_SDK/CloudStorageServiceInterface.d.ts +13 -2
- package/dist/CHATROOM_MINIAPP_SDK.js +4 -4
- package/dist/CHATROOM_UNIAPP_SDK.js +4 -4
- package/dist/NIM_BROWSER_SDK/CloudStorageServiceInterface.d.ts +13 -2
- package/dist/NIM_BROWSER_SDK/NIMInterface.d.ts +23 -12
- package/dist/NIM_BROWSER_SDK.js +4 -4
- package/dist/NIM_MINIAPP_SDK/CloudStorageServiceInterface.d.ts +13 -2
- package/dist/NIM_MINIAPP_SDK/NIMInterface.d.ts +23 -12
- package/dist/NIM_MINIAPP_SDK.js +4 -4
- package/dist/NIM_UNIAPP_SDK.js +4 -4
- package/dist/QCHAT_BROWSER_SDK/CloudStorageServiceInterface.d.ts +13 -2
- package/dist/QCHAT_BROWSER_SDK/types.d.ts +9 -9
- package/dist/QCHAT_BROWSER_SDK.js +4 -4
- package/dist/QCHAT_UNIAPP_SDK.js +4 -4
- package/dist/esm/adapters.d.ts +2 -0
- package/dist/esm/chatroom/src/ChatroomInterface.d.ts +9 -9
- package/dist/esm/chatroom/src/CloudStorageServiceInterface.d.ts +13 -2
- package/dist/esm/index.js +4 -4
- package/dist/esm/nim/src/CloudStorageServiceInterface.d.ts +13 -2
- package/dist/esm/nim/src/NIMInterface.d.ts +23 -12
- package/dist/esm/qchat/src/CloudStorageServiceInterface.d.ts +13 -2
- package/dist/esm/qchat/src/types.d.ts +9 -9
- package/package.json +1 -1
|
@@ -326,36 +326,36 @@ export interface ChatroomOtherOptions {
|
|
|
326
326
|
/**
|
|
327
327
|
* @Multi_Lang_Tag
|
|
328
328
|
* @locale cn
|
|
329
|
-
*
|
|
329
|
+
* 指南针是否开启,默认是 true
|
|
330
330
|
* @locale
|
|
331
331
|
*
|
|
332
332
|
* @locale en
|
|
333
|
-
* Whether
|
|
333
|
+
* Whether compass is enabled. The default value is true
|
|
334
334
|
* @locale
|
|
335
335
|
*/
|
|
336
|
-
|
|
336
|
+
enableCompass?: boolean;
|
|
337
337
|
/**
|
|
338
338
|
* @Multi_Lang_Tag
|
|
339
339
|
* @locale cn
|
|
340
|
-
*
|
|
340
|
+
* 指南针数据默认端点
|
|
341
341
|
* @locale
|
|
342
342
|
*
|
|
343
343
|
* @locale en
|
|
344
|
-
*
|
|
344
|
+
* Default endpoint for compass data
|
|
345
345
|
* @locale
|
|
346
346
|
*/
|
|
347
|
-
|
|
347
|
+
compassDataEndpoint?: string;
|
|
348
348
|
/**
|
|
349
349
|
* @Multi_Lang_Tag
|
|
350
350
|
* @locale cn
|
|
351
|
-
*
|
|
351
|
+
* 是否开启数据上报,默认是true
|
|
352
352
|
* @locale
|
|
353
353
|
*
|
|
354
354
|
* @locale en
|
|
355
|
-
*
|
|
355
|
+
* Whether data reporting is enabled. The default value is true
|
|
356
356
|
* @locale
|
|
357
357
|
*/
|
|
358
|
-
|
|
358
|
+
isDataReportEnable?: boolean;
|
|
359
359
|
};
|
|
360
360
|
}
|
|
361
361
|
/**
|
|
@@ -132,14 +132,25 @@ export interface NIMEModuleParamCloudStorageConfig {
|
|
|
132
132
|
/**
|
|
133
133
|
* @Multi_Lang_Tag
|
|
134
134
|
* @locale cn
|
|
135
|
-
*
|
|
135
|
+
* 小程序、UniApp上传地址
|
|
136
136
|
* @locale
|
|
137
137
|
*
|
|
138
138
|
* @locale en
|
|
139
|
-
*
|
|
139
|
+
* MiniApp, UniApp upload address
|
|
140
140
|
* @locale
|
|
141
141
|
*/
|
|
142
142
|
commonUploadHost?: string;
|
|
143
|
+
/**
|
|
144
|
+
* @Multi_Lang_Tag
|
|
145
|
+
* @locale cn
|
|
146
|
+
* 小程序、UniApp上传地址备用域名
|
|
147
|
+
* @locale
|
|
148
|
+
*
|
|
149
|
+
* @locale en
|
|
150
|
+
* MiniApp, UniApp upload backup address array
|
|
151
|
+
* @locale
|
|
152
|
+
*/
|
|
153
|
+
commonUploadHostBackupList?: string[];
|
|
143
154
|
/**
|
|
144
155
|
* @Multi_Lang_Tag
|
|
145
156
|
* @locale cn
|