@opencxh/domain 1.226.0 → 1.228.0
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/entities/external-identity/types.d.ts +1 -1
- package/dist/entities/mcp/types.d.ts +0 -14
- package/dist/entities/onboarding/source.d.ts +1 -1
- package/dist/entities/work/types.d.ts +9 -0
- package/dist/index.cjs +10 -10
- package/dist/index.d.ts +2 -1
- package/dist/index.js +111 -112
- package/dist/platform/account.d.ts +1 -1
- package/dist/platform/connector.d.ts +426 -0
- package/dist/platform/sync.d.ts +225 -0
- package/package.json +1 -1
- package/dist/platform/sync-source.d.ts +0 -517
package/dist/index.js
CHANGED
|
@@ -818,11 +818,11 @@ function Ct(e, t = "month") {
|
|
|
818
818
|
const n = new Date(e);
|
|
819
819
|
return Date.UTC(n.getUTCFullYear(), n.getUTCMonth(), 1);
|
|
820
820
|
}
|
|
821
|
-
function
|
|
821
|
+
function Fi(e, t = "month") {
|
|
822
822
|
const n = new Date(Ct(e, t));
|
|
823
823
|
return `${n.getUTCFullYear()}-${String(n.getUTCMonth() + 1).padStart(2, "0")}`;
|
|
824
824
|
}
|
|
825
|
-
function
|
|
825
|
+
function Gi(e) {
|
|
826
826
|
return e?.listeningEnabled !== !1;
|
|
827
827
|
}
|
|
828
828
|
const Wi = [
|
|
@@ -835,12 +835,12 @@ const Wi = [
|
|
|
835
835
|
{ id: "handledBy", label: "Afhandelaar", labelSource: "raw" },
|
|
836
836
|
{ id: "time", label: "Tijd", labelSource: "raw" }
|
|
837
837
|
];
|
|
838
|
-
function
|
|
838
|
+
function F(e) {
|
|
839
839
|
return e < 10 ? `0${e}` : `${e}`;
|
|
840
840
|
}
|
|
841
841
|
function kt(e, t) {
|
|
842
|
-
const n = new Date(e), r = `${n.getUTCFullYear()}-${
|
|
843
|
-
return t === "day" ? r : `${r}T${
|
|
842
|
+
const n = new Date(e), r = `${n.getUTCFullYear()}-${F(n.getUTCMonth() + 1)}-${F(n.getUTCDate())}`;
|
|
843
|
+
return t === "day" ? r : `${r}T${F(n.getUTCHours())}`;
|
|
844
844
|
}
|
|
845
845
|
function vt(e, t) {
|
|
846
846
|
const n = new Date(e);
|
|
@@ -875,7 +875,7 @@ function zi(e, t) {
|
|
|
875
875
|
]
|
|
876
876
|
}));
|
|
877
877
|
}
|
|
878
|
-
const
|
|
878
|
+
const Fe = /* @__PURE__ */ new Set(["info", "success", "warning", "destructive"]), me = 200, ge = 100, he = 200, ye = 12, be = 4, Ge = 4e3, G = 500, Xi = 256 * 1024, Lt = /* @__PURE__ */ new Set([
|
|
879
879
|
"heading",
|
|
880
880
|
"paragraph",
|
|
881
881
|
"list",
|
|
@@ -935,14 +935,14 @@ function jt(e) {
|
|
|
935
935
|
(t, n, r) => We(r) ? t : ""
|
|
936
936
|
);
|
|
937
937
|
}
|
|
938
|
-
function A(e, t =
|
|
938
|
+
function A(e, t = Ge) {
|
|
939
939
|
return typeof e == "string" ? jt(e).slice(0, t) : "";
|
|
940
940
|
}
|
|
941
|
-
function Ht(e, t =
|
|
941
|
+
function Ht(e, t = Ge) {
|
|
942
942
|
return typeof e == "string" ? e.slice(0, t) : "";
|
|
943
943
|
}
|
|
944
|
-
function
|
|
945
|
-
return typeof e == "string" &&
|
|
944
|
+
function Ft(e, t = "info") {
|
|
945
|
+
return typeof e == "string" && Fe.has(e) ? e : t;
|
|
946
946
|
}
|
|
947
947
|
function Yi(e, t = () => {
|
|
948
948
|
}) {
|
|
@@ -1029,7 +1029,7 @@ function Yi(e, t = () => {
|
|
|
1029
1029
|
t(`more than ${ye} table columns`);
|
|
1030
1030
|
break;
|
|
1031
1031
|
}
|
|
1032
|
-
const T = A(y?.label,
|
|
1032
|
+
const T = A(y?.label, G), M = y?.align === "right" ? "right" : void 0;
|
|
1033
1033
|
s.push(M ? { label: T, align: M } : { label: T });
|
|
1034
1034
|
}
|
|
1035
1035
|
if (s.length === 0) {
|
|
@@ -1043,9 +1043,9 @@ function Yi(e, t = () => {
|
|
|
1043
1043
|
break;
|
|
1044
1044
|
}
|
|
1045
1045
|
const T = Array.isArray(y) ? y : [];
|
|
1046
|
-
m.push(s.map((M, B) => A(T[B],
|
|
1046
|
+
m.push(s.map((M, B) => A(T[B], G)));
|
|
1047
1047
|
}
|
|
1048
|
-
const h = A(i.caption,
|
|
1048
|
+
const h = A(i.caption, G);
|
|
1049
1049
|
n.push({
|
|
1050
1050
|
...o,
|
|
1051
1051
|
type: "table",
|
|
@@ -1066,7 +1066,7 @@ function Yi(e, t = () => {
|
|
|
1066
1066
|
if (!m || !h) continue;
|
|
1067
1067
|
const y = c?.tone;
|
|
1068
1068
|
s.push(
|
|
1069
|
-
typeof y == "string" &&
|
|
1069
|
+
typeof y == "string" && Fe.has(y) ? { value: m, label: h, tone: y } : { value: m, label: h }
|
|
1070
1070
|
);
|
|
1071
1071
|
}
|
|
1072
1072
|
if (s.length === 0) {
|
|
@@ -1086,7 +1086,7 @@ function Yi(e, t = () => {
|
|
|
1086
1086
|
n.push({
|
|
1087
1087
|
...o,
|
|
1088
1088
|
type: "callout",
|
|
1089
|
-
tone:
|
|
1089
|
+
tone: Ft(i.tone),
|
|
1090
1090
|
...s ? { title: s } : {},
|
|
1091
1091
|
text: a
|
|
1092
1092
|
});
|
|
@@ -1117,7 +1117,7 @@ function Se(e, t, n) {
|
|
|
1117
1117
|
...t.map((i) => `| ${i.map(Ee).join(" | ")} |`)
|
|
1118
1118
|
];
|
|
1119
1119
|
}
|
|
1120
|
-
function
|
|
1120
|
+
function Gt(e) {
|
|
1121
1121
|
switch (e.type) {
|
|
1122
1122
|
case "heading":
|
|
1123
1123
|
return [`${"#".repeat(e.level)} ${e.text}`];
|
|
@@ -1155,7 +1155,7 @@ function Zi(e, t) {
|
|
|
1155
1155
|
const n = [], r = e.some((i) => i.type === "heading" && i.level === 1);
|
|
1156
1156
|
t && !r && n.push(`# ${t}`);
|
|
1157
1157
|
for (const i of e) {
|
|
1158
|
-
const o =
|
|
1158
|
+
const o = Gt(i);
|
|
1159
1159
|
o.length > 0 && n.push(o.join(`
|
|
1160
1160
|
`));
|
|
1161
1161
|
}
|
|
@@ -1460,7 +1460,7 @@ function Bo(e) {
|
|
|
1460
1460
|
const t = e.slice(0, e.indexOf(":"));
|
|
1461
1461
|
return En.includes(t);
|
|
1462
1462
|
}
|
|
1463
|
-
const jo = "onboarding-source", Ho = ["support", "billing", "availability", "sales", "onboarding"],
|
|
1463
|
+
const jo = "onboarding-source", Ho = ["support", "billing", "availability", "sales", "onboarding"], Fo = ["keep", "replace"];
|
|
1464
1464
|
function Sn(e) {
|
|
1465
1465
|
switch (e.kind) {
|
|
1466
1466
|
case "user":
|
|
@@ -1471,7 +1471,7 @@ function Sn(e) {
|
|
|
1471
1471
|
return "org";
|
|
1472
1472
|
}
|
|
1473
1473
|
}
|
|
1474
|
-
function
|
|
1474
|
+
function Go(e) {
|
|
1475
1475
|
if (typeof e != "string") return;
|
|
1476
1476
|
const t = e.trim();
|
|
1477
1477
|
if (t === "org") return { kind: "org" };
|
|
@@ -1739,12 +1739,12 @@ function Hn(e, t) {
|
|
|
1739
1739
|
function Me(e) {
|
|
1740
1740
|
return v(e) ? { state: "void" } : null;
|
|
1741
1741
|
}
|
|
1742
|
-
function
|
|
1742
|
+
function Fn(e, t, n, r) {
|
|
1743
1743
|
if (!v(e) || (e.pauseBits & t) !== 0) return null;
|
|
1744
1744
|
const i = e.pauseBits | t;
|
|
1745
1745
|
return e.state === "paused" ? { pauseBits: i } : { pauseBits: i, state: "paused", remainingMs: J(n, e.dueAt, r) };
|
|
1746
1746
|
}
|
|
1747
|
-
function
|
|
1747
|
+
function Gn(e, t, n, r) {
|
|
1748
1748
|
if (!v(e) || (e.pauseBits & t) === 0) return null;
|
|
1749
1749
|
const i = e.pauseBits & ~t;
|
|
1750
1750
|
return i !== 0 ? { pauseBits: i } : { pauseBits: i, state: "running", dueAt: ne(n, e.remainingMs, r) };
|
|
@@ -1759,9 +1759,9 @@ function ga({ event: e, at: t, now: n, clocks: r, profile: i }) {
|
|
|
1759
1759
|
for (const f of s)
|
|
1760
1760
|
p.includes(f.metric) && m(f, Me(f));
|
|
1761
1761
|
}, T = (p) => {
|
|
1762
|
-
for (const f of s) m(f, Gn(f, p, a, o));
|
|
1763
|
-
}, M = (p) => {
|
|
1764
1762
|
for (const f of s) m(f, Fn(f, p, a, o));
|
|
1763
|
+
}, M = (p) => {
|
|
1764
|
+
for (const f of s) m(f, Gn(f, p, a, o));
|
|
1765
1765
|
}, B = (p) => s.reduce((f, S) => S.metric === p ? Math.max(f, S.attempt) : f, 0) + 1, x = (p) => s.some((f) => f.metric === p && v(f)), N = (p, f) => {
|
|
1766
1766
|
const S = i.targets.find((gt) => gt.metric === p);
|
|
1767
1767
|
if (!S) return;
|
|
@@ -2014,13 +2014,13 @@ function ar(e) {
|
|
|
2014
2014
|
return r !== 0 ? r : (t.label || "").localeCompare(n.label || "");
|
|
2015
2015
|
});
|
|
2016
2016
|
}
|
|
2017
|
-
function
|
|
2017
|
+
function Fa(e, t) {
|
|
2018
2018
|
return or(e, t) === "done";
|
|
2019
2019
|
}
|
|
2020
2020
|
function sr(e) {
|
|
2021
2021
|
return (e || "").normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase().replace(/[^a-z0-9]+/g, "-").slice(0, 48).replace(/^-+|-+$/g, "");
|
|
2022
2022
|
}
|
|
2023
|
-
function
|
|
2023
|
+
function Ga(e, t) {
|
|
2024
2024
|
const n = sr(e) || "status", r = /* @__PURE__ */ new Set([...t, ...st]);
|
|
2025
2025
|
if (!r.has(n)) return n;
|
|
2026
2026
|
for (let i = 2; i < 500; i++) {
|
|
@@ -2203,7 +2203,7 @@ const us = "message_window", ds = "message_templates", ps = {
|
|
|
2203
2203
|
ok: !1,
|
|
2204
2204
|
code: "UNSUPPORTED",
|
|
2205
2205
|
message: "Provider does not support this op"
|
|
2206
|
-
}, bs = "context.collect", d = (e) => ({ type: "string", description: e }), u = (e) => ({ type: "number", description: e }), $ = (e) => ({ type: "boolean", description: e }), E = d("Sheet name. Omit for the sheet the user is looking at."), ke = d("Slide id, as `inspect` reports it.");
|
|
2206
|
+
}, bs = "connector", As = "context.collect", d = (e) => ({ type: "string", description: e }), u = (e) => ({ type: "number", description: e }), $ = (e) => ({ type: "boolean", description: e }), E = d("Sheet name. Omit for the sheet the user is looking at."), ke = d("Slide id, as `inspect` reports it.");
|
|
2207
2207
|
function l(e, t, n, r, i, o) {
|
|
2208
2208
|
return {
|
|
2209
2209
|
op: e,
|
|
@@ -2557,28 +2557,28 @@ const C = { undoable: !1, visible: !0 }, g = { undoable: !0, visible: !0 }, ve =
|
|
|
2557
2557
|
...Sr,
|
|
2558
2558
|
..._r
|
|
2559
2559
|
];
|
|
2560
|
-
function
|
|
2560
|
+
function Es(e) {
|
|
2561
2561
|
return ct.filter((t) => t.kinds.includes(e));
|
|
2562
2562
|
}
|
|
2563
|
-
function
|
|
2563
|
+
function Ss(e) {
|
|
2564
2564
|
return ct.find((t) => t.op === e);
|
|
2565
2565
|
}
|
|
2566
|
-
const
|
|
2567
|
-
function
|
|
2566
|
+
const _s = "documents.describe", Ts = "documents.inspect", ws = "documents.apply";
|
|
2567
|
+
function Is(e) {
|
|
2568
2568
|
const t = e.indexOf(":");
|
|
2569
2569
|
if (t !== -1) return e.slice(0, t);
|
|
2570
2570
|
const n = e.indexOf(".");
|
|
2571
2571
|
return n === -1 ? e : e.slice(0, n);
|
|
2572
2572
|
}
|
|
2573
|
-
const
|
|
2574
|
-
function
|
|
2573
|
+
const Ms = "installation-id";
|
|
2574
|
+
function Os(e) {
|
|
2575
2575
|
const t = [];
|
|
2576
2576
|
for (const n of Object.keys(e))
|
|
2577
2577
|
for (const r of Object.keys(e[n]))
|
|
2578
2578
|
t.push({ lang: n, key: r, value: e[n][r] });
|
|
2579
2579
|
return t;
|
|
2580
2580
|
}
|
|
2581
|
-
const
|
|
2581
|
+
const Cs = "notification-source", ks = (e, t) => `${e}.pref.${t}`, vs = {
|
|
2582
2582
|
ai: [
|
|
2583
2583
|
"account.read",
|
|
2584
2584
|
"account.write",
|
|
@@ -2714,37 +2714,37 @@ const Os = "notification-source", Cs = (e, t) => `${e}.pref.${t}`, ks = {
|
|
|
2714
2714
|
user: ["user.read", "user.write"],
|
|
2715
2715
|
work: ["item.read", "item.write", "project.read", "project.write"]
|
|
2716
2716
|
}, lt = 9e4, Tr = ["out_of_office"], ut = (e) => Tr.includes(e);
|
|
2717
|
-
function
|
|
2717
|
+
function xs(e, t, n) {
|
|
2718
2718
|
const r = n - e < lt, i = t?.status && (!t.expiresAt || t.expiresAt > n) ? t : void 0;
|
|
2719
2719
|
if (!i?.status) return { online: r, status: r ? "available" : "offline" };
|
|
2720
2720
|
const o = i.status;
|
|
2721
2721
|
return !r && !ut(o) ? { online: !1, status: "offline" } : { online: r, status: o, message: i.message };
|
|
2722
2722
|
}
|
|
2723
|
-
function
|
|
2723
|
+
function Ns(e, t) {
|
|
2724
2724
|
const n = t - e.lastSeenAt < lt, r = n || ut(e.status) ? e.status : "offline";
|
|
2725
2725
|
return n === e.online && r === e.status ? e : { ...e, online: n, status: r };
|
|
2726
2726
|
}
|
|
2727
|
-
function
|
|
2727
|
+
function Rs(e, t) {
|
|
2728
2728
|
return e?.teamId && t.includes(e.teamId) ? { teamId: e.teamId, mustChoose: !1 } : t.length === 1 ? { teamId: t[0], mustChoose: !1 } : { teamId: void 0, mustChoose: t.length > 1 };
|
|
2729
2729
|
}
|
|
2730
|
-
function
|
|
2730
|
+
function Ds(e) {
|
|
2731
2731
|
return e.providerAvailable && e.allowed;
|
|
2732
2732
|
}
|
|
2733
|
-
const
|
|
2734
|
-
function
|
|
2733
|
+
const $s = "resources.describe", Ls = "resources.search", Ps = "resources.resolve", Us = "resources.attached";
|
|
2734
|
+
function Ks(e) {
|
|
2735
2735
|
const t = e.indexOf(":");
|
|
2736
2736
|
return t === -1 ? e : e.slice(0, t);
|
|
2737
2737
|
}
|
|
2738
|
-
const
|
|
2738
|
+
const Bs = "/provider/scope/related", js = "/provider/scope/read", dt = "auth";
|
|
2739
2739
|
function pt(e) {
|
|
2740
2740
|
const t = typeof e == "string" ? e.match(/apps\/([^/?#]+)/) : null;
|
|
2741
2741
|
return t ? t[1] : null;
|
|
2742
2742
|
}
|
|
2743
|
-
function
|
|
2743
|
+
function Hs(e) {
|
|
2744
2744
|
const t = pt(e);
|
|
2745
2745
|
return t ? t !== dt : typeof e == "string" && e.startsWith("/wake");
|
|
2746
2746
|
}
|
|
2747
|
-
function
|
|
2747
|
+
function Fs(e) {
|
|
2748
2748
|
return typeof e != "string" || e === "" || e === "/" ? !0 : pt(e) === dt;
|
|
2749
2749
|
}
|
|
2750
2750
|
function wr(e) {
|
|
@@ -2799,10 +2799,10 @@ function kr(e, t) {
|
|
|
2799
2799
|
Ir(r.pattern).test(e) && (!n || Cr(r.pattern, n.pattern)) && (n = r);
|
|
2800
2800
|
return n ? { ...n, params: { ...n.props, ...Mr(n.pattern, e) } } : null;
|
|
2801
2801
|
}
|
|
2802
|
-
function
|
|
2802
|
+
function Ws(e, t) {
|
|
2803
2803
|
return kr(e, t) !== null;
|
|
2804
2804
|
}
|
|
2805
|
-
const
|
|
2805
|
+
const Vs = 10 * 1024 * 1024, zs = 25 * 1024 * 1024, Xs = "sync-target", Ys = 20, vr = {
|
|
2806
2806
|
afrikaans: [
|
|
2807
2807
|
"[Muziek]",
|
|
2808
2808
|
"(C) TV GELDERLAND 2021",
|
|
@@ -3093,13 +3093,13 @@ function Br(e, t = Nr) {
|
|
|
3093
3093
|
return { text: n.filter((a) => (a.endedAt ?? 0) >= i).map((a) => xr(a.text).trim()).filter(Boolean).join(" ").replace(/\s+/g, " ").trim(), segmentCount: n.length };
|
|
3094
3094
|
}
|
|
3095
3095
|
const jr = 60;
|
|
3096
|
-
function
|
|
3096
|
+
function qs(e, t, n = jr) {
|
|
3097
3097
|
const r = new Set(e), i = [...e];
|
|
3098
3098
|
for (const o of t)
|
|
3099
3099
|
!o || r.has(o) || (r.add(o), i.push(o));
|
|
3100
3100
|
return i.slice(-n);
|
|
3101
3101
|
}
|
|
3102
|
-
function
|
|
3102
|
+
function Js(e) {
|
|
3103
3103
|
const { segments: t, now: n, state: r } = e;
|
|
3104
3104
|
if (r.lastTriggerAt && n - r.lastTriggerAt < Rr)
|
|
3105
3105
|
return { trigger: !1, reason: "too_soon" };
|
|
@@ -3111,13 +3111,13 @@ function Zs(e) {
|
|
|
3111
3111
|
const a = Ur(i.text);
|
|
3112
3112
|
return a.length ? r.lastQueryTerms?.length && Kr(a, r.lastQueryTerms) < $r ? { trigger: !1, reason: "same_topic" } : { trigger: !0, text: i.text, terms: a, segmentCount: i.segmentCount } : { trigger: !1, reason: "no_speech" };
|
|
3113
3113
|
}
|
|
3114
|
-
const
|
|
3114
|
+
const Zs = [
|
|
3115
3115
|
"personal",
|
|
3116
3116
|
"workspace",
|
|
3117
3117
|
"connections",
|
|
3118
3118
|
"work",
|
|
3119
3119
|
"ai"
|
|
3120
|
-
],
|
|
3120
|
+
], Qs = "navNotice", oe = {
|
|
3121
3121
|
// The lower bounds are deliberately generous: service ranges (0800/0900) are
|
|
3122
3122
|
// shorter than geographic numbers, and a too-strict minimum silently drops them.
|
|
3123
3123
|
// An over-permissive key is harmless — it simply matches nothing.
|
|
@@ -3140,7 +3140,7 @@ const Qs = [
|
|
|
3140
3140
|
PL: { callingCode: "48", nsnMin: 9, nsnMax: 9 },
|
|
3141
3141
|
US: { callingCode: "1", nsnMin: 10, nsnMax: 10 },
|
|
3142
3142
|
CA: { callingCode: "1", nsnMin: 10, nsnMax: 10 }
|
|
3143
|
-
}, Hr = "NL",
|
|
3143
|
+
}, Hr = "NL", Fr = 15, Gr = 8, Wr = Array.from(
|
|
3144
3144
|
new Set(Object.values(oe).map((e) => e.callingCode))
|
|
3145
3145
|
).sort((e, t) => t.length - e.length);
|
|
3146
3146
|
function xe(e) {
|
|
@@ -3151,7 +3151,7 @@ function L(e, t) {
|
|
|
3151
3151
|
return e.length >= t.nsnMin && e.length <= t.nsnMax;
|
|
3152
3152
|
}
|
|
3153
3153
|
function Ne(e) {
|
|
3154
|
-
if (e.length >
|
|
3154
|
+
if (e.length > Fr) return null;
|
|
3155
3155
|
for (const t of Wr) {
|
|
3156
3156
|
if (!e.startsWith(t)) continue;
|
|
3157
3157
|
const n = e.slice(t.length);
|
|
@@ -3162,7 +3162,7 @@ function Ne(e) {
|
|
|
3162
3162
|
}
|
|
3163
3163
|
return null;
|
|
3164
3164
|
}
|
|
3165
|
-
return e.length <
|
|
3165
|
+
return e.length < Gr ? null : `+${e}`;
|
|
3166
3166
|
}
|
|
3167
3167
|
function Vr(e) {
|
|
3168
3168
|
let t = e.trim();
|
|
@@ -3171,7 +3171,7 @@ function Vr(e) {
|
|
|
3171
3171
|
const r = t.indexOf("@");
|
|
3172
3172
|
return r >= 0 && (t = t.slice(0, r)), t.trim();
|
|
3173
3173
|
}
|
|
3174
|
-
function
|
|
3174
|
+
function ec(e) {
|
|
3175
3175
|
if (!e) return !1;
|
|
3176
3176
|
const t = e.indexOf("@");
|
|
3177
3177
|
if (t <= 0) return !1;
|
|
@@ -3199,7 +3199,7 @@ function Re(e, t) {
|
|
|
3199
3199
|
}
|
|
3200
3200
|
return !a && L(i, o) ? `+${o.callingCode}${i}` : null;
|
|
3201
3201
|
}
|
|
3202
|
-
function
|
|
3202
|
+
function tc(e, t = 9) {
|
|
3203
3203
|
const n = (e ?? "").replace(/\D/g, "");
|
|
3204
3204
|
return n.length < t ? null : n.slice(-t);
|
|
3205
3205
|
}
|
|
@@ -3210,7 +3210,7 @@ function ft(e) {
|
|
|
3210
3210
|
const r = t.slice(0, n).split("+")[0], i = t.slice(n + 1);
|
|
3211
3211
|
return !r || !i.includes(".") ? null : `${r}@${i}`;
|
|
3212
3212
|
}
|
|
3213
|
-
function
|
|
3213
|
+
function nc(e) {
|
|
3214
3214
|
const t = ft(e);
|
|
3215
3215
|
return t ? t.slice(t.lastIndexOf("@") + 1) : null;
|
|
3216
3216
|
}
|
|
@@ -3276,16 +3276,16 @@ const Yr = /* @__PURE__ */ new Set([
|
|
|
3276
3276
|
"proximus.be",
|
|
3277
3277
|
"scarlet.be"
|
|
3278
3278
|
]);
|
|
3279
|
-
function
|
|
3279
|
+
function rc(e) {
|
|
3280
3280
|
const t = Xr(e);
|
|
3281
3281
|
return t ? Yr.has(t) : !1;
|
|
3282
3282
|
}
|
|
3283
|
-
function
|
|
3283
|
+
function ic(e) {
|
|
3284
3284
|
if (!e) return !1;
|
|
3285
3285
|
const t = e.trim().toLowerCase();
|
|
3286
3286
|
return t === "tel" || t === "sms" || t === "whatsapp" || t === "fax";
|
|
3287
3287
|
}
|
|
3288
|
-
function
|
|
3288
|
+
function oc(e, t, n) {
|
|
3289
3289
|
if (!e || !t) return null;
|
|
3290
3290
|
const r = e.trim().toLowerCase();
|
|
3291
3291
|
if (r === "tel" || r === "sms" || r === "whatsapp") {
|
|
@@ -3452,13 +3452,13 @@ function Ke(e) {
|
|
|
3452
3452
|
`).trim();
|
|
3453
3453
|
}
|
|
3454
3454
|
const gi = /<\s*(html|body|div|p|table|br|span)\b/i;
|
|
3455
|
-
function
|
|
3455
|
+
function ac(e) {
|
|
3456
3456
|
return gi.test(e);
|
|
3457
3457
|
}
|
|
3458
|
-
function
|
|
3458
|
+
function sc(e) {
|
|
3459
3459
|
return mt(e, !1);
|
|
3460
3460
|
}
|
|
3461
|
-
function
|
|
3461
|
+
function cc(e) {
|
|
3462
3462
|
return mt(e, !0);
|
|
3463
3463
|
}
|
|
3464
3464
|
function mt(e, t) {
|
|
@@ -3480,15 +3480,15 @@ export {
|
|
|
3480
3480
|
Va as AI_ATTACHMENT_TURN_BUDGET,
|
|
3481
3481
|
He as AI_VENDORS,
|
|
3482
3482
|
Pt as ALLOWED_LINK_SCHEMES,
|
|
3483
|
-
|
|
3483
|
+
vs as APP_PERMISSIONS,
|
|
3484
3484
|
me as ARTIFACT_MAX_BLOCKS,
|
|
3485
3485
|
Xi as ARTIFACT_MAX_BODY_BYTES,
|
|
3486
|
-
|
|
3486
|
+
G as ARTIFACT_MAX_CELL_LEN,
|
|
3487
3487
|
be as ARTIFACT_MAX_KPI_ITEMS,
|
|
3488
3488
|
ge as ARTIFACT_MAX_LIST_ITEMS,
|
|
3489
3489
|
ye as ARTIFACT_MAX_TABLE_COLUMNS,
|
|
3490
3490
|
he as ARTIFACT_MAX_TABLE_ROWS,
|
|
3491
|
-
|
|
3491
|
+
Ge as ARTIFACT_MAX_TEXT_LEN,
|
|
3492
3492
|
Vt as ASSIGNMENT_SCOPE_KIND,
|
|
3493
3493
|
Za as ASSIST_BANDS,
|
|
3494
3494
|
Ja as ASSIST_SOURCE_PROVIDER_GROUP,
|
|
@@ -3504,15 +3504,16 @@ export {
|
|
|
3504
3504
|
$r as CADENCE_MIN_NOVELTY,
|
|
3505
3505
|
Nr as CADENCE_WINDOW_MS,
|
|
3506
3506
|
Qo as CLASSIFY_VARS,
|
|
3507
|
-
bs as
|
|
3507
|
+
bs as CONNECTOR_PROVIDER_GROUP,
|
|
3508
|
+
As as CONTEXT_COLLECT_SERVICE,
|
|
3508
3509
|
Wi as CORE_DIMENSIONS,
|
|
3509
3510
|
yr as CommunicationScheme,
|
|
3510
3511
|
qt as DAY_MS,
|
|
3511
3512
|
Ko as DEFAULT_MEMORY_BUDGET,
|
|
3512
3513
|
Hr as DEFAULT_PHONE_REGION,
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3514
|
+
ws as DOCUMENT_APPLY_SERVICE,
|
|
3515
|
+
_s as DOCUMENT_DESCRIBE_SERVICE,
|
|
3516
|
+
Ts as DOCUMENT_INSPECT_SERVICE,
|
|
3516
3517
|
ct as DOCUMENT_OPERATIONS,
|
|
3517
3518
|
ta as EMPTY_WORKFLOW,
|
|
3518
3519
|
ms as FEATURE_FOLDER_MANAGEMENT,
|
|
@@ -3522,7 +3523,7 @@ export {
|
|
|
3522
3523
|
Yt as HOUR_MS,
|
|
3523
3524
|
gi as HTML_BODY_RE,
|
|
3524
3525
|
w as INELIGIBLE,
|
|
3525
|
-
|
|
3526
|
+
Ms as INSTALLATION_HEADER,
|
|
3526
3527
|
On as INTERACTION_KIND,
|
|
3527
3528
|
ps as InteractionParticipantRole,
|
|
3528
3529
|
yn as KB_FALLBACK_LOCALE,
|
|
@@ -3533,7 +3534,7 @@ export {
|
|
|
3533
3534
|
zt as MAX_ASSIGNMENT_TURNS,
|
|
3534
3535
|
hi as MAX_BLOCKS,
|
|
3535
3536
|
Ze as MAX_COLLECTION_DEPTH,
|
|
3536
|
-
|
|
3537
|
+
Vs as MAX_EDITABLE_FILE_BYTES,
|
|
3537
3538
|
yi as MAX_FIELDS,
|
|
3538
3539
|
bi as MAX_LIST_ITEMS,
|
|
3539
3540
|
$o as MAX_MEMORY_BROWSE,
|
|
@@ -3543,30 +3544,30 @@ export {
|
|
|
3543
3544
|
Yn as MAX_TOPIC_CANDIDATES,
|
|
3544
3545
|
Xn as MAX_TOPIC_EXAMPLES,
|
|
3545
3546
|
W as MAX_TOPIC_EXAMPLE_CHARS,
|
|
3546
|
-
|
|
3547
|
+
zs as MAX_VIEWABLE_FILE_BYTES,
|
|
3547
3548
|
Po as MIN_MEMORY_BUDGET,
|
|
3548
|
-
|
|
3549
|
-
|
|
3549
|
+
Qs as NAV_NOTICE_SLOT,
|
|
3550
|
+
Cs as NOTIFICATION_SOURCE_PROVIDER_GROUP,
|
|
3550
3551
|
jo as ONBOARDING_SOURCE_PROVIDER_GROUP,
|
|
3551
3552
|
Z as PAUSE_SNOOZED,
|
|
3552
3553
|
Q as PAUSE_WAITING_FOR_CUSTOMER,
|
|
3553
3554
|
oe as PHONE_REGIONS,
|
|
3554
3555
|
lt as PRESENCE_ONLINE_WINDOW_MS,
|
|
3555
3556
|
Tr as PRESENCE_SURVIVES_OFFLINE,
|
|
3556
|
-
|
|
3557
|
+
Fo as PROFILE_TOOL_DISPOSITIONS,
|
|
3557
3558
|
ds as PROVIDER_FEATURE_MESSAGE_TEMPLATES,
|
|
3558
3559
|
us as PROVIDER_FEATURE_MESSAGE_WINDOW,
|
|
3559
3560
|
Yr as PUBLIC_EMAIL_DOMAINS,
|
|
3560
3561
|
Te as READ_STEP_TYPES,
|
|
3561
3562
|
En as RELATED_SUBJECT_KINDS,
|
|
3562
3563
|
st as RESERVED_STATUS_KEYS,
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3564
|
+
Us as RESOURCE_ATTACHED_SERVICE,
|
|
3565
|
+
$s as RESOURCE_DESCRIBE_SERVICE,
|
|
3566
|
+
Ps as RESOURCE_RESOLVE_SERVICE,
|
|
3567
|
+
Ls as RESOURCE_SEARCH_SERVICE,
|
|
3568
|
+
js as SCOPE_READ_ROUTE,
|
|
3569
|
+
Bs as SCOPE_RELATED_ROUTE,
|
|
3570
|
+
Zs as SETTINGS_CATEGORIES,
|
|
3570
3571
|
lo as SIGNATURE_INTENTS,
|
|
3571
3572
|
cn as SLA_HOURS_BY_PRIORITY,
|
|
3572
3573
|
fa as SLA_METRICS,
|
|
@@ -3575,9 +3576,7 @@ export {
|
|
|
3575
3576
|
kn as STEP_MAX_TOKENS_MIN,
|
|
3576
3577
|
en as SUMMARY_MIN_LAST_CHARS,
|
|
3577
3578
|
Qt as SUMMARY_MIN_MESSAGES,
|
|
3578
|
-
Ys as
|
|
3579
|
-
qs as SYNC_RUN_MAX_ERRORS,
|
|
3580
|
-
zs as SYNC_SOURCE_PROVIDER_GROUP,
|
|
3579
|
+
Ys as SYNC_RUN_MAX_ERRORS,
|
|
3581
3580
|
Xs as SYNC_TARGET_PROVIDER_GROUP,
|
|
3582
3581
|
Wt as TERMINAL_ASSIGNMENT_STATUSES,
|
|
3583
3582
|
Dn as TERMINAL_RUN_STATUSES,
|
|
@@ -3606,11 +3605,11 @@ export {
|
|
|
3606
3605
|
Vo as actorKey,
|
|
3607
3606
|
Oa as addExampleCandidate,
|
|
3608
3607
|
ne as addWorkingMs,
|
|
3609
|
-
|
|
3608
|
+
Ns as agePresenceEntry,
|
|
3610
3609
|
ur as aiAttachmentKind,
|
|
3611
3610
|
Xa as aiAttachmentRejection,
|
|
3612
3611
|
fe as aiBudgetLimit,
|
|
3613
|
-
|
|
3612
|
+
Fi as aiBudgetPeriodKey,
|
|
3614
3613
|
Ct as aiBudgetPeriodStart,
|
|
3615
3614
|
Hi as aiBudgetState,
|
|
3616
3615
|
ji as aiVendorAcceptsAttachment,
|
|
@@ -3641,31 +3640,31 @@ export {
|
|
|
3641
3640
|
_i as channelKindOf,
|
|
3642
3641
|
ea as clampStepMaxTokens,
|
|
3643
3642
|
yo as classifyMail,
|
|
3644
|
-
|
|
3645
|
-
|
|
3643
|
+
cc as cleanMessageMarkdown,
|
|
3644
|
+
sc as cleanMessageText,
|
|
3646
3645
|
es as compareAssistRank,
|
|
3647
3646
|
zn as compareWorkTypes,
|
|
3648
3647
|
co as decideAssignmentState,
|
|
3649
|
-
|
|
3648
|
+
Js as decideCadence,
|
|
3650
3649
|
rs as decideIncomingCall,
|
|
3651
3650
|
bn as defaultLocaleOf,
|
|
3652
3651
|
Ha as defaultStatusKey,
|
|
3653
3652
|
fs as defineIntent,
|
|
3654
3653
|
gn as depthOf,
|
|
3655
|
-
|
|
3654
|
+
xs as derivePresence,
|
|
3656
3655
|
is as disabledIntentsFromCapabilities,
|
|
3657
|
-
|
|
3656
|
+
Is as documentKindOf,
|
|
3658
3657
|
ha as dueAtOf,
|
|
3659
3658
|
Ea as elapsedSeconds,
|
|
3660
|
-
|
|
3661
|
-
|
|
3659
|
+
nc as emailDomain,
|
|
3660
|
+
oc as endpointKey,
|
|
3662
3661
|
Mr as extractParams,
|
|
3663
3662
|
Ur as extractTerms,
|
|
3664
3663
|
ss as filterByEndpoint,
|
|
3665
3664
|
as as filterByIntent,
|
|
3666
3665
|
hr as filterByTargetScheme,
|
|
3667
3666
|
K as findAiVendor,
|
|
3668
|
-
|
|
3667
|
+
Os as flattenLocales,
|
|
3669
3668
|
vt as floorToPeriod,
|
|
3670
3669
|
Sn as formatActingIdentity,
|
|
3671
3670
|
Ta as formatClock,
|
|
@@ -3692,14 +3691,14 @@ export {
|
|
|
3692
3691
|
Li as isChatMessageActivity,
|
|
3693
3692
|
_o as isClosed,
|
|
3694
3693
|
Ci as isConnectedType,
|
|
3695
|
-
|
|
3694
|
+
Hs as isDeepLink,
|
|
3696
3695
|
hn as isDescendant,
|
|
3697
3696
|
fo as isEligible,
|
|
3698
3697
|
$i as isEmailActivity,
|
|
3699
|
-
|
|
3698
|
+
ac as isHtmlBody,
|
|
3700
3699
|
aa as isInFlight,
|
|
3701
3700
|
on as isInteractionUnseen,
|
|
3702
|
-
|
|
3701
|
+
Fs as isLandingPath,
|
|
3703
3702
|
Zt as isLikelyBulk,
|
|
3704
3703
|
Be as isMessageShape,
|
|
3705
3704
|
Ti as isMessageType,
|
|
@@ -3710,49 +3709,49 @@ export {
|
|
|
3710
3709
|
dn as isParked,
|
|
3711
3710
|
$n as isPaused,
|
|
3712
3711
|
Oi as isPlaybookAuthoredType,
|
|
3713
|
-
|
|
3714
|
-
|
|
3712
|
+
rc as isPublicEmailDomain,
|
|
3713
|
+
Ws as isPublicPath,
|
|
3715
3714
|
pn as isReminderActive,
|
|
3716
3715
|
Ii as isReplyableType,
|
|
3717
3716
|
Ao as isSlaAtRisk,
|
|
3718
3717
|
oa as isTerminal,
|
|
3719
3718
|
go as isThreadLongEnough,
|
|
3720
3719
|
ki as isTranscriptType,
|
|
3721
|
-
|
|
3720
|
+
Fa as isWorkClosed,
|
|
3722
3721
|
Ia as isWorkTypeVisible,
|
|
3723
3722
|
Ka as itemDossierKeys,
|
|
3724
3723
|
ir as ladderFor,
|
|
3725
3724
|
Io as linkLabel,
|
|
3726
|
-
|
|
3725
|
+
Gi as listeningAllowed,
|
|
3727
3726
|
Co as localeInstruction,
|
|
3728
3727
|
Oo as localeName,
|
|
3729
3728
|
vo as localesOf,
|
|
3730
|
-
|
|
3729
|
+
ec as looksLikeEmail,
|
|
3731
3730
|
cs as matchContactToIntents,
|
|
3732
3731
|
kr as matchPublicRoute,
|
|
3733
3732
|
Ro as mcpCredentialScope,
|
|
3734
3733
|
Do as mcpToolPrefix,
|
|
3735
|
-
|
|
3734
|
+
qs as mergeShownKeys,
|
|
3736
3735
|
St as messageCountsAs,
|
|
3737
|
-
|
|
3736
|
+
ic as needsPhoneRegion,
|
|
3738
3737
|
wi as nestsUnderParent,
|
|
3739
3738
|
ya as nextSlaClock,
|
|
3740
3739
|
Yi as normalizeArtifactBlocks,
|
|
3741
3740
|
Ei as normalizeBlocks,
|
|
3742
3741
|
ft as normalizeEmail,
|
|
3743
3742
|
I as normalizeExample,
|
|
3744
|
-
|
|
3743
|
+
ks as notificationPrefKey,
|
|
3745
3744
|
Kr as novelty,
|
|
3746
|
-
|
|
3747
|
-
|
|
3745
|
+
Ss as operationDescriptor,
|
|
3746
|
+
Es as operationsForKind,
|
|
3748
3747
|
mo as parkMarksById,
|
|
3749
|
-
|
|
3748
|
+
Go as parseActingIdentity,
|
|
3750
3749
|
da as parseClockMinutes,
|
|
3751
3750
|
Pa as parseItemKey,
|
|
3752
3751
|
Ir as pathToRegex,
|
|
3753
3752
|
pa as pauseBitFor,
|
|
3754
3753
|
Vi as periodsInRange,
|
|
3755
|
-
|
|
3754
|
+
tc as phoneSuffix,
|
|
3756
3755
|
ho as pickMailHeaders,
|
|
3757
3756
|
At as plainTextFromMarkdown,
|
|
3758
3757
|
ga as planSlaEvent,
|
|
@@ -3774,8 +3773,8 @@ export {
|
|
|
3774
3773
|
Y as resolveActivityText,
|
|
3775
3774
|
fr as resolveChannelIntents,
|
|
3776
3775
|
Xt as resolveSignature,
|
|
3777
|
-
|
|
3778
|
-
|
|
3776
|
+
Rs as resolveWorkMode,
|
|
3777
|
+
Ks as resourceKindOf,
|
|
3779
3778
|
Wo as runActor,
|
|
3780
3779
|
ca as runInteractionId,
|
|
3781
3780
|
jt as sanitizeInline,
|
|
@@ -3788,7 +3787,7 @@ export {
|
|
|
3788
3787
|
ze as shareKeyForTeam,
|
|
3789
3788
|
Ve as shareKeyForUser,
|
|
3790
3789
|
eo as shareKeysForViewer,
|
|
3791
|
-
|
|
3790
|
+
Ds as shouldRunAudioPipeline,
|
|
3792
3791
|
ba as slaBadgeTone,
|
|
3793
3792
|
bo as slaHoursByInbox,
|
|
3794
3793
|
fn as slaHoursFor,
|
|
@@ -3810,7 +3809,7 @@ export {
|
|
|
3810
3809
|
Zn as topicOfferedForTeam,
|
|
3811
3810
|
ka as topicsForTeam,
|
|
3812
3811
|
qn as truncateExample,
|
|
3813
|
-
|
|
3812
|
+
Ga as uniqueWorkStatusKey,
|
|
3814
3813
|
wa as uniqueWorkTypeKey,
|
|
3815
3814
|
$t as usageMetricId,
|
|
3816
3815
|
zi as usageMetrics,
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* |---|---|---|
|
|
7
7
|
* | 1 Credential | may I get in? | **Account** (`ManagedAccount`) |
|
|
8
8
|
* | 2 Connector | where is it, which protocol? | **Connector** (`McpServerEntity`) |
|
|
9
|
-
* | 3 Capability | what can I do with it? | **Source** (`
|
|
9
|
+
* | 3 Capability | what can I do with it? | **Source** (`connector`, `memory-source`, …) |
|
|
10
10
|
* | 4 Usage | is it on, with which settings? | **Connection** (`SyncConnection`, `Channel`) |
|
|
11
11
|
*
|
|
12
12
|
* `ManagedAccount` is a **platform** primitive, not a comms entity — that the type historically
|