@viewberapp/chat 0.0.4 → 0.0.7
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 +3 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +9 -11
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3,7 +3,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.Chat = void 0;
|
|
6
|
+
exports.useAppointmentChat = exports.useChat = exports.Chat = void 0;
|
|
7
7
|
const Chat_1 = __importDefault(require("./Chat"));
|
|
8
8
|
exports.Chat = Chat_1.default;
|
|
9
|
+
const useChat_1 = __importDefault(require("./react/useChat"));
|
|
10
|
+
exports.useChat = useChat_1.default;
|
|
11
|
+
const useAppointmentChat_1 = __importDefault(require("./react/useAppointmentChat"));
|
|
12
|
+
exports.useAppointmentChat = useAppointmentChat_1.default;
|
|
9
13
|
//# 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,YAAY,CAAC;;;;;;AACb,kDAA0B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;;;;AACb,kDAA0B;AAKtB,eALG,cAAI,CAKH;AAJR,8DAAsC;AAKlC,kBALG,iBAAO,CAKH;AAJX,oFAA4D;AAKxD,6BALG,4BAAkB,CAKH"}
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viewberapp/chat",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Viewber chat",
|
|
5
5
|
"author": "Jacob <jacob.chen@viewber.co.uk>",
|
|
6
6
|
"homepage": "https://bitbucket.org/ezadr/viewberjs#readme",
|
|
7
7
|
"license": "ISC",
|
|
8
|
-
"main": "dist/
|
|
9
|
-
"
|
|
10
|
-
"typings": "dist/chat.cjs.d.ts",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"typings": "dist/index.d.ts",
|
|
11
10
|
"directories": {
|
|
12
11
|
"dist": "dist",
|
|
13
12
|
"test": "__tests__"
|
|
@@ -29,15 +28,14 @@
|
|
|
29
28
|
"bugs": {
|
|
30
29
|
"url": "https://bitbucket.org/ezadr/viewberjs/issues"
|
|
31
30
|
},
|
|
32
|
-
"
|
|
33
|
-
"
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@types/react": "^16.14.0"
|
|
34
33
|
},
|
|
35
34
|
"peerDependencies": {
|
|
36
35
|
"axios": "^0.21.1",
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"@types/react": "^16.14.0"
|
|
36
|
+
"laravel-echo": "^1.12.0",
|
|
37
|
+
"react": "^16.14.0",
|
|
38
|
+
"rollbar": "^2.25.0"
|
|
41
39
|
},
|
|
42
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "b8dd28af983dc4b0455e952dfac5b74af13606b4"
|
|
43
41
|
}
|