@inkeep/agents-ui 0.0.0-dev-20260528131439 → 0.0.0-dev-20260528153706
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/primitives/components/embedded-chat/chat-error-helpers.d.ts +3 -2
- package/dist/primitives/components/embedded-chat/use-captcha.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-captcha.d.ts +2 -1
- package/dist/primitives/components/embedded-chat/use-captcha.js +69 -60
- package/dist/primitives/hooks/use-inkeep-api-client.cjs +1 -1
- package/dist/primitives/hooks/use-inkeep-api-client.d.ts +8 -3
- package/dist/primitives/hooks/use-inkeep-api-client.js +41 -40
- package/dist/primitives/providers/chat-auth-provider.cjs +1 -1
- package/dist/primitives/providers/chat-auth-provider.js +19 -18
- package/package.json +1 -1
|
@@ -10,9 +10,10 @@ export interface ErrorWithCode extends Error {
|
|
|
10
10
|
*/
|
|
11
11
|
export declare function resolveHttpStatusCode(error: Error): number | null;
|
|
12
12
|
/**
|
|
13
|
-
* Classifies a streaming-transport error as a
|
|
13
|
+
* Classifies a streaming-transport error as a captcha (Sentinel) or session auth failure,
|
|
14
|
+
* or null.
|
|
14
15
|
*/
|
|
15
|
-
export declare function resolveStreamingAuthError(error: Error): '
|
|
16
|
+
export declare function resolveStreamingAuthError(error: Error): 'captcha' | 'session' | null;
|
|
16
17
|
/**
|
|
17
18
|
* Recoverable errors are input-validation failures where the user can fix
|
|
18
19
|
* their input and retry without clearing the conversation.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const d=require("react"),v="[sentinel]",y="https://cdn.jsdelivr.net/npm/altcha@3.0.9/dist/main/altcha.min.js",P="sha384-SAvZpYmIwEwxkbER1dijvBKm10sobAn/28KXy+Z7/lGbsCshTPhYrFJ2kU7LKiFM",T=1e4,R=3e4;let f=null;function S(){if(typeof customElements>"u"||customElements.get("altcha-widget"))return Promise.resolve();if(f)return f;const u=i=>e=>{f=null,i(e)};return f=new Promise((i,e)=>{const n=u(e);if(document.querySelector(`script[src="${y}"]`)){customElements.whenDefined("altcha-widget").then(()=>i()).catch(n);return}const t=document.createElement("script");t.src=y,t.integrity=P,t.crossOrigin="anonymous",t.type="module",t.async=!0,t.onload=()=>{customElements.whenDefined("altcha-widget").then(()=>i()).catch(()=>n(new Error("altcha-widget custom element never registered")))},t.onerror=()=>{console.error(v,"failed to load widget script"),n(new Error("Failed to load altcha-widget script"))},document.head.appendChild(t)}),f}function b(u){const i=document.createElement("div");i.style.cssText="position:fixed;left:-9999px;top:-9999px;width:0;height:0;overflow:hidden;pointer-events:none",document.body.appendChild(i);const e=document.createElement("altcha-widget");e.setAttribute("challenge",u),e.setAttribute("auto","onload"),e.setAttribute("hidefooter","true"),e.setAttribute("hidelogo","true"),i.appendChild(e);let n=[],r,t="mounted",c=!1,m=!1,o=null,a=!1;const h=l=>{const s=n;n=[];for(const E of s)E(l)},g=()=>{c||a||(r=void 0,t="resetting",e.reset?.(),e.verify?.())},w=()=>{o&&clearTimeout(o),o=setTimeout(()=>{o=null,!(!c||a)&&(c=!1,r=void 0,t="resetting",e.reset?.(),e.verify?.())},R)},p=l=>{const s=l.detail;s&&(t=s.state??t,s.state==="verified"&&s.payload&&(m=!0,r=s.payload,h(s.payload)),s.state==="error"&&(r=void 0,h(void 0),m||(c=!0,console.warn(v,"Sentinel unavailable, requests will proceed without bot protection"),w())))};return e.addEventListener("statechange",p),{getPayload:()=>{if(a||c)return Promise.resolve(void 0);if(r){const l=r;return r=void 0,g(),Promise.resolve(l)}return t==="verified"&&g(),new Promise(l=>{n.push(l),setTimeout(()=>{const s=n.indexOf(l);s!==-1&&(n.splice(s,1),l(void 0))},T)})},startNextSolve:g,destroy:()=>{a=!0,e.removeEventListener("statechange",p),o&&(clearTimeout(o),o=null),h(void 0),i.remove()}}}const A=({baseUrl:u,appId:i,shouldBypassCaptcha:e=!1})=>{const n=d.useRef(null),r=d.useRef(null),t=d.useCallback(()=>n.current?Promise.resolve():r.current?r.current:i?(r.current=S().then(()=>{if(!n.current){const o=`${u}/run/auth/sentinel/challenge?appId=${encodeURIComponent(i)}`;n.current=b(o)}}).catch(o=>{console.error(v,"failed to mount widget",o),r.current=null}),r.current):Promise.resolve(),[u,i]);d.useEffect(()=>{if(!e)return t(),()=>{n.current?.destroy(),n.current=null,r.current=null}},[e,t]);const c=d.useCallback(async()=>{if(e)return{};await t();const o=n.current;if(!o)return{};const a=await o.getPayload();return a?{"x-inkeep-challenge-solution":btoa(JSON.stringify({payload:a}))}:{}},[e,t]),m=d.useCallback(()=>{n.current?.startNextSolve()},[]);return{getCaptchaHeader:c,invalidate:m}};exports.useCaptcha=A;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
interface UseCaptchaOptions {
|
|
2
2
|
baseUrl: string;
|
|
3
|
+
appId: string | undefined;
|
|
3
4
|
shouldBypassCaptcha?: boolean;
|
|
4
5
|
}
|
|
5
|
-
export declare const useCaptcha: ({ baseUrl, shouldBypassCaptcha }: UseCaptchaOptions) => {
|
|
6
|
+
export declare const useCaptcha: ({ baseUrl, appId, shouldBypassCaptcha }: UseCaptchaOptions) => {
|
|
6
7
|
getCaptchaHeader: () => Promise<Record<string, string>>;
|
|
7
8
|
invalidate: () => void;
|
|
8
9
|
};
|
|
@@ -1,88 +1,97 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { useRef as
|
|
3
|
-
const
|
|
4
|
-
let
|
|
5
|
-
function
|
|
2
|
+
import { useRef as w, useCallback as v, useEffect as T } from "react";
|
|
3
|
+
const g = "[sentinel]", y = "https://cdn.jsdelivr.net/npm/altcha@3.0.9/dist/main/altcha.min.js", A = "sha384-SAvZpYmIwEwxkbER1dijvBKm10sobAn/28KXy+Z7/lGbsCshTPhYrFJ2kU7LKiFM", R = 1e4, S = 3e4;
|
|
4
|
+
let u = null;
|
|
5
|
+
function x() {
|
|
6
6
|
if (typeof customElements > "u" || customElements.get("altcha-widget")) return Promise.resolve();
|
|
7
|
-
if (
|
|
8
|
-
const
|
|
9
|
-
|
|
7
|
+
if (u) return u;
|
|
8
|
+
const d = (i) => (e) => {
|
|
9
|
+
u = null, i(e);
|
|
10
10
|
};
|
|
11
|
-
return
|
|
12
|
-
const
|
|
11
|
+
return u = new Promise((i, e) => {
|
|
12
|
+
const n = d(e);
|
|
13
13
|
if (document.querySelector(
|
|
14
|
-
`script[src="${
|
|
14
|
+
`script[src="${y}"]`
|
|
15
15
|
)) {
|
|
16
|
-
customElements.whenDefined("altcha-widget").then(() =>
|
|
16
|
+
customElements.whenDefined("altcha-widget").then(() => i()).catch(n);
|
|
17
17
|
return;
|
|
18
18
|
}
|
|
19
|
-
const
|
|
20
|
-
|
|
21
|
-
customElements.whenDefined("altcha-widget").then(() =>
|
|
22
|
-
},
|
|
23
|
-
console.error(
|
|
24
|
-
}, document.head.appendChild(
|
|
25
|
-
}),
|
|
19
|
+
const t = document.createElement("script");
|
|
20
|
+
t.src = y, t.integrity = A, t.crossOrigin = "anonymous", t.type = "module", t.async = !0, t.onload = () => {
|
|
21
|
+
customElements.whenDefined("altcha-widget").then(() => i()).catch(() => n(new Error("altcha-widget custom element never registered")));
|
|
22
|
+
}, t.onerror = () => {
|
|
23
|
+
console.error(g, "failed to load widget script"), n(new Error("Failed to load altcha-widget script"));
|
|
24
|
+
}, document.head.appendChild(t);
|
|
25
|
+
}), u;
|
|
26
26
|
}
|
|
27
|
-
function
|
|
28
|
-
const
|
|
29
|
-
|
|
27
|
+
function b(d) {
|
|
28
|
+
const i = document.createElement("div");
|
|
29
|
+
i.style.cssText = "position:fixed;left:-9999px;top:-9999px;width:0;height:0;overflow:hidden;pointer-events:none", document.body.appendChild(i);
|
|
30
30
|
const e = document.createElement("altcha-widget");
|
|
31
|
-
e.setAttribute("challenge",
|
|
32
|
-
let
|
|
33
|
-
const
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
e.setAttribute("challenge", d), e.setAttribute("auto", "onload"), e.setAttribute("hidefooter", "true"), e.setAttribute("hidelogo", "true"), i.appendChild(e);
|
|
32
|
+
let n = [], r, t = "mounted", c = !1, f = !1, o = null, a = !1;
|
|
33
|
+
const m = (l) => {
|
|
34
|
+
const s = n;
|
|
35
|
+
n = [];
|
|
36
|
+
for (const P of s) P(l);
|
|
37
|
+
}, h = () => {
|
|
38
|
+
c || a || (r = void 0, t = "resetting", e.reset?.(), e.verify?.());
|
|
39
|
+
}, E = () => {
|
|
40
|
+
o && clearTimeout(o), o = setTimeout(() => {
|
|
41
|
+
o = null, !(!c || a) && (c = !1, r = void 0, t = "resetting", e.reset?.(), e.verify?.());
|
|
42
|
+
}, S);
|
|
43
|
+
}, p = (l) => {
|
|
36
44
|
const s = l.detail;
|
|
37
|
-
s && (
|
|
38
|
-
|
|
45
|
+
s && (t = s.state ?? t, s.state === "verified" && s.payload && (f = !0, r = s.payload, m(s.payload)), s.state === "error" && (r = void 0, m(void 0), f || (c = !0, console.warn(
|
|
46
|
+
g,
|
|
39
47
|
"Sentinel unavailable, requests will proceed without bot protection"
|
|
40
|
-
))));
|
|
48
|
+
), E())));
|
|
41
49
|
};
|
|
42
|
-
return e.addEventListener("statechange",
|
|
43
|
-
if (
|
|
44
|
-
if (
|
|
45
|
-
const l =
|
|
46
|
-
return
|
|
50
|
+
return e.addEventListener("statechange", p), { getPayload: () => {
|
|
51
|
+
if (a || c) return Promise.resolve(void 0);
|
|
52
|
+
if (r) {
|
|
53
|
+
const l = r;
|
|
54
|
+
return r = void 0, h(), Promise.resolve(l);
|
|
47
55
|
}
|
|
48
|
-
return
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
56
|
+
return t === "verified" && h(), new Promise((l) => {
|
|
57
|
+
n.push(l), setTimeout(() => {
|
|
58
|
+
const s = n.indexOf(l);
|
|
59
|
+
s !== -1 && (n.splice(s, 1), l(void 0));
|
|
60
|
+
}, R);
|
|
52
61
|
});
|
|
53
|
-
}, startNextSolve:
|
|
54
|
-
e.removeEventListener("statechange",
|
|
62
|
+
}, startNextSolve: h, destroy: () => {
|
|
63
|
+
a = !0, e.removeEventListener("statechange", p), o && (clearTimeout(o), o = null), m(void 0), i.remove();
|
|
55
64
|
} };
|
|
56
65
|
}
|
|
57
|
-
const
|
|
58
|
-
const
|
|
59
|
-
if (!
|
|
60
|
-
const o = `${
|
|
61
|
-
|
|
66
|
+
const L = ({ baseUrl: d, appId: i, shouldBypassCaptcha: e = !1 }) => {
|
|
67
|
+
const n = w(null), r = w(null), t = v(() => n.current ? Promise.resolve() : r.current ? r.current : i ? (r.current = x().then(() => {
|
|
68
|
+
if (!n.current) {
|
|
69
|
+
const o = `${d}/run/auth/sentinel/challenge?appId=${encodeURIComponent(i)}`;
|
|
70
|
+
n.current = b(o);
|
|
62
71
|
}
|
|
63
72
|
}).catch((o) => {
|
|
64
|
-
console.error(
|
|
65
|
-
})
|
|
66
|
-
|
|
67
|
-
if (!
|
|
68
|
-
return
|
|
69
|
-
|
|
73
|
+
console.error(g, "failed to mount widget", o), r.current = null;
|
|
74
|
+
}), r.current) : Promise.resolve(), [d, i]);
|
|
75
|
+
T(() => {
|
|
76
|
+
if (!e)
|
|
77
|
+
return t(), () => {
|
|
78
|
+
n.current?.destroy(), n.current = null, r.current = null;
|
|
70
79
|
};
|
|
71
|
-
}, [
|
|
72
|
-
const
|
|
73
|
-
if (
|
|
74
|
-
await
|
|
75
|
-
const o =
|
|
80
|
+
}, [e, t]);
|
|
81
|
+
const c = v(async () => {
|
|
82
|
+
if (e) return {};
|
|
83
|
+
await t();
|
|
84
|
+
const o = n.current;
|
|
76
85
|
if (!o) return {};
|
|
77
86
|
const a = await o.getPayload();
|
|
78
87
|
return a ? {
|
|
79
88
|
"x-inkeep-challenge-solution": btoa(JSON.stringify({ payload: a }))
|
|
80
89
|
} : {};
|
|
81
|
-
}, [
|
|
82
|
-
|
|
90
|
+
}, [e, t]), f = v(() => {
|
|
91
|
+
n.current?.startNextSolve();
|
|
83
92
|
}, []);
|
|
84
|
-
return { getCaptchaHeader:
|
|
93
|
+
return { getCaptchaHeader: c, invalidate: f };
|
|
85
94
|
};
|
|
86
95
|
export {
|
|
87
|
-
|
|
96
|
+
L as useCaptcha
|
|
88
97
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("react");function w(r,e){if(r===400&&typeof e=="object"&&e!==null){const t=(e.detail??"").toLowerCase();if(t.includes("challenge")||t.includes("bot protection")||t.includes("proof-of-work"))return"captcha"}if(r===401&&typeof e=="object"&&e!==null){const t=e.detail??"";if(t.includes("Invalid end-user JWT")||t.includes("Bearer token required"))return"session"}return r===403&&typeof e=="object"&&e!==null&&(e.detail??"").toLowerCase().includes("bot protection")?"captcha":null}function E(r){if(!r)return{};if(r instanceof Headers){const e={};return r.forEach((t,c)=>{e[c]=t}),e}return Array.isArray(r)?Object.fromEntries(r):r}function A(r,e,t,c){return{...r?{"x-inkeep-app-id":r}:{},...e?{Authorization:`Bearer ${e}`}:{},...E(c),...t}}function g({appId:r,authToken:e,getCaptchaHeader:t,invalidateCaptcha:c,refreshSession:i}){const o=u.useRef(r);o.current=r;const f=u.useRef(e);f.current=e;const j=u.useRef(t);j.current=t;const l=u.useRef(c);l.current=c;const a=u.useRef(i);return a.current=i,{fetchWithAuth:u.useCallback(async(d,s)=>{const k=A(o.current,f.current,{},s?.headers),n=await fetch(d,{...s,headers:k});if(n.status!==400&&n.status!==401&&n.status!==403)return n;let h;try{h=await n.clone().json()}catch{return n}const p=w(n.status,h);if(p==="captcha")return l.current(),n;if(p==="session"&&a.current){const R=await a.current();if(!R)return n;const C=A(o.current,R,{},s?.headers);return fetch(d,{...s,headers:C})}return n},[])}}exports.parseAuthError=w;exports.useInkeepApiClient=g;
|
|
@@ -15,10 +15,15 @@ interface UseInkeepApiClientOptions {
|
|
|
15
15
|
* Parses an API error response body to determine the failure type.
|
|
16
16
|
*
|
|
17
17
|
* The Run API returns:
|
|
18
|
-
* - 400 + detail containing "challenge" or "
|
|
19
|
-
* - 401 + detail matching JWT/bearer messages
|
|
18
|
+
* - 400 + detail containing "challenge" or "bot protection" → captcha format failure
|
|
19
|
+
* - 401 + detail matching JWT/bearer messages → session token failure
|
|
20
|
+
* - 403 + detail containing "bot protection verification failed" → captcha rejected
|
|
21
|
+
* (Sentinel classified as bot OR payload was replayed)
|
|
22
|
+
*
|
|
23
|
+
* Legacy "proof-of-work" wording is still matched so older server versions are handled
|
|
24
|
+
* gracefully during the rolling deploy window.
|
|
20
25
|
*/
|
|
21
|
-
export declare function parseAuthError(status: number, body: unknown): '
|
|
26
|
+
export declare function parseAuthError(status: number, body: unknown): 'captcha' | 'session' | null;
|
|
22
27
|
/**
|
|
23
28
|
* Returns a stable `fetchWithAuth` function that automatically:
|
|
24
29
|
* - Injects auth headers (x-inkeep-app-id, Authorization, x-inkeep-challenge-solution)
|
|
@@ -1,74 +1,75 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { useRef as s, useCallback as
|
|
3
|
-
function
|
|
4
|
-
if (
|
|
5
|
-
const t = (
|
|
6
|
-
if (t.includes("challenge") || t.includes("proof-of-work"))
|
|
2
|
+
import { useRef as s, useCallback as C } from "react";
|
|
3
|
+
function E(r, e) {
|
|
4
|
+
if (r === 400 && typeof e == "object" && e !== null) {
|
|
5
|
+
const t = (e.detail ?? "").toLowerCase();
|
|
6
|
+
if (t.includes("challenge") || t.includes("bot protection") || t.includes("proof-of-work"))
|
|
7
|
+
return "captcha";
|
|
7
8
|
}
|
|
8
|
-
if (
|
|
9
|
-
const t =
|
|
9
|
+
if (r === 401 && typeof e == "object" && e !== null) {
|
|
10
|
+
const t = e.detail ?? "";
|
|
10
11
|
if (t.includes("Invalid end-user JWT") || t.includes("Bearer token required"))
|
|
11
12
|
return "session";
|
|
12
13
|
}
|
|
13
|
-
return null;
|
|
14
|
+
return r === 403 && typeof e == "object" && e !== null && (e.detail ?? "").toLowerCase().includes("bot protection") ? "captcha" : null;
|
|
14
15
|
}
|
|
15
|
-
function
|
|
16
|
-
if (!
|
|
17
|
-
if (
|
|
18
|
-
const
|
|
19
|
-
return
|
|
20
|
-
|
|
21
|
-
}),
|
|
16
|
+
function m(r) {
|
|
17
|
+
if (!r) return {};
|
|
18
|
+
if (r instanceof Headers) {
|
|
19
|
+
const e = {};
|
|
20
|
+
return r.forEach((t, c) => {
|
|
21
|
+
e[c] = t;
|
|
22
|
+
}), e;
|
|
22
23
|
}
|
|
23
|
-
return Array.isArray(
|
|
24
|
+
return Array.isArray(r) ? Object.fromEntries(r) : r;
|
|
24
25
|
}
|
|
25
|
-
function A(
|
|
26
|
+
function A(r, e, t, c) {
|
|
26
27
|
return {
|
|
27
|
-
...
|
|
28
|
-
...
|
|
29
|
-
...
|
|
28
|
+
...r ? { "x-inkeep-app-id": r } : {},
|
|
29
|
+
...e ? { Authorization: `Bearer ${e}` } : {},
|
|
30
|
+
...m(c),
|
|
30
31
|
// captcha last — must not be overridden by caller headers
|
|
31
32
|
...t
|
|
32
33
|
};
|
|
33
34
|
}
|
|
34
|
-
function
|
|
35
|
-
appId:
|
|
36
|
-
authToken:
|
|
35
|
+
function W({
|
|
36
|
+
appId: r,
|
|
37
|
+
authToken: e,
|
|
37
38
|
getCaptchaHeader: t,
|
|
38
39
|
invalidateCaptcha: c,
|
|
39
|
-
refreshSession:
|
|
40
|
+
refreshSession: i
|
|
40
41
|
}) {
|
|
41
|
-
const o = s(
|
|
42
|
-
o.current =
|
|
43
|
-
const
|
|
44
|
-
|
|
42
|
+
const o = s(r);
|
|
43
|
+
o.current = r;
|
|
44
|
+
const f = s(e);
|
|
45
|
+
f.current = e;
|
|
45
46
|
const R = s(t);
|
|
46
47
|
R.current = t;
|
|
47
48
|
const l = s(c);
|
|
48
49
|
l.current = c;
|
|
49
|
-
const a = s(
|
|
50
|
-
return a.current =
|
|
51
|
-
const
|
|
52
|
-
if (n.status !== 400 && n.status !== 401) return n;
|
|
53
|
-
let
|
|
50
|
+
const a = s(i);
|
|
51
|
+
return a.current = i, { fetchWithAuth: C(async (h, u) => {
|
|
52
|
+
const j = A(o.current, f.current, {}, u?.headers), n = await fetch(h, { ...u, headers: j });
|
|
53
|
+
if (n.status !== 400 && n.status !== 401 && n.status !== 403) return n;
|
|
54
|
+
let d;
|
|
54
55
|
try {
|
|
55
|
-
|
|
56
|
+
d = await n.clone().json();
|
|
56
57
|
} catch {
|
|
57
58
|
return n;
|
|
58
59
|
}
|
|
59
|
-
const p =
|
|
60
|
-
if (p === "
|
|
60
|
+
const p = E(n.status, d);
|
|
61
|
+
if (p === "captcha")
|
|
61
62
|
return l.current(), n;
|
|
62
63
|
if (p === "session" && a.current) {
|
|
63
64
|
const w = await a.current();
|
|
64
65
|
if (!w) return n;
|
|
65
|
-
const
|
|
66
|
-
return fetch(
|
|
66
|
+
const k = A(o.current, w, {}, u?.headers);
|
|
67
|
+
return fetch(h, { ...u, headers: k });
|
|
67
68
|
}
|
|
68
69
|
return n;
|
|
69
70
|
}, []) };
|
|
70
71
|
}
|
|
71
72
|
export {
|
|
72
|
-
|
|
73
|
-
|
|
73
|
+
E as parseAuthError,
|
|
74
|
+
W as useInkeepApiClient
|
|
74
75
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const y=require("react/jsx-runtime"),
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const y=require("react/jsx-runtime"),d=require("react"),T=require("./config-provider.cjs"),S=require("../hooks/use-auth-token.cjs"),b=require("../components/embedded-chat/use-captcha.cjs"),P=require("../hooks/use-anonymous-session.cjs"),l=d.createContext(void 0),q=({children:e})=>{const{baseSettings:o,aiChatSettings:p}=T.useInkeepConfig(),{shouldBypassCaptcha:C,privacyPreferences:f}=o,{baseUrl:i,appId:u,apiKey:s}=p,{authToken:n,isLoading:a,refreshToken:v}=S.useAuthToken(),g=!!o.getAuthToken,t=!!n,{getCaptchaHeader:r,invalidate:c}=b.useCaptcha({baseUrl:i,appId:u,shouldBypassCaptcha:C||!!s}),{sessionToken:h,refreshSession:A}=P.useAnonymousSession({baseUrl:i,appId:u,getCaptchaHeader:r,invalidateCaptcha:c,optOutAllAnalytics:f?.optOutAllAnalytics,enabled:!t&&!a}),k={authToken:n,isAuthenticated:t,isAuthLoading:a,isAuthConfigured:g,refreshAuthToken:v,sessionToken:h,refreshSession:A,getCaptchaHeader:r,invalidateCaptcha:c,effectiveAuthToken:s??(t?n:h),applicableRefreshSession:s||t?void 0:A};return y.jsx(l.Provider,{value:k,children:e})},x=()=>{const e=d.useContext(l);if(!e)throw new Error("useChatAuth must be used within a ChatAuthProvider");return e};exports.ChatAuthProvider=q;exports.useChatAuth=x;
|
|
@@ -5,33 +5,34 @@ import { useInkeepConfig as y } from "./config-provider.js";
|
|
|
5
5
|
import { useAuthToken as b } from "../hooks/use-auth-token.js";
|
|
6
6
|
import { useCaptcha as x } from "../components/embedded-chat/use-captcha.js";
|
|
7
7
|
import { useAnonymousSession as S } from "../hooks/use-anonymous-session.js";
|
|
8
|
-
const
|
|
9
|
-
const { baseSettings: n, aiChatSettings:
|
|
8
|
+
const f = T(void 0), E = ({ children: t }) => {
|
|
9
|
+
const { baseSettings: n, aiChatSettings: l } = y(), { shouldBypassCaptcha: A, privacyPreferences: d } = n, { baseUrl: i, appId: a, apiKey: o } = l, { authToken: s, isLoading: r, refreshToken: C } = b(), m = !!n.getAuthToken, e = !!s, { getCaptchaHeader: h, invalidate: u } = x({
|
|
10
10
|
baseUrl: i,
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
appId: a,
|
|
12
|
+
shouldBypassCaptcha: A || !!o
|
|
13
|
+
}), { sessionToken: c, refreshSession: p } = S({
|
|
13
14
|
baseUrl: i,
|
|
14
|
-
appId:
|
|
15
|
-
getCaptchaHeader:
|
|
16
|
-
invalidateCaptcha:
|
|
17
|
-
optOutAllAnalytics:
|
|
18
|
-
enabled: !e && !
|
|
15
|
+
appId: a,
|
|
16
|
+
getCaptchaHeader: h,
|
|
17
|
+
invalidateCaptcha: u,
|
|
18
|
+
optOutAllAnalytics: d?.optOutAllAnalytics,
|
|
19
|
+
enabled: !e && !r
|
|
19
20
|
}), v = {
|
|
20
21
|
authToken: s,
|
|
21
22
|
isAuthenticated: e,
|
|
22
|
-
isAuthLoading:
|
|
23
|
+
isAuthLoading: r,
|
|
23
24
|
isAuthConfigured: m,
|
|
24
25
|
refreshAuthToken: C,
|
|
25
|
-
sessionToken:
|
|
26
|
-
refreshSession:
|
|
27
|
-
getCaptchaHeader:
|
|
28
|
-
invalidateCaptcha:
|
|
29
|
-
effectiveAuthToken: o ?? (e ? s :
|
|
30
|
-
applicableRefreshSession: o || e ? void 0 :
|
|
26
|
+
sessionToken: c,
|
|
27
|
+
refreshSession: p,
|
|
28
|
+
getCaptchaHeader: h,
|
|
29
|
+
invalidateCaptcha: u,
|
|
30
|
+
effectiveAuthToken: o ?? (e ? s : c),
|
|
31
|
+
applicableRefreshSession: o || e ? void 0 : p
|
|
31
32
|
};
|
|
32
|
-
return /* @__PURE__ */ k(
|
|
33
|
+
return /* @__PURE__ */ k(f.Provider, { value: v, children: t });
|
|
33
34
|
}, H = () => {
|
|
34
|
-
const t = g(
|
|
35
|
+
const t = g(f);
|
|
35
36
|
if (!t)
|
|
36
37
|
throw new Error("useChatAuth must be used within a ChatAuthProvider");
|
|
37
38
|
return t;
|