@retinalabsllc/zairusjs 4.0.24 → 4.0.27

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/index.d.mts CHANGED
@@ -33,7 +33,7 @@ interface ThreeDActionButtonProps {
33
33
  }
34
34
  declare const ThreeDActionButton: React.FC<ThreeDActionButtonProps>;
35
35
 
36
- type AuthMode = "LOGIN" | "SIGNUP";
36
+ type AuthMode$1 = "LOGIN" | "SIGNUP";
37
37
  interface ZairusAuthProps {
38
38
  companyName: string;
39
39
  workspaceLabel?: string;
@@ -49,7 +49,7 @@ interface ZairusAuthProps {
49
49
  firstName?: string;
50
50
  lastName?: string;
51
51
  organizationName?: string;
52
- mode: AuthMode;
52
+ mode: AuthMode$1;
53
53
  recaptchaToken?: string;
54
54
  }) => Promise<{
55
55
  success: boolean;
@@ -66,6 +66,39 @@ interface ZairusAuthProps {
66
66
  }
67
67
  declare const ZairusAuth: React.FC<ZairusAuthProps>;
68
68
 
69
+ type AuthMode = "LOGIN" | "SIGNUP";
70
+ interface PipleAuthProps {
71
+ companyName: string;
72
+ workspaceLabel?: string;
73
+ termsUrl?: string;
74
+ privacyUrl?: string;
75
+ requireNames?: boolean;
76
+ requireOrganization?: boolean;
77
+ useRecaptcha?: boolean;
78
+ recaptchaSiteKey?: string;
79
+ defaultRedirectPath?: string;
80
+ onAuthRequest: (payload: {
81
+ email: string;
82
+ firstName?: string;
83
+ lastName?: string;
84
+ organizationName?: string;
85
+ mode: AuthMode;
86
+ recaptchaToken?: string;
87
+ }) => Promise<{
88
+ success: boolean;
89
+ error?: string;
90
+ }>;
91
+ onVerifyOtp: (payload: {
92
+ email: string;
93
+ code: string;
94
+ }) => Promise<{
95
+ success: boolean;
96
+ error?: string;
97
+ redirect?: string;
98
+ }>;
99
+ }
100
+ declare const PipleAuth: React.FC<PipleAuthProps>;
101
+
69
102
  interface ZairusShareProps {
70
103
  fileName: string;
71
104
  fileSize: string;
@@ -471,22 +504,11 @@ interface GifFeatureCardProps {
471
504
  }
472
505
  declare const GifFeatureCard: React.FC<GifFeatureCardProps>;
473
506
 
474
- type AppTypeKey = 'audditur' | 'desktop' | 'admin' | 'unknown';
475
507
  interface NavItem {
476
508
  name: string;
477
509
  path: string;
478
510
  icon: any;
479
511
  }
480
- interface WorkspaceItem {
481
- id: string;
482
- name: string;
483
- role: string;
484
- }
485
- interface StorageConfig {
486
- used: string;
487
- total: string;
488
- percentage: number;
489
- }
490
512
  interface UniversalSidebarProps {
491
513
  navItems: NavItem[];
492
514
  currentPath: string;
@@ -494,19 +516,13 @@ interface UniversalSidebarProps {
494
516
  closeMobile: () => void;
495
517
  openMobile: () => void;
496
518
  onNavClick?: (e: React.MouseEvent<HTMLAnchorElement>, path: string) => void;
497
- currentAppType?: AppTypeKey;
498
- title?: string;
499
- subtitle?: string;
500
- homeUrl?: string;
519
+ userName?: string;
520
+ userTag?: string;
521
+ userInitials?: string;
501
522
  showBackButton?: boolean;
502
523
  backUrl?: string;
503
- showWorkspaceSwitcher?: boolean;
504
- workspaces?: WorkspaceItem[];
505
- activeWorkspaceId?: string;
506
- onSwitchWorkspace?: (orgId: string) => void;
507
524
  showLogoutAction?: boolean;
508
525
  onLogout?: () => Promise<void>;
509
- storageConfig?: StorageConfig;
510
526
  showInterceptDialog?: boolean;
511
527
  onCancelIntercept?: () => void;
512
528
  onConfirmIntercept?: () => void;
@@ -515,16 +531,36 @@ interface UniversalSidebarProps {
515
531
  }
516
532
  declare const UniversalSidebar: React.FC<UniversalSidebarProps>;
517
533
 
534
+ interface BannerProps {
535
+ /** The heading text of the banner */
536
+ title: string;
537
+ /** The main message content */
538
+ message: string;
539
+ /** The type of banner, determines colors and default icon */
540
+ type: 'success' | 'warning' | 'alert';
541
+ /** Optional custom icon to override the default */
542
+ icon?: any;
543
+ /** Whether the banner can be dismissed by the user */
544
+ isDismissible?: boolean;
545
+ /** Optional callback when the banner is dismissed */
546
+ onDismiss?: () => void;
547
+ /** Optional custom action button */
548
+ action?: React.ReactNode;
549
+ }
550
+ declare const Banner: React.FC<BannerProps>;
551
+
518
552
  interface UniversalOrganizationPageProps {
519
553
  initialOrgName: string;
520
554
  initialSlug: string;
521
555
  orgId: string;
522
556
  isReadOnly?: boolean;
523
557
  slugPrefixUrl?: string;
558
+ bannerProps?: BannerProps;
524
559
  onSaveConfiguration: (payload: {
525
560
  organizationId: string;
526
561
  organizationName?: string;
527
562
  slug?: string;
563
+ username?: string;
528
564
  }) => Promise<{
529
565
  success: boolean;
530
566
  error?: string;
@@ -607,6 +643,7 @@ interface UniversalProfileSettingsProps {
607
643
  accountStatus?: string;
608
644
  memberSince?: string | Date | null;
609
645
  isReadOnly?: boolean;
646
+ bannerProps?: BannerProps;
610
647
  onSaveProfile: (payload: {
611
648
  firstName: string;
612
649
  lastName: string;
@@ -1021,24 +1058,6 @@ interface UniversalRegistrationFlowProps {
1021
1058
  }
1022
1059
  declare const UniversalRegistrationFlow: React.FC<UniversalRegistrationFlowProps>;
1023
1060
 
1024
- interface BannerProps {
1025
- /** The heading text of the banner */
1026
- title: string;
1027
- /** The main message content */
1028
- message: string;
1029
- /** The type of banner, determines colors and default icon */
1030
- type: 'success' | 'warning' | 'alert';
1031
- /** Optional custom icon to override the default */
1032
- icon?: any;
1033
- /** Whether the banner can be dismissed by the user */
1034
- isDismissible?: boolean;
1035
- /** Optional callback when the banner is dismissed */
1036
- onDismiss?: () => void;
1037
- /** Optional custom action button */
1038
- action?: React.ReactNode;
1039
- }
1040
- declare const Banner: React.FC<BannerProps>;
1041
-
1042
1061
  interface UniversalDeveloperSettingsProps {
1043
1062
  initialPublicKey: string;
1044
1063
  initialWebhookUrl: string;
@@ -1212,4 +1231,4 @@ interface UniversalAppCategoryGridProps {
1212
1231
  }
1213
1232
  declare const UniversalAppCategoryGrid: React.FC<UniversalAppCategoryGridProps>;
1214
1233
 
1215
- export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, type AppDetailsData, type AppLibraryCategory, type AppLibraryItem$1 as AppLibraryItem, type AppTypeKey, Banner, type BannerProps, type BentoFeature, type BoardMember, type CheckoutInvoiceData, type CompanyDetails, type CompanyMember, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DashboardList, type DashboardListItem, type DashboardStat, type DocumentSectionData, type DriveItem$1 as DriveItem, DriveItemOpener, type DriveItemOpenerProps, type DriveItemType, DriveShareModal, type DriveShareModalProps, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, FileIconMapper, type FileIconMapperProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, type NavItem, NumberInput, type NumberInputProps, type OverviewAlert, type OverviewStat, PageSpinner, type PageSpinnerProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, type PricingTab, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, type StatItem, type StorageConfig, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalAppCategoryGrid, type UniversalAppCategoryGridProps, UniversalAppDetails, type UniversalAppDetailsProps, UniversalAppLibrary, type UniversalAppLibraryProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalCheckoutView, type UniversalCheckoutViewProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalDriveView, type UniversalDriveViewProps, UniversalErrorView, type UniversalErrorViewProps, UniversalIdentityPage, type UniversalIdentityPageProps, type UniversalInvoice, UniversalLookupPage, type UniversalLookupPageProps, type UniversalMember, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalOverviewPage, type UniversalOverviewPageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalRegistrationFlow, type UniversalRegistrationFlowProps, UniversalSidebar, type UniversalSidebarProps, UniversalTrashView, type UniversalTrashViewProps, type UploadQueueJob, type WorkspaceItem, ZairusAuth, type ZairusAuthProps, ZairusShareCard, type ZairusShareProps };
1234
+ export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, type AppDetailsData, type AppLibraryCategory, type AppLibraryItem$1 as AppLibraryItem, Banner, type BannerProps, type BentoFeature, type BoardMember, type CheckoutInvoiceData, type CompanyDetails, type CompanyMember, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DashboardList, type DashboardListItem, type DashboardStat, type DocumentSectionData, type DriveItem$1 as DriveItem, DriveItemOpener, type DriveItemOpenerProps, type DriveItemType, DriveShareModal, type DriveShareModalProps, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, FileIconMapper, type FileIconMapperProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, type NavItem, NumberInput, type NumberInputProps, type OverviewAlert, type OverviewStat, PageSpinner, type PageSpinnerProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, type PricingTab, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalAppCategoryGrid, type UniversalAppCategoryGridProps, UniversalAppDetails, type UniversalAppDetailsProps, UniversalAppLibrary, type UniversalAppLibraryProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalCheckoutView, type UniversalCheckoutViewProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalDriveView, type UniversalDriveViewProps, UniversalErrorView, type UniversalErrorViewProps, UniversalIdentityPage, type UniversalIdentityPageProps, type UniversalInvoice, UniversalLookupPage, type UniversalLookupPageProps, type UniversalMember, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalOverviewPage, type UniversalOverviewPageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalRegistrationFlow, type UniversalRegistrationFlowProps, UniversalSidebar, type UniversalSidebarProps, UniversalTrashView, type UniversalTrashViewProps, type UploadQueueJob, ZairusAuth, type ZairusAuthProps, ZairusShareCard, type ZairusShareProps };
package/dist/index.d.ts CHANGED
@@ -33,7 +33,7 @@ interface ThreeDActionButtonProps {
33
33
  }
34
34
  declare const ThreeDActionButton: React.FC<ThreeDActionButtonProps>;
35
35
 
36
- type AuthMode = "LOGIN" | "SIGNUP";
36
+ type AuthMode$1 = "LOGIN" | "SIGNUP";
37
37
  interface ZairusAuthProps {
38
38
  companyName: string;
39
39
  workspaceLabel?: string;
@@ -49,7 +49,7 @@ interface ZairusAuthProps {
49
49
  firstName?: string;
50
50
  lastName?: string;
51
51
  organizationName?: string;
52
- mode: AuthMode;
52
+ mode: AuthMode$1;
53
53
  recaptchaToken?: string;
54
54
  }) => Promise<{
55
55
  success: boolean;
@@ -66,6 +66,39 @@ interface ZairusAuthProps {
66
66
  }
67
67
  declare const ZairusAuth: React.FC<ZairusAuthProps>;
68
68
 
69
+ type AuthMode = "LOGIN" | "SIGNUP";
70
+ interface PipleAuthProps {
71
+ companyName: string;
72
+ workspaceLabel?: string;
73
+ termsUrl?: string;
74
+ privacyUrl?: string;
75
+ requireNames?: boolean;
76
+ requireOrganization?: boolean;
77
+ useRecaptcha?: boolean;
78
+ recaptchaSiteKey?: string;
79
+ defaultRedirectPath?: string;
80
+ onAuthRequest: (payload: {
81
+ email: string;
82
+ firstName?: string;
83
+ lastName?: string;
84
+ organizationName?: string;
85
+ mode: AuthMode;
86
+ recaptchaToken?: string;
87
+ }) => Promise<{
88
+ success: boolean;
89
+ error?: string;
90
+ }>;
91
+ onVerifyOtp: (payload: {
92
+ email: string;
93
+ code: string;
94
+ }) => Promise<{
95
+ success: boolean;
96
+ error?: string;
97
+ redirect?: string;
98
+ }>;
99
+ }
100
+ declare const PipleAuth: React.FC<PipleAuthProps>;
101
+
69
102
  interface ZairusShareProps {
70
103
  fileName: string;
71
104
  fileSize: string;
@@ -471,22 +504,11 @@ interface GifFeatureCardProps {
471
504
  }
472
505
  declare const GifFeatureCard: React.FC<GifFeatureCardProps>;
473
506
 
474
- type AppTypeKey = 'audditur' | 'desktop' | 'admin' | 'unknown';
475
507
  interface NavItem {
476
508
  name: string;
477
509
  path: string;
478
510
  icon: any;
479
511
  }
480
- interface WorkspaceItem {
481
- id: string;
482
- name: string;
483
- role: string;
484
- }
485
- interface StorageConfig {
486
- used: string;
487
- total: string;
488
- percentage: number;
489
- }
490
512
  interface UniversalSidebarProps {
491
513
  navItems: NavItem[];
492
514
  currentPath: string;
@@ -494,19 +516,13 @@ interface UniversalSidebarProps {
494
516
  closeMobile: () => void;
495
517
  openMobile: () => void;
496
518
  onNavClick?: (e: React.MouseEvent<HTMLAnchorElement>, path: string) => void;
497
- currentAppType?: AppTypeKey;
498
- title?: string;
499
- subtitle?: string;
500
- homeUrl?: string;
519
+ userName?: string;
520
+ userTag?: string;
521
+ userInitials?: string;
501
522
  showBackButton?: boolean;
502
523
  backUrl?: string;
503
- showWorkspaceSwitcher?: boolean;
504
- workspaces?: WorkspaceItem[];
505
- activeWorkspaceId?: string;
506
- onSwitchWorkspace?: (orgId: string) => void;
507
524
  showLogoutAction?: boolean;
508
525
  onLogout?: () => Promise<void>;
509
- storageConfig?: StorageConfig;
510
526
  showInterceptDialog?: boolean;
511
527
  onCancelIntercept?: () => void;
512
528
  onConfirmIntercept?: () => void;
@@ -515,16 +531,36 @@ interface UniversalSidebarProps {
515
531
  }
516
532
  declare const UniversalSidebar: React.FC<UniversalSidebarProps>;
517
533
 
534
+ interface BannerProps {
535
+ /** The heading text of the banner */
536
+ title: string;
537
+ /** The main message content */
538
+ message: string;
539
+ /** The type of banner, determines colors and default icon */
540
+ type: 'success' | 'warning' | 'alert';
541
+ /** Optional custom icon to override the default */
542
+ icon?: any;
543
+ /** Whether the banner can be dismissed by the user */
544
+ isDismissible?: boolean;
545
+ /** Optional callback when the banner is dismissed */
546
+ onDismiss?: () => void;
547
+ /** Optional custom action button */
548
+ action?: React.ReactNode;
549
+ }
550
+ declare const Banner: React.FC<BannerProps>;
551
+
518
552
  interface UniversalOrganizationPageProps {
519
553
  initialOrgName: string;
520
554
  initialSlug: string;
521
555
  orgId: string;
522
556
  isReadOnly?: boolean;
523
557
  slugPrefixUrl?: string;
558
+ bannerProps?: BannerProps;
524
559
  onSaveConfiguration: (payload: {
525
560
  organizationId: string;
526
561
  organizationName?: string;
527
562
  slug?: string;
563
+ username?: string;
528
564
  }) => Promise<{
529
565
  success: boolean;
530
566
  error?: string;
@@ -607,6 +643,7 @@ interface UniversalProfileSettingsProps {
607
643
  accountStatus?: string;
608
644
  memberSince?: string | Date | null;
609
645
  isReadOnly?: boolean;
646
+ bannerProps?: BannerProps;
610
647
  onSaveProfile: (payload: {
611
648
  firstName: string;
612
649
  lastName: string;
@@ -1021,24 +1058,6 @@ interface UniversalRegistrationFlowProps {
1021
1058
  }
1022
1059
  declare const UniversalRegistrationFlow: React.FC<UniversalRegistrationFlowProps>;
1023
1060
 
1024
- interface BannerProps {
1025
- /** The heading text of the banner */
1026
- title: string;
1027
- /** The main message content */
1028
- message: string;
1029
- /** The type of banner, determines colors and default icon */
1030
- type: 'success' | 'warning' | 'alert';
1031
- /** Optional custom icon to override the default */
1032
- icon?: any;
1033
- /** Whether the banner can be dismissed by the user */
1034
- isDismissible?: boolean;
1035
- /** Optional callback when the banner is dismissed */
1036
- onDismiss?: () => void;
1037
- /** Optional custom action button */
1038
- action?: React.ReactNode;
1039
- }
1040
- declare const Banner: React.FC<BannerProps>;
1041
-
1042
1061
  interface UniversalDeveloperSettingsProps {
1043
1062
  initialPublicKey: string;
1044
1063
  initialWebhookUrl: string;
@@ -1212,4 +1231,4 @@ interface UniversalAppCategoryGridProps {
1212
1231
  }
1213
1232
  declare const UniversalAppCategoryGrid: React.FC<UniversalAppCategoryGridProps>;
1214
1233
 
1215
- export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, type AppDetailsData, type AppLibraryCategory, type AppLibraryItem$1 as AppLibraryItem, type AppTypeKey, Banner, type BannerProps, type BentoFeature, type BoardMember, type CheckoutInvoiceData, type CompanyDetails, type CompanyMember, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DashboardList, type DashboardListItem, type DashboardStat, type DocumentSectionData, type DriveItem$1 as DriveItem, DriveItemOpener, type DriveItemOpenerProps, type DriveItemType, DriveShareModal, type DriveShareModalProps, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, FileIconMapper, type FileIconMapperProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, type NavItem, NumberInput, type NumberInputProps, type OverviewAlert, type OverviewStat, PageSpinner, type PageSpinnerProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, type PricingTab, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, type StatItem, type StorageConfig, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalAppCategoryGrid, type UniversalAppCategoryGridProps, UniversalAppDetails, type UniversalAppDetailsProps, UniversalAppLibrary, type UniversalAppLibraryProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalCheckoutView, type UniversalCheckoutViewProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalDriveView, type UniversalDriveViewProps, UniversalErrorView, type UniversalErrorViewProps, UniversalIdentityPage, type UniversalIdentityPageProps, type UniversalInvoice, UniversalLookupPage, type UniversalLookupPageProps, type UniversalMember, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalOverviewPage, type UniversalOverviewPageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalRegistrationFlow, type UniversalRegistrationFlowProps, UniversalSidebar, type UniversalSidebarProps, UniversalTrashView, type UniversalTrashViewProps, type UploadQueueJob, type WorkspaceItem, ZairusAuth, type ZairusAuthProps, ZairusShareCard, type ZairusShareProps };
1234
+ export { AITranscriptionFeature, type AITranscriptionFeatureProps, type AgentFilePayload, type AgentStat, AiApproveDecline, type AiApproveDeclineProps, AiStageCheck, type AiStageCheckProps, type AiTask, type AiTaskStatus, AppBento2, type AppBento2Props, type AppDetailsData, type AppLibraryCategory, type AppLibraryItem$1 as AppLibraryItem, Banner, type BannerProps, type BentoFeature, type BoardMember, type CheckoutInvoiceData, type CompanyDetails, type CompanyMember, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DashboardList, type DashboardListItem, type DashboardStat, type DocumentSectionData, type DriveItem$1 as DriveItem, DriveItemOpener, type DriveItemOpenerProps, type DriveItemType, DriveShareModal, type DriveShareModalProps, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, FileIconMapper, type FileIconMapperProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, type NavItem, NumberInput, type NumberInputProps, type OverviewAlert, type OverviewStat, PageSpinner, type PageSpinnerProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingPlan, type PricingTab, ProductHero, type ProductHeroProps, type ProjectItem, type ScrollFeature, type SearchTypeOption, type SocialContact, type SocialLink, Stagger, type StaggerProps, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, UniversalAgentConsole, type UniversalAgentConsoleProps, UniversalAppCategoryGrid, type UniversalAppCategoryGridProps, UniversalAppDetails, type UniversalAppDetailsProps, UniversalAppLibrary, type UniversalAppLibraryProps, UniversalBillingPage, type UniversalBillingPageProps, UniversalCheckoutView, type UniversalCheckoutViewProps, UniversalDashboardPage, type UniversalDashboardPageProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalDirectoryPage, type UniversalDirectoryPageProps, UniversalDriveView, type UniversalDriveViewProps, UniversalErrorView, type UniversalErrorViewProps, UniversalIdentityPage, type UniversalIdentityPageProps, type UniversalInvoice, UniversalLookupPage, type UniversalLookupPageProps, type UniversalMember, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalOverviewPage, type UniversalOverviewPageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, UniversalRegistrationFlow, type UniversalRegistrationFlowProps, UniversalSidebar, type UniversalSidebarProps, UniversalTrashView, type UniversalTrashViewProps, type UploadQueueJob, ZairusAuth, type ZairusAuthProps, ZairusShareCard, type ZairusShareProps };