@carlonicora/nextjs-jsonapi 2.5.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BlockNoteEditor-TIMGYKAA.js → BlockNoteEditor-3IZ7PMFM.js} +19 -19
- package/dist/{BlockNoteEditor-TIMGYKAA.js.map → BlockNoteEditor-3IZ7PMFM.js.map} +1 -1
- package/dist/{BlockNoteEditor-YFJMXJEU.mjs → BlockNoteEditor-G4XNDV2O.mjs} +4 -4
- package/dist/billing/index.d.mts +127 -46
- package/dist/billing/index.d.ts +127 -46
- package/dist/billing/index.js +1243 -1084
- package/dist/billing/index.js.map +1 -1
- package/dist/billing/index.mjs +983 -824
- package/dist/billing/index.mjs.map +1 -1
- package/dist/{chunk-RTOC53EZ.js → chunk-53B6NPGA.js} +34 -4
- package/dist/chunk-53B6NPGA.js.map +1 -0
- package/dist/{chunk-7HKJNUW7.js → chunk-5GVBUTS4.js} +1142 -953
- package/dist/chunk-5GVBUTS4.js.map +1 -0
- package/dist/{chunk-OTEDZ6YW.js → chunk-JKGEJGSD.js} +7 -7
- package/dist/{chunk-OTEDZ6YW.js.map → chunk-JKGEJGSD.js.map} +1 -1
- package/dist/{chunk-DJWNNV52.mjs → chunk-PHEFWL6L.mjs} +2 -2
- package/dist/{chunk-FS4RVV3K.mjs → chunk-TWXKAY34.mjs} +33 -3
- package/dist/chunk-TWXKAY34.mjs.map +1 -0
- package/dist/{chunk-G4YS52SO.mjs → chunk-WCX4CLRJ.mjs} +1607 -1418
- package/dist/chunk-WCX4CLRJ.mjs.map +1 -0
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.js +4 -4
- package/dist/components/index.mjs +3 -3
- package/dist/contexts/index.js +4 -4
- package/dist/contexts/index.mjs +3 -3
- package/dist/core/index.d.mts +17 -1
- package/dist/core/index.d.ts +17 -1
- package/dist/core/index.js +6 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +5 -1
- package/dist/features/help/index.js +37 -37
- package/dist/features/help/index.mjs +3 -3
- package/dist/features/tokenusage/index.js +101 -101
- package/dist/features/tokenusage/index.mjs +3 -3
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
- package/src/client/index.ts +4 -0
- package/src/features/administration/components/AdminIndexContainer.tsx +1 -1
- package/src/features/administration/components/__tests__/AdminIndexContainer.spec.tsx +1 -1
- package/src/features/billing/contexts/PriceContext.tsx +202 -0
- package/src/features/billing/contexts/ProductContext.tsx +185 -0
- package/src/features/billing/contexts/__tests__/PriceContext.spec.tsx +89 -0
- package/src/features/billing/contexts/__tests__/ProductContext.spec.tsx +81 -0
- package/src/features/billing/contexts/index.ts +2 -1
- package/src/features/billing/i18n-keys.ts +88 -0
- package/src/features/billing/stripe-price/components/containers/PriceContainer.tsx +21 -0
- package/src/features/billing/stripe-price/components/containers/index.ts +1 -0
- package/src/features/billing/stripe-price/components/details/PriceDetails.tsx +131 -0
- package/src/features/billing/stripe-price/components/details/index.ts +1 -0
- package/src/features/billing/stripe-price/components/forms/PriceArchiver.tsx +55 -0
- package/src/features/billing/stripe-price/components/forms/PriceEditor.tsx +307 -374
- package/src/features/billing/stripe-price/components/forms/index.ts +3 -1
- package/src/features/billing/stripe-price/components/index.ts +2 -0
- package/src/features/billing/stripe-price/components/lists/PricesList.tsx +49 -267
- package/src/features/billing/stripe-price/data/index.ts +1 -0
- package/src/features/billing/stripe-price/data/stripe-price.fields.ts +8 -0
- package/src/features/billing/stripe-price/hooks/useStripePriceTableStructure.tsx +119 -0
- package/src/features/billing/stripe-price/stripe-price.module.ts +5 -1
- package/src/features/billing/stripe-product/components/containers/ProductContainer.tsx +45 -0
- package/src/features/billing/stripe-product/components/containers/ProductsListContainer.tsx +27 -0
- package/src/features/billing/stripe-product/components/containers/index.ts +2 -2
- package/src/features/billing/stripe-product/components/details/ProductDetails.tsx +45 -0
- package/src/features/billing/stripe-product/components/details/index.ts +1 -0
- package/src/features/billing/stripe-product/components/forms/ProductArchiver.tsx +55 -0
- package/src/features/billing/stripe-product/components/forms/ProductEditor.tsx +92 -81
- package/src/features/billing/stripe-product/components/forms/index.ts +3 -1
- package/src/features/billing/stripe-product/components/index.ts +1 -0
- package/src/features/billing/stripe-product/components/lists/ProductsList.tsx +45 -187
- package/src/features/billing/stripe-product/data/index.ts +1 -0
- package/src/features/billing/stripe-product/data/stripe-product.fields.ts +6 -0
- package/src/features/billing/stripe-product/hooks/useStripeProductTableStructure.tsx +80 -0
- package/src/features/billing/stripe-product/stripe-product.module.ts +5 -1
- package/src/features/user/components/forms/UserEditor.tsx +11 -2
- package/dist/chunk-7HKJNUW7.js.map +0 -1
- package/dist/chunk-FS4RVV3K.mjs.map +0 -1
- package/dist/chunk-G4YS52SO.mjs.map +0 -1
- package/dist/chunk-RTOC53EZ.js.map +0 -1
- package/src/features/billing/contexts/BillingContext.tsx +0 -95
- package/src/features/billing/stripe-product/components/containers/ProductsAdminContainer.tsx +0 -98
- package/src/features/billing/stripe-product/components/containers/ProductsAdminPageContainer.tsx +0 -27
- /package/dist/{BlockNoteEditor-YFJMXJEU.mjs.map → BlockNoteEditor-G4XNDV2O.mjs.map} +0 -0
- /package/dist/{chunk-DJWNNV52.mjs.map → chunk-PHEFWL6L.mjs.map} +0 -0
package/dist/client/index.js
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var _chunk5GVBUTS4js = require('../chunk-5GVBUTS4.js');
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
@@ -43,7 +43,7 @@ var _chunk7HKJNUW7js = require('../chunk-7HKJNUW7.js');
|
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
var
|
|
46
|
+
var _chunkJKGEJGSDjs = require('../chunk-JKGEJGSD.js');
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
|
|
@@ -55,7 +55,7 @@ var _chunkOTEDZ6YWjs = require('../chunk-OTEDZ6YW.js');
|
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
var
|
|
58
|
+
var _chunk53B6NPGAjs = require('../chunk-53B6NPGA.js');
|
|
59
59
|
|
|
60
60
|
|
|
61
61
|
var _chunkLXKSUWAVjs = require('../chunk-LXKSUWAV.js');
|
|
@@ -125,5 +125,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
125
125
|
|
|
126
126
|
|
|
127
127
|
|
|
128
|
-
exports.ClientJsonApiDelete =
|
|
128
|
+
exports.ClientJsonApiDelete = _chunk53B6NPGAjs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunk53B6NPGAjs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunk53B6NPGAjs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunk53B6NPGAjs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunk53B6NPGAjs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunk5GVBUTS4js.JsonApiProvider; exports.TableGeneratorRegistry = _chunk5GVBUTS4js.TableGeneratorRegistry; exports.buildClientUrl = _chunk53B6NPGAjs.buildClientUrl; exports.computeLayeredLayout = _chunk5GVBUTS4js.computeLayeredLayout; exports.configureClientConfig = _chunkJKGEJGSDjs.configureClientConfig; exports.configureClientJsonApi = _chunk53B6NPGAjs.configureClientJsonApi; exports.configureI18n = _chunkJKGEJGSDjs.configureI18n; exports.configureJsonApi = _chunkJKGEJGSDjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.fitLayeredLayoutToAspectRatio = _chunk5GVBUTS4js.fitLayeredLayoutToAspectRatio; exports.getApiUrl = _chunkJKGEJGSDjs.getApiUrl; exports.getAppUrl = _chunkJKGEJGSDjs.getAppUrl; exports.getClientApiUrl = _chunk53B6NPGAjs.getClientApiUrl; exports.getClientAppUrl = _chunk53B6NPGAjs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunk53B6NPGAjs.getClientTrackablePages; exports.getI18nLink = _chunkJKGEJGSDjs.getI18nLink; exports.getPublicApiUrl = _chunkJKGEJGSDjs.getPublicApiUrl; exports.getStripePublishableKey = _chunkJKGEJGSDjs.getStripePublishableKey; exports.getTrackablePages = _chunkJKGEJGSDjs.getTrackablePages; exports.registerTableGenerator = _chunk5GVBUTS4js.registerTableGenerator; exports.tableGeneratorRegistry = _chunk5GVBUTS4js.tableGeneratorRegistry; exports.useContentTableStructure = _chunk5GVBUTS4js.useContentTableStructure; exports.useCustomD3Graph = _chunk5GVBUTS4js.useCustomD3Graph; exports.useDataListRetriever = _chunk5GVBUTS4js.useDataListRetriever; exports.useDebounce = _chunk5GVBUTS4js.useDebounce; exports.useI18nDateFnsLocale = _chunkJKGEJGSDjs.useI18nDateFnsLocale; exports.useI18nLocale = _chunkJKGEJGSDjs.useI18nLocale; exports.useI18nRouter = _chunkJKGEJGSDjs.useI18nRouter; exports.useI18nTranslations = _chunkJKGEJGSDjs.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunk5GVBUTS4js.useJsonApiGet; exports.useJsonApiMutation = _chunk5GVBUTS4js.useJsonApiMutation; exports.useNotificationSync = _chunk5GVBUTS4js.useNotificationSync; exports.useOAuthClient = _chunk5GVBUTS4js.useOAuthClient; exports.useOAuthClients = _chunk5GVBUTS4js.useOAuthClients; exports.useOAuthConsent = _chunk5GVBUTS4js.useOAuthConsent; exports.usePageTracker = _chunk5GVBUTS4js.usePageTracker; exports.usePageUrlGenerator = _chunk5GVBUTS4js.usePageUrlGenerator; exports.useRehydration = _chunk5GVBUTS4js.useRehydration; exports.useRehydrationList = _chunk5GVBUTS4js.useRehydrationList; exports.useRoleTableStructure = _chunk5GVBUTS4js.useRoleTableStructure; exports.useSocket = _chunk5GVBUTS4js.useSocket; exports.useSubscriptionStatus = _chunk5GVBUTS4js.useSubscriptionStatus; exports.useTableGenerator = _chunk5GVBUTS4js.useTableGenerator; exports.useUrlRewriter = _chunk5GVBUTS4js.useUrlRewriter; exports.useUserSearch = _chunk5GVBUTS4js.useUserSearch; exports.useUserTableStructure = _chunk5GVBUTS4js.useUserTableStructure;
|
|
129
129
|
//# sourceMappingURL=index.js.map
|
package/dist/client/index.mjs
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
useUrlRewriter,
|
|
28
28
|
useUserSearch,
|
|
29
29
|
useUserTableStructure
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-WCX4CLRJ.mjs";
|
|
31
31
|
import {
|
|
32
32
|
configureClientConfig,
|
|
33
33
|
configureI18n,
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
useI18nLocale,
|
|
43
43
|
useI18nRouter,
|
|
44
44
|
useI18nTranslations
|
|
45
|
-
} from "../chunk-
|
|
45
|
+
} from "../chunk-PHEFWL6L.mjs";
|
|
46
46
|
import {
|
|
47
47
|
ClientJsonApiDelete,
|
|
48
48
|
ClientJsonApiGet,
|
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
getClientApiUrl,
|
|
55
55
|
getClientAppUrl,
|
|
56
56
|
getClientTrackablePages
|
|
57
|
-
} from "../chunk-
|
|
57
|
+
} from "../chunk-TWXKAY34.mjs";
|
|
58
58
|
import {
|
|
59
59
|
getClientToken
|
|
60
60
|
} from "../chunk-AUXK7QSA.mjs";
|
package/dist/components/index.js
CHANGED
|
@@ -489,14 +489,14 @@
|
|
|
489
489
|
|
|
490
490
|
|
|
491
491
|
|
|
492
|
-
var
|
|
493
|
-
require('../chunk-
|
|
492
|
+
var _chunk5GVBUTS4js = require('../chunk-5GVBUTS4.js');
|
|
493
|
+
require('../chunk-JKGEJGSD.js');
|
|
494
494
|
|
|
495
495
|
|
|
496
496
|
|
|
497
497
|
|
|
498
498
|
|
|
499
|
-
var
|
|
499
|
+
var _chunk53B6NPGAjs = require('../chunk-53B6NPGA.js');
|
|
500
500
|
require('../chunk-LXKSUWAV.js');
|
|
501
501
|
require('../chunk-IBS6NI7D.js');
|
|
502
502
|
require('../chunk-FPO4DLZN.js');
|
|
@@ -1003,5 +1003,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
1003
1003
|
|
|
1004
1004
|
|
|
1005
1005
|
|
|
1006
|
-
exports.ADMINISTRATION_I18N_KEYS = _chunk7HKJNUW7js.ADMINISTRATION_I18N_KEYS; exports.AcceptInvitation = _chunk7HKJNUW7js.AcceptInvitation; exports.Accordion = _chunk7HKJNUW7js.Accordion; exports.AccordionContent = _chunk7HKJNUW7js.AccordionContent; exports.AccordionItem = _chunk7HKJNUW7js.AccordionItem; exports.AccordionTrigger = _chunk7HKJNUW7js.AccordionTrigger; exports.ActivateAccount = _chunk7HKJNUW7js.ActivateAccount; exports.AddUserToRole = _chunk7HKJNUW7js.AddUserToRole; exports.AdminCompanyContainer = _chunk7HKJNUW7js.AdminCompanyContainer; exports.AdminIndexContainer = _chunk7HKJNUW7js.AdminIndexContainer; exports.AdminIndexGrid = _chunk7HKJNUW7js.AdminIndexGrid; exports.AdminUsersList = _chunk7HKJNUW7js.AdminUsersList; exports.Alert = _chunk7HKJNUW7js.Alert; exports.AlertAction = _chunk7HKJNUW7js.AlertAction; exports.AlertDescription = _chunk7HKJNUW7js.AlertDescription; exports.AlertDialog = _chunk7HKJNUW7js.AlertDialog; exports.AlertDialogAction = _chunk7HKJNUW7js.AlertDialogAction; exports.AlertDialogCancel = _chunk7HKJNUW7js.AlertDialogCancel; exports.AlertDialogContent = _chunk7HKJNUW7js.AlertDialogContent; exports.AlertDialogDescription = _chunk7HKJNUW7js.AlertDialogDescription; exports.AlertDialogFooter = _chunk7HKJNUW7js.AlertDialogFooter; exports.AlertDialogHeader = _chunk7HKJNUW7js.AlertDialogHeader; exports.AlertDialogMedia = _chunk7HKJNUW7js.AlertDialogMedia; exports.AlertDialogOverlay = _chunk7HKJNUW7js.AlertDialogOverlay; exports.AlertDialogPortal = _chunk7HKJNUW7js.AlertDialogPortal; exports.AlertDialogTitle = _chunk7HKJNUW7js.AlertDialogTitle; exports.AlertDialogTrigger = _chunk7HKJNUW7js.AlertDialogTrigger; exports.AlertTitle = _chunk7HKJNUW7js.AlertTitle; exports.AllUsersListContainer = _chunk7HKJNUW7js.AllUsersListContainer; exports.AllowedUsersDetails = _chunk7HKJNUW7js.AllowedUsersDetails; exports.ApprovalActionCard = _chunk7HKJNUW7js.ApprovalActionCard; exports.AssistantBlockNoteComposer = _chunk7HKJNUW7js.AssistantBlockNoteComposer; exports.AssistantContainer = _chunk7HKJNUW7js.AssistantContainer; exports.AssistantContainerWithApprovals = _chunk7HKJNUW7js.AssistantContainerWithApprovals; exports.AssistantPageContainer = _chunk7HKJNUW7js.AssistantPageContainer; exports.AttributeElement = _chunk7HKJNUW7js.AttributeElement; exports.AuthContainer = _chunk7HKJNUW7js.AuthContainer; exports.Avatar = _chunk7HKJNUW7js.Avatar; exports.AvatarBadge = _chunk7HKJNUW7js.AvatarBadge; exports.AvatarFallback = _chunk7HKJNUW7js.AvatarFallback; exports.AvatarGroup = _chunk7HKJNUW7js.AvatarGroup; exports.AvatarGroupCount = _chunk7HKJNUW7js.AvatarGroupCount; exports.AvatarImage = _chunk7HKJNUW7js.AvatarImage; exports.BackupCodesDialog = _chunk7HKJNUW7js.BackupCodesDialog; exports.Badge = _chunk7HKJNUW7js.Badge; exports.BlockNoteEditorContainer = _chunk7HKJNUW7js.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunk7HKJNUW7js.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunk7HKJNUW7js.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunk7HKJNUW7js.BlockNoteViewerContainer; exports.Board = _chunk7HKJNUW7js.KanbanBoard; exports.Breadcrumb = _chunk7HKJNUW7js.Breadcrumb; exports.BreadcrumbEllipsis = _chunk7HKJNUW7js.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunk7HKJNUW7js.BreadcrumbItem; exports.BreadcrumbLink = _chunk7HKJNUW7js.BreadcrumbLink; exports.BreadcrumbList = _chunk7HKJNUW7js.BreadcrumbList; exports.BreadcrumbNavigation = _chunk7HKJNUW7js.BreadcrumbNavigation; exports.BreadcrumbPage = _chunk7HKJNUW7js.BreadcrumbPage; exports.BreadcrumbSeparator = _chunk7HKJNUW7js.BreadcrumbSeparator; exports.Button = _chunk7HKJNUW7js.Button; exports.Calendar = _chunk7HKJNUW7js.Calendar; exports.CalendarDayButton = _chunk7HKJNUW7js.CalendarDayButton; exports.Card = _chunk7HKJNUW7js.Card; exports.CardAction = _chunk7HKJNUW7js.CardAction; exports.CardContent = _chunk7HKJNUW7js.CardContent; exports.CardDescription = _chunk7HKJNUW7js.CardDescription; exports.CardFooter = _chunk7HKJNUW7js.CardFooter; exports.CardHeader = _chunk7HKJNUW7js.CardHeader; exports.CardTitle = _chunk7HKJNUW7js.CardTitle; exports.Carousel = _chunk7HKJNUW7js.Carousel; exports.CarouselContent = _chunk7HKJNUW7js.CarouselContent; exports.CarouselItem = _chunk7HKJNUW7js.CarouselItem; exports.CarouselNext = _chunk7HKJNUW7js.CarouselNext; exports.CarouselPrevious = _chunk7HKJNUW7js.CarouselPrevious; exports.ChartContainer = _chunk7HKJNUW7js.ChartContainer; exports.ChartLegend = _chunk7HKJNUW7js.ChartLegend; exports.ChartLegendContent = _chunk7HKJNUW7js.ChartLegendContent; exports.ChartStyle = _chunk7HKJNUW7js.ChartStyle; exports.ChartTooltip = _chunk7HKJNUW7js.ChartTooltip; exports.ChartTooltipContent = _chunk7HKJNUW7js.ChartTooltipContent; exports.Checkbox = _chunk7HKJNUW7js.Checkbox; exports.Collapsible = _chunk7HKJNUW7js.Collapsible; exports.CollapsibleContent = _chunk7HKJNUW7js.CollapsibleContent; exports.CollapsibleTrigger = _chunk7HKJNUW7js.CollapsibleTrigger; exports.Column = _chunk7HKJNUW7js.KanbanColumn; exports.ColumnHandle = _chunk7HKJNUW7js.KanbanColumnHandle; exports.Combobox = _chunk7HKJNUW7js.Combobox; exports.ComboboxChip = _chunk7HKJNUW7js.ComboboxChip; exports.ComboboxChips = _chunk7HKJNUW7js.ComboboxChips; exports.ComboboxChipsInput = _chunk7HKJNUW7js.ComboboxChipsInput; exports.ComboboxCollection = _chunk7HKJNUW7js.ComboboxCollection; exports.ComboboxContent = _chunk7HKJNUW7js.ComboboxContent; exports.ComboboxEmpty = _chunk7HKJNUW7js.ComboboxEmpty; exports.ComboboxGroup = _chunk7HKJNUW7js.ComboboxGroup; exports.ComboboxInput = _chunk7HKJNUW7js.ComboboxInput; exports.ComboboxItem = _chunk7HKJNUW7js.ComboboxItem; exports.ComboboxLabel = _chunk7HKJNUW7js.ComboboxLabel; exports.ComboboxList = _chunk7HKJNUW7js.ComboboxList; exports.ComboboxSeparator = _chunk7HKJNUW7js.ComboboxSeparator; exports.ComboboxTrigger = _chunk7HKJNUW7js.ComboboxTrigger; exports.ComboboxValue = _chunk7HKJNUW7js.ComboboxValue; exports.Command = _chunk7HKJNUW7js.Command; exports.CommandDialog = _chunk7HKJNUW7js.CommandDialog; exports.CommandEmpty = _chunk7HKJNUW7js.CommandEmpty; exports.CommandGroup = _chunk7HKJNUW7js.CommandGroup; exports.CommandInput = _chunk7HKJNUW7js.CommandInput; exports.CommandItem = _chunk7HKJNUW7js.CommandItem; exports.CommandList = _chunk7HKJNUW7js.CommandList; exports.CommandSeparator = _chunk7HKJNUW7js.CommandSeparator; exports.CommandShortcut = _chunk7HKJNUW7js.CommandShortcut; exports.CommonAddTrigger = _chunk7HKJNUW7js.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunk7HKJNUW7js.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunk7HKJNUW7js.CommonAssociationTrigger; exports.CommonDeleter = _chunk7HKJNUW7js.CommonDeleter; exports.CommonEditorButtons = _chunk7HKJNUW7js.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunk7HKJNUW7js.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunk7HKJNUW7js.CommonEditorHeader; exports.CommonEditorTrigger = _chunk7HKJNUW7js.CommonEditorTrigger; exports.CompaniesList = _chunk7HKJNUW7js.CompaniesList; exports.CompaniesListContainer = _chunk7HKJNUW7js.CompaniesListContainer; exports.CompanyConfigurationEditor = _chunk7HKJNUW7js.CompanyConfigurationEditor; exports.CompanyContainer = _chunk7HKJNUW7js.CompanyContainer; exports.CompanyContent = _chunk7HKJNUW7js.CompanyContent; exports.CompanyDeleter = _chunk7HKJNUW7js.CompanyDeleter; exports.CompanyDetails = _chunk7HKJNUW7js.CompanyDetails; exports.CompanyEditor = _chunk7HKJNUW7js.CompanyEditor; exports.CompanyUsersList = _chunk7HKJNUW7js.CompanyUsersList; exports.ConfirmDialog = _chunk7HKJNUW7js.ConfirmDialog; exports.ContentListGrid = _chunk7HKJNUW7js.ContentListGrid; exports.ContentListTable = _chunk7HKJNUW7js.ContentListTable; exports.ContentTableSearch = _chunk7HKJNUW7js.ContentTableSearch; exports.ContentTitle = _chunk7HKJNUW7js.ContentTitle; exports.ContentsList = _chunk7HKJNUW7js.ContentsList; exports.ContentsListById = _chunk7HKJNUW7js.ContentsListById; exports.ContextMenu = _chunk7HKJNUW7js.ContextMenu; exports.ContextMenuCheckboxItem = _chunk7HKJNUW7js.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunk7HKJNUW7js.ContextMenuContent; exports.ContextMenuGroup = _chunk7HKJNUW7js.ContextMenuGroup; exports.ContextMenuItem = _chunk7HKJNUW7js.ContextMenuItem; exports.ContextMenuLabel = _chunk7HKJNUW7js.ContextMenuLabel; exports.ContextMenuPortal = _chunk7HKJNUW7js.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunk7HKJNUW7js.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunk7HKJNUW7js.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunk7HKJNUW7js.ContextMenuSeparator; exports.ContextMenuShortcut = _chunk7HKJNUW7js.ContextMenuShortcut; exports.ContextMenuSub = _chunk7HKJNUW7js.ContextMenuSub; exports.ContextMenuSubContent = _chunk7HKJNUW7js.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunk7HKJNUW7js.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunk7HKJNUW7js.ContextMenuTrigger; exports.ContributorsList = _chunk7HKJNUW7js.ContributorsList; exports.Cookies = _chunk7HKJNUW7js.Cookies; exports.CurrencyInput = _chunk7HKJNUW7js.CurrencyInput; exports.DatePickerPopover = _chunk7HKJNUW7js.DatePickerPopover; exports.DateRangeSelector = _chunk7HKJNUW7js.DateRangeSelector; exports.DetailField = _chunk7HKJNUW7js.DetailField; exports.Dialog = _chunk7HKJNUW7js.Dialog; exports.DialogClose = _chunk7HKJNUW7js.DialogClose; exports.DialogContent = _chunk7HKJNUW7js.DialogContent; exports.DialogDescription = _chunk7HKJNUW7js.DialogDescription; exports.DialogFooter = _chunk7HKJNUW7js.DialogFooter; exports.DialogHeader = _chunk7HKJNUW7js.DialogHeader; exports.DialogOverlay = _chunk7HKJNUW7js.DialogOverlay; exports.DialogPortal = _chunk7HKJNUW7js.DialogPortal; exports.DialogTitle = _chunk7HKJNUW7js.DialogTitle; exports.DialogTrigger = _chunk7HKJNUW7js.DialogTrigger; exports.DisableTwoFactorDialog = _chunk7HKJNUW7js.DisableTwoFactorDialog; exports.Drawer = _chunk7HKJNUW7js.Drawer; exports.DrawerClose = _chunk7HKJNUW7js.DrawerClose; exports.DrawerContent = _chunk7HKJNUW7js.DrawerContent; exports.DrawerDescription = _chunk7HKJNUW7js.DrawerDescription; exports.DrawerFooter = _chunk7HKJNUW7js.DrawerFooter; exports.DrawerHeader = _chunk7HKJNUW7js.DrawerHeader; exports.DrawerOverlay = _chunk7HKJNUW7js.DrawerOverlay; exports.DrawerPortal = _chunk7HKJNUW7js.DrawerPortal; exports.DrawerTitle = _chunk7HKJNUW7js.DrawerTitle; exports.DrawerTrigger = _chunk7HKJNUW7js.DrawerTrigger; exports.DropdownMenu = _chunk7HKJNUW7js.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunk7HKJNUW7js.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunk7HKJNUW7js.DropdownMenuContent; exports.DropdownMenuGroup = _chunk7HKJNUW7js.DropdownMenuGroup; exports.DropdownMenuItem = _chunk7HKJNUW7js.DropdownMenuItem; exports.DropdownMenuLabel = _chunk7HKJNUW7js.DropdownMenuLabel; exports.DropdownMenuPortal = _chunk7HKJNUW7js.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunk7HKJNUW7js.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunk7HKJNUW7js.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunk7HKJNUW7js.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunk7HKJNUW7js.DropdownMenuShortcut; exports.DropdownMenuSub = _chunk7HKJNUW7js.DropdownMenuSub; exports.DropdownMenuSubContent = _chunk7HKJNUW7js.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunk7HKJNUW7js.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunk7HKJNUW7js.DropdownMenuTrigger; exports.EditableAvatar = _chunk7HKJNUW7js.EditableAvatar; exports.EditorSheet = _chunk7HKJNUW7js.EditorSheet; exports.EmptyState = _chunk7HKJNUW7js.EmptyState; exports.EntityAvatar = _chunk7HKJNUW7js.EntityAvatar; exports.EntityHero = _chunk7HKJNUW7js.EntityHero; exports.EntityHeroAvatar = _chunk7HKJNUW7js.EntityHeroAvatar; exports.EntityHeroLayout = _chunk7HKJNUW7js.EntityHeroLayout; exports.EntityHeroMetaRow = _chunk7HKJNUW7js.EntityHeroMetaRow; exports.EntityMultiSelector = _chunk7HKJNUW7js.EntityMultiSelector; exports.EntitySection = _chunk7HKJNUW7js.EntitySection; exports.EntitySelector = _chunk7HKJNUW7js.EntitySelector; exports.ErrorDetails = _chunk7HKJNUW7js.ErrorDetails; exports.Field = _chunk7HKJNUW7js.Field; exports.FieldContent = _chunk7HKJNUW7js.FieldContent; exports.FieldDescription = _chunk7HKJNUW7js.FieldDescription; exports.FieldError = _chunk7HKJNUW7js.FieldError; exports.FieldGroup = _chunk7HKJNUW7js.FieldGroup; exports.FieldLabel = _chunk7HKJNUW7js.FieldLabel; exports.FieldLegend = _chunk7HKJNUW7js.FieldLegend; exports.FieldSeparator = _chunk7HKJNUW7js.FieldSeparator; exports.FieldSet = _chunk7HKJNUW7js.FieldSet; exports.FieldTitle = _chunk7HKJNUW7js.FieldTitle; exports.FileInput = _chunk7HKJNUW7js.FileInput; exports.FileUploader = _chunk7HKJNUW7js.FileUploader; exports.FileUploaderContent = _chunk7HKJNUW7js.FileUploaderContent; exports.FileUploaderItem = _chunk7HKJNUW7js.FileUploaderItem; exports.FiscalDataDisplay = _chunk7HKJNUW7js.FiscalDataDisplay; exports.ForgotPassword = _chunk7HKJNUW7js.ForgotPassword; exports.Form = _chunk7HKJNUW7js.Form; exports.FormBlockNote = _chunk7HKJNUW7js.FormBlockNote; exports.FormBody = _chunk7HKJNUW7js.FormBody; exports.FormCheckbox = _chunk7HKJNUW7js.FormCheckbox; exports.FormCol = _chunk7HKJNUW7js.FormCol; exports.FormDate = _chunk7HKJNUW7js.FormDate; exports.FormDateTime = _chunk7HKJNUW7js.FormDateTime; exports.FormFeatures = _chunk7HKJNUW7js.FormFeatures; exports.FormFieldWrapper = _chunk7HKJNUW7js.FormFieldWrapper; exports.FormInput = _chunk7HKJNUW7js.FormInput; exports.FormPassword = _chunk7HKJNUW7js.FormPassword; exports.FormPlaceAutocomplete = _chunk7HKJNUW7js.FormPlaceAutocomplete; exports.FormRoles = _chunk7HKJNUW7js.FormRoles; exports.FormRow = _chunk7HKJNUW7js.FormRow; exports.FormSection = _chunk7HKJNUW7js.FormSection; exports.FormSelect = _chunk7HKJNUW7js.FormSelect; exports.FormSlider = _chunk7HKJNUW7js.FormSlider; exports.FormSwitch = _chunk7HKJNUW7js.FormSwitch; exports.FormTextarea = _chunk7HKJNUW7js.FormTextarea; exports.GdprConsentCheckbox = _chunk7HKJNUW7js.GdprConsentCheckbox; exports.GdprConsentSection = _chunk7HKJNUW7js.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunk7HKJNUW7js.HEADER_ROW_MIN_H; exports.Header = _chunk7HKJNUW7js.Header; exports.HoverCard = _chunk7HKJNUW7js.HoverCard; exports.HoverCardContent = _chunk7HKJNUW7js.HoverCardContent; exports.HoverCardTrigger = _chunk7HKJNUW7js.HoverCardTrigger; exports.HowToCommand = _chunk7HKJNUW7js.HowToCommand; exports.HowToCommandViewer = _chunk7HKJNUW7js.HowToCommandViewer; exports.HowToContainer = _chunk7HKJNUW7js.HowToContainer; exports.HowToContent = _chunk7HKJNUW7js.HowToContent; exports.HowToDeleter = _chunk7HKJNUW7js.HowToDeleter; exports.HowToDetails = _chunk7HKJNUW7js.HowToDetails; exports.HowToEditor = _chunk7HKJNUW7js.HowToEditor; exports.HowToList = _chunk7HKJNUW7js.HowToList; exports.HowToListContainer = _chunk7HKJNUW7js.HowToListContainer; exports.HowToMultiSelector = _chunk7HKJNUW7js.HowToMultiSelector; exports.HowToSelector = _chunk7HKJNUW7js.HowToSelector; exports.Input = _chunk7HKJNUW7js.Input; exports.InputGroup = _chunk7HKJNUW7js.InputGroup; exports.InputGroupAddon = _chunk7HKJNUW7js.InputGroupAddon; exports.InputGroupButton = _chunk7HKJNUW7js.InputGroupButton; exports.InputGroupInput = _chunk7HKJNUW7js.InputGroupInput; exports.InputGroupText = _chunk7HKJNUW7js.InputGroupText; exports.InputGroupTextarea = _chunk7HKJNUW7js.InputGroupTextarea; exports.InputOTP = _chunk7HKJNUW7js.InputOTP; exports.InputOTPGroup = _chunk7HKJNUW7js.InputOTPGroup; exports.InputOTPSeparator = _chunk7HKJNUW7js.InputOTPSeparator; exports.InputOTPSlot = _chunk7HKJNUW7js.InputOTPSlot; exports.ItalianFiscalData = _chunk7HKJNUW7js.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunk7HKJNUW7js.ItalianFiscalDataDisplay; exports.Item = _chunk7HKJNUW7js.KanbanItem; exports.ItemHandle = _chunk7HKJNUW7js.KanbanItemHandle; exports.Kanban = _chunk7HKJNUW7js.KanbanRoot; exports.KanbanBoard = _chunk7HKJNUW7js.KanbanBoard; exports.KanbanColumn = _chunk7HKJNUW7js.KanbanColumn; exports.KanbanColumnHandle = _chunk7HKJNUW7js.KanbanColumnHandle; exports.KanbanItem = _chunk7HKJNUW7js.KanbanItem; exports.KanbanItemHandle = _chunk7HKJNUW7js.KanbanItemHandle; exports.KanbanOverlay = _chunk7HKJNUW7js.KanbanOverlay; exports.Label = _chunk7HKJNUW7js.Label; exports.LandingComponent = _chunk7HKJNUW7js.LandingComponent; exports.Link = _chunk7HKJNUW7js.Link; exports.Login = _chunk7HKJNUW7js.Login; exports.Logout = _chunk7HKJNUW7js.Logout; exports.MessageItem = _chunk7HKJNUW7js.MessageItem; exports.MessageList = _chunk7HKJNUW7js.MessageList; exports.MessageSourcesPanel = _chunk7HKJNUW7js.MessageSourcesPanel; exports.MicroLabel = _chunk7HKJNUW7js.MicroLabel; exports.MobileNavigationBar = _chunk7HKJNUW7js.MobileNavigationBar; exports.ModeToggleSwitch = _chunk7HKJNUW7js.ModeToggleSwitch; exports.MultiSelect = _chunk7HKJNUW7js.MultiSelect; exports.MultipleSelector = _chunk7HKJNUW7js.MultipleSelector; exports.NavigationMenu = _chunk7HKJNUW7js.NavigationMenu; exports.NavigationMenuContent = _chunk7HKJNUW7js.NavigationMenuContent; exports.NavigationMenuIndicator = _chunk7HKJNUW7js.NavigationMenuIndicator; exports.NavigationMenuItem = _chunk7HKJNUW7js.NavigationMenuItem; exports.NavigationMenuLink = _chunk7HKJNUW7js.NavigationMenuLink; exports.NavigationMenuList = _chunk7HKJNUW7js.NavigationMenuList; exports.NavigationMenuPositioner = _chunk7HKJNUW7js.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunk7HKJNUW7js.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunk7HKJNUW7js.NotificationErrorBoundary; exports.NotificationMenuItem = _chunk7HKJNUW7js.NotificationMenuItem; exports.NotificationModal = _chunk7HKJNUW7js.NotificationModal; exports.NotificationToast = _chunk7HKJNUW7js.NotificationToast; exports.NotificationsList = _chunk7HKJNUW7js.NotificationsList; exports.NotificationsListContainer = _chunk7HKJNUW7js.NotificationsListContainer; exports.OAuthClientCard = _chunk7HKJNUW7js.OAuthClientCard; exports.OAuthClientDetail = _chunk7HKJNUW7js.OAuthClientDetail; exports.OAuthClientForm = _chunk7HKJNUW7js.OAuthClientForm; exports.OAuthClientList = _chunk7HKJNUW7js.OAuthClientList; exports.OAuthClientSecretDisplay = _chunk7HKJNUW7js.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunk7HKJNUW7js.OAuthConsentActions; exports.OAuthConsentHeader = _chunk7HKJNUW7js.OAuthConsentHeader; exports.OAuthConsentScreen = _chunk7HKJNUW7js.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunk7HKJNUW7js.OAuthRedirectUriInput; exports.OAuthScopeList = _chunk7HKJNUW7js.OAuthScopeList; exports.OAuthScopeSelector = _chunk7HKJNUW7js.OAuthScopeSelector; exports.OnboardingCard = _chunk7HKJNUW7js.OnboardingCard; exports.Overlay = _chunk7HKJNUW7js.KanbanOverlay; exports.PageContainer = _chunk7HKJNUW7js.PageContainer; exports.PageContainerContentDetails = _chunk7HKJNUW7js.PageContainerContentDetails; exports.PageContentContainer = _chunk7HKJNUW7js.PageContentContainer; exports.PageSection = _chunk7HKJNUW7js.PageSection; exports.PasskeyButton = _chunk7HKJNUW7js.PasskeyButton; exports.PasskeyList = _chunk7HKJNUW7js.PasskeyList; exports.PasskeySetupDialog = _chunk7HKJNUW7js.PasskeySetupDialog; exports.PasswordInput = _chunk7HKJNUW7js.PasswordInput; exports.PlatformUsersContainer = _chunk7HKJNUW7js.PlatformUsersContainer; exports.PlatformUsersList = _chunk7HKJNUW7js.PlatformUsersList; exports.Popover = _chunk7HKJNUW7js.Popover; exports.PopoverContent = _chunk7HKJNUW7js.PopoverContent; exports.PopoverDescription = _chunk7HKJNUW7js.PopoverDescription; exports.PopoverHeader = _chunk7HKJNUW7js.PopoverHeader; exports.PopoverTitle = _chunk7HKJNUW7js.PopoverTitle; exports.PopoverTrigger = _chunk7HKJNUW7js.PopoverTrigger; exports.Progress = _chunk7HKJNUW7js.Progress; exports.ProgressIndicator = _chunk7HKJNUW7js.ProgressIndicator; exports.ProgressLabel = _chunk7HKJNUW7js.ProgressLabel; exports.ProgressTrack = _chunk7HKJNUW7js.ProgressTrack; exports.ProgressValue = _chunk7HKJNUW7js.ProgressValue; exports.PushNotificationProvider = _chunk7HKJNUW7js.PushNotificationProvider; exports.RadioGroup = _chunk7HKJNUW7js.RadioGroup; exports.RadioGroupItem = _chunk7HKJNUW7js.RadioGroupItem; exports.RbacByRoleContainer = _chunk7HKJNUW7js.RbacByRoleContainer; exports.RbacContainer = _chunk7HKJNUW7js.RbacContainer; exports.RbacPermissionCell = _chunk7HKJNUW7js.RbacPermissionCell; exports.RbacPermissionPicker = _chunk7HKJNUW7js.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunk7HKJNUW7js.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunk7HKJNUW7js.RecentPagesNavigator; exports.ReferralCodeCapture = _chunk7HKJNUW7js.ReferralCodeCapture; exports.ReferralDialog = _chunk7HKJNUW7js.ReferralDialog; exports.ReferralWidget = _chunk7HKJNUW7js.ReferralWidget; exports.RefreshUser = _chunk7HKJNUW7js.RefreshUser; exports.RelevantContentsList = _chunk7HKJNUW7js.RelevantContentsList; exports.RelevantUsersList = _chunk7HKJNUW7js.RelevantUsersList; exports.RemoveUserFromRole = _chunk7HKJNUW7js.RemoveUserFromRole; exports.ResetPassword = _chunk7HKJNUW7js.ResetPassword; exports.ResizableHandle = _chunk7HKJNUW7js.ResizableHandle; exports.ResizablePanel = _chunk7HKJNUW7js.ResizablePanel; exports.ResizablePanelGroup = _chunk7HKJNUW7js.ResizablePanelGroup; exports.RoleContainer = _chunk7HKJNUW7js.RoleContainer; exports.RoleDetails = _chunk7HKJNUW7js.RoleDetails; exports.RoleUsersList = _chunk7HKJNUW7js.RoleUsersList; exports.RolesList = _chunk7HKJNUW7js.RolesList; exports.Root = _chunk7HKJNUW7js.KanbanRoot; exports.RoundPageContainer = _chunk7HKJNUW7js.RoundPageContainer; exports.RoundPageContainerTitle = _chunk7HKJNUW7js.RoundPageContainerTitle; exports.ScrollArea = _chunk7HKJNUW7js.ScrollArea; exports.ScrollBar = _chunk7HKJNUW7js.ScrollBar; exports.SectionHeader = _chunk7HKJNUW7js.SectionHeader; exports.SecurityContainer = _chunk7HKJNUW7js.SecurityContainer; exports.Select = _chunk7HKJNUW7js.Select; exports.SelectContent = _chunk7HKJNUW7js.SelectContent; exports.SelectGroup = _chunk7HKJNUW7js.SelectGroup; exports.SelectItem = _chunk7HKJNUW7js.SelectItem; exports.SelectLabel = _chunk7HKJNUW7js.SelectLabel; exports.SelectScrollDownButton = _chunk7HKJNUW7js.SelectScrollDownButton; exports.SelectScrollUpButton = _chunk7HKJNUW7js.SelectScrollUpButton; exports.SelectSeparator = _chunk7HKJNUW7js.SelectSeparator; exports.SelectTrigger = _chunk7HKJNUW7js.SelectTrigger; exports.SelectValue = _chunk7HKJNUW7js.SelectValue; exports.Separator = _chunk7HKJNUW7js.Separator; exports.Sheet = _chunk7HKJNUW7js.Sheet; exports.SheetClose = _chunk7HKJNUW7js.SheetClose; exports.SheetContent = _chunk7HKJNUW7js.SheetContent; exports.SheetDescription = _chunk7HKJNUW7js.SheetDescription; exports.SheetFooter = _chunk7HKJNUW7js.SheetFooter; exports.SheetHeader = _chunk7HKJNUW7js.SheetHeader; exports.SheetTitle = _chunk7HKJNUW7js.SheetTitle; exports.SheetTrigger = _chunk7HKJNUW7js.SheetTrigger; exports.Sidebar = _chunk7HKJNUW7js.Sidebar; exports.SidebarContent = _chunk7HKJNUW7js.SidebarContent; exports.SidebarFooter = _chunk7HKJNUW7js.SidebarFooter; exports.SidebarGroup = _chunk7HKJNUW7js.SidebarGroup; exports.SidebarGroupAction = _chunk7HKJNUW7js.SidebarGroupAction; exports.SidebarGroupContent = _chunk7HKJNUW7js.SidebarGroupContent; exports.SidebarGroupLabel = _chunk7HKJNUW7js.SidebarGroupLabel; exports.SidebarHeader = _chunk7HKJNUW7js.SidebarHeader; exports.SidebarInput = _chunk7HKJNUW7js.SidebarInput; exports.SidebarInset = _chunk7HKJNUW7js.SidebarInset; exports.SidebarMenu = _chunk7HKJNUW7js.SidebarMenu; exports.SidebarMenuAction = _chunk7HKJNUW7js.SidebarMenuAction; exports.SidebarMenuBadge = _chunk7HKJNUW7js.SidebarMenuBadge; exports.SidebarMenuButton = _chunk7HKJNUW7js.SidebarMenuButton; exports.SidebarMenuItem = _chunk7HKJNUW7js.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunk7HKJNUW7js.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunk7HKJNUW7js.SidebarMenuSub; exports.SidebarMenuSubButton = _chunk7HKJNUW7js.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunk7HKJNUW7js.SidebarMenuSubItem; exports.SidebarProvider = _chunk7HKJNUW7js.SidebarProvider; exports.SidebarRail = _chunk7HKJNUW7js.SidebarRail; exports.SidebarSeparator = _chunk7HKJNUW7js.SidebarSeparator; exports.SidebarTrigger = _chunk7HKJNUW7js.SidebarTrigger; exports.Skeleton = _chunk7HKJNUW7js.Skeleton; exports.Slider = _chunk7HKJNUW7js.Slider; exports.Spinner = _chunk7HKJNUW7js.Spinner; exports.Switch = _chunk7HKJNUW7js.Switch; exports.Table = _chunk7HKJNUW7js.Table; exports.TableBody = _chunk7HKJNUW7js.TableBody; exports.TableCaption = _chunk7HKJNUW7js.TableCaption; exports.TableCell = _chunk7HKJNUW7js.TableCell; exports.TableCellAvatar = _chunk7HKJNUW7js.TableCellAvatar; exports.TableFooter = _chunk7HKJNUW7js.TableFooter; exports.TableHead = _chunk7HKJNUW7js.TableHead; exports.TableHeader = _chunk7HKJNUW7js.TableHeader; exports.TableRow = _chunk7HKJNUW7js.TableRow; exports.Tabs = _chunk7HKJNUW7js.Tabs; exports.TabsContainer = _chunk7HKJNUW7js.TabsContainer; exports.TabsContent = _chunk7HKJNUW7js.TabsContent; exports.TabsList = _chunk7HKJNUW7js.TabsList; exports.TabsTrigger = _chunk7HKJNUW7js.TabsTrigger; exports.Textarea = _chunk7HKJNUW7js.Textarea; exports.Toaster = _chunk7HKJNUW7js.Toaster; exports.Toggle = _chunk7HKJNUW7js.Toggle; exports.TokenStatusIndicator = _chunk7HKJNUW7js.TokenStatusIndicator; exports.Tooltip = _chunk7HKJNUW7js.Tooltip; exports.TooltipContent = _chunk7HKJNUW7js.TooltipContent; exports.TooltipProvider = _chunk7HKJNUW7js.TooltipProvider; exports.TooltipTrigger = _chunk7HKJNUW7js.TooltipTrigger; exports.TotpAuthenticatorList = _chunk7HKJNUW7js.TotpAuthenticatorList; exports.TotpInput = _chunk7HKJNUW7js.TotpInput; exports.TotpSetupDialog = _chunk7HKJNUW7js.TotpSetupDialog; exports.TwoFactorChallenge = _chunk7HKJNUW7js.TwoFactorChallenge; exports.TwoFactorSettings = _chunk7HKJNUW7js.TwoFactorSettings; exports.UserAvatar = _chunk7HKJNUW7js.UserAvatar; exports.UserAvatarEditor = _chunk7HKJNUW7js.UserAvatarEditor; exports.UserAvatarList = _chunk7HKJNUW7js.UserAvatarList; exports.UserContainer = _chunk7HKJNUW7js.UserContainer; exports.UserContent = _chunk7HKJNUW7js.UserContent; exports.UserDeleter = _chunk7HKJNUW7js.UserDeleter; exports.UserEditor = _chunk7HKJNUW7js.UserEditor; exports.UserIndexContainer = _chunk7HKJNUW7js.UserIndexContainer; exports.UserIndexDetails = _chunk7HKJNUW7js.UserIndexDetails; exports.UserListInAdd = _chunk7HKJNUW7js.UserListInAdd; exports.UserMultiSelect = _chunk7HKJNUW7js.UserMultiSelect; exports.UserReactivator = _chunk7HKJNUW7js.UserReactivator; exports.UserResentInvitationEmail = _chunk7HKJNUW7js.UserResentInvitationEmail; exports.UserRoleAdd = _chunk7HKJNUW7js.UserRoleAdd; exports.UserRolesList = _chunk7HKJNUW7js.UserRolesList; exports.UserSearchPopover = _chunk7HKJNUW7js.UserSearchPopover; exports.UserSelector = _chunk7HKJNUW7js.UserSelector; exports.UserStanadaloneDetails = _chunk7HKJNUW7js.UserStanadaloneDetails; exports.UsersList = _chunk7HKJNUW7js.UsersList; exports.UsersListByContentIds = _chunk7HKJNUW7js.UsersListByContentIds; exports.UsersListContainer = _chunk7HKJNUW7js.UsersListContainer; exports.WaitlistConfirmation = _chunk7HKJNUW7js.WaitlistConfirmation; exports.WaitlistForm = _chunk7HKJNUW7js.WaitlistForm; exports.WaitlistHeroSection = _chunk7HKJNUW7js.WaitlistHeroSection; exports.WaitlistList = _chunk7HKJNUW7js.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunk7HKJNUW7js.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunk7HKJNUW7js.WaitlistSuccessState; exports.badgeVariants = _chunk7HKJNUW7js.badgeVariants; exports.buttonVariants = _chunk7HKJNUW7js.buttonVariants; exports.cellComponent = _chunk7HKJNUW7js.cellComponent; exports.cellDate = _chunk7HKJNUW7js.cellDate; exports.cellDateTime = _chunk7HKJNUW7js.cellDateTime; exports.cellId = _chunk7HKJNUW7js.cellId; exports.cellLink = _chunk7HKJNUW7js.cellLink; exports.cellUrl = _chunk7HKJNUW7js.cellUrl; exports.createMentionInlineContentSpec = _chunk7HKJNUW7js.createMentionInlineContentSpec; exports.errorToast = _chunk7HKJNUW7js.errorToast; exports.generateNotificationData = _chunk7HKJNUW7js.generateNotificationData; exports.getIcon = _chunkRTOC53EZjs.getIcon; exports.getIconByModule = _chunkRTOC53EZjs.getIconByModule; exports.getIconByModuleName = _chunkRTOC53EZjs.getIconByModuleName; exports.getInitials = _chunkRTOC53EZjs.getInitials; exports.mentionDataAttrs = _chunk7HKJNUW7js.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunk7HKJNUW7js.navigationMenuTriggerStyle; exports.parseFiscalData = _chunk7HKJNUW7js.parseFiscalData; exports.parseMentionElement = _chunk7HKJNUW7js.parseMentionElement; exports.partitionTabs = _chunk7HKJNUW7js.partitionTabs; exports.spinnerVariants = _chunk7HKJNUW7js.spinnerVariants; exports.tabsListVariants = _chunk7HKJNUW7js.tabsListVariants; exports.toggleVariants = _chunk7HKJNUW7js.toggleVariants; exports.triggerAssociationToast = _chunk7HKJNUW7js.triggerAssociationToast; exports.useCarousel = _chunk7HKJNUW7js.useCarousel; exports.useComboboxAnchor = _chunk7HKJNUW7js.useComboboxAnchor; exports.useDebounce = _chunk7HKJNUW7js.useDebounce2; exports.useEditorDialog = _chunk7HKJNUW7js.useEditorDialog; exports.useFileUpload = _chunk7HKJNUW7js.useFileUpload; exports.useMentionInsert = _chunk7HKJNUW7js.useMentionInsert; exports.useSidebar = _chunk7HKJNUW7js.useSidebar;
|
|
1006
|
+
exports.ADMINISTRATION_I18N_KEYS = _chunk5GVBUTS4js.ADMINISTRATION_I18N_KEYS; exports.AcceptInvitation = _chunk5GVBUTS4js.AcceptInvitation; exports.Accordion = _chunk5GVBUTS4js.Accordion; exports.AccordionContent = _chunk5GVBUTS4js.AccordionContent; exports.AccordionItem = _chunk5GVBUTS4js.AccordionItem; exports.AccordionTrigger = _chunk5GVBUTS4js.AccordionTrigger; exports.ActivateAccount = _chunk5GVBUTS4js.ActivateAccount; exports.AddUserToRole = _chunk5GVBUTS4js.AddUserToRole; exports.AdminCompanyContainer = _chunk5GVBUTS4js.AdminCompanyContainer; exports.AdminIndexContainer = _chunk5GVBUTS4js.AdminIndexContainer; exports.AdminIndexGrid = _chunk5GVBUTS4js.AdminIndexGrid; exports.AdminUsersList = _chunk5GVBUTS4js.AdminUsersList; exports.Alert = _chunk5GVBUTS4js.Alert; exports.AlertAction = _chunk5GVBUTS4js.AlertAction; exports.AlertDescription = _chunk5GVBUTS4js.AlertDescription; exports.AlertDialog = _chunk5GVBUTS4js.AlertDialog; exports.AlertDialogAction = _chunk5GVBUTS4js.AlertDialogAction; exports.AlertDialogCancel = _chunk5GVBUTS4js.AlertDialogCancel; exports.AlertDialogContent = _chunk5GVBUTS4js.AlertDialogContent; exports.AlertDialogDescription = _chunk5GVBUTS4js.AlertDialogDescription; exports.AlertDialogFooter = _chunk5GVBUTS4js.AlertDialogFooter; exports.AlertDialogHeader = _chunk5GVBUTS4js.AlertDialogHeader; exports.AlertDialogMedia = _chunk5GVBUTS4js.AlertDialogMedia; exports.AlertDialogOverlay = _chunk5GVBUTS4js.AlertDialogOverlay; exports.AlertDialogPortal = _chunk5GVBUTS4js.AlertDialogPortal; exports.AlertDialogTitle = _chunk5GVBUTS4js.AlertDialogTitle; exports.AlertDialogTrigger = _chunk5GVBUTS4js.AlertDialogTrigger; exports.AlertTitle = _chunk5GVBUTS4js.AlertTitle; exports.AllUsersListContainer = _chunk5GVBUTS4js.AllUsersListContainer; exports.AllowedUsersDetails = _chunk5GVBUTS4js.AllowedUsersDetails; exports.ApprovalActionCard = _chunk5GVBUTS4js.ApprovalActionCard; exports.AssistantBlockNoteComposer = _chunk5GVBUTS4js.AssistantBlockNoteComposer; exports.AssistantContainer = _chunk5GVBUTS4js.AssistantContainer; exports.AssistantContainerWithApprovals = _chunk5GVBUTS4js.AssistantContainerWithApprovals; exports.AssistantPageContainer = _chunk5GVBUTS4js.AssistantPageContainer; exports.AttributeElement = _chunk5GVBUTS4js.AttributeElement; exports.AuthContainer = _chunk5GVBUTS4js.AuthContainer; exports.Avatar = _chunk5GVBUTS4js.Avatar; exports.AvatarBadge = _chunk5GVBUTS4js.AvatarBadge; exports.AvatarFallback = _chunk5GVBUTS4js.AvatarFallback; exports.AvatarGroup = _chunk5GVBUTS4js.AvatarGroup; exports.AvatarGroupCount = _chunk5GVBUTS4js.AvatarGroupCount; exports.AvatarImage = _chunk5GVBUTS4js.AvatarImage; exports.BackupCodesDialog = _chunk5GVBUTS4js.BackupCodesDialog; exports.Badge = _chunk5GVBUTS4js.Badge; exports.BlockNoteEditorContainer = _chunk5GVBUTS4js.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunk5GVBUTS4js.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunk5GVBUTS4js.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunk5GVBUTS4js.BlockNoteViewerContainer; exports.Board = _chunk5GVBUTS4js.KanbanBoard; exports.Breadcrumb = _chunk5GVBUTS4js.Breadcrumb; exports.BreadcrumbEllipsis = _chunk5GVBUTS4js.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunk5GVBUTS4js.BreadcrumbItem; exports.BreadcrumbLink = _chunk5GVBUTS4js.BreadcrumbLink; exports.BreadcrumbList = _chunk5GVBUTS4js.BreadcrumbList; exports.BreadcrumbNavigation = _chunk5GVBUTS4js.BreadcrumbNavigation; exports.BreadcrumbPage = _chunk5GVBUTS4js.BreadcrumbPage; exports.BreadcrumbSeparator = _chunk5GVBUTS4js.BreadcrumbSeparator; exports.Button = _chunk5GVBUTS4js.Button; exports.Calendar = _chunk5GVBUTS4js.Calendar; exports.CalendarDayButton = _chunk5GVBUTS4js.CalendarDayButton; exports.Card = _chunk5GVBUTS4js.Card; exports.CardAction = _chunk5GVBUTS4js.CardAction; exports.CardContent = _chunk5GVBUTS4js.CardContent; exports.CardDescription = _chunk5GVBUTS4js.CardDescription; exports.CardFooter = _chunk5GVBUTS4js.CardFooter; exports.CardHeader = _chunk5GVBUTS4js.CardHeader; exports.CardTitle = _chunk5GVBUTS4js.CardTitle; exports.Carousel = _chunk5GVBUTS4js.Carousel; exports.CarouselContent = _chunk5GVBUTS4js.CarouselContent; exports.CarouselItem = _chunk5GVBUTS4js.CarouselItem; exports.CarouselNext = _chunk5GVBUTS4js.CarouselNext; exports.CarouselPrevious = _chunk5GVBUTS4js.CarouselPrevious; exports.ChartContainer = _chunk5GVBUTS4js.ChartContainer; exports.ChartLegend = _chunk5GVBUTS4js.ChartLegend; exports.ChartLegendContent = _chunk5GVBUTS4js.ChartLegendContent; exports.ChartStyle = _chunk5GVBUTS4js.ChartStyle; exports.ChartTooltip = _chunk5GVBUTS4js.ChartTooltip; exports.ChartTooltipContent = _chunk5GVBUTS4js.ChartTooltipContent; exports.Checkbox = _chunk5GVBUTS4js.Checkbox; exports.Collapsible = _chunk5GVBUTS4js.Collapsible; exports.CollapsibleContent = _chunk5GVBUTS4js.CollapsibleContent; exports.CollapsibleTrigger = _chunk5GVBUTS4js.CollapsibleTrigger; exports.Column = _chunk5GVBUTS4js.KanbanColumn; exports.ColumnHandle = _chunk5GVBUTS4js.KanbanColumnHandle; exports.Combobox = _chunk5GVBUTS4js.Combobox; exports.ComboboxChip = _chunk5GVBUTS4js.ComboboxChip; exports.ComboboxChips = _chunk5GVBUTS4js.ComboboxChips; exports.ComboboxChipsInput = _chunk5GVBUTS4js.ComboboxChipsInput; exports.ComboboxCollection = _chunk5GVBUTS4js.ComboboxCollection; exports.ComboboxContent = _chunk5GVBUTS4js.ComboboxContent; exports.ComboboxEmpty = _chunk5GVBUTS4js.ComboboxEmpty; exports.ComboboxGroup = _chunk5GVBUTS4js.ComboboxGroup; exports.ComboboxInput = _chunk5GVBUTS4js.ComboboxInput; exports.ComboboxItem = _chunk5GVBUTS4js.ComboboxItem; exports.ComboboxLabel = _chunk5GVBUTS4js.ComboboxLabel; exports.ComboboxList = _chunk5GVBUTS4js.ComboboxList; exports.ComboboxSeparator = _chunk5GVBUTS4js.ComboboxSeparator; exports.ComboboxTrigger = _chunk5GVBUTS4js.ComboboxTrigger; exports.ComboboxValue = _chunk5GVBUTS4js.ComboboxValue; exports.Command = _chunk5GVBUTS4js.Command; exports.CommandDialog = _chunk5GVBUTS4js.CommandDialog; exports.CommandEmpty = _chunk5GVBUTS4js.CommandEmpty; exports.CommandGroup = _chunk5GVBUTS4js.CommandGroup; exports.CommandInput = _chunk5GVBUTS4js.CommandInput; exports.CommandItem = _chunk5GVBUTS4js.CommandItem; exports.CommandList = _chunk5GVBUTS4js.CommandList; exports.CommandSeparator = _chunk5GVBUTS4js.CommandSeparator; exports.CommandShortcut = _chunk5GVBUTS4js.CommandShortcut; exports.CommonAddTrigger = _chunk5GVBUTS4js.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunk5GVBUTS4js.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunk5GVBUTS4js.CommonAssociationTrigger; exports.CommonDeleter = _chunk5GVBUTS4js.CommonDeleter; exports.CommonEditorButtons = _chunk5GVBUTS4js.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunk5GVBUTS4js.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunk5GVBUTS4js.CommonEditorHeader; exports.CommonEditorTrigger = _chunk5GVBUTS4js.CommonEditorTrigger; exports.CompaniesList = _chunk5GVBUTS4js.CompaniesList; exports.CompaniesListContainer = _chunk5GVBUTS4js.CompaniesListContainer; exports.CompanyConfigurationEditor = _chunk5GVBUTS4js.CompanyConfigurationEditor; exports.CompanyContainer = _chunk5GVBUTS4js.CompanyContainer; exports.CompanyContent = _chunk5GVBUTS4js.CompanyContent; exports.CompanyDeleter = _chunk5GVBUTS4js.CompanyDeleter; exports.CompanyDetails = _chunk5GVBUTS4js.CompanyDetails; exports.CompanyEditor = _chunk5GVBUTS4js.CompanyEditor; exports.CompanyUsersList = _chunk5GVBUTS4js.CompanyUsersList; exports.ConfirmDialog = _chunk5GVBUTS4js.ConfirmDialog; exports.ContentListGrid = _chunk5GVBUTS4js.ContentListGrid; exports.ContentListTable = _chunk5GVBUTS4js.ContentListTable; exports.ContentTableSearch = _chunk5GVBUTS4js.ContentTableSearch; exports.ContentTitle = _chunk5GVBUTS4js.ContentTitle; exports.ContentsList = _chunk5GVBUTS4js.ContentsList; exports.ContentsListById = _chunk5GVBUTS4js.ContentsListById; exports.ContextMenu = _chunk5GVBUTS4js.ContextMenu; exports.ContextMenuCheckboxItem = _chunk5GVBUTS4js.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunk5GVBUTS4js.ContextMenuContent; exports.ContextMenuGroup = _chunk5GVBUTS4js.ContextMenuGroup; exports.ContextMenuItem = _chunk5GVBUTS4js.ContextMenuItem; exports.ContextMenuLabel = _chunk5GVBUTS4js.ContextMenuLabel; exports.ContextMenuPortal = _chunk5GVBUTS4js.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunk5GVBUTS4js.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunk5GVBUTS4js.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunk5GVBUTS4js.ContextMenuSeparator; exports.ContextMenuShortcut = _chunk5GVBUTS4js.ContextMenuShortcut; exports.ContextMenuSub = _chunk5GVBUTS4js.ContextMenuSub; exports.ContextMenuSubContent = _chunk5GVBUTS4js.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunk5GVBUTS4js.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunk5GVBUTS4js.ContextMenuTrigger; exports.ContributorsList = _chunk5GVBUTS4js.ContributorsList; exports.Cookies = _chunk5GVBUTS4js.Cookies; exports.CurrencyInput = _chunk5GVBUTS4js.CurrencyInput; exports.DatePickerPopover = _chunk5GVBUTS4js.DatePickerPopover; exports.DateRangeSelector = _chunk5GVBUTS4js.DateRangeSelector; exports.DetailField = _chunk5GVBUTS4js.DetailField; exports.Dialog = _chunk5GVBUTS4js.Dialog; exports.DialogClose = _chunk5GVBUTS4js.DialogClose; exports.DialogContent = _chunk5GVBUTS4js.DialogContent; exports.DialogDescription = _chunk5GVBUTS4js.DialogDescription; exports.DialogFooter = _chunk5GVBUTS4js.DialogFooter; exports.DialogHeader = _chunk5GVBUTS4js.DialogHeader; exports.DialogOverlay = _chunk5GVBUTS4js.DialogOverlay; exports.DialogPortal = _chunk5GVBUTS4js.DialogPortal; exports.DialogTitle = _chunk5GVBUTS4js.DialogTitle; exports.DialogTrigger = _chunk5GVBUTS4js.DialogTrigger; exports.DisableTwoFactorDialog = _chunk5GVBUTS4js.DisableTwoFactorDialog; exports.Drawer = _chunk5GVBUTS4js.Drawer; exports.DrawerClose = _chunk5GVBUTS4js.DrawerClose; exports.DrawerContent = _chunk5GVBUTS4js.DrawerContent; exports.DrawerDescription = _chunk5GVBUTS4js.DrawerDescription; exports.DrawerFooter = _chunk5GVBUTS4js.DrawerFooter; exports.DrawerHeader = _chunk5GVBUTS4js.DrawerHeader; exports.DrawerOverlay = _chunk5GVBUTS4js.DrawerOverlay; exports.DrawerPortal = _chunk5GVBUTS4js.DrawerPortal; exports.DrawerTitle = _chunk5GVBUTS4js.DrawerTitle; exports.DrawerTrigger = _chunk5GVBUTS4js.DrawerTrigger; exports.DropdownMenu = _chunk5GVBUTS4js.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunk5GVBUTS4js.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunk5GVBUTS4js.DropdownMenuContent; exports.DropdownMenuGroup = _chunk5GVBUTS4js.DropdownMenuGroup; exports.DropdownMenuItem = _chunk5GVBUTS4js.DropdownMenuItem; exports.DropdownMenuLabel = _chunk5GVBUTS4js.DropdownMenuLabel; exports.DropdownMenuPortal = _chunk5GVBUTS4js.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunk5GVBUTS4js.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunk5GVBUTS4js.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunk5GVBUTS4js.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunk5GVBUTS4js.DropdownMenuShortcut; exports.DropdownMenuSub = _chunk5GVBUTS4js.DropdownMenuSub; exports.DropdownMenuSubContent = _chunk5GVBUTS4js.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunk5GVBUTS4js.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunk5GVBUTS4js.DropdownMenuTrigger; exports.EditableAvatar = _chunk5GVBUTS4js.EditableAvatar; exports.EditorSheet = _chunk5GVBUTS4js.EditorSheet; exports.EmptyState = _chunk5GVBUTS4js.EmptyState; exports.EntityAvatar = _chunk5GVBUTS4js.EntityAvatar; exports.EntityHero = _chunk5GVBUTS4js.EntityHero; exports.EntityHeroAvatar = _chunk5GVBUTS4js.EntityHeroAvatar; exports.EntityHeroLayout = _chunk5GVBUTS4js.EntityHeroLayout; exports.EntityHeroMetaRow = _chunk5GVBUTS4js.EntityHeroMetaRow; exports.EntityMultiSelector = _chunk5GVBUTS4js.EntityMultiSelector; exports.EntitySection = _chunk5GVBUTS4js.EntitySection; exports.EntitySelector = _chunk5GVBUTS4js.EntitySelector; exports.ErrorDetails = _chunk5GVBUTS4js.ErrorDetails; exports.Field = _chunk5GVBUTS4js.Field; exports.FieldContent = _chunk5GVBUTS4js.FieldContent; exports.FieldDescription = _chunk5GVBUTS4js.FieldDescription; exports.FieldError = _chunk5GVBUTS4js.FieldError; exports.FieldGroup = _chunk5GVBUTS4js.FieldGroup; exports.FieldLabel = _chunk5GVBUTS4js.FieldLabel; exports.FieldLegend = _chunk5GVBUTS4js.FieldLegend; exports.FieldSeparator = _chunk5GVBUTS4js.FieldSeparator; exports.FieldSet = _chunk5GVBUTS4js.FieldSet; exports.FieldTitle = _chunk5GVBUTS4js.FieldTitle; exports.FileInput = _chunk5GVBUTS4js.FileInput; exports.FileUploader = _chunk5GVBUTS4js.FileUploader; exports.FileUploaderContent = _chunk5GVBUTS4js.FileUploaderContent; exports.FileUploaderItem = _chunk5GVBUTS4js.FileUploaderItem; exports.FiscalDataDisplay = _chunk5GVBUTS4js.FiscalDataDisplay; exports.ForgotPassword = _chunk5GVBUTS4js.ForgotPassword; exports.Form = _chunk5GVBUTS4js.Form; exports.FormBlockNote = _chunk5GVBUTS4js.FormBlockNote; exports.FormBody = _chunk5GVBUTS4js.FormBody; exports.FormCheckbox = _chunk5GVBUTS4js.FormCheckbox; exports.FormCol = _chunk5GVBUTS4js.FormCol; exports.FormDate = _chunk5GVBUTS4js.FormDate; exports.FormDateTime = _chunk5GVBUTS4js.FormDateTime; exports.FormFeatures = _chunk5GVBUTS4js.FormFeatures; exports.FormFieldWrapper = _chunk5GVBUTS4js.FormFieldWrapper; exports.FormInput = _chunk5GVBUTS4js.FormInput; exports.FormPassword = _chunk5GVBUTS4js.FormPassword; exports.FormPlaceAutocomplete = _chunk5GVBUTS4js.FormPlaceAutocomplete; exports.FormRoles = _chunk5GVBUTS4js.FormRoles; exports.FormRow = _chunk5GVBUTS4js.FormRow; exports.FormSection = _chunk5GVBUTS4js.FormSection; exports.FormSelect = _chunk5GVBUTS4js.FormSelect; exports.FormSlider = _chunk5GVBUTS4js.FormSlider; exports.FormSwitch = _chunk5GVBUTS4js.FormSwitch; exports.FormTextarea = _chunk5GVBUTS4js.FormTextarea; exports.GdprConsentCheckbox = _chunk5GVBUTS4js.GdprConsentCheckbox; exports.GdprConsentSection = _chunk5GVBUTS4js.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunk5GVBUTS4js.HEADER_ROW_MIN_H; exports.Header = _chunk5GVBUTS4js.Header; exports.HoverCard = _chunk5GVBUTS4js.HoverCard; exports.HoverCardContent = _chunk5GVBUTS4js.HoverCardContent; exports.HoverCardTrigger = _chunk5GVBUTS4js.HoverCardTrigger; exports.HowToCommand = _chunk5GVBUTS4js.HowToCommand; exports.HowToCommandViewer = _chunk5GVBUTS4js.HowToCommandViewer; exports.HowToContainer = _chunk5GVBUTS4js.HowToContainer; exports.HowToContent = _chunk5GVBUTS4js.HowToContent; exports.HowToDeleter = _chunk5GVBUTS4js.HowToDeleter; exports.HowToDetails = _chunk5GVBUTS4js.HowToDetails; exports.HowToEditor = _chunk5GVBUTS4js.HowToEditor; exports.HowToList = _chunk5GVBUTS4js.HowToList; exports.HowToListContainer = _chunk5GVBUTS4js.HowToListContainer; exports.HowToMultiSelector = _chunk5GVBUTS4js.HowToMultiSelector; exports.HowToSelector = _chunk5GVBUTS4js.HowToSelector; exports.Input = _chunk5GVBUTS4js.Input; exports.InputGroup = _chunk5GVBUTS4js.InputGroup; exports.InputGroupAddon = _chunk5GVBUTS4js.InputGroupAddon; exports.InputGroupButton = _chunk5GVBUTS4js.InputGroupButton; exports.InputGroupInput = _chunk5GVBUTS4js.InputGroupInput; exports.InputGroupText = _chunk5GVBUTS4js.InputGroupText; exports.InputGroupTextarea = _chunk5GVBUTS4js.InputGroupTextarea; exports.InputOTP = _chunk5GVBUTS4js.InputOTP; exports.InputOTPGroup = _chunk5GVBUTS4js.InputOTPGroup; exports.InputOTPSeparator = _chunk5GVBUTS4js.InputOTPSeparator; exports.InputOTPSlot = _chunk5GVBUTS4js.InputOTPSlot; exports.ItalianFiscalData = _chunk5GVBUTS4js.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunk5GVBUTS4js.ItalianFiscalDataDisplay; exports.Item = _chunk5GVBUTS4js.KanbanItem; exports.ItemHandle = _chunk5GVBUTS4js.KanbanItemHandle; exports.Kanban = _chunk5GVBUTS4js.KanbanRoot; exports.KanbanBoard = _chunk5GVBUTS4js.KanbanBoard; exports.KanbanColumn = _chunk5GVBUTS4js.KanbanColumn; exports.KanbanColumnHandle = _chunk5GVBUTS4js.KanbanColumnHandle; exports.KanbanItem = _chunk5GVBUTS4js.KanbanItem; exports.KanbanItemHandle = _chunk5GVBUTS4js.KanbanItemHandle; exports.KanbanOverlay = _chunk5GVBUTS4js.KanbanOverlay; exports.Label = _chunk5GVBUTS4js.Label; exports.LandingComponent = _chunk5GVBUTS4js.LandingComponent; exports.Link = _chunk5GVBUTS4js.Link; exports.Login = _chunk5GVBUTS4js.Login; exports.Logout = _chunk5GVBUTS4js.Logout; exports.MessageItem = _chunk5GVBUTS4js.MessageItem; exports.MessageList = _chunk5GVBUTS4js.MessageList; exports.MessageSourcesPanel = _chunk5GVBUTS4js.MessageSourcesPanel; exports.MicroLabel = _chunk5GVBUTS4js.MicroLabel; exports.MobileNavigationBar = _chunk5GVBUTS4js.MobileNavigationBar; exports.ModeToggleSwitch = _chunk5GVBUTS4js.ModeToggleSwitch; exports.MultiSelect = _chunk5GVBUTS4js.MultiSelect; exports.MultipleSelector = _chunk5GVBUTS4js.MultipleSelector; exports.NavigationMenu = _chunk5GVBUTS4js.NavigationMenu; exports.NavigationMenuContent = _chunk5GVBUTS4js.NavigationMenuContent; exports.NavigationMenuIndicator = _chunk5GVBUTS4js.NavigationMenuIndicator; exports.NavigationMenuItem = _chunk5GVBUTS4js.NavigationMenuItem; exports.NavigationMenuLink = _chunk5GVBUTS4js.NavigationMenuLink; exports.NavigationMenuList = _chunk5GVBUTS4js.NavigationMenuList; exports.NavigationMenuPositioner = _chunk5GVBUTS4js.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunk5GVBUTS4js.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunk5GVBUTS4js.NotificationErrorBoundary; exports.NotificationMenuItem = _chunk5GVBUTS4js.NotificationMenuItem; exports.NotificationModal = _chunk5GVBUTS4js.NotificationModal; exports.NotificationToast = _chunk5GVBUTS4js.NotificationToast; exports.NotificationsList = _chunk5GVBUTS4js.NotificationsList; exports.NotificationsListContainer = _chunk5GVBUTS4js.NotificationsListContainer; exports.OAuthClientCard = _chunk5GVBUTS4js.OAuthClientCard; exports.OAuthClientDetail = _chunk5GVBUTS4js.OAuthClientDetail; exports.OAuthClientForm = _chunk5GVBUTS4js.OAuthClientForm; exports.OAuthClientList = _chunk5GVBUTS4js.OAuthClientList; exports.OAuthClientSecretDisplay = _chunk5GVBUTS4js.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunk5GVBUTS4js.OAuthConsentActions; exports.OAuthConsentHeader = _chunk5GVBUTS4js.OAuthConsentHeader; exports.OAuthConsentScreen = _chunk5GVBUTS4js.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunk5GVBUTS4js.OAuthRedirectUriInput; exports.OAuthScopeList = _chunk5GVBUTS4js.OAuthScopeList; exports.OAuthScopeSelector = _chunk5GVBUTS4js.OAuthScopeSelector; exports.OnboardingCard = _chunk5GVBUTS4js.OnboardingCard; exports.Overlay = _chunk5GVBUTS4js.KanbanOverlay; exports.PageContainer = _chunk5GVBUTS4js.PageContainer; exports.PageContainerContentDetails = _chunk5GVBUTS4js.PageContainerContentDetails; exports.PageContentContainer = _chunk5GVBUTS4js.PageContentContainer; exports.PageSection = _chunk5GVBUTS4js.PageSection; exports.PasskeyButton = _chunk5GVBUTS4js.PasskeyButton; exports.PasskeyList = _chunk5GVBUTS4js.PasskeyList; exports.PasskeySetupDialog = _chunk5GVBUTS4js.PasskeySetupDialog; exports.PasswordInput = _chunk5GVBUTS4js.PasswordInput; exports.PlatformUsersContainer = _chunk5GVBUTS4js.PlatformUsersContainer; exports.PlatformUsersList = _chunk5GVBUTS4js.PlatformUsersList; exports.Popover = _chunk5GVBUTS4js.Popover; exports.PopoverContent = _chunk5GVBUTS4js.PopoverContent; exports.PopoverDescription = _chunk5GVBUTS4js.PopoverDescription; exports.PopoverHeader = _chunk5GVBUTS4js.PopoverHeader; exports.PopoverTitle = _chunk5GVBUTS4js.PopoverTitle; exports.PopoverTrigger = _chunk5GVBUTS4js.PopoverTrigger; exports.Progress = _chunk5GVBUTS4js.Progress; exports.ProgressIndicator = _chunk5GVBUTS4js.ProgressIndicator; exports.ProgressLabel = _chunk5GVBUTS4js.ProgressLabel; exports.ProgressTrack = _chunk5GVBUTS4js.ProgressTrack; exports.ProgressValue = _chunk5GVBUTS4js.ProgressValue; exports.PushNotificationProvider = _chunk5GVBUTS4js.PushNotificationProvider; exports.RadioGroup = _chunk5GVBUTS4js.RadioGroup; exports.RadioGroupItem = _chunk5GVBUTS4js.RadioGroupItem; exports.RbacByRoleContainer = _chunk5GVBUTS4js.RbacByRoleContainer; exports.RbacContainer = _chunk5GVBUTS4js.RbacContainer; exports.RbacPermissionCell = _chunk5GVBUTS4js.RbacPermissionCell; exports.RbacPermissionPicker = _chunk5GVBUTS4js.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunk5GVBUTS4js.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunk5GVBUTS4js.RecentPagesNavigator; exports.ReferralCodeCapture = _chunk5GVBUTS4js.ReferralCodeCapture; exports.ReferralDialog = _chunk5GVBUTS4js.ReferralDialog; exports.ReferralWidget = _chunk5GVBUTS4js.ReferralWidget; exports.RefreshUser = _chunk5GVBUTS4js.RefreshUser; exports.RelevantContentsList = _chunk5GVBUTS4js.RelevantContentsList; exports.RelevantUsersList = _chunk5GVBUTS4js.RelevantUsersList; exports.RemoveUserFromRole = _chunk5GVBUTS4js.RemoveUserFromRole; exports.ResetPassword = _chunk5GVBUTS4js.ResetPassword; exports.ResizableHandle = _chunk5GVBUTS4js.ResizableHandle; exports.ResizablePanel = _chunk5GVBUTS4js.ResizablePanel; exports.ResizablePanelGroup = _chunk5GVBUTS4js.ResizablePanelGroup; exports.RoleContainer = _chunk5GVBUTS4js.RoleContainer; exports.RoleDetails = _chunk5GVBUTS4js.RoleDetails; exports.RoleUsersList = _chunk5GVBUTS4js.RoleUsersList; exports.RolesList = _chunk5GVBUTS4js.RolesList; exports.Root = _chunk5GVBUTS4js.KanbanRoot; exports.RoundPageContainer = _chunk5GVBUTS4js.RoundPageContainer; exports.RoundPageContainerTitle = _chunk5GVBUTS4js.RoundPageContainerTitle; exports.ScrollArea = _chunk5GVBUTS4js.ScrollArea; exports.ScrollBar = _chunk5GVBUTS4js.ScrollBar; exports.SectionHeader = _chunk5GVBUTS4js.SectionHeader; exports.SecurityContainer = _chunk5GVBUTS4js.SecurityContainer; exports.Select = _chunk5GVBUTS4js.Select; exports.SelectContent = _chunk5GVBUTS4js.SelectContent; exports.SelectGroup = _chunk5GVBUTS4js.SelectGroup; exports.SelectItem = _chunk5GVBUTS4js.SelectItem; exports.SelectLabel = _chunk5GVBUTS4js.SelectLabel; exports.SelectScrollDownButton = _chunk5GVBUTS4js.SelectScrollDownButton; exports.SelectScrollUpButton = _chunk5GVBUTS4js.SelectScrollUpButton; exports.SelectSeparator = _chunk5GVBUTS4js.SelectSeparator; exports.SelectTrigger = _chunk5GVBUTS4js.SelectTrigger; exports.SelectValue = _chunk5GVBUTS4js.SelectValue; exports.Separator = _chunk5GVBUTS4js.Separator; exports.Sheet = _chunk5GVBUTS4js.Sheet; exports.SheetClose = _chunk5GVBUTS4js.SheetClose; exports.SheetContent = _chunk5GVBUTS4js.SheetContent; exports.SheetDescription = _chunk5GVBUTS4js.SheetDescription; exports.SheetFooter = _chunk5GVBUTS4js.SheetFooter; exports.SheetHeader = _chunk5GVBUTS4js.SheetHeader; exports.SheetTitle = _chunk5GVBUTS4js.SheetTitle; exports.SheetTrigger = _chunk5GVBUTS4js.SheetTrigger; exports.Sidebar = _chunk5GVBUTS4js.Sidebar; exports.SidebarContent = _chunk5GVBUTS4js.SidebarContent; exports.SidebarFooter = _chunk5GVBUTS4js.SidebarFooter; exports.SidebarGroup = _chunk5GVBUTS4js.SidebarGroup; exports.SidebarGroupAction = _chunk5GVBUTS4js.SidebarGroupAction; exports.SidebarGroupContent = _chunk5GVBUTS4js.SidebarGroupContent; exports.SidebarGroupLabel = _chunk5GVBUTS4js.SidebarGroupLabel; exports.SidebarHeader = _chunk5GVBUTS4js.SidebarHeader; exports.SidebarInput = _chunk5GVBUTS4js.SidebarInput; exports.SidebarInset = _chunk5GVBUTS4js.SidebarInset; exports.SidebarMenu = _chunk5GVBUTS4js.SidebarMenu; exports.SidebarMenuAction = _chunk5GVBUTS4js.SidebarMenuAction; exports.SidebarMenuBadge = _chunk5GVBUTS4js.SidebarMenuBadge; exports.SidebarMenuButton = _chunk5GVBUTS4js.SidebarMenuButton; exports.SidebarMenuItem = _chunk5GVBUTS4js.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunk5GVBUTS4js.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunk5GVBUTS4js.SidebarMenuSub; exports.SidebarMenuSubButton = _chunk5GVBUTS4js.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunk5GVBUTS4js.SidebarMenuSubItem; exports.SidebarProvider = _chunk5GVBUTS4js.SidebarProvider; exports.SidebarRail = _chunk5GVBUTS4js.SidebarRail; exports.SidebarSeparator = _chunk5GVBUTS4js.SidebarSeparator; exports.SidebarTrigger = _chunk5GVBUTS4js.SidebarTrigger; exports.Skeleton = _chunk5GVBUTS4js.Skeleton; exports.Slider = _chunk5GVBUTS4js.Slider; exports.Spinner = _chunk5GVBUTS4js.Spinner; exports.Switch = _chunk5GVBUTS4js.Switch; exports.Table = _chunk5GVBUTS4js.Table; exports.TableBody = _chunk5GVBUTS4js.TableBody; exports.TableCaption = _chunk5GVBUTS4js.TableCaption; exports.TableCell = _chunk5GVBUTS4js.TableCell; exports.TableCellAvatar = _chunk5GVBUTS4js.TableCellAvatar; exports.TableFooter = _chunk5GVBUTS4js.TableFooter; exports.TableHead = _chunk5GVBUTS4js.TableHead; exports.TableHeader = _chunk5GVBUTS4js.TableHeader; exports.TableRow = _chunk5GVBUTS4js.TableRow; exports.Tabs = _chunk5GVBUTS4js.Tabs; exports.TabsContainer = _chunk5GVBUTS4js.TabsContainer; exports.TabsContent = _chunk5GVBUTS4js.TabsContent; exports.TabsList = _chunk5GVBUTS4js.TabsList; exports.TabsTrigger = _chunk5GVBUTS4js.TabsTrigger; exports.Textarea = _chunk5GVBUTS4js.Textarea; exports.Toaster = _chunk5GVBUTS4js.Toaster; exports.Toggle = _chunk5GVBUTS4js.Toggle; exports.TokenStatusIndicator = _chunk5GVBUTS4js.TokenStatusIndicator; exports.Tooltip = _chunk5GVBUTS4js.Tooltip; exports.TooltipContent = _chunk5GVBUTS4js.TooltipContent; exports.TooltipProvider = _chunk5GVBUTS4js.TooltipProvider; exports.TooltipTrigger = _chunk5GVBUTS4js.TooltipTrigger; exports.TotpAuthenticatorList = _chunk5GVBUTS4js.TotpAuthenticatorList; exports.TotpInput = _chunk5GVBUTS4js.TotpInput; exports.TotpSetupDialog = _chunk5GVBUTS4js.TotpSetupDialog; exports.TwoFactorChallenge = _chunk5GVBUTS4js.TwoFactorChallenge; exports.TwoFactorSettings = _chunk5GVBUTS4js.TwoFactorSettings; exports.UserAvatar = _chunk5GVBUTS4js.UserAvatar; exports.UserAvatarEditor = _chunk5GVBUTS4js.UserAvatarEditor; exports.UserAvatarList = _chunk5GVBUTS4js.UserAvatarList; exports.UserContainer = _chunk5GVBUTS4js.UserContainer; exports.UserContent = _chunk5GVBUTS4js.UserContent; exports.UserDeleter = _chunk5GVBUTS4js.UserDeleter; exports.UserEditor = _chunk5GVBUTS4js.UserEditor; exports.UserIndexContainer = _chunk5GVBUTS4js.UserIndexContainer; exports.UserIndexDetails = _chunk5GVBUTS4js.UserIndexDetails; exports.UserListInAdd = _chunk5GVBUTS4js.UserListInAdd; exports.UserMultiSelect = _chunk5GVBUTS4js.UserMultiSelect; exports.UserReactivator = _chunk5GVBUTS4js.UserReactivator; exports.UserResentInvitationEmail = _chunk5GVBUTS4js.UserResentInvitationEmail; exports.UserRoleAdd = _chunk5GVBUTS4js.UserRoleAdd; exports.UserRolesList = _chunk5GVBUTS4js.UserRolesList; exports.UserSearchPopover = _chunk5GVBUTS4js.UserSearchPopover; exports.UserSelector = _chunk5GVBUTS4js.UserSelector; exports.UserStanadaloneDetails = _chunk5GVBUTS4js.UserStanadaloneDetails; exports.UsersList = _chunk5GVBUTS4js.UsersList; exports.UsersListByContentIds = _chunk5GVBUTS4js.UsersListByContentIds; exports.UsersListContainer = _chunk5GVBUTS4js.UsersListContainer; exports.WaitlistConfirmation = _chunk5GVBUTS4js.WaitlistConfirmation; exports.WaitlistForm = _chunk5GVBUTS4js.WaitlistForm; exports.WaitlistHeroSection = _chunk5GVBUTS4js.WaitlistHeroSection; exports.WaitlistList = _chunk5GVBUTS4js.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunk5GVBUTS4js.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunk5GVBUTS4js.WaitlistSuccessState; exports.badgeVariants = _chunk5GVBUTS4js.badgeVariants; exports.buttonVariants = _chunk5GVBUTS4js.buttonVariants; exports.cellComponent = _chunk5GVBUTS4js.cellComponent; exports.cellDate = _chunk5GVBUTS4js.cellDate; exports.cellDateTime = _chunk5GVBUTS4js.cellDateTime; exports.cellId = _chunk5GVBUTS4js.cellId; exports.cellLink = _chunk5GVBUTS4js.cellLink; exports.cellUrl = _chunk5GVBUTS4js.cellUrl; exports.createMentionInlineContentSpec = _chunk5GVBUTS4js.createMentionInlineContentSpec; exports.errorToast = _chunk5GVBUTS4js.errorToast; exports.generateNotificationData = _chunk5GVBUTS4js.generateNotificationData; exports.getIcon = _chunk53B6NPGAjs.getIcon; exports.getIconByModule = _chunk53B6NPGAjs.getIconByModule; exports.getIconByModuleName = _chunk53B6NPGAjs.getIconByModuleName; exports.getInitials = _chunk53B6NPGAjs.getInitials; exports.mentionDataAttrs = _chunk5GVBUTS4js.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunk5GVBUTS4js.navigationMenuTriggerStyle; exports.parseFiscalData = _chunk5GVBUTS4js.parseFiscalData; exports.parseMentionElement = _chunk5GVBUTS4js.parseMentionElement; exports.partitionTabs = _chunk5GVBUTS4js.partitionTabs; exports.spinnerVariants = _chunk5GVBUTS4js.spinnerVariants; exports.tabsListVariants = _chunk5GVBUTS4js.tabsListVariants; exports.toggleVariants = _chunk5GVBUTS4js.toggleVariants; exports.triggerAssociationToast = _chunk5GVBUTS4js.triggerAssociationToast; exports.useCarousel = _chunk5GVBUTS4js.useCarousel; exports.useComboboxAnchor = _chunk5GVBUTS4js.useComboboxAnchor; exports.useDebounce = _chunk5GVBUTS4js.useDebounce2; exports.useEditorDialog = _chunk5GVBUTS4js.useEditorDialog; exports.useFileUpload = _chunk5GVBUTS4js.useFileUpload; exports.useMentionInsert = _chunk5GVBUTS4js.useMentionInsert; exports.useSidebar = _chunk5GVBUTS4js.useSidebar;
|
|
1007
1007
|
//# sourceMappingURL=index.js.map
|
|
@@ -489,14 +489,14 @@ import {
|
|
|
489
489
|
useFileUpload,
|
|
490
490
|
useMentionInsert,
|
|
491
491
|
useSidebar
|
|
492
|
-
} from "../chunk-
|
|
493
|
-
import "../chunk-
|
|
492
|
+
} from "../chunk-WCX4CLRJ.mjs";
|
|
493
|
+
import "../chunk-PHEFWL6L.mjs";
|
|
494
494
|
import {
|
|
495
495
|
getIcon,
|
|
496
496
|
getIconByModule,
|
|
497
497
|
getIconByModuleName,
|
|
498
498
|
getInitials
|
|
499
|
-
} from "../chunk-
|
|
499
|
+
} from "../chunk-TWXKAY34.mjs";
|
|
500
500
|
import "../chunk-AUXK7QSA.mjs";
|
|
501
501
|
import "../chunk-C7C7VY4F.mjs";
|
|
502
502
|
import "../chunk-E5YA5Z5X.mjs";
|
package/dist/contexts/index.js
CHANGED
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
var
|
|
44
|
-
require('../chunk-
|
|
45
|
-
require('../chunk-
|
|
43
|
+
var _chunk5GVBUTS4js = require('../chunk-5GVBUTS4.js');
|
|
44
|
+
require('../chunk-JKGEJGSD.js');
|
|
45
|
+
require('../chunk-53B6NPGA.js');
|
|
46
46
|
require('../chunk-LXKSUWAV.js');
|
|
47
47
|
require('../chunk-IBS6NI7D.js');
|
|
48
48
|
require('../chunk-FPO4DLZN.js');
|
|
@@ -89,5 +89,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
89
89
|
|
|
90
90
|
|
|
91
91
|
|
|
92
|
-
exports.AdministrationProvider =
|
|
92
|
+
exports.AdministrationProvider = _chunk5GVBUTS4js.AdministrationProvider; exports.AssistantProvider = _chunk5GVBUTS4js.AssistantProvider; exports.CommonProvider = _chunk5GVBUTS4js.CommonProvider; exports.CompanyProvider = _chunk5GVBUTS4js.CompanyProvider; exports.CurrentUserProvider = _chunk5GVBUTS4js.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunk5GVBUTS4js.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunk5GVBUTS4js.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunk5GVBUTS4js.HeaderLeftContentProvider; exports.HeaderLogoProvider = _chunk5GVBUTS4js.HeaderLogoProvider; exports.HowToProvider = _chunk5GVBUTS4js.HowToProvider; exports.MobileNavigationProvider = _chunk5GVBUTS4js.MobileNavigationProvider; exports.NotificationContextProvider = _chunk5GVBUTS4js.NotificationContextProvider; exports.OnboardingProvider = _chunk5GVBUTS4js.OnboardingProvider; exports.RbacProvider = _chunk5GVBUTS4js.RbacProvider; exports.RoleProvider = _chunk5GVBUTS4js.RoleProvider; exports.SharedProvider = _chunk5GVBUTS4js.SharedProvider; exports.SocketContext = _chunk5GVBUTS4js.SocketContext; exports.SocketProvider = _chunk5GVBUTS4js.SocketProvider; exports.UserProvider = _chunk5GVBUTS4js.UserProvider; exports.ViewportProvider = _chunk5GVBUTS4js.ViewportProvider; exports.recentPagesAtom = _chunk5GVBUTS4js.recentPagesAtom; exports.useAdministrationContext = _chunk5GVBUTS4js.useAdministrationContext; exports.useAssistantContext = _chunk5GVBUTS4js.useAssistantContext; exports.useCommonContext = _chunk5GVBUTS4js.useCommonContext; exports.useCompanyContext = _chunk5GVBUTS4js.useCompanyContext; exports.useCurrentUserContext = _chunk5GVBUTS4js.useCurrentUserContext; exports.useHeaderChildren = _chunk5GVBUTS4js.useHeaderChildren; exports.useHeaderLeftContent = _chunk5GVBUTS4js.useHeaderLeftContent; exports.useHeaderLogo = _chunk5GVBUTS4js.useHeaderLogo; exports.useHeaderMobileChildren = _chunk5GVBUTS4js.useHeaderMobileChildren; exports.useHeaderRootLabel = _chunk5GVBUTS4js.useHeaderRootLabel; exports.useHowToContext = _chunk5GVBUTS4js.useHowToContext; exports.useMobileNavigationItems = _chunk5GVBUTS4js.useMobileNavigationItems; exports.useNotificationContext = _chunk5GVBUTS4js.useNotificationContext; exports.useOnboarding = _chunk5GVBUTS4js.useOnboarding; exports.useRbacContext = _chunk5GVBUTS4js.useRbacContext; exports.useRoleContext = _chunk5GVBUTS4js.useRoleContext; exports.useSharedContext = _chunk5GVBUTS4js.useSharedContext; exports.useSocketContext = _chunk5GVBUTS4js.useSocketContext; exports.useUserContext = _chunk5GVBUTS4js.useUserContext;
|
|
93
93
|
//# sourceMappingURL=index.js.map
|
package/dist/contexts/index.mjs
CHANGED
|
@@ -40,9 +40,9 @@ import {
|
|
|
40
40
|
useSharedContext,
|
|
41
41
|
useSocketContext,
|
|
42
42
|
useUserContext
|
|
43
|
-
} from "../chunk-
|
|
44
|
-
import "../chunk-
|
|
45
|
-
import "../chunk-
|
|
43
|
+
} from "../chunk-WCX4CLRJ.mjs";
|
|
44
|
+
import "../chunk-PHEFWL6L.mjs";
|
|
45
|
+
import "../chunk-TWXKAY34.mjs";
|
|
46
46
|
import "../chunk-AUXK7QSA.mjs";
|
|
47
47
|
import "../chunk-C7C7VY4F.mjs";
|
|
48
48
|
import "../chunk-E5YA5Z5X.mjs";
|
package/dist/core/index.d.mts
CHANGED
|
@@ -1374,6 +1374,13 @@ declare class StripeProduct extends AbstractApiData implements StripeProductInte
|
|
|
1374
1374
|
createJsonApi(data: StripeProductInput): any;
|
|
1375
1375
|
}
|
|
1376
1376
|
|
|
1377
|
+
declare enum StripeProductFields {
|
|
1378
|
+
stripeProductId = "stripeProductId",
|
|
1379
|
+
name = "name",
|
|
1380
|
+
status = "status",
|
|
1381
|
+
prices = "prices"
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1377
1384
|
declare class StripeProductService extends AbstractService {
|
|
1378
1385
|
/**
|
|
1379
1386
|
* List all products (admin)
|
|
@@ -1450,6 +1457,15 @@ declare class StripePrice extends AbstractApiData implements StripePriceInterfac
|
|
|
1450
1457
|
createJsonApi(data: StripePriceInput): any;
|
|
1451
1458
|
}
|
|
1452
1459
|
|
|
1460
|
+
declare enum StripePriceFields {
|
|
1461
|
+
stripePriceId = "stripePriceId",
|
|
1462
|
+
nickname = "nickname",
|
|
1463
|
+
amount = "amount",
|
|
1464
|
+
interval = "interval",
|
|
1465
|
+
token = "token",
|
|
1466
|
+
status = "status"
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1453
1469
|
/**
|
|
1454
1470
|
* Admin billing service for managing products and prices
|
|
1455
1471
|
*/
|
|
@@ -2498,4 +2514,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2498
2514
|
|
|
2499
2515
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2500
2516
|
|
|
2501
|
-
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantAction, type AssistantActionInput, type AssistantActionInterface, AssistantActionModule, AssistantActionService, type AssistantActionStatus, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, EntityAiStatus, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MOBILE_BREAKPOINT, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, VIEWPORT_COOKIE_NAME, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, isRemoteImageSrc, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
|
|
2517
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantAction, type AssistantActionInput, type AssistantActionInterface, AssistantActionModule, AssistantActionService, type AssistantActionStatus, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, EntityAiStatus, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MOBILE_BREAKPOINT, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceFields, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductFields, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, VIEWPORT_COOKIE_NAME, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, isRemoteImageSrc, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
|
package/dist/core/index.d.ts
CHANGED
|
@@ -1374,6 +1374,13 @@ declare class StripeProduct extends AbstractApiData implements StripeProductInte
|
|
|
1374
1374
|
createJsonApi(data: StripeProductInput): any;
|
|
1375
1375
|
}
|
|
1376
1376
|
|
|
1377
|
+
declare enum StripeProductFields {
|
|
1378
|
+
stripeProductId = "stripeProductId",
|
|
1379
|
+
name = "name",
|
|
1380
|
+
status = "status",
|
|
1381
|
+
prices = "prices"
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1377
1384
|
declare class StripeProductService extends AbstractService {
|
|
1378
1385
|
/**
|
|
1379
1386
|
* List all products (admin)
|
|
@@ -1450,6 +1457,15 @@ declare class StripePrice extends AbstractApiData implements StripePriceInterfac
|
|
|
1450
1457
|
createJsonApi(data: StripePriceInput): any;
|
|
1451
1458
|
}
|
|
1452
1459
|
|
|
1460
|
+
declare enum StripePriceFields {
|
|
1461
|
+
stripePriceId = "stripePriceId",
|
|
1462
|
+
nickname = "nickname",
|
|
1463
|
+
amount = "amount",
|
|
1464
|
+
interval = "interval",
|
|
1465
|
+
token = "token",
|
|
1466
|
+
status = "status"
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1453
1469
|
/**
|
|
1454
1470
|
* Admin billing service for managing products and prices
|
|
1455
1471
|
*/
|
|
@@ -2498,4 +2514,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2498
2514
|
|
|
2499
2515
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2500
2516
|
|
|
2501
|
-
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantAction, type AssistantActionInput, type AssistantActionInterface, AssistantActionModule, AssistantActionService, type AssistantActionStatus, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, EntityAiStatus, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MOBILE_BREAKPOINT, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, VIEWPORT_COOKIE_NAME, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, isRemoteImageSrc, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
|
|
2517
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantAction, type AssistantActionInput, type AssistantActionInterface, AssistantActionModule, AssistantActionService, type AssistantActionStatus, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, EntityAiStatus, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MOBILE_BREAKPOINT, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceFields, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductFields, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, VIEWPORT_COOKIE_NAME, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, isRemoteImageSrc, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
|
package/dist/core/index.js
CHANGED
|
@@ -193,7 +193,9 @@
|
|
|
193
193
|
|
|
194
194
|
|
|
195
195
|
|
|
196
|
-
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
var _chunk53B6NPGAjs = require('../chunk-53B6NPGA.js');
|
|
197
199
|
require('../chunk-LXKSUWAV.js');
|
|
198
200
|
require('../chunk-IBS6NI7D.js');
|
|
199
201
|
|
|
@@ -413,5 +415,7 @@ require('../chunk-7QVYU63E.js');
|
|
|
413
415
|
|
|
414
416
|
|
|
415
417
|
|
|
416
|
-
exports.AVAILABLE_OAUTH_SCOPES = _chunkRTOC53EZjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkRTOC53EZjs.AbstractApiData; exports.AbstractService = _chunkRTOC53EZjs.AbstractService; exports.Action = _chunkRTOC53EZjs.Action; exports.Assistant = _chunkRTOC53EZjs.Assistant; exports.AssistantAction = _chunkRTOC53EZjs.AssistantAction; exports.AssistantActionModule = _chunkRTOC53EZjs.AssistantActionModule; exports.AssistantActionService = _chunkRTOC53EZjs.AssistantActionService; exports.AssistantMessage = _chunkRTOC53EZjs.AssistantMessage; exports.AssistantMessageModule = _chunkRTOC53EZjs.AssistantMessageModule; exports.AssistantMessageService = _chunkRTOC53EZjs.AssistantMessageService; exports.AssistantModule = _chunkRTOC53EZjs.AssistantModule; exports.AssistantService = _chunkRTOC53EZjs.AssistantService; exports.AuditLog = _chunkRTOC53EZjs.AuditLog; exports.AuditLogModule = _chunkRTOC53EZjs.AuditLogModule; exports.AuditLogService = _chunkRTOC53EZjs.AuditLogService; exports.Auth = _chunkRTOC53EZjs.Auth; exports.AuthComponent = _chunkRTOC53EZjs.AuthComponent; exports.AuthModule = _chunkRTOC53EZjs.AuthModule; exports.AuthService = _chunkRTOC53EZjs.AuthService; exports.AuthorModule = _chunkRTOC53EZjs.AuthorModule; exports.BackupCodeVerify = _chunkRTOC53EZjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkRTOC53EZjs.BackupCodeVerifyModule; exports.Billing = _chunkRTOC53EZjs.Billing; exports.BillingModule = _chunkRTOC53EZjs.BillingModule; exports.BillingService = _chunkRTOC53EZjs.BillingService; exports.BlockNoteDiffUtil = _chunkRTOC53EZjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkRTOC53EZjs.BlockNoteWordDiffRendererUtil; exports.Chunk = _chunkRTOC53EZjs.Chunk; exports.ChunkModule = _chunkRTOC53EZjs.ChunkModule; exports.ClientAbstractService = _chunkRTOC53EZjs.ClientAbstractService; exports.ClientHttpMethod = _chunkRTOC53EZjs.ClientHttpMethod; exports.Company = _chunkRTOC53EZjs.Company; exports.CompanyFields = _chunkRTOC53EZjs.CompanyFields; exports.CompanyModule = _chunkRTOC53EZjs.CompanyModule; exports.CompanyService = _chunkRTOC53EZjs.CompanyService; exports.Content = _chunkRTOC53EZjs.Content; exports.ContentFields = _chunkRTOC53EZjs.ContentFields; exports.ContentModule = _chunkRTOC53EZjs.ContentModule; exports.ContentService = _chunkRTOC53EZjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkRTOC53EZjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunkFPO4DLZNjs.DataClassRegistry; exports.DataClassRegistry = _chunkFPO4DLZNjs.DataClassRegistry; exports.EndpointCreator = _chunkRTOC53EZjs.EndpointCreator; exports.EntityAiStatus = _chunkRTOC53EZjs.EntityAiStatus; exports.Feature = _chunkRTOC53EZjs.Feature; exports.FeatureModule = _chunkRTOC53EZjs.FeatureModule; exports.FeatureService = _chunkRTOC53EZjs.FeatureService; exports.HowTo = _chunkRTOC53EZjs.HowTo; exports.HowToFields = _chunkRTOC53EZjs.HowToFields; exports.HowToModule = _chunkRTOC53EZjs.HowToModule; exports.HowToService = _chunkRTOC53EZjs.HowToService; exports.HttpMethod = _chunkRTOC53EZjs.HttpMethod; exports.InvoiceStatus = _chunkRTOC53EZjs.InvoiceStatus; exports.JsonApiDataFactory = _chunkFPO4DLZNjs.JsonApiDataFactory; exports.MOBILE_BREAKPOINT = _chunkRTOC53EZjs.MOBILE_BREAKPOINT; exports.Module = _chunkRTOC53EZjs.Module; exports.ModuleModule = _chunkRTOC53EZjs.ModuleModule; exports.ModulePathsModule = _chunkRTOC53EZjs.ModulePathsModule; exports.ModuleRegistrar = _chunkRTOC53EZjs.ModuleRegistrar; exports.ModuleRegistry = _chunkRTOC53EZjs.ModuleRegistry; exports.Modules = _chunkRTOC53EZjs.Modules; exports.Notification = _chunkRTOC53EZjs.Notification; exports.NotificationFields = _chunkRTOC53EZjs.NotificationFields; exports.NotificationModule = _chunkRTOC53EZjs.NotificationModule; exports.NotificationService = _chunkRTOC53EZjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkRTOC53EZjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkRTOC53EZjs.OAuthClient; exports.OAuthModule = _chunkRTOC53EZjs.OAuthModule; exports.OAuthService = _chunkRTOC53EZjs.OAuthService; exports.Passkey = _chunkRTOC53EZjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkRTOC53EZjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkRTOC53EZjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkRTOC53EZjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkRTOC53EZjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkRTOC53EZjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkRTOC53EZjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkRTOC53EZjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkRTOC53EZjs.PasskeyRename; exports.PasskeyRenameModule = _chunkRTOC53EZjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkRTOC53EZjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkRTOC53EZjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkRTOC53EZjs.PaymentMethod; exports.PermissionMappingModule = _chunkRTOC53EZjs.PermissionMappingModule; exports.Push = _chunkRTOC53EZjs.Push; exports.PushModule = _chunkRTOC53EZjs.PushModule; exports.PushService = _chunkRTOC53EZjs.PushService; exports.RbacMatrixModule = _chunkRTOC53EZjs.RbacMatrixModule; exports.ReferralModule = _chunkRTOC53EZjs.ReferralModule; exports.ReferralService = _chunkRTOC53EZjs.ReferralService; exports.ReferralStats = _chunkRTOC53EZjs.ReferralStats; exports.ReferralStatsModule = _chunkRTOC53EZjs.ReferralStatsModule; exports.RehydrationFactory = _chunkRTOC53EZjs.RehydrationFactory; exports.Role = _chunkRTOC53EZjs.Role; exports.RoleFields = _chunkRTOC53EZjs.RoleFields; exports.RoleModule = _chunkRTOC53EZjs.RoleModule; exports.RoleService = _chunkRTOC53EZjs.RoleService; exports.S3 = _chunkRTOC53EZjs.S3; exports.S3Module = _chunkRTOC53EZjs.S3Module; exports.S3Service = _chunkRTOC53EZjs.S3Service; exports.StripeCustomer = _chunkRTOC53EZjs.StripeCustomer; exports.StripeCustomerModule = _chunkRTOC53EZjs.StripeCustomerModule; exports.StripeCustomerService = _chunkRTOC53EZjs.StripeCustomerService; exports.StripeInvoice = _chunkRTOC53EZjs.StripeInvoice; exports.StripeInvoiceModule = _chunkRTOC53EZjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkRTOC53EZjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkRTOC53EZjs.StripePaymentMethodModule; exports.StripePrice = _chunkRTOC53EZjs.StripePrice; exports.StripePriceModule = _chunkRTOC53EZjs.StripePriceModule; exports.StripePriceService = _chunkRTOC53EZjs.StripePriceService; exports.StripeProduct = _chunkRTOC53EZjs.StripeProduct; exports.StripeProductModule = _chunkRTOC53EZjs.StripeProductModule; exports.StripeProductService = _chunkRTOC53EZjs.StripeProductService; exports.StripePromotionCode = _chunkRTOC53EZjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkRTOC53EZjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkRTOC53EZjs.StripePromotionCodeService; exports.StripeSubscription = _chunkRTOC53EZjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkRTOC53EZjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkRTOC53EZjs.StripeSubscriptionService; exports.StripeUsage = _chunkRTOC53EZjs.StripeUsage; exports.StripeUsageModule = _chunkRTOC53EZjs.StripeUsageModule; exports.StripeUsageService = _chunkRTOC53EZjs.StripeUsageService; exports.SubscriptionStatus = _chunkRTOC53EZjs.SubscriptionStatus; exports.TableOptions = _chunkRTOC53EZjs.TableOptions; exports.TokenUsageAdminBreakdownModule = _chunkRTOC53EZjs.TokenUsageAdminBreakdownModule; exports.TokenUsageAdminSummaryModule = _chunkRTOC53EZjs.TokenUsageAdminSummaryModule; exports.TokenUsageAdminTimelineModule = _chunkRTOC53EZjs.TokenUsageAdminTimelineModule; exports.TotpAuthenticator = _chunkRTOC53EZjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkRTOC53EZjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkRTOC53EZjs.TotpSetup; exports.TotpSetupModule = _chunkRTOC53EZjs.TotpSetupModule; exports.TotpVerify = _chunkRTOC53EZjs.TotpVerify; exports.TotpVerifyLogin = _chunkRTOC53EZjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkRTOC53EZjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkRTOC53EZjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkRTOC53EZjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkRTOC53EZjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkRTOC53EZjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkRTOC53EZjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkRTOC53EZjs.TwoFactorService; exports.TwoFactorStatus = _chunkRTOC53EZjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkRTOC53EZjs.TwoFactorStatusModule; exports.User = _chunkRTOC53EZjs.User; exports.UserFields = _chunkRTOC53EZjs.UserFields; exports.UserModule = _chunkRTOC53EZjs.UserModule; exports.UserService = _chunkRTOC53EZjs.UserService; exports.VIEWPORT_COOKIE_NAME = _chunkRTOC53EZjs.VIEWPORT_COOKIE_NAME; exports.Waitlist = _chunkRTOC53EZjs.Waitlist; exports.WaitlistModule = _chunkRTOC53EZjs.WaitlistModule; exports.WaitlistService = _chunkRTOC53EZjs.WaitlistService; exports.WaitlistStats = _chunkRTOC53EZjs.WaitlistStats; exports.WaitlistStatsModule = _chunkRTOC53EZjs.WaitlistStatsModule; exports.checkPermissions = _chunkRTOC53EZjs.checkPermissions; exports.checkPermissionsFromServer = _chunkRTOC53EZjs.checkPermissionsFromServer; exports.clearLastApiMeta = _chunkRTOC53EZjs.clearLastApiMeta; exports.clearLastApiTotal = _chunkRTOC53EZjs.clearLastApiTotal; exports.cn = _chunkRTOC53EZjs.cn; exports.composeRefs = _chunkRTOC53EZjs.composeRefs; exports.configureTokenUsage = _chunkRTOC53EZjs.configureTokenUsage; exports.createJsonApiInclusion = _chunkRTOC53EZjs.createJsonApiInclusion; exports.dismissToast = _chunkRTOC53EZjs.dismissToast; exports.entityObjectSchema = _chunkRTOC53EZjs.entityObjectSchema; exports.exists = _chunkRTOC53EZjs.exists; exports.formatCodiceFiscale = _chunkRTOC53EZjs.formatCodiceFiscale; exports.formatDate = _chunkRTOC53EZjs.formatDate; exports.formatLocalDate = _chunkRTOC53EZjs.formatLocalDate; exports.formatPartitaIva = _chunkRTOC53EZjs.formatPartitaIva; exports.getBootstrapper = _chunkFPO4DLZNjs.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkRTOC53EZjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkRTOC53EZjs.getGlobalErrorHandler; exports.getIcon = _chunkRTOC53EZjs.getIcon; exports.getIconByModule = _chunkRTOC53EZjs.getIconByModule; exports.getIconByModuleName = _chunkRTOC53EZjs.getIconByModuleName; exports.getInitials = _chunkRTOC53EZjs.getInitials; exports.getLastApiMeta = _chunkRTOC53EZjs.getLastApiMeta; exports.getLastApiTotal = _chunkRTOC53EZjs.getLastApiTotal; exports.getLucideIcon = _chunkRTOC53EZjs.getLucideIcon; exports.getLucideIconByModule = _chunkRTOC53EZjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkRTOC53EZjs.getLucideIconByModuleName; exports.getTableComponents = _chunkRTOC53EZjs.getTableComponents; exports.getTableOptions = _chunkRTOC53EZjs.getTableOptions; exports.getTokenUsageCurrency = _chunkRTOC53EZjs.getTokenUsageCurrency; exports.getValueFromPath = _chunkRTOC53EZjs.getValueFromPath; exports.hasBootstrapper = _chunkFPO4DLZNjs.hasBootstrapper; exports.isRemoteImageSrc = _chunkRTOC53EZjs.isRemoteImageSrc; exports.rehydrate = _chunkRTOC53EZjs.rehydrate; exports.rehydrateList = _chunkRTOC53EZjs.rehydrateList; exports.resetBootstrapStore = _chunkFPO4DLZNjs.resetBootstrapStore; exports.setBootstrapper = _chunkFPO4DLZNjs.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkRTOC53EZjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkRTOC53EZjs.setGlobalErrorHandler; exports.showCustomToast = _chunkRTOC53EZjs.showCustomToast; exports.showError = _chunkRTOC53EZjs.showError; exports.showToast = _chunkRTOC53EZjs.showToast; exports.tokenUsageModules = _chunkRTOC53EZjs.tokenUsageModules; exports.translateData = _chunkFPO4DLZNjs.translateData; exports.translateResponse = _chunkFPO4DLZNjs.translateResponse; exports.tryBootstrap = _chunkFPO4DLZNjs.tryBootstrap; exports.useComposedRefs = _chunkRTOC53EZjs.useComposedRefs; exports.useIsMobile = _chunkRTOC53EZjs.useIsMobile; exports.userObjectSchema = _chunkRTOC53EZjs.userObjectSchema; exports.validateCodiceFiscale = _chunkRTOC53EZjs.validateCodiceFiscale; exports.validateItalianTaxCode = _chunkRTOC53EZjs.validateItalianTaxCode; exports.validatePartitaIva = _chunkRTOC53EZjs.validatePartitaIva;
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
exports.AVAILABLE_OAUTH_SCOPES = _chunk53B6NPGAjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunk53B6NPGAjs.AbstractApiData; exports.AbstractService = _chunk53B6NPGAjs.AbstractService; exports.Action = _chunk53B6NPGAjs.Action; exports.Assistant = _chunk53B6NPGAjs.Assistant; exports.AssistantAction = _chunk53B6NPGAjs.AssistantAction; exports.AssistantActionModule = _chunk53B6NPGAjs.AssistantActionModule; exports.AssistantActionService = _chunk53B6NPGAjs.AssistantActionService; exports.AssistantMessage = _chunk53B6NPGAjs.AssistantMessage; exports.AssistantMessageModule = _chunk53B6NPGAjs.AssistantMessageModule; exports.AssistantMessageService = _chunk53B6NPGAjs.AssistantMessageService; exports.AssistantModule = _chunk53B6NPGAjs.AssistantModule; exports.AssistantService = _chunk53B6NPGAjs.AssistantService; exports.AuditLog = _chunk53B6NPGAjs.AuditLog; exports.AuditLogModule = _chunk53B6NPGAjs.AuditLogModule; exports.AuditLogService = _chunk53B6NPGAjs.AuditLogService; exports.Auth = _chunk53B6NPGAjs.Auth; exports.AuthComponent = _chunk53B6NPGAjs.AuthComponent; exports.AuthModule = _chunk53B6NPGAjs.AuthModule; exports.AuthService = _chunk53B6NPGAjs.AuthService; exports.AuthorModule = _chunk53B6NPGAjs.AuthorModule; exports.BackupCodeVerify = _chunk53B6NPGAjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunk53B6NPGAjs.BackupCodeVerifyModule; exports.Billing = _chunk53B6NPGAjs.Billing; exports.BillingModule = _chunk53B6NPGAjs.BillingModule; exports.BillingService = _chunk53B6NPGAjs.BillingService; exports.BlockNoteDiffUtil = _chunk53B6NPGAjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunk53B6NPGAjs.BlockNoteWordDiffRendererUtil; exports.Chunk = _chunk53B6NPGAjs.Chunk; exports.ChunkModule = _chunk53B6NPGAjs.ChunkModule; exports.ClientAbstractService = _chunk53B6NPGAjs.ClientAbstractService; exports.ClientHttpMethod = _chunk53B6NPGAjs.ClientHttpMethod; exports.Company = _chunk53B6NPGAjs.Company; exports.CompanyFields = _chunk53B6NPGAjs.CompanyFields; exports.CompanyModule = _chunk53B6NPGAjs.CompanyModule; exports.CompanyService = _chunk53B6NPGAjs.CompanyService; exports.Content = _chunk53B6NPGAjs.Content; exports.ContentFields = _chunk53B6NPGAjs.ContentFields; exports.ContentModule = _chunk53B6NPGAjs.ContentModule; exports.ContentService = _chunk53B6NPGAjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunk53B6NPGAjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunkFPO4DLZNjs.DataClassRegistry; exports.DataClassRegistry = _chunkFPO4DLZNjs.DataClassRegistry; exports.EndpointCreator = _chunk53B6NPGAjs.EndpointCreator; exports.EntityAiStatus = _chunk53B6NPGAjs.EntityAiStatus; exports.Feature = _chunk53B6NPGAjs.Feature; exports.FeatureModule = _chunk53B6NPGAjs.FeatureModule; exports.FeatureService = _chunk53B6NPGAjs.FeatureService; exports.HowTo = _chunk53B6NPGAjs.HowTo; exports.HowToFields = _chunk53B6NPGAjs.HowToFields; exports.HowToModule = _chunk53B6NPGAjs.HowToModule; exports.HowToService = _chunk53B6NPGAjs.HowToService; exports.HttpMethod = _chunk53B6NPGAjs.HttpMethod; exports.InvoiceStatus = _chunk53B6NPGAjs.InvoiceStatus; exports.JsonApiDataFactory = _chunkFPO4DLZNjs.JsonApiDataFactory; exports.MOBILE_BREAKPOINT = _chunk53B6NPGAjs.MOBILE_BREAKPOINT; exports.Module = _chunk53B6NPGAjs.Module; exports.ModuleModule = _chunk53B6NPGAjs.ModuleModule; exports.ModulePathsModule = _chunk53B6NPGAjs.ModulePathsModule; exports.ModuleRegistrar = _chunk53B6NPGAjs.ModuleRegistrar; exports.ModuleRegistry = _chunk53B6NPGAjs.ModuleRegistry; exports.Modules = _chunk53B6NPGAjs.Modules; exports.Notification = _chunk53B6NPGAjs.Notification; exports.NotificationFields = _chunk53B6NPGAjs.NotificationFields; exports.NotificationModule = _chunk53B6NPGAjs.NotificationModule; exports.NotificationService = _chunk53B6NPGAjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunk53B6NPGAjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunk53B6NPGAjs.OAuthClient; exports.OAuthModule = _chunk53B6NPGAjs.OAuthModule; exports.OAuthService = _chunk53B6NPGAjs.OAuthService; exports.Passkey = _chunk53B6NPGAjs.Passkey; exports.PasskeyAuthenticationOptions = _chunk53B6NPGAjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunk53B6NPGAjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunk53B6NPGAjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunk53B6NPGAjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunk53B6NPGAjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunk53B6NPGAjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunk53B6NPGAjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunk53B6NPGAjs.PasskeyRename; exports.PasskeyRenameModule = _chunk53B6NPGAjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunk53B6NPGAjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunk53B6NPGAjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunk53B6NPGAjs.PaymentMethod; exports.PermissionMappingModule = _chunk53B6NPGAjs.PermissionMappingModule; exports.Push = _chunk53B6NPGAjs.Push; exports.PushModule = _chunk53B6NPGAjs.PushModule; exports.PushService = _chunk53B6NPGAjs.PushService; exports.RbacMatrixModule = _chunk53B6NPGAjs.RbacMatrixModule; exports.ReferralModule = _chunk53B6NPGAjs.ReferralModule; exports.ReferralService = _chunk53B6NPGAjs.ReferralService; exports.ReferralStats = _chunk53B6NPGAjs.ReferralStats; exports.ReferralStatsModule = _chunk53B6NPGAjs.ReferralStatsModule; exports.RehydrationFactory = _chunk53B6NPGAjs.RehydrationFactory; exports.Role = _chunk53B6NPGAjs.Role; exports.RoleFields = _chunk53B6NPGAjs.RoleFields; exports.RoleModule = _chunk53B6NPGAjs.RoleModule; exports.RoleService = _chunk53B6NPGAjs.RoleService; exports.S3 = _chunk53B6NPGAjs.S3; exports.S3Module = _chunk53B6NPGAjs.S3Module; exports.S3Service = _chunk53B6NPGAjs.S3Service; exports.StripeCustomer = _chunk53B6NPGAjs.StripeCustomer; exports.StripeCustomerModule = _chunk53B6NPGAjs.StripeCustomerModule; exports.StripeCustomerService = _chunk53B6NPGAjs.StripeCustomerService; exports.StripeInvoice = _chunk53B6NPGAjs.StripeInvoice; exports.StripeInvoiceModule = _chunk53B6NPGAjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunk53B6NPGAjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunk53B6NPGAjs.StripePaymentMethodModule; exports.StripePrice = _chunk53B6NPGAjs.StripePrice; exports.StripePriceFields = _chunk53B6NPGAjs.StripePriceFields; exports.StripePriceModule = _chunk53B6NPGAjs.StripePriceModule; exports.StripePriceService = _chunk53B6NPGAjs.StripePriceService; exports.StripeProduct = _chunk53B6NPGAjs.StripeProduct; exports.StripeProductFields = _chunk53B6NPGAjs.StripeProductFields; exports.StripeProductModule = _chunk53B6NPGAjs.StripeProductModule; exports.StripeProductService = _chunk53B6NPGAjs.StripeProductService; exports.StripePromotionCode = _chunk53B6NPGAjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunk53B6NPGAjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunk53B6NPGAjs.StripePromotionCodeService; exports.StripeSubscription = _chunk53B6NPGAjs.StripeSubscription; exports.StripeSubscriptionModule = _chunk53B6NPGAjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunk53B6NPGAjs.StripeSubscriptionService; exports.StripeUsage = _chunk53B6NPGAjs.StripeUsage; exports.StripeUsageModule = _chunk53B6NPGAjs.StripeUsageModule; exports.StripeUsageService = _chunk53B6NPGAjs.StripeUsageService; exports.SubscriptionStatus = _chunk53B6NPGAjs.SubscriptionStatus; exports.TableOptions = _chunk53B6NPGAjs.TableOptions; exports.TokenUsageAdminBreakdownModule = _chunk53B6NPGAjs.TokenUsageAdminBreakdownModule; exports.TokenUsageAdminSummaryModule = _chunk53B6NPGAjs.TokenUsageAdminSummaryModule; exports.TokenUsageAdminTimelineModule = _chunk53B6NPGAjs.TokenUsageAdminTimelineModule; exports.TotpAuthenticator = _chunk53B6NPGAjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunk53B6NPGAjs.TotpAuthenticatorModule; exports.TotpSetup = _chunk53B6NPGAjs.TotpSetup; exports.TotpSetupModule = _chunk53B6NPGAjs.TotpSetupModule; exports.TotpVerify = _chunk53B6NPGAjs.TotpVerify; exports.TotpVerifyLogin = _chunk53B6NPGAjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunk53B6NPGAjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunk53B6NPGAjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunk53B6NPGAjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunk53B6NPGAjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunk53B6NPGAjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunk53B6NPGAjs.TwoFactorEnableModule; exports.TwoFactorService = _chunk53B6NPGAjs.TwoFactorService; exports.TwoFactorStatus = _chunk53B6NPGAjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunk53B6NPGAjs.TwoFactorStatusModule; exports.User = _chunk53B6NPGAjs.User; exports.UserFields = _chunk53B6NPGAjs.UserFields; exports.UserModule = _chunk53B6NPGAjs.UserModule; exports.UserService = _chunk53B6NPGAjs.UserService; exports.VIEWPORT_COOKIE_NAME = _chunk53B6NPGAjs.VIEWPORT_COOKIE_NAME; exports.Waitlist = _chunk53B6NPGAjs.Waitlist; exports.WaitlistModule = _chunk53B6NPGAjs.WaitlistModule; exports.WaitlistService = _chunk53B6NPGAjs.WaitlistService; exports.WaitlistStats = _chunk53B6NPGAjs.WaitlistStats; exports.WaitlistStatsModule = _chunk53B6NPGAjs.WaitlistStatsModule; exports.checkPermissions = _chunk53B6NPGAjs.checkPermissions; exports.checkPermissionsFromServer = _chunk53B6NPGAjs.checkPermissionsFromServer; exports.clearLastApiMeta = _chunk53B6NPGAjs.clearLastApiMeta; exports.clearLastApiTotal = _chunk53B6NPGAjs.clearLastApiTotal; exports.cn = _chunk53B6NPGAjs.cn; exports.composeRefs = _chunk53B6NPGAjs.composeRefs; exports.configureTokenUsage = _chunk53B6NPGAjs.configureTokenUsage; exports.createJsonApiInclusion = _chunk53B6NPGAjs.createJsonApiInclusion; exports.dismissToast = _chunk53B6NPGAjs.dismissToast; exports.entityObjectSchema = _chunk53B6NPGAjs.entityObjectSchema; exports.exists = _chunk53B6NPGAjs.exists; exports.formatCodiceFiscale = _chunk53B6NPGAjs.formatCodiceFiscale; exports.formatDate = _chunk53B6NPGAjs.formatDate; exports.formatLocalDate = _chunk53B6NPGAjs.formatLocalDate; exports.formatPartitaIva = _chunk53B6NPGAjs.formatPartitaIva; exports.getBootstrapper = _chunkFPO4DLZNjs.getBootstrapper; exports.getClientGlobalErrorHandler = _chunk53B6NPGAjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunk53B6NPGAjs.getGlobalErrorHandler; exports.getIcon = _chunk53B6NPGAjs.getIcon; exports.getIconByModule = _chunk53B6NPGAjs.getIconByModule; exports.getIconByModuleName = _chunk53B6NPGAjs.getIconByModuleName; exports.getInitials = _chunk53B6NPGAjs.getInitials; exports.getLastApiMeta = _chunk53B6NPGAjs.getLastApiMeta; exports.getLastApiTotal = _chunk53B6NPGAjs.getLastApiTotal; exports.getLucideIcon = _chunk53B6NPGAjs.getLucideIcon; exports.getLucideIconByModule = _chunk53B6NPGAjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunk53B6NPGAjs.getLucideIconByModuleName; exports.getTableComponents = _chunk53B6NPGAjs.getTableComponents; exports.getTableOptions = _chunk53B6NPGAjs.getTableOptions; exports.getTokenUsageCurrency = _chunk53B6NPGAjs.getTokenUsageCurrency; exports.getValueFromPath = _chunk53B6NPGAjs.getValueFromPath; exports.hasBootstrapper = _chunkFPO4DLZNjs.hasBootstrapper; exports.isRemoteImageSrc = _chunk53B6NPGAjs.isRemoteImageSrc; exports.rehydrate = _chunk53B6NPGAjs.rehydrate; exports.rehydrateList = _chunk53B6NPGAjs.rehydrateList; exports.resetBootstrapStore = _chunkFPO4DLZNjs.resetBootstrapStore; exports.setBootstrapper = _chunkFPO4DLZNjs.setBootstrapper; exports.setClientGlobalErrorHandler = _chunk53B6NPGAjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunk53B6NPGAjs.setGlobalErrorHandler; exports.showCustomToast = _chunk53B6NPGAjs.showCustomToast; exports.showError = _chunk53B6NPGAjs.showError; exports.showToast = _chunk53B6NPGAjs.showToast; exports.tokenUsageModules = _chunk53B6NPGAjs.tokenUsageModules; exports.translateData = _chunkFPO4DLZNjs.translateData; exports.translateResponse = _chunkFPO4DLZNjs.translateResponse; exports.tryBootstrap = _chunkFPO4DLZNjs.tryBootstrap; exports.useComposedRefs = _chunk53B6NPGAjs.useComposedRefs; exports.useIsMobile = _chunk53B6NPGAjs.useIsMobile; exports.userObjectSchema = _chunk53B6NPGAjs.userObjectSchema; exports.validateCodiceFiscale = _chunk53B6NPGAjs.validateCodiceFiscale; exports.validateItalianTaxCode = _chunk53B6NPGAjs.validateItalianTaxCode; exports.validatePartitaIva = _chunk53B6NPGAjs.validatePartitaIva;
|
|
417
421
|
//# sourceMappingURL=index.js.map
|
package/dist/core/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/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;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;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;AACF,
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/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;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;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;AACF,i1YAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"}
|
package/dist/core/index.mjs
CHANGED
|
@@ -104,9 +104,11 @@ import {
|
|
|
104
104
|
StripeInvoiceService,
|
|
105
105
|
StripePaymentMethodModule,
|
|
106
106
|
StripePrice,
|
|
107
|
+
StripePriceFields,
|
|
107
108
|
StripePriceModule,
|
|
108
109
|
StripePriceService,
|
|
109
110
|
StripeProduct,
|
|
111
|
+
StripeProductFields,
|
|
110
112
|
StripeProductModule,
|
|
111
113
|
StripeProductService,
|
|
112
114
|
StripePromotionCode,
|
|
@@ -193,7 +195,7 @@ import {
|
|
|
193
195
|
validateCodiceFiscale,
|
|
194
196
|
validateItalianTaxCode,
|
|
195
197
|
validatePartitaIva
|
|
196
|
-
} from "../chunk-
|
|
198
|
+
} from "../chunk-TWXKAY34.mjs";
|
|
197
199
|
import "../chunk-AUXK7QSA.mjs";
|
|
198
200
|
import "../chunk-C7C7VY4F.mjs";
|
|
199
201
|
import {
|
|
@@ -317,9 +319,11 @@ export {
|
|
|
317
319
|
StripeInvoiceService,
|
|
318
320
|
StripePaymentMethodModule,
|
|
319
321
|
StripePrice,
|
|
322
|
+
StripePriceFields,
|
|
320
323
|
StripePriceModule,
|
|
321
324
|
StripePriceService,
|
|
322
325
|
StripeProduct,
|
|
326
|
+
StripeProductFields,
|
|
323
327
|
StripeProductModule,
|
|
324
328
|
StripeProductService,
|
|
325
329
|
StripePromotionCode,
|