@formant/realtime-sdk 1.4.2 → 1.4.3
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 +21 -32
- package/dist/client/AuthClient.d.ts +1 -1
- package/dist/common/redact.d.ts +0 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +7 -5
- package/dist/model/IFilter.d.ts +2 -2
- package/dist/model/ILoginRequest.d.ts +0 -2
- package/dist/model/IUser.d.ts +0 -1
- package/package.json +5 -19
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
/*!
|
|
2
8
|
* The buffer module from node.js, for the browser.
|
|
3
9
|
*
|
|
@@ -8,12 +14,8 @@
|
|
|
8
14
|
/*!
|
|
9
15
|
* The buffer module from node.js, for the browser.
|
|
10
16
|
*
|
|
11
|
-
* @author Feross Aboukhadijeh <
|
|
17
|
+
* @author Feross Aboukhadijeh <http://feross.org>
|
|
12
18
|
* @license MIT
|
|
13
19
|
*/
|
|
14
20
|
|
|
15
21
|
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
16
|
-
|
|
17
|
-
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
18
|
-
|
|
19
|
-
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
package/dist/model/IFilter.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ITagFilter } from "./ITagFilter";
|
|
2
1
|
import { ITagSets } from "./ITagSets";
|
|
3
2
|
import { StreamType } from "./StreamType";
|
|
4
3
|
import { Uuid } from "./Uuid";
|
|
5
|
-
export interface IFilter
|
|
4
|
+
export interface IFilter {
|
|
6
5
|
deviceIds?: Uuid[];
|
|
7
6
|
names?: string[];
|
|
8
7
|
types?: StreamType[];
|
|
8
|
+
tags?: ITagSets | ITagSets[];
|
|
9
9
|
notTags?: ITagSets | ITagSets[];
|
|
10
10
|
notNames?: string[];
|
|
11
11
|
}
|
package/dist/model/IUser.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formant/realtime-sdk",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/realtime-sdk/src/index.d.ts",
|
|
@@ -15,10 +15,8 @@
|
|
|
15
15
|
"maybe-make-protos": "if [ -z ${LERNA_PACKAGE_NAME} ]; then cd ../../../ && make protos_ts && cd -; fi"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@types/generic-pool": "^3.8.1",
|
|
19
|
-
"@types/google-protobuf": "~3.7.0",
|
|
20
18
|
"env-var": "^7.4.0",
|
|
21
|
-
"
|
|
19
|
+
"@types/google-protobuf": "~3.7.0"
|
|
22
20
|
},
|
|
23
21
|
"devDependencies": {
|
|
24
22
|
"@formant/client": "*",
|
|
@@ -26,28 +24,16 @@
|
|
|
26
24
|
"@formant/model": "*",
|
|
27
25
|
"@formant/protos": "*",
|
|
28
26
|
"@formant/rtc-client": "*",
|
|
29
|
-
"assert": "^2.1.0",
|
|
30
|
-
"browserify-zlib": "^0.2.0",
|
|
31
|
-
"buffer": "^6.0.3",
|
|
32
27
|
"circular-dependency-plugin": "^5.2.2",
|
|
33
28
|
"copy-webpack-plugin": "^6.4.1",
|
|
34
|
-
"crypto-browserify": "^3.12.0",
|
|
35
29
|
"file-loader": "^5.1.0",
|
|
36
30
|
"fork-ts-checker-webpack-plugin": "^6.5.3",
|
|
37
|
-
"https-browserify": "^1.0.0",
|
|
38
|
-
"os-browserify": "^0.3.0",
|
|
39
|
-
"path-browserify": "^1.0.1",
|
|
40
|
-
"process": "^0.11.10",
|
|
41
31
|
"rimraf": "^5.0.1",
|
|
42
|
-
"stream-browserify": "^3.0.0",
|
|
43
|
-
"stream-http": "^3.2.0",
|
|
44
32
|
"terser-webpack-plugin": "^2.3.5",
|
|
45
|
-
"ts-loader": "^
|
|
33
|
+
"ts-loader": "^6.2.1",
|
|
46
34
|
"tsc-alias": "^1.4.1",
|
|
47
|
-
"
|
|
48
|
-
"webpack": "^
|
|
49
|
-
"webpack-bundle-analyzer": "^4.9.0",
|
|
50
|
-
"webpack-filter-warnings-plugin": "^1.2.1"
|
|
35
|
+
"webpack": "^4.42.0",
|
|
36
|
+
"webpack-bundle-analyzer": "^4.9.0"
|
|
51
37
|
},
|
|
52
38
|
"author": "",
|
|
53
39
|
"description": "",
|