larksr_websdk 3.3.104 → 3.3.105
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/api.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface GetTaskResult {
|
|
|
40
40
|
videoInputAutoStart?: number;
|
|
41
41
|
liveStreaming?: number;
|
|
42
42
|
mobileKeyboardType?: number;
|
|
43
|
+
imeFirstNotice?: number;
|
|
43
44
|
}
|
|
44
45
|
export interface StartAppInfo {
|
|
45
46
|
appliId: string;
|
|
@@ -91,6 +92,7 @@ export interface StartAppInfo {
|
|
|
91
92
|
mobileKeyboardType?: number;
|
|
92
93
|
showWebMenu?: number;
|
|
93
94
|
frameRate?: number;
|
|
95
|
+
imeFirstNotice?: number;
|
|
94
96
|
}
|
|
95
97
|
declare type HostAppliGetUrlReturnParams = {
|
|
96
98
|
appliId: string;
|
|
@@ -218,6 +218,11 @@ export interface IAppliParams {
|
|
|
218
218
|
* 自动同步客户端分辨率时忽略云端桌面分辨率大小限制
|
|
219
219
|
*/
|
|
220
220
|
ignoreCloudDesktopResolution: boolean;
|
|
221
|
+
/**
|
|
222
|
+
* 强制横屏模式时使用屏幕宽高判断是否横屏
|
|
223
|
+
*/
|
|
224
|
+
ignoreScreenOrientation: boolean;
|
|
225
|
+
imeFirstNotice: number;
|
|
221
226
|
}
|
|
222
227
|
export declare enum AppliType {
|
|
223
228
|
DESKTOP = 1,
|
|
@@ -293,6 +298,8 @@ export declare class AppliParams implements IAppliParams {
|
|
|
293
298
|
showWebMenu: number;
|
|
294
299
|
forceResolution: boolean;
|
|
295
300
|
ignoreCloudDesktopResolution: boolean;
|
|
301
|
+
ignoreScreenOrientation: boolean;
|
|
302
|
+
imeFirstNotice: number;
|
|
296
303
|
static copyAndCreate(params?: IAppliParams): AppliParams;
|
|
297
304
|
static setUpWithSDKConfig(params: IAppliParams, config: ILarkSRConfig): AppliParams;
|
|
298
305
|
}
|
package/dist/types/larksr.d.ts
CHANGED
|
@@ -523,6 +523,10 @@ interface ILarkSRConfig {
|
|
|
523
523
|
* 自动同步客户端分辨率时忽略云端桌面分辨率大小限制
|
|
524
524
|
*/
|
|
525
525
|
ignoreCloudDesktopResolution?: boolean;
|
|
526
|
+
/**
|
|
527
|
+
* 强制横屏模式时使用屏幕宽高判断是否横屏
|
|
528
|
+
*/
|
|
529
|
+
ignoreScreenOrientation?: boolean;
|
|
526
530
|
}
|
|
527
531
|
declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
|
|
528
532
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "larksr_websdk",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.105",
|
|
4
4
|
"description": "Larksr websdk. Easy to build a cloud render client for larksr system or ue4 pixelstreaming.docs: https://paraversetechnology.github.io/en/webclient_sdk/",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pingxingyun",
|
package/types/api.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface GetTaskResult {
|
|
|
40
40
|
videoInputAutoStart?: number;
|
|
41
41
|
liveStreaming?: number;
|
|
42
42
|
mobileKeyboardType?: number;
|
|
43
|
+
imeFirstNotice?: number;
|
|
43
44
|
}
|
|
44
45
|
export interface StartAppInfo {
|
|
45
46
|
appliId: string;
|
|
@@ -91,6 +92,7 @@ export interface StartAppInfo {
|
|
|
91
92
|
mobileKeyboardType?: number;
|
|
92
93
|
showWebMenu?: number;
|
|
93
94
|
frameRate?: number;
|
|
95
|
+
imeFirstNotice?: number;
|
|
94
96
|
}
|
|
95
97
|
declare type HostAppliGetUrlReturnParams = {
|
|
96
98
|
appliId: string;
|
package/types/appli_params.d.ts
CHANGED
|
@@ -218,6 +218,11 @@ export interface IAppliParams {
|
|
|
218
218
|
* 自动同步客户端分辨率时忽略云端桌面分辨率大小限制
|
|
219
219
|
*/
|
|
220
220
|
ignoreCloudDesktopResolution: boolean;
|
|
221
|
+
/**
|
|
222
|
+
* 强制横屏模式时使用屏幕宽高判断是否横屏
|
|
223
|
+
*/
|
|
224
|
+
ignoreScreenOrientation: boolean;
|
|
225
|
+
imeFirstNotice: number;
|
|
221
226
|
}
|
|
222
227
|
export declare enum AppliType {
|
|
223
228
|
DESKTOP = 1,
|
|
@@ -293,6 +298,8 @@ export declare class AppliParams implements IAppliParams {
|
|
|
293
298
|
showWebMenu: number;
|
|
294
299
|
forceResolution: boolean;
|
|
295
300
|
ignoreCloudDesktopResolution: boolean;
|
|
301
|
+
ignoreScreenOrientation: boolean;
|
|
302
|
+
imeFirstNotice: number;
|
|
296
303
|
static copyAndCreate(params?: IAppliParams): AppliParams;
|
|
297
304
|
static setUpWithSDKConfig(params: IAppliParams, config: ILarkSRConfig): AppliParams;
|
|
298
305
|
}
|
package/types/larksr.d.ts
CHANGED
|
@@ -523,6 +523,10 @@ interface ILarkSRConfig {
|
|
|
523
523
|
* 自动同步客户端分辨率时忽略云端桌面分辨率大小限制
|
|
524
524
|
*/
|
|
525
525
|
ignoreCloudDesktopResolution?: boolean;
|
|
526
|
+
/**
|
|
527
|
+
* 强制横屏模式时使用屏幕宽高判断是否横屏
|
|
528
|
+
*/
|
|
529
|
+
ignoreScreenOrientation?: boolean;
|
|
526
530
|
}
|
|
527
531
|
declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
|
|
528
532
|
/**
|