larksr_websdk 3.2.324 → 3.2.325
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/types/larksr.d.ts
CHANGED
|
@@ -362,6 +362,11 @@ interface ILarkSRConfig {
|
|
|
362
362
|
* 'touchScreen' | 'mouse'
|
|
363
363
|
*/
|
|
364
364
|
touchOperateMode?: 'touchScreen' | 'mouse';
|
|
365
|
+
/**
|
|
366
|
+
* 优先使用渲染服务器点对点连接外网ip
|
|
367
|
+
* 如果配置将覆盖后台设置的 preferPublicIp 参数
|
|
368
|
+
*/
|
|
369
|
+
preferPublicIp?: string;
|
|
365
370
|
}
|
|
366
371
|
declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
|
|
367
372
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "larksr_websdk",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.325",
|
|
4
4
|
"description": "Larksr websdk. Easy to build a cloud render client for larksr system or ue4 pixelstreaming.docs: https://pingxingyun.github.io/webclient_sdk/",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pingxingyun",
|
package/types/larksr.d.ts
CHANGED
|
@@ -362,6 +362,11 @@ interface ILarkSRConfig {
|
|
|
362
362
|
* 'touchScreen' | 'mouse'
|
|
363
363
|
*/
|
|
364
364
|
touchOperateMode?: 'touchScreen' | 'mouse';
|
|
365
|
+
/**
|
|
366
|
+
* 优先使用渲染服务器点对点连接外网ip
|
|
367
|
+
* 如果配置将覆盖后台设置的 preferPublicIp 参数
|
|
368
|
+
*/
|
|
369
|
+
preferPublicIp?: string;
|
|
365
370
|
}
|
|
366
371
|
declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
|
|
367
372
|
/**
|