@burdenoff/fe-libs 2026.529.2 → 2026.529.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/node_modules/graphql-ws/dist/client.js +270 -0
- package/dist/node_modules/graphql-ws/dist/common-CGW11Fyb.js +60 -0
- 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/graphql/index.d.ts +1 -0
- package/dist/shared/graphql/index.d.ts.map +1 -1
- package/dist/shared/graphql/links/ws-link.d.ts +30 -0
- package/dist/shared/graphql/links/ws-link.d.ts.map +1 -0
- package/dist/shared/graphql/links/ws-link.js +45 -0
- 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.map +1 -1
- 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-graphql.js +4 -3
- package/dist/shared-tours.js +3 -3
- package/dist/shared-utils.js +12 -11
- package/dist/shared.js +97 -95
- package/dist/utils/index.js +1 -0
- package/package.json +2 -1
package/dist/shared.js
CHANGED
|
@@ -10,105 +10,107 @@ import { PRODUCTS as B, PRODUCT_URLS as V, getProductUrl as H, getProductsWithUr
|
|
|
10
10
|
import { COMMON_SHELL_LESS_ROUTES as W, DEFAULT_SHELL_CONFIG as G, getShellConfig as K, isShellLessRoute as q, shouldShowBreadcrumb as J, shouldShowSidebar as Y } from "./shared/config/shellRoutes.js";
|
|
11
11
|
import { DEFAULT_PAGE_SIZE as X, GATEWAYS as Z, getGatewayConfig as Q, getGatewayUrl as $, getGraphQLEndpoint as ee } from "./shared-config.js";
|
|
12
12
|
import { getWorkspaceTokenPayload as te, isWorkspaceTokenValidForContext as ne } from "./shared/graphql/workspaceToken.js";
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
13
|
+
import { BACKEND_ERROR_EVENT as re, dispatchBackendErrorEvent as ie, extractBackendError as ae, isBackendErrorDisplay as oe, shouldToastBackendError as se } from "./shared/utils/backendErrors.js";
|
|
14
|
+
import { getStoredAuthToken as ce, getStoredLocale as le, getStoredOrganizationId as ue, getStoredWorkspaceId as de, getStoredWorkspaceToken as fe, graphqlFetch as pe, resolveGatewayUrl as me } from "./shared/graphql/fetch.js";
|
|
15
|
+
import { SSELink as he } from "./shared/graphql/links/sse-link.js";
|
|
16
|
+
import { createGraphQLClient as ge, getGlobalClient as _e, getWorkspaceClient as ve, initializeAppClients as ye, resetAppClients as be } from "./shared/graphql/client.js";
|
|
17
|
+
import { GatewayProvider as xe, useGateway as Se, useGatewayClient as Ce, useSafeGateway as we, useSafeGatewayClient as Te } from "./shared/graphql/GatewayContext.js";
|
|
18
|
+
import { WsLink as Ee } from "./shared/graphql/links/ws-link.js";
|
|
19
|
+
import { ApolloClient as De, ApolloProvider as Oe, InMemoryCache as ke, gql as Ae, useApolloClient as je, useLazyQuery as Me, useMutation as Ne, useQuery as Pe, useSubscription as Fe } from "./shared-graphql.js";
|
|
20
|
+
import { attemptTokenRefresh as Ie, clearAuthSessionStorage as Le, hasAuthGraphQLErrors as Re, isAuthGraphQLError as ze, isAuthNetworkError as Be, redirectToLogin as Ve } from "./shared/utils/authErrorHandling.js";
|
|
21
|
+
import { clearSSoCookie as He, clearShellSsoCookies as Ue, getSSoCookie as We, isSharedSsoCookieDomain as Ge, isTrustedSsoOrigin as Ke, readShellSsoCookie as qe, setSSoCookie as Je, setShellSsoCookies as Ye } from "./shared/utils/authCookie.js";
|
|
22
|
+
import { SSORedirectSpinner as Xe, checkRemoteSLO as Ze, checkSLO as Qe, clearLocalAuthState as $e, getSSORedirectUrl as et } from "./shared/components/SSORedirectGuard.js";
|
|
23
|
+
import { AppInitializer as tt, useRegistryHelpers as nt, useShellNavigate as rt } from "./shared/utils/appHelpers.js";
|
|
24
|
+
import { LogLevel as it } from "./shared/logger/types.js";
|
|
25
|
+
import { Logger as at } from "./shared/logger/Logger.js";
|
|
26
|
+
import { LogManager as ot, logManager as st } from "./shared/logger/LogManager.js";
|
|
27
|
+
import { ConsoleTransport as ct } from "./shared/logger/ConsoleTransport.js";
|
|
28
|
+
import { clearUserContext as lt, initializeLogger as ut, setUserContext as dt } from "./shared/utils/loggerInit.js";
|
|
29
|
+
import { createProfileScopedStorage as ft, getProfileScopedKey as pt } from "./shared/utils/profileScopedStorage.js";
|
|
30
|
+
import { QUOTA_EXHAUSTED_CODE as mt, RESOURCE_CAP_EXCEEDED_CODE as ht, STORAGE_QUOTA_EXCEEDED_CODE as gt, UPGRADE_ERROR_CODES as _t, buildQuotaExhaustedMessage as vt, extractQuotaExhaustedExtensions as yt, extractUpgradeErrorExtensions as bt, isQuotaExhaustedError as xt, isUpgradeError as St } from "./shared/utils/quotaErrors.js";
|
|
31
|
+
import { cn as Ct } from "./shared-utils.js";
|
|
32
|
+
import { ErrorBoundary as wt } from "./shared/components/ErrorBoundary.js";
|
|
33
|
+
import { RequireAuth as Tt, RequireGuest as Et } from "./shared/components/RequireAuth.js";
|
|
34
|
+
import { PermissionButton as Dt, PermissionGate as Ot, PermissionLink as kt } from "./shared/components/PermissionGate.js";
|
|
35
|
+
import { AccessDenied as At, PermissionDenied as jt } from "./shared/components/AccessDenied.js";
|
|
36
|
+
import { ErrorFallback as Mt } from "./shared/components/ErrorFallback.js";
|
|
37
|
+
import { LoadingFallback as Nt, PageLoadingFallback as Pt, SectionLoadingFallback as Ft } from "./shared/components/LoadingFallback.js";
|
|
38
|
+
import { MicrofrontendErrorBoundary as It } from "./shared/components/MicrofrontendErrorBoundary.js";
|
|
39
|
+
import { ConditionalShell as Lt } from "./shared/components/ConditionalShell.js";
|
|
40
|
+
import { usePWA as Rt } from "./shared/hooks/usePWA.js";
|
|
41
|
+
import { PWAInstallBanner as zt } from "./shared/components/PWAInstallBanner.js";
|
|
42
|
+
import { ErrorBoundary as Bt } from "./shared/components/AppErrorBoundary.js";
|
|
43
|
+
import { FeatureFlagProvider as Vt, useFeatureFlags as Ht } from "./shared/feature-flags/FeatureFlagProvider.js";
|
|
44
|
+
import { useFeatureFlag as Ut, useFeatureFlagDetails as Wt, useFeatureFlagValue as Gt } from "./shared/feature-flags/useFeatureFlag.js";
|
|
45
|
+
import { FeatureGate as Kt } from "./shared/feature-flags/FeatureGate.js";
|
|
44
46
|
import "./shared-feature-flags.js";
|
|
45
|
-
import { ContextConversationWidget as
|
|
46
|
-
import { detectPlatform as
|
|
47
|
-
import { KeyboardHelpDialogWrapper as
|
|
48
|
-
import { QuotaMeter as
|
|
49
|
-
import { UPGRADE_PROMPT_EVENT as
|
|
50
|
-
import { UpgradeInlineBanner as
|
|
47
|
+
import { ContextConversationWidget as qt } from "./shared/components/ContextConversationWidget.js";
|
|
48
|
+
import { detectPlatform as Jt, formatKeyCombo as Yt, getDisplayKeysForPlatform as Xt, getShortcutLabel as Zt, isMac as Qt, isMobileDevice as $t, isTabletDevice as en, matchesKeyCombo as tn, normalizeKey as nn, normalizePlatformCombo as rn, parseKeyCombo as an, shouldEnableKeyboardShortcuts as on, shouldIgnoreShortcut as sn } from "./shared/keyboard/utils.js";
|
|
49
|
+
import { KeyboardHelpDialogWrapper as cn } from "./shared/components/KeyboardHelpDialogWrapper.js";
|
|
50
|
+
import { QuotaMeter as ln } from "./shared/components/QuotaMeter.js";
|
|
51
|
+
import { UPGRADE_PROMPT_EVENT as un, UpgradePromptModal as dn, dispatchUpgradePrompt as fn } from "./shared/components/UpgradePromptModal.js";
|
|
52
|
+
import { UpgradeInlineBanner as pn } from "./shared/components/UpgradeInlineBanner.js";
|
|
51
53
|
import "./shared-components.js";
|
|
52
|
-
import { DevtoolsSink as
|
|
53
|
-
import { BroadcastChannelSink as
|
|
54
|
-
import { BackendAuditSink as
|
|
55
|
-
import { RybbitSink as
|
|
56
|
-
import { OtelBrowserSink as
|
|
57
|
-
import { EventBusProvider as
|
|
58
|
-
import { useDebounce as
|
|
59
|
-
import { useThrottle as
|
|
60
|
-
import { BREAKPOINTS as
|
|
61
|
-
import { useOnClickOutside as
|
|
62
|
-
import { useKeyPress as
|
|
63
|
-
import { useCopyToClipboard as
|
|
64
|
-
import { useLocalStorage as
|
|
65
|
-
import { useSessionStorage as
|
|
66
|
-
import { usePrevious as
|
|
67
|
-
import { useConditionalToggle as
|
|
68
|
-
import { useAsync as
|
|
69
|
-
import { MODIFIER_KEYS as
|
|
70
|
-
import { useKeyboardShortcuts as
|
|
71
|
-
import { useHotkeys as
|
|
72
|
-
import { useShortcutHelp as
|
|
73
|
-
import { GLOBAL_SHORTCUT_CATEGORIES as
|
|
74
|
-
import { useLogger as
|
|
75
|
-
import { useHasAnimated as
|
|
76
|
-
import { useReferralAttribution as
|
|
77
|
-
import { useRecordProductVisit as
|
|
78
|
-
import { QUOTA_EXHAUSTED_EVENT as
|
|
79
|
-
import { PLAN_USAGE_SNAPSHOT_EVENT as
|
|
80
|
-
import { appendContextToPath as
|
|
81
|
-
import { MicrofrontendContext as
|
|
82
|
-
import { detectDeviceType as
|
|
83
|
-
import { useTourPlayer as
|
|
84
|
-
import { TourSpotlight as
|
|
85
|
-
import { TourTooltip as
|
|
86
|
-
import { TourPlayerProvider as
|
|
87
|
-
import { TourPlayer as
|
|
88
|
-
import { getTourContextRank as
|
|
89
|
-
import { withTourProgressStatus as
|
|
90
|
-
import { ToursProvider as
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
54
|
+
import { DevtoolsSink as mn } from "./shared/events/sinks/DevtoolsSink.js";
|
|
55
|
+
import { BroadcastChannelSink as hn } from "./shared/events/sinks/BroadcastChannelSink.js";
|
|
56
|
+
import { BackendAuditSink as gn } from "./shared/events/sinks/BackendAuditSink.js";
|
|
57
|
+
import { RybbitSink as _n } from "./shared/events/sinks/RybbitSink.js";
|
|
58
|
+
import { OtelBrowserSink as vn } from "./shared/events/sinks/OtelBrowserSink.js";
|
|
59
|
+
import { EventBusProvider as yn, createEventBus as bn, useEvent as xn, useEventBus as Sn, useEventEmitter as Cn } from "./shared-events.js";
|
|
60
|
+
import { useDebounce as wn } from "./shared/hooks/useDebounce.js";
|
|
61
|
+
import { useThrottle as Tn } from "./shared/hooks/useThrottle.js";
|
|
62
|
+
import { BREAKPOINTS as En, useBreakpoint as Dn, useMobileBreakpoint as On } from "./shared/hooks/useBreakpoint.js";
|
|
63
|
+
import { useOnClickOutside as kn, useOnClickOutsideWithRef as An } from "./shared/hooks/useOnClickOutside.js";
|
|
64
|
+
import { useKeyPress as jn, useKeyboardShortcut as Mn } from "./shared/hooks/useKeyPress.js";
|
|
65
|
+
import { useCopyToClipboard as Nn } from "./shared/hooks/useCopyToClipboard.js";
|
|
66
|
+
import { useLocalStorage as Pn } from "./shared/hooks/useLocalStorage.js";
|
|
67
|
+
import { useSessionStorage as Fn } from "./shared/hooks/useSessionStorage.js";
|
|
68
|
+
import { usePrevious as In, usePreviousDistinct as Ln, usePreviousHistory as Rn } from "./shared/hooks/usePrevious.js";
|
|
69
|
+
import { useConditionalToggle as zn, useToggle as Bn, useToggleObject as Vn } from "./shared/hooks/useToggle.js";
|
|
70
|
+
import { useAsync as Hn, useAsyncImmediate as Un } from "./shared/hooks/useAsync.js";
|
|
71
|
+
import { MODIFIER_KEYS as Wn, PLATFORM_TYPES as Gn } from "./shared/keyboard/types.js";
|
|
72
|
+
import { useKeyboardShortcuts as Kn } from "./shared/keyboard/useKeyboardShortcuts.js";
|
|
73
|
+
import { useHotkeys as qn } from "./shared/keyboard/useHotkeys.js";
|
|
74
|
+
import { useShortcutHelp as Jn } from "./shared/keyboard/useShortcutHelp.js";
|
|
75
|
+
import { GLOBAL_SHORTCUT_CATEGORIES as Yn, createGlobalShortcuts as Xn, getGlobalShortcutsByCategory as Zn, mergeShortcuts as Qn } from "./shared/keyboard/globalShortcuts.js";
|
|
76
|
+
import { useLogger as $n } from "./shared/logger/useLogger.js";
|
|
77
|
+
import { useHasAnimated as er } from "./shared/hooks/useHasAnimated.js";
|
|
78
|
+
import { useReferralAttribution as tr } from "./shared/hooks/useReferralAttribution.js";
|
|
79
|
+
import { useRecordProductVisit as nr } from "./shared/hooks/useRecordProductVisit.js";
|
|
80
|
+
import { QUOTA_EXHAUSTED_EVENT as rr, dispatchQuotaExhausted as ir, useQuotaErrorToast as ar } from "./shared/hooks/useQuotaErrorToast.js";
|
|
81
|
+
import { PLAN_USAGE_SNAPSHOT_EVENT as or, publishPlanUsageSnapshot as sr, useUpgradePrompt as cr } from "./shared/hooks/useUpgradePrompt.js";
|
|
82
|
+
import { appendContextToPath as lr, useCurrentContextSearchParams as ur } from "./shared/hooks/useCurrentContextSearchParams.js";
|
|
83
|
+
import { MicrofrontendContext as dr, useMicrofrontendContext as fr } from "./shared-hooks.js";
|
|
84
|
+
import { detectDeviceType as pr, getResponsiveSelector as mr } from "./shared/tours/types.js";
|
|
85
|
+
import { useTourPlayer as hr } from "./shared/tours/useTourPlayer.js";
|
|
86
|
+
import { TourSpotlight as gr } from "./shared/tours/TourSpotlight.js";
|
|
87
|
+
import { TourTooltip as _r } from "./shared/tours/TourTooltip.js";
|
|
88
|
+
import { TourPlayerProvider as vr, useIsTourPlaying as yr, useStartTour as br, useStopTour as xr, useTourPlayerContext as Sr } from "./shared/tours/TourPlayerProvider.js";
|
|
89
|
+
import { TourPlayer as Cr, TourTriggerButton as wr, usePlayTour as Tr } from "./shared/tours/TourPlayer.js";
|
|
90
|
+
import { getTourContextRank as Er, getTourRouteCatalog as Dr, getTourRouteModules as Or, getTourRoutePages as kr, isTourVisibleForContext as Ar, normalizeTourPath as jr, registerTourRouteCatalog as Mr, resolveTourTargetPath as Nr } from "./shared/tours/routeCatalog.js";
|
|
91
|
+
import { withTourProgressStatus as Pr } from "./shared/tours/progress.js";
|
|
92
|
+
import { ToursProvider as Fr, useAutoStartTour as Ir, useSafeToursContext as Lr, useTours as Rr, useToursContext as zr } from "./shared/tours/ToursContext.js";
|
|
93
|
+
import { TourInitializer as Br } from "./shared/tours/TourInitializer.js";
|
|
94
|
+
import { AppShellProvider as Vr, resolveAppShellObservabilityConfig as Hr } from "./shared/providers/AppShellProvider.js";
|
|
95
|
+
import { MicrofrontendProvider as Ur } from "./shared-providers.js";
|
|
96
|
+
import { TourTrigger as Wr } from "./shared/tours/TourTrigger.js";
|
|
93
97
|
import "./shared-tours.js";
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import { useHaptics as $r } from "./shared/native/hooks/useHaptics.js";
|
|
106
|
-
import { useStatusBar as ei } from "./shared/native/hooks/useStatusBar.js";
|
|
98
|
+
import { getNativeBridge as Gr } from "./shared/native/bridge.js";
|
|
99
|
+
import { getPlatform as Kr, isAndroid as qr, isIOS as Jr, isNative as Yr, isWeb as Xr } from "./shared/native/platform.js";
|
|
100
|
+
import { nativeConfirm as Zr, nativeCopyText as Qr, nativeImpact as $r, nativeNotify as ei, nativeOpenUrl as ti, nativeShare as ni, nativeToast as ri } from "./shared/native/consumers.js";
|
|
101
|
+
import { SafeAreaView as ii } from "./shared/native/SafeAreaView.js";
|
|
102
|
+
import { useNativePlatform as ai } from "./shared/native/hooks/useNativePlatform.js";
|
|
103
|
+
import { useSafeArea as oi } from "./shared/native/hooks/useSafeArea.js";
|
|
104
|
+
import { useNativeKeyboard as si } from "./shared/native/hooks/useNativeKeyboard.js";
|
|
105
|
+
import { useAppState as ci } from "./shared/native/hooks/useAppState.js";
|
|
106
|
+
import { useDeviceInfo as li } from "./shared/native/hooks/useDeviceInfo.js";
|
|
107
|
+
import { useHaptics as ui } from "./shared/native/hooks/useHaptics.js";
|
|
108
|
+
import { useStatusBar as di } from "./shared/native/hooks/useStatusBar.js";
|
|
107
109
|
import "./shared-native.js";
|
|
108
|
-
import { buildActorFallback as
|
|
109
|
-
import { ActorIdentity as
|
|
110
|
+
import { buildActorFallback as fi, useActorProfiles as pi } from "./shared/actors/useActorProfiles.js";
|
|
111
|
+
import { ActorIdentity as mi } from "./shared/actors/ActorIdentity.js";
|
|
110
112
|
import "./shared/actors/index.js";
|
|
111
113
|
//#region src/shared/index.ts
|
|
112
|
-
var
|
|
114
|
+
var hi = "1.0.0";
|
|
113
115
|
//#endregion
|
|
114
|
-
export {
|
|
116
|
+
export { At as AccessDenied, mi as ActorIdentity, De as ApolloClient, Oe as ApolloProvider, Bt as AppErrorBoundary, tt as AppInitializer, Vr as AppShellProvider, re as BACKEND_ERROR_EVENT, En as BREAKPOINTS, gn as BackendAuditSink, hn as BroadcastChannelSink, W as COMMON_SHELL_LESS_ROUTES, Lt as ConditionalShell, ct as ConsoleTransport, qt as ContextConversationWidget, X as DEFAULT_PAGE_SIZE, G as DEFAULT_SHELL_CONFIG, mn as DevtoolsSink, wt as ErrorBoundary, Mt as ErrorFallback, yn as EventBusProvider, hi as FE_SHARED_VERSION, Vt as FeatureFlagProvider, Kt as FeatureGate, Z as GATEWAYS, Yn as GLOBAL_SHORTCUT_CATEGORIES, xe as GatewayProvider, ke as InMemoryCache, cn as KeyboardHelpDialogWrapper, Nt as LoadingFallback, it as LogLevel, ot as LogManager, at as Logger, Wn as MODIFIER_KEYS, dr as MicrofrontendContext, It as MicrofrontendErrorBoundary, Ur as MicrofrontendProvider, vn as OtelBrowserSink, or as PLAN_USAGE_SNAPSHOT_EVENT, Gn as PLATFORM_TYPES, B as PRODUCTS, V as PRODUCT_URLS, zt as PWAInstallBanner, Pt as PageLoadingFallback, Dt as PermissionButton, jt as PermissionDenied, Ot as PermissionGate, kt as PermissionLink, mt as QUOTA_EXHAUSTED_CODE, rr as QUOTA_EXHAUSTED_EVENT, ln as QuotaMeter, ht as RESOURCE_CAP_EXCEEDED_CODE, Tt as RequireAuth, Et as RequireGuest, _n as RybbitSink, he as SSELink, Xe as SSORedirectSpinner, gt as STORAGE_QUOTA_EXCEEDED_CODE, ii as SafeAreaView, Ft as SectionLoadingFallback, Br as TourInitializer, Cr as TourPlayer, vr as TourPlayerProvider, gr as TourSpotlight, _r as TourTooltip, Wr as TourTrigger, wr as TourTriggerButton, Fr as ToursProvider, _t as UPGRADE_ERROR_CODES, un as UPGRADE_PROMPT_EVENT, pn as UpgradeInlineBanner, dn as UpgradePromptModal, Ee as WsLink, n as alertTokens, lr as appendContextToPath, Ie as attemptTokenRefresh, fi as buildActorFallback, vt as buildQuotaExhaustedMessage, p as capitalizeFirst, m as capitalizeWords, r as categoryTokens, Ze as checkRemoteSLO, Qe as checkSLO, Le as clearAuthSessionStorage, $e as clearLocalAuthState, He as clearSSoCookie, Ue as clearShellSsoCookies, lt as clearUserContext, Ct as cn, t as createApolloClient, bn as createEventBus, Xn as createGlobalShortcuts, ge as createGraphQLClient, ft as createProfileScopedStorage, pr as detectDeviceType, Jt as detectPlatform, ie as dispatchBackendErrorEvent, ir as dispatchQuotaExhausted, fn as dispatchUpgradePrompt, ae as extractBackendError, yt as extractQuotaExhaustedExtensions, bt as extractUpgradeErrorExtensions, h as formatBytes, g as formatCompactNumber, _ as formatCurrency, v as formatCurrencyCompact, y as formatDate, b as formatDateTime, x as formatDuration, Yt as formatKeyCombo, S as formatList, C as formatNumber, w as formatOrdinal, T as formatPercentage, E as formatRelativeTime, D as formatTime, i as getAlertTokens, a as getCategoryTokens, Xt as getDisplayKeysForPlatform, Q as getGatewayConfig, $ as getGatewayUrl, _e as getGlobalClient, Zn as getGlobalShortcutsByCategory, ee as getGraphQLEndpoint, Gr as getNativeBridge, Kr as getPlatform, H as getProductUrl, U as getProductsWithUrls, pt as getProfileScopedKey, o as getProgressTokens, mr as getResponsiveSelector, et as getSSORedirectUrl, We as getSSoCookie, K as getShellConfig, Zt as getShortcutLabel, s as getStatusBadgeTokens, c as getStatusTokens, ce as getStoredAuthToken, le as getStoredLocale, ue as getStoredOrganizationId, de as getStoredWorkspaceId, fe as getStoredWorkspaceToken, Er as getTourContextRank, Dr as getTourRouteCatalog, Or as getTourRouteModules, kr as getTourRoutePages, l as getTrendTokens, ve as getWorkspaceClient, te as getWorkspaceTokenPayload, Ae as gql, pe as graphqlFetch, Re as hasAuthGraphQLErrors, ye as initializeAppClients, ut as initializeLogger, I as installGatewayFetchRewrite, qr as isAndroid, ze as isAuthGraphQLError, Be as isAuthNetworkError, oe as isBackendErrorDisplay, N as isChunkLoadError, Jr as isIOS, Qt as isMac, $t as isMobileDevice, Yr as isNative, xt as isQuotaExhaustedError, Ge as isSharedSsoCookieDomain, q as isShellLessRoute, en as isTabletDevice, Ar as isTourVisibleForContext, Ke as isTrustedSsoOrigin, St as isUpgradeError, Xr as isWeb, ne as isWorkspaceTokenValidForContext, P as lazyWithRetry, st as logManager, tn as matchesKeyCombo, Qn as mergeShortcuts, Zr as nativeConfirm, Qr as nativeCopyText, $r as nativeImpact, ei as nativeNotify, ti as nativeOpenUrl, ni as nativeShare, ri as nativeToast, nn as normalizeKey, rn as normalizePlatformCombo, jr as normalizeTourPath, an as parseKeyCombo, O as pluralize, u as progressTokens, sr as publishPlanUsageSnapshot, qe as readShellSsoCookie, Ve as redirectToLogin, Mr as registerTourRouteCatalog, be as resetAppClients, Hr as resolveAppShellObservabilityConfig, z as resolveAuthBridgeConfig, L as resolveGatewayBases, me as resolveGatewayUrl, F as resolveGatewayUrls, Nr as resolveTourTargetPath, Je as setSSoCookie, Ye as setShellSsoCookies, dt as setUserContext, on as shouldEnableKeyboardShortcuts, sn as shouldIgnoreShortcut, J as shouldShowBreadcrumb, Y as shouldShowSidebar, se as shouldToastBackendError, k as slugify, d as statusTokens, R as suppressConsole, A as toCamelCase, j as toPascalCase, f as trendTokens, M as truncateText, pi as useActorProfiles, je as useApolloClient, ci as useAppState, Hn as useAsync, Un as useAsyncImmediate, Ir as useAutoStartTour, Dn as useBreakpoint, zn as useConditionalToggle, Nn as useCopyToClipboard, ur as useCurrentContextSearchParams, wn as useDebounce, li as useDeviceInfo, xn as useEvent, Sn as useEventBus, Cn as useEventEmitter, Ut as useFeatureFlag, Wt as useFeatureFlagDetails, Gt as useFeatureFlagValue, Ht as useFeatureFlags, Se as useGateway, Ce as useGatewayClient, ui as useHaptics, er as useHasAnimated, qn as useHotkeys, yr as useIsTourPlaying, jn as useKeyPress, Mn as useKeyboardShortcut, Kn as useKeyboardShortcuts, Me as useLazyQuery, Pn as useLocalStorage, $n as useLogger, e as useMediaQuery, fr as useMicrofrontendContext, On as useMobileBreakpoint, Ne as useMutation, si as useNativeKeyboard, ai as useNativePlatform, kn as useOnClickOutside, An as useOnClickOutsideWithRef, Rt as usePWA, Tr as usePlayTour, In as usePrevious, Ln as usePreviousDistinct, Rn as usePreviousHistory, Pe as useQuery, ar as useQuotaErrorToast, nr as useRecordProductVisit, tr as useReferralAttribution, nt as useRegistryHelpers, oi as useSafeArea, we as useSafeGateway, Te as useSafeGatewayClient, Lr as useSafeToursContext, Fn as useSessionStorage, rt as useShellNavigate, Jn as useShortcutHelp, br as useStartTour, di as useStatusBar, xr as useStopTour, Fe as useSubscription, Tn as useThrottle, Bn as useToggle, Vn as useToggleObject, hr as useTourPlayer, Sr as useTourPlayerContext, Rr as useTours, zr as useToursContext, cr as useUpgradePrompt, Pr as withTourProgressStatus };
|
package/dist/utils/index.js
CHANGED
|
@@ -3,6 +3,7 @@ import "../shared/utils/tokens.js";
|
|
|
3
3
|
import "../shared/utils/format.js";
|
|
4
4
|
import "../shared/utils/lazyWithRetry.js";
|
|
5
5
|
import "../shared/utils/gatewayFetchRewrite.js";
|
|
6
|
+
import "../shared/utils/backendErrors.js";
|
|
6
7
|
import "../shared/utils/authErrorHandling.js";
|
|
7
8
|
import "../shared/utils/authCookie.js";
|
|
8
9
|
import "../shared/utils/appHelpers.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@burdenoff/fe-libs",
|
|
3
|
-
"version": "2026.529.
|
|
3
|
+
"version": "2026.529.4",
|
|
4
4
|
"description": "Burdenoff frontend primitives and domain libraries",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"imports": {
|
|
@@ -288,6 +288,7 @@
|
|
|
288
288
|
"class-variance-authority": "^0.7.1",
|
|
289
289
|
"clsx": "^2.1.1",
|
|
290
290
|
"cmdk": "^1.1.1",
|
|
291
|
+
"graphql-ws": "^6.0.8",
|
|
291
292
|
"lucide-react": "^0.562.0",
|
|
292
293
|
"react-error-boundary": "^6.1.1",
|
|
293
294
|
"react-hook-form": "^7.69.0",
|