@elevasis/ui 2.20.0 → 2.21.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/api/index.js +2 -2
- package/dist/app/index.js +4 -4
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-FMFX4K6E.js → chunk-7GG6OSD7.js} +34 -9
- package/dist/{chunk-GTYUP7MB.js → chunk-ATEHYDL3.js} +5 -21
- package/dist/{chunk-AL23U6C3.js → chunk-BIWHHWCJ.js} +1 -2
- package/dist/{chunk-JR5WNTLA.js → chunk-BJWIKEQG.js} +6 -11
- package/dist/{chunk-GP3AFJYG.js → chunk-CZK67OHH.js} +6 -11
- package/dist/{chunk-TO7QXDBX.js → chunk-DMYELNGA.js} +2 -2
- package/dist/{chunk-2CFOFSSG.js → chunk-EDX6WIN3.js} +6 -11
- package/dist/{chunk-PJVG3ISO.js → chunk-EGKNRM6P.js} +6 -8
- package/dist/{chunk-ZE2KQSHL.js → chunk-I5WRKH25.js} +4 -4
- package/dist/chunk-KVW56ERD.js +24 -0
- package/dist/{chunk-YP6T426C.js → chunk-LQU62KHD.js} +144 -432
- package/dist/{chunk-OUYH2SBS.js → chunk-LVUCBY7X.js} +2 -2
- package/dist/chunk-S7RL77QS.js +48 -0
- package/dist/{chunk-OD7GWIZS.js → chunk-SGXXJE52.js} +1 -121
- package/dist/{chunk-R7OJCNL3.js → chunk-T6INEVX6.js} +1 -1
- package/dist/{chunk-CTTY6FUT.js → chunk-TSSKOQBX.js} +2 -2
- package/dist/{chunk-Q4QJOSVS.js → chunk-ULZ2B3NC.js} +1 -1
- package/dist/chunk-VQESMHQV.js +336 -0
- package/dist/{chunk-MZFJWCPH.js → chunk-XLZZOFGM.js} +5 -19
- package/dist/{chunk-BHR7IV72.js → chunk-XUYBOO32.js} +1 -1
- package/dist/{chunk-M7W7CGPL.js → chunk-Z6FAH4XV.js} +1 -1
- package/dist/components/index.d.ts +46 -87
- package/dist/components/index.js +27 -26
- package/dist/components/navigation/index.d.ts +1 -13
- package/dist/components/navigation/index.js +11 -1
- package/dist/execution/index.d.ts +27 -0
- package/dist/features/crm/index.d.ts +12 -35
- package/dist/features/crm/index.js +11 -10
- package/dist/features/dashboard/index.d.ts +25 -27
- package/dist/features/dashboard/index.js +12 -11
- package/dist/features/delivery/index.d.ts +12 -35
- package/dist/features/delivery/index.js +11 -10
- package/dist/features/lead-gen/index.d.ts +14 -37
- package/dist/features/lead-gen/index.js +11 -10
- package/dist/features/monitoring/index.d.ts +12 -35
- package/dist/features/monitoring/index.js +13 -12
- package/dist/features/monitoring/requests/index.d.ts +13 -36
- package/dist/features/monitoring/requests/index.js +11 -10
- package/dist/features/operations/index.d.ts +44 -65
- package/dist/features/operations/index.js +14 -13
- package/dist/features/seo/index.d.ts +12 -35
- package/dist/features/seo/index.js +1 -1
- package/dist/features/settings/index.d.ts +12 -35
- package/dist/features/settings/index.js +11 -10
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.d.ts +46 -66
- package/dist/hooks/index.js +10 -9
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +92 -121
- package/dist/hooks/published.d.ts +46 -66
- package/dist/hooks/published.js +10 -9
- package/dist/index.d.ts +365 -452
- package/dist/index.js +10 -9
- package/dist/provider/index.d.ts +62 -125
- package/dist/provider/index.js +8 -7
- package/dist/provider/published.d.ts +62 -125
- package/dist/provider/published.js +6 -5
- package/dist/test-utils/index.js +2 -2
- package/dist/types/index.d.ts +108 -135
- package/dist/utils/index.d.ts +26 -59
- package/dist/utils/index.js +1 -1
- package/package.json +4 -4
- package/dist/chunk-LR5CRY5A.js +0 -514
- package/dist/chunk-MG3NF7QL.js +0 -63
|
@@ -278,6 +278,22 @@ declare function ElevasisCoreProvider({ auth, queryClient, apiUrl, onError, noti
|
|
|
278
278
|
*/
|
|
279
279
|
type TimeRange = '1h' | '24h' | '7d' | '30d';
|
|
280
280
|
|
|
281
|
+
declare const FeatureSchema: z.ZodObject<{
|
|
282
|
+
id: z.ZodString;
|
|
283
|
+
label: z.ZodString;
|
|
284
|
+
description: z.ZodOptional<z.ZodString>;
|
|
285
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
286
|
+
path: z.ZodOptional<z.ZodString>;
|
|
287
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
288
|
+
color: z.ZodOptional<z.ZodString>;
|
|
289
|
+
uiPosition: z.ZodOptional<z.ZodEnum<{
|
|
290
|
+
"sidebar-primary": "sidebar-primary";
|
|
291
|
+
"sidebar-bottom": "sidebar-bottom";
|
|
292
|
+
}>>;
|
|
293
|
+
requiresAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
294
|
+
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
295
|
+
}, z.core.$strip>;
|
|
296
|
+
|
|
281
297
|
declare const OrganizationModelSchema: z.ZodObject<{
|
|
282
298
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
283
299
|
features: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
@@ -285,12 +301,15 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
285
301
|
label: z.ZodString;
|
|
286
302
|
description: z.ZodOptional<z.ZodString>;
|
|
287
303
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
288
|
-
|
|
304
|
+
path: z.ZodOptional<z.ZodString>;
|
|
289
305
|
icon: z.ZodOptional<z.ZodString>;
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
306
|
+
color: z.ZodOptional<z.ZodString>;
|
|
307
|
+
uiPosition: z.ZodOptional<z.ZodEnum<{
|
|
308
|
+
"sidebar-primary": "sidebar-primary";
|
|
309
|
+
"sidebar-bottom": "sidebar-bottom";
|
|
310
|
+
}>>;
|
|
311
|
+
requiresAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
312
|
+
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
294
313
|
}, z.core.$strip>>>;
|
|
295
314
|
branding: z.ZodObject<{
|
|
296
315
|
organizationName: z.ZodString;
|
|
@@ -302,19 +321,19 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
302
321
|
dark: z.ZodOptional<z.ZodString>;
|
|
303
322
|
}, z.core.$strip>>;
|
|
304
323
|
}, z.core.$strip>;
|
|
305
|
-
navigation: z.ZodObject<{
|
|
324
|
+
navigation: z.ZodDefault<z.ZodObject<{
|
|
306
325
|
defaultSurfaceId: z.ZodOptional<z.ZodString>;
|
|
307
326
|
surfaces: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
308
327
|
id: z.ZodString;
|
|
309
328
|
label: z.ZodString;
|
|
310
329
|
path: z.ZodString;
|
|
311
330
|
surfaceType: z.ZodEnum<{
|
|
312
|
-
list: "list";
|
|
313
331
|
settings: "settings";
|
|
314
332
|
page: "page";
|
|
315
333
|
dashboard: "dashboard";
|
|
316
334
|
graph: "graph";
|
|
317
335
|
detail: "detail";
|
|
336
|
+
list: "list";
|
|
318
337
|
}>;
|
|
319
338
|
description: z.ZodOptional<z.ZodString>;
|
|
320
339
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -332,7 +351,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
332
351
|
placement: z.ZodString;
|
|
333
352
|
surfaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
334
353
|
}, z.core.$strip>>>;
|
|
335
|
-
}, z.core.$strip
|
|
354
|
+
}, z.core.$strip>>;
|
|
336
355
|
sales: z.ZodObject<{
|
|
337
356
|
entityId: z.ZodString;
|
|
338
357
|
defaultPipelineId: z.ZodString;
|
|
@@ -351,9 +370,9 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
351
370
|
semanticClass: z.ZodEnum<{
|
|
352
371
|
open: "open";
|
|
353
372
|
active: "active";
|
|
373
|
+
nurturing: "nurturing";
|
|
354
374
|
closed_won: "closed_won";
|
|
355
375
|
closed_lost: "closed_lost";
|
|
356
|
-
nurturing: "nurturing";
|
|
357
376
|
}>;
|
|
358
377
|
surfaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
359
378
|
resourceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -514,12 +533,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
514
533
|
id: z.ZodString;
|
|
515
534
|
label: z.ZodString;
|
|
516
535
|
semanticClass: z.ZodEnum<{
|
|
517
|
-
execution: "execution";
|
|
518
|
-
schedule: "schedule";
|
|
519
|
-
queue: "queue";
|
|
520
536
|
"delivery.project": "delivery.project";
|
|
521
537
|
"delivery.milestone": "delivery.milestone";
|
|
522
538
|
"delivery.task": "delivery.task";
|
|
539
|
+
queue: "queue";
|
|
540
|
+
execution: "execution";
|
|
541
|
+
schedule: "schedule";
|
|
523
542
|
"schedule.run": "schedule.run";
|
|
524
543
|
request: "request";
|
|
525
544
|
}>;
|
|
@@ -531,74 +550,20 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
531
550
|
id: z.ZodString;
|
|
532
551
|
label: z.ZodString;
|
|
533
552
|
semanticClass: z.ZodEnum<{
|
|
553
|
+
queue: "queue";
|
|
554
|
+
executions: "executions";
|
|
534
555
|
sessions: "sessions";
|
|
535
556
|
notifications: "notifications";
|
|
536
557
|
schedules: "schedules";
|
|
537
|
-
executions: "executions";
|
|
538
|
-
queue: "queue";
|
|
539
558
|
}>;
|
|
540
559
|
featureId: z.ZodOptional<z.ZodString>;
|
|
541
560
|
supportedStatusSemanticClass: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
542
561
|
}, z.core.$strip>>>;
|
|
543
562
|
}, z.core.$strip>>;
|
|
544
|
-
resourceMappings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
545
|
-
label: z.ZodString;
|
|
546
|
-
description: z.ZodOptional<z.ZodString>;
|
|
547
|
-
color: z.ZodOptional<z.ZodString>;
|
|
548
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
549
|
-
id: z.ZodString;
|
|
550
|
-
resourceId: z.ZodString;
|
|
551
|
-
resourceType: z.ZodEnum<{
|
|
552
|
-
agent: "agent";
|
|
553
|
-
workflow: "workflow";
|
|
554
|
-
trigger: "trigger";
|
|
555
|
-
integration: "integration";
|
|
556
|
-
external: "external";
|
|
557
|
-
human_checkpoint: "human_checkpoint";
|
|
558
|
-
}>;
|
|
559
|
-
featureIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
560
|
-
entityIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
561
|
-
surfaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
562
|
-
capabilityIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
563
|
-
techStack: z.ZodOptional<z.ZodObject<{
|
|
564
|
-
platform: z.ZodString;
|
|
565
|
-
purpose: z.ZodString;
|
|
566
|
-
credentialStatus: z.ZodEnum<{
|
|
567
|
-
pending: "pending";
|
|
568
|
-
configured: "configured";
|
|
569
|
-
expired: "expired";
|
|
570
|
-
missing: "missing";
|
|
571
|
-
}>;
|
|
572
|
-
isSystemOfRecord: z.ZodDefault<z.ZodBoolean>;
|
|
573
|
-
}, z.core.$strip>>;
|
|
574
|
-
}, z.core.$strip>>>;
|
|
575
|
-
}, z.core.$strip>;
|
|
576
|
-
|
|
577
|
-
declare const SurfaceDefinitionSchema: z.ZodObject<{
|
|
578
|
-
id: z.ZodString;
|
|
579
|
-
label: z.ZodString;
|
|
580
|
-
path: z.ZodString;
|
|
581
|
-
surfaceType: z.ZodEnum<{
|
|
582
|
-
list: "list";
|
|
583
|
-
settings: "settings";
|
|
584
|
-
page: "page";
|
|
585
|
-
dashboard: "dashboard";
|
|
586
|
-
graph: "graph";
|
|
587
|
-
detail: "detail";
|
|
588
|
-
}>;
|
|
589
|
-
description: z.ZodOptional<z.ZodString>;
|
|
590
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
591
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
592
|
-
featureId: z.ZodOptional<z.ZodString>;
|
|
593
|
-
featureIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
594
|
-
entityIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
595
|
-
resourceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
596
|
-
capabilityIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
597
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
598
563
|
}, z.core.$strip>;
|
|
599
564
|
|
|
600
565
|
type OrganizationModel = z.infer<typeof OrganizationModelSchema>;
|
|
601
|
-
type
|
|
566
|
+
type OrganizationModelFeature = z.infer<typeof FeatureSchema>;
|
|
602
567
|
|
|
603
568
|
interface FetchEventSourceWithTokenRefreshOptions {
|
|
604
569
|
url: string;
|
|
@@ -622,46 +587,23 @@ interface SSEConnectionManagerLike {
|
|
|
622
587
|
}>;
|
|
623
588
|
}
|
|
624
589
|
|
|
625
|
-
interface FeatureNavLink {
|
|
626
|
-
label: string;
|
|
627
|
-
link: string;
|
|
628
|
-
featureKey?: string;
|
|
629
|
-
onClick?: () => void;
|
|
630
|
-
links?: FeatureNavLink[];
|
|
631
|
-
}
|
|
632
|
-
interface FeatureNavEntry {
|
|
633
|
-
label: string;
|
|
634
|
-
icon: ComponentType;
|
|
635
|
-
link?: string;
|
|
636
|
-
featureKey?: string;
|
|
637
|
-
requiresAdmin?: boolean;
|
|
638
|
-
dataOnboardingTourId?: string;
|
|
639
|
-
links?: FeatureNavLink[];
|
|
640
|
-
}
|
|
641
590
|
type FeatureSidebarComponent = ComponentType;
|
|
591
|
+
type FeatureIconComponent = ComponentType<{
|
|
592
|
+
size?: number;
|
|
593
|
+
stroke?: number;
|
|
594
|
+
}>;
|
|
642
595
|
interface FeatureModule {
|
|
643
|
-
/** Unique stable identifier for this feature
|
|
596
|
+
/** Unique stable identifier for this feature module. */
|
|
644
597
|
key: string;
|
|
645
|
-
/**
|
|
598
|
+
/** Organization Model feature id this module presents. */
|
|
646
599
|
featureId: string;
|
|
647
|
-
/**
|
|
648
|
-
* Capability identifiers contributed by this feature.
|
|
649
|
-
* Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
|
|
650
|
-
* Not queried at runtime — kept for semantic graph completeness so that
|
|
651
|
-
* capability membership is fully represented in the resolved model even when
|
|
652
|
-
* a surface does not declare it directly.
|
|
653
|
-
*/
|
|
600
|
+
/** Capability identifiers contributed by this feature module. */
|
|
654
601
|
capabilityIds?: string[];
|
|
655
|
-
/**
|
|
656
|
-
|
|
657
|
-
/** Sidebar component rendered when
|
|
602
|
+
/** Icon used when this feature node appears in shell navigation. */
|
|
603
|
+
icon?: FeatureIconComponent;
|
|
604
|
+
/** Sidebar component rendered when this feature's subtree route is active. */
|
|
658
605
|
sidebar?: FeatureSidebarComponent;
|
|
659
|
-
/**
|
|
660
|
-
subshellRoutes?: string[];
|
|
661
|
-
/**
|
|
662
|
-
* Operations-only bridge surface connecting this feature to the organization graph.
|
|
663
|
-
* Ignored by all other features. Only one manifest in the registry should set this.
|
|
664
|
-
*/
|
|
606
|
+
/** Operations-only bridge connecting this feature to the organization graph node. */
|
|
665
607
|
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
666
608
|
}
|
|
667
609
|
interface ResolvedFeatureAccess {
|
|
@@ -670,52 +612,47 @@ interface ResolvedFeatureAccess {
|
|
|
670
612
|
}
|
|
671
613
|
interface ResolvedFeatureSemantics {
|
|
672
614
|
capabilityIds: string[];
|
|
673
|
-
surfaceIds: string[];
|
|
674
|
-
surfaces: OrganizationModelSurface[];
|
|
675
615
|
}
|
|
676
616
|
interface ResolvedFeatureModule extends FeatureModule {
|
|
677
617
|
access: ResolvedFeatureAccess;
|
|
678
618
|
semantics: ResolvedFeatureSemantics;
|
|
679
619
|
}
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
interface ResolvedShellNavItem extends FeatureNavEntry {
|
|
683
|
-
placement: ShellNavPlacement;
|
|
684
|
-
source: ShellNavSource;
|
|
685
|
-
featureId?: string;
|
|
620
|
+
interface ResolvedShellFeature extends OrganizationModelFeature {
|
|
621
|
+
iconComponent?: FeatureIconComponent;
|
|
686
622
|
}
|
|
687
623
|
interface ResolvedShellModel {
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
624
|
+
features: readonly ResolvedShellFeature[];
|
|
625
|
+
findByPath: (path: string) => ResolvedShellFeature | undefined;
|
|
626
|
+
findById: (id: string) => ResolvedShellFeature | undefined;
|
|
627
|
+
childrenOf: (id: string) => ResolvedShellFeature[];
|
|
628
|
+
ancestorsOf: (id: string) => ResolvedShellFeature[];
|
|
629
|
+
parentOf: (id: string) => ResolvedShellFeature | undefined;
|
|
630
|
+
topLevel: () => ResolvedShellFeature[];
|
|
631
|
+
uiPositionFor: (id: string) => OrganizationModelFeature['uiPosition'] | undefined;
|
|
632
|
+
requiresAdminFor: (id: string) => boolean;
|
|
633
|
+
devOnlyFor: (id: string) => boolean;
|
|
693
634
|
}
|
|
694
635
|
type ShellRouteMatchStatus = 'matched' | 'hidden' | 'unmatched';
|
|
695
636
|
interface ResolvedShellRouteMatch {
|
|
696
637
|
status: ShellRouteMatchStatus;
|
|
697
638
|
path: string;
|
|
698
639
|
feature?: ResolvedFeatureModule;
|
|
699
|
-
|
|
700
|
-
navLink?: FeatureNavLink;
|
|
640
|
+
node?: ResolvedShellFeature;
|
|
701
641
|
}
|
|
702
642
|
interface ShellRuntime {
|
|
703
643
|
resolveRoute: (path: string) => ResolvedShellRouteMatch;
|
|
704
644
|
}
|
|
705
645
|
interface OrganizationGraphFeatureBridge {
|
|
706
|
-
|
|
646
|
+
featureId: string;
|
|
707
647
|
}
|
|
708
648
|
interface OrganizationGraphContextValue {
|
|
709
649
|
available: boolean;
|
|
710
|
-
surfaceId?: string;
|
|
711
|
-
surfacePath?: string;
|
|
712
|
-
surfaceType?: OrganizationModelSurface['surfaceType'];
|
|
713
650
|
featureId?: string;
|
|
651
|
+
featurePath?: string;
|
|
714
652
|
}
|
|
715
653
|
interface ElevasisFeaturesProviderProps {
|
|
716
654
|
features: FeatureModule[];
|
|
717
655
|
organizationModel?: OrganizationModel;
|
|
718
|
-
appShellOverrides?: AppShellOverrides;
|
|
719
656
|
timeRange?: TimeRange;
|
|
720
657
|
operationsApiUrl?: string;
|
|
721
658
|
operationsSSEManager?: SSEConnectionManagerLike;
|
|
@@ -743,7 +680,7 @@ interface ElevasisFeaturesContextValue {
|
|
|
743
680
|
|
|
744
681
|
declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
|
|
745
682
|
declare function useOptionalElevasisFeatures(): ElevasisFeaturesContextValue | null;
|
|
746
|
-
declare function ElevasisFeaturesProvider({ features, organizationModel,
|
|
683
|
+
declare function ElevasisFeaturesProvider({ features, organizationModel, timeRange, operationsApiUrl, operationsSSEManager, deliveryApiUrl, deliverySSEManager, disabledSubsectionPaths, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
|
|
747
684
|
|
|
748
685
|
declare function FeatureShell({ children }: {
|
|
749
686
|
children: ReactNode;
|
|
@@ -791,4 +728,4 @@ declare function useElevasisServices(): ElevasisServiceContextValue;
|
|
|
791
728
|
declare function ElevasisServiceProvider({ apiRequest, organizationId, isReady, children }: ElevasisServiceProviderProps): react_jsx_runtime.JSX.Element;
|
|
792
729
|
|
|
793
730
|
export { AppearanceProvider, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, FeatureShell, NotificationProvider, useAppearance, useElevasisFeatures, useElevasisServices, useNotificationAdapter, useOptionalElevasisFeatures };
|
|
794
|
-
export type { ApiKeyConfig,
|
|
731
|
+
export type { ApiKeyConfig, AppearanceConfig, AuthConfig, AuthKitConfig, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisTokenOverrides, FeatureIconComponent, FeatureModule, FeatureSidebarComponent, NotificationAdapter, OrganizationGraphContextValue, OrganizationGraphFeatureBridge, ResolvedFeatureAccess, ResolvedFeatureModule, ResolvedFeatureSemantics, ResolvedShellFeature, ResolvedShellModel, ResolvedShellRouteMatch, ShellRouteMatchStatus, ShellRuntime, WithSchemes };
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-
|
|
1
|
+
export { FeatureShell } from '../chunk-KVW56ERD.js';
|
|
2
|
+
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-LVUCBY7X.js';
|
|
3
|
+
export { ElevasisFeaturesProvider, useElevasisFeatures, useOptionalElevasisFeatures } from '../chunk-VQESMHQV.js';
|
|
3
4
|
import '../chunk-RX4UWZZR.js';
|
|
4
|
-
import '../chunk-
|
|
5
|
+
import '../chunk-XUYBOO32.js';
|
|
5
6
|
import '../chunk-SZHARWKU.js';
|
|
6
7
|
import '../chunk-3KMDHCAR.js';
|
|
7
8
|
import '../chunk-NYBEU5TE.js';
|
|
8
|
-
import '../chunk-
|
|
9
|
+
import '../chunk-T6INEVX6.js';
|
|
9
10
|
import '../chunk-2IFYDILW.js';
|
|
10
11
|
import '../chunk-Q7DJKLEN.js';
|
|
11
12
|
import '../chunk-7YQKVWSD.js';
|
|
@@ -14,7 +15,7 @@ export { AppearanceProvider, useAppearance } from '../chunk-QJ2KCHKX.js';
|
|
|
14
15
|
import '../chunk-HQ7M6PBW.js';
|
|
15
16
|
import '../chunk-DT3QYZVU.js';
|
|
16
17
|
import '../chunk-RNP5R5I3.js';
|
|
17
|
-
import '../chunk-
|
|
18
|
+
import '../chunk-SGXXJE52.js';
|
|
18
19
|
import '../chunk-KRWALB24.js';
|
|
19
20
|
import '../chunk-SLH2QLKV.js';
|
|
20
21
|
import '../chunk-DK2HVHCY.js';
|
package/dist/test-utils/index.js
CHANGED
|
@@ -3,8 +3,8 @@ export { handlers, server } from '../chunk-7XKCG5CT.js';
|
|
|
3
3
|
import { mockWorkOSUser, mockUseAuth, mockUnauthenticatedUser, mockAuthenticatedUser, mockAuthLoading, createMockUseAuth } from '../chunk-DRQPEMJI.js';
|
|
4
4
|
export { createMockUseAuth, mockAuthLoading, mockAuthenticatedUser, mockUnauthenticatedUser, mockUseAuth, mockWorkOSUser } from '../chunk-DRQPEMJI.js';
|
|
5
5
|
import '../chunk-XCYKC6OZ.js';
|
|
6
|
-
import { ApiClientProvider } from '../chunk-
|
|
7
|
-
import '../chunk-
|
|
6
|
+
import { ApiClientProvider } from '../chunk-T6INEVX6.js';
|
|
7
|
+
import '../chunk-SGXXJE52.js';
|
|
8
8
|
import '../chunk-KRWALB24.js';
|
|
9
9
|
import '../chunk-DD3CCMCZ.js';
|
|
10
10
|
import { __export, __reExport } from '../chunk-I2KLQ2HA.js';
|