yjz-web-sdk 1.0.11-beta.3 → 1.0.11-beta.4
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/README.md +90 -0
- package/lib/ScreenControlUtil-CeBJPwr0.js +5065 -0
- package/lib/index.d.ts +2 -2
- package/lib/uni/KeyboardControl.d.ts +53 -0
- package/lib/uni/Logger.d.ts +13 -0
- package/lib/uni/MouseTouchControl.d.ts +56 -0
- package/lib/uni/RemoteCanvasController.d.ts +13 -0
- package/lib/uni/RemoteController.d.ts +23 -0
- package/lib/uni/RemoteVideoController.d.ts +38 -0
- package/lib/uni/WebRTCWrapper.d.ts +57 -0
- package/lib/uni/constants.d.ts +42 -0
- package/lib/uni/index.d.ts +110 -0
- package/lib/uni/type.d.ts +10 -0
- package/lib/uni-sdk.js +1260 -0
- package/lib/yjz-web-sdk.js +13 -5045
- package/package.json +6 -5
- package/lib/core/data/TurnType.d.ts +0 -21
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yjz-web-sdk",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.11-beta.
|
|
4
|
+
"version": "1.0.11-beta.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "针对于亚矩阵项目的云手机投屏和屏幕控制",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -11,10 +11,11 @@
|
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
13
|
"import": "./lib/yjz-web-sdk.js",
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
"types": "./lib/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./uni-sdk": {
|
|
17
|
+
"import": "./lib/uni-sdk.js",
|
|
18
|
+
"types": "./lib/uni/index.d.ts"
|
|
18
19
|
}
|
|
19
20
|
},
|
|
20
21
|
"files": [
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export type TurnServerConfig = {
|
|
2
|
-
urls: string;
|
|
3
|
-
username?: string;
|
|
4
|
-
credential?: string;
|
|
5
|
-
};
|
|
6
|
-
export interface TurnTestResult extends TurnServerConfig {
|
|
7
|
-
rtt: number;
|
|
8
|
-
}
|
|
9
|
-
export type PublicTurnTestResult = {
|
|
10
|
-
urls: string;
|
|
11
|
-
rtt: number;
|
|
12
|
-
};
|
|
13
|
-
export type TurnTestSummary = {
|
|
14
|
-
best?: PublicTurnTestResult;
|
|
15
|
-
all: PublicTurnTestResult[];
|
|
16
|
-
};
|
|
17
|
-
export interface TurnSelectionResult {
|
|
18
|
-
url?: string;
|
|
19
|
-
rtt?: number;
|
|
20
|
-
error?: string;
|
|
21
|
-
}
|