@burdenoff/fe-libs 2026.904.2 → 2026.904.4
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/shared/assistant/attachments.d.ts +340 -0
- package/dist/shared/assistant/attachments.d.ts.map +1 -0
- package/dist/shared/assistant/attachments.js +370 -0
- package/dist/shared/assistant/conversation.d.ts +153 -0
- package/dist/shared/assistant/conversation.d.ts.map +1 -0
- package/dist/shared/assistant/documentText.d.ts +261 -0
- package/dist/shared/assistant/documentText.d.ts.map +1 -0
- package/dist/shared/assistant/documentText.js +235 -0
- package/dist/shared/assistant/gatewayLimits.d.ts +25 -0
- package/dist/shared/assistant/gatewayLimits.d.ts.map +1 -0
- package/dist/shared/assistant/gatewayLimits.js +4 -0
- package/dist/shared/assistant/index.d.ts +6 -0
- package/dist/shared/assistant/index.d.ts.map +1 -1
- package/dist/shared/assistant/store.d.ts +114 -0
- package/dist/shared/assistant/store.d.ts.map +1 -0
- package/dist/shared/assistant/store.js +198 -0
- package/dist/shared/assistant/turnState.d.ts +16 -0
- package/dist/shared/assistant/turnState.d.ts.map +1 -0
- package/dist/shared/assistant/turnState.js +6 -0
- package/dist/shared/config/authBridgeUrls.d.ts.map +1 -1
- package/dist/shared/config/authBridgeUrls.js +16 -15
- package/dist/shared/config/gatewayUrls.d.ts +29 -0
- package/dist/shared/config/gatewayUrls.d.ts.map +1 -1
- package/dist/shared/config/gatewayUrls.js +44 -20
- package/dist/shared/config/index.d.ts.map +1 -1
- package/dist/shared/native/capacitor.d.ts +49 -0
- package/dist/shared/native/capacitor.d.ts.map +1 -0
- package/dist/shared/native/capacitor.js +31 -0
- package/dist/shared/native/index.d.ts +2 -0
- package/dist/shared/native/index.d.ts.map +1 -1
- package/dist/shared/providers/shell/MultiGatewayProvider.d.ts.map +1 -1
- package/dist/shared/providers/shell/MultiGatewayProvider.js +101 -100
- package/dist/shared/utils/authCookie.d.ts.map +1 -1
- package/dist/shared/utils/authCookie.js +35 -34
- package/dist/shared/utils/gatewayFetchRewrite.d.ts.map +1 -1
- package/dist/shared/utils/gatewayFetchRewrite.js +95 -87
- package/dist/shared-assistant.js +6 -1
- package/dist/shared-config.js +9 -1
- package/dist/shared-native.js +23 -22
- package/dist/shared.js +124 -123
- package/package.json +2 -2
|
@@ -1,33 +1,34 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
1
|
+
import { isCapacitorNative as e } from "../../native/capacitor.js";
|
|
2
|
+
import { readActiveContextValueWithUrlPrecedence as t } from "./ActiveContextStorage.js";
|
|
3
|
+
import { createGraphQLClient as n } from "../../graphql/client.js";
|
|
4
|
+
import { GatewayProvider as r } from "../../graphql/GatewayContext.js";
|
|
5
|
+
import { useAuthToken as i } from "./AuthTokenProvider.js";
|
|
6
|
+
import { useCallback as a, useEffect as o, useMemo as s, useRef as c } from "react";
|
|
7
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
8
|
+
import { ApolloProvider as u } from "@apollo/client/react";
|
|
8
9
|
//#region src/shared/providers/shell/MultiGatewayProvider.tsx
|
|
9
|
-
function
|
|
10
|
-
let { getAccessToken:
|
|
10
|
+
function d({ children: d, workspaceBaseUrl: f, globalBaseUrl: p, organizationId: m, productSlug: h, defaultGateway: g = "workspace", debug: _ = !1, enableSubscriptions: v = !1, onAuthError: y, onNetworkError: b, onRefreshToken: x }) {
|
|
11
|
+
let { getAccessToken: S, getWorkspaceToken: C, accessToken: w, workspaceToken: T } = i(), E = c({
|
|
11
12
|
workspaceClient: null,
|
|
12
13
|
globalClient: null
|
|
13
|
-
}),
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
let e =
|
|
14
|
+
}), D = c(null), O = a(() => {
|
|
15
|
+
D.current ||= setTimeout(() => {
|
|
16
|
+
D.current = null;
|
|
17
|
+
let e = E.current, t = [];
|
|
17
18
|
e.workspaceClient && t.push(e.workspaceClient.refetchQueries({ include: "active" })), e.globalClient && t.push(e.globalClient.refetchQueries({ include: "active" })), t.length !== 0 && Promise.allSettled(t).then((e) => {
|
|
18
|
-
if (!
|
|
19
|
+
if (!_) return;
|
|
19
20
|
let t = e.filter((e) => e.status === "rejected");
|
|
20
21
|
t.length > 0 && console.warn("[MultiGatewayProvider] Active query refresh failed after mutation", t);
|
|
21
22
|
});
|
|
22
23
|
}, 0);
|
|
23
|
-
}, [
|
|
24
|
+
}, [_]), k = a(() => {
|
|
24
25
|
let e = sessionStorage.getItem("bf-active-profile");
|
|
25
26
|
if (e) {
|
|
26
27
|
let t = localStorage.getItem(`bf-p-${e}-locale`);
|
|
27
28
|
if (t) return t;
|
|
28
29
|
}
|
|
29
30
|
return localStorage.getItem("burdenoff-locale") || "en";
|
|
30
|
-
}, []),
|
|
31
|
+
}, []), A = a(() => {
|
|
31
32
|
let e = sessionStorage.getItem("bf-active-profile");
|
|
32
33
|
if (e) {
|
|
33
34
|
let t = localStorage.getItem(`bf-p-${e}-geography`);
|
|
@@ -40,143 +41,143 @@ function u({ children: u, workspaceBaseUrl: d, globalBaseUrl: f, organizationId:
|
|
|
40
41
|
return JSON.parse(t);
|
|
41
42
|
} catch {}
|
|
42
43
|
return null;
|
|
43
|
-
}, []),
|
|
44
|
+
}, []), j = a(() => t("workspace"), []), M = a(() => t("project"), []), N = s(() => n({
|
|
44
45
|
gateway: "workspace",
|
|
45
|
-
baseUrl:
|
|
46
|
-
authToken:
|
|
47
|
-
workspaceToken:
|
|
48
|
-
workspaceId:
|
|
49
|
-
projectId:
|
|
50
|
-
organizationId:
|
|
51
|
-
productSlug:
|
|
52
|
-
locale:
|
|
53
|
-
geography:
|
|
54
|
-
enableSubscriptions:
|
|
55
|
-
debug:
|
|
56
|
-
onAuthError:
|
|
57
|
-
onRefreshToken:
|
|
58
|
-
onNetworkError:
|
|
59
|
-
onMutationSuccess:
|
|
46
|
+
baseUrl: f,
|
|
47
|
+
authToken: S,
|
|
48
|
+
workspaceToken: C,
|
|
49
|
+
workspaceId: j,
|
|
50
|
+
projectId: M,
|
|
51
|
+
organizationId: m,
|
|
52
|
+
productSlug: h,
|
|
53
|
+
locale: k,
|
|
54
|
+
geography: A,
|
|
55
|
+
enableSubscriptions: v,
|
|
56
|
+
debug: _,
|
|
57
|
+
onAuthError: y,
|
|
58
|
+
onRefreshToken: x,
|
|
59
|
+
onNetworkError: b,
|
|
60
|
+
onMutationSuccess: O
|
|
60
61
|
}), [
|
|
61
|
-
|
|
62
|
-
x,
|
|
62
|
+
f,
|
|
63
63
|
S,
|
|
64
|
-
|
|
64
|
+
C,
|
|
65
65
|
j,
|
|
66
|
-
|
|
66
|
+
M,
|
|
67
67
|
m,
|
|
68
|
-
|
|
68
|
+
h,
|
|
69
69
|
k,
|
|
70
|
-
|
|
71
|
-
g,
|
|
70
|
+
A,
|
|
72
71
|
v,
|
|
73
|
-
|
|
72
|
+
_,
|
|
74
73
|
y,
|
|
75
|
-
|
|
76
|
-
|
|
74
|
+
x,
|
|
75
|
+
b,
|
|
76
|
+
O
|
|
77
|
+
]), P = s(() => n({
|
|
77
78
|
gateway: "global",
|
|
78
|
-
baseUrl:
|
|
79
|
-
authToken:
|
|
80
|
-
organizationId:
|
|
81
|
-
productSlug:
|
|
82
|
-
locale:
|
|
83
|
-
geography:
|
|
84
|
-
enableSubscriptions:
|
|
85
|
-
debug:
|
|
86
|
-
onAuthError:
|
|
87
|
-
onRefreshToken:
|
|
88
|
-
onNetworkError:
|
|
89
|
-
onMutationSuccess:
|
|
79
|
+
baseUrl: p,
|
|
80
|
+
authToken: S,
|
|
81
|
+
organizationId: m,
|
|
82
|
+
productSlug: h,
|
|
83
|
+
locale: k,
|
|
84
|
+
geography: A,
|
|
85
|
+
enableSubscriptions: v,
|
|
86
|
+
debug: _,
|
|
87
|
+
onAuthError: y,
|
|
88
|
+
onRefreshToken: x,
|
|
89
|
+
onNetworkError: b,
|
|
90
|
+
onMutationSuccess: O
|
|
90
91
|
}), [
|
|
91
|
-
f,
|
|
92
|
-
x,
|
|
93
92
|
p,
|
|
93
|
+
S,
|
|
94
94
|
m,
|
|
95
|
-
|
|
95
|
+
h,
|
|
96
96
|
k,
|
|
97
|
-
|
|
98
|
-
g,
|
|
97
|
+
A,
|
|
99
98
|
v,
|
|
100
|
-
|
|
99
|
+
_,
|
|
101
100
|
y,
|
|
102
|
-
|
|
101
|
+
x,
|
|
102
|
+
b,
|
|
103
|
+
O
|
|
103
104
|
]);
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
workspaceClient:
|
|
107
|
-
globalClient:
|
|
105
|
+
o(() => {
|
|
106
|
+
E.current = {
|
|
107
|
+
workspaceClient: N,
|
|
108
|
+
globalClient: P
|
|
108
109
|
};
|
|
109
|
-
}, [
|
|
110
|
-
let e =
|
|
110
|
+
}, [N, P]), o(() => {
|
|
111
|
+
let e = D;
|
|
111
112
|
return () => {
|
|
112
113
|
e.current &&= (clearTimeout(e.current), null);
|
|
113
114
|
};
|
|
114
115
|
}, []);
|
|
115
|
-
let
|
|
116
|
-
return
|
|
117
|
-
|
|
118
|
-
hasAccessToken: !!
|
|
119
|
-
hasWorkspaceToken: !!
|
|
116
|
+
let F = a((e) => e === "workspace" ? E.current.workspaceClient ?? N : E.current.globalClient ?? P, [N, P]);
|
|
117
|
+
return o(() => {
|
|
118
|
+
_ && console.log("[MultiGatewayProvider] Tokens updated:", {
|
|
119
|
+
hasAccessToken: !!w,
|
|
120
|
+
hasWorkspaceToken: !!T
|
|
120
121
|
});
|
|
121
122
|
}, [
|
|
122
|
-
C,
|
|
123
123
|
w,
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
T,
|
|
125
|
+
_
|
|
126
|
+
]), o(() => {
|
|
126
127
|
if (typeof window > "u") return;
|
|
127
128
|
let e = async (e) => {
|
|
128
|
-
|
|
129
|
-
try {
|
|
130
|
-
M.cache.evict({ id: "ROOT_QUERY" }), M.cache.gc();
|
|
131
|
-
} catch {}
|
|
129
|
+
_ && console.log("[MultiGatewayProvider] Context changed; evicting cache + refetching", e);
|
|
132
130
|
try {
|
|
133
131
|
N.cache.evict({ id: "ROOT_QUERY" }), N.cache.gc();
|
|
134
132
|
} catch {}
|
|
135
133
|
try {
|
|
136
|
-
|
|
134
|
+
P.cache.evict({ id: "ROOT_QUERY" }), P.cache.gc();
|
|
137
135
|
} catch {}
|
|
138
136
|
try {
|
|
139
137
|
await N.refetchQueries({ include: "active" });
|
|
140
138
|
} catch {}
|
|
139
|
+
try {
|
|
140
|
+
await P.refetchQueries({ include: "active" });
|
|
141
|
+
} catch {}
|
|
141
142
|
};
|
|
142
143
|
return window.addEventListener("burdenoff:workspace-changed", e), window.addEventListener("burdenoff:organization-changed", e), window.addEventListener("burdenoff:project-changed", e), () => {
|
|
143
144
|
window.removeEventListener("burdenoff:workspace-changed", e), window.removeEventListener("burdenoff:organization-changed", e), window.removeEventListener("burdenoff:project-changed", e);
|
|
144
145
|
};
|
|
145
146
|
}, [
|
|
146
|
-
M,
|
|
147
147
|
N,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
148
|
+
P,
|
|
149
|
+
_
|
|
150
|
+
]), o(() => {
|
|
151
|
+
let t = N, n = P;
|
|
151
152
|
return () => {
|
|
152
|
-
if (
|
|
153
|
+
if (_ && console.log("[MultiGatewayProvider] Cleaning up Apollo clients"), !(typeof window < "u" && !e() && (window.location.hostname === "localhost" || window.location.hostname === "127.0.0.1" || window.location.hostname.endsWith(".local.burdenoff.com")))) {
|
|
153
154
|
try {
|
|
154
|
-
|
|
155
|
+
t.stop();
|
|
155
156
|
} catch {}
|
|
156
157
|
try {
|
|
157
|
-
|
|
158
|
+
n.stop();
|
|
158
159
|
} catch {}
|
|
159
160
|
}
|
|
160
161
|
};
|
|
161
162
|
}, [
|
|
162
|
-
M,
|
|
163
163
|
N,
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
164
|
+
P,
|
|
165
|
+
_
|
|
166
|
+
]), /* @__PURE__ */ l(r, {
|
|
167
|
+
value: s(() => ({
|
|
168
|
+
workspaceClient: N,
|
|
169
|
+
globalClient: P,
|
|
170
|
+
getClient: F
|
|
170
171
|
}), [
|
|
171
|
-
M,
|
|
172
172
|
N,
|
|
173
|
-
P
|
|
173
|
+
P,
|
|
174
|
+
F
|
|
174
175
|
]),
|
|
175
|
-
children: /* @__PURE__ */
|
|
176
|
-
client:
|
|
177
|
-
children:
|
|
176
|
+
children: /* @__PURE__ */ l(u, {
|
|
177
|
+
client: g === "workspace" ? N : P,
|
|
178
|
+
children: d
|
|
178
179
|
})
|
|
179
180
|
});
|
|
180
181
|
}
|
|
181
182
|
//#endregion
|
|
182
|
-
export {
|
|
183
|
+
export { d as MultiGatewayProvider };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authCookie.d.ts","sourceRoot":"","sources":["../../../src/shared/utils/authCookie.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;
|
|
1
|
+
{"version":3,"file":"authCookie.d.ts","sourceRoot":"","sources":["../../../src/shared/utils/authCookie.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAQH,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB;AA4DD,wBAAgB,uBAAuB,IAAI,OAAO,CAejD;AAED,wBAAgB,iBAAiB,CAAC,QAAQ,SAA2B,GAAG,OAAO,CAU9E;AAED,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,OAAO,CAqC7E;AAED,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,MAAM,EAAE,MAAM,SAAyB,GAAG,IAAI,CAU3F;AAED,wBAAgB,kBAAkB,IAAI,kBAAkB,GAAG,IAAI,CAS9D;AAED,wBAAgB,oBAAoB,IAAI,IAAI,CAQ3C;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CAEpD;AAED;;;GAGG;AACH,wBAAgB,YAAY,IAAI,MAAM,GAAG,IAAI,CAI5C;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,IAAI,CAErC"}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { isCapacitorNative as e } from "../native/capacitor.js";
|
|
2
|
+
import { ALL_PRODUCT_DOMAINS as t } from "../config/gatewayUrls.js";
|
|
2
3
|
//#region src/shared/utils/authCookie.ts
|
|
3
|
-
var
|
|
4
|
-
function
|
|
4
|
+
var n = ["bf-sso", "bf-sso-profile"], r = "bf-sso-profile";
|
|
5
|
+
function i(e, t = window.location.origin) {
|
|
5
6
|
return encodeURIComponent(JSON.stringify({
|
|
6
7
|
id: e,
|
|
7
8
|
origin: t
|
|
8
9
|
}));
|
|
9
10
|
}
|
|
10
|
-
function
|
|
11
|
+
function a(e) {
|
|
11
12
|
try {
|
|
12
13
|
let t = JSON.parse(decodeURIComponent(e));
|
|
13
14
|
return typeof t == "string" ? {
|
|
@@ -24,66 +25,66 @@ function i(e) {
|
|
|
24
25
|
};
|
|
25
26
|
}
|
|
26
27
|
}
|
|
27
|
-
function
|
|
28
|
+
function o() {
|
|
28
29
|
return typeof window > "u" ? null : window.location.hostname.endsWith(".local.burdenoff.com") ? ".local.burdenoff.com" : null;
|
|
29
30
|
}
|
|
30
|
-
function
|
|
31
|
+
function s() {
|
|
31
32
|
if (typeof window > "u") return [];
|
|
32
|
-
let e = window.location.hostname, t = [], n =
|
|
33
|
+
let e = window.location.hostname, t = [], n = o();
|
|
33
34
|
return n && t.push(n), e && !["localhost", "127.0.0.1"].includes(e) && t.push(e), Array.from(new Set(t));
|
|
34
35
|
}
|
|
35
|
-
function
|
|
36
|
-
if (typeof window > "u") return !1;
|
|
37
|
-
let
|
|
38
|
-
return
|
|
36
|
+
function c() {
|
|
37
|
+
if (typeof window > "u" || e()) return !1;
|
|
38
|
+
let t = window.location.hostname;
|
|
39
|
+
return t.endsWith(".local.burdenoff.com") || t === "localhost" || t === "127.0.0.1";
|
|
39
40
|
}
|
|
40
|
-
function
|
|
41
|
+
function l(e = window.location.hostname) {
|
|
41
42
|
return e === "localhost" || e === "127.0.0.1" || e === "0.0.0.0" || e === "[::1]" || e === "::1" || e.endsWith(".localhost") || e.endsWith(".local.burdenoff.com");
|
|
42
43
|
}
|
|
43
|
-
function
|
|
44
|
-
if (!
|
|
44
|
+
function u(e) {
|
|
45
|
+
if (!e) return !1;
|
|
45
46
|
try {
|
|
46
|
-
let n = new URL(
|
|
47
|
+
let n = new URL(e);
|
|
47
48
|
if (!["https:", "http:"].includes(n.protocol) || n.protocol === "http:" && !["localhost", "127.0.0.1"].includes(n.hostname)) return !1;
|
|
48
49
|
if (n.hostname === "localhost" || n.hostname === "127.0.0.1" || n.hostname.endsWith(".local.burdenoff.com")) return !0;
|
|
49
|
-
for (let
|
|
50
|
+
for (let e of t) if (n.hostname === e || n.hostname === `app.${e}` || n.hostname === `alphaapp.${e}` || n.hostname === `admin.${e}` || n.hostname === `alphaadmin.${e}` || n.hostname === `www.${e}`) return !0;
|
|
50
51
|
return !1;
|
|
51
52
|
} catch {
|
|
52
53
|
return !1;
|
|
53
54
|
}
|
|
54
55
|
}
|
|
55
|
-
function
|
|
56
|
+
function d(e, t = window.location.origin) {
|
|
56
57
|
if (typeof document > "u") return;
|
|
57
|
-
|
|
58
|
-
let
|
|
59
|
-
for (let e of
|
|
58
|
+
p();
|
|
59
|
+
let r = o(), a = r ? `; domain=${r}` : "", s = window.location.protocol === "https:" ? "; secure" : "", c = i(e, t);
|
|
60
|
+
for (let e of n) document.cookie = `${e}=${c}${a}; path=/; samesite=lax${s}; max-age=86400`;
|
|
60
61
|
}
|
|
61
|
-
function
|
|
62
|
+
function f() {
|
|
62
63
|
if (typeof document > "u") return null;
|
|
63
|
-
for (let e of
|
|
64
|
+
for (let e of n) {
|
|
64
65
|
let t = document.cookie.match(RegExp(`(?:^|;\\s*)${e}=([^;]*)`));
|
|
65
66
|
if (!t) continue;
|
|
66
|
-
let n =
|
|
67
|
+
let n = a(t[1]);
|
|
67
68
|
if (n?.id) return n;
|
|
68
69
|
}
|
|
69
70
|
return null;
|
|
70
71
|
}
|
|
71
|
-
function
|
|
72
|
-
if (!(typeof document > "u")) for (let e of
|
|
72
|
+
function p() {
|
|
73
|
+
if (!(typeof document > "u")) for (let e of n) {
|
|
73
74
|
document.cookie = `${e}=; path=/; max-age=0`;
|
|
74
|
-
for (let t of
|
|
75
|
+
for (let t of s()) document.cookie = `${e}=; path=/; domain=${t}; max-age=0`;
|
|
75
76
|
}
|
|
76
77
|
}
|
|
77
|
-
function
|
|
78
|
-
|
|
78
|
+
function m(e) {
|
|
79
|
+
d(e);
|
|
79
80
|
}
|
|
80
|
-
function
|
|
81
|
+
function h() {
|
|
81
82
|
if (typeof document > "u") return null;
|
|
82
|
-
let e = document.cookie.match(RegExp(`(?:^|;\\s*)${
|
|
83
|
-
return e ?
|
|
83
|
+
let e = document.cookie.match(RegExp(`(?:^|;\\s*)${r}=([^;]*)`));
|
|
84
|
+
return e ? a(e[1])?.id ?? null : null;
|
|
84
85
|
}
|
|
85
|
-
function
|
|
86
|
-
|
|
86
|
+
function g() {
|
|
87
|
+
p();
|
|
87
88
|
}
|
|
88
89
|
//#endregion
|
|
89
|
-
export {
|
|
90
|
+
export { g as clearSSoCookie, p as clearShellSsoCookies, h as getSSoCookie, l as isLocalDevSsoHost, c as isSharedSsoCookieDomain, u as isTrustedSsoOrigin, f as readShellSsoCookie, m as setSSoCookie, d as setShellSsoCookies };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gatewayFetchRewrite.d.ts","sourceRoot":"","sources":["../../../src/shared/utils/gatewayFetchRewrite.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,MAAM,WAAW,YAAY;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,kBAAkB;IACjC,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,sCAAsC;IACtC,KAAK,EAAE,YAAY,CAAC;CACrB;
|
|
1
|
+
{"version":3,"file":"gatewayFetchRewrite.d.ts","sourceRoot":"","sources":["../../../src/shared/utils/gatewayFetchRewrite.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,MAAM,WAAW,YAAY;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,kBAAkB;IACjC,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,sCAAsC;IACtC,KAAK,EAAE,YAAY,CAAC;CACrB;AAgHD,wBAAgB,gCAAgC,IAAI,IAAI,CAEvD;AAkPD;;;;;GAKG;AACH,wBAAgB,mBAAmB,CACjC,aAAa,CAAC,EAAE,kBAAkB,EAAE,EACpC,aAAa,CAAC,EAAE,YAAY,GAC3B,YAAY,CAiCd;AAED;;;GAGG;AACH,wBAAgB,0BAA0B,CACxC,OAAO,EAAE,OAAO,EAChB,eAAe,EAAE,WAAW,CAAC,MAAM,CAAC,EACpC,SAAS,CAAC,EAAE,MAAM,EAClB,aAAa,CAAC,EAAE,MAAM,GACrB,OAAO,CAET;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC;;;OAGG;IACH,QAAQ,CAAC,EAAE;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CACzD;AAED;;;;;;;;;GASG;AACH,wBAAgB,0BAA0B,CACxC,KAAK,EAAE,YAAY,EACnB,QAAQ,CAAC,EAAE,0BAA0B,GACpC,IAAI,CA6HN;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,OAAO,SAAyB,GAAG,IAAI,CAQtE"}
|