@carlonicora/nextjs-jsonapi 3.0.0 → 3.1.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.
Files changed (90) hide show
  1. package/dist/AbstractApiData-DtitRWPz.d.ts +47 -0
  2. package/dist/AbstractApiData-XLhBP5Tl.d.mts +47 -0
  3. package/dist/{BlockNoteEditor-CDTU6DRN.js → BlockNoteEditor-4KBDD2TM.js} +20 -20
  4. package/dist/{BlockNoteEditor-CDTU6DRN.js.map → BlockNoteEditor-4KBDD2TM.js.map} +1 -1
  5. package/dist/{BlockNoteEditor-VVAY73V2.mjs → BlockNoteEditor-LJ2KA44Z.mjs} +5 -5
  6. package/dist/{JsonApiRequest-3UWVIIFL.mjs → JsonApiRequest-2OQCZAK6.mjs} +2 -2
  7. package/dist/JsonApiRequest-6TYNBVUL.js +26 -0
  8. package/dist/{JsonApiRequest-QRU3IPIU.js.map → JsonApiRequest-6TYNBVUL.js.map} +1 -1
  9. package/dist/ai-connection.module-28f-hux0.d.mts +255 -0
  10. package/dist/ai-connection.module-Bqwh_DnR.d.ts +255 -0
  11. package/dist/billing/index.js +399 -399
  12. package/dist/billing/index.mjs +4 -4
  13. package/dist/{chunk-TWXKAY34.mjs → chunk-CGJW7ZZM.mjs} +310 -5
  14. package/dist/chunk-CGJW7ZZM.mjs.map +1 -0
  15. package/dist/{chunk-E5YA5Z5X.mjs → chunk-CMGXH5SA.mjs} +2 -1
  16. package/dist/chunk-CMGXH5SA.mjs.map +1 -0
  17. package/dist/{chunk-JKGEJGSD.js → chunk-H7DOSB7W.js} +9 -9
  18. package/dist/{chunk-JKGEJGSD.js.map → chunk-H7DOSB7W.js.map} +1 -1
  19. package/dist/{chunk-FPO4DLZN.js → chunk-PFAZPP54.js} +2 -1
  20. package/dist/chunk-PFAZPP54.js.map +1 -0
  21. package/dist/{chunk-UGNLKDI6.js → chunk-UYOQG5IW.js} +1628 -959
  22. package/dist/chunk-UYOQG5IW.js.map +1 -0
  23. package/dist/{chunk-J54546YC.mjs → chunk-WCRZEBX4.mjs} +1750 -1081
  24. package/dist/chunk-WCRZEBX4.mjs.map +1 -0
  25. package/dist/{chunk-53B6NPGA.js → chunk-YUXCJ35V.js} +377 -72
  26. package/dist/chunk-YUXCJ35V.js.map +1 -0
  27. package/dist/{chunk-PHEFWL6L.mjs → chunk-ZMYZFQN3.mjs} +3 -3
  28. package/dist/client/index.js +5 -5
  29. package/dist/client/index.mjs +4 -4
  30. package/dist/components/index.d.mts +122 -4
  31. package/dist/components/index.d.ts +122 -4
  32. package/dist/components/index.js +31 -5
  33. package/dist/components/index.js.map +1 -1
  34. package/dist/components/index.mjs +30 -4
  35. package/dist/{config-BIjrg5wd.d.ts → config-B6UB7j69.d.ts} +1 -46
  36. package/dist/{config-BRUjtCd1.d.mts → config-n-ZpPmOL.d.mts} +1 -46
  37. package/dist/contexts/index.js +5 -5
  38. package/dist/contexts/index.mjs +4 -4
  39. package/dist/core/index.d.mts +5 -4
  40. package/dist/core/index.d.ts +5 -4
  41. package/dist/core/index.js +11 -3
  42. package/dist/core/index.js.map +1 -1
  43. package/dist/core/index.mjs +10 -2
  44. package/dist/features/help/index.js +38 -38
  45. package/dist/features/help/index.mjs +4 -4
  46. package/dist/features/tokenusage/index.d.mts +2 -2
  47. package/dist/features/tokenusage/index.d.ts +2 -2
  48. package/dist/features/tokenusage/index.js +102 -102
  49. package/dist/features/tokenusage/index.mjs +4 -4
  50. package/dist/index.d.mts +3 -3
  51. package/dist/index.d.ts +3 -3
  52. package/dist/index.js +12 -4
  53. package/dist/index.js.map +1 -1
  54. package/dist/index.mjs +11 -3
  55. package/dist/server/index.js +12 -12
  56. package/dist/server/index.mjs +2 -2
  57. package/package.json +1 -1
  58. package/src/components/index.ts +1 -0
  59. package/src/core/index.ts +5 -0
  60. package/src/core/registry/ModuleRegistry.ts +2 -0
  61. package/src/core/utils/translateResponse.ts +6 -0
  62. package/src/features/administration/components/AdminIndexContainer.tsx +9 -2
  63. package/src/features/ai-connection/ai-connection.module.ts +14 -0
  64. package/src/features/ai-connection/components/containers/AiConnectionsContainer.tsx +109 -0
  65. package/src/features/ai-connection/components/forms/AiConnectionDeleter.tsx +58 -0
  66. package/src/features/ai-connection/components/forms/AiConnectionEditor.tsx +329 -0
  67. package/src/features/ai-connection/components/lists/AiConnectionTypeCard.tsx +223 -0
  68. package/src/features/ai-connection/contexts/AiConnectionsContext.tsx +111 -0
  69. package/src/features/ai-connection/data/__tests__/ai-connection.test.ts +202 -0
  70. package/src/features/ai-connection/data/ai-connection.fields.ts +6 -0
  71. package/src/features/ai-connection/data/ai-connection.interface.ts +87 -0
  72. package/src/features/ai-connection/data/ai-connection.service.ts +90 -0
  73. package/src/features/ai-connection/data/ai-connection.ts +244 -0
  74. package/src/features/ai-connection/data/index.ts +4 -0
  75. package/src/features/ai-connection/i18n-keys.ts +66 -0
  76. package/src/features/ai-connection/index.ts +11 -0
  77. package/src/features/index.ts +1 -0
  78. package/src/features/user/components/forms/UserEditor.tsx +11 -2
  79. package/dist/AuthComponent-Cik96ElA.d.mts +0 -56
  80. package/dist/AuthComponent-DTTKu3VK.d.ts +0 -56
  81. package/dist/JsonApiRequest-QRU3IPIU.js +0 -26
  82. package/dist/chunk-53B6NPGA.js.map +0 -1
  83. package/dist/chunk-E5YA5Z5X.mjs.map +0 -1
  84. package/dist/chunk-FPO4DLZN.js.map +0 -1
  85. package/dist/chunk-J54546YC.mjs.map +0 -1
  86. package/dist/chunk-TWXKAY34.mjs.map +0 -1
  87. package/dist/chunk-UGNLKDI6.js.map +0 -1
  88. /package/dist/{BlockNoteEditor-VVAY73V2.mjs.map → BlockNoteEditor-LJ2KA44Z.mjs.map} +0 -0
  89. /package/dist/{JsonApiRequest-3UWVIIFL.mjs.map → JsonApiRequest-2OQCZAK6.mjs.map} +0 -0
  90. /package/dist/{chunk-PHEFWL6L.mjs.map → chunk-ZMYZFQN3.mjs.map} +0 -0
@@ -489,17 +489,30 @@
489
489
 
490
490
 
491
491
 
492
- var _chunkUGNLKDI6js = require('../chunk-UGNLKDI6.js');
493
- require('../chunk-JKGEJGSD.js');
494
492
 
495
493
 
496
494
 
497
495
 
498
496
 
499
- var _chunk53B6NPGAjs = require('../chunk-53B6NPGA.js');
497
+
498
+
499
+
500
+
501
+ var _chunkUYOQG5IWjs = require('../chunk-UYOQG5IW.js');
502
+ require('../chunk-H7DOSB7W.js');
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+ var _chunkYUXCJ35Vjs = require('../chunk-YUXCJ35V.js');
500
513
  require('../chunk-LXKSUWAV.js');
501
514
  require('../chunk-IBS6NI7D.js');
502
- require('../chunk-FPO4DLZN.js');
515
+ require('../chunk-PFAZPP54.js');
503
516
  require('../chunk-3EPNHTMH.js');
504
517
  require('../chunk-7QVYU63E.js');
505
518
 
@@ -1003,5 +1016,18 @@ require('../chunk-7QVYU63E.js');
1003
1016
 
1004
1017
 
1005
1018
 
1006
- exports.ADMINISTRATION_I18N_KEYS = _chunkUGNLKDI6js.ADMINISTRATION_I18N_KEYS; exports.AcceptInvitation = _chunkUGNLKDI6js.AcceptInvitation; exports.Accordion = _chunkUGNLKDI6js.Accordion; exports.AccordionContent = _chunkUGNLKDI6js.AccordionContent; exports.AccordionItem = _chunkUGNLKDI6js.AccordionItem; exports.AccordionTrigger = _chunkUGNLKDI6js.AccordionTrigger; exports.ActivateAccount = _chunkUGNLKDI6js.ActivateAccount; exports.AddUserToRole = _chunkUGNLKDI6js.AddUserToRole; exports.AdminCompanyContainer = _chunkUGNLKDI6js.AdminCompanyContainer; exports.AdminIndexContainer = _chunkUGNLKDI6js.AdminIndexContainer; exports.AdminIndexGrid = _chunkUGNLKDI6js.AdminIndexGrid; exports.AdminUsersList = _chunkUGNLKDI6js.AdminUsersList; exports.Alert = _chunkUGNLKDI6js.Alert; exports.AlertAction = _chunkUGNLKDI6js.AlertAction; exports.AlertDescription = _chunkUGNLKDI6js.AlertDescription; exports.AlertDialog = _chunkUGNLKDI6js.AlertDialog; exports.AlertDialogAction = _chunkUGNLKDI6js.AlertDialogAction; exports.AlertDialogCancel = _chunkUGNLKDI6js.AlertDialogCancel; exports.AlertDialogContent = _chunkUGNLKDI6js.AlertDialogContent; exports.AlertDialogDescription = _chunkUGNLKDI6js.AlertDialogDescription; exports.AlertDialogFooter = _chunkUGNLKDI6js.AlertDialogFooter; exports.AlertDialogHeader = _chunkUGNLKDI6js.AlertDialogHeader; exports.AlertDialogMedia = _chunkUGNLKDI6js.AlertDialogMedia; exports.AlertDialogOverlay = _chunkUGNLKDI6js.AlertDialogOverlay; exports.AlertDialogPortal = _chunkUGNLKDI6js.AlertDialogPortal; exports.AlertDialogTitle = _chunkUGNLKDI6js.AlertDialogTitle; exports.AlertDialogTrigger = _chunkUGNLKDI6js.AlertDialogTrigger; exports.AlertTitle = _chunkUGNLKDI6js.AlertTitle; exports.AllUsersListContainer = _chunkUGNLKDI6js.AllUsersListContainer; exports.AllowedUsersDetails = _chunkUGNLKDI6js.AllowedUsersDetails; exports.ApprovalActionCard = _chunkUGNLKDI6js.ApprovalActionCard; exports.AssistantBlockNoteComposer = _chunkUGNLKDI6js.AssistantBlockNoteComposer; exports.AssistantContainer = _chunkUGNLKDI6js.AssistantContainer; exports.AssistantContainerWithApprovals = _chunkUGNLKDI6js.AssistantContainerWithApprovals; exports.AssistantPageContainer = _chunkUGNLKDI6js.AssistantPageContainer; exports.AttributeElement = _chunkUGNLKDI6js.AttributeElement; exports.AuthContainer = _chunkUGNLKDI6js.AuthContainer; exports.Avatar = _chunkUGNLKDI6js.Avatar; exports.AvatarBadge = _chunkUGNLKDI6js.AvatarBadge; exports.AvatarFallback = _chunkUGNLKDI6js.AvatarFallback; exports.AvatarGroup = _chunkUGNLKDI6js.AvatarGroup; exports.AvatarGroupCount = _chunkUGNLKDI6js.AvatarGroupCount; exports.AvatarImage = _chunkUGNLKDI6js.AvatarImage; exports.BackupCodesDialog = _chunkUGNLKDI6js.BackupCodesDialog; exports.Badge = _chunkUGNLKDI6js.Badge; exports.BlockNoteEditorContainer = _chunkUGNLKDI6js.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkUGNLKDI6js.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkUGNLKDI6js.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunkUGNLKDI6js.BlockNoteViewerContainer; exports.Board = _chunkUGNLKDI6js.KanbanBoard; exports.Breadcrumb = _chunkUGNLKDI6js.Breadcrumb; exports.BreadcrumbEllipsis = _chunkUGNLKDI6js.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkUGNLKDI6js.BreadcrumbItem; exports.BreadcrumbLink = _chunkUGNLKDI6js.BreadcrumbLink; exports.BreadcrumbList = _chunkUGNLKDI6js.BreadcrumbList; exports.BreadcrumbNavigation = _chunkUGNLKDI6js.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkUGNLKDI6js.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkUGNLKDI6js.BreadcrumbSeparator; exports.Button = _chunkUGNLKDI6js.Button; exports.Calendar = _chunkUGNLKDI6js.Calendar; exports.CalendarDayButton = _chunkUGNLKDI6js.CalendarDayButton; exports.Card = _chunkUGNLKDI6js.Card; exports.CardAction = _chunkUGNLKDI6js.CardAction; exports.CardContent = _chunkUGNLKDI6js.CardContent; exports.CardDescription = _chunkUGNLKDI6js.CardDescription; exports.CardFooter = _chunkUGNLKDI6js.CardFooter; exports.CardHeader = _chunkUGNLKDI6js.CardHeader; exports.CardTitle = _chunkUGNLKDI6js.CardTitle; exports.Carousel = _chunkUGNLKDI6js.Carousel; exports.CarouselContent = _chunkUGNLKDI6js.CarouselContent; exports.CarouselItem = _chunkUGNLKDI6js.CarouselItem; exports.CarouselNext = _chunkUGNLKDI6js.CarouselNext; exports.CarouselPrevious = _chunkUGNLKDI6js.CarouselPrevious; exports.ChartContainer = _chunkUGNLKDI6js.ChartContainer; exports.ChartLegend = _chunkUGNLKDI6js.ChartLegend; exports.ChartLegendContent = _chunkUGNLKDI6js.ChartLegendContent; exports.ChartStyle = _chunkUGNLKDI6js.ChartStyle; exports.ChartTooltip = _chunkUGNLKDI6js.ChartTooltip; exports.ChartTooltipContent = _chunkUGNLKDI6js.ChartTooltipContent; exports.Checkbox = _chunkUGNLKDI6js.Checkbox; exports.Collapsible = _chunkUGNLKDI6js.Collapsible; exports.CollapsibleContent = _chunkUGNLKDI6js.CollapsibleContent; exports.CollapsibleTrigger = _chunkUGNLKDI6js.CollapsibleTrigger; exports.Column = _chunkUGNLKDI6js.KanbanColumn; exports.ColumnHandle = _chunkUGNLKDI6js.KanbanColumnHandle; exports.Combobox = _chunkUGNLKDI6js.Combobox; exports.ComboboxChip = _chunkUGNLKDI6js.ComboboxChip; exports.ComboboxChips = _chunkUGNLKDI6js.ComboboxChips; exports.ComboboxChipsInput = _chunkUGNLKDI6js.ComboboxChipsInput; exports.ComboboxCollection = _chunkUGNLKDI6js.ComboboxCollection; exports.ComboboxContent = _chunkUGNLKDI6js.ComboboxContent; exports.ComboboxEmpty = _chunkUGNLKDI6js.ComboboxEmpty; exports.ComboboxGroup = _chunkUGNLKDI6js.ComboboxGroup; exports.ComboboxInput = _chunkUGNLKDI6js.ComboboxInput; exports.ComboboxItem = _chunkUGNLKDI6js.ComboboxItem; exports.ComboboxLabel = _chunkUGNLKDI6js.ComboboxLabel; exports.ComboboxList = _chunkUGNLKDI6js.ComboboxList; exports.ComboboxSeparator = _chunkUGNLKDI6js.ComboboxSeparator; exports.ComboboxTrigger = _chunkUGNLKDI6js.ComboboxTrigger; exports.ComboboxValue = _chunkUGNLKDI6js.ComboboxValue; exports.Command = _chunkUGNLKDI6js.Command; exports.CommandDialog = _chunkUGNLKDI6js.CommandDialog; exports.CommandEmpty = _chunkUGNLKDI6js.CommandEmpty; exports.CommandGroup = _chunkUGNLKDI6js.CommandGroup; exports.CommandInput = _chunkUGNLKDI6js.CommandInput; exports.CommandItem = _chunkUGNLKDI6js.CommandItem; exports.CommandList = _chunkUGNLKDI6js.CommandList; exports.CommandSeparator = _chunkUGNLKDI6js.CommandSeparator; exports.CommandShortcut = _chunkUGNLKDI6js.CommandShortcut; exports.CommonAddTrigger = _chunkUGNLKDI6js.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunkUGNLKDI6js.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkUGNLKDI6js.CommonAssociationTrigger; exports.CommonDeleter = _chunkUGNLKDI6js.CommonDeleter; exports.CommonEditorButtons = _chunkUGNLKDI6js.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkUGNLKDI6js.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkUGNLKDI6js.CommonEditorHeader; exports.CommonEditorTrigger = _chunkUGNLKDI6js.CommonEditorTrigger; exports.CompaniesList = _chunkUGNLKDI6js.CompaniesList; exports.CompaniesListContainer = _chunkUGNLKDI6js.CompaniesListContainer; exports.CompanyConfigurationEditor = _chunkUGNLKDI6js.CompanyConfigurationEditor; exports.CompanyContainer = _chunkUGNLKDI6js.CompanyContainer; exports.CompanyContent = _chunkUGNLKDI6js.CompanyContent; exports.CompanyDeleter = _chunkUGNLKDI6js.CompanyDeleter; exports.CompanyDetails = _chunkUGNLKDI6js.CompanyDetails; exports.CompanyEditor = _chunkUGNLKDI6js.CompanyEditor; exports.CompanyUsersList = _chunkUGNLKDI6js.CompanyUsersList; exports.ConfirmDialog = _chunkUGNLKDI6js.ConfirmDialog; exports.ContentListGrid = _chunkUGNLKDI6js.ContentListGrid; exports.ContentListTable = _chunkUGNLKDI6js.ContentListTable; exports.ContentTableSearch = _chunkUGNLKDI6js.ContentTableSearch; exports.ContentTitle = _chunkUGNLKDI6js.ContentTitle; exports.ContentsList = _chunkUGNLKDI6js.ContentsList; exports.ContentsListById = _chunkUGNLKDI6js.ContentsListById; exports.ContextMenu = _chunkUGNLKDI6js.ContextMenu; exports.ContextMenuCheckboxItem = _chunkUGNLKDI6js.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkUGNLKDI6js.ContextMenuContent; exports.ContextMenuGroup = _chunkUGNLKDI6js.ContextMenuGroup; exports.ContextMenuItem = _chunkUGNLKDI6js.ContextMenuItem; exports.ContextMenuLabel = _chunkUGNLKDI6js.ContextMenuLabel; exports.ContextMenuPortal = _chunkUGNLKDI6js.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkUGNLKDI6js.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkUGNLKDI6js.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkUGNLKDI6js.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkUGNLKDI6js.ContextMenuShortcut; exports.ContextMenuSub = _chunkUGNLKDI6js.ContextMenuSub; exports.ContextMenuSubContent = _chunkUGNLKDI6js.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkUGNLKDI6js.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkUGNLKDI6js.ContextMenuTrigger; exports.ContributorsList = _chunkUGNLKDI6js.ContributorsList; exports.Cookies = _chunkUGNLKDI6js.Cookies; exports.CurrencyInput = _chunkUGNLKDI6js.CurrencyInput; exports.DatePickerPopover = _chunkUGNLKDI6js.DatePickerPopover; exports.DateRangeSelector = _chunkUGNLKDI6js.DateRangeSelector; exports.DetailField = _chunkUGNLKDI6js.DetailField; exports.Dialog = _chunkUGNLKDI6js.Dialog; exports.DialogClose = _chunkUGNLKDI6js.DialogClose; exports.DialogContent = _chunkUGNLKDI6js.DialogContent; exports.DialogDescription = _chunkUGNLKDI6js.DialogDescription; exports.DialogFooter = _chunkUGNLKDI6js.DialogFooter; exports.DialogHeader = _chunkUGNLKDI6js.DialogHeader; exports.DialogOverlay = _chunkUGNLKDI6js.DialogOverlay; exports.DialogPortal = _chunkUGNLKDI6js.DialogPortal; exports.DialogTitle = _chunkUGNLKDI6js.DialogTitle; exports.DialogTrigger = _chunkUGNLKDI6js.DialogTrigger; exports.DisableTwoFactorDialog = _chunkUGNLKDI6js.DisableTwoFactorDialog; exports.Drawer = _chunkUGNLKDI6js.Drawer; exports.DrawerClose = _chunkUGNLKDI6js.DrawerClose; exports.DrawerContent = _chunkUGNLKDI6js.DrawerContent; exports.DrawerDescription = _chunkUGNLKDI6js.DrawerDescription; exports.DrawerFooter = _chunkUGNLKDI6js.DrawerFooter; exports.DrawerHeader = _chunkUGNLKDI6js.DrawerHeader; exports.DrawerOverlay = _chunkUGNLKDI6js.DrawerOverlay; exports.DrawerPortal = _chunkUGNLKDI6js.DrawerPortal; exports.DrawerTitle = _chunkUGNLKDI6js.DrawerTitle; exports.DrawerTrigger = _chunkUGNLKDI6js.DrawerTrigger; exports.DropdownMenu = _chunkUGNLKDI6js.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkUGNLKDI6js.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkUGNLKDI6js.DropdownMenuContent; exports.DropdownMenuGroup = _chunkUGNLKDI6js.DropdownMenuGroup; exports.DropdownMenuItem = _chunkUGNLKDI6js.DropdownMenuItem; exports.DropdownMenuLabel = _chunkUGNLKDI6js.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkUGNLKDI6js.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkUGNLKDI6js.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkUGNLKDI6js.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkUGNLKDI6js.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkUGNLKDI6js.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkUGNLKDI6js.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkUGNLKDI6js.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkUGNLKDI6js.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkUGNLKDI6js.DropdownMenuTrigger; exports.EditableAvatar = _chunkUGNLKDI6js.EditableAvatar; exports.EditorSheet = _chunkUGNLKDI6js.EditorSheet; exports.EmptyState = _chunkUGNLKDI6js.EmptyState; exports.EntityAvatar = _chunkUGNLKDI6js.EntityAvatar; exports.EntityHero = _chunkUGNLKDI6js.EntityHero; exports.EntityHeroAvatar = _chunkUGNLKDI6js.EntityHeroAvatar; exports.EntityHeroLayout = _chunkUGNLKDI6js.EntityHeroLayout; exports.EntityHeroMetaRow = _chunkUGNLKDI6js.EntityHeroMetaRow; exports.EntityMultiSelector = _chunkUGNLKDI6js.EntityMultiSelector; exports.EntitySection = _chunkUGNLKDI6js.EntitySection; exports.EntitySelector = _chunkUGNLKDI6js.EntitySelector; exports.ErrorDetails = _chunkUGNLKDI6js.ErrorDetails; exports.Field = _chunkUGNLKDI6js.Field; exports.FieldContent = _chunkUGNLKDI6js.FieldContent; exports.FieldDescription = _chunkUGNLKDI6js.FieldDescription; exports.FieldError = _chunkUGNLKDI6js.FieldError; exports.FieldGroup = _chunkUGNLKDI6js.FieldGroup; exports.FieldLabel = _chunkUGNLKDI6js.FieldLabel; exports.FieldLegend = _chunkUGNLKDI6js.FieldLegend; exports.FieldSeparator = _chunkUGNLKDI6js.FieldSeparator; exports.FieldSet = _chunkUGNLKDI6js.FieldSet; exports.FieldTitle = _chunkUGNLKDI6js.FieldTitle; exports.FileInput = _chunkUGNLKDI6js.FileInput; exports.FileUploader = _chunkUGNLKDI6js.FileUploader; exports.FileUploaderContent = _chunkUGNLKDI6js.FileUploaderContent; exports.FileUploaderItem = _chunkUGNLKDI6js.FileUploaderItem; exports.FiscalDataDisplay = _chunkUGNLKDI6js.FiscalDataDisplay; exports.ForgotPassword = _chunkUGNLKDI6js.ForgotPassword; exports.Form = _chunkUGNLKDI6js.Form; exports.FormBlockNote = _chunkUGNLKDI6js.FormBlockNote; exports.FormBody = _chunkUGNLKDI6js.FormBody; exports.FormCheckbox = _chunkUGNLKDI6js.FormCheckbox; exports.FormCol = _chunkUGNLKDI6js.FormCol; exports.FormDate = _chunkUGNLKDI6js.FormDate; exports.FormDateTime = _chunkUGNLKDI6js.FormDateTime; exports.FormFeatures = _chunkUGNLKDI6js.FormFeatures; exports.FormFieldWrapper = _chunkUGNLKDI6js.FormFieldWrapper; exports.FormInput = _chunkUGNLKDI6js.FormInput; exports.FormPassword = _chunkUGNLKDI6js.FormPassword; exports.FormPlaceAutocomplete = _chunkUGNLKDI6js.FormPlaceAutocomplete; exports.FormRoles = _chunkUGNLKDI6js.FormRoles; exports.FormRow = _chunkUGNLKDI6js.FormRow; exports.FormSection = _chunkUGNLKDI6js.FormSection; exports.FormSelect = _chunkUGNLKDI6js.FormSelect; exports.FormSlider = _chunkUGNLKDI6js.FormSlider; exports.FormSwitch = _chunkUGNLKDI6js.FormSwitch; exports.FormTextarea = _chunkUGNLKDI6js.FormTextarea; exports.GdprConsentCheckbox = _chunkUGNLKDI6js.GdprConsentCheckbox; exports.GdprConsentSection = _chunkUGNLKDI6js.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunkUGNLKDI6js.HEADER_ROW_MIN_H; exports.Header = _chunkUGNLKDI6js.Header; exports.HoverCard = _chunkUGNLKDI6js.HoverCard; exports.HoverCardContent = _chunkUGNLKDI6js.HoverCardContent; exports.HoverCardTrigger = _chunkUGNLKDI6js.HoverCardTrigger; exports.HowToCommand = _chunkUGNLKDI6js.HowToCommand; exports.HowToCommandViewer = _chunkUGNLKDI6js.HowToCommandViewer; exports.HowToContainer = _chunkUGNLKDI6js.HowToContainer; exports.HowToContent = _chunkUGNLKDI6js.HowToContent; exports.HowToDeleter = _chunkUGNLKDI6js.HowToDeleter; exports.HowToDetails = _chunkUGNLKDI6js.HowToDetails; exports.HowToEditor = _chunkUGNLKDI6js.HowToEditor; exports.HowToList = _chunkUGNLKDI6js.HowToList; exports.HowToListContainer = _chunkUGNLKDI6js.HowToListContainer; exports.HowToMultiSelector = _chunkUGNLKDI6js.HowToMultiSelector; exports.HowToSelector = _chunkUGNLKDI6js.HowToSelector; exports.Input = _chunkUGNLKDI6js.Input; exports.InputGroup = _chunkUGNLKDI6js.InputGroup; exports.InputGroupAddon = _chunkUGNLKDI6js.InputGroupAddon; exports.InputGroupButton = _chunkUGNLKDI6js.InputGroupButton; exports.InputGroupInput = _chunkUGNLKDI6js.InputGroupInput; exports.InputGroupText = _chunkUGNLKDI6js.InputGroupText; exports.InputGroupTextarea = _chunkUGNLKDI6js.InputGroupTextarea; exports.InputOTP = _chunkUGNLKDI6js.InputOTP; exports.InputOTPGroup = _chunkUGNLKDI6js.InputOTPGroup; exports.InputOTPSeparator = _chunkUGNLKDI6js.InputOTPSeparator; exports.InputOTPSlot = _chunkUGNLKDI6js.InputOTPSlot; exports.ItalianFiscalData = _chunkUGNLKDI6js.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkUGNLKDI6js.ItalianFiscalDataDisplay; exports.Item = _chunkUGNLKDI6js.KanbanItem; exports.ItemHandle = _chunkUGNLKDI6js.KanbanItemHandle; exports.Kanban = _chunkUGNLKDI6js.KanbanRoot; exports.KanbanBoard = _chunkUGNLKDI6js.KanbanBoard; exports.KanbanColumn = _chunkUGNLKDI6js.KanbanColumn; exports.KanbanColumnHandle = _chunkUGNLKDI6js.KanbanColumnHandle; exports.KanbanItem = _chunkUGNLKDI6js.KanbanItem; exports.KanbanItemHandle = _chunkUGNLKDI6js.KanbanItemHandle; exports.KanbanOverlay = _chunkUGNLKDI6js.KanbanOverlay; exports.Label = _chunkUGNLKDI6js.Label; exports.LandingComponent = _chunkUGNLKDI6js.LandingComponent; exports.Link = _chunkUGNLKDI6js.Link; exports.Login = _chunkUGNLKDI6js.Login; exports.Logout = _chunkUGNLKDI6js.Logout; exports.MessageItem = _chunkUGNLKDI6js.MessageItem; exports.MessageList = _chunkUGNLKDI6js.MessageList; exports.MessageSourcesPanel = _chunkUGNLKDI6js.MessageSourcesPanel; exports.MicroLabel = _chunkUGNLKDI6js.MicroLabel; exports.MobileNavigationBar = _chunkUGNLKDI6js.MobileNavigationBar; exports.ModeToggleSwitch = _chunkUGNLKDI6js.ModeToggleSwitch; exports.MultiSelect = _chunkUGNLKDI6js.MultiSelect; exports.MultipleSelector = _chunkUGNLKDI6js.MultipleSelector; exports.NavigationMenu = _chunkUGNLKDI6js.NavigationMenu; exports.NavigationMenuContent = _chunkUGNLKDI6js.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkUGNLKDI6js.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkUGNLKDI6js.NavigationMenuItem; exports.NavigationMenuLink = _chunkUGNLKDI6js.NavigationMenuLink; exports.NavigationMenuList = _chunkUGNLKDI6js.NavigationMenuList; exports.NavigationMenuPositioner = _chunkUGNLKDI6js.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkUGNLKDI6js.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkUGNLKDI6js.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkUGNLKDI6js.NotificationMenuItem; exports.NotificationModal = _chunkUGNLKDI6js.NotificationModal; exports.NotificationToast = _chunkUGNLKDI6js.NotificationToast; exports.NotificationsList = _chunkUGNLKDI6js.NotificationsList; exports.NotificationsListContainer = _chunkUGNLKDI6js.NotificationsListContainer; exports.OAuthClientCard = _chunkUGNLKDI6js.OAuthClientCard; exports.OAuthClientDetail = _chunkUGNLKDI6js.OAuthClientDetail; exports.OAuthClientForm = _chunkUGNLKDI6js.OAuthClientForm; exports.OAuthClientList = _chunkUGNLKDI6js.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkUGNLKDI6js.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkUGNLKDI6js.OAuthConsentActions; exports.OAuthConsentHeader = _chunkUGNLKDI6js.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkUGNLKDI6js.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkUGNLKDI6js.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkUGNLKDI6js.OAuthScopeList; exports.OAuthScopeSelector = _chunkUGNLKDI6js.OAuthScopeSelector; exports.OnboardingCard = _chunkUGNLKDI6js.OnboardingCard; exports.Overlay = _chunkUGNLKDI6js.KanbanOverlay; exports.PageContainer = _chunkUGNLKDI6js.PageContainer; exports.PageContainerContentDetails = _chunkUGNLKDI6js.PageContainerContentDetails; exports.PageContentContainer = _chunkUGNLKDI6js.PageContentContainer; exports.PageSection = _chunkUGNLKDI6js.PageSection; exports.PasskeyButton = _chunkUGNLKDI6js.PasskeyButton; exports.PasskeyList = _chunkUGNLKDI6js.PasskeyList; exports.PasskeySetupDialog = _chunkUGNLKDI6js.PasskeySetupDialog; exports.PasswordInput = _chunkUGNLKDI6js.PasswordInput; exports.PlatformUsersContainer = _chunkUGNLKDI6js.PlatformUsersContainer; exports.PlatformUsersList = _chunkUGNLKDI6js.PlatformUsersList; exports.Popover = _chunkUGNLKDI6js.Popover; exports.PopoverContent = _chunkUGNLKDI6js.PopoverContent; exports.PopoverDescription = _chunkUGNLKDI6js.PopoverDescription; exports.PopoverHeader = _chunkUGNLKDI6js.PopoverHeader; exports.PopoverTitle = _chunkUGNLKDI6js.PopoverTitle; exports.PopoverTrigger = _chunkUGNLKDI6js.PopoverTrigger; exports.Progress = _chunkUGNLKDI6js.Progress; exports.ProgressIndicator = _chunkUGNLKDI6js.ProgressIndicator; exports.ProgressLabel = _chunkUGNLKDI6js.ProgressLabel; exports.ProgressTrack = _chunkUGNLKDI6js.ProgressTrack; exports.ProgressValue = _chunkUGNLKDI6js.ProgressValue; exports.PushNotificationProvider = _chunkUGNLKDI6js.PushNotificationProvider; exports.RadioGroup = _chunkUGNLKDI6js.RadioGroup; exports.RadioGroupItem = _chunkUGNLKDI6js.RadioGroupItem; exports.RbacByRoleContainer = _chunkUGNLKDI6js.RbacByRoleContainer; exports.RbacContainer = _chunkUGNLKDI6js.RbacContainer; exports.RbacPermissionCell = _chunkUGNLKDI6js.RbacPermissionCell; exports.RbacPermissionPicker = _chunkUGNLKDI6js.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkUGNLKDI6js.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkUGNLKDI6js.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkUGNLKDI6js.ReferralCodeCapture; exports.ReferralDialog = _chunkUGNLKDI6js.ReferralDialog; exports.ReferralWidget = _chunkUGNLKDI6js.ReferralWidget; exports.RefreshUser = _chunkUGNLKDI6js.RefreshUser; exports.RelevantContentsList = _chunkUGNLKDI6js.RelevantContentsList; exports.RelevantUsersList = _chunkUGNLKDI6js.RelevantUsersList; exports.RemoveUserFromRole = _chunkUGNLKDI6js.RemoveUserFromRole; exports.ResetPassword = _chunkUGNLKDI6js.ResetPassword; exports.ResizableHandle = _chunkUGNLKDI6js.ResizableHandle; exports.ResizablePanel = _chunkUGNLKDI6js.ResizablePanel; exports.ResizablePanelGroup = _chunkUGNLKDI6js.ResizablePanelGroup; exports.RoleContainer = _chunkUGNLKDI6js.RoleContainer; exports.RoleDetails = _chunkUGNLKDI6js.RoleDetails; exports.RoleUsersList = _chunkUGNLKDI6js.RoleUsersList; exports.RolesList = _chunkUGNLKDI6js.RolesList; exports.Root = _chunkUGNLKDI6js.KanbanRoot; exports.RoundPageContainer = _chunkUGNLKDI6js.RoundPageContainer; exports.RoundPageContainerTitle = _chunkUGNLKDI6js.RoundPageContainerTitle; exports.ScrollArea = _chunkUGNLKDI6js.ScrollArea; exports.ScrollBar = _chunkUGNLKDI6js.ScrollBar; exports.SectionHeader = _chunkUGNLKDI6js.SectionHeader; exports.SecurityContainer = _chunkUGNLKDI6js.SecurityContainer; exports.Select = _chunkUGNLKDI6js.Select; exports.SelectContent = _chunkUGNLKDI6js.SelectContent; exports.SelectGroup = _chunkUGNLKDI6js.SelectGroup; exports.SelectItem = _chunkUGNLKDI6js.SelectItem; exports.SelectLabel = _chunkUGNLKDI6js.SelectLabel; exports.SelectScrollDownButton = _chunkUGNLKDI6js.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkUGNLKDI6js.SelectScrollUpButton; exports.SelectSeparator = _chunkUGNLKDI6js.SelectSeparator; exports.SelectTrigger = _chunkUGNLKDI6js.SelectTrigger; exports.SelectValue = _chunkUGNLKDI6js.SelectValue; exports.Separator = _chunkUGNLKDI6js.Separator; exports.Sheet = _chunkUGNLKDI6js.Sheet; exports.SheetClose = _chunkUGNLKDI6js.SheetClose; exports.SheetContent = _chunkUGNLKDI6js.SheetContent; exports.SheetDescription = _chunkUGNLKDI6js.SheetDescription; exports.SheetFooter = _chunkUGNLKDI6js.SheetFooter; exports.SheetHeader = _chunkUGNLKDI6js.SheetHeader; exports.SheetTitle = _chunkUGNLKDI6js.SheetTitle; exports.SheetTrigger = _chunkUGNLKDI6js.SheetTrigger; exports.Sidebar = _chunkUGNLKDI6js.Sidebar; exports.SidebarContent = _chunkUGNLKDI6js.SidebarContent; exports.SidebarFooter = _chunkUGNLKDI6js.SidebarFooter; exports.SidebarGroup = _chunkUGNLKDI6js.SidebarGroup; exports.SidebarGroupAction = _chunkUGNLKDI6js.SidebarGroupAction; exports.SidebarGroupContent = _chunkUGNLKDI6js.SidebarGroupContent; exports.SidebarGroupLabel = _chunkUGNLKDI6js.SidebarGroupLabel; exports.SidebarHeader = _chunkUGNLKDI6js.SidebarHeader; exports.SidebarInput = _chunkUGNLKDI6js.SidebarInput; exports.SidebarInset = _chunkUGNLKDI6js.SidebarInset; exports.SidebarMenu = _chunkUGNLKDI6js.SidebarMenu; exports.SidebarMenuAction = _chunkUGNLKDI6js.SidebarMenuAction; exports.SidebarMenuBadge = _chunkUGNLKDI6js.SidebarMenuBadge; exports.SidebarMenuButton = _chunkUGNLKDI6js.SidebarMenuButton; exports.SidebarMenuItem = _chunkUGNLKDI6js.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkUGNLKDI6js.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkUGNLKDI6js.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkUGNLKDI6js.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkUGNLKDI6js.SidebarMenuSubItem; exports.SidebarProvider = _chunkUGNLKDI6js.SidebarProvider; exports.SidebarRail = _chunkUGNLKDI6js.SidebarRail; exports.SidebarSeparator = _chunkUGNLKDI6js.SidebarSeparator; exports.SidebarTrigger = _chunkUGNLKDI6js.SidebarTrigger; exports.Skeleton = _chunkUGNLKDI6js.Skeleton; exports.Slider = _chunkUGNLKDI6js.Slider; exports.Spinner = _chunkUGNLKDI6js.Spinner; exports.Switch = _chunkUGNLKDI6js.Switch; exports.Table = _chunkUGNLKDI6js.Table; exports.TableBody = _chunkUGNLKDI6js.TableBody; exports.TableCaption = _chunkUGNLKDI6js.TableCaption; exports.TableCell = _chunkUGNLKDI6js.TableCell; exports.TableCellAvatar = _chunkUGNLKDI6js.TableCellAvatar; exports.TableFooter = _chunkUGNLKDI6js.TableFooter; exports.TableHead = _chunkUGNLKDI6js.TableHead; exports.TableHeader = _chunkUGNLKDI6js.TableHeader; exports.TableRow = _chunkUGNLKDI6js.TableRow; exports.Tabs = _chunkUGNLKDI6js.Tabs; exports.TabsContainer = _chunkUGNLKDI6js.TabsContainer; exports.TabsContent = _chunkUGNLKDI6js.TabsContent; exports.TabsList = _chunkUGNLKDI6js.TabsList; exports.TabsTrigger = _chunkUGNLKDI6js.TabsTrigger; exports.Textarea = _chunkUGNLKDI6js.Textarea; exports.Toaster = _chunkUGNLKDI6js.Toaster; exports.Toggle = _chunkUGNLKDI6js.Toggle; exports.TokenStatusIndicator = _chunkUGNLKDI6js.TokenStatusIndicator; exports.Tooltip = _chunkUGNLKDI6js.Tooltip; exports.TooltipContent = _chunkUGNLKDI6js.TooltipContent; exports.TooltipProvider = _chunkUGNLKDI6js.TooltipProvider; exports.TooltipTrigger = _chunkUGNLKDI6js.TooltipTrigger; exports.TotpAuthenticatorList = _chunkUGNLKDI6js.TotpAuthenticatorList; exports.TotpInput = _chunkUGNLKDI6js.TotpInput; exports.TotpSetupDialog = _chunkUGNLKDI6js.TotpSetupDialog; exports.TwoFactorChallenge = _chunkUGNLKDI6js.TwoFactorChallenge; exports.TwoFactorSettings = _chunkUGNLKDI6js.TwoFactorSettings; exports.UserAvatar = _chunkUGNLKDI6js.UserAvatar; exports.UserAvatarEditor = _chunkUGNLKDI6js.UserAvatarEditor; exports.UserAvatarList = _chunkUGNLKDI6js.UserAvatarList; exports.UserContainer = _chunkUGNLKDI6js.UserContainer; exports.UserContent = _chunkUGNLKDI6js.UserContent; exports.UserDeleter = _chunkUGNLKDI6js.UserDeleter; exports.UserEditor = _chunkUGNLKDI6js.UserEditor; exports.UserIndexContainer = _chunkUGNLKDI6js.UserIndexContainer; exports.UserIndexDetails = _chunkUGNLKDI6js.UserIndexDetails; exports.UserListInAdd = _chunkUGNLKDI6js.UserListInAdd; exports.UserMultiSelect = _chunkUGNLKDI6js.UserMultiSelect; exports.UserReactivator = _chunkUGNLKDI6js.UserReactivator; exports.UserResentInvitationEmail = _chunkUGNLKDI6js.UserResentInvitationEmail; exports.UserRoleAdd = _chunkUGNLKDI6js.UserRoleAdd; exports.UserRolesList = _chunkUGNLKDI6js.UserRolesList; exports.UserSearchPopover = _chunkUGNLKDI6js.UserSearchPopover; exports.UserSelector = _chunkUGNLKDI6js.UserSelector; exports.UserStanadaloneDetails = _chunkUGNLKDI6js.UserStanadaloneDetails; exports.UsersList = _chunkUGNLKDI6js.UsersList; exports.UsersListByContentIds = _chunkUGNLKDI6js.UsersListByContentIds; exports.UsersListContainer = _chunkUGNLKDI6js.UsersListContainer; exports.WaitlistConfirmation = _chunkUGNLKDI6js.WaitlistConfirmation; exports.WaitlistForm = _chunkUGNLKDI6js.WaitlistForm; exports.WaitlistHeroSection = _chunkUGNLKDI6js.WaitlistHeroSection; exports.WaitlistList = _chunkUGNLKDI6js.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkUGNLKDI6js.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkUGNLKDI6js.WaitlistSuccessState; exports.badgeVariants = _chunkUGNLKDI6js.badgeVariants; exports.buttonVariants = _chunkUGNLKDI6js.buttonVariants; exports.cellComponent = _chunkUGNLKDI6js.cellComponent; exports.cellDate = _chunkUGNLKDI6js.cellDate; exports.cellDateTime = _chunkUGNLKDI6js.cellDateTime; exports.cellId = _chunkUGNLKDI6js.cellId; exports.cellLink = _chunkUGNLKDI6js.cellLink; exports.cellUrl = _chunkUGNLKDI6js.cellUrl; exports.createMentionInlineContentSpec = _chunkUGNLKDI6js.createMentionInlineContentSpec; exports.errorToast = _chunkUGNLKDI6js.errorToast; exports.generateNotificationData = _chunkUGNLKDI6js.generateNotificationData; exports.getIcon = _chunk53B6NPGAjs.getIcon; exports.getIconByModule = _chunk53B6NPGAjs.getIconByModule; exports.getIconByModuleName = _chunk53B6NPGAjs.getIconByModuleName; exports.getInitials = _chunk53B6NPGAjs.getInitials; exports.mentionDataAttrs = _chunkUGNLKDI6js.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkUGNLKDI6js.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkUGNLKDI6js.parseFiscalData; exports.parseMentionElement = _chunkUGNLKDI6js.parseMentionElement; exports.partitionTabs = _chunkUGNLKDI6js.partitionTabs; exports.spinnerVariants = _chunkUGNLKDI6js.spinnerVariants; exports.tabsListVariants = _chunkUGNLKDI6js.tabsListVariants; exports.toggleVariants = _chunkUGNLKDI6js.toggleVariants; exports.triggerAssociationToast = _chunkUGNLKDI6js.triggerAssociationToast; exports.useCarousel = _chunkUGNLKDI6js.useCarousel; exports.useComboboxAnchor = _chunkUGNLKDI6js.useComboboxAnchor; exports.useDebounce = _chunkUGNLKDI6js.useDebounce2; exports.useEditorDialog = _chunkUGNLKDI6js.useEditorDialog; exports.useFileUpload = _chunkUGNLKDI6js.useFileUpload; exports.useMentionInsert = _chunkUGNLKDI6js.useMentionInsert; exports.useSidebar = _chunkUGNLKDI6js.useSidebar;
1019
+
1020
+
1021
+
1022
+
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+ exports.ADMINISTRATION_I18N_KEYS = _chunkUYOQG5IWjs.ADMINISTRATION_I18N_KEYS; exports.AI_CONNECTIONS_ADMIN_PAGE_URL = _chunkUYOQG5IWjs.AI_CONNECTIONS_ADMIN_PAGE_URL; exports.AI_CONNECTIONS_I18N_KEYS = _chunkUYOQG5IWjs.AI_CONNECTIONS_I18N_KEYS; exports.AI_CONNECTION_TYPE_ORDER = _chunkUYOQG5IWjs.AI_CONNECTION_TYPE_ORDER; exports.AcceptInvitation = _chunkUYOQG5IWjs.AcceptInvitation; exports.Accordion = _chunkUYOQG5IWjs.Accordion; exports.AccordionContent = _chunkUYOQG5IWjs.AccordionContent; exports.AccordionItem = _chunkUYOQG5IWjs.AccordionItem; exports.AccordionTrigger = _chunkUYOQG5IWjs.AccordionTrigger; exports.ActivateAccount = _chunkUYOQG5IWjs.ActivateAccount; exports.AddUserToRole = _chunkUYOQG5IWjs.AddUserToRole; exports.AdminCompanyContainer = _chunkUYOQG5IWjs.AdminCompanyContainer; exports.AdminIndexContainer = _chunkUYOQG5IWjs.AdminIndexContainer; exports.AdminIndexGrid = _chunkUYOQG5IWjs.AdminIndexGrid; exports.AdminUsersList = _chunkUYOQG5IWjs.AdminUsersList; exports.AiConnection = _chunkYUXCJ35Vjs.AiConnection; exports.AiConnectionDeleter = _chunkUYOQG5IWjs.AiConnectionDeleter; exports.AiConnectionEditor = _chunkUYOQG5IWjs.AiConnectionEditor; exports.AiConnectionFields = _chunkYUXCJ35Vjs.AiConnectionFields; exports.AiConnectionModule = _chunkYUXCJ35Vjs.AiConnectionModule; exports.AiConnectionService = _chunkYUXCJ35Vjs.AiConnectionService; exports.AiConnectionTypeCard = _chunkUYOQG5IWjs.AiConnectionTypeCard; exports.AiConnectionsContainer = _chunkUYOQG5IWjs.AiConnectionsContainer; exports.AiConnectionsProvider = _chunkUYOQG5IWjs.AiConnectionsProvider; exports.Alert = _chunkUYOQG5IWjs.Alert; exports.AlertAction = _chunkUYOQG5IWjs.AlertAction; exports.AlertDescription = _chunkUYOQG5IWjs.AlertDescription; exports.AlertDialog = _chunkUYOQG5IWjs.AlertDialog; exports.AlertDialogAction = _chunkUYOQG5IWjs.AlertDialogAction; exports.AlertDialogCancel = _chunkUYOQG5IWjs.AlertDialogCancel; exports.AlertDialogContent = _chunkUYOQG5IWjs.AlertDialogContent; exports.AlertDialogDescription = _chunkUYOQG5IWjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkUYOQG5IWjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkUYOQG5IWjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkUYOQG5IWjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkUYOQG5IWjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkUYOQG5IWjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkUYOQG5IWjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkUYOQG5IWjs.AlertDialogTrigger; exports.AlertTitle = _chunkUYOQG5IWjs.AlertTitle; exports.AllUsersListContainer = _chunkUYOQG5IWjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkUYOQG5IWjs.AllowedUsersDetails; exports.ApprovalActionCard = _chunkUYOQG5IWjs.ApprovalActionCard; exports.AssistantBlockNoteComposer = _chunkUYOQG5IWjs.AssistantBlockNoteComposer; exports.AssistantContainer = _chunkUYOQG5IWjs.AssistantContainer; exports.AssistantContainerWithApprovals = _chunkUYOQG5IWjs.AssistantContainerWithApprovals; exports.AssistantPageContainer = _chunkUYOQG5IWjs.AssistantPageContainer; exports.AttributeElement = _chunkUYOQG5IWjs.AttributeElement; exports.AuthContainer = _chunkUYOQG5IWjs.AuthContainer; exports.Avatar = _chunkUYOQG5IWjs.Avatar; exports.AvatarBadge = _chunkUYOQG5IWjs.AvatarBadge; exports.AvatarFallback = _chunkUYOQG5IWjs.AvatarFallback; exports.AvatarGroup = _chunkUYOQG5IWjs.AvatarGroup; exports.AvatarGroupCount = _chunkUYOQG5IWjs.AvatarGroupCount; exports.AvatarImage = _chunkUYOQG5IWjs.AvatarImage; exports.BackupCodesDialog = _chunkUYOQG5IWjs.BackupCodesDialog; exports.Badge = _chunkUYOQG5IWjs.Badge; exports.BlockNoteEditorContainer = _chunkUYOQG5IWjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkUYOQG5IWjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkUYOQG5IWjs.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunkUYOQG5IWjs.BlockNoteViewerContainer; exports.Board = _chunkUYOQG5IWjs.KanbanBoard; exports.Breadcrumb = _chunkUYOQG5IWjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkUYOQG5IWjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkUYOQG5IWjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkUYOQG5IWjs.BreadcrumbLink; exports.BreadcrumbList = _chunkUYOQG5IWjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkUYOQG5IWjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkUYOQG5IWjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkUYOQG5IWjs.BreadcrumbSeparator; exports.Button = _chunkUYOQG5IWjs.Button; exports.Calendar = _chunkUYOQG5IWjs.Calendar; exports.CalendarDayButton = _chunkUYOQG5IWjs.CalendarDayButton; exports.Card = _chunkUYOQG5IWjs.Card; exports.CardAction = _chunkUYOQG5IWjs.CardAction; exports.CardContent = _chunkUYOQG5IWjs.CardContent; exports.CardDescription = _chunkUYOQG5IWjs.CardDescription; exports.CardFooter = _chunkUYOQG5IWjs.CardFooter; exports.CardHeader = _chunkUYOQG5IWjs.CardHeader; exports.CardTitle = _chunkUYOQG5IWjs.CardTitle; exports.Carousel = _chunkUYOQG5IWjs.Carousel; exports.CarouselContent = _chunkUYOQG5IWjs.CarouselContent; exports.CarouselItem = _chunkUYOQG5IWjs.CarouselItem; exports.CarouselNext = _chunkUYOQG5IWjs.CarouselNext; exports.CarouselPrevious = _chunkUYOQG5IWjs.CarouselPrevious; exports.ChartContainer = _chunkUYOQG5IWjs.ChartContainer; exports.ChartLegend = _chunkUYOQG5IWjs.ChartLegend; exports.ChartLegendContent = _chunkUYOQG5IWjs.ChartLegendContent; exports.ChartStyle = _chunkUYOQG5IWjs.ChartStyle; exports.ChartTooltip = _chunkUYOQG5IWjs.ChartTooltip; exports.ChartTooltipContent = _chunkUYOQG5IWjs.ChartTooltipContent; exports.Checkbox = _chunkUYOQG5IWjs.Checkbox; exports.Collapsible = _chunkUYOQG5IWjs.Collapsible; exports.CollapsibleContent = _chunkUYOQG5IWjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkUYOQG5IWjs.CollapsibleTrigger; exports.Column = _chunkUYOQG5IWjs.KanbanColumn; exports.ColumnHandle = _chunkUYOQG5IWjs.KanbanColumnHandle; exports.Combobox = _chunkUYOQG5IWjs.Combobox; exports.ComboboxChip = _chunkUYOQG5IWjs.ComboboxChip; exports.ComboboxChips = _chunkUYOQG5IWjs.ComboboxChips; exports.ComboboxChipsInput = _chunkUYOQG5IWjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkUYOQG5IWjs.ComboboxCollection; exports.ComboboxContent = _chunkUYOQG5IWjs.ComboboxContent; exports.ComboboxEmpty = _chunkUYOQG5IWjs.ComboboxEmpty; exports.ComboboxGroup = _chunkUYOQG5IWjs.ComboboxGroup; exports.ComboboxInput = _chunkUYOQG5IWjs.ComboboxInput; exports.ComboboxItem = _chunkUYOQG5IWjs.ComboboxItem; exports.ComboboxLabel = _chunkUYOQG5IWjs.ComboboxLabel; exports.ComboboxList = _chunkUYOQG5IWjs.ComboboxList; exports.ComboboxSeparator = _chunkUYOQG5IWjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkUYOQG5IWjs.ComboboxTrigger; exports.ComboboxValue = _chunkUYOQG5IWjs.ComboboxValue; exports.Command = _chunkUYOQG5IWjs.Command; exports.CommandDialog = _chunkUYOQG5IWjs.CommandDialog; exports.CommandEmpty = _chunkUYOQG5IWjs.CommandEmpty; exports.CommandGroup = _chunkUYOQG5IWjs.CommandGroup; exports.CommandInput = _chunkUYOQG5IWjs.CommandInput; exports.CommandItem = _chunkUYOQG5IWjs.CommandItem; exports.CommandList = _chunkUYOQG5IWjs.CommandList; exports.CommandSeparator = _chunkUYOQG5IWjs.CommandSeparator; exports.CommandShortcut = _chunkUYOQG5IWjs.CommandShortcut; exports.CommonAddTrigger = _chunkUYOQG5IWjs.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunkUYOQG5IWjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkUYOQG5IWjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkUYOQG5IWjs.CommonDeleter; exports.CommonEditorButtons = _chunkUYOQG5IWjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkUYOQG5IWjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkUYOQG5IWjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkUYOQG5IWjs.CommonEditorTrigger; exports.CompaniesList = _chunkUYOQG5IWjs.CompaniesList; exports.CompaniesListContainer = _chunkUYOQG5IWjs.CompaniesListContainer; exports.CompanyConfigurationEditor = _chunkUYOQG5IWjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkUYOQG5IWjs.CompanyContainer; exports.CompanyContent = _chunkUYOQG5IWjs.CompanyContent; exports.CompanyDeleter = _chunkUYOQG5IWjs.CompanyDeleter; exports.CompanyDetails = _chunkUYOQG5IWjs.CompanyDetails; exports.CompanyEditor = _chunkUYOQG5IWjs.CompanyEditor; exports.CompanyUsersList = _chunkUYOQG5IWjs.CompanyUsersList; exports.ConfirmDialog = _chunkUYOQG5IWjs.ConfirmDialog; exports.ContentListGrid = _chunkUYOQG5IWjs.ContentListGrid; exports.ContentListTable = _chunkUYOQG5IWjs.ContentListTable; exports.ContentTableSearch = _chunkUYOQG5IWjs.ContentTableSearch; exports.ContentTitle = _chunkUYOQG5IWjs.ContentTitle; exports.ContentsList = _chunkUYOQG5IWjs.ContentsList; exports.ContentsListById = _chunkUYOQG5IWjs.ContentsListById; exports.ContextMenu = _chunkUYOQG5IWjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkUYOQG5IWjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkUYOQG5IWjs.ContextMenuContent; exports.ContextMenuGroup = _chunkUYOQG5IWjs.ContextMenuGroup; exports.ContextMenuItem = _chunkUYOQG5IWjs.ContextMenuItem; exports.ContextMenuLabel = _chunkUYOQG5IWjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkUYOQG5IWjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkUYOQG5IWjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkUYOQG5IWjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkUYOQG5IWjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkUYOQG5IWjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkUYOQG5IWjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkUYOQG5IWjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkUYOQG5IWjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkUYOQG5IWjs.ContextMenuTrigger; exports.ContributorsList = _chunkUYOQG5IWjs.ContributorsList; exports.Cookies = _chunkUYOQG5IWjs.Cookies; exports.CurrencyInput = _chunkUYOQG5IWjs.CurrencyInput; exports.DatePickerPopover = _chunkUYOQG5IWjs.DatePickerPopover; exports.DateRangeSelector = _chunkUYOQG5IWjs.DateRangeSelector; exports.DetailField = _chunkUYOQG5IWjs.DetailField; exports.Dialog = _chunkUYOQG5IWjs.Dialog; exports.DialogClose = _chunkUYOQG5IWjs.DialogClose; exports.DialogContent = _chunkUYOQG5IWjs.DialogContent; exports.DialogDescription = _chunkUYOQG5IWjs.DialogDescription; exports.DialogFooter = _chunkUYOQG5IWjs.DialogFooter; exports.DialogHeader = _chunkUYOQG5IWjs.DialogHeader; exports.DialogOverlay = _chunkUYOQG5IWjs.DialogOverlay; exports.DialogPortal = _chunkUYOQG5IWjs.DialogPortal; exports.DialogTitle = _chunkUYOQG5IWjs.DialogTitle; exports.DialogTrigger = _chunkUYOQG5IWjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkUYOQG5IWjs.DisableTwoFactorDialog; exports.Drawer = _chunkUYOQG5IWjs.Drawer; exports.DrawerClose = _chunkUYOQG5IWjs.DrawerClose; exports.DrawerContent = _chunkUYOQG5IWjs.DrawerContent; exports.DrawerDescription = _chunkUYOQG5IWjs.DrawerDescription; exports.DrawerFooter = _chunkUYOQG5IWjs.DrawerFooter; exports.DrawerHeader = _chunkUYOQG5IWjs.DrawerHeader; exports.DrawerOverlay = _chunkUYOQG5IWjs.DrawerOverlay; exports.DrawerPortal = _chunkUYOQG5IWjs.DrawerPortal; exports.DrawerTitle = _chunkUYOQG5IWjs.DrawerTitle; exports.DrawerTrigger = _chunkUYOQG5IWjs.DrawerTrigger; exports.DropdownMenu = _chunkUYOQG5IWjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkUYOQG5IWjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkUYOQG5IWjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkUYOQG5IWjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkUYOQG5IWjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkUYOQG5IWjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkUYOQG5IWjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkUYOQG5IWjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkUYOQG5IWjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkUYOQG5IWjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkUYOQG5IWjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkUYOQG5IWjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkUYOQG5IWjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkUYOQG5IWjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkUYOQG5IWjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkUYOQG5IWjs.EditableAvatar; exports.EditorSheet = _chunkUYOQG5IWjs.EditorSheet; exports.EmptyState = _chunkUYOQG5IWjs.EmptyState; exports.EntityAvatar = _chunkUYOQG5IWjs.EntityAvatar; exports.EntityHero = _chunkUYOQG5IWjs.EntityHero; exports.EntityHeroAvatar = _chunkUYOQG5IWjs.EntityHeroAvatar; exports.EntityHeroLayout = _chunkUYOQG5IWjs.EntityHeroLayout; exports.EntityHeroMetaRow = _chunkUYOQG5IWjs.EntityHeroMetaRow; exports.EntityMultiSelector = _chunkUYOQG5IWjs.EntityMultiSelector; exports.EntitySection = _chunkUYOQG5IWjs.EntitySection; exports.EntitySelector = _chunkUYOQG5IWjs.EntitySelector; exports.ErrorDetails = _chunkUYOQG5IWjs.ErrorDetails; exports.Field = _chunkUYOQG5IWjs.Field; exports.FieldContent = _chunkUYOQG5IWjs.FieldContent; exports.FieldDescription = _chunkUYOQG5IWjs.FieldDescription; exports.FieldError = _chunkUYOQG5IWjs.FieldError; exports.FieldGroup = _chunkUYOQG5IWjs.FieldGroup; exports.FieldLabel = _chunkUYOQG5IWjs.FieldLabel; exports.FieldLegend = _chunkUYOQG5IWjs.FieldLegend; exports.FieldSeparator = _chunkUYOQG5IWjs.FieldSeparator; exports.FieldSet = _chunkUYOQG5IWjs.FieldSet; exports.FieldTitle = _chunkUYOQG5IWjs.FieldTitle; exports.FileInput = _chunkUYOQG5IWjs.FileInput; exports.FileUploader = _chunkUYOQG5IWjs.FileUploader; exports.FileUploaderContent = _chunkUYOQG5IWjs.FileUploaderContent; exports.FileUploaderItem = _chunkUYOQG5IWjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkUYOQG5IWjs.FiscalDataDisplay; exports.ForgotPassword = _chunkUYOQG5IWjs.ForgotPassword; exports.Form = _chunkUYOQG5IWjs.Form; exports.FormBlockNote = _chunkUYOQG5IWjs.FormBlockNote; exports.FormBody = _chunkUYOQG5IWjs.FormBody; exports.FormCheckbox = _chunkUYOQG5IWjs.FormCheckbox; exports.FormCol = _chunkUYOQG5IWjs.FormCol; exports.FormDate = _chunkUYOQG5IWjs.FormDate; exports.FormDateTime = _chunkUYOQG5IWjs.FormDateTime; exports.FormFeatures = _chunkUYOQG5IWjs.FormFeatures; exports.FormFieldWrapper = _chunkUYOQG5IWjs.FormFieldWrapper; exports.FormInput = _chunkUYOQG5IWjs.FormInput; exports.FormPassword = _chunkUYOQG5IWjs.FormPassword; exports.FormPlaceAutocomplete = _chunkUYOQG5IWjs.FormPlaceAutocomplete; exports.FormRoles = _chunkUYOQG5IWjs.FormRoles; exports.FormRow = _chunkUYOQG5IWjs.FormRow; exports.FormSection = _chunkUYOQG5IWjs.FormSection; exports.FormSelect = _chunkUYOQG5IWjs.FormSelect; exports.FormSlider = _chunkUYOQG5IWjs.FormSlider; exports.FormSwitch = _chunkUYOQG5IWjs.FormSwitch; exports.FormTextarea = _chunkUYOQG5IWjs.FormTextarea; exports.GdprConsentCheckbox = _chunkUYOQG5IWjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkUYOQG5IWjs.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunkUYOQG5IWjs.HEADER_ROW_MIN_H; exports.Header = _chunkUYOQG5IWjs.Header; exports.HoverCard = _chunkUYOQG5IWjs.HoverCard; exports.HoverCardContent = _chunkUYOQG5IWjs.HoverCardContent; exports.HoverCardTrigger = _chunkUYOQG5IWjs.HoverCardTrigger; exports.HowToCommand = _chunkUYOQG5IWjs.HowToCommand; exports.HowToCommandViewer = _chunkUYOQG5IWjs.HowToCommandViewer; exports.HowToContainer = _chunkUYOQG5IWjs.HowToContainer; exports.HowToContent = _chunkUYOQG5IWjs.HowToContent; exports.HowToDeleter = _chunkUYOQG5IWjs.HowToDeleter; exports.HowToDetails = _chunkUYOQG5IWjs.HowToDetails; exports.HowToEditor = _chunkUYOQG5IWjs.HowToEditor; exports.HowToList = _chunkUYOQG5IWjs.HowToList; exports.HowToListContainer = _chunkUYOQG5IWjs.HowToListContainer; exports.HowToMultiSelector = _chunkUYOQG5IWjs.HowToMultiSelector; exports.HowToSelector = _chunkUYOQG5IWjs.HowToSelector; exports.Input = _chunkUYOQG5IWjs.Input; exports.InputGroup = _chunkUYOQG5IWjs.InputGroup; exports.InputGroupAddon = _chunkUYOQG5IWjs.InputGroupAddon; exports.InputGroupButton = _chunkUYOQG5IWjs.InputGroupButton; exports.InputGroupInput = _chunkUYOQG5IWjs.InputGroupInput; exports.InputGroupText = _chunkUYOQG5IWjs.InputGroupText; exports.InputGroupTextarea = _chunkUYOQG5IWjs.InputGroupTextarea; exports.InputOTP = _chunkUYOQG5IWjs.InputOTP; exports.InputOTPGroup = _chunkUYOQG5IWjs.InputOTPGroup; exports.InputOTPSeparator = _chunkUYOQG5IWjs.InputOTPSeparator; exports.InputOTPSlot = _chunkUYOQG5IWjs.InputOTPSlot; exports.ItalianFiscalData = _chunkUYOQG5IWjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkUYOQG5IWjs.ItalianFiscalDataDisplay; exports.Item = _chunkUYOQG5IWjs.KanbanItem; exports.ItemHandle = _chunkUYOQG5IWjs.KanbanItemHandle; exports.Kanban = _chunkUYOQG5IWjs.KanbanRoot; exports.KanbanBoard = _chunkUYOQG5IWjs.KanbanBoard; exports.KanbanColumn = _chunkUYOQG5IWjs.KanbanColumn; exports.KanbanColumnHandle = _chunkUYOQG5IWjs.KanbanColumnHandle; exports.KanbanItem = _chunkUYOQG5IWjs.KanbanItem; exports.KanbanItemHandle = _chunkUYOQG5IWjs.KanbanItemHandle; exports.KanbanOverlay = _chunkUYOQG5IWjs.KanbanOverlay; exports.Label = _chunkUYOQG5IWjs.Label; exports.LandingComponent = _chunkUYOQG5IWjs.LandingComponent; exports.Link = _chunkUYOQG5IWjs.Link; exports.Login = _chunkUYOQG5IWjs.Login; exports.Logout = _chunkUYOQG5IWjs.Logout; exports.MessageItem = _chunkUYOQG5IWjs.MessageItem; exports.MessageList = _chunkUYOQG5IWjs.MessageList; exports.MessageSourcesPanel = _chunkUYOQG5IWjs.MessageSourcesPanel; exports.MicroLabel = _chunkUYOQG5IWjs.MicroLabel; exports.MobileNavigationBar = _chunkUYOQG5IWjs.MobileNavigationBar; exports.ModeToggleSwitch = _chunkUYOQG5IWjs.ModeToggleSwitch; exports.MultiSelect = _chunkUYOQG5IWjs.MultiSelect; exports.MultipleSelector = _chunkUYOQG5IWjs.MultipleSelector; exports.NavigationMenu = _chunkUYOQG5IWjs.NavigationMenu; exports.NavigationMenuContent = _chunkUYOQG5IWjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkUYOQG5IWjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkUYOQG5IWjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkUYOQG5IWjs.NavigationMenuLink; exports.NavigationMenuList = _chunkUYOQG5IWjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkUYOQG5IWjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkUYOQG5IWjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkUYOQG5IWjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkUYOQG5IWjs.NotificationMenuItem; exports.NotificationModal = _chunkUYOQG5IWjs.NotificationModal; exports.NotificationToast = _chunkUYOQG5IWjs.NotificationToast; exports.NotificationsList = _chunkUYOQG5IWjs.NotificationsList; exports.NotificationsListContainer = _chunkUYOQG5IWjs.NotificationsListContainer; exports.OAuthClientCard = _chunkUYOQG5IWjs.OAuthClientCard; exports.OAuthClientDetail = _chunkUYOQG5IWjs.OAuthClientDetail; exports.OAuthClientForm = _chunkUYOQG5IWjs.OAuthClientForm; exports.OAuthClientList = _chunkUYOQG5IWjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkUYOQG5IWjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkUYOQG5IWjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkUYOQG5IWjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkUYOQG5IWjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkUYOQG5IWjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkUYOQG5IWjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkUYOQG5IWjs.OAuthScopeSelector; exports.OnboardingCard = _chunkUYOQG5IWjs.OnboardingCard; exports.Overlay = _chunkUYOQG5IWjs.KanbanOverlay; exports.PageContainer = _chunkUYOQG5IWjs.PageContainer; exports.PageContainerContentDetails = _chunkUYOQG5IWjs.PageContainerContentDetails; exports.PageContentContainer = _chunkUYOQG5IWjs.PageContentContainer; exports.PageSection = _chunkUYOQG5IWjs.PageSection; exports.PasskeyButton = _chunkUYOQG5IWjs.PasskeyButton; exports.PasskeyList = _chunkUYOQG5IWjs.PasskeyList; exports.PasskeySetupDialog = _chunkUYOQG5IWjs.PasskeySetupDialog; exports.PasswordInput = _chunkUYOQG5IWjs.PasswordInput; exports.PlatformUsersContainer = _chunkUYOQG5IWjs.PlatformUsersContainer; exports.PlatformUsersList = _chunkUYOQG5IWjs.PlatformUsersList; exports.Popover = _chunkUYOQG5IWjs.Popover; exports.PopoverContent = _chunkUYOQG5IWjs.PopoverContent; exports.PopoverDescription = _chunkUYOQG5IWjs.PopoverDescription; exports.PopoverHeader = _chunkUYOQG5IWjs.PopoverHeader; exports.PopoverTitle = _chunkUYOQG5IWjs.PopoverTitle; exports.PopoverTrigger = _chunkUYOQG5IWjs.PopoverTrigger; exports.Progress = _chunkUYOQG5IWjs.Progress; exports.ProgressIndicator = _chunkUYOQG5IWjs.ProgressIndicator; exports.ProgressLabel = _chunkUYOQG5IWjs.ProgressLabel; exports.ProgressTrack = _chunkUYOQG5IWjs.ProgressTrack; exports.ProgressValue = _chunkUYOQG5IWjs.ProgressValue; exports.PushNotificationProvider = _chunkUYOQG5IWjs.PushNotificationProvider; exports.RadioGroup = _chunkUYOQG5IWjs.RadioGroup; exports.RadioGroupItem = _chunkUYOQG5IWjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkUYOQG5IWjs.RbacByRoleContainer; exports.RbacContainer = _chunkUYOQG5IWjs.RbacContainer; exports.RbacPermissionCell = _chunkUYOQG5IWjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkUYOQG5IWjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkUYOQG5IWjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkUYOQG5IWjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkUYOQG5IWjs.ReferralCodeCapture; exports.ReferralDialog = _chunkUYOQG5IWjs.ReferralDialog; exports.ReferralWidget = _chunkUYOQG5IWjs.ReferralWidget; exports.RefreshUser = _chunkUYOQG5IWjs.RefreshUser; exports.RelevantContentsList = _chunkUYOQG5IWjs.RelevantContentsList; exports.RelevantUsersList = _chunkUYOQG5IWjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkUYOQG5IWjs.RemoveUserFromRole; exports.ResetPassword = _chunkUYOQG5IWjs.ResetPassword; exports.ResizableHandle = _chunkUYOQG5IWjs.ResizableHandle; exports.ResizablePanel = _chunkUYOQG5IWjs.ResizablePanel; exports.ResizablePanelGroup = _chunkUYOQG5IWjs.ResizablePanelGroup; exports.RoleContainer = _chunkUYOQG5IWjs.RoleContainer; exports.RoleDetails = _chunkUYOQG5IWjs.RoleDetails; exports.RoleUsersList = _chunkUYOQG5IWjs.RoleUsersList; exports.RolesList = _chunkUYOQG5IWjs.RolesList; exports.Root = _chunkUYOQG5IWjs.KanbanRoot; exports.RoundPageContainer = _chunkUYOQG5IWjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkUYOQG5IWjs.RoundPageContainerTitle; exports.ScrollArea = _chunkUYOQG5IWjs.ScrollArea; exports.ScrollBar = _chunkUYOQG5IWjs.ScrollBar; exports.SectionHeader = _chunkUYOQG5IWjs.SectionHeader; exports.SecurityContainer = _chunkUYOQG5IWjs.SecurityContainer; exports.Select = _chunkUYOQG5IWjs.Select; exports.SelectContent = _chunkUYOQG5IWjs.SelectContent; exports.SelectGroup = _chunkUYOQG5IWjs.SelectGroup; exports.SelectItem = _chunkUYOQG5IWjs.SelectItem; exports.SelectLabel = _chunkUYOQG5IWjs.SelectLabel; exports.SelectScrollDownButton = _chunkUYOQG5IWjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkUYOQG5IWjs.SelectScrollUpButton; exports.SelectSeparator = _chunkUYOQG5IWjs.SelectSeparator; exports.SelectTrigger = _chunkUYOQG5IWjs.SelectTrigger; exports.SelectValue = _chunkUYOQG5IWjs.SelectValue; exports.Separator = _chunkUYOQG5IWjs.Separator; exports.Sheet = _chunkUYOQG5IWjs.Sheet; exports.SheetClose = _chunkUYOQG5IWjs.SheetClose; exports.SheetContent = _chunkUYOQG5IWjs.SheetContent; exports.SheetDescription = _chunkUYOQG5IWjs.SheetDescription; exports.SheetFooter = _chunkUYOQG5IWjs.SheetFooter; exports.SheetHeader = _chunkUYOQG5IWjs.SheetHeader; exports.SheetTitle = _chunkUYOQG5IWjs.SheetTitle; exports.SheetTrigger = _chunkUYOQG5IWjs.SheetTrigger; exports.Sidebar = _chunkUYOQG5IWjs.Sidebar; exports.SidebarContent = _chunkUYOQG5IWjs.SidebarContent; exports.SidebarFooter = _chunkUYOQG5IWjs.SidebarFooter; exports.SidebarGroup = _chunkUYOQG5IWjs.SidebarGroup; exports.SidebarGroupAction = _chunkUYOQG5IWjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkUYOQG5IWjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkUYOQG5IWjs.SidebarGroupLabel; exports.SidebarHeader = _chunkUYOQG5IWjs.SidebarHeader; exports.SidebarInput = _chunkUYOQG5IWjs.SidebarInput; exports.SidebarInset = _chunkUYOQG5IWjs.SidebarInset; exports.SidebarMenu = _chunkUYOQG5IWjs.SidebarMenu; exports.SidebarMenuAction = _chunkUYOQG5IWjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkUYOQG5IWjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkUYOQG5IWjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkUYOQG5IWjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkUYOQG5IWjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkUYOQG5IWjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkUYOQG5IWjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkUYOQG5IWjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkUYOQG5IWjs.SidebarProvider; exports.SidebarRail = _chunkUYOQG5IWjs.SidebarRail; exports.SidebarSeparator = _chunkUYOQG5IWjs.SidebarSeparator; exports.SidebarTrigger = _chunkUYOQG5IWjs.SidebarTrigger; exports.Skeleton = _chunkUYOQG5IWjs.Skeleton; exports.Slider = _chunkUYOQG5IWjs.Slider; exports.Spinner = _chunkUYOQG5IWjs.Spinner; exports.Switch = _chunkUYOQG5IWjs.Switch; exports.Table = _chunkUYOQG5IWjs.Table; exports.TableBody = _chunkUYOQG5IWjs.TableBody; exports.TableCaption = _chunkUYOQG5IWjs.TableCaption; exports.TableCell = _chunkUYOQG5IWjs.TableCell; exports.TableCellAvatar = _chunkUYOQG5IWjs.TableCellAvatar; exports.TableFooter = _chunkUYOQG5IWjs.TableFooter; exports.TableHead = _chunkUYOQG5IWjs.TableHead; exports.TableHeader = _chunkUYOQG5IWjs.TableHeader; exports.TableRow = _chunkUYOQG5IWjs.TableRow; exports.Tabs = _chunkUYOQG5IWjs.Tabs; exports.TabsContainer = _chunkUYOQG5IWjs.TabsContainer; exports.TabsContent = _chunkUYOQG5IWjs.TabsContent; exports.TabsList = _chunkUYOQG5IWjs.TabsList; exports.TabsTrigger = _chunkUYOQG5IWjs.TabsTrigger; exports.Textarea = _chunkUYOQG5IWjs.Textarea; exports.Toaster = _chunkUYOQG5IWjs.Toaster; exports.Toggle = _chunkUYOQG5IWjs.Toggle; exports.TokenStatusIndicator = _chunkUYOQG5IWjs.TokenStatusIndicator; exports.Tooltip = _chunkUYOQG5IWjs.Tooltip; exports.TooltipContent = _chunkUYOQG5IWjs.TooltipContent; exports.TooltipProvider = _chunkUYOQG5IWjs.TooltipProvider; exports.TooltipTrigger = _chunkUYOQG5IWjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkUYOQG5IWjs.TotpAuthenticatorList; exports.TotpInput = _chunkUYOQG5IWjs.TotpInput; exports.TotpSetupDialog = _chunkUYOQG5IWjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkUYOQG5IWjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkUYOQG5IWjs.TwoFactorSettings; exports.UserAvatar = _chunkUYOQG5IWjs.UserAvatar; exports.UserAvatarEditor = _chunkUYOQG5IWjs.UserAvatarEditor; exports.UserAvatarList = _chunkUYOQG5IWjs.UserAvatarList; exports.UserContainer = _chunkUYOQG5IWjs.UserContainer; exports.UserContent = _chunkUYOQG5IWjs.UserContent; exports.UserDeleter = _chunkUYOQG5IWjs.UserDeleter; exports.UserEditor = _chunkUYOQG5IWjs.UserEditor; exports.UserIndexContainer = _chunkUYOQG5IWjs.UserIndexContainer; exports.UserIndexDetails = _chunkUYOQG5IWjs.UserIndexDetails; exports.UserListInAdd = _chunkUYOQG5IWjs.UserListInAdd; exports.UserMultiSelect = _chunkUYOQG5IWjs.UserMultiSelect; exports.UserReactivator = _chunkUYOQG5IWjs.UserReactivator; exports.UserResentInvitationEmail = _chunkUYOQG5IWjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkUYOQG5IWjs.UserRoleAdd; exports.UserRolesList = _chunkUYOQG5IWjs.UserRolesList; exports.UserSearchPopover = _chunkUYOQG5IWjs.UserSearchPopover; exports.UserSelector = _chunkUYOQG5IWjs.UserSelector; exports.UserStanadaloneDetails = _chunkUYOQG5IWjs.UserStanadaloneDetails; exports.UsersList = _chunkUYOQG5IWjs.UsersList; exports.UsersListByContentIds = _chunkUYOQG5IWjs.UsersListByContentIds; exports.UsersListContainer = _chunkUYOQG5IWjs.UsersListContainer; exports.WaitlistConfirmation = _chunkUYOQG5IWjs.WaitlistConfirmation; exports.WaitlistForm = _chunkUYOQG5IWjs.WaitlistForm; exports.WaitlistHeroSection = _chunkUYOQG5IWjs.WaitlistHeroSection; exports.WaitlistList = _chunkUYOQG5IWjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkUYOQG5IWjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkUYOQG5IWjs.WaitlistSuccessState; exports.badgeVariants = _chunkUYOQG5IWjs.badgeVariants; exports.buttonVariants = _chunkUYOQG5IWjs.buttonVariants; exports.cellComponent = _chunkUYOQG5IWjs.cellComponent; exports.cellDate = _chunkUYOQG5IWjs.cellDate; exports.cellDateTime = _chunkUYOQG5IWjs.cellDateTime; exports.cellId = _chunkUYOQG5IWjs.cellId; exports.cellLink = _chunkUYOQG5IWjs.cellLink; exports.cellUrl = _chunkUYOQG5IWjs.cellUrl; exports.createMentionInlineContentSpec = _chunkUYOQG5IWjs.createMentionInlineContentSpec; exports.errorToast = _chunkUYOQG5IWjs.errorToast; exports.generateNotificationData = _chunkUYOQG5IWjs.generateNotificationData; exports.getIcon = _chunkYUXCJ35Vjs.getIcon; exports.getIconByModule = _chunkYUXCJ35Vjs.getIconByModule; exports.getIconByModuleName = _chunkYUXCJ35Vjs.getIconByModuleName; exports.getInitials = _chunkYUXCJ35Vjs.getInitials; exports.mentionDataAttrs = _chunkUYOQG5IWjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkUYOQG5IWjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkUYOQG5IWjs.parseFiscalData; exports.parseMentionElement = _chunkUYOQG5IWjs.parseMentionElement; exports.partitionTabs = _chunkUYOQG5IWjs.partitionTabs; exports.spinnerVariants = _chunkUYOQG5IWjs.spinnerVariants; exports.tabsListVariants = _chunkUYOQG5IWjs.tabsListVariants; exports.toggleVariants = _chunkUYOQG5IWjs.toggleVariants; exports.triggerAssociationToast = _chunkUYOQG5IWjs.triggerAssociationToast; exports.useAiConnections = _chunkUYOQG5IWjs.useAiConnections; exports.useCarousel = _chunkUYOQG5IWjs.useCarousel; exports.useComboboxAnchor = _chunkUYOQG5IWjs.useComboboxAnchor; exports.useDebounce = _chunkUYOQG5IWjs.useDebounce2; exports.useEditorDialog = _chunkUYOQG5IWjs.useEditorDialog; exports.useFileUpload = _chunkUYOQG5IWjs.useFileUpload; exports.useMentionInsert = _chunkUYOQG5IWjs.useMentionInsert; exports.useSidebar = _chunkUYOQG5IWjs.useSidebar;
1007
1033
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sv5BAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"}
1
+ {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,oo7BAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"}
@@ -1,6 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  ADMINISTRATION_I18N_KEYS,
4
+ AI_CONNECTIONS_ADMIN_PAGE_URL,
5
+ AI_CONNECTIONS_I18N_KEYS,
6
+ AI_CONNECTION_TYPE_ORDER,
4
7
  AcceptInvitation,
5
8
  Accordion,
6
9
  AccordionContent,
@@ -12,6 +15,11 @@ import {
12
15
  AdminIndexContainer,
13
16
  AdminIndexGrid,
14
17
  AdminUsersList,
18
+ AiConnectionDeleter,
19
+ AiConnectionEditor,
20
+ AiConnectionTypeCard,
21
+ AiConnectionsContainer,
22
+ AiConnectionsProvider,
15
23
  Alert,
16
24
  AlertAction,
17
25
  AlertDescription,
@@ -482,6 +490,7 @@ import {
482
490
  tabsListVariants,
483
491
  toggleVariants,
484
492
  triggerAssociationToast,
493
+ useAiConnections,
485
494
  useCarousel,
486
495
  useComboboxAnchor,
487
496
  useDebounce2 as useDebounce,
@@ -489,21 +498,28 @@ import {
489
498
  useFileUpload,
490
499
  useMentionInsert,
491
500
  useSidebar
492
- } from "../chunk-J54546YC.mjs";
493
- import "../chunk-PHEFWL6L.mjs";
501
+ } from "../chunk-WCRZEBX4.mjs";
502
+ import "../chunk-ZMYZFQN3.mjs";
494
503
  import {
504
+ AiConnection,
505
+ AiConnectionFields,
506
+ AiConnectionModule,
507
+ AiConnectionService,
495
508
  getIcon,
496
509
  getIconByModule,
497
510
  getIconByModuleName,
498
511
  getInitials
499
- } from "../chunk-TWXKAY34.mjs";
512
+ } from "../chunk-CGJW7ZZM.mjs";
500
513
  import "../chunk-AUXK7QSA.mjs";
501
514
  import "../chunk-C7C7VY4F.mjs";
502
- import "../chunk-E5YA5Z5X.mjs";
515
+ import "../chunk-CMGXH5SA.mjs";
503
516
  import "../chunk-VOXD3ZLY.mjs";
504
517
  import "../chunk-PAWJFY3S.mjs";
505
518
  export {
506
519
  ADMINISTRATION_I18N_KEYS,
520
+ AI_CONNECTIONS_ADMIN_PAGE_URL,
521
+ AI_CONNECTIONS_I18N_KEYS,
522
+ AI_CONNECTION_TYPE_ORDER,
507
523
  AcceptInvitation,
508
524
  Accordion,
509
525
  AccordionContent,
@@ -515,6 +531,15 @@ export {
515
531
  AdminIndexContainer,
516
532
  AdminIndexGrid,
517
533
  AdminUsersList,
534
+ AiConnection,
535
+ AiConnectionDeleter,
536
+ AiConnectionEditor,
537
+ AiConnectionFields,
538
+ AiConnectionModule,
539
+ AiConnectionService,
540
+ AiConnectionTypeCard,
541
+ AiConnectionsContainer,
542
+ AiConnectionsProvider,
518
543
  Alert,
519
544
  AlertAction,
520
545
  AlertDescription,
@@ -996,6 +1021,7 @@ export {
996
1021
  tabsListVariants,
997
1022
  toggleVariants,
998
1023
  triggerAssociationToast,
1024
+ useAiConnections,
999
1025
  useCarousel,
1000
1026
  useComboboxAnchor,
1001
1027
  useDebounce,
@@ -1,50 +1,5 @@
1
- import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from './ApiDataInterface-BcZeXy5X.js';
2
- import { A as ApiRequestDataTypeInterface } from './ApiRequestDataTypeInterface-CYEcRUrh.js';
3
1
  import { a as ModuleFactory, M as ModuleWithPermissions } from './types-bsm8Fp55.js';
4
2
 
5
- declare abstract class AbstractApiData implements ApiDataInterface {
6
- static identifierFields: string[];
7
- get identifier(): string;
8
- protected _jsonApi?: any;
9
- protected _included?: any[];
10
- protected _id?: string;
11
- protected _type?: string;
12
- protected _createdAt?: Date;
13
- protected _updatedAt?: Date;
14
- protected _self?: string;
15
- get type(): string;
16
- get id(): string;
17
- get self(): string | undefined;
18
- get createdAt(): Date;
19
- get updatedAt(): Date;
20
- get included(): any[];
21
- get jsonApi(): any;
22
- ingestJsonApi(_data: JsonApiHydratedDataInterface): void;
23
- generateApiUrl(_params?: any): string;
24
- createJsonApi(_data?: any): any;
25
- protected _readIncluded<T extends ApiDataInterface>(data: JsonApiHydratedDataInterface, type: string, dataType: ApiRequestDataTypeInterface): T | T[] | undefined;
26
- /**
27
- * Read included relationships with polymorphic type resolution.
28
- * Determines the correct model class based on the JSON:API type in included data.
29
- */
30
- protected _readIncludedPolymorphic<T extends ApiDataInterface>(data: JsonApiHydratedDataInterface, relationshipKey: string, candidateModules: ApiRequestDataTypeInterface[]): T | T[] | undefined;
31
- /**
32
- * Read included relationship data and augment with relationship meta properties.
33
- * Handles both single relationships (one-to-one) and array relationships (one-to-many).
34
- *
35
- * For single relationships: meta is read from `relationships[type].meta`
36
- * For array relationships: per-item meta is read from `relationships[type].data[].meta`
37
- *
38
- * @param data - Hydrated JSON:API data
39
- * @param type - Relationship type key (e.g., "guide", "persons")
40
- * @param dataType - Module reference for rehydration
41
- * @returns Related object(s) augmented with meta properties, or undefined
42
- */
43
- protected _readIncludedWithMeta<T extends ApiDataInterface, M extends Record<string, any>>(data: JsonApiHydratedDataInterface, type: string, dataType: ApiRequestDataTypeInterface): (T & M) | (T & M)[] | undefined;
44
- dehydrate(): JsonApiHydratedDataInterface;
45
- rehydrate(data: JsonApiHydratedDataInterface): this;
46
- }
47
-
48
3
  /**
49
4
  * Read-only reporting resources behind the administrative token-usage page.
50
5
  * `name` is the endpoint path EndpointCreator builds URLs from; there is no
@@ -96,4 +51,4 @@ declare function configureTokenUsage(config: {
96
51
  }): void;
97
52
  declare function getTokenUsageCurrency(): string;
98
53
 
99
- export { AbstractApiData as A, TokenUsageAdminSummaryModule as T, TokenUsageAdminTimelineModule as a, TokenUsageAdminBreakdownModule as b, configureTokenUsage as c, getTokenUsageCurrency as g, tokenUsageModules as t };
54
+ export { TokenUsageAdminSummaryModule as T, TokenUsageAdminTimelineModule as a, TokenUsageAdminBreakdownModule as b, configureTokenUsage as c, getTokenUsageCurrency as g, tokenUsageModules as t };
@@ -1,50 +1,5 @@
1
- import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from './ApiDataInterface-BcZeXy5X.mjs';
2
- import { A as ApiRequestDataTypeInterface } from './ApiRequestDataTypeInterface-CYEcRUrh.mjs';
3
1
  import { a as ModuleFactory, M as ModuleWithPermissions } from './types-Bq_UA8Lg.mjs';
4
2
 
5
- declare abstract class AbstractApiData implements ApiDataInterface {
6
- static identifierFields: string[];
7
- get identifier(): string;
8
- protected _jsonApi?: any;
9
- protected _included?: any[];
10
- protected _id?: string;
11
- protected _type?: string;
12
- protected _createdAt?: Date;
13
- protected _updatedAt?: Date;
14
- protected _self?: string;
15
- get type(): string;
16
- get id(): string;
17
- get self(): string | undefined;
18
- get createdAt(): Date;
19
- get updatedAt(): Date;
20
- get included(): any[];
21
- get jsonApi(): any;
22
- ingestJsonApi(_data: JsonApiHydratedDataInterface): void;
23
- generateApiUrl(_params?: any): string;
24
- createJsonApi(_data?: any): any;
25
- protected _readIncluded<T extends ApiDataInterface>(data: JsonApiHydratedDataInterface, type: string, dataType: ApiRequestDataTypeInterface): T | T[] | undefined;
26
- /**
27
- * Read included relationships with polymorphic type resolution.
28
- * Determines the correct model class based on the JSON:API type in included data.
29
- */
30
- protected _readIncludedPolymorphic<T extends ApiDataInterface>(data: JsonApiHydratedDataInterface, relationshipKey: string, candidateModules: ApiRequestDataTypeInterface[]): T | T[] | undefined;
31
- /**
32
- * Read included relationship data and augment with relationship meta properties.
33
- * Handles both single relationships (one-to-one) and array relationships (one-to-many).
34
- *
35
- * For single relationships: meta is read from `relationships[type].meta`
36
- * For array relationships: per-item meta is read from `relationships[type].data[].meta`
37
- *
38
- * @param data - Hydrated JSON:API data
39
- * @param type - Relationship type key (e.g., "guide", "persons")
40
- * @param dataType - Module reference for rehydration
41
- * @returns Related object(s) augmented with meta properties, or undefined
42
- */
43
- protected _readIncludedWithMeta<T extends ApiDataInterface, M extends Record<string, any>>(data: JsonApiHydratedDataInterface, type: string, dataType: ApiRequestDataTypeInterface): (T & M) | (T & M)[] | undefined;
44
- dehydrate(): JsonApiHydratedDataInterface;
45
- rehydrate(data: JsonApiHydratedDataInterface): this;
46
- }
47
-
48
3
  /**
49
4
  * Read-only reporting resources behind the administrative token-usage page.
50
5
  * `name` is the endpoint path EndpointCreator builds URLs from; there is no
@@ -96,4 +51,4 @@ declare function configureTokenUsage(config: {
96
51
  }): void;
97
52
  declare function getTokenUsageCurrency(): string;
98
53
 
99
- export { AbstractApiData as A, TokenUsageAdminSummaryModule as T, TokenUsageAdminTimelineModule as a, TokenUsageAdminBreakdownModule as b, configureTokenUsage as c, getTokenUsageCurrency as g, tokenUsageModules as t };
54
+ export { TokenUsageAdminSummaryModule as T, TokenUsageAdminTimelineModule as a, TokenUsageAdminBreakdownModule as b, configureTokenUsage as c, getTokenUsageCurrency as g, tokenUsageModules as t };
@@ -40,12 +40,12 @@
40
40
 
41
41
 
42
42
 
43
- var _chunkUGNLKDI6js = require('../chunk-UGNLKDI6.js');
44
- require('../chunk-JKGEJGSD.js');
45
- require('../chunk-53B6NPGA.js');
43
+ var _chunkUYOQG5IWjs = require('../chunk-UYOQG5IW.js');
44
+ require('../chunk-H7DOSB7W.js');
45
+ require('../chunk-YUXCJ35V.js');
46
46
  require('../chunk-LXKSUWAV.js');
47
47
  require('../chunk-IBS6NI7D.js');
48
- require('../chunk-FPO4DLZN.js');
48
+ require('../chunk-PFAZPP54.js');
49
49
  require('../chunk-3EPNHTMH.js');
50
50
  require('../chunk-7QVYU63E.js');
51
51
 
@@ -89,5 +89,5 @@ require('../chunk-7QVYU63E.js');
89
89
 
90
90
 
91
91
 
92
- exports.AdministrationProvider = _chunkUGNLKDI6js.AdministrationProvider; exports.AssistantProvider = _chunkUGNLKDI6js.AssistantProvider; exports.CommonProvider = _chunkUGNLKDI6js.CommonProvider; exports.CompanyProvider = _chunkUGNLKDI6js.CompanyProvider; exports.CurrentUserProvider = _chunkUGNLKDI6js.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkUGNLKDI6js.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkUGNLKDI6js.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkUGNLKDI6js.HeaderLeftContentProvider; exports.HeaderLogoProvider = _chunkUGNLKDI6js.HeaderLogoProvider; exports.HowToProvider = _chunkUGNLKDI6js.HowToProvider; exports.MobileNavigationProvider = _chunkUGNLKDI6js.MobileNavigationProvider; exports.NotificationContextProvider = _chunkUGNLKDI6js.NotificationContextProvider; exports.OnboardingProvider = _chunkUGNLKDI6js.OnboardingProvider; exports.RbacProvider = _chunkUGNLKDI6js.RbacProvider; exports.RoleProvider = _chunkUGNLKDI6js.RoleProvider; exports.SharedProvider = _chunkUGNLKDI6js.SharedProvider; exports.SocketContext = _chunkUGNLKDI6js.SocketContext; exports.SocketProvider = _chunkUGNLKDI6js.SocketProvider; exports.UserProvider = _chunkUGNLKDI6js.UserProvider; exports.ViewportProvider = _chunkUGNLKDI6js.ViewportProvider; exports.recentPagesAtom = _chunkUGNLKDI6js.recentPagesAtom; exports.useAdministrationContext = _chunkUGNLKDI6js.useAdministrationContext; exports.useAssistantContext = _chunkUGNLKDI6js.useAssistantContext; exports.useCommonContext = _chunkUGNLKDI6js.useCommonContext; exports.useCompanyContext = _chunkUGNLKDI6js.useCompanyContext; exports.useCurrentUserContext = _chunkUGNLKDI6js.useCurrentUserContext; exports.useHeaderChildren = _chunkUGNLKDI6js.useHeaderChildren; exports.useHeaderLeftContent = _chunkUGNLKDI6js.useHeaderLeftContent; exports.useHeaderLogo = _chunkUGNLKDI6js.useHeaderLogo; exports.useHeaderMobileChildren = _chunkUGNLKDI6js.useHeaderMobileChildren; exports.useHeaderRootLabel = _chunkUGNLKDI6js.useHeaderRootLabel; exports.useHowToContext = _chunkUGNLKDI6js.useHowToContext; exports.useMobileNavigationItems = _chunkUGNLKDI6js.useMobileNavigationItems; exports.useNotificationContext = _chunkUGNLKDI6js.useNotificationContext; exports.useOnboarding = _chunkUGNLKDI6js.useOnboarding; exports.useRbacContext = _chunkUGNLKDI6js.useRbacContext; exports.useRoleContext = _chunkUGNLKDI6js.useRoleContext; exports.useSharedContext = _chunkUGNLKDI6js.useSharedContext; exports.useSocketContext = _chunkUGNLKDI6js.useSocketContext; exports.useUserContext = _chunkUGNLKDI6js.useUserContext;
92
+ exports.AdministrationProvider = _chunkUYOQG5IWjs.AdministrationProvider; exports.AssistantProvider = _chunkUYOQG5IWjs.AssistantProvider; exports.CommonProvider = _chunkUYOQG5IWjs.CommonProvider; exports.CompanyProvider = _chunkUYOQG5IWjs.CompanyProvider; exports.CurrentUserProvider = _chunkUYOQG5IWjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkUYOQG5IWjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkUYOQG5IWjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkUYOQG5IWjs.HeaderLeftContentProvider; exports.HeaderLogoProvider = _chunkUYOQG5IWjs.HeaderLogoProvider; exports.HowToProvider = _chunkUYOQG5IWjs.HowToProvider; exports.MobileNavigationProvider = _chunkUYOQG5IWjs.MobileNavigationProvider; exports.NotificationContextProvider = _chunkUYOQG5IWjs.NotificationContextProvider; exports.OnboardingProvider = _chunkUYOQG5IWjs.OnboardingProvider; exports.RbacProvider = _chunkUYOQG5IWjs.RbacProvider; exports.RoleProvider = _chunkUYOQG5IWjs.RoleProvider; exports.SharedProvider = _chunkUYOQG5IWjs.SharedProvider; exports.SocketContext = _chunkUYOQG5IWjs.SocketContext; exports.SocketProvider = _chunkUYOQG5IWjs.SocketProvider; exports.UserProvider = _chunkUYOQG5IWjs.UserProvider; exports.ViewportProvider = _chunkUYOQG5IWjs.ViewportProvider; exports.recentPagesAtom = _chunkUYOQG5IWjs.recentPagesAtom; exports.useAdministrationContext = _chunkUYOQG5IWjs.useAdministrationContext; exports.useAssistantContext = _chunkUYOQG5IWjs.useAssistantContext; exports.useCommonContext = _chunkUYOQG5IWjs.useCommonContext; exports.useCompanyContext = _chunkUYOQG5IWjs.useCompanyContext; exports.useCurrentUserContext = _chunkUYOQG5IWjs.useCurrentUserContext; exports.useHeaderChildren = _chunkUYOQG5IWjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkUYOQG5IWjs.useHeaderLeftContent; exports.useHeaderLogo = _chunkUYOQG5IWjs.useHeaderLogo; exports.useHeaderMobileChildren = _chunkUYOQG5IWjs.useHeaderMobileChildren; exports.useHeaderRootLabel = _chunkUYOQG5IWjs.useHeaderRootLabel; exports.useHowToContext = _chunkUYOQG5IWjs.useHowToContext; exports.useMobileNavigationItems = _chunkUYOQG5IWjs.useMobileNavigationItems; exports.useNotificationContext = _chunkUYOQG5IWjs.useNotificationContext; exports.useOnboarding = _chunkUYOQG5IWjs.useOnboarding; exports.useRbacContext = _chunkUYOQG5IWjs.useRbacContext; exports.useRoleContext = _chunkUYOQG5IWjs.useRoleContext; exports.useSharedContext = _chunkUYOQG5IWjs.useSharedContext; exports.useSocketContext = _chunkUYOQG5IWjs.useSocketContext; exports.useUserContext = _chunkUYOQG5IWjs.useUserContext;
93
93
  //# sourceMappingURL=index.js.map
@@ -40,12 +40,12 @@ import {
40
40
  useSharedContext,
41
41
  useSocketContext,
42
42
  useUserContext
43
- } from "../chunk-J54546YC.mjs";
44
- import "../chunk-PHEFWL6L.mjs";
45
- import "../chunk-TWXKAY34.mjs";
43
+ } from "../chunk-WCRZEBX4.mjs";
44
+ import "../chunk-ZMYZFQN3.mjs";
45
+ import "../chunk-CGJW7ZZM.mjs";
46
46
  import "../chunk-AUXK7QSA.mjs";
47
47
  import "../chunk-C7C7VY4F.mjs";
48
- import "../chunk-E5YA5Z5X.mjs";
48
+ import "../chunk-CMGXH5SA.mjs";
49
49
  import "../chunk-VOXD3ZLY.mjs";
50
50
  import "../chunk-PAWJFY3S.mjs";
51
51
  export {
@@ -3,8 +3,7 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
3
3
  import { A as ApiRequestDataTypeInterface, F as FieldSelector } from '../ApiRequestDataTypeInterface-CYEcRUrh.mjs';
4
4
  export { G as GetterKeys, c as createJsonApiInclusion } from '../ApiRequestDataTypeInterface-CYEcRUrh.mjs';
5
5
  import { A as ApiResponseInterface } from '../ApiResponseInterface-rsXRL_Hn.mjs';
6
- import { A as AbstractApiData } from '../config-BRUjtCd1.mjs';
7
- export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule, c as configureTokenUsage, g as getTokenUsageCurrency, t as tokenUsageModules } from '../config-BRUjtCd1.mjs';
6
+ import { A as AbstractApiData } from '../AbstractApiData-XLhBP5Tl.mjs';
8
7
  import { A as AbstractService, N as NextRef, P as PreviousRef } from '../AbstractService-B0T7h8fX.mjs';
9
8
  export { H as HttpMethod, S as SelfRef, T as TotalRef, b as clearLastApiMeta, c as clearLastApiTotal, d as getGlobalErrorHandler, a as getLastApiMeta, g as getLastApiTotal, s as setGlobalErrorHandler } from '../AbstractService-B0T7h8fX.mjs';
10
9
  import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as PermissionModule, a as ModuleFactory } from '../types-Bq_UA8Lg.mjs';
@@ -17,8 +16,8 @@ export { ClassValue } from 'clsx';
17
16
  import * as React from 'react';
18
17
  import { ReactElement, ReactNode, JSXElementConstructor } from 'react';
19
18
  import { z } from 'zod';
20
- import { T as TotpAuthenticatorInterface, P as PasskeyInterface } from '../AuthComponent-Cik96ElA.mjs';
21
- export { A as AuthComponent, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from '../AuthComponent-Cik96ElA.mjs';
19
+ import { T as TotpAuthenticatorInterface, P as PasskeyInterface } from '../ai-connection.module-28f-hux0.mjs';
20
+ export { h as AiConnection, l as AiConnectionEnvDefaults, i as AiConnectionFields, n as AiConnectionInput, m as AiConnectionInterface, p as AiConnectionModule, o as AiConnectionService, j as AiProviderFieldDescriptor, k as AiProviderRegistry, A as AuthComponent, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from '../ai-connection.module-28f-hux0.mjs';
22
21
  import { PartialBlock } from '@blocknote/core';
23
22
  import { ExternalToast } from 'sonner';
24
23
  import { e as RoleInterface, R as RoleInput, U as UserInterface, c as CompanyInterface, f as UserInput, b as CompanyInput, C as ContentInterface, a as ContentInput, N as NotificationInterface, d as NotificationInput } from '../notification.interface-CG1vqoxg.mjs';
@@ -33,6 +32,7 @@ import { M as ModuleInterface, F as FeatureInterface } from '../feature.interfac
33
32
  import { a as AssistantInterface, A as AssistantInput } from '../AssistantInterface-DMh-zApr.mjs';
34
33
  import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-DRE3NAKc.mjs';
35
34
  export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-DRE3NAKc.mjs';
35
+ export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule, c as configureTokenUsage, g as getTokenUsageCurrency, t as tokenUsageModules } from '../config-n-ZpPmOL.mjs';
36
36
  import 'lucide-react';
37
37
  import 'd3';
38
38
 
@@ -214,6 +214,7 @@ interface FoundationModuleDefinitions {
214
214
  StripePrice: ModuleWithPermissions;
215
215
  StripeUsage: ModuleWithPermissions;
216
216
  StripePromotionCode: ModuleWithPermissions;
217
+ AiConnection: ModuleWithPermissions;
217
218
  OAuth: ModuleWithPermissions;
218
219
  Waitlist: ModuleWithPermissions;
219
220
  WaitlistStats: ModuleWithPermissions;
@@ -3,8 +3,7 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
3
3
  import { A as ApiRequestDataTypeInterface, F as FieldSelector } from '../ApiRequestDataTypeInterface-CYEcRUrh.js';
4
4
  export { G as GetterKeys, c as createJsonApiInclusion } from '../ApiRequestDataTypeInterface-CYEcRUrh.js';
5
5
  import { A as ApiResponseInterface } from '../ApiResponseInterface-CWLvSCvS.js';
6
- import { A as AbstractApiData } from '../config-BIjrg5wd.js';
7
- export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule, c as configureTokenUsage, g as getTokenUsageCurrency, t as tokenUsageModules } from '../config-BIjrg5wd.js';
6
+ import { A as AbstractApiData } from '../AbstractApiData-DtitRWPz.js';
8
7
  import { A as AbstractService, N as NextRef, P as PreviousRef } from '../AbstractService-Cew0PD0L.js';
9
8
  export { H as HttpMethod, S as SelfRef, T as TotalRef, b as clearLastApiMeta, c as clearLastApiTotal, d as getGlobalErrorHandler, a as getLastApiMeta, g as getLastApiTotal, s as setGlobalErrorHandler } from '../AbstractService-Cew0PD0L.js';
10
9
  import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as PermissionModule, a as ModuleFactory } from '../types-bsm8Fp55.js';
@@ -17,8 +16,8 @@ export { ClassValue } from 'clsx';
17
16
  import * as React from 'react';
18
17
  import { ReactElement, ReactNode, JSXElementConstructor } from 'react';
19
18
  import { z } from 'zod';
20
- import { T as TotpAuthenticatorInterface, P as PasskeyInterface } from '../AuthComponent-DTTKu3VK.js';
21
- export { A as AuthComponent, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from '../AuthComponent-DTTKu3VK.js';
19
+ import { T as TotpAuthenticatorInterface, P as PasskeyInterface } from '../ai-connection.module-Bqwh_DnR.js';
20
+ export { h as AiConnection, l as AiConnectionEnvDefaults, i as AiConnectionFields, n as AiConnectionInput, m as AiConnectionInterface, p as AiConnectionModule, o as AiConnectionService, j as AiProviderFieldDescriptor, k as AiProviderRegistry, A as AuthComponent, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from '../ai-connection.module-Bqwh_DnR.js';
22
21
  import { PartialBlock } from '@blocknote/core';
23
22
  import { ExternalToast } from 'sonner';
24
23
  import { e as RoleInterface, R as RoleInput, U as UserInterface, c as CompanyInterface, f as UserInput, b as CompanyInput, C as ContentInterface, a as ContentInput, N as NotificationInterface, d as NotificationInput } from '../notification.interface--27exGde.js';
@@ -33,6 +32,7 @@ import { M as ModuleInterface, F as FeatureInterface } from '../feature.interfac
33
32
  import { a as AssistantInterface, A as AssistantInput } from '../AssistantInterface-DwdBzS9f.js';
34
33
  import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-CD90ycYz.js';
35
34
  export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-CD90ycYz.js';
35
+ export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule, c as configureTokenUsage, g as getTokenUsageCurrency, t as tokenUsageModules } from '../config-B6UB7j69.js';
36
36
  import 'lucide-react';
37
37
  import 'd3';
38
38
 
@@ -214,6 +214,7 @@ interface FoundationModuleDefinitions {
214
214
  StripePrice: ModuleWithPermissions;
215
215
  StripeUsage: ModuleWithPermissions;
216
216
  StripePromotionCode: ModuleWithPermissions;
217
+ AiConnection: ModuleWithPermissions;
217
218
  OAuth: ModuleWithPermissions;
218
219
  Waitlist: ModuleWithPermissions;
219
220
  WaitlistStats: ModuleWithPermissions;