larksr_websdk 3.2.341 → 3.2.343
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/doc/config.md +6 -0
- package/dist/doc/update.md +462 -447
- package/dist/larksr-web-sdk.min.js +1 -1
- package/dist/types/api.d.ts +1 -0
- package/dist/types/appli_params.d.ts +2 -0
- package/dist/types/larksr.d.ts +4 -0
- package/dist/types/protobuf/cloudlark.d.ts +8221 -8221
- package/package.json +71 -71
- package/types/api.d.ts +1 -0
- package/types/appli_params.d.ts +2 -0
- package/types/larksr.d.ts +4 -0
- package/types/protobuf/cloudlark.d.ts +8221 -8221
package/dist/types/api.d.ts
CHANGED
|
@@ -201,6 +201,7 @@ export interface IAppliParams {
|
|
|
201
201
|
videoInputAutoStart: boolean;
|
|
202
202
|
liveStreaming: boolean;
|
|
203
203
|
useSeparateMediaSharePeer: boolean;
|
|
204
|
+
mobileKeyboardType: number;
|
|
204
205
|
}
|
|
205
206
|
export declare enum AppliType {
|
|
206
207
|
DESKTOP = 1,
|
|
@@ -268,6 +269,7 @@ export declare class AppliParams implements IAppliParams {
|
|
|
268
269
|
videoInputAutoStart: boolean;
|
|
269
270
|
liveStreaming: boolean;
|
|
270
271
|
useSeparateMediaSharePeer: boolean;
|
|
272
|
+
mobileKeyboardType: number;
|
|
271
273
|
static copyAndCreate(params?: IAppliParams): AppliParams;
|
|
272
274
|
static setUpWithSDKConfig(params: IAppliParams, config: ILarkSRConfig): AppliParams;
|
|
273
275
|
}
|
package/dist/types/larksr.d.ts
CHANGED
|
@@ -471,6 +471,10 @@ interface ILarkSRConfig {
|
|
|
471
471
|
* 单独上传流程要求渲染服务器版本大于3290)
|
|
472
472
|
*/
|
|
473
473
|
useSeparateMediaSharePeer?: boolean;
|
|
474
|
+
/**
|
|
475
|
+
* 是否启用 canvas 渲染. 默认关闭
|
|
476
|
+
*/
|
|
477
|
+
enableCanvasRender?: boolean;
|
|
474
478
|
}
|
|
475
479
|
declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
|
|
476
480
|
/**
|