@byteplus/vepusher 1.1.1-rc.0 → 2.0.1-rc.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/index.es.d.ts +1768 -0
- package/dist/index.es.js +8301 -0
- package/dist/index.umd.js +93 -0
- package/package.json +9 -12
- package/LICENSE +0 -20
- package/README.md +0 -18
- package/dist/vepusher.es.js +0 -34248
- package/dist/vepusher.umd.js +0 -123
- package/es/capture.d.ts +0 -35
- package/es/connect.d.ts +0 -4
- package/es/constant.d.ts +0 -9
- package/es/device.d.ts +0 -25
- package/es/index.d.ts +0 -20
- package/es/interface/index.d.ts +0 -21
- package/es/observer.d.ts +0 -15
- package/es/pusher.d.ts +0 -19
- package/es/rtm.d.ts +0 -3
- package/es/state.d.ts +0 -34
- package/es/utils/convertToRTCDevice.d.ts +0 -4
- package/es/utils/http.d.ts +0 -0
- package/es/utils/logger.d.ts +0 -0
- package/es/videoMixing.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteplus/vepusher",
|
|
3
|
-
"version": "
|
|
4
|
-
"main": "index.js",
|
|
5
|
-
"module": "./dist/
|
|
6
|
-
"typings": "./
|
|
7
|
-
"license": "
|
|
3
|
+
"version": "2.0.1-rc.0",
|
|
4
|
+
"main": "./dist/index.es.js",
|
|
5
|
+
"module": "./dist/index.es.js",
|
|
6
|
+
"typings": "./dist/index.es.d.ts",
|
|
7
|
+
"license": "BSD-3-Clause",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
|
10
|
-
"
|
|
10
|
+
"!**/*.map"
|
|
11
11
|
],
|
|
12
12
|
"type": "module",
|
|
13
|
-
"description": "web push sdk
|
|
14
|
-
"keywords": [
|
|
15
|
-
|
|
16
|
-
"sdk"
|
|
17
|
-
],
|
|
18
|
-
"author": "hetanhong"
|
|
13
|
+
"description": "web push sdk",
|
|
14
|
+
"keywords": [],
|
|
15
|
+
"author": ""
|
|
19
16
|
}
|
package/LICENSE
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
## [@volcengine/vepusher] License
|
|
2
|
-
|
|
3
|
-
Copyright 2021 Beijing Volcanoengine Technology Ltd. All Rights Reserved.
|
|
4
|
-
|
|
5
|
-
The @volcengine/vepusher was developed by Beijing Volcanoengine Technology Ltd. (hereinafter
|
|
6
|
-
“Volcanoengine”). Any copyright or patent right is owned by and proprietary material of the
|
|
7
|
-
Volcanoengine.
|
|
8
|
-
|
|
9
|
-
@volcengine/vepusher is available under the @volcengine/vepusher and licensed under the
|
|
10
|
-
commercial license. Customers can contact service@volcengine.com for commercial licensing
|
|
11
|
-
options. Here is also a link to subscription services agreement:
|
|
12
|
-
https://www.volcengine.com/docs/6469.
|
|
13
|
-
|
|
14
|
-
Without Volcanoengine's prior written permission, any use of @volcengine/vepusher, in particular
|
|
15
|
-
any use for commercial purposes, is prohibited. This includes, without limitation, incorporation in a
|
|
16
|
-
commercial product, use in a commercial service, or production of other artefacts for commercial
|
|
17
|
-
purposes.
|
|
18
|
-
|
|
19
|
-
Without Volcanoengine's prior written permission, the @volcengine/vepusher may not be
|
|
20
|
-
reproduced, modified and/or made available in any form to any third party.
|
package/README.md
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
## install
|
|
2
|
-
|
|
3
|
-
```bash
|
|
4
|
-
yarn add @volcengine/vepusher
|
|
5
|
-
npm install @volcengine/vepusher
|
|
6
|
-
```
|
|
7
|
-
|
|
8
|
-
## quick start
|
|
9
|
-
|
|
10
|
-
```javascript
|
|
11
|
-
const livePusher = new VePusher()
|
|
12
|
-
|
|
13
|
-
// ScreenCapture
|
|
14
|
-
livePusher.capture.startScreenCapture()
|
|
15
|
-
|
|
16
|
-
// push rtm
|
|
17
|
-
livePusher.pusher.startPush(sdpUrl)
|
|
18
|
-
```
|