@viewberapp/chat 0.0.78 → 0.0.79
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 +1 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3,4 +3,5 @@ import useChat from "./react/useChat";
|
|
|
3
3
|
import useAppointmentChat from "./react/useAppointmentChat";
|
|
4
4
|
export { ConsoleLogger, RollbarLogger, NullLogger } from './logger';
|
|
5
5
|
export { Message, MessageRow, AdminMessage, ConnectionAndChannelStatusLabel } from './react';
|
|
6
|
+
export { getLatestMessageId } from './util';
|
|
6
7
|
export { Chat, useChat, useAppointmentChat };
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ 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.useAppointmentChat = exports.useChat = exports.Chat = exports.ConnectionAndChannelStatusLabel = exports.AdminMessage = exports.MessageRow = exports.Message = exports.NullLogger = exports.RollbarLogger = exports.ConsoleLogger = void 0;
|
|
6
|
+
exports.useAppointmentChat = exports.useChat = exports.Chat = exports.getLatestMessageId = exports.ConnectionAndChannelStatusLabel = exports.AdminMessage = exports.MessageRow = exports.Message = exports.NullLogger = exports.RollbarLogger = exports.ConsoleLogger = void 0;
|
|
7
7
|
const Chat_1 = __importDefault(require("./Chat"));
|
|
8
8
|
exports.Chat = Chat_1.default;
|
|
9
9
|
const useChat_1 = __importDefault(require("./react/useChat"));
|
|
@@ -19,4 +19,6 @@ Object.defineProperty(exports, "Message", { enumerable: true, get: function () {
|
|
|
19
19
|
Object.defineProperty(exports, "MessageRow", { enumerable: true, get: function () { return react_1.MessageRow; } });
|
|
20
20
|
Object.defineProperty(exports, "AdminMessage", { enumerable: true, get: function () { return react_1.AdminMessage; } });
|
|
21
21
|
Object.defineProperty(exports, "ConnectionAndChannelStatusLabel", { enumerable: true, get: function () { return react_1.ConnectionAndChannelStatusLabel; } });
|
|
22
|
+
var util_1 = require("./util");
|
|
23
|
+
Object.defineProperty(exports, "getLatestMessageId", { enumerable: true, get: function () { return util_1.getLatestMessageId; } });
|
|
22
24
|
//# 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;AAsBtB,eAtBG,cAAI,CAsBH;AArBR,8DAAsC;AAsBlC,kBAtBG,iBAAO,CAsBH;AArBX,oFAA4D;AAsBxD,6BAtBG,4BAAkB,CAsBH;AApBtB,mCAIkB;AAHd,uGAAA,aAAa,OAAA;AACb,uGAAA,aAAa,OAAA;AACb,oGAAA,UAAU,OAAA;AAGd,iCAKiB;AAJb,gGAAA,OAAO,OAAA;AACP,mGAAA,UAAU,OAAA;AACV,qGAAA,YAAY,OAAA;AACZ,wHAAA,+BAA+B,OAAA;AAGnC,+BAEgB;AADZ,0GAAA,kBAAkB,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viewberapp/chat",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.79",
|
|
4
4
|
"description": "Viewber chat",
|
|
5
5
|
"author": "Jacob <jacob.chen@viewber.co.uk>",
|
|
6
6
|
"homepage": "https://bitbucket.org/ezadr/viewberjs#readme",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"react": "^16.14.0",
|
|
42
42
|
"rollbar": "^2.25.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "40e9c5549354d92e6fe82aa6d83f4aa67da76ec3"
|
|
45
45
|
}
|