@opencxh/domain 1.228.0 → 1.231.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/work/cycle.test.d.ts +1 -0
- package/dist/entities/work/keys.d.ts +9 -0
- package/dist/entities/work/types.d.ts +135 -0
- package/dist/index.cjs +10 -10
- package/dist/index.js +154 -145
- package/dist/platform/connector.d.ts +140 -1
- package/dist/platform/sync.d.ts +17 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1954,21 +1954,21 @@ function Da(e, t) {
|
|
|
1954
1954
|
}
|
|
1955
1955
|
return e.source?.initiator === "system" && e.source.systemReason && (r += 15, i.push(`auto:${e.source.systemReason}`)), { score: r, reasons: i };
|
|
1956
1956
|
}
|
|
1957
|
-
const er = "work_item", tr = "work_project", nr = "work_activity";
|
|
1957
|
+
const er = "work_item", tr = "work_project", nr = "work_activity", $a = "work_cycle";
|
|
1958
1958
|
function rr(e) {
|
|
1959
1959
|
return `${er}:${e}`;
|
|
1960
1960
|
}
|
|
1961
1961
|
function at(e) {
|
|
1962
1962
|
return `${tr}:${e}`;
|
|
1963
1963
|
}
|
|
1964
|
-
function
|
|
1964
|
+
function La(e) {
|
|
1965
1965
|
return `${nr}:${e}`;
|
|
1966
1966
|
}
|
|
1967
|
-
function
|
|
1967
|
+
function Pa(e, t, n) {
|
|
1968
1968
|
const r = `${e}-${t}`;
|
|
1969
1969
|
return n ? `${r}-${n}` : r;
|
|
1970
1970
|
}
|
|
1971
|
-
function
|
|
1971
|
+
function Ua(e) {
|
|
1972
1972
|
const t = /^([A-Za-z0-9]{2,8})-(\d+)(?:-(\d+))?$/.exec((e || "").trim());
|
|
1973
1973
|
return t ? {
|
|
1974
1974
|
projectKey: t[1].toUpperCase(),
|
|
@@ -1976,17 +1976,17 @@ function Pa(e) {
|
|
|
1976
1976
|
...t[3] ? { subSequence: Number(t[3]) } : {}
|
|
1977
1977
|
} : null;
|
|
1978
1978
|
}
|
|
1979
|
-
function
|
|
1979
|
+
function Ka(e) {
|
|
1980
1980
|
return (e || "").normalize("NFD").replace(/[\u0300-\u036f]/g, "").toUpperCase().replace(/[^A-Z0-9]/g, "").slice(0, 3) || "PRJ";
|
|
1981
1981
|
}
|
|
1982
|
-
function
|
|
1982
|
+
function Ba(e, t = 25) {
|
|
1983
1983
|
const n = /* @__PURE__ */ new Set([rr(e.id)]);
|
|
1984
1984
|
e.projectId && n.add(at(e.projectId));
|
|
1985
1985
|
for (const r of e.ancestorKeys ?? []) n.add(r);
|
|
1986
1986
|
for (const r of e.partyKeys ?? []) n.add(r);
|
|
1987
1987
|
return Array.from(n).slice(0, t);
|
|
1988
1988
|
}
|
|
1989
|
-
function
|
|
1989
|
+
function ja(e) {
|
|
1990
1990
|
return [at(e.id)];
|
|
1991
1991
|
}
|
|
1992
1992
|
const ie = [
|
|
@@ -2001,10 +2001,10 @@ function ir(e) {
|
|
|
2001
2001
|
function or(e, t) {
|
|
2002
2002
|
return t.find((n) => n.key === e)?.category ?? "todo";
|
|
2003
2003
|
}
|
|
2004
|
-
function
|
|
2004
|
+
function Ha(e, t) {
|
|
2005
2005
|
return t.find((n) => n.key === e);
|
|
2006
2006
|
}
|
|
2007
|
-
function
|
|
2007
|
+
function Fa(e) {
|
|
2008
2008
|
const t = ir(e), n = e?.defaultStatusKey;
|
|
2009
2009
|
return n && t.some((r) => r.key === n) ? n : ar(t)[0]?.key ?? ie[0].key;
|
|
2010
2010
|
}
|
|
@@ -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 Ga(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 Wa(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++) {
|
|
@@ -2029,7 +2029,7 @@ function Ga(e, t) {
|
|
|
2029
2029
|
}
|
|
2030
2030
|
return `${n}-${r.size + 1}`;
|
|
2031
2031
|
}
|
|
2032
|
-
function
|
|
2032
|
+
function Va(e) {
|
|
2033
2033
|
const t = [];
|
|
2034
2034
|
if (!e.length) return [{ index: -1, reason: "empty" }];
|
|
2035
2035
|
const n = /* @__PURE__ */ new Set();
|
|
@@ -2041,6 +2041,12 @@ function Wa(e) {
|
|
|
2041
2041
|
st.includes(r.key) && t.push({ index: i, reason: "reserved_key", key: r.key }), n.has(r.key) && t.push({ index: i, reason: "duplicate_key", key: r.key }), n.add(r.key);
|
|
2042
2042
|
}), e.some((r) => r.category === "todo" || r.category === "in_progress") || t.push({ index: -1, reason: "no_open" }), e.some((r) => r.category === "done") || t.push({ index: -1, reason: "no_done" }), t;
|
|
2043
2043
|
}
|
|
2044
|
+
function za(e) {
|
|
2045
|
+
return e.startDate ?? Number.MAX_SAFE_INTEGER;
|
|
2046
|
+
}
|
|
2047
|
+
function Xa(e) {
|
|
2048
|
+
return e.completedAt ? "completed" : e.startedAt ? "active" : "planned";
|
|
2049
|
+
}
|
|
2044
2050
|
const cr = /* @__PURE__ */ new Set(["image/png", "image/jpeg", "image/jpg", "image/gif", "image/webp"]), lr = /* @__PURE__ */ new Set([
|
|
2045
2051
|
"text/plain",
|
|
2046
2052
|
"text/markdown",
|
|
@@ -2059,18 +2065,18 @@ const O = 1024 * 1024, dr = {
|
|
|
2059
2065
|
pdf: 20 * O,
|
|
2060
2066
|
text: 1 * O,
|
|
2061
2067
|
audio: 20 * O
|
|
2062
|
-
},
|
|
2063
|
-
function
|
|
2068
|
+
}, Ya = 25 * O, qa = 5;
|
|
2069
|
+
function Ja(e, t) {
|
|
2064
2070
|
const n = ur(e);
|
|
2065
2071
|
return n === "unsupported" ? "unsupported" : t > dr[n] ? "too-large" : null;
|
|
2066
2072
|
}
|
|
2067
|
-
function
|
|
2073
|
+
function Za(e) {
|
|
2068
2074
|
return e.access !== "read" && e.effect !== "internal";
|
|
2069
2075
|
}
|
|
2070
2076
|
function pr(e) {
|
|
2071
2077
|
return `${e.kind}:${e.id || e.url || e.title}`;
|
|
2072
2078
|
}
|
|
2073
|
-
function
|
|
2079
|
+
function Qa(e, t = []) {
|
|
2074
2080
|
const n = new Set(t), r = [], i = [];
|
|
2075
2081
|
for (const o of e) {
|
|
2076
2082
|
const a = pr(o);
|
|
@@ -2078,26 +2084,26 @@ function qa(e, t = []) {
|
|
|
2078
2084
|
}
|
|
2079
2085
|
return { sources: r, keys: i };
|
|
2080
2086
|
}
|
|
2081
|
-
const
|
|
2082
|
-
function
|
|
2087
|
+
const es = "assist-source", ts = ["blocking", "due", "open"];
|
|
2088
|
+
function ns(e, t) {
|
|
2083
2089
|
const [n, r] = (e.subjectKey ?? "").split(":");
|
|
2084
2090
|
return n === t && r ? r : void 0;
|
|
2085
2091
|
}
|
|
2086
2092
|
const Ce = { blocking: 0, due: 1, open: 2 };
|
|
2087
|
-
function
|
|
2093
|
+
function rs(e, t) {
|
|
2088
2094
|
return Ce[e.band ?? "open"] - Ce[t.band ?? "open"] || (t.priority ?? 0) - (e.priority ?? 0) || e.id.localeCompare(t.id);
|
|
2089
2095
|
}
|
|
2090
|
-
function
|
|
2096
|
+
function is(e) {
|
|
2091
2097
|
return e.sessions.filter(
|
|
2092
2098
|
(t) => t.id !== e.exceptSessionId && t.state === "connected" && e.canHold(t.providerId)
|
|
2093
2099
|
);
|
|
2094
2100
|
}
|
|
2095
|
-
function
|
|
2101
|
+
function os(e) {
|
|
2096
2102
|
return e.sessions.filter(
|
|
2097
2103
|
(t) => t.id !== e.exceptSessionId && t.state === "connected" && !e.canHold(t.providerId)
|
|
2098
2104
|
);
|
|
2099
2105
|
}
|
|
2100
|
-
function
|
|
2106
|
+
function as(e) {
|
|
2101
2107
|
return e.sessions.some(
|
|
2102
2108
|
(n) => n.id !== e.exceptSessionId && (n.state === "connected" || n.state === "on_hold")
|
|
2103
2109
|
) ? { admit: !1, reason: "busy" } : { admit: !0 };
|
|
@@ -2119,7 +2125,7 @@ function mr(e, t) {
|
|
|
2119
2125
|
}
|
|
2120
2126
|
return n;
|
|
2121
2127
|
}
|
|
2122
|
-
function
|
|
2128
|
+
function ss(e, t) {
|
|
2123
2129
|
const n = mr(e, t);
|
|
2124
2130
|
return Object.entries(n).filter(([, r]) => !r).map(([r]) => r);
|
|
2125
2131
|
}
|
|
@@ -2130,7 +2136,7 @@ function gr(e, t) {
|
|
|
2130
2136
|
transport: t.transport ?? e.transport
|
|
2131
2137
|
} : e;
|
|
2132
2138
|
}
|
|
2133
|
-
function
|
|
2139
|
+
function cs(e, t) {
|
|
2134
2140
|
const n = [];
|
|
2135
2141
|
for (const r of e) {
|
|
2136
2142
|
if (!r.enabled) continue;
|
|
@@ -2141,16 +2147,16 @@ function os(e, t) {
|
|
|
2141
2147
|
}
|
|
2142
2148
|
return n;
|
|
2143
2149
|
}
|
|
2144
|
-
function
|
|
2150
|
+
function ls(e, t) {
|
|
2145
2151
|
return t.filter((n) => n.capability.intent === e);
|
|
2146
2152
|
}
|
|
2147
2153
|
function hr(e, t) {
|
|
2148
2154
|
return t.filter((n) => n.capability.targetSchemes.includes(e));
|
|
2149
2155
|
}
|
|
2150
|
-
function
|
|
2156
|
+
function us(e, t) {
|
|
2151
2157
|
return hr(e.scheme, t);
|
|
2152
2158
|
}
|
|
2153
|
-
function
|
|
2159
|
+
function ds(e, t, n) {
|
|
2154
2160
|
const r = [];
|
|
2155
2161
|
for (const i of e)
|
|
2156
2162
|
for (const o of n)
|
|
@@ -2179,10 +2185,10 @@ const br = {
|
|
|
2179
2185
|
id: "note",
|
|
2180
2186
|
custom: "note"
|
|
2181
2187
|
};
|
|
2182
|
-
function
|
|
2188
|
+
function ps(e) {
|
|
2183
2189
|
return e ? br[e] ?? "note" : "note";
|
|
2184
2190
|
}
|
|
2185
|
-
const
|
|
2191
|
+
const fs = "message_window", ms = "message_templates", gs = {
|
|
2186
2192
|
// E-mail
|
|
2187
2193
|
FROM: "from",
|
|
2188
2194
|
TO: "to",
|
|
@@ -2199,11 +2205,11 @@ const us = "message_window", ds = "message_templates", ps = {
|
|
|
2199
2205
|
// Voice/conference
|
|
2200
2206
|
HOST: "host",
|
|
2201
2207
|
PARTICIPANT: "participant"
|
|
2202
|
-
},
|
|
2208
|
+
}, hs = (e, t) => ({ intent: e, ...t }), ys = "folder_management", bs = "remote_search", As = "message_reactions", Es = {
|
|
2203
2209
|
ok: !1,
|
|
2204
2210
|
code: "UNSUPPORTED",
|
|
2205
2211
|
message: "Provider does not support this op"
|
|
2206
|
-
},
|
|
2212
|
+
}, Ss = "connector", _s = "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
2213
|
function l(e, t, n, r, i, o) {
|
|
2208
2214
|
return {
|
|
2209
2215
|
op: e,
|
|
@@ -2557,28 +2563,28 @@ const C = { undoable: !1, visible: !0 }, g = { undoable: !0, visible: !0 }, ve =
|
|
|
2557
2563
|
...Sr,
|
|
2558
2564
|
..._r
|
|
2559
2565
|
];
|
|
2560
|
-
function
|
|
2566
|
+
function Ts(e) {
|
|
2561
2567
|
return ct.filter((t) => t.kinds.includes(e));
|
|
2562
2568
|
}
|
|
2563
|
-
function
|
|
2569
|
+
function ws(e) {
|
|
2564
2570
|
return ct.find((t) => t.op === e);
|
|
2565
2571
|
}
|
|
2566
|
-
const
|
|
2567
|
-
function
|
|
2572
|
+
const Is = "documents.describe", Ms = "documents.inspect", Os = "documents.apply";
|
|
2573
|
+
function Cs(e) {
|
|
2568
2574
|
const t = e.indexOf(":");
|
|
2569
2575
|
if (t !== -1) return e.slice(0, t);
|
|
2570
2576
|
const n = e.indexOf(".");
|
|
2571
2577
|
return n === -1 ? e : e.slice(0, n);
|
|
2572
2578
|
}
|
|
2573
|
-
const
|
|
2574
|
-
function
|
|
2579
|
+
const ks = "installation-id";
|
|
2580
|
+
function vs(e) {
|
|
2575
2581
|
const t = [];
|
|
2576
2582
|
for (const n of Object.keys(e))
|
|
2577
2583
|
for (const r of Object.keys(e[n]))
|
|
2578
2584
|
t.push({ lang: n, key: r, value: e[n][r] });
|
|
2579
2585
|
return t;
|
|
2580
2586
|
}
|
|
2581
|
-
const
|
|
2587
|
+
const xs = "notification-source", Ns = (e, t) => `${e}.pref.${t}`, Rs = {
|
|
2582
2588
|
ai: [
|
|
2583
2589
|
"account.read",
|
|
2584
2590
|
"account.write",
|
|
@@ -2714,37 +2720,37 @@ const Cs = "notification-source", ks = (e, t) => `${e}.pref.${t}`, vs = {
|
|
|
2714
2720
|
user: ["user.read", "user.write"],
|
|
2715
2721
|
work: ["item.read", "item.write", "project.read", "project.write"]
|
|
2716
2722
|
}, lt = 9e4, Tr = ["out_of_office"], ut = (e) => Tr.includes(e);
|
|
2717
|
-
function
|
|
2723
|
+
function Ds(e, t, n) {
|
|
2718
2724
|
const r = n - e < lt, i = t?.status && (!t.expiresAt || t.expiresAt > n) ? t : void 0;
|
|
2719
2725
|
if (!i?.status) return { online: r, status: r ? "available" : "offline" };
|
|
2720
2726
|
const o = i.status;
|
|
2721
2727
|
return !r && !ut(o) ? { online: !1, status: "offline" } : { online: r, status: o, message: i.message };
|
|
2722
2728
|
}
|
|
2723
|
-
function
|
|
2729
|
+
function $s(e, t) {
|
|
2724
2730
|
const n = t - e.lastSeenAt < lt, r = n || ut(e.status) ? e.status : "offline";
|
|
2725
2731
|
return n === e.online && r === e.status ? e : { ...e, online: n, status: r };
|
|
2726
2732
|
}
|
|
2727
|
-
function
|
|
2733
|
+
function Ls(e, t) {
|
|
2728
2734
|
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
2735
|
}
|
|
2730
|
-
function
|
|
2736
|
+
function Ps(e) {
|
|
2731
2737
|
return e.providerAvailable && e.allowed;
|
|
2732
2738
|
}
|
|
2733
|
-
const
|
|
2734
|
-
function
|
|
2739
|
+
const Us = "resources.describe", Ks = "resources.search", Bs = "resources.resolve", js = "resources.attached";
|
|
2740
|
+
function Hs(e) {
|
|
2735
2741
|
const t = e.indexOf(":");
|
|
2736
2742
|
return t === -1 ? e : e.slice(0, t);
|
|
2737
2743
|
}
|
|
2738
|
-
const
|
|
2744
|
+
const Fs = "/provider/scope/related", Gs = "/provider/scope/read", dt = "auth";
|
|
2739
2745
|
function pt(e) {
|
|
2740
2746
|
const t = typeof e == "string" ? e.match(/apps\/([^/?#]+)/) : null;
|
|
2741
2747
|
return t ? t[1] : null;
|
|
2742
2748
|
}
|
|
2743
|
-
function
|
|
2749
|
+
function Ws(e) {
|
|
2744
2750
|
const t = pt(e);
|
|
2745
2751
|
return t ? t !== dt : typeof e == "string" && e.startsWith("/wake");
|
|
2746
2752
|
}
|
|
2747
|
-
function
|
|
2753
|
+
function Vs(e) {
|
|
2748
2754
|
return typeof e != "string" || e === "" || e === "/" ? !0 : pt(e) === dt;
|
|
2749
2755
|
}
|
|
2750
2756
|
function wr(e) {
|
|
@@ -2766,7 +2772,7 @@ function Mr(e, t) {
|
|
|
2766
2772
|
function Or(e) {
|
|
2767
2773
|
return e.publicBasePath ?? `/apps/${e.name}`;
|
|
2768
2774
|
}
|
|
2769
|
-
function
|
|
2775
|
+
function zs(e) {
|
|
2770
2776
|
const t = [];
|
|
2771
2777
|
for (const n of e) {
|
|
2772
2778
|
if (!n?.name) continue;
|
|
@@ -2799,10 +2805,10 @@ function kr(e, t) {
|
|
|
2799
2805
|
Ir(r.pattern).test(e) && (!n || Cr(r.pattern, n.pattern)) && (n = r);
|
|
2800
2806
|
return n ? { ...n, params: { ...n.props, ...Mr(n.pattern, e) } } : null;
|
|
2801
2807
|
}
|
|
2802
|
-
function
|
|
2808
|
+
function Xs(e, t) {
|
|
2803
2809
|
return kr(e, t) !== null;
|
|
2804
2810
|
}
|
|
2805
|
-
const
|
|
2811
|
+
const Ys = 10 * 1024 * 1024, qs = 25 * 1024 * 1024, Js = "sync-target", Zs = 20, vr = {
|
|
2806
2812
|
afrikaans: [
|
|
2807
2813
|
"[Muziek]",
|
|
2808
2814
|
"(C) TV GELDERLAND 2021",
|
|
@@ -3093,13 +3099,13 @@ function Br(e, t = Nr) {
|
|
|
3093
3099
|
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
3100
|
}
|
|
3095
3101
|
const jr = 60;
|
|
3096
|
-
function
|
|
3102
|
+
function Qs(e, t, n = jr) {
|
|
3097
3103
|
const r = new Set(e), i = [...e];
|
|
3098
3104
|
for (const o of t)
|
|
3099
3105
|
!o || r.has(o) || (r.add(o), i.push(o));
|
|
3100
3106
|
return i.slice(-n);
|
|
3101
3107
|
}
|
|
3102
|
-
function
|
|
3108
|
+
function ec(e) {
|
|
3103
3109
|
const { segments: t, now: n, state: r } = e;
|
|
3104
3110
|
if (r.lastTriggerAt && n - r.lastTriggerAt < Rr)
|
|
3105
3111
|
return { trigger: !1, reason: "too_soon" };
|
|
@@ -3111,13 +3117,13 @@ function Js(e) {
|
|
|
3111
3117
|
const a = Ur(i.text);
|
|
3112
3118
|
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
3119
|
}
|
|
3114
|
-
const
|
|
3120
|
+
const tc = [
|
|
3115
3121
|
"personal",
|
|
3116
3122
|
"workspace",
|
|
3117
3123
|
"connections",
|
|
3118
3124
|
"work",
|
|
3119
3125
|
"ai"
|
|
3120
|
-
],
|
|
3126
|
+
], nc = "navNotice", oe = {
|
|
3121
3127
|
// The lower bounds are deliberately generous: service ranges (0800/0900) are
|
|
3122
3128
|
// shorter than geographic numbers, and a too-strict minimum silently drops them.
|
|
3123
3129
|
// An over-permissive key is harmless — it simply matches nothing.
|
|
@@ -3171,7 +3177,7 @@ function Vr(e) {
|
|
|
3171
3177
|
const r = t.indexOf("@");
|
|
3172
3178
|
return r >= 0 && (t = t.slice(0, r)), t.trim();
|
|
3173
3179
|
}
|
|
3174
|
-
function
|
|
3180
|
+
function rc(e) {
|
|
3175
3181
|
if (!e) return !1;
|
|
3176
3182
|
const t = e.indexOf("@");
|
|
3177
3183
|
if (t <= 0) return !1;
|
|
@@ -3199,7 +3205,7 @@ function Re(e, t) {
|
|
|
3199
3205
|
}
|
|
3200
3206
|
return !a && L(i, o) ? `+${o.callingCode}${i}` : null;
|
|
3201
3207
|
}
|
|
3202
|
-
function
|
|
3208
|
+
function ic(e, t = 9) {
|
|
3203
3209
|
const n = (e ?? "").replace(/\D/g, "");
|
|
3204
3210
|
return n.length < t ? null : n.slice(-t);
|
|
3205
3211
|
}
|
|
@@ -3210,7 +3216,7 @@ function ft(e) {
|
|
|
3210
3216
|
const r = t.slice(0, n).split("+")[0], i = t.slice(n + 1);
|
|
3211
3217
|
return !r || !i.includes(".") ? null : `${r}@${i}`;
|
|
3212
3218
|
}
|
|
3213
|
-
function
|
|
3219
|
+
function oc(e) {
|
|
3214
3220
|
const t = ft(e);
|
|
3215
3221
|
return t ? t.slice(t.lastIndexOf("@") + 1) : null;
|
|
3216
3222
|
}
|
|
@@ -3276,16 +3282,16 @@ const Yr = /* @__PURE__ */ new Set([
|
|
|
3276
3282
|
"proximus.be",
|
|
3277
3283
|
"scarlet.be"
|
|
3278
3284
|
]);
|
|
3279
|
-
function
|
|
3285
|
+
function ac(e) {
|
|
3280
3286
|
const t = Xr(e);
|
|
3281
3287
|
return t ? Yr.has(t) : !1;
|
|
3282
3288
|
}
|
|
3283
|
-
function
|
|
3289
|
+
function sc(e) {
|
|
3284
3290
|
if (!e) return !1;
|
|
3285
3291
|
const t = e.trim().toLowerCase();
|
|
3286
3292
|
return t === "tel" || t === "sms" || t === "whatsapp" || t === "fax";
|
|
3287
3293
|
}
|
|
3288
|
-
function
|
|
3294
|
+
function cc(e, t, n) {
|
|
3289
3295
|
if (!e || !t) return null;
|
|
3290
3296
|
const r = e.trim().toLowerCase();
|
|
3291
3297
|
if (r === "tel" || r === "sms" || r === "whatsapp") {
|
|
@@ -3452,13 +3458,13 @@ function Ke(e) {
|
|
|
3452
3458
|
`).trim();
|
|
3453
3459
|
}
|
|
3454
3460
|
const gi = /<\s*(html|body|div|p|table|br|span)\b/i;
|
|
3455
|
-
function
|
|
3461
|
+
function lc(e) {
|
|
3456
3462
|
return gi.test(e);
|
|
3457
3463
|
}
|
|
3458
|
-
function
|
|
3464
|
+
function uc(e) {
|
|
3459
3465
|
return mt(e, !1);
|
|
3460
3466
|
}
|
|
3461
|
-
function
|
|
3467
|
+
function dc(e) {
|
|
3462
3468
|
return mt(e, !0);
|
|
3463
3469
|
}
|
|
3464
3470
|
function mt(e, t) {
|
|
@@ -3476,11 +3482,11 @@ export {
|
|
|
3476
3482
|
no as ACTIVE_ASSIGNMENT_STATUSES,
|
|
3477
3483
|
_ as ACTIVITY_CATALOG,
|
|
3478
3484
|
dr as AI_ATTACHMENT_LIMITS,
|
|
3479
|
-
|
|
3480
|
-
|
|
3485
|
+
qa as AI_ATTACHMENT_MAX_PER_TURN,
|
|
3486
|
+
Ya as AI_ATTACHMENT_TURN_BUDGET,
|
|
3481
3487
|
He as AI_VENDORS,
|
|
3482
3488
|
Pt as ALLOWED_LINK_SCHEMES,
|
|
3483
|
-
|
|
3489
|
+
Rs as APP_PERMISSIONS,
|
|
3484
3490
|
me as ARTIFACT_MAX_BLOCKS,
|
|
3485
3491
|
Xi as ARTIFACT_MAX_BODY_BYTES,
|
|
3486
3492
|
G as ARTIFACT_MAX_CELL_LEN,
|
|
@@ -3490,8 +3496,8 @@ export {
|
|
|
3490
3496
|
he as ARTIFACT_MAX_TABLE_ROWS,
|
|
3491
3497
|
Ge as ARTIFACT_MAX_TEXT_LEN,
|
|
3492
3498
|
Vt as ASSIGNMENT_SCOPE_KIND,
|
|
3493
|
-
|
|
3494
|
-
|
|
3499
|
+
ts as ASSIST_BANDS,
|
|
3500
|
+
es as ASSIST_SOURCE_PROVIDER_GROUP,
|
|
3495
3501
|
an as ATTENTION_STATUSES,
|
|
3496
3502
|
dt as AUTH_APP_NAME,
|
|
3497
3503
|
Nn as AUTO_READY_MIN_PROPOSALS,
|
|
@@ -3504,28 +3510,28 @@ export {
|
|
|
3504
3510
|
$r as CADENCE_MIN_NOVELTY,
|
|
3505
3511
|
Nr as CADENCE_WINDOW_MS,
|
|
3506
3512
|
Qo as CLASSIFY_VARS,
|
|
3507
|
-
|
|
3508
|
-
|
|
3513
|
+
Ss as CONNECTOR_PROVIDER_GROUP,
|
|
3514
|
+
_s as CONTEXT_COLLECT_SERVICE,
|
|
3509
3515
|
Wi as CORE_DIMENSIONS,
|
|
3510
3516
|
yr as CommunicationScheme,
|
|
3511
3517
|
qt as DAY_MS,
|
|
3512
3518
|
Ko as DEFAULT_MEMORY_BUDGET,
|
|
3513
3519
|
Hr as DEFAULT_PHONE_REGION,
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3520
|
+
Os as DOCUMENT_APPLY_SERVICE,
|
|
3521
|
+
Is as DOCUMENT_DESCRIBE_SERVICE,
|
|
3522
|
+
Ms as DOCUMENT_INSPECT_SERVICE,
|
|
3517
3523
|
ct as DOCUMENT_OPERATIONS,
|
|
3518
3524
|
ta as EMPTY_WORKFLOW,
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3525
|
+
ys as FEATURE_FOLDER_MANAGEMENT,
|
|
3526
|
+
As as FEATURE_MESSAGE_REACTIONS,
|
|
3527
|
+
bs as FEATURE_REMOTE_SEARCH,
|
|
3522
3528
|
ln as FOLLOW_UP_HOURS,
|
|
3523
3529
|
Yt as HOUR_MS,
|
|
3524
3530
|
gi as HTML_BODY_RE,
|
|
3525
3531
|
w as INELIGIBLE,
|
|
3526
|
-
|
|
3532
|
+
ks as INSTALLATION_HEADER,
|
|
3527
3533
|
On as INTERACTION_KIND,
|
|
3528
|
-
|
|
3534
|
+
gs as InteractionParticipantRole,
|
|
3529
3535
|
yn as KB_FALLBACK_LOCALE,
|
|
3530
3536
|
_e as KB_LOCALES,
|
|
3531
3537
|
ie as LOOSE_STATUSES,
|
|
@@ -3534,7 +3540,7 @@ export {
|
|
|
3534
3540
|
zt as MAX_ASSIGNMENT_TURNS,
|
|
3535
3541
|
hi as MAX_BLOCKS,
|
|
3536
3542
|
Ze as MAX_COLLECTION_DEPTH,
|
|
3537
|
-
|
|
3543
|
+
Ys as MAX_EDITABLE_FILE_BYTES,
|
|
3538
3544
|
yi as MAX_FIELDS,
|
|
3539
3545
|
bi as MAX_LIST_ITEMS,
|
|
3540
3546
|
$o as MAX_MEMORY_BROWSE,
|
|
@@ -3544,10 +3550,10 @@ export {
|
|
|
3544
3550
|
Yn as MAX_TOPIC_CANDIDATES,
|
|
3545
3551
|
Xn as MAX_TOPIC_EXAMPLES,
|
|
3546
3552
|
W as MAX_TOPIC_EXAMPLE_CHARS,
|
|
3547
|
-
|
|
3553
|
+
qs as MAX_VIEWABLE_FILE_BYTES,
|
|
3548
3554
|
Po as MIN_MEMORY_BUDGET,
|
|
3549
|
-
|
|
3550
|
-
|
|
3555
|
+
nc as NAV_NOTICE_SLOT,
|
|
3556
|
+
xs as NOTIFICATION_SOURCE_PROVIDER_GROUP,
|
|
3551
3557
|
jo as ONBOARDING_SOURCE_PROVIDER_GROUP,
|
|
3552
3558
|
Z as PAUSE_SNOOZED,
|
|
3553
3559
|
Q as PAUSE_WAITING_FOR_CUSTOMER,
|
|
@@ -3555,19 +3561,19 @@ export {
|
|
|
3555
3561
|
lt as PRESENCE_ONLINE_WINDOW_MS,
|
|
3556
3562
|
Tr as PRESENCE_SURVIVES_OFFLINE,
|
|
3557
3563
|
Fo as PROFILE_TOOL_DISPOSITIONS,
|
|
3558
|
-
|
|
3559
|
-
|
|
3564
|
+
ms as PROVIDER_FEATURE_MESSAGE_TEMPLATES,
|
|
3565
|
+
fs as PROVIDER_FEATURE_MESSAGE_WINDOW,
|
|
3560
3566
|
Yr as PUBLIC_EMAIL_DOMAINS,
|
|
3561
3567
|
Te as READ_STEP_TYPES,
|
|
3562
3568
|
En as RELATED_SUBJECT_KINDS,
|
|
3563
3569
|
st as RESERVED_STATUS_KEYS,
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3570
|
+
js as RESOURCE_ATTACHED_SERVICE,
|
|
3571
|
+
Us as RESOURCE_DESCRIBE_SERVICE,
|
|
3572
|
+
Bs as RESOURCE_RESOLVE_SERVICE,
|
|
3573
|
+
Ks as RESOURCE_SEARCH_SERVICE,
|
|
3574
|
+
Gs as SCOPE_READ_ROUTE,
|
|
3575
|
+
Fs as SCOPE_RELATED_ROUTE,
|
|
3576
|
+
tc as SETTINGS_CATEGORIES,
|
|
3571
3577
|
lo as SIGNATURE_INTENTS,
|
|
3572
3578
|
cn as SLA_HOURS_BY_PRIORITY,
|
|
3573
3579
|
fa as SLA_METRICS,
|
|
@@ -3576,17 +3582,18 @@ export {
|
|
|
3576
3582
|
kn as STEP_MAX_TOKENS_MIN,
|
|
3577
3583
|
en as SUMMARY_MIN_LAST_CHARS,
|
|
3578
3584
|
Qt as SUMMARY_MIN_MESSAGES,
|
|
3579
|
-
|
|
3580
|
-
|
|
3585
|
+
Zs as SYNC_RUN_MAX_ERRORS,
|
|
3586
|
+
Js as SYNC_TARGET_PROVIDER_GROUP,
|
|
3581
3587
|
Wt as TERMINAL_ASSIGNMENT_STATUSES,
|
|
3582
3588
|
Dn as TERMINAL_RUN_STATUSES,
|
|
3583
3589
|
Zo as TRIGGER_VARS,
|
|
3584
|
-
|
|
3590
|
+
Es as UNSUPPORTED,
|
|
3585
3591
|
Rt as USAGE_DIMENSIONS,
|
|
3586
3592
|
Dt as USAGE_DIMENSION_IDS,
|
|
3587
3593
|
nr as WORK_ACTIVITY_SCOPE_KIND,
|
|
3588
3594
|
Ho as WORK_AREAS,
|
|
3589
3595
|
xa as WORK_COMMENT_ADDED,
|
|
3596
|
+
$a as WORK_CYCLE_SYNC_KIND,
|
|
3590
3597
|
Na as WORK_ITEM_ASSIGNED,
|
|
3591
3598
|
er as WORK_ITEM_SCOPE_KIND,
|
|
3592
3599
|
Ra as WORK_ITEM_STATUS_CHANGED,
|
|
@@ -3605,9 +3612,9 @@ export {
|
|
|
3605
3612
|
Vo as actorKey,
|
|
3606
3613
|
Oa as addExampleCandidate,
|
|
3607
3614
|
ne as addWorkingMs,
|
|
3608
|
-
|
|
3615
|
+
$s as agePresenceEntry,
|
|
3609
3616
|
ur as aiAttachmentKind,
|
|
3610
|
-
|
|
3617
|
+
Ja as aiAttachmentRejection,
|
|
3611
3618
|
fe as aiBudgetLimit,
|
|
3612
3619
|
Fi as aiBudgetPeriodKey,
|
|
3613
3620
|
Ct as aiBudgetPeriodStart,
|
|
@@ -3628,7 +3635,7 @@ export {
|
|
|
3628
3635
|
io as assignmentScopeKey,
|
|
3629
3636
|
so as assignmentSubject,
|
|
3630
3637
|
Ni as buildActivityPreview,
|
|
3631
|
-
|
|
3638
|
+
cs as buildChannelIntents,
|
|
3632
3639
|
Qi as buildShareKeys,
|
|
3633
3640
|
Br as buildWindow,
|
|
3634
3641
|
re as calendarOf,
|
|
@@ -3636,43 +3643,45 @@ export {
|
|
|
3636
3643
|
Mi as carriesText,
|
|
3637
3644
|
xo as categoryLabel,
|
|
3638
3645
|
or as categoryOf,
|
|
3639
|
-
|
|
3646
|
+
ps as channelKindForScheme,
|
|
3640
3647
|
_i as channelKindOf,
|
|
3641
3648
|
ea as clampStepMaxTokens,
|
|
3642
3649
|
yo as classifyMail,
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3650
|
+
dc as cleanMessageMarkdown,
|
|
3651
|
+
uc as cleanMessageText,
|
|
3652
|
+
rs as compareAssistRank,
|
|
3646
3653
|
zn as compareWorkTypes,
|
|
3654
|
+
za as cycleOrder,
|
|
3655
|
+
Xa as cycleState,
|
|
3647
3656
|
co as decideAssignmentState,
|
|
3648
|
-
|
|
3649
|
-
|
|
3657
|
+
ec as decideCadence,
|
|
3658
|
+
as as decideIncomingCall,
|
|
3650
3659
|
bn as defaultLocaleOf,
|
|
3651
|
-
|
|
3652
|
-
|
|
3660
|
+
Fa as defaultStatusKey,
|
|
3661
|
+
hs as defineIntent,
|
|
3653
3662
|
gn as depthOf,
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3663
|
+
Ds as derivePresence,
|
|
3664
|
+
ss as disabledIntentsFromCapabilities,
|
|
3665
|
+
Cs as documentKindOf,
|
|
3657
3666
|
ha as dueAtOf,
|
|
3658
3667
|
Ea as elapsedSeconds,
|
|
3659
|
-
|
|
3660
|
-
|
|
3668
|
+
oc as emailDomain,
|
|
3669
|
+
cc as endpointKey,
|
|
3661
3670
|
Mr as extractParams,
|
|
3662
3671
|
Ur as extractTerms,
|
|
3663
|
-
|
|
3664
|
-
|
|
3672
|
+
us as filterByEndpoint,
|
|
3673
|
+
ls as filterByIntent,
|
|
3665
3674
|
hr as filterByTargetScheme,
|
|
3666
3675
|
K as findAiVendor,
|
|
3667
|
-
|
|
3676
|
+
vs as flattenLocales,
|
|
3668
3677
|
vt as floorToPeriod,
|
|
3669
3678
|
Sn as formatActingIdentity,
|
|
3670
3679
|
Ta as formatClock,
|
|
3671
3680
|
_a as formatHm,
|
|
3672
|
-
|
|
3681
|
+
Pa as formatItemKey,
|
|
3673
3682
|
kt as formatPeriod,
|
|
3674
3683
|
Aa as formatSlaDuration,
|
|
3675
|
-
|
|
3684
|
+
Qa as freshSources,
|
|
3676
3685
|
Di as getActivitySeenUserIds,
|
|
3677
3686
|
po as getContactEndpoints,
|
|
3678
3687
|
wo as getShortTitle,
|
|
@@ -3691,75 +3700,75 @@ export {
|
|
|
3691
3700
|
Li as isChatMessageActivity,
|
|
3692
3701
|
_o as isClosed,
|
|
3693
3702
|
Ci as isConnectedType,
|
|
3694
|
-
|
|
3703
|
+
Ws as isDeepLink,
|
|
3695
3704
|
hn as isDescendant,
|
|
3696
3705
|
fo as isEligible,
|
|
3697
3706
|
$i as isEmailActivity,
|
|
3698
|
-
|
|
3707
|
+
lc as isHtmlBody,
|
|
3699
3708
|
aa as isInFlight,
|
|
3700
3709
|
on as isInteractionUnseen,
|
|
3701
|
-
|
|
3710
|
+
Vs as isLandingPath,
|
|
3702
3711
|
Zt as isLikelyBulk,
|
|
3703
3712
|
Be as isMessageShape,
|
|
3704
3713
|
Ti as isMessageType,
|
|
3705
3714
|
Cr as isMoreSpecificPattern,
|
|
3706
3715
|
je as isNoteShape,
|
|
3707
3716
|
Wn as isOpenClock,
|
|
3708
|
-
|
|
3717
|
+
Za as isOutwardTool,
|
|
3709
3718
|
dn as isParked,
|
|
3710
3719
|
$n as isPaused,
|
|
3711
3720
|
Oi as isPlaybookAuthoredType,
|
|
3712
|
-
|
|
3713
|
-
|
|
3721
|
+
ac as isPublicEmailDomain,
|
|
3722
|
+
Xs as isPublicPath,
|
|
3714
3723
|
pn as isReminderActive,
|
|
3715
3724
|
Ii as isReplyableType,
|
|
3716
3725
|
Ao as isSlaAtRisk,
|
|
3717
3726
|
oa as isTerminal,
|
|
3718
3727
|
go as isThreadLongEnough,
|
|
3719
3728
|
ki as isTranscriptType,
|
|
3720
|
-
|
|
3729
|
+
Ga as isWorkClosed,
|
|
3721
3730
|
Ia as isWorkTypeVisible,
|
|
3722
|
-
|
|
3731
|
+
Ba as itemDossierKeys,
|
|
3723
3732
|
ir as ladderFor,
|
|
3724
3733
|
Io as linkLabel,
|
|
3725
3734
|
Gi as listeningAllowed,
|
|
3726
3735
|
Co as localeInstruction,
|
|
3727
3736
|
Oo as localeName,
|
|
3728
3737
|
vo as localesOf,
|
|
3729
|
-
|
|
3730
|
-
|
|
3738
|
+
rc as looksLikeEmail,
|
|
3739
|
+
ds as matchContactToIntents,
|
|
3731
3740
|
kr as matchPublicRoute,
|
|
3732
3741
|
Ro as mcpCredentialScope,
|
|
3733
3742
|
Do as mcpToolPrefix,
|
|
3734
|
-
|
|
3743
|
+
Qs as mergeShownKeys,
|
|
3735
3744
|
St as messageCountsAs,
|
|
3736
|
-
|
|
3745
|
+
sc as needsPhoneRegion,
|
|
3737
3746
|
wi as nestsUnderParent,
|
|
3738
3747
|
ya as nextSlaClock,
|
|
3739
3748
|
Yi as normalizeArtifactBlocks,
|
|
3740
3749
|
Ei as normalizeBlocks,
|
|
3741
3750
|
ft as normalizeEmail,
|
|
3742
3751
|
I as normalizeExample,
|
|
3743
|
-
|
|
3752
|
+
Ns as notificationPrefKey,
|
|
3744
3753
|
Kr as novelty,
|
|
3745
|
-
|
|
3746
|
-
|
|
3754
|
+
ws as operationDescriptor,
|
|
3755
|
+
Ts as operationsForKind,
|
|
3747
3756
|
mo as parkMarksById,
|
|
3748
3757
|
Go as parseActingIdentity,
|
|
3749
3758
|
da as parseClockMinutes,
|
|
3750
|
-
|
|
3759
|
+
Ua as parseItemKey,
|
|
3751
3760
|
Ir as pathToRegex,
|
|
3752
3761
|
pa as pauseBitFor,
|
|
3753
3762
|
Vi as periodsInRange,
|
|
3754
|
-
|
|
3763
|
+
ic as phoneSuffix,
|
|
3755
3764
|
ho as pickMailHeaders,
|
|
3756
3765
|
At as plainTextFromMarkdown,
|
|
3757
3766
|
ga as planSlaEvent,
|
|
3758
3767
|
wn as playbookActor,
|
|
3759
3768
|
ra as procedureOf,
|
|
3760
|
-
|
|
3769
|
+
ja as projectDossierKeys,
|
|
3761
3770
|
Or as publicBasePathFor,
|
|
3762
|
-
|
|
3771
|
+
zs as publicRoutePatterns,
|
|
3763
3772
|
ao as reactionWakesAssignment,
|
|
3764
3773
|
X as readPath,
|
|
3765
3774
|
we as readStepError,
|
|
@@ -3773,8 +3782,8 @@ export {
|
|
|
3773
3782
|
Y as resolveActivityText,
|
|
3774
3783
|
fr as resolveChannelIntents,
|
|
3775
3784
|
Xt as resolveSignature,
|
|
3776
|
-
|
|
3777
|
-
|
|
3785
|
+
Ls as resolveWorkMode,
|
|
3786
|
+
Hs as resourceKindOf,
|
|
3778
3787
|
Wo as runActor,
|
|
3779
3788
|
ca as runInteractionId,
|
|
3780
3789
|
jt as sanitizeInline,
|
|
@@ -3782,24 +3791,24 @@ export {
|
|
|
3782
3791
|
Eo as scoreInteraction,
|
|
3783
3792
|
Da as scoreWorkItem,
|
|
3784
3793
|
No as selectLenses,
|
|
3785
|
-
|
|
3786
|
-
|
|
3794
|
+
os as sessionsHoldCannotReach,
|
|
3795
|
+
is as sessionsToHold,
|
|
3787
3796
|
ze as shareKeyForTeam,
|
|
3788
3797
|
Ve as shareKeyForUser,
|
|
3789
3798
|
eo as shareKeysForViewer,
|
|
3790
|
-
|
|
3799
|
+
Ps as shouldRunAudioPipeline,
|
|
3791
3800
|
ba as slaBadgeTone,
|
|
3792
3801
|
bo as slaHoursByInbox,
|
|
3793
3802
|
fn as slaHoursFor,
|
|
3794
3803
|
ar as sortStatuses,
|
|
3795
3804
|
pr as sourceKey,
|
|
3796
|
-
|
|
3805
|
+
Ha as statusIn,
|
|
3797
3806
|
na as stepsOf,
|
|
3798
3807
|
Et as stripHtml,
|
|
3799
3808
|
sa as subjectKeyOf,
|
|
3800
3809
|
et as subjectOf,
|
|
3801
|
-
|
|
3802
|
-
|
|
3810
|
+
ns as subjectRef,
|
|
3811
|
+
Ka as suggestProjectKey,
|
|
3803
3812
|
la as summarizeReactions,
|
|
3804
3813
|
Yo as targetById,
|
|
3805
3814
|
Xo as targetForActivityType,
|
|
@@ -3809,15 +3818,15 @@ export {
|
|
|
3809
3818
|
Zn as topicOfferedForTeam,
|
|
3810
3819
|
ka as topicsForTeam,
|
|
3811
3820
|
qn as truncateExample,
|
|
3812
|
-
|
|
3821
|
+
Wa as uniqueWorkStatusKey,
|
|
3813
3822
|
wa as uniqueWorkTypeKey,
|
|
3814
3823
|
$t as usageMetricId,
|
|
3815
3824
|
zi as usageMetrics,
|
|
3816
|
-
|
|
3825
|
+
Va as validateStatuses,
|
|
3817
3826
|
zo as valueAtPath,
|
|
3818
3827
|
te as waitHoursOf,
|
|
3819
3828
|
oo as wakesAssignment,
|
|
3820
|
-
|
|
3829
|
+
La as workActivityScopeKey,
|
|
3821
3830
|
rr as workItemScopeKey,
|
|
3822
3831
|
at as workProjectScopeKey,
|
|
3823
3832
|
sr as workStatusKey,
|