@rocket.chat/ddp-client 1.0.5 → 1.0.6-rc.1
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.d.ts +4 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -4
- package/dist/index.js.map +1 -1
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export * from './DDPSDK';
|
|
2
2
|
export * from './legacy/RocketchatSDKLegacy';
|
|
3
3
|
export * from './livechat/LivechatClientImpl';
|
|
4
|
-
export * from './livechat/types/LivechatSDK';
|
|
5
|
-
export * from './types/ClientStream';
|
|
6
|
-
export * from './types/methods';
|
|
7
|
-
export * from './types/streams';
|
|
4
|
+
export type * from './livechat/types/LivechatSDK';
|
|
5
|
+
export type * from './types/ClientStream';
|
|
6
|
+
export type * from './types/methods';
|
|
7
|
+
export type * from './types/streams';
|
|
8
8
|
export type { SDK } from './types/SDK';
|
|
9
9
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,mBAAmB,8BAA8B,CAAC;AAClD,mBAAmB,sBAAsB,CAAC;AAC1C,mBAAmB,iBAAiB,CAAC;AACrC,mBAAmB,iBAAiB,CAAC;AACrC,YAAY,EAAE,GAAG,EAAE,MAAM,aAAa,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -17,8 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./DDPSDK"), exports);
|
|
18
18
|
__exportStar(require("./legacy/RocketchatSDKLegacy"), exports);
|
|
19
19
|
__exportStar(require("./livechat/LivechatClientImpl"), exports);
|
|
20
|
-
__exportStar(require("./livechat/types/LivechatSDK"), exports);
|
|
21
|
-
__exportStar(require("./types/ClientStream"), exports);
|
|
22
|
-
__exportStar(require("./types/methods"), exports);
|
|
23
|
-
__exportStar(require("./types/streams"), exports);
|
|
24
20
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,+DAA6C;AAC7C,gEAA8C
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,+DAA6C;AAC7C,gEAA8C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rocket.chat/ddp-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6-rc.1",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"typings": "./dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -9,28 +9,28 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc -p tsconfig.build.json",
|
|
11
11
|
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput",
|
|
12
|
-
"lint": "eslint
|
|
13
|
-
"lint:fix": "eslint --
|
|
12
|
+
"lint": "eslint .",
|
|
13
|
+
"lint:fix": "eslint --fix .",
|
|
14
14
|
"test": "jest",
|
|
15
15
|
"testunit": "jest",
|
|
16
16
|
"typecheck": "tsc --noEmit"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@rocket.chat/api-client": "^0.2.
|
|
20
|
-
"@rocket.chat/core-typings": "~8.
|
|
21
|
-
"@rocket.chat/media-signaling": "^0.
|
|
22
|
-
"@rocket.chat/rest-typings": "^8.
|
|
19
|
+
"@rocket.chat/api-client": "^0.2.53-rc.1",
|
|
20
|
+
"@rocket.chat/core-typings": "~8.3.0-rc.1",
|
|
21
|
+
"@rocket.chat/media-signaling": "^0.2.0-rc.0",
|
|
22
|
+
"@rocket.chat/rest-typings": "^8.3.0-rc.1"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@rocket.chat/jest-presets": "~0.0.
|
|
25
|
+
"@rocket.chat/jest-presets": "~0.0.2-rc.0",
|
|
26
26
|
"@rocket.chat/tsconfig": "=0.0.0",
|
|
27
27
|
"@types/jest": "~30.0.0",
|
|
28
|
-
"@types/ws": "^8.
|
|
29
|
-
"eslint": "~
|
|
28
|
+
"@types/ws": "^8.18.1",
|
|
29
|
+
"eslint": "~9.39.3",
|
|
30
30
|
"jest": "~30.2.0",
|
|
31
31
|
"jest-websocket-mock": "~2.5.0",
|
|
32
32
|
"typescript": "~5.9.3",
|
|
33
|
-
"ws": "~8.
|
|
33
|
+
"ws": "~8.19.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@rocket.chat/emitter": "*"
|