@viewberapp/chat 0.0.55 → 0.0.56

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 CHANGED
@@ -3,3 +3,4 @@ import useChat from "./react/useChat";
3
3
  import useAppointmentChat from "./react/useAppointmentChat";
4
4
  export { ConsoleLogger, RollbarLogger, NullLogger } from './logger';
5
5
  export { Chat, useChat, useAppointmentChat };
6
+ export * from './util';
package/dist/index.js CHANGED
@@ -1,4 +1,18 @@
1
1
  'use strict';
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
2
16
  var __importDefault = (this && this.__importDefault) || function (mod) {
3
17
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
18
  };
@@ -14,4 +28,5 @@ var logger_1 = require("./logger");
14
28
  Object.defineProperty(exports, "ConsoleLogger", { enumerable: true, get: function () { return logger_1.ConsoleLogger; } });
15
29
  Object.defineProperty(exports, "RollbarLogger", { enumerable: true, get: function () { return logger_1.RollbarLogger; } });
16
30
  Object.defineProperty(exports, "NullLogger", { enumerable: true, get: function () { return logger_1.NullLogger; } });
31
+ __exportStar(require("./util"), exports);
17
32
  //# 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;AAWtB,eAXG,cAAI,CAWH;AAVR,8DAAsC;AAWlC,kBAXG,iBAAO,CAWH;AAVX,oFAA4D;AAWxD,6BAXG,4BAAkB,CAWH;AATtB,mCAIkB;AAHd,uGAAA,aAAa,OAAA;AACb,uGAAA,aAAa,OAAA;AACb,oGAAA,UAAU,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;AACb,kDAA0B;AAWtB,eAXG,cAAI,CAWH;AAVR,8DAAsC;AAWlC,kBAXG,iBAAO,CAWH;AAVX,oFAA4D;AAWxD,6BAXG,4BAAkB,CAWH;AATtB,mCAIkB;AAHd,uGAAA,aAAa,OAAA;AACb,uGAAA,aAAa,OAAA;AACb,oGAAA,UAAU,OAAA;AASd,yCAAuB"}
@@ -0,0 +1,3 @@
1
+ import { isNil } from "./isNil";
2
+ import { groupMessages } from "./groupMessages";
3
+ export { isNil, groupMessages };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.groupMessages = exports.isNil = void 0;
4
+ const isNil_1 = require("./isNil");
5
+ Object.defineProperty(exports, "isNil", { enumerable: true, get: function () { return isNil_1.isNil; } });
6
+ const groupMessages_1 = require("./groupMessages");
7
+ Object.defineProperty(exports, "groupMessages", { enumerable: true, get: function () { return groupMessages_1.groupMessages; } });
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/util/index.ts"],"names":[],"mappings":";;;AAAA,mCAAgC;AAI5B,sFAJK,aAAK,OAIL;AAHT,mDAAgD;AAI5C,8FAJK,6BAAa,OAIL"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viewberapp/chat",
3
- "version": "0.0.55",
3
+ "version": "0.0.56",
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": "24a1c91255a93949e1b6382a05436558e950f16f"
44
+ "gitHead": "bf6ee8662173f7448858f8e5a1ca53e853dda00d"
45
45
  }