@burdenoff/fe-libs 2026.529.1 → 2026.529.3
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/chrome/sideNavigation/helpers.d.ts.map +1 -1
- package/dist/chrome/sideNavigation/helpers.js +2 -2
- package/dist/shared/graphql/client.d.ts.map +1 -1
- package/dist/shared/graphql/client.js +95 -83
- package/dist/shared/graphql/fetch.d.ts.map +1 -1
- package/dist/shared/graphql/fetch.js +130 -107
- package/dist/shared/providers/AppShellProvider.d.ts.map +1 -1
- package/dist/shared/providers/AppShellProvider.js +215 -181
- package/dist/shared/tours/toursContext/useTourMutations.js +29 -29
- package/dist/shared/utils/backendErrors.d.ts +39 -0
- package/dist/shared/utils/backendErrors.d.ts.map +1 -0
- package/dist/shared/utils/backendErrors.js +121 -0
- package/dist/shared/utils/index.d.ts +4 -2
- package/dist/shared/utils/index.d.ts.map +1 -1
- package/dist/shared/utils/quotaErrors.js +11 -8
- package/dist/shared-tours.js +3 -3
- package/dist/shared-utils.js +12 -11
- package/dist/shared.js +96 -95
- package/dist/utils/index.js +1 -0
- package/package.json +1 -1
|
@@ -4,9 +4,10 @@ import { getActiveWorkspaceToken as n, resolveActiveProfileId as r, setProfileWo
|
|
|
4
4
|
import { readActiveContextValueWithUrlPrecedence as a } from "../providers/shell/ActiveContextStorage.js";
|
|
5
5
|
import { getValidAccessTokenFromStorage as o, sanitizeExtraHeaders as s, sanitizeGeography as c, validateGatewayBaseUrl as l } from "./security.js";
|
|
6
6
|
import { isWorkspaceTokenValidForContext as u } from "./workspaceToken.js";
|
|
7
|
+
import { dispatchBackendErrorEvent as d } from "../utils/backendErrors.js";
|
|
7
8
|
//#region src/shared/graphql/fetch.ts
|
|
8
|
-
var
|
|
9
|
-
function
|
|
9
|
+
var f = "\n mutation IssueWorkspaceToken($input: IssueWorkspaceTokenInput!) {\n issueWorkspaceToken(input: $input) {\n success\n token\n workspaceId\n error {\n message\n }\n }\n }\n", p = /* @__PURE__ */ new Map();
|
|
10
|
+
function m() {
|
|
10
11
|
try {
|
|
11
12
|
let e = sessionStorage.getItem("bf-active-profile");
|
|
12
13
|
return e ? o(localStorage.getItem(`bf-p-${e}-tokens`)) : null;
|
|
@@ -14,21 +15,21 @@ function p() {
|
|
|
14
15
|
return null;
|
|
15
16
|
}
|
|
16
17
|
}
|
|
17
|
-
function
|
|
18
|
+
function h() {
|
|
18
19
|
try {
|
|
19
20
|
return n();
|
|
20
21
|
} catch {
|
|
21
22
|
return null;
|
|
22
23
|
}
|
|
23
24
|
}
|
|
24
|
-
function
|
|
25
|
+
function g() {
|
|
25
26
|
try {
|
|
26
27
|
return sessionStorage.getItem("bf-active-profile");
|
|
27
28
|
} catch {
|
|
28
29
|
return null;
|
|
29
30
|
}
|
|
30
31
|
}
|
|
31
|
-
function
|
|
32
|
+
function _(e) {
|
|
32
33
|
try {
|
|
33
34
|
let [, t] = e.split(".");
|
|
34
35
|
if (!t || typeof globalThis.atob != "function") return null;
|
|
@@ -38,11 +39,11 @@ function g(e) {
|
|
|
38
39
|
return null;
|
|
39
40
|
}
|
|
40
41
|
}
|
|
41
|
-
function
|
|
42
|
-
let t =
|
|
42
|
+
function v(e) {
|
|
43
|
+
let t = _(e)?.exp;
|
|
43
44
|
return typeof t == "number" ? t * 1e3 <= Date.now() + 3e4 : !1;
|
|
44
45
|
}
|
|
45
|
-
function
|
|
46
|
+
function y() {
|
|
46
47
|
try {
|
|
47
48
|
let e = sessionStorage.getItem("bf-active-profile");
|
|
48
49
|
if (e) {
|
|
@@ -55,7 +56,7 @@ function v() {
|
|
|
55
56
|
return null;
|
|
56
57
|
}
|
|
57
58
|
}
|
|
58
|
-
function
|
|
59
|
+
function b() {
|
|
59
60
|
try {
|
|
60
61
|
let e = sessionStorage.getItem("bf-active-profile");
|
|
61
62
|
if (e) {
|
|
@@ -67,48 +68,48 @@ function y() {
|
|
|
67
68
|
return "en";
|
|
68
69
|
}
|
|
69
70
|
}
|
|
70
|
-
function
|
|
71
|
+
function x() {
|
|
71
72
|
return a("workspace");
|
|
72
73
|
}
|
|
73
|
-
function
|
|
74
|
+
function S() {
|
|
74
75
|
return a("organization");
|
|
75
76
|
}
|
|
76
|
-
function
|
|
77
|
+
function C() {
|
|
77
78
|
return a("tenant");
|
|
78
79
|
}
|
|
79
|
-
function
|
|
80
|
+
function w() {
|
|
80
81
|
try {
|
|
81
82
|
return typeof window > "u" ? null : new URLSearchParams(window.location.search).get("org");
|
|
82
83
|
} catch {
|
|
83
84
|
return null;
|
|
84
85
|
}
|
|
85
86
|
}
|
|
86
|
-
function
|
|
87
|
+
function T(e) {
|
|
87
88
|
return {
|
|
88
|
-
workspaceId: typeof e.workspaceId == "string" ? e.workspaceId :
|
|
89
|
-
organizationId: typeof e.organizationId == "string" ? e.organizationId :
|
|
90
|
-
tenantId: typeof e.tenantId == "string" ? e.tenantId :
|
|
89
|
+
workspaceId: typeof e.workspaceId == "string" ? e.workspaceId : x() || void 0,
|
|
90
|
+
organizationId: typeof e.organizationId == "string" ? e.organizationId : S() || w() || void 0,
|
|
91
|
+
tenantId: typeof e.tenantId == "string" ? e.tenantId : C() || void 0
|
|
91
92
|
};
|
|
92
93
|
}
|
|
93
|
-
function
|
|
94
|
+
function E(e, t, n) {
|
|
94
95
|
try {
|
|
95
|
-
let a = r() ??
|
|
96
|
+
let a = r() ?? g();
|
|
96
97
|
if (!a) return;
|
|
97
98
|
i(a, t), sessionStorage.setItem("burdenoff-active-context-workspace", e), n && sessionStorage.setItem("burdenoff-active-context-organization", n);
|
|
98
99
|
} catch {}
|
|
99
100
|
}
|
|
100
|
-
async function
|
|
101
|
+
async function D(e) {
|
|
101
102
|
let { url: t, authToken: n, workspaceId: r, organizationId: i, locale: a, signal: o, currentQuery: s } = e;
|
|
102
103
|
if (!n || s.includes("issueWorkspaceToken")) return null;
|
|
103
|
-
let c = r ||
|
|
104
|
+
let c = r || x();
|
|
104
105
|
if (!c) return null;
|
|
105
|
-
let l =
|
|
106
|
-
if (l &&
|
|
106
|
+
let l = h(), d = x(), m = i || S() || w();
|
|
107
|
+
if (l && d === c && u(l, {
|
|
107
108
|
workspaceId: c,
|
|
108
|
-
organizationId:
|
|
109
|
+
organizationId: m
|
|
109
110
|
})) return l;
|
|
110
|
-
if (!
|
|
111
|
-
let g = `${
|
|
111
|
+
if (!m) return null;
|
|
112
|
+
let g = `${m}:${c}`, _ = p.get(g);
|
|
112
113
|
if (_) return _;
|
|
113
114
|
let v = fetch(t, {
|
|
114
115
|
method: "POST",
|
|
@@ -118,90 +119,104 @@ async function E(e) {
|
|
|
118
119
|
...a ? { "Accept-Language": a } : {}
|
|
119
120
|
},
|
|
120
121
|
body: JSON.stringify({
|
|
121
|
-
query:
|
|
122
|
+
query: f,
|
|
122
123
|
variables: { input: {
|
|
123
|
-
organizationId:
|
|
124
|
+
organizationId: m,
|
|
124
125
|
workspaceId: c
|
|
125
126
|
} }
|
|
126
127
|
}),
|
|
127
128
|
signal: o
|
|
128
129
|
}).then(async (e) => {
|
|
129
130
|
let t = (await e.json()).data?.issueWorkspaceToken;
|
|
130
|
-
return t?.success && t.token ? (
|
|
131
|
+
return t?.success && t.token ? (E(t.workspaceId || c, t.token, m), t.token) : null;
|
|
131
132
|
}).catch(() => null).finally(() => {
|
|
132
|
-
|
|
133
|
+
p.delete(g);
|
|
133
134
|
});
|
|
134
|
-
return
|
|
135
|
+
return p.set(g, v), v;
|
|
135
136
|
}
|
|
136
|
-
function
|
|
137
|
+
function O(e, n) {
|
|
137
138
|
let r = t[e], i = n || r.defaultBaseUrl;
|
|
138
139
|
return `${i.endsWith("/") ? i.slice(0, -1) : i}${r.graphql}`;
|
|
139
140
|
}
|
|
140
|
-
function
|
|
141
|
+
function k() {
|
|
141
142
|
return globalThis;
|
|
142
143
|
}
|
|
143
|
-
function
|
|
144
|
-
let e =
|
|
144
|
+
function A() {
|
|
145
|
+
let e = k();
|
|
145
146
|
return e.__graphqlFetchQueues ||= /* @__PURE__ */ new Map(), e.__graphqlFetchQueues;
|
|
146
147
|
}
|
|
147
|
-
function
|
|
148
|
-
let e =
|
|
148
|
+
function j() {
|
|
149
|
+
let e = k();
|
|
149
150
|
return e.__graphqlFetchResponseCache ||= /* @__PURE__ */ new Map(), e.__graphqlFetchResponseCache;
|
|
150
151
|
}
|
|
151
|
-
function
|
|
152
|
-
let e =
|
|
152
|
+
function M() {
|
|
153
|
+
let e = k();
|
|
153
154
|
return e.__graphqlFetchPendingResponses ||= /* @__PURE__ */ new Map(), e.__graphqlFetchPendingResponses;
|
|
154
155
|
}
|
|
155
|
-
var
|
|
156
|
+
var N = 10, P = 2500, F = 100, I = 1e4, L = 15e3, R = new Set([
|
|
156
157
|
"traceparent",
|
|
157
158
|
"tracestate",
|
|
158
159
|
"baggage"
|
|
159
160
|
]);
|
|
160
|
-
function
|
|
161
|
-
if (typeof performance > "u") return
|
|
162
|
-
let e =
|
|
163
|
-
return e.__graphqlFetchBurstStartedAt ??= performance.now(), performance.now() - e.__graphqlFetchBurstStartedAt <
|
|
161
|
+
function z() {
|
|
162
|
+
if (typeof performance > "u") return F;
|
|
163
|
+
let e = k();
|
|
164
|
+
return e.__graphqlFetchBurstStartedAt ??= performance.now(), performance.now() - e.__graphqlFetchBurstStartedAt < I ? P : F;
|
|
164
165
|
}
|
|
165
|
-
function
|
|
166
|
+
function B(e) {
|
|
166
167
|
return typeof e.query == "string" ? /^\s*query\b/.test(e.query) : !1;
|
|
167
168
|
}
|
|
168
|
-
function
|
|
169
|
+
function V(e) {
|
|
169
170
|
return typeof e.operationName == "string" && e.operationName.length > 0 ? {
|
|
170
171
|
operationName: e.operationName,
|
|
171
172
|
variables: e.variables ?? null
|
|
172
173
|
} : e;
|
|
173
174
|
}
|
|
174
|
-
function
|
|
175
|
+
function H(e) {
|
|
175
176
|
let t = /* @__PURE__ */ new Map();
|
|
176
177
|
for (let [n, r] of Object.entries(e)) {
|
|
177
178
|
let e = n.toLowerCase();
|
|
178
|
-
|
|
179
|
+
R.has(e) || t.set(e, r);
|
|
179
180
|
}
|
|
180
181
|
return Object.fromEntries(Array.from(t.entries()).sort(([e], [t]) => e.localeCompare(t)));
|
|
181
182
|
}
|
|
182
|
-
function
|
|
183
|
+
function U(t) {
|
|
183
184
|
let n = e();
|
|
184
185
|
return {
|
|
185
186
|
...t,
|
|
186
187
|
traceparent: n.traceparent
|
|
187
188
|
};
|
|
188
189
|
}
|
|
189
|
-
|
|
190
|
+
function W(e) {
|
|
191
|
+
return G(e) && Array.isArray(e.errors);
|
|
192
|
+
}
|
|
193
|
+
function G(e) {
|
|
194
|
+
return typeof e == "object" && !!e && !Array.isArray(e);
|
|
195
|
+
}
|
|
196
|
+
async function K(e) {
|
|
197
|
+
let t = await e.text();
|
|
198
|
+
if (!t) return null;
|
|
199
|
+
try {
|
|
200
|
+
return JSON.parse(t);
|
|
201
|
+
} catch {
|
|
202
|
+
return t;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
async function q(e, t, n) {
|
|
190
206
|
if (n.length === 1) {
|
|
191
207
|
let r = n[0];
|
|
192
208
|
try {
|
|
193
209
|
let n = await fetch(e, {
|
|
194
210
|
method: "POST",
|
|
195
|
-
headers:
|
|
211
|
+
headers: U(t),
|
|
196
212
|
credentials: "include",
|
|
197
213
|
body: JSON.stringify(r.body),
|
|
198
214
|
signal: r.signal
|
|
199
|
-
});
|
|
200
|
-
if (!n.ok) throw Error(`GraphQL fetch failed: ${n.status} ${n.statusText}`);
|
|
201
|
-
|
|
202
|
-
r.cacheKey && A().set(r.cacheKey, {
|
|
215
|
+
}), i = await K(n);
|
|
216
|
+
if (!n.ok && !W(i)) throw Error(`GraphQL fetch failed: ${n.status} ${n.statusText}`);
|
|
217
|
+
r.cacheKey && j().set(r.cacheKey, {
|
|
203
218
|
value: i,
|
|
204
|
-
expiresAt: Date.now() +
|
|
219
|
+
expiresAt: Date.now() + L
|
|
205
220
|
}), r.resolve(i);
|
|
206
221
|
} catch (e) {
|
|
207
222
|
r.reject(e);
|
|
@@ -212,42 +227,41 @@ async function U(e, t, n) {
|
|
|
212
227
|
try {
|
|
213
228
|
let i = await fetch(e, {
|
|
214
229
|
method: "POST",
|
|
215
|
-
headers:
|
|
230
|
+
headers: U(t),
|
|
216
231
|
credentials: "include",
|
|
217
232
|
body: JSON.stringify(r)
|
|
218
|
-
});
|
|
219
|
-
if (!i.ok) throw Error(`GraphQL fetch failed: ${i.status} ${i.statusText}`);
|
|
220
|
-
let a = await i.json();
|
|
233
|
+
}), a = await K(i);
|
|
234
|
+
if (!i.ok && !W(a)) throw Error(`GraphQL fetch failed: ${i.status} ${i.statusText}`);
|
|
221
235
|
Array.isArray(a) ? a.forEach((e, t) => {
|
|
222
236
|
let r = n[t];
|
|
223
|
-
r && (r.cacheKey &&
|
|
237
|
+
r && (r.cacheKey && j().set(r.cacheKey, {
|
|
224
238
|
value: e,
|
|
225
|
-
expiresAt: Date.now() +
|
|
239
|
+
expiresAt: Date.now() + L
|
|
226
240
|
}), r.resolve(e));
|
|
227
241
|
}) : n.forEach((e) => {
|
|
228
|
-
e.cacheKey &&
|
|
242
|
+
e.cacheKey && j().set(e.cacheKey, {
|
|
229
243
|
value: a,
|
|
230
|
-
expiresAt: Date.now() +
|
|
244
|
+
expiresAt: Date.now() + L
|
|
231
245
|
}), e.resolve(a);
|
|
232
246
|
});
|
|
233
247
|
} catch (e) {
|
|
234
248
|
n.forEach((t) => t.reject(e));
|
|
235
249
|
}
|
|
236
250
|
}
|
|
237
|
-
function
|
|
238
|
-
let a =
|
|
251
|
+
function J(e, t, n, r, i) {
|
|
252
|
+
let a = H(t), o = Math.max(1, i?.batchMax ?? N), s = Math.max(0, i?.batchInterval ?? z()), c = `${e}|${JSON.stringify(a)}`, l = B(n) ? `${c}|${JSON.stringify(V(n))}` : void 0;
|
|
239
253
|
if (l) {
|
|
240
|
-
let e =
|
|
254
|
+
let e = j(), t = e.get(l);
|
|
241
255
|
if (t) {
|
|
242
256
|
if (t.expiresAt > Date.now()) return Promise.resolve(t.value);
|
|
243
257
|
e.delete(l);
|
|
244
258
|
}
|
|
245
|
-
let n =
|
|
259
|
+
let n = M().get(l);
|
|
246
260
|
if (n) return n;
|
|
247
261
|
}
|
|
248
262
|
let u = new Promise((t, i) => {
|
|
249
263
|
if (o <= 1) {
|
|
250
|
-
|
|
264
|
+
q(e, a, [{
|
|
251
265
|
body: n,
|
|
252
266
|
resolve: t,
|
|
253
267
|
reject: i,
|
|
@@ -256,7 +270,7 @@ function W(e, t, n, r, i) {
|
|
|
256
270
|
}]);
|
|
257
271
|
return;
|
|
258
272
|
}
|
|
259
|
-
let u =
|
|
273
|
+
let u = A(), d = u.get(c);
|
|
260
274
|
if (d || (d = {
|
|
261
275
|
requests: [],
|
|
262
276
|
timer: null,
|
|
@@ -269,55 +283,64 @@ function W(e, t, n, r, i) {
|
|
|
269
283
|
signal: r,
|
|
270
284
|
cacheKey: l
|
|
271
285
|
}), d.requests.length >= d.batchMax) {
|
|
272
|
-
|
|
286
|
+
Y(e, a, c);
|
|
273
287
|
return;
|
|
274
288
|
}
|
|
275
|
-
d.timer ||= setTimeout(() =>
|
|
289
|
+
d.timer ||= setTimeout(() => Y(e, a, c), d.batchInterval);
|
|
276
290
|
});
|
|
277
|
-
return l && (
|
|
278
|
-
|
|
291
|
+
return l && (M().set(l, u), u.finally(() => {
|
|
292
|
+
M().delete(l);
|
|
279
293
|
}).catch(() => {})), u;
|
|
280
294
|
}
|
|
281
|
-
function
|
|
282
|
-
let r =
|
|
283
|
-
i && (r.delete(n), i.timer &&= (clearTimeout(i.timer), null),
|
|
295
|
+
function Y(e, t, n) {
|
|
296
|
+
let r = A(), i = r.get(n);
|
|
297
|
+
i && (r.delete(n), i.timer &&= (clearTimeout(i.timer), null), q(e, t, i.requests));
|
|
284
298
|
}
|
|
285
|
-
async function
|
|
286
|
-
let { gateway: t, query: n, variables: r, operationName: i, authToken: a, workspaceToken: o, workspaceId: c, organizationId:
|
|
299
|
+
async function X(e) {
|
|
300
|
+
let { gateway: t, query: n, variables: r, operationName: i, authToken: a, workspaceToken: o, workspaceId: c, organizationId: f, tenantId: p, locale: g, baseUrl: _, extraHeaders: x, signal: S } = e, w = l(O(t, _)), E = a && !v(a) ? a : m(), k = g ?? b(), A = T({
|
|
287
301
|
workspaceId: c,
|
|
288
|
-
organizationId:
|
|
289
|
-
tenantId:
|
|
290
|
-
}),
|
|
291
|
-
|
|
292
|
-
let
|
|
293
|
-
if (
|
|
294
|
-
let e = typeof o == "string" ? o :
|
|
295
|
-
e && !u(e,
|
|
296
|
-
url:
|
|
297
|
-
authToken:
|
|
298
|
-
workspaceId:
|
|
299
|
-
organizationId:
|
|
300
|
-
locale:
|
|
301
|
-
signal:
|
|
302
|
+
organizationId: f,
|
|
303
|
+
tenantId: p
|
|
304
|
+
}), j = { "Content-Type": "application/json" };
|
|
305
|
+
E && (j.Authorization = `Bearer ${E}`), k && (j["Accept-Language"] = k);
|
|
306
|
+
let M = y();
|
|
307
|
+
if (M?.country && (j["X-Geo-Country"] = M.country), M?.currency && (j["X-Geo-Currency"] = M.currency), M?.timezone && (j["X-Geo-Timezone"] = M.timezone), t === "workspace" ? o !== !1 : o) {
|
|
308
|
+
let e = typeof o == "string" ? o : h();
|
|
309
|
+
e && !u(e, A) && (e = null), !e && o === !0 && /^\s*mutation\b/.test(n) && (e = await D({
|
|
310
|
+
url: w,
|
|
311
|
+
authToken: E,
|
|
312
|
+
workspaceId: A.workspaceId,
|
|
313
|
+
organizationId: A.organizationId,
|
|
314
|
+
locale: k,
|
|
315
|
+
signal: S,
|
|
302
316
|
currentQuery: n
|
|
303
|
-
})), e && (
|
|
317
|
+
})), e && (j["X-Workspace-Authorization"] = `Bearer ${e}`);
|
|
304
318
|
}
|
|
305
319
|
if (t === "workspace" || c) {
|
|
306
|
-
let e =
|
|
307
|
-
e && (
|
|
320
|
+
let e = A.workspaceId;
|
|
321
|
+
e && (j["x-workspace-id"] = e);
|
|
322
|
+
}
|
|
323
|
+
if (t === "global" || f) {
|
|
324
|
+
let e = A.organizationId;
|
|
325
|
+
e && (j["x-org-id"] = e);
|
|
308
326
|
}
|
|
309
|
-
if (
|
|
310
|
-
let e =
|
|
311
|
-
e && (
|
|
327
|
+
if (p) {
|
|
328
|
+
let e = typeof p == "string" ? p : C();
|
|
329
|
+
e && (j["x-tenant-id"] = e);
|
|
312
330
|
}
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
331
|
+
let N = s(x);
|
|
332
|
+
N && Object.assign(j, N);
|
|
333
|
+
let P = { query: n };
|
|
334
|
+
r && (P.variables = r), i && (P.operationName = i);
|
|
335
|
+
try {
|
|
336
|
+
let e = await J(w, j, P, S);
|
|
337
|
+
return e.errors?.length && d({ errors: e.errors }, { operationName: i }), e;
|
|
338
|
+
} catch (e) {
|
|
339
|
+
throw d(e, {
|
|
340
|
+
operationName: i,
|
|
341
|
+
fallbackMessage: "We could not reach the server. Please check your connection and try again."
|
|
342
|
+
}), e;
|
|
316
343
|
}
|
|
317
|
-
let M = s(b);
|
|
318
|
-
M && Object.assign(A, M);
|
|
319
|
-
let N = { query: n };
|
|
320
|
-
return r && (N.variables = r), i && (N.operationName = i), W(C, A, N, x);
|
|
321
344
|
}
|
|
322
345
|
//#endregion
|
|
323
|
-
export {
|
|
346
|
+
export { J as enqueueGraphQLFetch, m as getStoredAuthToken, b as getStoredLocale, S as getStoredOrganizationId, x as getStoredWorkspaceId, h as getStoredWorkspaceToken, X as graphqlFetch, O as resolveGatewayUrl };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppShellProvider.d.ts","sourceRoot":"","sources":["../../../src/shared/providers/AppShellProvider.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AAEH,OAAO,EAAqD,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAa1F,OAAO,EAAiB,KAAK,KAAK,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"AppShellProvider.d.ts","sourceRoot":"","sources":["../../../src/shared/providers/AppShellProvider.tsx"],"names":[],"mappings":"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"}
|