@talkjs/core 1.5.7 → 1.5.9
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/README.md +8 -0
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.js +127 -137
- package/package.json +1 -1
package/dist/talkSession.js
CHANGED
|
@@ -4,6 +4,9 @@ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
|
4
4
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
6
|
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
+
var __typeError = (msg) => {
|
|
8
|
+
throw TypeError(msg);
|
|
9
|
+
};
|
|
7
10
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
11
|
var __spreadValues = (a2, b2) => {
|
|
9
12
|
for (var prop in b2 || (b2 = {}))
|
|
@@ -29,6 +32,10 @@ var __objRest = (source, exclude) => {
|
|
|
29
32
|
}
|
|
30
33
|
return target;
|
|
31
34
|
};
|
|
35
|
+
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
|
|
36
|
+
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
37
|
+
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
38
|
+
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
32
39
|
var __async = (__this, __arguments, generator) => {
|
|
33
40
|
return new Promise((resolve, reject) => {
|
|
34
41
|
var fulfilled = (value) => {
|
|
@@ -49,7 +56,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
49
56
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
50
57
|
});
|
|
51
58
|
};
|
|
52
|
-
var _a;
|
|
59
|
+
var _a, _e2, _t2;
|
|
53
60
|
function e(e2, s2) {
|
|
54
61
|
if (s2.ok) return s2.value.data;
|
|
55
62
|
if ("SESSION_DESTROYED" === s2.value) throw new Error(`${e2} failed because the session was destroyed`);
|
|
@@ -498,14 +505,14 @@ class x {
|
|
|
498
505
|
this.sent = true;
|
|
499
506
|
}
|
|
500
507
|
}
|
|
501
|
-
class
|
|
508
|
+
class T extends x {
|
|
502
509
|
constructor(e2, t2) {
|
|
503
510
|
super(t2, () => {
|
|
504
511
|
this.sendSubscribe(), this.sendGet();
|
|
505
512
|
}), this.connection = e2, this.getCalls = [], this.subscribeCalls = [];
|
|
506
513
|
}
|
|
507
514
|
canPush(e2, t2) {
|
|
508
|
-
return
|
|
515
|
+
return T.isCorrectBatchTypeFor(e2, t2);
|
|
509
516
|
}
|
|
510
517
|
static isCorrectBatchTypeFor(e2, t2) {
|
|
511
518
|
return s(t2, ["users", "*"]) && ("GET" === e2 || "SUBSCRIBE" === e2);
|
|
@@ -531,12 +538,12 @@ class I extends x {
|
|
|
531
538
|
this.connection.call("SUBSCRIBE", ["users"], { ids: e2 }).then((e3) => this.subscribeCalls.forEach((t2) => t2.deferred.resolve(e3)));
|
|
532
539
|
}
|
|
533
540
|
}
|
|
534
|
-
class
|
|
541
|
+
class I extends x {
|
|
535
542
|
constructor(e2, t2, s2) {
|
|
536
543
|
super(s2, () => this.sendMutate()), this.conversationId = e2, this.connection = t2, this.calls = [];
|
|
537
544
|
}
|
|
538
545
|
canPush(e2, t2) {
|
|
539
|
-
return !!
|
|
546
|
+
return !!I.isCorrectBatchTypeFor(e2, t2) && t2[1] === this.conversationId;
|
|
540
547
|
}
|
|
541
548
|
static isCorrectBatchTypeFor(e2, t2) {
|
|
542
549
|
return s(t2, ["conversations", "*", "participants", "*"]) && ("PUT" === e2 || "POST" === e2 || "PATCH" === e2);
|
|
@@ -578,10 +585,10 @@ class D {
|
|
|
578
585
|
return this.connection.isConnected();
|
|
579
586
|
}
|
|
580
587
|
createEmptyBatchFor(e2, t2) {
|
|
581
|
-
if (
|
|
582
|
-
if (
|
|
588
|
+
if (T.isCorrectBatchTypeFor(e2, t2)) return new T(this.connection, () => this.pendingBatch = null);
|
|
589
|
+
if (I.isCorrectBatchTypeFor(e2, t2)) {
|
|
583
590
|
const e3 = t2[1];
|
|
584
|
-
return new
|
|
591
|
+
return new I(e3, this.connection, () => this.pendingBatch = null);
|
|
585
592
|
}
|
|
586
593
|
return null;
|
|
587
594
|
}
|
|
@@ -697,18 +704,18 @@ class N {
|
|
|
697
704
|
function _(e2) {
|
|
698
705
|
return Object.freeze(e2);
|
|
699
706
|
}
|
|
700
|
-
function
|
|
707
|
+
function O(e2) {
|
|
701
708
|
return _(e2.map((e3) => function(e4) {
|
|
702
709
|
switch (e4.type) {
|
|
703
710
|
case "text":
|
|
704
|
-
return Object.freeze({ type: "text", children:
|
|
711
|
+
return Object.freeze({ type: "text", children: P(e4.children) });
|
|
705
712
|
case "file":
|
|
706
713
|
case "location":
|
|
707
714
|
return Object.freeze(e4);
|
|
708
715
|
}
|
|
709
716
|
}(e3)));
|
|
710
717
|
}
|
|
711
|
-
function
|
|
718
|
+
function P(e2) {
|
|
712
719
|
return _(e2.map((e3) => function(e4) {
|
|
713
720
|
if ("string" == typeof e4) return e4;
|
|
714
721
|
switch (e4.type) {
|
|
@@ -720,7 +727,7 @@ function O(e2) {
|
|
|
720
727
|
case "link":
|
|
721
728
|
case "actionLink":
|
|
722
729
|
case "actionButton":
|
|
723
|
-
return Object.freeze(__spreadProps(__spreadValues({}, e4), { children:
|
|
730
|
+
return Object.freeze(__spreadProps(__spreadValues({}, e4), { children: P(e4.children) }));
|
|
724
731
|
case "mention":
|
|
725
732
|
case "autoLink":
|
|
726
733
|
case "codeSpan":
|
|
@@ -931,6 +938,20 @@ class J {
|
|
|
931
938
|
}
|
|
932
939
|
}
|
|
933
940
|
var Y, Q = {};
|
|
941
|
+
!function() {
|
|
942
|
+
if (Y) return Q;
|
|
943
|
+
function e2(e3) {
|
|
944
|
+
return String.fromCharCode(parseInt(e3.slice(1), 16));
|
|
945
|
+
}
|
|
946
|
+
function t2(e3) {
|
|
947
|
+
return `%${`00${e3.charCodeAt(0).toString(16)}`.slice(-2)}`;
|
|
948
|
+
}
|
|
949
|
+
Y = 1, Object.defineProperty(Q, "__esModule", { value: true }), Q.encode = function(t3) {
|
|
950
|
+
return btoa(encodeURIComponent(t3).replace(/%[0-9A-F]{2}/g, e2));
|
|
951
|
+
}, Q.decode = function(e3) {
|
|
952
|
+
return decodeURIComponent(Array.from(atob(e3), t2).join(""));
|
|
953
|
+
};
|
|
954
|
+
}();
|
|
934
955
|
function V(e2, t2) {
|
|
935
956
|
const s2 = t2.lastIndex;
|
|
936
957
|
let n2;
|
|
@@ -947,20 +968,7 @@ function K(e2, t2) {
|
|
|
947
968
|
t2 = e2.toString().replace(/^function\s*\(\)\s*\{\s*return\s*(.*);\s*\}\s*$/, "`$1`") + " was not true";
|
|
948
969
|
}
|
|
949
970
|
}
|
|
950
|
-
|
|
951
|
-
if (Y) return Q;
|
|
952
|
-
function e2(e3) {
|
|
953
|
-
return String.fromCharCode(parseInt(e3.slice(1), 16));
|
|
954
|
-
}
|
|
955
|
-
function t2(e3) {
|
|
956
|
-
return `%${`00${e3.charCodeAt(0).toString(16)}`.slice(-2)}`;
|
|
957
|
-
}
|
|
958
|
-
Y = 1, Object.defineProperty(Q, "__esModule", { value: true }), Q.encode = function(t3) {
|
|
959
|
-
return btoa(encodeURIComponent(t3).replace(/%[0-9A-F]{2}/g, e2));
|
|
960
|
-
}, Q.decode = function(e3) {
|
|
961
|
-
return decodeURIComponent(Array.from(atob(e3), t2).join(""));
|
|
962
|
-
};
|
|
963
|
-
}(), ((e2) => {
|
|
971
|
+
((e2) => {
|
|
964
972
|
function t2(e3) {
|
|
965
973
|
}
|
|
966
974
|
function s2(e3, t3) {
|
|
@@ -1015,9 +1023,9 @@ function re(e2, t2) {
|
|
|
1015
1023
|
const s2 = e2.map((e3) => function(e4, t3) {
|
|
1016
1024
|
if ("text" === e4.type) return function(e5, t4) {
|
|
1017
1025
|
const s3 = function(e6) {
|
|
1018
|
-
var _a2, _b, _c, _d,
|
|
1026
|
+
var _a2, _b, _c, _d, _e3, _f, _g, _h, _i, _j, _k, _l, _m;
|
|
1019
1027
|
let t5 = "";
|
|
1020
|
-
return e6.t && (t5 = `(${e6.t("CONTACT_INFORMATION_HIDDEN")})`), { formattedLinks: (_a2 = e6.formattedLinks) != null ? _a2 : "plaintext", markup: (_b = e6.markup) != null ? _b : false, useFallbackMentions: (_c = e6.useFallbackMentions) != null ? _c : false, sameTabLinkRules: (_d = e6.sameTabLinkRules) != null ? _d : [], enableEmojiImageFallback: (
|
|
1028
|
+
return e6.t && (t5 = `(${e6.t("CONTACT_INFORMATION_HIDDEN")})`), { formattedLinks: (_a2 = e6.formattedLinks) != null ? _a2 : "plaintext", markup: (_b = e6.markup) != null ? _b : false, useFallbackMentions: (_c = e6.useFallbackMentions) != null ? _c : false, sameTabLinkRules: (_d = e6.sameTabLinkRules) != null ? _d : [], enableEmojiImageFallback: (_e3 = e6.enableEmojiImageFallback) != null ? _e3 : false, highlight: (_f = e6.highlight) != null ? _f : [], contactInfo: (_g = e6.contactInfo) != null ? _g : false, suppression: (_h = e6.suppression) != null ? _h : new ne({ mode: "off" }), contactInfoHiddenText: (_k = (_j = e6.contactInfoHiddenText) != null ? _j : (_i = e6.suppression) == null ? void 0 : _i.replacement) != null ? _k : t5, customEmojiUrls: (_l = e6.customEmojiUrls) != null ? _l : {}, enableActions: (_m = e6.enableActions) != null ? _m : true };
|
|
1021
1029
|
}(t4);
|
|
1022
1030
|
return ie(e5, s3);
|
|
1023
1031
|
}(e4.children, t3);
|
|
@@ -1140,7 +1148,7 @@ class le extends G {
|
|
|
1140
1148
|
if (!e3.ok) return e3;
|
|
1141
1149
|
t2 = e3.value.data;
|
|
1142
1150
|
}
|
|
1143
|
-
return c({ lastChanged: e2, sender: null === t2.senderId ? null : this.realtimeClient.internalSubscribe(["users", t2.senderId]), data: { id: t2.id, type: t2.type, custom: _(t2.custom), createdAt: t2.createdAt, editedAt: t2.editedAt, referencedMessageId: t2.referencedMessageId, origin: t2.origin, plaintext: re(t2.content, {}), content:
|
|
1151
|
+
return c({ lastChanged: e2, sender: null === t2.senderId ? null : this.realtimeClient.internalSubscribe(["users", t2.senderId]), data: { id: t2.id, type: t2.type, custom: _(t2.custom), createdAt: t2.createdAt, editedAt: t2.editedAt, referencedMessageId: t2.referencedMessageId, origin: t2.origin, plaintext: re(t2.content, {}), content: O(t2.content), reactions: ue(t2.reactions) } });
|
|
1144
1152
|
});
|
|
1145
1153
|
}
|
|
1146
1154
|
refetch(e2) {
|
|
@@ -1173,7 +1181,7 @@ class le extends G {
|
|
|
1173
1181
|
messageEdited(e2, t2) {
|
|
1174
1182
|
this.mutate(e2, (s2) => {
|
|
1175
1183
|
if (null === s2.value.data) return s2;
|
|
1176
|
-
const n2 = s2.value.data.content, r2 = (i2 = n2, void 0 === (a2 = t2.diff.content) ? i2 :
|
|
1184
|
+
const n2 = s2.value.data.content, r2 = (i2 = n2, void 0 === (a2 = t2.diff.content) ? i2 : O(a2));
|
|
1177
1185
|
var i2, a2;
|
|
1178
1186
|
const o2 = n2 === r2 ? s2.value.data.plaintext : re(r2, {});
|
|
1179
1187
|
return c({ lastChanged: e2, sender: s2.value.sender, data: { id: s2.value.data.id, type: s2.value.data.type, createdAt: s2.value.data.createdAt, origin: s2.value.data.origin, referencedMessageId: s2.value.data.referencedMessageId, editedAt: j(s2.value.data.editedAt, t2.diff.editedAt), custom: $(s2.value.data.custom, t2.diff.custom), plaintext: o2, content: r2, reactions: he(s2.value.data.reactions, t2.diff.reactions) } });
|
|
@@ -1717,7 +1725,7 @@ class ke extends z {
|
|
|
1717
1725
|
fetchInitial(e2) {
|
|
1718
1726
|
return __async(this, null, function* () {
|
|
1719
1727
|
const t2 = yield xe({ realtimeClient: this.realtimeClient, count: 20 });
|
|
1720
|
-
return t2.ok ? null === t2.value.conversations ? c({ lastChanged: e2, stores: null, windowEnd: null }) :
|
|
1728
|
+
return t2.ok ? null === t2.value.conversations ? c({ lastChanged: e2, stores: null, windowEnd: null }) : Te({ seq: e2, conversations: t2.value.conversations, cursor: t2.value.nextCursor, getConvDataStore: this.getConvDataStore }) : t2;
|
|
1721
1729
|
});
|
|
1722
1730
|
}
|
|
1723
1731
|
teardownNested(e2) {
|
|
@@ -1775,7 +1783,7 @@ class ke extends z {
|
|
|
1775
1783
|
});
|
|
1776
1784
|
}
|
|
1777
1785
|
loadedMore(e2, t2) {
|
|
1778
|
-
this.mutate(e2, (s2) => null === s2.value.windowEnd ? s2 : t2.data.ok ? null === t2.data.value.conversations ? (console.warn("[TalkJS] When loading more conversations, the user stopped existing, which should be impossible."), s2) :
|
|
1786
|
+
this.mutate(e2, (s2) => null === s2.value.windowEnd ? s2 : t2.data.ok ? null === t2.data.value.conversations ? (console.warn("[TalkJS] When loading more conversations, the user stopped existing, which should be impossible."), s2) : Te({ seq: e2, prevStores: s2.value.stores, conversations: t2.data.value.conversations, cursor: t2.data.value.nextCursor, getConvDataStore: this.getConvDataStore }) : t2.data);
|
|
1779
1787
|
}
|
|
1780
1788
|
userCreated(e2, t2) {
|
|
1781
1789
|
this.mutate(e2, (e3) => null !== e3.value.stores ? e3 : c({ lastChanged: e3.value.lastChanged, stores: {}, windowEnd: null }));
|
|
@@ -1824,13 +1832,13 @@ function xe(_0) {
|
|
|
1824
1832
|
return r2.ok || "server" !== r2.where || 404 !== r2.value.status || "USER_NOT_FOUND" !== r2.value.errorCode ? r2 : c({ conversations: null, nextCursor: null });
|
|
1825
1833
|
});
|
|
1826
1834
|
}
|
|
1827
|
-
function
|
|
1835
|
+
function Te({ seq: e2, prevStores: t2, conversations: s2, cursor: n2, getConvDataStore: r2 }) {
|
|
1828
1836
|
const i2 = t2 ? __spreadValues({}, t2) : {};
|
|
1829
1837
|
for (const e3 of s2) void 0 === i2[e3.id] && (i2[e3.id] = r2(e3));
|
|
1830
1838
|
if (null === n2) return c({ lastChanged: e2, stores: i2, windowEnd: null });
|
|
1831
1839
|
return c({ lastChanged: e2, stores: i2, windowEnd: { cursor: n2, oldestMessageTs: Math.min(...s2.map((e3) => e3.lastMessageAt)) } });
|
|
1832
1840
|
}
|
|
1833
|
-
class
|
|
1841
|
+
class Ie extends z {
|
|
1834
1842
|
constructor(e2, t2, s2, n2, r2) {
|
|
1835
1843
|
super(e2, n2, r2), this.conversation = t2, this.realtimeClient = s2, this.unsubscribeDebounceMs = 5e3;
|
|
1836
1844
|
}
|
|
@@ -1985,14 +1993,14 @@ class Me {
|
|
|
1985
1993
|
}));
|
|
1986
1994
|
}
|
|
1987
1995
|
handlePublish(e2, t2) {
|
|
1988
|
-
var _a2, _b, _c, _d,
|
|
1996
|
+
var _a2, _b, _c, _d, _e3, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t3, _u, _v, _w, _x, _y, _z, _A, _B, _C, _D;
|
|
1989
1997
|
switch (t2.type) {
|
|
1990
1998
|
case "user.created":
|
|
1991
1999
|
return (_a2 = this.storeMap[`/users/${t2.userId}`]) == null ? void 0 : _a2.userCreated(e2, t2), (_b = this.storeMap["/me/conversations"]) == null ? void 0 : _b.userCreated(e2, t2), void ((_c = this.storeMap[`/users/${t2.userId}/online`]) == null ? void 0 : _c.userCreated(e2, t2));
|
|
1992
2000
|
case "user.edited":
|
|
1993
2001
|
return void ((_d = this.storeMap[`/users/${t2.userId}`]) == null ? void 0 : _d.userEdited(e2, t2));
|
|
1994
2002
|
case "side.created":
|
|
1995
|
-
return (
|
|
2003
|
+
return (_e3 = this.convDataStores[t2.conversationId]) == null ? void 0 : _e3.sideCreated(e2, t2), (_f = this.storeMap[`/me/conversations/${t2.conversationId}/messages`]) == null ? void 0 : _f.sideCreated(e2, t2), (_g = this.storeMap[`/me/conversations/${t2.conversationId}/participants`]) == null ? void 0 : _g.sideCreated(e2, t2), void ((_h = this.storeMap["/me/conversations"]) == null ? void 0 : _h.sideCreated(e2, t2));
|
|
1996
2004
|
case "side.edited":
|
|
1997
2005
|
return (_i = this.convDataStores[t2.conversationId]) == null ? void 0 : _i.sideEdited(e2, t2), void ((_j = this.storeMap["/me/conversations"]) == null ? void 0 : _j.sideEdited(e2, t2));
|
|
1998
2006
|
case "side.deleted":
|
|
@@ -2004,9 +2012,9 @@ class Me {
|
|
|
2004
2012
|
case "message.edited":
|
|
2005
2013
|
return void ((_r = this.storeMap[`/me/conversations/${t2.conversationId}/messages`]) == null ? void 0 : _r.messageEdited(e2, t2));
|
|
2006
2014
|
case "message.deleted":
|
|
2007
|
-
return void ((
|
|
2015
|
+
return void ((_s = this.storeMap[`/me/conversations/${t2.conversationId}/messages`]) == null ? void 0 : _s.messageDeleted(e2, t2));
|
|
2008
2016
|
case "typing.available":
|
|
2009
|
-
return void ((
|
|
2017
|
+
return void ((_t3 = this.storeMap[`/me/conversations/${t2.conversationId}/typing`]) == null ? void 0 : _t3.typingAvailable(e2, t2));
|
|
2010
2018
|
case "typing.changed":
|
|
2011
2019
|
return void ((_u = this.storeMap[`/me/conversations/${t2.conversationId}/typing`]) == null ? void 0 : _u.typingChanged(e2, t2));
|
|
2012
2020
|
case "conversation.cleared":
|
|
@@ -2134,7 +2142,7 @@ class Me {
|
|
|
2134
2142
|
const e3 = this.convDataStores[t2];
|
|
2135
2143
|
return { store: e3, unsubscribe: e3.registerInternalSubscription() };
|
|
2136
2144
|
}
|
|
2137
|
-
const s2 = new
|
|
2145
|
+
const s2 = new Ie(this.virtualSeq, e2, this.realtimeClient, this.emitMutex, { onTeardown: () => {
|
|
2138
2146
|
delete this.convDataStores[t2];
|
|
2139
2147
|
} });
|
|
2140
2148
|
return this.convDataStores[t2] = s2, { store: s2, unsubscribe: s2.registerInternalSubscription() };
|
|
@@ -2253,7 +2261,7 @@ class _e {
|
|
|
2253
2261
|
return this._realtimeClient.subscribe(["users", this.brandedId, "online"], e2);
|
|
2254
2262
|
}
|
|
2255
2263
|
}
|
|
2256
|
-
class
|
|
2264
|
+
class Oe {
|
|
2257
2265
|
constructor(e2, t2, s2) {
|
|
2258
2266
|
this.userId = e2, this.conversationId = t2, this._realtimeClient = s2;
|
|
2259
2267
|
}
|
|
@@ -2296,7 +2304,7 @@ class Pe {
|
|
|
2296
2304
|
});
|
|
2297
2305
|
}
|
|
2298
2306
|
}
|
|
2299
|
-
function
|
|
2307
|
+
function Pe(e2) {
|
|
2300
2308
|
const t2 = "-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz";
|
|
2301
2309
|
let s2 = 0;
|
|
2302
2310
|
const n2 = [], r2 = e2 === s2;
|
|
@@ -2691,10 +2699,10 @@ var tt, st = function() {
|
|
|
2691
2699
|
return "(?=(" + Ct + "))\\" + e2;
|
|
2692
2700
|
}, Et = function(e2) {
|
|
2693
2701
|
return "(?:" + At(e2) + "(?:\\." + At(e2 + 1) + "){0,126}|" + yt + ")";
|
|
2694
|
-
}, kt = new RegExp("[" + bt + "]"), xt = /(?:xn--vermgensberatung-pwb|xn--vermgensberater-ctb|xn--clchc0ea0b2g2a9gcd|xn--w4r85el8fhu5dnra|northwesternmutual|travelersinsurance|vermögensberatung|xn--3oq18vl8pn36a|xn--5su34j936bgsg|xn--bck1b9a5dre4c|xn--mgbai9azgqp6j|xn--mgberp4a5d4ar|xn--xkc2dl3a5ee0h|vermögensberater|xn--fzys8d69uvgm|xn--mgba7c0bbn0a|xn--xkc2al3hye2a|americanexpress|kerryproperties|sandvikcoromant|xn--i1b6b1a6a2e|xn--kcrx77d1x4a|xn--lgbbat1ad8j|xn--mgba3a4f16a|xn--mgbaakc7dvf|xn--mgbc0a9azcg|xn--nqv7fs00ema|afamilycompany|americanfamily|bananarepublic|cancerresearch|cookingchannel|kerrylogistics|weatherchannel|xn--54b7fta0cc|xn--6qq986b3xl|xn--80aqecdr1a|xn--b4w605ferd|xn--fiq228c5hs|xn--h2breg3eve|xn--jlq61u9w7b|xn--mgba3a3ejt|xn--mgbaam7a8h|xn--mgbayh7gpa|xn--mgbb9fbpob|xn--mgbbh1a71e|xn--mgbca7dzdo|xn--mgbi4ecexp|xn--mgbx4cd0ab|xn--rvc1e0am3e|international|lifeinsurance|spreadbetting|travelchannel|wolterskluwer|xn--eckvdtc9d|xn--fpcrj9c3d|xn--fzc2c9e2c|xn--h2brj9c8c|xn--tiq49xqyj|xn--yfro4i67o|xn--ygbi2ammx|construction|lplfinancial|scholarships|versicherung|xn--3e0b707e|xn--45br5cyl|xn--80adxhks|xn--80asehdb|xn--8y0a063a|xn--gckr3f0f|xn--mgb9awbf|xn--mgbab2bd|xn--mgbgu82a|xn--mgbpl2fh|xn--mgbt3dhd|xn--mk1bu44c|xn--ngbc5azd|xn--ngbe9e0a|xn--ogbpf8fl|xn--qcka1pmc|accountants|barclaycard|blackfriday|blockbuster|bridgestone|calvinklein|contractors|creditunion|engineering|enterprises|foodnetwork|investments|kerryhotels|lamborghini|motorcycles|olayangroup|photography|playstation|productions|progressive|redumbrella|rightathome|williamhill|xn--11b4c3d|xn--1ck2e1b|xn--1qqw23a|xn--2scrj9c|xn--3bst00m|xn--3ds443g|xn--3hcrj9c|xn--42c2d9a|xn--45brj9c|xn--55qw42g|xn--6frz82g|xn--80ao21a|xn--9krt00a|xn--cck2b3b|xn--czr694b|xn--d1acj3b|xn--efvy88h|xn--estv75g|xn--fct429k|xn--fjq720a|xn--flw351e|xn--g2xx48c|xn--gecrj9c|xn--gk3at1e|xn--h2brj9c|xn--hxt814e|xn--imr513n|xn--j6w193g|xn--jvr189m|xn--kprw13d|xn--kpry57d|xn--kpu716f|xn--mgbbh1a|xn--mgbtx2b|xn--mix891f|xn--nyqy26a|xn--otu796d|xn--pbt977c|xn--pgbs0dh|xn--q9jyb4c|xn--rhqv96g|xn--rovu88b|xn--s9brj9c|xn--ses554g|xn--t60b56a|xn--vuq861b|xn--w4rs40l|xn--xhq521b|xn--zfr164b|சிங்கப்பூர்|accountant|apartments|associates|basketball|bnpparibas|boehringer|capitalone|consulting|creditcard|cuisinella|eurovision|extraspace|foundation|healthcare|immobilien|industries|management|mitsubishi|nationwide|newholland|nextdirect|onyourside|properties|protection|prudential|realestate|republican|restaurant|schaeffler|swiftcover|tatamotors|technology|telefonica|university|vistaprint|vlaanderen|volkswagen|xn--30rr7y|xn--3pxu8k|xn--45q11c|xn--4gbrim|xn--55qx5d|xn--5tzm5g|xn--80aswg|xn--90a3ac|xn--9dbq2a|xn--9et52u|xn--c2br7g|xn--cg4bki|xn--czrs0t|xn--czru2d|xn--fiq64b|xn--fiqs8s|xn--fiqz9s|xn--io0a7i|xn--kput3i|xn--mxtq1m|xn--o3cw4h|xn--pssy2u|xn--unup4y|xn--wgbh1c|xn--wgbl6a|xn--y9a3aq|accenture|alfaromeo|allfinanz|amsterdam|analytics|aquarelle|barcelona|bloomberg|christmas|community|directory|education|equipment|fairwinds|financial|firestone|fresenius|frontdoor|fujixerox|furniture|goldpoint|hisamitsu|homedepot|homegoods|homesense|honeywell|institute|insurance|kuokgroup|ladbrokes|lancaster|landrover|lifestyle|marketing|marshalls|melbourne|microsoft|panasonic|passagens|pramerica|richardli|scjohnson|shangrila|solutions|statebank|statefarm|stockholm|travelers|vacations|xn--90ais|xn--c1avg|xn--d1alf|xn--e1a4c|xn--fhbei|xn--j1aef|xn--j1amh|xn--l1acc|xn--ngbrx|xn--nqv7f|xn--p1acf|xn--tckwe|xn--vhquv|yodobashi|abudhabi|airforce|allstate|attorney|barclays|barefoot|bargains|baseball|boutique|bradesco|broadway|brussels|budapest|builders|business|capetown|catering|catholic|chrysler|cipriani|cityeats|cleaning|clinique|clothing|commbank|computer|delivery|deloitte|democrat|diamonds|discount|discover|download|engineer|ericsson|esurance|etisalat|everbank|exchange|feedback|fidelity|firmdale|football|frontier|goodyear|grainger|graphics|guardian|hdfcbank|helsinki|holdings|hospital|infiniti|ipiranga|istanbul|jpmorgan|lighting|lundbeck|marriott|maserati|mckinsey|memorial|merckmsd|mortgage|movistar|observer|partners|pharmacy|pictures|plumbing|property|redstone|reliance|saarland|samsclub|security|services|shopping|showtime|softbank|software|stcgroup|supplies|symantec|training|uconnect|vanguard|ventures|verisign|woodside|xn--90ae|xn--node|xn--p1ai|xn--qxam|yokohama|السعودية|abogado|academy|agakhan|alibaba|android|athleta|auction|audible|auspost|avianca|banamex|bauhaus|bentley|bestbuy|booking|brother|bugatti|capital|caravan|careers|cartier|channel|charity|chintai|citadel|clubmed|college|cologne|comcast|company|compare|contact|cooking|corsica|country|coupons|courses|cricket|cruises|dentist|digital|domains|exposed|express|farmers|fashion|ferrari|ferrero|finance|fishing|fitness|flights|florist|flowers|forsale|frogans|fujitsu|gallery|genting|godaddy|grocery|guitars|hamburg|hangout|hitachi|holiday|hosting|hoteles|hotmail|hyundai|iselect|ismaili|jewelry|juniper|kitchen|komatsu|lacaixa|lancome|lanxess|lasalle|latrobe|leclerc|liaison|limited|lincoln|markets|metlife|monster|netbank|netflix|network|neustar|okinawa|oldnavy|organic|origins|philips|pioneer|politie|realtor|recipes|rentals|reviews|rexroth|samsung|sandvik|schmidt|schwarz|science|shiksha|shriram|singles|staples|starhub|storage|support|surgery|systems|temasek|theater|theatre|tickets|tiffany|toshiba|trading|walmart|wanggou|watches|weather|website|wedding|whoswho|windows|winners|xfinity|yamaxun|youtube|zuerich|католик|اتصالات|الجزائر|العليان|پاکستان|كاثوليك|موبايلي|இந்தியா|abarth|abbott|abbvie|active|africa|agency|airbus|airtel|alipay|alsace|alstom|anquan|aramco|author|bayern|beauty|berlin|bharti|blanco|bostik|boston|broker|camera|career|caseih|casino|center|chanel|chrome|church|circle|claims|clinic|coffee|comsec|condos|coupon|credit|cruise|dating|datsun|dealer|degree|dental|design|direct|doctor|dunlop|dupont|durban|emerck|energy|estate|events|expert|family|flickr|futbol|gallup|garden|george|giving|global|google|gratis|health|hermes|hiphop|hockey|hotels|hughes|imamat|insure|intuit|jaguar|joburg|juegos|kaufen|kinder|kindle|kosher|lancia|latino|lawyer|lefrak|living|locker|london|luxury|madrid|maison|makeup|market|mattel|mobile|mobily|monash|mormon|moscow|museum|mutual|nagoya|natura|nissan|nissay|norton|nowruz|office|olayan|online|oracle|orange|otsuka|pfizer|photos|physio|piaget|pictet|quebec|racing|realty|reisen|repair|report|review|rocher|rogers|ryukyu|safety|sakura|sanofi|school|schule|search|secure|select|shouji|soccer|social|stream|studio|supply|suzuki|swatch|sydney|taipei|taobao|target|tattoo|tennis|tienda|tjmaxx|tkmaxx|toyota|travel|unicom|viajes|viking|villas|virgin|vision|voting|voyage|vuelos|walter|warman|webcam|xihuan|yachts|yandex|zappos|москва|онлайн|ابوظبي|ارامكو|الاردن|المغرب|امارات|فلسطين|مليسيا|भारतम्|இலங்கை|ファッション|actor|adult|aetna|amfam|amica|apple|archi|audio|autos|azure|baidu|beats|bible|bingo|black|boats|bosch|build|canon|cards|chase|cheap|cisco|citic|click|cloud|coach|codes|crown|cymru|dabur|dance|deals|delta|dodge|drive|dubai|earth|edeka|email|epost|epson|faith|fedex|final|forex|forum|gallo|games|gifts|gives|glade|glass|globo|gmail|green|gripe|group|gucci|guide|homes|honda|horse|house|hyatt|ikano|intel|irish|iveco|jetzt|koeln|kyoto|lamer|lease|legal|lexus|lilly|linde|lipsy|lixil|loans|locus|lotte|lotto|lupin|macys|mango|media|miami|money|mopar|movie|nadex|nexus|nikon|ninja|nokia|nowtv|omega|osaka|paris|parts|party|phone|photo|pizza|place|poker|praxi|press|prime|promo|quest|radio|rehab|reise|ricoh|rocks|rodeo|rugby|salon|sener|seven|sharp|shell|shoes|skype|sling|smart|smile|solar|space|sport|stada|store|study|style|sucks|swiss|tatar|tires|tirol|tmall|today|tokyo|tools|toray|total|tours|trade|trust|tunes|tushu|ubank|vegas|video|vodka|volvo|wales|watch|weber|weibo|works|world|xerox|yahoo|zippo|ایران|بازار|بھارت|سودان|سورية|همراه|भारोत|संगठन|বাংলা|భారత్|ഭാരതം|嘉里大酒店|aarp|able|adac|aero|aigo|akdn|ally|amex|arab|army|arpa|arte|asda|asia|audi|auto|baby|band|bank|bbva|beer|best|bike|bing|blog|blue|bofa|bond|book|buzz|cafe|call|camp|care|cars|casa|case|cash|cbre|cern|chat|citi|city|club|cool|coop|cyou|data|date|dclk|deal|dell|desi|diet|dish|docs|doha|duck|duns|dvag|erni|fage|fail|fans|farm|fast|fiat|fido|film|fire|fish|flir|food|ford|free|fund|game|gbiz|gent|ggee|gift|gmbh|gold|golf|goog|guge|guru|hair|haus|hdfc|help|here|hgtv|host|hsbc|icbc|ieee|imdb|immo|info|itau|java|jeep|jobs|jprs|kddi|kiwi|kpmg|kred|land|lego|lgbt|lidl|life|like|limo|link|live|loan|loft|love|ltda|luxe|maif|meet|meme|menu|mini|mint|mobi|moda|moto|name|navy|news|next|nico|nike|ollo|open|page|pars|pccw|pics|ping|pink|play|plus|pohl|porn|post|prod|prof|qpon|raid|read|reit|rent|rest|rich|rmit|room|rsvp|ruhr|safe|sale|sarl|save|saxo|scor|scot|seat|seek|sexy|shaw|shia|shop|show|silk|sina|site|skin|sncf|sohu|song|sony|spot|star|surf|talk|taxi|team|tech|teva|tiaa|tips|town|toys|tube|vana|visa|viva|vivo|vote|voto|wang|weir|wien|wiki|wine|work|xbox|yoga|zara|zero|zone|дети|сайт|بارت|بيتك|ڀارت|تونس|شبكة|عراق|عمان|موقع|भारत|ভারত|ভাৰত|ਭਾਰਤ|ભારત|ଭାରତ|ಭಾರತ|ලංකා|グーグル|クラウド|ポイント|大众汽车|组织机构|電訊盈科|香格里拉|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bnl|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|cbs|ceb|ceo|cfa|cfd|com|crs|csc|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|edu|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jcp|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|net|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|off|one|ong|onl|ooo|org|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|qvc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|sca|scb|ses|sew|sex|sfr|ski|sky|soy|srl|srt|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|бел|ком|қаз|мкд|мон|орг|рус|срб|укр|հայ|קום|عرب|قطر|كوم|مصر|कॉम|नेट|คอม|ไทย|ストア|セール|みんな|中文网|天主教|我爱你|新加坡|淡马锡|诺基亚|飞利浦|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|ελ|бг|ею|рф|გე|닷넷|닷컴|삼성|한국|コム|世界|中信|中国|中國|企业|佛山|信息|健康|八卦|公司|公益|台湾|台灣|商城|商店|商标|嘉里|在线|大拿|娱乐|家電|工行|广东|微博|慈善|手机|手表|招聘|政务|政府|新闻|时尚|書籍|机构|游戏|澳門|点看|珠宝|移动|网址|网店|网站|网络|联通|谷歌|购物|通販|集团|食品|餐厅|香港)/, It = new RegExp("[" + bt + "!#$%&'*+/=?^_`{|}~-]"), Tt = new RegExp("^" + xt.source + "$"), Dt = function(e2) {
|
|
2702
|
+
}, kt = new RegExp("[" + bt + "]"), xt = /(?:xn--vermgensberatung-pwb|xn--vermgensberater-ctb|xn--clchc0ea0b2g2a9gcd|xn--w4r85el8fhu5dnra|northwesternmutual|travelersinsurance|vermögensberatung|xn--3oq18vl8pn36a|xn--5su34j936bgsg|xn--bck1b9a5dre4c|xn--mgbai9azgqp6j|xn--mgberp4a5d4ar|xn--xkc2dl3a5ee0h|vermögensberater|xn--fzys8d69uvgm|xn--mgba7c0bbn0a|xn--xkc2al3hye2a|americanexpress|kerryproperties|sandvikcoromant|xn--i1b6b1a6a2e|xn--kcrx77d1x4a|xn--lgbbat1ad8j|xn--mgba3a4f16a|xn--mgbaakc7dvf|xn--mgbc0a9azcg|xn--nqv7fs00ema|afamilycompany|americanfamily|bananarepublic|cancerresearch|cookingchannel|kerrylogistics|weatherchannel|xn--54b7fta0cc|xn--6qq986b3xl|xn--80aqecdr1a|xn--b4w605ferd|xn--fiq228c5hs|xn--h2breg3eve|xn--jlq61u9w7b|xn--mgba3a3ejt|xn--mgbaam7a8h|xn--mgbayh7gpa|xn--mgbb9fbpob|xn--mgbbh1a71e|xn--mgbca7dzdo|xn--mgbi4ecexp|xn--mgbx4cd0ab|xn--rvc1e0am3e|international|lifeinsurance|spreadbetting|travelchannel|wolterskluwer|xn--eckvdtc9d|xn--fpcrj9c3d|xn--fzc2c9e2c|xn--h2brj9c8c|xn--tiq49xqyj|xn--yfro4i67o|xn--ygbi2ammx|construction|lplfinancial|scholarships|versicherung|xn--3e0b707e|xn--45br5cyl|xn--80adxhks|xn--80asehdb|xn--8y0a063a|xn--gckr3f0f|xn--mgb9awbf|xn--mgbab2bd|xn--mgbgu82a|xn--mgbpl2fh|xn--mgbt3dhd|xn--mk1bu44c|xn--ngbc5azd|xn--ngbe9e0a|xn--ogbpf8fl|xn--qcka1pmc|accountants|barclaycard|blackfriday|blockbuster|bridgestone|calvinklein|contractors|creditunion|engineering|enterprises|foodnetwork|investments|kerryhotels|lamborghini|motorcycles|olayangroup|photography|playstation|productions|progressive|redumbrella|rightathome|williamhill|xn--11b4c3d|xn--1ck2e1b|xn--1qqw23a|xn--2scrj9c|xn--3bst00m|xn--3ds443g|xn--3hcrj9c|xn--42c2d9a|xn--45brj9c|xn--55qw42g|xn--6frz82g|xn--80ao21a|xn--9krt00a|xn--cck2b3b|xn--czr694b|xn--d1acj3b|xn--efvy88h|xn--estv75g|xn--fct429k|xn--fjq720a|xn--flw351e|xn--g2xx48c|xn--gecrj9c|xn--gk3at1e|xn--h2brj9c|xn--hxt814e|xn--imr513n|xn--j6w193g|xn--jvr189m|xn--kprw13d|xn--kpry57d|xn--kpu716f|xn--mgbbh1a|xn--mgbtx2b|xn--mix891f|xn--nyqy26a|xn--otu796d|xn--pbt977c|xn--pgbs0dh|xn--q9jyb4c|xn--rhqv96g|xn--rovu88b|xn--s9brj9c|xn--ses554g|xn--t60b56a|xn--vuq861b|xn--w4rs40l|xn--xhq521b|xn--zfr164b|சிங்கப்பூர்|accountant|apartments|associates|basketball|bnpparibas|boehringer|capitalone|consulting|creditcard|cuisinella|eurovision|extraspace|foundation|healthcare|immobilien|industries|management|mitsubishi|nationwide|newholland|nextdirect|onyourside|properties|protection|prudential|realestate|republican|restaurant|schaeffler|swiftcover|tatamotors|technology|telefonica|university|vistaprint|vlaanderen|volkswagen|xn--30rr7y|xn--3pxu8k|xn--45q11c|xn--4gbrim|xn--55qx5d|xn--5tzm5g|xn--80aswg|xn--90a3ac|xn--9dbq2a|xn--9et52u|xn--c2br7g|xn--cg4bki|xn--czrs0t|xn--czru2d|xn--fiq64b|xn--fiqs8s|xn--fiqz9s|xn--io0a7i|xn--kput3i|xn--mxtq1m|xn--o3cw4h|xn--pssy2u|xn--unup4y|xn--wgbh1c|xn--wgbl6a|xn--y9a3aq|accenture|alfaromeo|allfinanz|amsterdam|analytics|aquarelle|barcelona|bloomberg|christmas|community|directory|education|equipment|fairwinds|financial|firestone|fresenius|frontdoor|fujixerox|furniture|goldpoint|hisamitsu|homedepot|homegoods|homesense|honeywell|institute|insurance|kuokgroup|ladbrokes|lancaster|landrover|lifestyle|marketing|marshalls|melbourne|microsoft|panasonic|passagens|pramerica|richardli|scjohnson|shangrila|solutions|statebank|statefarm|stockholm|travelers|vacations|xn--90ais|xn--c1avg|xn--d1alf|xn--e1a4c|xn--fhbei|xn--j1aef|xn--j1amh|xn--l1acc|xn--ngbrx|xn--nqv7f|xn--p1acf|xn--tckwe|xn--vhquv|yodobashi|abudhabi|airforce|allstate|attorney|barclays|barefoot|bargains|baseball|boutique|bradesco|broadway|brussels|budapest|builders|business|capetown|catering|catholic|chrysler|cipriani|cityeats|cleaning|clinique|clothing|commbank|computer|delivery|deloitte|democrat|diamonds|discount|discover|download|engineer|ericsson|esurance|etisalat|everbank|exchange|feedback|fidelity|firmdale|football|frontier|goodyear|grainger|graphics|guardian|hdfcbank|helsinki|holdings|hospital|infiniti|ipiranga|istanbul|jpmorgan|lighting|lundbeck|marriott|maserati|mckinsey|memorial|merckmsd|mortgage|movistar|observer|partners|pharmacy|pictures|plumbing|property|redstone|reliance|saarland|samsclub|security|services|shopping|showtime|softbank|software|stcgroup|supplies|symantec|training|uconnect|vanguard|ventures|verisign|woodside|xn--90ae|xn--node|xn--p1ai|xn--qxam|yokohama|السعودية|abogado|academy|agakhan|alibaba|android|athleta|auction|audible|auspost|avianca|banamex|bauhaus|bentley|bestbuy|booking|brother|bugatti|capital|caravan|careers|cartier|channel|charity|chintai|citadel|clubmed|college|cologne|comcast|company|compare|contact|cooking|corsica|country|coupons|courses|cricket|cruises|dentist|digital|domains|exposed|express|farmers|fashion|ferrari|ferrero|finance|fishing|fitness|flights|florist|flowers|forsale|frogans|fujitsu|gallery|genting|godaddy|grocery|guitars|hamburg|hangout|hitachi|holiday|hosting|hoteles|hotmail|hyundai|iselect|ismaili|jewelry|juniper|kitchen|komatsu|lacaixa|lancome|lanxess|lasalle|latrobe|leclerc|liaison|limited|lincoln|markets|metlife|monster|netbank|netflix|network|neustar|okinawa|oldnavy|organic|origins|philips|pioneer|politie|realtor|recipes|rentals|reviews|rexroth|samsung|sandvik|schmidt|schwarz|science|shiksha|shriram|singles|staples|starhub|storage|support|surgery|systems|temasek|theater|theatre|tickets|tiffany|toshiba|trading|walmart|wanggou|watches|weather|website|wedding|whoswho|windows|winners|xfinity|yamaxun|youtube|zuerich|католик|اتصالات|الجزائر|العليان|پاکستان|كاثوليك|موبايلي|இந்தியா|abarth|abbott|abbvie|active|africa|agency|airbus|airtel|alipay|alsace|alstom|anquan|aramco|author|bayern|beauty|berlin|bharti|blanco|bostik|boston|broker|camera|career|caseih|casino|center|chanel|chrome|church|circle|claims|clinic|coffee|comsec|condos|coupon|credit|cruise|dating|datsun|dealer|degree|dental|design|direct|doctor|dunlop|dupont|durban|emerck|energy|estate|events|expert|family|flickr|futbol|gallup|garden|george|giving|global|google|gratis|health|hermes|hiphop|hockey|hotels|hughes|imamat|insure|intuit|jaguar|joburg|juegos|kaufen|kinder|kindle|kosher|lancia|latino|lawyer|lefrak|living|locker|london|luxury|madrid|maison|makeup|market|mattel|mobile|mobily|monash|mormon|moscow|museum|mutual|nagoya|natura|nissan|nissay|norton|nowruz|office|olayan|online|oracle|orange|otsuka|pfizer|photos|physio|piaget|pictet|quebec|racing|realty|reisen|repair|report|review|rocher|rogers|ryukyu|safety|sakura|sanofi|school|schule|search|secure|select|shouji|soccer|social|stream|studio|supply|suzuki|swatch|sydney|taipei|taobao|target|tattoo|tennis|tienda|tjmaxx|tkmaxx|toyota|travel|unicom|viajes|viking|villas|virgin|vision|voting|voyage|vuelos|walter|warman|webcam|xihuan|yachts|yandex|zappos|москва|онлайн|ابوظبي|ارامكو|الاردن|المغرب|امارات|فلسطين|مليسيا|भारतम्|இலங்கை|ファッション|actor|adult|aetna|amfam|amica|apple|archi|audio|autos|azure|baidu|beats|bible|bingo|black|boats|bosch|build|canon|cards|chase|cheap|cisco|citic|click|cloud|coach|codes|crown|cymru|dabur|dance|deals|delta|dodge|drive|dubai|earth|edeka|email|epost|epson|faith|fedex|final|forex|forum|gallo|games|gifts|gives|glade|glass|globo|gmail|green|gripe|group|gucci|guide|homes|honda|horse|house|hyatt|ikano|intel|irish|iveco|jetzt|koeln|kyoto|lamer|lease|legal|lexus|lilly|linde|lipsy|lixil|loans|locus|lotte|lotto|lupin|macys|mango|media|miami|money|mopar|movie|nadex|nexus|nikon|ninja|nokia|nowtv|omega|osaka|paris|parts|party|phone|photo|pizza|place|poker|praxi|press|prime|promo|quest|radio|rehab|reise|ricoh|rocks|rodeo|rugby|salon|sener|seven|sharp|shell|shoes|skype|sling|smart|smile|solar|space|sport|stada|store|study|style|sucks|swiss|tatar|tires|tirol|tmall|today|tokyo|tools|toray|total|tours|trade|trust|tunes|tushu|ubank|vegas|video|vodka|volvo|wales|watch|weber|weibo|works|world|xerox|yahoo|zippo|ایران|بازار|بھارت|سودان|سورية|همراه|भारोत|संगठन|বাংলা|భారత్|ഭാരതം|嘉里大酒店|aarp|able|adac|aero|aigo|akdn|ally|amex|arab|army|arpa|arte|asda|asia|audi|auto|baby|band|bank|bbva|beer|best|bike|bing|blog|blue|bofa|bond|book|buzz|cafe|call|camp|care|cars|casa|case|cash|cbre|cern|chat|citi|city|club|cool|coop|cyou|data|date|dclk|deal|dell|desi|diet|dish|docs|doha|duck|duns|dvag|erni|fage|fail|fans|farm|fast|fiat|fido|film|fire|fish|flir|food|ford|free|fund|game|gbiz|gent|ggee|gift|gmbh|gold|golf|goog|guge|guru|hair|haus|hdfc|help|here|hgtv|host|hsbc|icbc|ieee|imdb|immo|info|itau|java|jeep|jobs|jprs|kddi|kiwi|kpmg|kred|land|lego|lgbt|lidl|life|like|limo|link|live|loan|loft|love|ltda|luxe|maif|meet|meme|menu|mini|mint|mobi|moda|moto|name|navy|news|next|nico|nike|ollo|open|page|pars|pccw|pics|ping|pink|play|plus|pohl|porn|post|prod|prof|qpon|raid|read|reit|rent|rest|rich|rmit|room|rsvp|ruhr|safe|sale|sarl|save|saxo|scor|scot|seat|seek|sexy|shaw|shia|shop|show|silk|sina|site|skin|sncf|sohu|song|sony|spot|star|surf|talk|taxi|team|tech|teva|tiaa|tips|town|toys|tube|vana|visa|viva|vivo|vote|voto|wang|weir|wien|wiki|wine|work|xbox|yoga|zara|zero|zone|дети|сайт|بارت|بيتك|ڀارت|تونس|شبكة|عراق|عمان|موقع|भारत|ভারত|ভাৰত|ਭਾਰਤ|ભારત|ଭାରତ|ಭಾರತ|ලංකා|グーグル|クラウド|ポイント|大众汽车|组织机构|電訊盈科|香格里拉|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bnl|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|cbs|ceb|ceo|cfa|cfd|com|crs|csc|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|edu|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jcp|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|net|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|off|one|ong|onl|ooo|org|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|qvc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|sca|scb|ses|sew|sex|sfr|ski|sky|soy|srl|srt|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|бел|ком|қаз|мкд|мон|орг|рус|срб|укр|հայ|קום|عرب|قطر|كوم|مصر|कॉम|नेट|คอม|ไทย|ストア|セール|みんな|中文网|天主教|我爱你|新加坡|淡马锡|诺基亚|飞利浦|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|ελ|бг|ею|рф|გე|닷넷|닷컴|삼성|한국|コム|世界|中信|中国|中國|企业|佛山|信息|健康|八卦|公司|公益|台湾|台灣|商城|商店|商标|嘉里|在线|大拿|娱乐|家電|工行|广东|微博|慈善|手机|手表|招聘|政务|政府|新闻|时尚|書籍|机构|游戏|澳門|点看|珠宝|移动|网址|网店|网站|网络|联通|谷歌|购物|通販|集团|食品|餐厅|香港)/, Tt = new RegExp("[" + bt + "!#$%&'*+/=?^_`{|}~-]"), It = new RegExp("^" + xt.source + "$"), Dt = function(e2) {
|
|
2695
2703
|
function t2() {
|
|
2696
2704
|
var t3 = null !== e2 && e2.apply(this, arguments) || this;
|
|
2697
|
-
return t3.localPartCharRegex =
|
|
2705
|
+
return t3.localPartCharRegex = Tt, t3.strictTldRegex = It, t3;
|
|
2698
2706
|
}
|
|
2699
2707
|
return et(t2, e2), t2.prototype.parseMatches = function(e3) {
|
|
2700
2708
|
for (var t3 = this.tagBuilder, s2 = this.localPartCharRegex, n2 = this.strictTldRegex, r2 = [], i2 = e3.length, a2 = new St(), o2 = { m: "a", a: "i", i: "l", l: "t", t: "o", o: ":" }, u2 = 0, c2 = 0, l2 = a2; u2 < i2; ) {
|
|
@@ -2841,7 +2849,7 @@ var tt, st = function() {
|
|
|
2841
2849
|
var n2 = new RegExp("^((.?//)?[-." + bt + "]*[-" + bt + "]\\.[-" + bt + "]+)").exec(e3);
|
|
2842
2850
|
return null === n2 ? -1 : (s2 += n2[1].length, e3 = e3.slice(n2[1].length), /^[^-.A-Za-z0-9:\/?#]/.test(e3) ? s2 : -1);
|
|
2843
2851
|
}, t2;
|
|
2844
|
-
}(ut), Nt = new RegExp("#[_" + bt + "]{1,139}(?![_" + bt + "])", "g"), _t = new RegExp("[^" + bt + "]"),
|
|
2852
|
+
}(ut), Nt = new RegExp("#[_" + bt + "]{1,139}(?![_" + bt + "])", "g"), _t = new RegExp("[^" + bt + "]"), Ot = function(e2) {
|
|
2845
2853
|
function t2(t3) {
|
|
2846
2854
|
var s2 = e2.call(this, t3) || this;
|
|
2847
2855
|
return s2.serviceName = "twitter", s2.matcherRegex = Nt, s2.nonWordCharRegex = _t, s2.serviceName = t3.serviceName, s2;
|
|
@@ -2856,10 +2864,10 @@ var tt, st = function() {
|
|
|
2856
2864
|
}
|
|
2857
2865
|
return a2;
|
|
2858
2866
|
}, t2;
|
|
2859
|
-
}(ut),
|
|
2867
|
+
}(ut), Pt = new RegExp(/(?:(?:(?:(\+)?\d{1,3}[-\040.]?)?\(?\d{3}\)?[-\040.]?\d{3}[-\040.]?\d{4})|(?:(\+)(?:9[976]\d|8[987530]\d|6[987]\d|5[90]\d|42\d|3[875]\d|2[98654321]\d|9[8543210]|8[6421]|6[6543210]|5[87654321]|4[987654310]|3[9643210]|2[70]|7|1)[-\040.]?(?:\d[-\040.]?){6,12}\d+))([,;]+[0-9]+#?)*/.source + "|" + /(0([1-9]{1}-?[1-9]\d{3}|[1-9]{2}-?\d{3}|[1-9]{2}\d{1}-?\d{2}|[1-9]{2}\d{2}-?\d{1})-?\d{4}|0[789]0-?\d{4}-?\d{4}|050-?\d{4}-?\d{4})/.source, "g"), jt = function(e2) {
|
|
2860
2868
|
function t2() {
|
|
2861
2869
|
var t3 = null !== e2 && e2.apply(this, arguments) || this;
|
|
2862
|
-
return t3.matcherRegex =
|
|
2870
|
+
return t3.matcherRegex = Pt, t3;
|
|
2863
2871
|
}
|
|
2864
2872
|
return et(t2, e2), t2.prototype.parseMatches = function(e3) {
|
|
2865
2873
|
for (var t3, s2 = this.matcherRegex, n2 = this.tagBuilder, r2 = []; null !== (t3 = s2.exec(e3)); ) {
|
|
@@ -2926,10 +2934,10 @@ function Lt(e2, t2) {
|
|
|
2926
2934
|
x2(f2);
|
|
2927
2935
|
break;
|
|
2928
2936
|
case 11:
|
|
2929
|
-
|
|
2937
|
+
T2(f2);
|
|
2930
2938
|
break;
|
|
2931
2939
|
case 12:
|
|
2932
|
-
|
|
2940
|
+
I2(f2);
|
|
2933
2941
|
break;
|
|
2934
2942
|
case 13:
|
|
2935
2943
|
D2();
|
|
@@ -2961,28 +2969,28 @@ function Lt(e2, t2) {
|
|
|
2961
2969
|
c2++;
|
|
2962
2970
|
}
|
|
2963
2971
|
function m2(e3) {
|
|
2964
|
-
"<" === e3 &&
|
|
2972
|
+
"<" === e3 && P2();
|
|
2965
2973
|
}
|
|
2966
2974
|
function g2(e3) {
|
|
2967
|
-
"!" === e3 ? h2 = 13 : "/" === e3 ? (h2 = 2, p2 = new Gt(st(st({}, p2), { isClosing: true }))) : "<" === e3 ?
|
|
2975
|
+
"!" === e3 ? h2 = 13 : "/" === e3 ? (h2 = 2, p2 = new Gt(st(st({}, p2), { isClosing: true }))) : "<" === e3 ? P2() : ct.test(e3) ? (h2 = 3, p2 = new Gt(st(st({}, p2), { isOpening: true }))) : (h2 = 0, p2 = u2);
|
|
2968
2976
|
}
|
|
2969
2977
|
function v2(e3) {
|
|
2970
|
-
dt.test(e3) ? (p2 = new Gt(st(st({}, p2), { name: U2() })), h2 = 4) : "<" === e3 ?
|
|
2978
|
+
dt.test(e3) ? (p2 = new Gt(st(st({}, p2), { name: U2() })), h2 = 4) : "<" === e3 ? P2() : "/" === e3 ? (p2 = new Gt(st(st({}, p2), { name: U2() })), h2 = 12) : ">" === e3 ? (p2 = new Gt(st(st({}, p2), { name: U2() })), j2()) : ct.test(e3) || lt.test(e3) || ":" === e3 || O2();
|
|
2971
2979
|
}
|
|
2972
2980
|
function w2(e3) {
|
|
2973
|
-
">" === e3 ?
|
|
2981
|
+
">" === e3 ? O2() : ct.test(e3) ? h2 = 3 : O2();
|
|
2974
2982
|
}
|
|
2975
2983
|
function b2(e3) {
|
|
2976
|
-
dt.test(e3) || ("/" === e3 ? h2 = 12 : ">" === e3 ? j2() : "<" === e3 ?
|
|
2984
|
+
dt.test(e3) || ("/" === e3 ? h2 = 12 : ">" === e3 ? j2() : "<" === e3 ? P2() : "=" === e3 || pt.test(e3) || ft.test(e3) ? O2() : h2 = 5);
|
|
2977
2985
|
}
|
|
2978
2986
|
function y2(e3) {
|
|
2979
|
-
dt.test(e3) ? h2 = 6 : "/" === e3 ? h2 = 12 : "=" === e3 ? h2 = 7 : ">" === e3 ? j2() : "<" === e3 ?
|
|
2987
|
+
dt.test(e3) ? h2 = 6 : "/" === e3 ? h2 = 12 : "=" === e3 ? h2 = 7 : ">" === e3 ? j2() : "<" === e3 ? P2() : pt.test(e3) && O2();
|
|
2980
2988
|
}
|
|
2981
2989
|
function C2(e3) {
|
|
2982
|
-
dt.test(e3) || ("/" === e3 ? h2 = 12 : "=" === e3 ? h2 = 7 : ">" === e3 ? j2() : "<" === e3 ?
|
|
2990
|
+
dt.test(e3) || ("/" === e3 ? h2 = 12 : "=" === e3 ? h2 = 7 : ">" === e3 ? j2() : "<" === e3 ? P2() : pt.test(e3) ? O2() : h2 = 5);
|
|
2983
2991
|
}
|
|
2984
2992
|
function A2(e3) {
|
|
2985
|
-
dt.test(e3) || ('"' === e3 ? h2 = 8 : "'" === e3 ? h2 = 9 : /[>=`]/.test(e3) ?
|
|
2993
|
+
dt.test(e3) || ('"' === e3 ? h2 = 8 : "'" === e3 ? h2 = 9 : /[>=`]/.test(e3) ? O2() : "<" === e3 ? P2() : h2 = 10);
|
|
2986
2994
|
}
|
|
2987
2995
|
function E2(e3) {
|
|
2988
2996
|
'"' === e3 && (h2 = 11);
|
|
@@ -2991,22 +2999,22 @@ function Lt(e2, t2) {
|
|
|
2991
2999
|
"'" === e3 && (h2 = 11);
|
|
2992
3000
|
}
|
|
2993
3001
|
function x2(e3) {
|
|
2994
|
-
dt.test(e3) ? h2 = 4 : ">" === e3 ? j2() : "<" === e3 &&
|
|
2995
|
-
}
|
|
2996
|
-
function I2(e3) {
|
|
2997
|
-
dt.test(e3) ? h2 = 4 : "/" === e3 ? h2 = 12 : ">" === e3 ? j2() : "<" === e3 ? O2() : (h2 = 4, c2--);
|
|
3002
|
+
dt.test(e3) ? h2 = 4 : ">" === e3 ? j2() : "<" === e3 && P2();
|
|
2998
3003
|
}
|
|
2999
3004
|
function T2(e3) {
|
|
3005
|
+
dt.test(e3) ? h2 = 4 : "/" === e3 ? h2 = 12 : ">" === e3 ? j2() : "<" === e3 ? P2() : (h2 = 4, c2--);
|
|
3006
|
+
}
|
|
3007
|
+
function I2(e3) {
|
|
3000
3008
|
">" === e3 ? (p2 = new Gt(st(st({}, p2), { isClosing: true })), j2()) : h2 = 4;
|
|
3001
3009
|
}
|
|
3002
3010
|
function D2(t3) {
|
|
3003
|
-
"--" === e2.substr(c2, 2) ? (c2 += 2, p2 = new Gt(st(st({}, p2), { type: "comment" })), h2 = 14) : "DOCTYPE" === e2.substr(c2, 7).toUpperCase() ? (c2 += 7, p2 = new Gt(st(st({}, p2), { type: "doctype" })), h2 = 20) :
|
|
3011
|
+
"--" === e2.substr(c2, 2) ? (c2 += 2, p2 = new Gt(st(st({}, p2), { type: "comment" })), h2 = 14) : "DOCTYPE" === e2.substr(c2, 7).toUpperCase() ? (c2 += 7, p2 = new Gt(st(st({}, p2), { type: "doctype" })), h2 = 20) : O2();
|
|
3004
3012
|
}
|
|
3005
3013
|
function S2(e3) {
|
|
3006
|
-
"-" === e3 ? h2 = 15 : ">" === e3 ?
|
|
3014
|
+
"-" === e3 ? h2 = 15 : ">" === e3 ? O2() : h2 = 16;
|
|
3007
3015
|
}
|
|
3008
3016
|
function M2(e3) {
|
|
3009
|
-
"-" === e3 ? h2 = 18 : ">" === e3 ?
|
|
3017
|
+
"-" === e3 ? h2 = 18 : ">" === e3 ? O2() : h2 = 16;
|
|
3010
3018
|
}
|
|
3011
3019
|
function F2(e3) {
|
|
3012
3020
|
"-" === e3 && (h2 = 17);
|
|
@@ -3021,17 +3029,17 @@ function Lt(e2, t2) {
|
|
|
3021
3029
|
"-" === e3 ? h2 = 17 : ">" === e3 ? j2() : h2 = 16;
|
|
3022
3030
|
}
|
|
3023
3031
|
function _2(e3) {
|
|
3024
|
-
">" === e3 ? j2() : "<" === e3 &&
|
|
3032
|
+
">" === e3 ? j2() : "<" === e3 && P2();
|
|
3025
3033
|
}
|
|
3026
|
-
function
|
|
3034
|
+
function O2() {
|
|
3027
3035
|
h2 = 0, p2 = u2;
|
|
3028
3036
|
}
|
|
3029
|
-
function
|
|
3037
|
+
function P2() {
|
|
3030
3038
|
h2 = 1, p2 = new Gt({ idx: c2 });
|
|
3031
3039
|
}
|
|
3032
3040
|
function j2() {
|
|
3033
3041
|
var t3 = e2.slice(d2, p2.idx);
|
|
3034
|
-
t3 && i2(t3, d2), "comment" === p2.type ? a2(p2.idx) : "doctype" === p2.type ? o2(p2.idx) : (p2.isOpening && n2(p2.name, p2.idx), p2.isClosing && r2(p2.name, p2.idx)),
|
|
3042
|
+
t3 && i2(t3, d2), "comment" === p2.type ? a2(p2.idx) : "doctype" === p2.type ? o2(p2.idx) : (p2.isOpening && n2(p2.name, p2.idx), p2.isClosing && r2(p2.name, p2.idx)), O2(), d2 = c2 + 1;
|
|
3035
3043
|
}
|
|
3036
3044
|
function U2() {
|
|
3037
3045
|
var t3 = p2.idx + (p2.isClosing ? 2 : 1);
|
|
@@ -3139,12 +3147,12 @@ var Gt = function(e2) {
|
|
|
3139
3147
|
return this.replaceFn && (t2 = this.replaceFn.call(this.context, e3)), "string" == typeof t2 ? t2 : false === t2 ? e3.getMatchedText() : t2 instanceof Ve ? t2.toAnchorString() : e3.buildTag().toAnchorString();
|
|
3140
3148
|
}, e2.prototype.getMatchers = function() {
|
|
3141
3149
|
if (this.matchers) return this.matchers;
|
|
3142
|
-
var e3 = this.getTagBuilder(), t2 = [new
|
|
3150
|
+
var e3 = this.getTagBuilder(), t2 = [new Ot({ tagBuilder: e3, serviceName: this.hashtag }), new Dt({ tagBuilder: e3 }), new jt({ tagBuilder: e3 }), new Ht({ tagBuilder: e3, serviceName: this.mention }), new Rt({ tagBuilder: e3, stripPrefix: this.stripPrefix, stripTrailingSlash: this.stripTrailingSlash, decodePercentEncoding: this.decodePercentEncoding })];
|
|
3143
3151
|
return this.matchers = t2;
|
|
3144
3152
|
}, e2.prototype.getTagBuilder = function() {
|
|
3145
3153
|
var e3 = this.tagBuilder;
|
|
3146
3154
|
return e3 || (e3 = this.tagBuilder = new Ze({ newWindow: this.newWindow, truncate: this.truncate, className: this.className })), e3;
|
|
3147
|
-
}, e2.version = "3.14.3", e2.AnchorTagBuilder = Ze, e2.HtmlTag = Ve, e2.matcher = { Email: Dt, Hashtag:
|
|
3155
|
+
}, e2.version = "3.14.3", e2.AnchorTagBuilder = Ze, e2.HtmlTag = Ve, e2.matcher = { Email: Dt, Hashtag: Ot, Matcher: ut, Mention: Ht, Phone: jt, Url: Rt }, e2.match = { Email: nt, Hashtag: rt, Match: Ke, Mention: it, Phone: at, Url: ot }, e2;
|
|
3148
3156
|
}();
|
|
3149
3157
|
function Jt(e2, t2 = e2) {
|
|
3150
3158
|
return { type: "autolink", url: e2, text: t2 };
|
|
@@ -3318,9 +3326,9 @@ class gs {
|
|
|
3318
3326
|
participant(e2) {
|
|
3319
3327
|
if ("string" == typeof e2) {
|
|
3320
3328
|
if ("" === e2) throw new Error(`Creating ParticipantRef failed because ID "${e2}" is an empty string`);
|
|
3321
|
-
return new
|
|
3329
|
+
return new Oe(e2, this.id, this._realtimeClient);
|
|
3322
3330
|
}
|
|
3323
|
-
if ("brandedId" in e2) return new
|
|
3331
|
+
if ("brandedId" in e2) return new Oe(e2.id, this.id, this._realtimeClient);
|
|
3324
3332
|
throw new Error(`Creating ParticipantRef failed because user "${e2}" is not a string or a UserRef`);
|
|
3325
3333
|
}
|
|
3326
3334
|
message(e2) {
|
|
@@ -3377,7 +3385,7 @@ class gs {
|
|
|
3377
3385
|
}
|
|
3378
3386
|
send(t2) {
|
|
3379
3387
|
return __async(this, null, function* () {
|
|
3380
|
-
const s2 = { content: vs(t2), referencedMessageId: ws(t2), custom: "string" == typeof t2 ? void 0 : t2.custom, idempotencyKey:
|
|
3388
|
+
const s2 = { content: vs(t2), referencedMessageId: ws(t2), custom: "string" == typeof t2 ? void 0 : t2.custom, idempotencyKey: Pe((/* @__PURE__ */ new Date()).getTime()) }, n2 = yield this._realtimeClient.call("POST", ["conversations", this.brandedId, "messages"], s2), r2 = e("Send message to conversation " + this.id, n2);
|
|
3381
3389
|
return new fs(r2.id, this.brandedId, this._realtimeClient);
|
|
3382
3390
|
});
|
|
3383
3391
|
}
|
|
@@ -3444,63 +3452,39 @@ class bs {
|
|
|
3444
3452
|
return e2.includes("localhost") || e2.includes("localtest.me") || /^\d+\.\d+\.\d+\.\d+(:\d+)?$/.test(e2) ? new bs(`ws://${e2}/public_api/v1`, `http://${e2}/api/v0`, `http://${e2}/public_api/v1`) : new bs(`wss://${e2}/public_api/v1`, `https://${e2}/api/v0`, `https://${e2}/public_api/v1`);
|
|
3445
3453
|
}
|
|
3446
3454
|
}
|
|
3447
|
-
function ys({ method: e2, url: t2, data: s2, options: n2, attempts: r2, shouldRetry: i2, authProvider: o2 }) {
|
|
3455
|
+
function ys({ method: e2, url: t2, data: s2, options: n2, attempts: r2, shouldRetry: i2, authProvider: o2, errorTracker: u2 }) {
|
|
3448
3456
|
var _a2;
|
|
3449
3457
|
(!r2 || r2 <= 0) && (r2 = 1);
|
|
3450
|
-
const
|
|
3451
|
-
s2 instanceof FormData || (
|
|
3458
|
+
const c2 = { "x-talkjs-client-build": "jssdk-dev", "x-talkjs-client-date": "2025-11-04T15:29:42.017Z" };
|
|
3459
|
+
s2 instanceof FormData || (c2["Content-Type"] = (_a2 = n2 == null ? void 0 : n2.contentType) != null ? _a2 : "application/json");
|
|
3452
3460
|
return a(r2, () => __async(this, null, function* () {
|
|
3453
3461
|
if (o2) {
|
|
3454
3462
|
const e3 = yield o2.getToken();
|
|
3455
|
-
|
|
3463
|
+
c2.Authorization = `Bearer ${e3}`;
|
|
3456
3464
|
}
|
|
3457
|
-
return fetch(t2, { method: e2, headers:
|
|
3465
|
+
return fetch(t2, { method: e2, headers: c2, body: s2 }).then((e3) => {
|
|
3458
3466
|
if (e3.ok) return e3;
|
|
3459
3467
|
throw e3;
|
|
3460
3468
|
});
|
|
3461
3469
|
}), { initialDelay: 0.2, log: void 0, shouldRetry: (s3) => __async(this, null, function* () {
|
|
3462
|
-
return o2 && 401 === s3.status ? (
|
|
3470
|
+
return o2 && 401 === s3.status ? (u2 == null ? void 0 : u2.log(`401 error from ${e2} ${t2}, ${yield o2.getToken()}`), o2.refreshToken(), true) : i2 ? i2(s3) : !("status" in s3 && s3.status >= 400 && s3.status < 500);
|
|
3463
3471
|
}) }).catch((s3) => {
|
|
3464
3472
|
if (Math.random() < 0.1 && !t2.toString().startsWith("https://capture.trackjs.com")) {
|
|
3465
3473
|
const n3 = `Network Error for ${e2} ${t2}`;
|
|
3466
3474
|
if ("undefined" != typeof window) if (s3 instanceof Response) {
|
|
3467
|
-
s3.clone().text().then((e3) =>
|
|
3468
|
-
} else
|
|
3475
|
+
s3.clone().text().then((e3) => u2 == null ? void 0 : u2.log(`${n3} ${s3.status} ${e3} (10% logged)`));
|
|
3476
|
+
} else u2 == null ? void 0 : u2.log(`${n3} ${s3} (10% logged)`);
|
|
3469
3477
|
console.error("[TalkJS]", n3);
|
|
3470
3478
|
}
|
|
3471
3479
|
throw s3;
|
|
3472
3480
|
});
|
|
3473
3481
|
}
|
|
3474
|
-
|
|
3475
|
-
if (!("undefined" != typeof window && "undefined" != typeof document)) return { cdnHost: "test-hostname", appHost: "test-hostname", appProtocol: "http:", appWsProtocol: "ws:" };
|
|
3476
|
-
const e2 = function() {
|
|
3477
|
-
if (document.currentScript) return document.currentScript.src;
|
|
3478
|
-
try {
|
|
3479
|
-
throw new Error();
|
|
3480
|
-
} catch (e3) {
|
|
3481
|
-
const t3 = e3.stack.match(/https?:\/\/.*\.(js|jsx|ts|tsx)/);
|
|
3482
|
-
return t3 ? t3[0] : "";
|
|
3483
|
-
}
|
|
3484
|
-
}(), t2 = document.createElement("a");
|
|
3485
|
-
t2.href = e2;
|
|
3486
|
-
const s2 = t2.host, n2 = function(e3) {
|
|
3487
|
-
if (e3.match(/^cdn[.-]/)) return e3.replace(/^cdn/, "app");
|
|
3488
|
-
if ("talkjs.com" === e3) return "app.talkjs.com";
|
|
3489
|
-
return e3;
|
|
3490
|
-
}(s2), r2 = function(e3) {
|
|
3491
|
-
if (e3.match(/^app[.-]/)) return e3.replace(/^app/, "api");
|
|
3492
|
-
return e3 + "/public_api";
|
|
3493
|
-
}(n2), i2 = function(e3) {
|
|
3494
|
-
if (e3.match(/^app[.-]/)) return e3.replace(/^app/, "realtime");
|
|
3495
|
-
return e3 + "/public_api";
|
|
3496
|
-
}(n2), a2 = t2.protocol;
|
|
3497
|
-
return { cdnHost: s2, appHost: n2, restHost: r2, realtimeHost: i2, appProtocol: a2, appWsProtocol: "https:" === a2 ? "wss:" : "ws:" };
|
|
3498
|
-
}();
|
|
3499
|
-
const Ts = As.startsWith("app.talkjs.com");
|
|
3500
|
-
const Ds = "undefined" == typeof window ? { log: (e2) => Promise.resolve(), setData: (e2) => {
|
|
3501
|
-
} } : new class {
|
|
3482
|
+
class Cs {
|
|
3502
3483
|
constructor(e2) {
|
|
3503
|
-
|
|
3484
|
+
__privateAdd(this, _e2);
|
|
3485
|
+
__privateAdd(this, _t2);
|
|
3486
|
+
var _a2, _b, _c, _d;
|
|
3487
|
+
this._timeCreated = Date.now(), __privateSet(this, _e2, (_b = (_a2 = globalThis.document) == null ? void 0 : _a2.referrer) != null ? _b : ""), __privateSet(this, _t2, ((_d = (_c = globalThis.location) == null ? void 0 : _c.href) != null ? _d : globalThis.HermesInternal) ? "React Native Hermes" : ""), this._trackJSData = { customer: { application: "", correlationId: "", sessionId: "", token: "", userId: "", version: "dev-2025-11-04T15:29:42.017Z" }, entry: "direct", environment: { age: Date.now() - this._timeCreated, dependencies: {}, originalUrl: __privateGet(this, _t2), referrer: __privateGet(this, _e2), userAgent: window.navigator.userAgent }, metadata: [], nav: [], network: [], url: __privateGet(this, _t2), stack: "", timestamp: (/* @__PURE__ */ new Date()).toISOString(), version: "dev-2025-11-04T15:29:42.017Z", throttled: 0 }, this._url = `https://capture.trackjs.com/capture?token=${e2}`, this._trackJSData.customer.token = e2;
|
|
3504
3488
|
}
|
|
3505
3489
|
setData({ appId: e2, meId: t2, sessionId: s2 }) {
|
|
3506
3490
|
this._trackJSData.customer.userId = e2, this._trackJSData.customer.sessionId = `${e2}/${t2}`, this._trackJSData.customer.correlationId = s2;
|
|
@@ -3508,7 +3492,7 @@ const Ds = "undefined" == typeof window ? { log: (e2) => Promise.resolve(), setD
|
|
|
3508
3492
|
log(e2) {
|
|
3509
3493
|
return __async(this, null, function* () {
|
|
3510
3494
|
try {
|
|
3511
|
-
|
|
3495
|
+
0;
|
|
3512
3496
|
const t2 = __spreadProps(__spreadValues({}, this._trackJSData), { message: e2 });
|
|
3513
3497
|
yield ys({ method: "POST", url: this._url, data: JSON.stringify(t2), options: { contentType: "text/plain" } });
|
|
3514
3498
|
} catch (e3) {
|
|
@@ -3516,8 +3500,12 @@ const Ds = "undefined" == typeof window ? { log: (e2) => Promise.resolve(), setD
|
|
|
3516
3500
|
}
|
|
3517
3501
|
});
|
|
3518
3502
|
}
|
|
3519
|
-
}
|
|
3520
|
-
|
|
3503
|
+
}
|
|
3504
|
+
_e2 = new WeakMap();
|
|
3505
|
+
_t2 = new WeakMap();
|
|
3506
|
+
const As = { log: (e2) => Promise.resolve(), setData: (e2) => {
|
|
3507
|
+
} };
|
|
3508
|
+
class Es {
|
|
3521
3509
|
constructor(e2, t2 = {}) {
|
|
3522
3510
|
this._onSubscription = t2, this._handlers = {};
|
|
3523
3511
|
for (const t3 in e2) Object.hasOwnProperty.call(e2, t3) && (this._handlers[t3] = []);
|
|
@@ -3562,12 +3550,14 @@ class Ss {
|
|
|
3562
3550
|
return this.on(e2, t2), { unsubscribe: () => this.off(e2, t2) };
|
|
3563
3551
|
}
|
|
3564
3552
|
}
|
|
3565
|
-
class
|
|
3553
|
+
class ks {
|
|
3566
3554
|
constructor(e2, t2, s2, n2, r2, i2) {
|
|
3567
|
-
|
|
3555
|
+
this.appId = t2, this.userId = s2, this.tokenFetcher = r2, this.usingBokens = false, this.requestInProgress = false, this.eventEmitter = new Es({ tokenChanged(e3) {
|
|
3568
3556
|
}, tokenRefreshFailed(e3) {
|
|
3569
3557
|
}, tokenAccepted(e3) {
|
|
3570
|
-
} }), this.sessionExpiryWarningTimeoutId = void 0
|
|
3558
|
+
} }), this.sessionExpiryWarningTimeoutId = void 0;
|
|
3559
|
+
const a2 = "undefined" != typeof window && e2.restApiHttpUrl.includes("api.talkjs.com");
|
|
3560
|
+
if (this.errorTracker = a2 ? new Cs("970cd0be0fb74630b75c8451051299dc") : As, i2 && (n2 || r2)) throw new Error("[TalkJS] If providing a signature for authentication, you must not provide a token or tokenFetcher.");
|
|
3571
3561
|
n2 ? this.fetchToken(() => n2) : (r2 || (this.usingBokens = true, this.tokenFetcher = () => this.sendBokenRequest(e2, i2)), this.refreshToken());
|
|
3572
3562
|
}
|
|
3573
3563
|
get canRefreshToken() {
|
|
@@ -3656,7 +3646,7 @@ class Ms {
|
|
|
3656
3646
|
const e3 = function(e4) {
|
|
3657
3647
|
const t3 = e4.split(".");
|
|
3658
3648
|
if (3 !== t3.length) throw "Token does not contain exactly two `.`. Check that you generated your JWT correctly. It should be `<header>.<payload>.<signature>`.";
|
|
3659
|
-
return { header:
|
|
3649
|
+
return { header: xs(t3[0]), payload: xs(t3[1]) };
|
|
3660
3650
|
}(s2);
|
|
3661
3651
|
n2 = e3.header, r2 = e3.payload;
|
|
3662
3652
|
} catch (e3) {
|
|
@@ -3670,7 +3660,7 @@ class Ms {
|
|
|
3670
3660
|
const e3 = this.checkJwtPayload(r2);
|
|
3671
3661
|
t2.push(...e3);
|
|
3672
3662
|
}
|
|
3673
|
-
if (t2.length) if (this.usingBokens)
|
|
3663
|
+
if (t2.length) if (this.usingBokens) this.errorTracker.log(`JWT Errors detected by AuthProvider when using bokens: ${t2.join("\n")}`);
|
|
3674
3664
|
else {
|
|
3675
3665
|
console.warn("[TalkJS] Authentication token appears to be generated incorrectly. Will still attempt to authenticate, but TalkJS may not work as expected. See below for a description of any problems and how to fix them.");
|
|
3676
3666
|
const s3 = t2.length > 1;
|
|
@@ -3707,12 +3697,12 @@ class Ms {
|
|
|
3707
3697
|
if (e3.status >= 400 && e3.status < 500) throw `Unexpected HTTP ${e3.status} response when fetching auth token. Check that you configured the session correctly.`;
|
|
3708
3698
|
if (s2++, s2 >= 5) throw `Unexpected HTTP ${e3.status} response when fetching auth token, retrying did not help.`;
|
|
3709
3699
|
return true;
|
|
3710
|
-
} });
|
|
3700
|
+
}, errorTracker: this.errorTracker });
|
|
3711
3701
|
return (yield r2.json()).boken;
|
|
3712
3702
|
});
|
|
3713
3703
|
}
|
|
3714
3704
|
}
|
|
3715
|
-
function
|
|
3705
|
+
function xs(e2) {
|
|
3716
3706
|
try {
|
|
3717
3707
|
const t2 = e2.replace(/-/g, "+").replace(/_/g, "/"), s2 = decodeURIComponent(atob(t2).split("").map((e3) => "%" + ("00" + e3.charCodeAt(0).toString(16)).slice(-2)).join(""));
|
|
3718
3708
|
return JSON.parse(s2);
|
|
@@ -3720,7 +3710,7 @@ function Fs(e2) {
|
|
|
3720
3710
|
throw `Could not base64-decode and JSON-parse token section: ${e2}. Check that you base-64 encoded the section correctly.`;
|
|
3721
3711
|
}
|
|
3722
3712
|
}
|
|
3723
|
-
class
|
|
3713
|
+
class Ts {
|
|
3724
3714
|
constructor(e2) {
|
|
3725
3715
|
this.target = e2;
|
|
3726
3716
|
}
|
|
@@ -3728,7 +3718,7 @@ class Bs {
|
|
|
3728
3718
|
return this.target;
|
|
3729
3719
|
}
|
|
3730
3720
|
}
|
|
3731
|
-
const
|
|
3721
|
+
const Is = new class {
|
|
3732
3722
|
constructor() {
|
|
3733
3723
|
this.registry = {};
|
|
3734
3724
|
}
|
|
@@ -3736,7 +3726,7 @@ const Rs = new class {
|
|
|
3736
3726
|
var _a2;
|
|
3737
3727
|
const t2 = this.key(e2), s2 = (_a2 = this.registry[t2]) == null ? void 0 : _a2.deref();
|
|
3738
3728
|
if (s2) return s2;
|
|
3739
|
-
const n2 = new
|
|
3729
|
+
const n2 = new Ss(e2), r2 = globalThis.WeakRef ? new WeakRef(n2) : new Ts(n2);
|
|
3740
3730
|
return this.registry[t2] = r2, n2;
|
|
3741
3731
|
}
|
|
3742
3732
|
deregister(e2, t2) {
|
|
@@ -3747,11 +3737,11 @@ const Rs = new class {
|
|
|
3747
3737
|
return `${e2}:${t2}`;
|
|
3748
3738
|
}
|
|
3749
3739
|
}();
|
|
3750
|
-
function
|
|
3740
|
+
function Ds(e2) {
|
|
3751
3741
|
if (!e2) throw new Error("[TalkJS] Must provide an options object to `getTalkSession`");
|
|
3752
|
-
return e2.forceCreateNew ? new
|
|
3742
|
+
return e2.forceCreateNew ? new Ss(e2) : Is.getOrCreate(e2);
|
|
3753
3743
|
}
|
|
3754
|
-
class
|
|
3744
|
+
class Ss {
|
|
3755
3745
|
constructor(e2) {
|
|
3756
3746
|
!function(e3) {
|
|
3757
3747
|
function t3(e4, t4) {
|
|
@@ -3761,13 +3751,13 @@ class _s {
|
|
|
3761
3751
|
void 0 !== e3.tokenFetcher && t3("function" == typeof e3.tokenFetcher, "The `tokenFetcher` property of TalkSession#constructor must be a function.");
|
|
3762
3752
|
}(e2);
|
|
3763
3753
|
const { appId: t2, userId: s2, token: n2, tokenFetcher: r2, signature: i2 } = e2;
|
|
3764
|
-
this._appId = t2, this._apiUrls = e2.apiUrls ? new bs(e2.apiUrls.realtimeWsApiUrl, e2.apiUrls.internalHttpApiUrl, e2.apiUrls.restApiHttpUrl) : bs.fromHost(e2.host), this._authProvider = new
|
|
3754
|
+
this._appId = t2, this._apiUrls = e2.apiUrls ? new bs(e2.apiUrls.realtimeWsApiUrl, e2.apiUrls.internalHttpApiUrl, e2.apiUrls.restApiHttpUrl) : bs.fromHost(e2.host), this._authProvider = new ks(this._apiUrls, t2, s2, n2, r2, i2);
|
|
3765
3755
|
const a2 = Math.random().toString().split(".")[1];
|
|
3766
|
-
this._realtimeClient = new Be(this._apiUrls.getRealtimeWsUrl(t2, s2, "1.5.
|
|
3756
|
+
this._realtimeClient = new Be(this._apiUrls.getRealtimeWsUrl(t2, s2, "1.5.8", a2, e2.clientBuild), s2, this._authProvider), this.currentUser = new _e(this._realtimeClient.userId, this._realtimeClient), this._terminationReason = o(), this._terminationReason.promise.then((e3) => {
|
|
3767
3757
|
console.error(`[TalkSession] ${e3}`);
|
|
3768
3758
|
}), function(e3, t3, s3) {
|
|
3769
3759
|
return __async(this, null, function* () {
|
|
3770
|
-
return ys({ method: "GET", url: `${t3}/${e3}/app`, authProvider: s3 }).then((e4) => 200 === e4.status || 404 !== e4.status && (console.warn(`[TalkJS] Received unexpected ${e4.status} status code when validating app ID. Assuming that the app ID is valid.`), true)).catch((e4) => {
|
|
3760
|
+
return ys({ method: "GET", url: `${t3}/${e3}/app`, authProvider: s3, errorTracker: s3.errorTracker }).then((e4) => 200 === e4.status || 404 !== e4.status && (console.warn(`[TalkJS] Received unexpected ${e4.status} status code when validating app ID. Assuming that the app ID is valid.`), true)).catch((e4) => {
|
|
3771
3761
|
if ("string" != typeof e4 && "status" in e4) {
|
|
3772
3762
|
const t4 = e4;
|
|
3773
3763
|
return 200 === t4.status || 404 !== t4.status && (console.warn(`[TalkJS] Received unexpected ${t4.status} status code when validating app ID. Assuming that the app ID is valid.`), true);
|
|
@@ -3801,31 +3791,31 @@ class _s {
|
|
|
3801
3791
|
return this._realtimeClient.subscribe(["me", "conversations"], e2);
|
|
3802
3792
|
}
|
|
3803
3793
|
terminate(e2) {
|
|
3804
|
-
|
|
3794
|
+
Is.deregister(this._appId, this.currentUser.id), this._terminationReason.resolve(e2), this._realtimeClient.destroy();
|
|
3805
3795
|
}
|
|
3806
3796
|
_isConnected() {
|
|
3807
3797
|
return this._realtimeClient.isConnected();
|
|
3808
3798
|
}
|
|
3809
3799
|
uploadFile(e2, t2) {
|
|
3810
|
-
return
|
|
3800
|
+
return Ms(`${this._apiUrls.restApiHttpUrl}/${this._appId}/files`, this._authProvider, e2, t2);
|
|
3811
3801
|
}
|
|
3812
3802
|
uploadImage(e2, t2) {
|
|
3813
|
-
return
|
|
3803
|
+
return Ms(`${this._apiUrls.restApiHttpUrl}/${this._appId}/files`, this._authProvider, e2, __spreadValues({ subtype: "image" }, t2));
|
|
3814
3804
|
}
|
|
3815
3805
|
uploadVideo(e2, t2) {
|
|
3816
|
-
return
|
|
3806
|
+
return Ms(`${this._apiUrls.restApiHttpUrl}/${this._appId}/files`, this._authProvider, e2, __spreadValues({ subtype: "video" }, t2));
|
|
3817
3807
|
}
|
|
3818
3808
|
uploadAudio(e2, t2) {
|
|
3819
|
-
return
|
|
3809
|
+
return Ms(`${this._apiUrls.restApiHttpUrl}/${this._appId}/files`, this._authProvider, e2, __spreadValues({ subtype: "audio" }, t2));
|
|
3820
3810
|
}
|
|
3821
3811
|
uploadVoice(e2, t2) {
|
|
3822
|
-
return
|
|
3812
|
+
return Ms(`${this._apiUrls.restApiHttpUrl}/${this._appId}/files`, this._authProvider, e2, __spreadValues({ subtype: "voice" }, t2));
|
|
3823
3813
|
}
|
|
3824
3814
|
}
|
|
3825
|
-
function
|
|
3815
|
+
function Ms(_0, _1, _2, _3) {
|
|
3826
3816
|
return __async(this, arguments, function* (e2, t2, s2, { subtype: n2, filename: r2, width: i2, height: a2, duration: o2 }) {
|
|
3827
3817
|
const u2 = new FormData();
|
|
3828
|
-
return u2.set("file", s2, r2), void 0 !== n2 && u2.set("subtype", n2), void 0 !== i2 && u2.set("width", i2.toString()), void 0 !== a2 && u2.set("height", a2.toString()), void 0 !== o2 && u2.set("duration", o2.toString()), ys({ method: "POST", url: e2, data: u2, authProvider: t2 }).then((e3) => e3.json()).then((e3) => e3.attachmentToken).catch((e3) => __async(this, null, function* () {
|
|
3818
|
+
return u2.set("file", s2, r2), void 0 !== n2 && u2.set("subtype", n2), void 0 !== i2 && u2.set("width", i2.toString()), void 0 !== a2 && u2.set("height", a2.toString()), void 0 !== o2 && u2.set("duration", o2.toString()), ys({ method: "POST", url: e2, data: u2, authProvider: t2, errorTracker: t2.errorTracker }).then((e3) => e3.json()).then((e3) => e3.attachmentToken).catch((e3) => __async(this, null, function* () {
|
|
3829
3819
|
if (e3 instanceof Response) {
|
|
3830
3820
|
const t3 = yield e3.json(), s3 = `Unexpected response when uploading file, status code ${e3.status} ${t3.errorCode}, ${t3.reasons}`;
|
|
3831
3821
|
throw new Error(s3);
|
|
@@ -3835,7 +3825,7 @@ function Ps(_0, _1, _2, _3) {
|
|
|
3835
3825
|
});
|
|
3836
3826
|
}
|
|
3837
3827
|
export {
|
|
3838
|
-
|
|
3828
|
+
Ds as getTalkSession,
|
|
3839
3829
|
f as registerPolyfills
|
|
3840
3830
|
};
|
|
3841
3831
|
//# sourceMappingURL=talkSession.js.map
|