@twilio/conversations 2.2.0-rc.12 → 2.2.0-rc.13
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/CHANGELOG.md +10 -0
- package/README.md +20 -16
- package/builds/browser.js +2 -5
- package/builds/browser.js.map +1 -1
- package/builds/lib.d.ts +1 -4
- package/builds/lib.js +2 -5
- package/builds/lib.js.map +1 -1
- package/builds/twilio-conversations.js +15 -10
- package/builds/twilio-conversations.min.js +1 -1
- package/dist/client.js +1 -4
- package/dist/client.js.map +1 -1
- package/dist/packages/conversations/package.json.js +1 -1
- package/docs/classes/Client.html +0 -4
- package/docs/index.html +20 -16
- package/docs/modules.html +20 -16
- package/package.json +2 -2
package/builds/lib.d.ts
CHANGED
@@ -1965,7 +1965,7 @@ type ClientEvents = {
|
|
1965
1965
|
updateReasons: UserUpdateReason[];
|
1966
1966
|
}) => void;
|
1967
1967
|
stateChanged: (state: State) => void;
|
1968
|
-
initialized: (
|
1968
|
+
initialized: () => void;
|
1969
1969
|
initFailed: ({ error }: {
|
1970
1970
|
error?: ConnectionError;
|
1971
1971
|
}) => void;
|
@@ -2236,9 +2236,6 @@ declare class Client extends ReplayEventEmitter<ClientEvents> {
|
|
2236
2236
|
static readonly stateChanged = "stateChanged";
|
2237
2237
|
/**
|
2238
2238
|
* Fired when the client has completed initialization successfully.
|
2239
|
-
*
|
2240
|
-
* Parameters:
|
2241
|
-
* 1. object `data` - Optional info object provided with the event
|
2242
2239
|
* @event
|
2243
2240
|
*/
|
2244
2241
|
static readonly initialized = "initialized";
|
package/builds/lib.js
CHANGED
@@ -7326,7 +7326,7 @@ function PushNotification(data) {
|
|
7326
7326
|
this.data = data.data || {};
|
7327
7327
|
});
|
7328
7328
|
|
7329
|
-
var version = "2.2.0-rc.
|
7329
|
+
var version = "2.2.0-rc.13";
|
7330
7330
|
|
7331
7331
|
function ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
7332
7332
|
|
@@ -7738,9 +7738,6 @@ exports.Client = Client_1 = (_class = /*#__PURE__*/function (_ReplayEventEmitter
|
|
7738
7738
|
|
7739
7739
|
/**
|
7740
7740
|
* Fired when the client has completed initialization successfully.
|
7741
|
-
*
|
7742
|
-
* Parameters:
|
7743
|
-
* 1. object `data` - Optional info object provided with the event
|
7744
7741
|
* @event
|
7745
7742
|
*/
|
7746
7743
|
|
@@ -8806,7 +8803,7 @@ exports.Client = Client_1 = (_class = /*#__PURE__*/function (_ReplayEventEmitter
|
|
8806
8803
|
this._resolveEnsureReady();
|
8807
8804
|
|
8808
8805
|
this.emit("stateChanged", "initialized");
|
8809
|
-
this.emit("initialized"
|
8806
|
+
this.emit("initialized");
|
8810
8807
|
|
8811
8808
|
case 34:
|
8812
8809
|
case "end":
|