@carlonicora/nextjs-jsonapi 2.4.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BlockNoteEditor-7WGCH2KB.js → BlockNoteEditor-CDTU6DRN.js} +19 -19
- package/dist/{BlockNoteEditor-7WGCH2KB.js.map → BlockNoteEditor-CDTU6DRN.js.map} +1 -1
- package/dist/{BlockNoteEditor-GWAV5ESO.mjs → BlockNoteEditor-VVAY73V2.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-V66AZWPG.js → chunk-53B6NPGA.js} +278 -8
- package/dist/chunk-53B6NPGA.js.map +1 -0
- package/dist/{chunk-M2EGUO2F.mjs → chunk-J54546YC.mjs} +1608 -1419
- package/dist/chunk-J54546YC.mjs.map +1 -0
- package/dist/{chunk-TOKHHZSP.js → chunk-JKGEJGSD.js} +7 -7
- package/dist/{chunk-TOKHHZSP.js.map → chunk-JKGEJGSD.js.map} +1 -1
- package/dist/{chunk-3LVSA7IM.mjs → chunk-PHEFWL6L.mjs} +2 -2
- package/dist/{chunk-LCCRUWWY.mjs → chunk-TWXKAY34.mjs} +273 -3
- package/dist/chunk-TWXKAY34.mjs.map +1 -0
- package/dist/{chunk-GYGMEDVS.js → chunk-UGNLKDI6.js} +1012 -823
- package/dist/chunk-UGNLKDI6.js.map +1 -0
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.d.mts +16 -1
- package/dist/components/index.d.ts +16 -1
- package/dist/components/index.js +4 -4
- package/dist/components/index.mjs +3 -3
- package/dist/{tokenusage-admin.module-5wJ_tZTj.d.ts → config-BIjrg5wd.d.ts} +39 -1
- package/dist/{tokenusage-admin.module-DQVT4O4j.d.mts → config-BRUjtCd1.d.mts} +39 -1
- package/dist/contexts/index.js +4 -4
- package/dist/contexts/index.mjs +3 -3
- package/dist/core/index.d.mts +22 -3
- package/dist/core/index.d.ts +22 -3
- package/dist/core/index.js +12 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +11 -1
- package/dist/features/help/index.js +37 -37
- package/dist/features/help/index.mjs +3 -3
- package/dist/features/tokenusage/index.d.mts +413 -14
- package/dist/features/tokenusage/index.d.ts +413 -14
- package/dist/features/tokenusage/index.js +481 -120
- package/dist/features/tokenusage/index.js.map +1 -1
- package/dist/features/tokenusage/index.mjs +431 -70
- package/dist/features/tokenusage/index.mjs.map +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +13 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -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/core/index.ts +10 -0
- package/src/core/registry/ModuleRegistry.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/tokenusage/components/TokenUsageAdminContainer.tsx +20 -4
- package/src/features/tokenusage/components/TokenUsageAdminTiles.tsx +31 -18
- package/src/features/tokenusage/components/TokenUsageBreakdownTable.tsx +13 -13
- package/src/features/tokenusage/components/TokenUsageRankedBar.tsx +24 -7
- package/src/features/tokenusage/components/TokenUsageReportContainer.tsx +102 -0
- package/src/features/tokenusage/components/TokenUsageReportFilterBar.tsx +34 -0
- package/src/features/tokenusage/components/TokenUsageReportTiles.tsx +161 -0
- package/src/features/tokenusage/components/TokenUsageTimelineChart.tsx +15 -13
- package/src/features/tokenusage/components/__tests__/TokenUsageAdminTiles.spec.tsx +4 -2
- package/src/features/tokenusage/components/__tests__/TokenUsageRankedBar.spec.tsx +3 -1
- package/src/features/tokenusage/contexts/TokenUsageAdminContext.tsx +6 -3
- package/src/features/tokenusage/contexts/TokenUsageReportContext.tsx +199 -0
- package/src/features/tokenusage/data/TokenUsageReportService.ts +65 -0
- package/src/features/tokenusage/data/index.ts +9 -0
- package/src/features/tokenusage/data/tokenusage-report-breakdown.interface.ts +12 -0
- package/src/features/tokenusage/data/tokenusage-report-breakdown.ts +94 -0
- package/src/features/tokenusage/data/tokenusage-report-summary.interface.ts +12 -0
- package/src/features/tokenusage/data/tokenusage-report-summary.ts +87 -0
- package/src/features/tokenusage/data/tokenusage-report-timeline.interface.ts +13 -0
- package/src/features/tokenusage/data/tokenusage-report-timeline.ts +94 -0
- package/src/features/tokenusage/data/tokenusage-report.types.ts +51 -0
- package/src/features/tokenusage/i18n-keys.ts +28 -0
- package/src/features/tokenusage/index.ts +18 -0
- package/src/features/tokenusage/lib/config.ts +22 -0
- package/src/features/tokenusage/lib/formatters.ts +100 -0
- package/src/features/tokenusage/lib/metrics.ts +8 -26
- package/src/features/tokenusage/lib/palette.ts +41 -14
- package/src/features/tokenusage/tokenusage-admin.module.ts +4 -0
- package/src/features/tokenusage/tokenusage.modules.ts +40 -0
- package/src/shadcnui/ui/chart.tsx +30 -3
- package/dist/chunk-GYGMEDVS.js.map +0 -1
- package/dist/chunk-LCCRUWWY.mjs.map +0 -1
- package/dist/chunk-M2EGUO2F.mjs.map +0 -1
- package/dist/chunk-V66AZWPG.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-GWAV5ESO.mjs.map → BlockNoteEditor-VVAY73V2.mjs.map} +0 -0
- /package/dist/{chunk-3LVSA7IM.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 _chunkUGNLKDI6js = require('../chunk-UGNLKDI6.js');
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
@@ -43,7 +43,7 @@ var _chunkGYGMEDVSjs = require('../chunk-GYGMEDVS.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 _chunkTOKHHZSPjs = require('../chunk-TOKHHZSP.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 = _chunkUGNLKDI6js.JsonApiProvider; exports.TableGeneratorRegistry = _chunkUGNLKDI6js.TableGeneratorRegistry; exports.buildClientUrl = _chunk53B6NPGAjs.buildClientUrl; exports.computeLayeredLayout = _chunkUGNLKDI6js.computeLayeredLayout; exports.configureClientConfig = _chunkJKGEJGSDjs.configureClientConfig; exports.configureClientJsonApi = _chunk53B6NPGAjs.configureClientJsonApi; exports.configureI18n = _chunkJKGEJGSDjs.configureI18n; exports.configureJsonApi = _chunkJKGEJGSDjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.fitLayeredLayoutToAspectRatio = _chunkUGNLKDI6js.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 = _chunkUGNLKDI6js.registerTableGenerator; exports.tableGeneratorRegistry = _chunkUGNLKDI6js.tableGeneratorRegistry; exports.useContentTableStructure = _chunkUGNLKDI6js.useContentTableStructure; exports.useCustomD3Graph = _chunkUGNLKDI6js.useCustomD3Graph; exports.useDataListRetriever = _chunkUGNLKDI6js.useDataListRetriever; exports.useDebounce = _chunkUGNLKDI6js.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 = _chunkUGNLKDI6js.useJsonApiGet; exports.useJsonApiMutation = _chunkUGNLKDI6js.useJsonApiMutation; exports.useNotificationSync = _chunkUGNLKDI6js.useNotificationSync; exports.useOAuthClient = _chunkUGNLKDI6js.useOAuthClient; exports.useOAuthClients = _chunkUGNLKDI6js.useOAuthClients; exports.useOAuthConsent = _chunkUGNLKDI6js.useOAuthConsent; exports.usePageTracker = _chunkUGNLKDI6js.usePageTracker; exports.usePageUrlGenerator = _chunkUGNLKDI6js.usePageUrlGenerator; exports.useRehydration = _chunkUGNLKDI6js.useRehydration; exports.useRehydrationList = _chunkUGNLKDI6js.useRehydrationList; exports.useRoleTableStructure = _chunkUGNLKDI6js.useRoleTableStructure; exports.useSocket = _chunkUGNLKDI6js.useSocket; exports.useSubscriptionStatus = _chunkUGNLKDI6js.useSubscriptionStatus; exports.useTableGenerator = _chunkUGNLKDI6js.useTableGenerator; exports.useUrlRewriter = _chunkUGNLKDI6js.useUrlRewriter; exports.useUserSearch = _chunkUGNLKDI6js.useUserSearch; exports.useUserTableStructure = _chunkUGNLKDI6js.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-J54546YC.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";
|
|
@@ -2534,12 +2534,27 @@ declare const ChartStyle: ({ id, config }: {
|
|
|
2534
2534
|
config: ChartConfig;
|
|
2535
2535
|
}) => React$1.JSX.Element | null;
|
|
2536
2536
|
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
2537
|
-
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React$1.ComponentProps<"div"> & {
|
|
2537
|
+
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, valueFormatter, hideZeroValues, color, nameKey, labelKey, }: React$1.ComponentProps<"div"> & {
|
|
2538
2538
|
active?: boolean;
|
|
2539
2539
|
payload?: PayloadItem[];
|
|
2540
2540
|
label?: string | number;
|
|
2541
2541
|
labelFormatter?: (label: unknown, payload: PayloadItem[]) => React$1.ReactNode;
|
|
2542
2542
|
formatter?: (value: unknown, name: string, item: PayloadItem, index: number, payload: unknown) => React$1.ReactNode;
|
|
2543
|
+
/**
|
|
2544
|
+
* Formats the VALUE half of a row while keeping the default layout — colour
|
|
2545
|
+
* swatch, series name, alignment. `formatter` replaces the whole row, so it
|
|
2546
|
+
* is the wrong tool when all a chart needs is its own number formatting.
|
|
2547
|
+
* Defaults to `toLocaleString()`, which is what every existing caller gets.
|
|
2548
|
+
*/
|
|
2549
|
+
valueFormatter?: (value: number | string) => React$1.ReactNode;
|
|
2550
|
+
/**
|
|
2551
|
+
* Drops rows whose value is zero. On a stacked chart every series appears in
|
|
2552
|
+
* every bucket's payload, so a bucket with one active series still lists all
|
|
2553
|
+
* of them — the reader has to scan a column of zeros to find the one number
|
|
2554
|
+
* that matters. Off by default: a chart comparing a fixed set of series may
|
|
2555
|
+
* want the zeros visible.
|
|
2556
|
+
*/
|
|
2557
|
+
hideZeroValues?: boolean;
|
|
2543
2558
|
hideLabel?: boolean;
|
|
2544
2559
|
hideIndicator?: boolean;
|
|
2545
2560
|
indicator?: "line" | "dot" | "dashed";
|
|
@@ -2534,12 +2534,27 @@ declare const ChartStyle: ({ id, config }: {
|
|
|
2534
2534
|
config: ChartConfig;
|
|
2535
2535
|
}) => React$1.JSX.Element | null;
|
|
2536
2536
|
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
2537
|
-
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React$1.ComponentProps<"div"> & {
|
|
2537
|
+
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, valueFormatter, hideZeroValues, color, nameKey, labelKey, }: React$1.ComponentProps<"div"> & {
|
|
2538
2538
|
active?: boolean;
|
|
2539
2539
|
payload?: PayloadItem[];
|
|
2540
2540
|
label?: string | number;
|
|
2541
2541
|
labelFormatter?: (label: unknown, payload: PayloadItem[]) => React$1.ReactNode;
|
|
2542
2542
|
formatter?: (value: unknown, name: string, item: PayloadItem, index: number, payload: unknown) => React$1.ReactNode;
|
|
2543
|
+
/**
|
|
2544
|
+
* Formats the VALUE half of a row while keeping the default layout — colour
|
|
2545
|
+
* swatch, series name, alignment. `formatter` replaces the whole row, so it
|
|
2546
|
+
* is the wrong tool when all a chart needs is its own number formatting.
|
|
2547
|
+
* Defaults to `toLocaleString()`, which is what every existing caller gets.
|
|
2548
|
+
*/
|
|
2549
|
+
valueFormatter?: (value: number | string) => React$1.ReactNode;
|
|
2550
|
+
/**
|
|
2551
|
+
* Drops rows whose value is zero. On a stacked chart every series appears in
|
|
2552
|
+
* every bucket's payload, so a bucket with one active series still lists all
|
|
2553
|
+
* of them — the reader has to scan a column of zeros to find the one number
|
|
2554
|
+
* that matters. Off by default: a chart comparing a fixed set of series may
|
|
2555
|
+
* want the zeros visible.
|
|
2556
|
+
*/
|
|
2557
|
+
hideZeroValues?: boolean;
|
|
2543
2558
|
hideLabel?: boolean;
|
|
2544
2559
|
hideIndicator?: boolean;
|
|
2545
2560
|
indicator?: "line" | "dot" | "dashed";
|
package/dist/components/index.js
CHANGED
|
@@ -489,14 +489,14 @@
|
|
|
489
489
|
|
|
490
490
|
|
|
491
491
|
|
|
492
|
-
var
|
|
493
|
-
require('../chunk-
|
|
492
|
+
var _chunkUGNLKDI6js = require('../chunk-UGNLKDI6.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 = _chunkGYGMEDVSjs.ADMINISTRATION_I18N_KEYS; exports.AcceptInvitation = _chunkGYGMEDVSjs.AcceptInvitation; exports.Accordion = _chunkGYGMEDVSjs.Accordion; exports.AccordionContent = _chunkGYGMEDVSjs.AccordionContent; exports.AccordionItem = _chunkGYGMEDVSjs.AccordionItem; exports.AccordionTrigger = _chunkGYGMEDVSjs.AccordionTrigger; exports.ActivateAccount = _chunkGYGMEDVSjs.ActivateAccount; exports.AddUserToRole = _chunkGYGMEDVSjs.AddUserToRole; exports.AdminCompanyContainer = _chunkGYGMEDVSjs.AdminCompanyContainer; exports.AdminIndexContainer = _chunkGYGMEDVSjs.AdminIndexContainer; exports.AdminIndexGrid = _chunkGYGMEDVSjs.AdminIndexGrid; exports.AdminUsersList = _chunkGYGMEDVSjs.AdminUsersList; exports.Alert = _chunkGYGMEDVSjs.Alert; exports.AlertAction = _chunkGYGMEDVSjs.AlertAction; exports.AlertDescription = _chunkGYGMEDVSjs.AlertDescription; exports.AlertDialog = _chunkGYGMEDVSjs.AlertDialog; exports.AlertDialogAction = _chunkGYGMEDVSjs.AlertDialogAction; exports.AlertDialogCancel = _chunkGYGMEDVSjs.AlertDialogCancel; exports.AlertDialogContent = _chunkGYGMEDVSjs.AlertDialogContent; exports.AlertDialogDescription = _chunkGYGMEDVSjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkGYGMEDVSjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkGYGMEDVSjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkGYGMEDVSjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkGYGMEDVSjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkGYGMEDVSjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkGYGMEDVSjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkGYGMEDVSjs.AlertDialogTrigger; exports.AlertTitle = _chunkGYGMEDVSjs.AlertTitle; exports.AllUsersListContainer = _chunkGYGMEDVSjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkGYGMEDVSjs.AllowedUsersDetails; exports.ApprovalActionCard = _chunkGYGMEDVSjs.ApprovalActionCard; exports.AssistantBlockNoteComposer = _chunkGYGMEDVSjs.AssistantBlockNoteComposer; exports.AssistantContainer = _chunkGYGMEDVSjs.AssistantContainer; exports.AssistantContainerWithApprovals = _chunkGYGMEDVSjs.AssistantContainerWithApprovals; exports.AssistantPageContainer = _chunkGYGMEDVSjs.AssistantPageContainer; exports.AttributeElement = _chunkGYGMEDVSjs.AttributeElement; exports.AuthContainer = _chunkGYGMEDVSjs.AuthContainer; exports.Avatar = _chunkGYGMEDVSjs.Avatar; exports.AvatarBadge = _chunkGYGMEDVSjs.AvatarBadge; exports.AvatarFallback = _chunkGYGMEDVSjs.AvatarFallback; exports.AvatarGroup = _chunkGYGMEDVSjs.AvatarGroup; exports.AvatarGroupCount = _chunkGYGMEDVSjs.AvatarGroupCount; exports.AvatarImage = _chunkGYGMEDVSjs.AvatarImage; exports.BackupCodesDialog = _chunkGYGMEDVSjs.BackupCodesDialog; exports.Badge = _chunkGYGMEDVSjs.Badge; exports.BlockNoteEditorContainer = _chunkGYGMEDVSjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkGYGMEDVSjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkGYGMEDVSjs.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunkGYGMEDVSjs.BlockNoteViewerContainer; exports.Board = _chunkGYGMEDVSjs.KanbanBoard; exports.Breadcrumb = _chunkGYGMEDVSjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkGYGMEDVSjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkGYGMEDVSjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkGYGMEDVSjs.BreadcrumbLink; exports.BreadcrumbList = _chunkGYGMEDVSjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkGYGMEDVSjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkGYGMEDVSjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkGYGMEDVSjs.BreadcrumbSeparator; exports.Button = _chunkGYGMEDVSjs.Button; exports.Calendar = _chunkGYGMEDVSjs.Calendar; exports.CalendarDayButton = _chunkGYGMEDVSjs.CalendarDayButton; exports.Card = _chunkGYGMEDVSjs.Card; exports.CardAction = _chunkGYGMEDVSjs.CardAction; exports.CardContent = _chunkGYGMEDVSjs.CardContent; exports.CardDescription = _chunkGYGMEDVSjs.CardDescription; exports.CardFooter = _chunkGYGMEDVSjs.CardFooter; exports.CardHeader = _chunkGYGMEDVSjs.CardHeader; exports.CardTitle = _chunkGYGMEDVSjs.CardTitle; exports.Carousel = _chunkGYGMEDVSjs.Carousel; exports.CarouselContent = _chunkGYGMEDVSjs.CarouselContent; exports.CarouselItem = _chunkGYGMEDVSjs.CarouselItem; exports.CarouselNext = _chunkGYGMEDVSjs.CarouselNext; exports.CarouselPrevious = _chunkGYGMEDVSjs.CarouselPrevious; exports.ChartContainer = _chunkGYGMEDVSjs.ChartContainer; exports.ChartLegend = _chunkGYGMEDVSjs.ChartLegend; exports.ChartLegendContent = _chunkGYGMEDVSjs.ChartLegendContent; exports.ChartStyle = _chunkGYGMEDVSjs.ChartStyle; exports.ChartTooltip = _chunkGYGMEDVSjs.ChartTooltip; exports.ChartTooltipContent = _chunkGYGMEDVSjs.ChartTooltipContent; exports.Checkbox = _chunkGYGMEDVSjs.Checkbox; exports.Collapsible = _chunkGYGMEDVSjs.Collapsible; exports.CollapsibleContent = _chunkGYGMEDVSjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkGYGMEDVSjs.CollapsibleTrigger; exports.Column = _chunkGYGMEDVSjs.KanbanColumn; exports.ColumnHandle = _chunkGYGMEDVSjs.KanbanColumnHandle; exports.Combobox = _chunkGYGMEDVSjs.Combobox; exports.ComboboxChip = _chunkGYGMEDVSjs.ComboboxChip; exports.ComboboxChips = _chunkGYGMEDVSjs.ComboboxChips; exports.ComboboxChipsInput = _chunkGYGMEDVSjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkGYGMEDVSjs.ComboboxCollection; exports.ComboboxContent = _chunkGYGMEDVSjs.ComboboxContent; exports.ComboboxEmpty = _chunkGYGMEDVSjs.ComboboxEmpty; exports.ComboboxGroup = _chunkGYGMEDVSjs.ComboboxGroup; exports.ComboboxInput = _chunkGYGMEDVSjs.ComboboxInput; exports.ComboboxItem = _chunkGYGMEDVSjs.ComboboxItem; exports.ComboboxLabel = _chunkGYGMEDVSjs.ComboboxLabel; exports.ComboboxList = _chunkGYGMEDVSjs.ComboboxList; exports.ComboboxSeparator = _chunkGYGMEDVSjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkGYGMEDVSjs.ComboboxTrigger; exports.ComboboxValue = _chunkGYGMEDVSjs.ComboboxValue; exports.Command = _chunkGYGMEDVSjs.Command; exports.CommandDialog = _chunkGYGMEDVSjs.CommandDialog; exports.CommandEmpty = _chunkGYGMEDVSjs.CommandEmpty; exports.CommandGroup = _chunkGYGMEDVSjs.CommandGroup; exports.CommandInput = _chunkGYGMEDVSjs.CommandInput; exports.CommandItem = _chunkGYGMEDVSjs.CommandItem; exports.CommandList = _chunkGYGMEDVSjs.CommandList; exports.CommandSeparator = _chunkGYGMEDVSjs.CommandSeparator; exports.CommandShortcut = _chunkGYGMEDVSjs.CommandShortcut; exports.CommonAddTrigger = _chunkGYGMEDVSjs.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunkGYGMEDVSjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkGYGMEDVSjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkGYGMEDVSjs.CommonDeleter; exports.CommonEditorButtons = _chunkGYGMEDVSjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkGYGMEDVSjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkGYGMEDVSjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkGYGMEDVSjs.CommonEditorTrigger; exports.CompaniesList = _chunkGYGMEDVSjs.CompaniesList; exports.CompaniesListContainer = _chunkGYGMEDVSjs.CompaniesListContainer; exports.CompanyConfigurationEditor = _chunkGYGMEDVSjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkGYGMEDVSjs.CompanyContainer; exports.CompanyContent = _chunkGYGMEDVSjs.CompanyContent; exports.CompanyDeleter = _chunkGYGMEDVSjs.CompanyDeleter; exports.CompanyDetails = _chunkGYGMEDVSjs.CompanyDetails; exports.CompanyEditor = _chunkGYGMEDVSjs.CompanyEditor; exports.CompanyUsersList = _chunkGYGMEDVSjs.CompanyUsersList; exports.ConfirmDialog = _chunkGYGMEDVSjs.ConfirmDialog; exports.ContentListGrid = _chunkGYGMEDVSjs.ContentListGrid; exports.ContentListTable = _chunkGYGMEDVSjs.ContentListTable; exports.ContentTableSearch = _chunkGYGMEDVSjs.ContentTableSearch; exports.ContentTitle = _chunkGYGMEDVSjs.ContentTitle; exports.ContentsList = _chunkGYGMEDVSjs.ContentsList; exports.ContentsListById = _chunkGYGMEDVSjs.ContentsListById; exports.ContextMenu = _chunkGYGMEDVSjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkGYGMEDVSjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkGYGMEDVSjs.ContextMenuContent; exports.ContextMenuGroup = _chunkGYGMEDVSjs.ContextMenuGroup; exports.ContextMenuItem = _chunkGYGMEDVSjs.ContextMenuItem; exports.ContextMenuLabel = _chunkGYGMEDVSjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkGYGMEDVSjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkGYGMEDVSjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkGYGMEDVSjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkGYGMEDVSjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkGYGMEDVSjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkGYGMEDVSjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkGYGMEDVSjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkGYGMEDVSjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkGYGMEDVSjs.ContextMenuTrigger; exports.ContributorsList = _chunkGYGMEDVSjs.ContributorsList; exports.Cookies = _chunkGYGMEDVSjs.Cookies; exports.CurrencyInput = _chunkGYGMEDVSjs.CurrencyInput; exports.DatePickerPopover = _chunkGYGMEDVSjs.DatePickerPopover; exports.DateRangeSelector = _chunkGYGMEDVSjs.DateRangeSelector; exports.DetailField = _chunkGYGMEDVSjs.DetailField; exports.Dialog = _chunkGYGMEDVSjs.Dialog; exports.DialogClose = _chunkGYGMEDVSjs.DialogClose; exports.DialogContent = _chunkGYGMEDVSjs.DialogContent; exports.DialogDescription = _chunkGYGMEDVSjs.DialogDescription; exports.DialogFooter = _chunkGYGMEDVSjs.DialogFooter; exports.DialogHeader = _chunkGYGMEDVSjs.DialogHeader; exports.DialogOverlay = _chunkGYGMEDVSjs.DialogOverlay; exports.DialogPortal = _chunkGYGMEDVSjs.DialogPortal; exports.DialogTitle = _chunkGYGMEDVSjs.DialogTitle; exports.DialogTrigger = _chunkGYGMEDVSjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkGYGMEDVSjs.DisableTwoFactorDialog; exports.Drawer = _chunkGYGMEDVSjs.Drawer; exports.DrawerClose = _chunkGYGMEDVSjs.DrawerClose; exports.DrawerContent = _chunkGYGMEDVSjs.DrawerContent; exports.DrawerDescription = _chunkGYGMEDVSjs.DrawerDescription; exports.DrawerFooter = _chunkGYGMEDVSjs.DrawerFooter; exports.DrawerHeader = _chunkGYGMEDVSjs.DrawerHeader; exports.DrawerOverlay = _chunkGYGMEDVSjs.DrawerOverlay; exports.DrawerPortal = _chunkGYGMEDVSjs.DrawerPortal; exports.DrawerTitle = _chunkGYGMEDVSjs.DrawerTitle; exports.DrawerTrigger = _chunkGYGMEDVSjs.DrawerTrigger; exports.DropdownMenu = _chunkGYGMEDVSjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkGYGMEDVSjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkGYGMEDVSjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkGYGMEDVSjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkGYGMEDVSjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkGYGMEDVSjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkGYGMEDVSjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkGYGMEDVSjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkGYGMEDVSjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkGYGMEDVSjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkGYGMEDVSjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkGYGMEDVSjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkGYGMEDVSjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkGYGMEDVSjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkGYGMEDVSjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkGYGMEDVSjs.EditableAvatar; exports.EditorSheet = _chunkGYGMEDVSjs.EditorSheet; exports.EmptyState = _chunkGYGMEDVSjs.EmptyState; exports.EntityAvatar = _chunkGYGMEDVSjs.EntityAvatar; exports.EntityHero = _chunkGYGMEDVSjs.EntityHero; exports.EntityHeroAvatar = _chunkGYGMEDVSjs.EntityHeroAvatar; exports.EntityHeroLayout = _chunkGYGMEDVSjs.EntityHeroLayout; exports.EntityHeroMetaRow = _chunkGYGMEDVSjs.EntityHeroMetaRow; exports.EntityMultiSelector = _chunkGYGMEDVSjs.EntityMultiSelector; exports.EntitySection = _chunkGYGMEDVSjs.EntitySection; exports.EntitySelector = _chunkGYGMEDVSjs.EntitySelector; exports.ErrorDetails = _chunkGYGMEDVSjs.ErrorDetails; exports.Field = _chunkGYGMEDVSjs.Field; exports.FieldContent = _chunkGYGMEDVSjs.FieldContent; exports.FieldDescription = _chunkGYGMEDVSjs.FieldDescription; exports.FieldError = _chunkGYGMEDVSjs.FieldError; exports.FieldGroup = _chunkGYGMEDVSjs.FieldGroup; exports.FieldLabel = _chunkGYGMEDVSjs.FieldLabel; exports.FieldLegend = _chunkGYGMEDVSjs.FieldLegend; exports.FieldSeparator = _chunkGYGMEDVSjs.FieldSeparator; exports.FieldSet = _chunkGYGMEDVSjs.FieldSet; exports.FieldTitle = _chunkGYGMEDVSjs.FieldTitle; exports.FileInput = _chunkGYGMEDVSjs.FileInput; exports.FileUploader = _chunkGYGMEDVSjs.FileUploader; exports.FileUploaderContent = _chunkGYGMEDVSjs.FileUploaderContent; exports.FileUploaderItem = _chunkGYGMEDVSjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkGYGMEDVSjs.FiscalDataDisplay; exports.ForgotPassword = _chunkGYGMEDVSjs.ForgotPassword; exports.Form = _chunkGYGMEDVSjs.Form; exports.FormBlockNote = _chunkGYGMEDVSjs.FormBlockNote; exports.FormBody = _chunkGYGMEDVSjs.FormBody; exports.FormCheckbox = _chunkGYGMEDVSjs.FormCheckbox; exports.FormCol = _chunkGYGMEDVSjs.FormCol; exports.FormDate = _chunkGYGMEDVSjs.FormDate; exports.FormDateTime = _chunkGYGMEDVSjs.FormDateTime; exports.FormFeatures = _chunkGYGMEDVSjs.FormFeatures; exports.FormFieldWrapper = _chunkGYGMEDVSjs.FormFieldWrapper; exports.FormInput = _chunkGYGMEDVSjs.FormInput; exports.FormPassword = _chunkGYGMEDVSjs.FormPassword; exports.FormPlaceAutocomplete = _chunkGYGMEDVSjs.FormPlaceAutocomplete; exports.FormRoles = _chunkGYGMEDVSjs.FormRoles; exports.FormRow = _chunkGYGMEDVSjs.FormRow; exports.FormSection = _chunkGYGMEDVSjs.FormSection; exports.FormSelect = _chunkGYGMEDVSjs.FormSelect; exports.FormSlider = _chunkGYGMEDVSjs.FormSlider; exports.FormSwitch = _chunkGYGMEDVSjs.FormSwitch; exports.FormTextarea = _chunkGYGMEDVSjs.FormTextarea; exports.GdprConsentCheckbox = _chunkGYGMEDVSjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkGYGMEDVSjs.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunkGYGMEDVSjs.HEADER_ROW_MIN_H; exports.Header = _chunkGYGMEDVSjs.Header; exports.HoverCard = _chunkGYGMEDVSjs.HoverCard; exports.HoverCardContent = _chunkGYGMEDVSjs.HoverCardContent; exports.HoverCardTrigger = _chunkGYGMEDVSjs.HoverCardTrigger; exports.HowToCommand = _chunkGYGMEDVSjs.HowToCommand; exports.HowToCommandViewer = _chunkGYGMEDVSjs.HowToCommandViewer; exports.HowToContainer = _chunkGYGMEDVSjs.HowToContainer; exports.HowToContent = _chunkGYGMEDVSjs.HowToContent; exports.HowToDeleter = _chunkGYGMEDVSjs.HowToDeleter; exports.HowToDetails = _chunkGYGMEDVSjs.HowToDetails; exports.HowToEditor = _chunkGYGMEDVSjs.HowToEditor; exports.HowToList = _chunkGYGMEDVSjs.HowToList; exports.HowToListContainer = _chunkGYGMEDVSjs.HowToListContainer; exports.HowToMultiSelector = _chunkGYGMEDVSjs.HowToMultiSelector; exports.HowToSelector = _chunkGYGMEDVSjs.HowToSelector; exports.Input = _chunkGYGMEDVSjs.Input; exports.InputGroup = _chunkGYGMEDVSjs.InputGroup; exports.InputGroupAddon = _chunkGYGMEDVSjs.InputGroupAddon; exports.InputGroupButton = _chunkGYGMEDVSjs.InputGroupButton; exports.InputGroupInput = _chunkGYGMEDVSjs.InputGroupInput; exports.InputGroupText = _chunkGYGMEDVSjs.InputGroupText; exports.InputGroupTextarea = _chunkGYGMEDVSjs.InputGroupTextarea; exports.InputOTP = _chunkGYGMEDVSjs.InputOTP; exports.InputOTPGroup = _chunkGYGMEDVSjs.InputOTPGroup; exports.InputOTPSeparator = _chunkGYGMEDVSjs.InputOTPSeparator; exports.InputOTPSlot = _chunkGYGMEDVSjs.InputOTPSlot; exports.ItalianFiscalData = _chunkGYGMEDVSjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkGYGMEDVSjs.ItalianFiscalDataDisplay; exports.Item = _chunkGYGMEDVSjs.KanbanItem; exports.ItemHandle = _chunkGYGMEDVSjs.KanbanItemHandle; exports.Kanban = _chunkGYGMEDVSjs.KanbanRoot; exports.KanbanBoard = _chunkGYGMEDVSjs.KanbanBoard; exports.KanbanColumn = _chunkGYGMEDVSjs.KanbanColumn; exports.KanbanColumnHandle = _chunkGYGMEDVSjs.KanbanColumnHandle; exports.KanbanItem = _chunkGYGMEDVSjs.KanbanItem; exports.KanbanItemHandle = _chunkGYGMEDVSjs.KanbanItemHandle; exports.KanbanOverlay = _chunkGYGMEDVSjs.KanbanOverlay; exports.Label = _chunkGYGMEDVSjs.Label; exports.LandingComponent = _chunkGYGMEDVSjs.LandingComponent; exports.Link = _chunkGYGMEDVSjs.Link; exports.Login = _chunkGYGMEDVSjs.Login; exports.Logout = _chunkGYGMEDVSjs.Logout; exports.MessageItem = _chunkGYGMEDVSjs.MessageItem; exports.MessageList = _chunkGYGMEDVSjs.MessageList; exports.MessageSourcesPanel = _chunkGYGMEDVSjs.MessageSourcesPanel; exports.MicroLabel = _chunkGYGMEDVSjs.MicroLabel; exports.MobileNavigationBar = _chunkGYGMEDVSjs.MobileNavigationBar; exports.ModeToggleSwitch = _chunkGYGMEDVSjs.ModeToggleSwitch; exports.MultiSelect = _chunkGYGMEDVSjs.MultiSelect; exports.MultipleSelector = _chunkGYGMEDVSjs.MultipleSelector; exports.NavigationMenu = _chunkGYGMEDVSjs.NavigationMenu; exports.NavigationMenuContent = _chunkGYGMEDVSjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkGYGMEDVSjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkGYGMEDVSjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkGYGMEDVSjs.NavigationMenuLink; exports.NavigationMenuList = _chunkGYGMEDVSjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkGYGMEDVSjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkGYGMEDVSjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkGYGMEDVSjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkGYGMEDVSjs.NotificationMenuItem; exports.NotificationModal = _chunkGYGMEDVSjs.NotificationModal; exports.NotificationToast = _chunkGYGMEDVSjs.NotificationToast; exports.NotificationsList = _chunkGYGMEDVSjs.NotificationsList; exports.NotificationsListContainer = _chunkGYGMEDVSjs.NotificationsListContainer; exports.OAuthClientCard = _chunkGYGMEDVSjs.OAuthClientCard; exports.OAuthClientDetail = _chunkGYGMEDVSjs.OAuthClientDetail; exports.OAuthClientForm = _chunkGYGMEDVSjs.OAuthClientForm; exports.OAuthClientList = _chunkGYGMEDVSjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkGYGMEDVSjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkGYGMEDVSjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkGYGMEDVSjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkGYGMEDVSjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkGYGMEDVSjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkGYGMEDVSjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkGYGMEDVSjs.OAuthScopeSelector; exports.OnboardingCard = _chunkGYGMEDVSjs.OnboardingCard; exports.Overlay = _chunkGYGMEDVSjs.KanbanOverlay; exports.PageContainer = _chunkGYGMEDVSjs.PageContainer; exports.PageContainerContentDetails = _chunkGYGMEDVSjs.PageContainerContentDetails; exports.PageContentContainer = _chunkGYGMEDVSjs.PageContentContainer; exports.PageSection = _chunkGYGMEDVSjs.PageSection; exports.PasskeyButton = _chunkGYGMEDVSjs.PasskeyButton; exports.PasskeyList = _chunkGYGMEDVSjs.PasskeyList; exports.PasskeySetupDialog = _chunkGYGMEDVSjs.PasskeySetupDialog; exports.PasswordInput = _chunkGYGMEDVSjs.PasswordInput; exports.PlatformUsersContainer = _chunkGYGMEDVSjs.PlatformUsersContainer; exports.PlatformUsersList = _chunkGYGMEDVSjs.PlatformUsersList; exports.Popover = _chunkGYGMEDVSjs.Popover; exports.PopoverContent = _chunkGYGMEDVSjs.PopoverContent; exports.PopoverDescription = _chunkGYGMEDVSjs.PopoverDescription; exports.PopoverHeader = _chunkGYGMEDVSjs.PopoverHeader; exports.PopoverTitle = _chunkGYGMEDVSjs.PopoverTitle; exports.PopoverTrigger = _chunkGYGMEDVSjs.PopoverTrigger; exports.Progress = _chunkGYGMEDVSjs.Progress; exports.ProgressIndicator = _chunkGYGMEDVSjs.ProgressIndicator; exports.ProgressLabel = _chunkGYGMEDVSjs.ProgressLabel; exports.ProgressTrack = _chunkGYGMEDVSjs.ProgressTrack; exports.ProgressValue = _chunkGYGMEDVSjs.ProgressValue; exports.PushNotificationProvider = _chunkGYGMEDVSjs.PushNotificationProvider; exports.RadioGroup = _chunkGYGMEDVSjs.RadioGroup; exports.RadioGroupItem = _chunkGYGMEDVSjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkGYGMEDVSjs.RbacByRoleContainer; exports.RbacContainer = _chunkGYGMEDVSjs.RbacContainer; exports.RbacPermissionCell = _chunkGYGMEDVSjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkGYGMEDVSjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkGYGMEDVSjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkGYGMEDVSjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkGYGMEDVSjs.ReferralCodeCapture; exports.ReferralDialog = _chunkGYGMEDVSjs.ReferralDialog; exports.ReferralWidget = _chunkGYGMEDVSjs.ReferralWidget; exports.RefreshUser = _chunkGYGMEDVSjs.RefreshUser; exports.RelevantContentsList = _chunkGYGMEDVSjs.RelevantContentsList; exports.RelevantUsersList = _chunkGYGMEDVSjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkGYGMEDVSjs.RemoveUserFromRole; exports.ResetPassword = _chunkGYGMEDVSjs.ResetPassword; exports.ResizableHandle = _chunkGYGMEDVSjs.ResizableHandle; exports.ResizablePanel = _chunkGYGMEDVSjs.ResizablePanel; exports.ResizablePanelGroup = _chunkGYGMEDVSjs.ResizablePanelGroup; exports.RoleContainer = _chunkGYGMEDVSjs.RoleContainer; exports.RoleDetails = _chunkGYGMEDVSjs.RoleDetails; exports.RoleUsersList = _chunkGYGMEDVSjs.RoleUsersList; exports.RolesList = _chunkGYGMEDVSjs.RolesList; exports.Root = _chunkGYGMEDVSjs.KanbanRoot; exports.RoundPageContainer = _chunkGYGMEDVSjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkGYGMEDVSjs.RoundPageContainerTitle; exports.ScrollArea = _chunkGYGMEDVSjs.ScrollArea; exports.ScrollBar = _chunkGYGMEDVSjs.ScrollBar; exports.SectionHeader = _chunkGYGMEDVSjs.SectionHeader; exports.SecurityContainer = _chunkGYGMEDVSjs.SecurityContainer; exports.Select = _chunkGYGMEDVSjs.Select; exports.SelectContent = _chunkGYGMEDVSjs.SelectContent; exports.SelectGroup = _chunkGYGMEDVSjs.SelectGroup; exports.SelectItem = _chunkGYGMEDVSjs.SelectItem; exports.SelectLabel = _chunkGYGMEDVSjs.SelectLabel; exports.SelectScrollDownButton = _chunkGYGMEDVSjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkGYGMEDVSjs.SelectScrollUpButton; exports.SelectSeparator = _chunkGYGMEDVSjs.SelectSeparator; exports.SelectTrigger = _chunkGYGMEDVSjs.SelectTrigger; exports.SelectValue = _chunkGYGMEDVSjs.SelectValue; exports.Separator = _chunkGYGMEDVSjs.Separator; exports.Sheet = _chunkGYGMEDVSjs.Sheet; exports.SheetClose = _chunkGYGMEDVSjs.SheetClose; exports.SheetContent = _chunkGYGMEDVSjs.SheetContent; exports.SheetDescription = _chunkGYGMEDVSjs.SheetDescription; exports.SheetFooter = _chunkGYGMEDVSjs.SheetFooter; exports.SheetHeader = _chunkGYGMEDVSjs.SheetHeader; exports.SheetTitle = _chunkGYGMEDVSjs.SheetTitle; exports.SheetTrigger = _chunkGYGMEDVSjs.SheetTrigger; exports.Sidebar = _chunkGYGMEDVSjs.Sidebar; exports.SidebarContent = _chunkGYGMEDVSjs.SidebarContent; exports.SidebarFooter = _chunkGYGMEDVSjs.SidebarFooter; exports.SidebarGroup = _chunkGYGMEDVSjs.SidebarGroup; exports.SidebarGroupAction = _chunkGYGMEDVSjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkGYGMEDVSjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkGYGMEDVSjs.SidebarGroupLabel; exports.SidebarHeader = _chunkGYGMEDVSjs.SidebarHeader; exports.SidebarInput = _chunkGYGMEDVSjs.SidebarInput; exports.SidebarInset = _chunkGYGMEDVSjs.SidebarInset; exports.SidebarMenu = _chunkGYGMEDVSjs.SidebarMenu; exports.SidebarMenuAction = _chunkGYGMEDVSjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkGYGMEDVSjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkGYGMEDVSjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkGYGMEDVSjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkGYGMEDVSjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkGYGMEDVSjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkGYGMEDVSjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkGYGMEDVSjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkGYGMEDVSjs.SidebarProvider; exports.SidebarRail = _chunkGYGMEDVSjs.SidebarRail; exports.SidebarSeparator = _chunkGYGMEDVSjs.SidebarSeparator; exports.SidebarTrigger = _chunkGYGMEDVSjs.SidebarTrigger; exports.Skeleton = _chunkGYGMEDVSjs.Skeleton; exports.Slider = _chunkGYGMEDVSjs.Slider; exports.Spinner = _chunkGYGMEDVSjs.Spinner; exports.Switch = _chunkGYGMEDVSjs.Switch; exports.Table = _chunkGYGMEDVSjs.Table; exports.TableBody = _chunkGYGMEDVSjs.TableBody; exports.TableCaption = _chunkGYGMEDVSjs.TableCaption; exports.TableCell = _chunkGYGMEDVSjs.TableCell; exports.TableCellAvatar = _chunkGYGMEDVSjs.TableCellAvatar; exports.TableFooter = _chunkGYGMEDVSjs.TableFooter; exports.TableHead = _chunkGYGMEDVSjs.TableHead; exports.TableHeader = _chunkGYGMEDVSjs.TableHeader; exports.TableRow = _chunkGYGMEDVSjs.TableRow; exports.Tabs = _chunkGYGMEDVSjs.Tabs; exports.TabsContainer = _chunkGYGMEDVSjs.TabsContainer; exports.TabsContent = _chunkGYGMEDVSjs.TabsContent; exports.TabsList = _chunkGYGMEDVSjs.TabsList; exports.TabsTrigger = _chunkGYGMEDVSjs.TabsTrigger; exports.Textarea = _chunkGYGMEDVSjs.Textarea; exports.Toaster = _chunkGYGMEDVSjs.Toaster; exports.Toggle = _chunkGYGMEDVSjs.Toggle; exports.TokenStatusIndicator = _chunkGYGMEDVSjs.TokenStatusIndicator; exports.Tooltip = _chunkGYGMEDVSjs.Tooltip; exports.TooltipContent = _chunkGYGMEDVSjs.TooltipContent; exports.TooltipProvider = _chunkGYGMEDVSjs.TooltipProvider; exports.TooltipTrigger = _chunkGYGMEDVSjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkGYGMEDVSjs.TotpAuthenticatorList; exports.TotpInput = _chunkGYGMEDVSjs.TotpInput; exports.TotpSetupDialog = _chunkGYGMEDVSjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkGYGMEDVSjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkGYGMEDVSjs.TwoFactorSettings; exports.UserAvatar = _chunkGYGMEDVSjs.UserAvatar; exports.UserAvatarEditor = _chunkGYGMEDVSjs.UserAvatarEditor; exports.UserAvatarList = _chunkGYGMEDVSjs.UserAvatarList; exports.UserContainer = _chunkGYGMEDVSjs.UserContainer; exports.UserContent = _chunkGYGMEDVSjs.UserContent; exports.UserDeleter = _chunkGYGMEDVSjs.UserDeleter; exports.UserEditor = _chunkGYGMEDVSjs.UserEditor; exports.UserIndexContainer = _chunkGYGMEDVSjs.UserIndexContainer; exports.UserIndexDetails = _chunkGYGMEDVSjs.UserIndexDetails; exports.UserListInAdd = _chunkGYGMEDVSjs.UserListInAdd; exports.UserMultiSelect = _chunkGYGMEDVSjs.UserMultiSelect; exports.UserReactivator = _chunkGYGMEDVSjs.UserReactivator; exports.UserResentInvitationEmail = _chunkGYGMEDVSjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkGYGMEDVSjs.UserRoleAdd; exports.UserRolesList = _chunkGYGMEDVSjs.UserRolesList; exports.UserSearchPopover = _chunkGYGMEDVSjs.UserSearchPopover; exports.UserSelector = _chunkGYGMEDVSjs.UserSelector; exports.UserStanadaloneDetails = _chunkGYGMEDVSjs.UserStanadaloneDetails; exports.UsersList = _chunkGYGMEDVSjs.UsersList; exports.UsersListByContentIds = _chunkGYGMEDVSjs.UsersListByContentIds; exports.UsersListContainer = _chunkGYGMEDVSjs.UsersListContainer; exports.WaitlistConfirmation = _chunkGYGMEDVSjs.WaitlistConfirmation; exports.WaitlistForm = _chunkGYGMEDVSjs.WaitlistForm; exports.WaitlistHeroSection = _chunkGYGMEDVSjs.WaitlistHeroSection; exports.WaitlistList = _chunkGYGMEDVSjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkGYGMEDVSjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkGYGMEDVSjs.WaitlistSuccessState; exports.badgeVariants = _chunkGYGMEDVSjs.badgeVariants; exports.buttonVariants = _chunkGYGMEDVSjs.buttonVariants; exports.cellComponent = _chunkGYGMEDVSjs.cellComponent; exports.cellDate = _chunkGYGMEDVSjs.cellDate; exports.cellDateTime = _chunkGYGMEDVSjs.cellDateTime; exports.cellId = _chunkGYGMEDVSjs.cellId; exports.cellLink = _chunkGYGMEDVSjs.cellLink; exports.cellUrl = _chunkGYGMEDVSjs.cellUrl; exports.createMentionInlineContentSpec = _chunkGYGMEDVSjs.createMentionInlineContentSpec; exports.errorToast = _chunkGYGMEDVSjs.errorToast; exports.generateNotificationData = _chunkGYGMEDVSjs.generateNotificationData; exports.getIcon = _chunkV66AZWPGjs.getIcon; exports.getIconByModule = _chunkV66AZWPGjs.getIconByModule; exports.getIconByModuleName = _chunkV66AZWPGjs.getIconByModuleName; exports.getInitials = _chunkV66AZWPGjs.getInitials; exports.mentionDataAttrs = _chunkGYGMEDVSjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkGYGMEDVSjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkGYGMEDVSjs.parseFiscalData; exports.parseMentionElement = _chunkGYGMEDVSjs.parseMentionElement; exports.partitionTabs = _chunkGYGMEDVSjs.partitionTabs; exports.spinnerVariants = _chunkGYGMEDVSjs.spinnerVariants; exports.tabsListVariants = _chunkGYGMEDVSjs.tabsListVariants; exports.toggleVariants = _chunkGYGMEDVSjs.toggleVariants; exports.triggerAssociationToast = _chunkGYGMEDVSjs.triggerAssociationToast; exports.useCarousel = _chunkGYGMEDVSjs.useCarousel; exports.useComboboxAnchor = _chunkGYGMEDVSjs.useComboboxAnchor; exports.useDebounce = _chunkGYGMEDVSjs.useDebounce2; exports.useEditorDialog = _chunkGYGMEDVSjs.useEditorDialog; exports.useFileUpload = _chunkGYGMEDVSjs.useFileUpload; exports.useMentionInsert = _chunkGYGMEDVSjs.useMentionInsert; exports.useSidebar = _chunkGYGMEDVSjs.useSidebar;
|
|
1006
|
+
exports.ADMINISTRATION_I18N_KEYS = _chunkUGNLKDI6js.ADMINISTRATION_I18N_KEYS; exports.AcceptInvitation = _chunkUGNLKDI6js.AcceptInvitation; exports.Accordion = _chunkUGNLKDI6js.Accordion; exports.AccordionContent = _chunkUGNLKDI6js.AccordionContent; exports.AccordionItem = _chunkUGNLKDI6js.AccordionItem; exports.AccordionTrigger = _chunkUGNLKDI6js.AccordionTrigger; exports.ActivateAccount = _chunkUGNLKDI6js.ActivateAccount; exports.AddUserToRole = _chunkUGNLKDI6js.AddUserToRole; exports.AdminCompanyContainer = _chunkUGNLKDI6js.AdminCompanyContainer; exports.AdminIndexContainer = _chunkUGNLKDI6js.AdminIndexContainer; exports.AdminIndexGrid = _chunkUGNLKDI6js.AdminIndexGrid; exports.AdminUsersList = _chunkUGNLKDI6js.AdminUsersList; exports.Alert = _chunkUGNLKDI6js.Alert; exports.AlertAction = _chunkUGNLKDI6js.AlertAction; exports.AlertDescription = _chunkUGNLKDI6js.AlertDescription; exports.AlertDialog = _chunkUGNLKDI6js.AlertDialog; exports.AlertDialogAction = _chunkUGNLKDI6js.AlertDialogAction; exports.AlertDialogCancel = _chunkUGNLKDI6js.AlertDialogCancel; exports.AlertDialogContent = _chunkUGNLKDI6js.AlertDialogContent; exports.AlertDialogDescription = _chunkUGNLKDI6js.AlertDialogDescription; exports.AlertDialogFooter = _chunkUGNLKDI6js.AlertDialogFooter; exports.AlertDialogHeader = _chunkUGNLKDI6js.AlertDialogHeader; exports.AlertDialogMedia = _chunkUGNLKDI6js.AlertDialogMedia; exports.AlertDialogOverlay = _chunkUGNLKDI6js.AlertDialogOverlay; exports.AlertDialogPortal = _chunkUGNLKDI6js.AlertDialogPortal; exports.AlertDialogTitle = _chunkUGNLKDI6js.AlertDialogTitle; exports.AlertDialogTrigger = _chunkUGNLKDI6js.AlertDialogTrigger; exports.AlertTitle = _chunkUGNLKDI6js.AlertTitle; exports.AllUsersListContainer = _chunkUGNLKDI6js.AllUsersListContainer; exports.AllowedUsersDetails = _chunkUGNLKDI6js.AllowedUsersDetails; exports.ApprovalActionCard = _chunkUGNLKDI6js.ApprovalActionCard; exports.AssistantBlockNoteComposer = _chunkUGNLKDI6js.AssistantBlockNoteComposer; exports.AssistantContainer = _chunkUGNLKDI6js.AssistantContainer; exports.AssistantContainerWithApprovals = _chunkUGNLKDI6js.AssistantContainerWithApprovals; exports.AssistantPageContainer = _chunkUGNLKDI6js.AssistantPageContainer; exports.AttributeElement = _chunkUGNLKDI6js.AttributeElement; exports.AuthContainer = _chunkUGNLKDI6js.AuthContainer; exports.Avatar = _chunkUGNLKDI6js.Avatar; exports.AvatarBadge = _chunkUGNLKDI6js.AvatarBadge; exports.AvatarFallback = _chunkUGNLKDI6js.AvatarFallback; exports.AvatarGroup = _chunkUGNLKDI6js.AvatarGroup; exports.AvatarGroupCount = _chunkUGNLKDI6js.AvatarGroupCount; exports.AvatarImage = _chunkUGNLKDI6js.AvatarImage; exports.BackupCodesDialog = _chunkUGNLKDI6js.BackupCodesDialog; exports.Badge = _chunkUGNLKDI6js.Badge; exports.BlockNoteEditorContainer = _chunkUGNLKDI6js.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkUGNLKDI6js.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkUGNLKDI6js.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunkUGNLKDI6js.BlockNoteViewerContainer; exports.Board = _chunkUGNLKDI6js.KanbanBoard; exports.Breadcrumb = _chunkUGNLKDI6js.Breadcrumb; exports.BreadcrumbEllipsis = _chunkUGNLKDI6js.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkUGNLKDI6js.BreadcrumbItem; exports.BreadcrumbLink = _chunkUGNLKDI6js.BreadcrumbLink; exports.BreadcrumbList = _chunkUGNLKDI6js.BreadcrumbList; exports.BreadcrumbNavigation = _chunkUGNLKDI6js.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkUGNLKDI6js.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkUGNLKDI6js.BreadcrumbSeparator; exports.Button = _chunkUGNLKDI6js.Button; exports.Calendar = _chunkUGNLKDI6js.Calendar; exports.CalendarDayButton = _chunkUGNLKDI6js.CalendarDayButton; exports.Card = _chunkUGNLKDI6js.Card; exports.CardAction = _chunkUGNLKDI6js.CardAction; exports.CardContent = _chunkUGNLKDI6js.CardContent; exports.CardDescription = _chunkUGNLKDI6js.CardDescription; exports.CardFooter = _chunkUGNLKDI6js.CardFooter; exports.CardHeader = _chunkUGNLKDI6js.CardHeader; exports.CardTitle = _chunkUGNLKDI6js.CardTitle; exports.Carousel = _chunkUGNLKDI6js.Carousel; exports.CarouselContent = _chunkUGNLKDI6js.CarouselContent; exports.CarouselItem = _chunkUGNLKDI6js.CarouselItem; exports.CarouselNext = _chunkUGNLKDI6js.CarouselNext; exports.CarouselPrevious = _chunkUGNLKDI6js.CarouselPrevious; exports.ChartContainer = _chunkUGNLKDI6js.ChartContainer; exports.ChartLegend = _chunkUGNLKDI6js.ChartLegend; exports.ChartLegendContent = _chunkUGNLKDI6js.ChartLegendContent; exports.ChartStyle = _chunkUGNLKDI6js.ChartStyle; exports.ChartTooltip = _chunkUGNLKDI6js.ChartTooltip; exports.ChartTooltipContent = _chunkUGNLKDI6js.ChartTooltipContent; exports.Checkbox = _chunkUGNLKDI6js.Checkbox; exports.Collapsible = _chunkUGNLKDI6js.Collapsible; exports.CollapsibleContent = _chunkUGNLKDI6js.CollapsibleContent; exports.CollapsibleTrigger = _chunkUGNLKDI6js.CollapsibleTrigger; exports.Column = _chunkUGNLKDI6js.KanbanColumn; exports.ColumnHandle = _chunkUGNLKDI6js.KanbanColumnHandle; exports.Combobox = _chunkUGNLKDI6js.Combobox; exports.ComboboxChip = _chunkUGNLKDI6js.ComboboxChip; exports.ComboboxChips = _chunkUGNLKDI6js.ComboboxChips; exports.ComboboxChipsInput = _chunkUGNLKDI6js.ComboboxChipsInput; exports.ComboboxCollection = _chunkUGNLKDI6js.ComboboxCollection; exports.ComboboxContent = _chunkUGNLKDI6js.ComboboxContent; exports.ComboboxEmpty = _chunkUGNLKDI6js.ComboboxEmpty; exports.ComboboxGroup = _chunkUGNLKDI6js.ComboboxGroup; exports.ComboboxInput = _chunkUGNLKDI6js.ComboboxInput; exports.ComboboxItem = _chunkUGNLKDI6js.ComboboxItem; exports.ComboboxLabel = _chunkUGNLKDI6js.ComboboxLabel; exports.ComboboxList = _chunkUGNLKDI6js.ComboboxList; exports.ComboboxSeparator = _chunkUGNLKDI6js.ComboboxSeparator; exports.ComboboxTrigger = _chunkUGNLKDI6js.ComboboxTrigger; exports.ComboboxValue = _chunkUGNLKDI6js.ComboboxValue; exports.Command = _chunkUGNLKDI6js.Command; exports.CommandDialog = _chunkUGNLKDI6js.CommandDialog; exports.CommandEmpty = _chunkUGNLKDI6js.CommandEmpty; exports.CommandGroup = _chunkUGNLKDI6js.CommandGroup; exports.CommandInput = _chunkUGNLKDI6js.CommandInput; exports.CommandItem = _chunkUGNLKDI6js.CommandItem; exports.CommandList = _chunkUGNLKDI6js.CommandList; exports.CommandSeparator = _chunkUGNLKDI6js.CommandSeparator; exports.CommandShortcut = _chunkUGNLKDI6js.CommandShortcut; exports.CommonAddTrigger = _chunkUGNLKDI6js.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunkUGNLKDI6js.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkUGNLKDI6js.CommonAssociationTrigger; exports.CommonDeleter = _chunkUGNLKDI6js.CommonDeleter; exports.CommonEditorButtons = _chunkUGNLKDI6js.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkUGNLKDI6js.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkUGNLKDI6js.CommonEditorHeader; exports.CommonEditorTrigger = _chunkUGNLKDI6js.CommonEditorTrigger; exports.CompaniesList = _chunkUGNLKDI6js.CompaniesList; exports.CompaniesListContainer = _chunkUGNLKDI6js.CompaniesListContainer; exports.CompanyConfigurationEditor = _chunkUGNLKDI6js.CompanyConfigurationEditor; exports.CompanyContainer = _chunkUGNLKDI6js.CompanyContainer; exports.CompanyContent = _chunkUGNLKDI6js.CompanyContent; exports.CompanyDeleter = _chunkUGNLKDI6js.CompanyDeleter; exports.CompanyDetails = _chunkUGNLKDI6js.CompanyDetails; exports.CompanyEditor = _chunkUGNLKDI6js.CompanyEditor; exports.CompanyUsersList = _chunkUGNLKDI6js.CompanyUsersList; exports.ConfirmDialog = _chunkUGNLKDI6js.ConfirmDialog; exports.ContentListGrid = _chunkUGNLKDI6js.ContentListGrid; exports.ContentListTable = _chunkUGNLKDI6js.ContentListTable; exports.ContentTableSearch = _chunkUGNLKDI6js.ContentTableSearch; exports.ContentTitle = _chunkUGNLKDI6js.ContentTitle; exports.ContentsList = _chunkUGNLKDI6js.ContentsList; exports.ContentsListById = _chunkUGNLKDI6js.ContentsListById; exports.ContextMenu = _chunkUGNLKDI6js.ContextMenu; exports.ContextMenuCheckboxItem = _chunkUGNLKDI6js.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkUGNLKDI6js.ContextMenuContent; exports.ContextMenuGroup = _chunkUGNLKDI6js.ContextMenuGroup; exports.ContextMenuItem = _chunkUGNLKDI6js.ContextMenuItem; exports.ContextMenuLabel = _chunkUGNLKDI6js.ContextMenuLabel; exports.ContextMenuPortal = _chunkUGNLKDI6js.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkUGNLKDI6js.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkUGNLKDI6js.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkUGNLKDI6js.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkUGNLKDI6js.ContextMenuShortcut; exports.ContextMenuSub = _chunkUGNLKDI6js.ContextMenuSub; exports.ContextMenuSubContent = _chunkUGNLKDI6js.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkUGNLKDI6js.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkUGNLKDI6js.ContextMenuTrigger; exports.ContributorsList = _chunkUGNLKDI6js.ContributorsList; exports.Cookies = _chunkUGNLKDI6js.Cookies; exports.CurrencyInput = _chunkUGNLKDI6js.CurrencyInput; exports.DatePickerPopover = _chunkUGNLKDI6js.DatePickerPopover; exports.DateRangeSelector = _chunkUGNLKDI6js.DateRangeSelector; exports.DetailField = _chunkUGNLKDI6js.DetailField; exports.Dialog = _chunkUGNLKDI6js.Dialog; exports.DialogClose = _chunkUGNLKDI6js.DialogClose; exports.DialogContent = _chunkUGNLKDI6js.DialogContent; exports.DialogDescription = _chunkUGNLKDI6js.DialogDescription; exports.DialogFooter = _chunkUGNLKDI6js.DialogFooter; exports.DialogHeader = _chunkUGNLKDI6js.DialogHeader; exports.DialogOverlay = _chunkUGNLKDI6js.DialogOverlay; exports.DialogPortal = _chunkUGNLKDI6js.DialogPortal; exports.DialogTitle = _chunkUGNLKDI6js.DialogTitle; exports.DialogTrigger = _chunkUGNLKDI6js.DialogTrigger; exports.DisableTwoFactorDialog = _chunkUGNLKDI6js.DisableTwoFactorDialog; exports.Drawer = _chunkUGNLKDI6js.Drawer; exports.DrawerClose = _chunkUGNLKDI6js.DrawerClose; exports.DrawerContent = _chunkUGNLKDI6js.DrawerContent; exports.DrawerDescription = _chunkUGNLKDI6js.DrawerDescription; exports.DrawerFooter = _chunkUGNLKDI6js.DrawerFooter; exports.DrawerHeader = _chunkUGNLKDI6js.DrawerHeader; exports.DrawerOverlay = _chunkUGNLKDI6js.DrawerOverlay; exports.DrawerPortal = _chunkUGNLKDI6js.DrawerPortal; exports.DrawerTitle = _chunkUGNLKDI6js.DrawerTitle; exports.DrawerTrigger = _chunkUGNLKDI6js.DrawerTrigger; exports.DropdownMenu = _chunkUGNLKDI6js.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkUGNLKDI6js.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkUGNLKDI6js.DropdownMenuContent; exports.DropdownMenuGroup = _chunkUGNLKDI6js.DropdownMenuGroup; exports.DropdownMenuItem = _chunkUGNLKDI6js.DropdownMenuItem; exports.DropdownMenuLabel = _chunkUGNLKDI6js.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkUGNLKDI6js.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkUGNLKDI6js.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkUGNLKDI6js.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkUGNLKDI6js.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkUGNLKDI6js.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkUGNLKDI6js.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkUGNLKDI6js.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkUGNLKDI6js.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkUGNLKDI6js.DropdownMenuTrigger; exports.EditableAvatar = _chunkUGNLKDI6js.EditableAvatar; exports.EditorSheet = _chunkUGNLKDI6js.EditorSheet; exports.EmptyState = _chunkUGNLKDI6js.EmptyState; exports.EntityAvatar = _chunkUGNLKDI6js.EntityAvatar; exports.EntityHero = _chunkUGNLKDI6js.EntityHero; exports.EntityHeroAvatar = _chunkUGNLKDI6js.EntityHeroAvatar; exports.EntityHeroLayout = _chunkUGNLKDI6js.EntityHeroLayout; exports.EntityHeroMetaRow = _chunkUGNLKDI6js.EntityHeroMetaRow; exports.EntityMultiSelector = _chunkUGNLKDI6js.EntityMultiSelector; exports.EntitySection = _chunkUGNLKDI6js.EntitySection; exports.EntitySelector = _chunkUGNLKDI6js.EntitySelector; exports.ErrorDetails = _chunkUGNLKDI6js.ErrorDetails; exports.Field = _chunkUGNLKDI6js.Field; exports.FieldContent = _chunkUGNLKDI6js.FieldContent; exports.FieldDescription = _chunkUGNLKDI6js.FieldDescription; exports.FieldError = _chunkUGNLKDI6js.FieldError; exports.FieldGroup = _chunkUGNLKDI6js.FieldGroup; exports.FieldLabel = _chunkUGNLKDI6js.FieldLabel; exports.FieldLegend = _chunkUGNLKDI6js.FieldLegend; exports.FieldSeparator = _chunkUGNLKDI6js.FieldSeparator; exports.FieldSet = _chunkUGNLKDI6js.FieldSet; exports.FieldTitle = _chunkUGNLKDI6js.FieldTitle; exports.FileInput = _chunkUGNLKDI6js.FileInput; exports.FileUploader = _chunkUGNLKDI6js.FileUploader; exports.FileUploaderContent = _chunkUGNLKDI6js.FileUploaderContent; exports.FileUploaderItem = _chunkUGNLKDI6js.FileUploaderItem; exports.FiscalDataDisplay = _chunkUGNLKDI6js.FiscalDataDisplay; exports.ForgotPassword = _chunkUGNLKDI6js.ForgotPassword; exports.Form = _chunkUGNLKDI6js.Form; exports.FormBlockNote = _chunkUGNLKDI6js.FormBlockNote; exports.FormBody = _chunkUGNLKDI6js.FormBody; exports.FormCheckbox = _chunkUGNLKDI6js.FormCheckbox; exports.FormCol = _chunkUGNLKDI6js.FormCol; exports.FormDate = _chunkUGNLKDI6js.FormDate; exports.FormDateTime = _chunkUGNLKDI6js.FormDateTime; exports.FormFeatures = _chunkUGNLKDI6js.FormFeatures; exports.FormFieldWrapper = _chunkUGNLKDI6js.FormFieldWrapper; exports.FormInput = _chunkUGNLKDI6js.FormInput; exports.FormPassword = _chunkUGNLKDI6js.FormPassword; exports.FormPlaceAutocomplete = _chunkUGNLKDI6js.FormPlaceAutocomplete; exports.FormRoles = _chunkUGNLKDI6js.FormRoles; exports.FormRow = _chunkUGNLKDI6js.FormRow; exports.FormSection = _chunkUGNLKDI6js.FormSection; exports.FormSelect = _chunkUGNLKDI6js.FormSelect; exports.FormSlider = _chunkUGNLKDI6js.FormSlider; exports.FormSwitch = _chunkUGNLKDI6js.FormSwitch; exports.FormTextarea = _chunkUGNLKDI6js.FormTextarea; exports.GdprConsentCheckbox = _chunkUGNLKDI6js.GdprConsentCheckbox; exports.GdprConsentSection = _chunkUGNLKDI6js.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunkUGNLKDI6js.HEADER_ROW_MIN_H; exports.Header = _chunkUGNLKDI6js.Header; exports.HoverCard = _chunkUGNLKDI6js.HoverCard; exports.HoverCardContent = _chunkUGNLKDI6js.HoverCardContent; exports.HoverCardTrigger = _chunkUGNLKDI6js.HoverCardTrigger; exports.HowToCommand = _chunkUGNLKDI6js.HowToCommand; exports.HowToCommandViewer = _chunkUGNLKDI6js.HowToCommandViewer; exports.HowToContainer = _chunkUGNLKDI6js.HowToContainer; exports.HowToContent = _chunkUGNLKDI6js.HowToContent; exports.HowToDeleter = _chunkUGNLKDI6js.HowToDeleter; exports.HowToDetails = _chunkUGNLKDI6js.HowToDetails; exports.HowToEditor = _chunkUGNLKDI6js.HowToEditor; exports.HowToList = _chunkUGNLKDI6js.HowToList; exports.HowToListContainer = _chunkUGNLKDI6js.HowToListContainer; exports.HowToMultiSelector = _chunkUGNLKDI6js.HowToMultiSelector; exports.HowToSelector = _chunkUGNLKDI6js.HowToSelector; exports.Input = _chunkUGNLKDI6js.Input; exports.InputGroup = _chunkUGNLKDI6js.InputGroup; exports.InputGroupAddon = _chunkUGNLKDI6js.InputGroupAddon; exports.InputGroupButton = _chunkUGNLKDI6js.InputGroupButton; exports.InputGroupInput = _chunkUGNLKDI6js.InputGroupInput; exports.InputGroupText = _chunkUGNLKDI6js.InputGroupText; exports.InputGroupTextarea = _chunkUGNLKDI6js.InputGroupTextarea; exports.InputOTP = _chunkUGNLKDI6js.InputOTP; exports.InputOTPGroup = _chunkUGNLKDI6js.InputOTPGroup; exports.InputOTPSeparator = _chunkUGNLKDI6js.InputOTPSeparator; exports.InputOTPSlot = _chunkUGNLKDI6js.InputOTPSlot; exports.ItalianFiscalData = _chunkUGNLKDI6js.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkUGNLKDI6js.ItalianFiscalDataDisplay; exports.Item = _chunkUGNLKDI6js.KanbanItem; exports.ItemHandle = _chunkUGNLKDI6js.KanbanItemHandle; exports.Kanban = _chunkUGNLKDI6js.KanbanRoot; exports.KanbanBoard = _chunkUGNLKDI6js.KanbanBoard; exports.KanbanColumn = _chunkUGNLKDI6js.KanbanColumn; exports.KanbanColumnHandle = _chunkUGNLKDI6js.KanbanColumnHandle; exports.KanbanItem = _chunkUGNLKDI6js.KanbanItem; exports.KanbanItemHandle = _chunkUGNLKDI6js.KanbanItemHandle; exports.KanbanOverlay = _chunkUGNLKDI6js.KanbanOverlay; exports.Label = _chunkUGNLKDI6js.Label; exports.LandingComponent = _chunkUGNLKDI6js.LandingComponent; exports.Link = _chunkUGNLKDI6js.Link; exports.Login = _chunkUGNLKDI6js.Login; exports.Logout = _chunkUGNLKDI6js.Logout; exports.MessageItem = _chunkUGNLKDI6js.MessageItem; exports.MessageList = _chunkUGNLKDI6js.MessageList; exports.MessageSourcesPanel = _chunkUGNLKDI6js.MessageSourcesPanel; exports.MicroLabel = _chunkUGNLKDI6js.MicroLabel; exports.MobileNavigationBar = _chunkUGNLKDI6js.MobileNavigationBar; exports.ModeToggleSwitch = _chunkUGNLKDI6js.ModeToggleSwitch; exports.MultiSelect = _chunkUGNLKDI6js.MultiSelect; exports.MultipleSelector = _chunkUGNLKDI6js.MultipleSelector; exports.NavigationMenu = _chunkUGNLKDI6js.NavigationMenu; exports.NavigationMenuContent = _chunkUGNLKDI6js.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkUGNLKDI6js.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkUGNLKDI6js.NavigationMenuItem; exports.NavigationMenuLink = _chunkUGNLKDI6js.NavigationMenuLink; exports.NavigationMenuList = _chunkUGNLKDI6js.NavigationMenuList; exports.NavigationMenuPositioner = _chunkUGNLKDI6js.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkUGNLKDI6js.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkUGNLKDI6js.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkUGNLKDI6js.NotificationMenuItem; exports.NotificationModal = _chunkUGNLKDI6js.NotificationModal; exports.NotificationToast = _chunkUGNLKDI6js.NotificationToast; exports.NotificationsList = _chunkUGNLKDI6js.NotificationsList; exports.NotificationsListContainer = _chunkUGNLKDI6js.NotificationsListContainer; exports.OAuthClientCard = _chunkUGNLKDI6js.OAuthClientCard; exports.OAuthClientDetail = _chunkUGNLKDI6js.OAuthClientDetail; exports.OAuthClientForm = _chunkUGNLKDI6js.OAuthClientForm; exports.OAuthClientList = _chunkUGNLKDI6js.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkUGNLKDI6js.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkUGNLKDI6js.OAuthConsentActions; exports.OAuthConsentHeader = _chunkUGNLKDI6js.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkUGNLKDI6js.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkUGNLKDI6js.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkUGNLKDI6js.OAuthScopeList; exports.OAuthScopeSelector = _chunkUGNLKDI6js.OAuthScopeSelector; exports.OnboardingCard = _chunkUGNLKDI6js.OnboardingCard; exports.Overlay = _chunkUGNLKDI6js.KanbanOverlay; exports.PageContainer = _chunkUGNLKDI6js.PageContainer; exports.PageContainerContentDetails = _chunkUGNLKDI6js.PageContainerContentDetails; exports.PageContentContainer = _chunkUGNLKDI6js.PageContentContainer; exports.PageSection = _chunkUGNLKDI6js.PageSection; exports.PasskeyButton = _chunkUGNLKDI6js.PasskeyButton; exports.PasskeyList = _chunkUGNLKDI6js.PasskeyList; exports.PasskeySetupDialog = _chunkUGNLKDI6js.PasskeySetupDialog; exports.PasswordInput = _chunkUGNLKDI6js.PasswordInput; exports.PlatformUsersContainer = _chunkUGNLKDI6js.PlatformUsersContainer; exports.PlatformUsersList = _chunkUGNLKDI6js.PlatformUsersList; exports.Popover = _chunkUGNLKDI6js.Popover; exports.PopoverContent = _chunkUGNLKDI6js.PopoverContent; exports.PopoverDescription = _chunkUGNLKDI6js.PopoverDescription; exports.PopoverHeader = _chunkUGNLKDI6js.PopoverHeader; exports.PopoverTitle = _chunkUGNLKDI6js.PopoverTitle; exports.PopoverTrigger = _chunkUGNLKDI6js.PopoverTrigger; exports.Progress = _chunkUGNLKDI6js.Progress; exports.ProgressIndicator = _chunkUGNLKDI6js.ProgressIndicator; exports.ProgressLabel = _chunkUGNLKDI6js.ProgressLabel; exports.ProgressTrack = _chunkUGNLKDI6js.ProgressTrack; exports.ProgressValue = _chunkUGNLKDI6js.ProgressValue; exports.PushNotificationProvider = _chunkUGNLKDI6js.PushNotificationProvider; exports.RadioGroup = _chunkUGNLKDI6js.RadioGroup; exports.RadioGroupItem = _chunkUGNLKDI6js.RadioGroupItem; exports.RbacByRoleContainer = _chunkUGNLKDI6js.RbacByRoleContainer; exports.RbacContainer = _chunkUGNLKDI6js.RbacContainer; exports.RbacPermissionCell = _chunkUGNLKDI6js.RbacPermissionCell; exports.RbacPermissionPicker = _chunkUGNLKDI6js.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkUGNLKDI6js.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkUGNLKDI6js.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkUGNLKDI6js.ReferralCodeCapture; exports.ReferralDialog = _chunkUGNLKDI6js.ReferralDialog; exports.ReferralWidget = _chunkUGNLKDI6js.ReferralWidget; exports.RefreshUser = _chunkUGNLKDI6js.RefreshUser; exports.RelevantContentsList = _chunkUGNLKDI6js.RelevantContentsList; exports.RelevantUsersList = _chunkUGNLKDI6js.RelevantUsersList; exports.RemoveUserFromRole = _chunkUGNLKDI6js.RemoveUserFromRole; exports.ResetPassword = _chunkUGNLKDI6js.ResetPassword; exports.ResizableHandle = _chunkUGNLKDI6js.ResizableHandle; exports.ResizablePanel = _chunkUGNLKDI6js.ResizablePanel; exports.ResizablePanelGroup = _chunkUGNLKDI6js.ResizablePanelGroup; exports.RoleContainer = _chunkUGNLKDI6js.RoleContainer; exports.RoleDetails = _chunkUGNLKDI6js.RoleDetails; exports.RoleUsersList = _chunkUGNLKDI6js.RoleUsersList; exports.RolesList = _chunkUGNLKDI6js.RolesList; exports.Root = _chunkUGNLKDI6js.KanbanRoot; exports.RoundPageContainer = _chunkUGNLKDI6js.RoundPageContainer; exports.RoundPageContainerTitle = _chunkUGNLKDI6js.RoundPageContainerTitle; exports.ScrollArea = _chunkUGNLKDI6js.ScrollArea; exports.ScrollBar = _chunkUGNLKDI6js.ScrollBar; exports.SectionHeader = _chunkUGNLKDI6js.SectionHeader; exports.SecurityContainer = _chunkUGNLKDI6js.SecurityContainer; exports.Select = _chunkUGNLKDI6js.Select; exports.SelectContent = _chunkUGNLKDI6js.SelectContent; exports.SelectGroup = _chunkUGNLKDI6js.SelectGroup; exports.SelectItem = _chunkUGNLKDI6js.SelectItem; exports.SelectLabel = _chunkUGNLKDI6js.SelectLabel; exports.SelectScrollDownButton = _chunkUGNLKDI6js.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkUGNLKDI6js.SelectScrollUpButton; exports.SelectSeparator = _chunkUGNLKDI6js.SelectSeparator; exports.SelectTrigger = _chunkUGNLKDI6js.SelectTrigger; exports.SelectValue = _chunkUGNLKDI6js.SelectValue; exports.Separator = _chunkUGNLKDI6js.Separator; exports.Sheet = _chunkUGNLKDI6js.Sheet; exports.SheetClose = _chunkUGNLKDI6js.SheetClose; exports.SheetContent = _chunkUGNLKDI6js.SheetContent; exports.SheetDescription = _chunkUGNLKDI6js.SheetDescription; exports.SheetFooter = _chunkUGNLKDI6js.SheetFooter; exports.SheetHeader = _chunkUGNLKDI6js.SheetHeader; exports.SheetTitle = _chunkUGNLKDI6js.SheetTitle; exports.SheetTrigger = _chunkUGNLKDI6js.SheetTrigger; exports.Sidebar = _chunkUGNLKDI6js.Sidebar; exports.SidebarContent = _chunkUGNLKDI6js.SidebarContent; exports.SidebarFooter = _chunkUGNLKDI6js.SidebarFooter; exports.SidebarGroup = _chunkUGNLKDI6js.SidebarGroup; exports.SidebarGroupAction = _chunkUGNLKDI6js.SidebarGroupAction; exports.SidebarGroupContent = _chunkUGNLKDI6js.SidebarGroupContent; exports.SidebarGroupLabel = _chunkUGNLKDI6js.SidebarGroupLabel; exports.SidebarHeader = _chunkUGNLKDI6js.SidebarHeader; exports.SidebarInput = _chunkUGNLKDI6js.SidebarInput; exports.SidebarInset = _chunkUGNLKDI6js.SidebarInset; exports.SidebarMenu = _chunkUGNLKDI6js.SidebarMenu; exports.SidebarMenuAction = _chunkUGNLKDI6js.SidebarMenuAction; exports.SidebarMenuBadge = _chunkUGNLKDI6js.SidebarMenuBadge; exports.SidebarMenuButton = _chunkUGNLKDI6js.SidebarMenuButton; exports.SidebarMenuItem = _chunkUGNLKDI6js.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkUGNLKDI6js.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkUGNLKDI6js.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkUGNLKDI6js.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkUGNLKDI6js.SidebarMenuSubItem; exports.SidebarProvider = _chunkUGNLKDI6js.SidebarProvider; exports.SidebarRail = _chunkUGNLKDI6js.SidebarRail; exports.SidebarSeparator = _chunkUGNLKDI6js.SidebarSeparator; exports.SidebarTrigger = _chunkUGNLKDI6js.SidebarTrigger; exports.Skeleton = _chunkUGNLKDI6js.Skeleton; exports.Slider = _chunkUGNLKDI6js.Slider; exports.Spinner = _chunkUGNLKDI6js.Spinner; exports.Switch = _chunkUGNLKDI6js.Switch; exports.Table = _chunkUGNLKDI6js.Table; exports.TableBody = _chunkUGNLKDI6js.TableBody; exports.TableCaption = _chunkUGNLKDI6js.TableCaption; exports.TableCell = _chunkUGNLKDI6js.TableCell; exports.TableCellAvatar = _chunkUGNLKDI6js.TableCellAvatar; exports.TableFooter = _chunkUGNLKDI6js.TableFooter; exports.TableHead = _chunkUGNLKDI6js.TableHead; exports.TableHeader = _chunkUGNLKDI6js.TableHeader; exports.TableRow = _chunkUGNLKDI6js.TableRow; exports.Tabs = _chunkUGNLKDI6js.Tabs; exports.TabsContainer = _chunkUGNLKDI6js.TabsContainer; exports.TabsContent = _chunkUGNLKDI6js.TabsContent; exports.TabsList = _chunkUGNLKDI6js.TabsList; exports.TabsTrigger = _chunkUGNLKDI6js.TabsTrigger; exports.Textarea = _chunkUGNLKDI6js.Textarea; exports.Toaster = _chunkUGNLKDI6js.Toaster; exports.Toggle = _chunkUGNLKDI6js.Toggle; exports.TokenStatusIndicator = _chunkUGNLKDI6js.TokenStatusIndicator; exports.Tooltip = _chunkUGNLKDI6js.Tooltip; exports.TooltipContent = _chunkUGNLKDI6js.TooltipContent; exports.TooltipProvider = _chunkUGNLKDI6js.TooltipProvider; exports.TooltipTrigger = _chunkUGNLKDI6js.TooltipTrigger; exports.TotpAuthenticatorList = _chunkUGNLKDI6js.TotpAuthenticatorList; exports.TotpInput = _chunkUGNLKDI6js.TotpInput; exports.TotpSetupDialog = _chunkUGNLKDI6js.TotpSetupDialog; exports.TwoFactorChallenge = _chunkUGNLKDI6js.TwoFactorChallenge; exports.TwoFactorSettings = _chunkUGNLKDI6js.TwoFactorSettings; exports.UserAvatar = _chunkUGNLKDI6js.UserAvatar; exports.UserAvatarEditor = _chunkUGNLKDI6js.UserAvatarEditor; exports.UserAvatarList = _chunkUGNLKDI6js.UserAvatarList; exports.UserContainer = _chunkUGNLKDI6js.UserContainer; exports.UserContent = _chunkUGNLKDI6js.UserContent; exports.UserDeleter = _chunkUGNLKDI6js.UserDeleter; exports.UserEditor = _chunkUGNLKDI6js.UserEditor; exports.UserIndexContainer = _chunkUGNLKDI6js.UserIndexContainer; exports.UserIndexDetails = _chunkUGNLKDI6js.UserIndexDetails; exports.UserListInAdd = _chunkUGNLKDI6js.UserListInAdd; exports.UserMultiSelect = _chunkUGNLKDI6js.UserMultiSelect; exports.UserReactivator = _chunkUGNLKDI6js.UserReactivator; exports.UserResentInvitationEmail = _chunkUGNLKDI6js.UserResentInvitationEmail; exports.UserRoleAdd = _chunkUGNLKDI6js.UserRoleAdd; exports.UserRolesList = _chunkUGNLKDI6js.UserRolesList; exports.UserSearchPopover = _chunkUGNLKDI6js.UserSearchPopover; exports.UserSelector = _chunkUGNLKDI6js.UserSelector; exports.UserStanadaloneDetails = _chunkUGNLKDI6js.UserStanadaloneDetails; exports.UsersList = _chunkUGNLKDI6js.UsersList; exports.UsersListByContentIds = _chunkUGNLKDI6js.UsersListByContentIds; exports.UsersListContainer = _chunkUGNLKDI6js.UsersListContainer; exports.WaitlistConfirmation = _chunkUGNLKDI6js.WaitlistConfirmation; exports.WaitlistForm = _chunkUGNLKDI6js.WaitlistForm; exports.WaitlistHeroSection = _chunkUGNLKDI6js.WaitlistHeroSection; exports.WaitlistList = _chunkUGNLKDI6js.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkUGNLKDI6js.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkUGNLKDI6js.WaitlistSuccessState; exports.badgeVariants = _chunkUGNLKDI6js.badgeVariants; exports.buttonVariants = _chunkUGNLKDI6js.buttonVariants; exports.cellComponent = _chunkUGNLKDI6js.cellComponent; exports.cellDate = _chunkUGNLKDI6js.cellDate; exports.cellDateTime = _chunkUGNLKDI6js.cellDateTime; exports.cellId = _chunkUGNLKDI6js.cellId; exports.cellLink = _chunkUGNLKDI6js.cellLink; exports.cellUrl = _chunkUGNLKDI6js.cellUrl; exports.createMentionInlineContentSpec = _chunkUGNLKDI6js.createMentionInlineContentSpec; exports.errorToast = _chunkUGNLKDI6js.errorToast; exports.generateNotificationData = _chunkUGNLKDI6js.generateNotificationData; exports.getIcon = _chunk53B6NPGAjs.getIcon; exports.getIconByModule = _chunk53B6NPGAjs.getIconByModule; exports.getIconByModuleName = _chunk53B6NPGAjs.getIconByModuleName; exports.getInitials = _chunk53B6NPGAjs.getInitials; exports.mentionDataAttrs = _chunkUGNLKDI6js.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkUGNLKDI6js.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkUGNLKDI6js.parseFiscalData; exports.parseMentionElement = _chunkUGNLKDI6js.parseMentionElement; exports.partitionTabs = _chunkUGNLKDI6js.partitionTabs; exports.spinnerVariants = _chunkUGNLKDI6js.spinnerVariants; exports.tabsListVariants = _chunkUGNLKDI6js.tabsListVariants; exports.toggleVariants = _chunkUGNLKDI6js.toggleVariants; exports.triggerAssociationToast = _chunkUGNLKDI6js.triggerAssociationToast; exports.useCarousel = _chunkUGNLKDI6js.useCarousel; exports.useComboboxAnchor = _chunkUGNLKDI6js.useComboboxAnchor; exports.useDebounce = _chunkUGNLKDI6js.useDebounce2; exports.useEditorDialog = _chunkUGNLKDI6js.useEditorDialog; exports.useFileUpload = _chunkUGNLKDI6js.useFileUpload; exports.useMentionInsert = _chunkUGNLKDI6js.useMentionInsert; exports.useSidebar = _chunkUGNLKDI6js.useSidebar;
|
|
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-J54546YC.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";
|
|
@@ -53,9 +53,47 @@ declare abstract class AbstractApiData implements ApiDataInterface {
|
|
|
53
53
|
* Distinct from the consuming app's own TokenUsage module (name "tokenusages",
|
|
54
54
|
* pageUrl "/tokenusage") — that one is an AppModuleDefinitions entry the package
|
|
55
55
|
* cannot reference, which is why these three exist.
|
|
56
|
+
*
|
|
57
|
+
* PREFER `tokenUsageModules(factory)` from `./tokenusage.modules` — it returns
|
|
58
|
+
* these three plus the three self-service report modules as one spreadable
|
|
59
|
+
* object. These individual factories are kept for backward compatibility.
|
|
56
60
|
*/
|
|
57
61
|
declare const TokenUsageAdminSummaryModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
58
62
|
declare const TokenUsageAdminTimelineModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
59
63
|
declare const TokenUsageAdminBreakdownModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
60
64
|
|
|
61
|
-
|
|
65
|
+
/**
|
|
66
|
+
* Every read-only reporting resource behind the two token-usage pages, as one
|
|
67
|
+
* object a consuming app spreads into its `allModules`.
|
|
68
|
+
*
|
|
69
|
+
* A bundle rather than six separate factories because registration is the APP'S
|
|
70
|
+
* job — `allModules` is also the source of `AllModuleDefinitions` and what
|
|
71
|
+
* `DataClassRegistry.bootstrap()` reads, so the package cannot self-register.
|
|
72
|
+
* Six names is six chances to forget one, and a forgotten name is not a compile
|
|
73
|
+
* error: `FoundationModuleDefinitions` declares them all, so `Modules.X`
|
|
74
|
+
* typechecks and is `undefined` at runtime. One spread cannot be partially done.
|
|
75
|
+
*
|
|
76
|
+
* `name` is the endpoint path EndpointCreator builds URLs from. None has a
|
|
77
|
+
* pageUrl — these are not navigable resources.
|
|
78
|
+
*
|
|
79
|
+
* The return type is the six named keys, NOT `Record<string,
|
|
80
|
+
* ModuleWithPermissions>`: the consuming app derives `AllModuleDefinitions`
|
|
81
|
+
* from `typeof allModules`, so spreading an index-signature type in would give
|
|
82
|
+
* that object a string index signature and make every `Modules.<anything>`
|
|
83
|
+
* lookup typecheck. `satisfies` keeps the constraint without widening.
|
|
84
|
+
*/
|
|
85
|
+
declare const tokenUsageModules: (factory: ModuleFactory) => {
|
|
86
|
+
TokenUsageAdminSummary: ModuleWithPermissions;
|
|
87
|
+
TokenUsageAdminTimeline: ModuleWithPermissions;
|
|
88
|
+
TokenUsageAdminBreakdown: ModuleWithPermissions;
|
|
89
|
+
TokenUsageReportSummary: ModuleWithPermissions;
|
|
90
|
+
TokenUsageReportTimeline: ModuleWithPermissions;
|
|
91
|
+
TokenUsageReportBreakdown: ModuleWithPermissions;
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
declare function configureTokenUsage(config: {
|
|
95
|
+
currency: string;
|
|
96
|
+
}): void;
|
|
97
|
+
declare function getTokenUsageCurrency(): string;
|
|
98
|
+
|
|
99
|
+
export { AbstractApiData as A, TokenUsageAdminSummaryModule as T, TokenUsageAdminTimelineModule as a, TokenUsageAdminBreakdownModule as b, configureTokenUsage as c, getTokenUsageCurrency as g, tokenUsageModules as t };
|
|
@@ -53,9 +53,47 @@ declare abstract class AbstractApiData implements ApiDataInterface {
|
|
|
53
53
|
* Distinct from the consuming app's own TokenUsage module (name "tokenusages",
|
|
54
54
|
* pageUrl "/tokenusage") — that one is an AppModuleDefinitions entry the package
|
|
55
55
|
* cannot reference, which is why these three exist.
|
|
56
|
+
*
|
|
57
|
+
* PREFER `tokenUsageModules(factory)` from `./tokenusage.modules` — it returns
|
|
58
|
+
* these three plus the three self-service report modules as one spreadable
|
|
59
|
+
* object. These individual factories are kept for backward compatibility.
|
|
56
60
|
*/
|
|
57
61
|
declare const TokenUsageAdminSummaryModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
58
62
|
declare const TokenUsageAdminTimelineModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
59
63
|
declare const TokenUsageAdminBreakdownModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
60
64
|
|
|
61
|
-
|
|
65
|
+
/**
|
|
66
|
+
* Every read-only reporting resource behind the two token-usage pages, as one
|
|
67
|
+
* object a consuming app spreads into its `allModules`.
|
|
68
|
+
*
|
|
69
|
+
* A bundle rather than six separate factories because registration is the APP'S
|
|
70
|
+
* job — `allModules` is also the source of `AllModuleDefinitions` and what
|
|
71
|
+
* `DataClassRegistry.bootstrap()` reads, so the package cannot self-register.
|
|
72
|
+
* Six names is six chances to forget one, and a forgotten name is not a compile
|
|
73
|
+
* error: `FoundationModuleDefinitions` declares them all, so `Modules.X`
|
|
74
|
+
* typechecks and is `undefined` at runtime. One spread cannot be partially done.
|
|
75
|
+
*
|
|
76
|
+
* `name` is the endpoint path EndpointCreator builds URLs from. None has a
|
|
77
|
+
* pageUrl — these are not navigable resources.
|
|
78
|
+
*
|
|
79
|
+
* The return type is the six named keys, NOT `Record<string,
|
|
80
|
+
* ModuleWithPermissions>`: the consuming app derives `AllModuleDefinitions`
|
|
81
|
+
* from `typeof allModules`, so spreading an index-signature type in would give
|
|
82
|
+
* that object a string index signature and make every `Modules.<anything>`
|
|
83
|
+
* lookup typecheck. `satisfies` keeps the constraint without widening.
|
|
84
|
+
*/
|
|
85
|
+
declare const tokenUsageModules: (factory: ModuleFactory) => {
|
|
86
|
+
TokenUsageAdminSummary: ModuleWithPermissions;
|
|
87
|
+
TokenUsageAdminTimeline: ModuleWithPermissions;
|
|
88
|
+
TokenUsageAdminBreakdown: ModuleWithPermissions;
|
|
89
|
+
TokenUsageReportSummary: ModuleWithPermissions;
|
|
90
|
+
TokenUsageReportTimeline: ModuleWithPermissions;
|
|
91
|
+
TokenUsageReportBreakdown: ModuleWithPermissions;
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
declare function configureTokenUsage(config: {
|
|
95
|
+
currency: string;
|
|
96
|
+
}): void;
|
|
97
|
+
declare function getTokenUsageCurrency(): string;
|
|
98
|
+
|
|
99
|
+
export { AbstractApiData as A, TokenUsageAdminSummaryModule as T, TokenUsageAdminTimelineModule as a, TokenUsageAdminBreakdownModule as b, configureTokenUsage as c, getTokenUsageCurrency as g, tokenUsageModules as t };
|
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 _chunkUGNLKDI6js = require('../chunk-UGNLKDI6.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 = _chunkUGNLKDI6js.AdministrationProvider; exports.AssistantProvider = _chunkUGNLKDI6js.AssistantProvider; exports.CommonProvider = _chunkUGNLKDI6js.CommonProvider; exports.CompanyProvider = _chunkUGNLKDI6js.CompanyProvider; exports.CurrentUserProvider = _chunkUGNLKDI6js.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkUGNLKDI6js.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkUGNLKDI6js.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkUGNLKDI6js.HeaderLeftContentProvider; exports.HeaderLogoProvider = _chunkUGNLKDI6js.HeaderLogoProvider; exports.HowToProvider = _chunkUGNLKDI6js.HowToProvider; exports.MobileNavigationProvider = _chunkUGNLKDI6js.MobileNavigationProvider; exports.NotificationContextProvider = _chunkUGNLKDI6js.NotificationContextProvider; exports.OnboardingProvider = _chunkUGNLKDI6js.OnboardingProvider; exports.RbacProvider = _chunkUGNLKDI6js.RbacProvider; exports.RoleProvider = _chunkUGNLKDI6js.RoleProvider; exports.SharedProvider = _chunkUGNLKDI6js.SharedProvider; exports.SocketContext = _chunkUGNLKDI6js.SocketContext; exports.SocketProvider = _chunkUGNLKDI6js.SocketProvider; exports.UserProvider = _chunkUGNLKDI6js.UserProvider; exports.ViewportProvider = _chunkUGNLKDI6js.ViewportProvider; exports.recentPagesAtom = _chunkUGNLKDI6js.recentPagesAtom; exports.useAdministrationContext = _chunkUGNLKDI6js.useAdministrationContext; exports.useAssistantContext = _chunkUGNLKDI6js.useAssistantContext; exports.useCommonContext = _chunkUGNLKDI6js.useCommonContext; exports.useCompanyContext = _chunkUGNLKDI6js.useCompanyContext; exports.useCurrentUserContext = _chunkUGNLKDI6js.useCurrentUserContext; exports.useHeaderChildren = _chunkUGNLKDI6js.useHeaderChildren; exports.useHeaderLeftContent = _chunkUGNLKDI6js.useHeaderLeftContent; exports.useHeaderLogo = _chunkUGNLKDI6js.useHeaderLogo; exports.useHeaderMobileChildren = _chunkUGNLKDI6js.useHeaderMobileChildren; exports.useHeaderRootLabel = _chunkUGNLKDI6js.useHeaderRootLabel; exports.useHowToContext = _chunkUGNLKDI6js.useHowToContext; exports.useMobileNavigationItems = _chunkUGNLKDI6js.useMobileNavigationItems; exports.useNotificationContext = _chunkUGNLKDI6js.useNotificationContext; exports.useOnboarding = _chunkUGNLKDI6js.useOnboarding; exports.useRbacContext = _chunkUGNLKDI6js.useRbacContext; exports.useRoleContext = _chunkUGNLKDI6js.useRoleContext; exports.useSharedContext = _chunkUGNLKDI6js.useSharedContext; exports.useSocketContext = _chunkUGNLKDI6js.useSocketContext; exports.useUserContext = _chunkUGNLKDI6js.useUserContext;
|
|
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-J54546YC.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
|
@@ -3,8 +3,8 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
|
|
|
3
3
|
import { A as ApiRequestDataTypeInterface, F as FieldSelector } from '../ApiRequestDataTypeInterface-CYEcRUrh.mjs';
|
|
4
4
|
export { G as GetterKeys, c as createJsonApiInclusion } from '../ApiRequestDataTypeInterface-CYEcRUrh.mjs';
|
|
5
5
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-rsXRL_Hn.mjs';
|
|
6
|
-
import { A as AbstractApiData } from '../
|
|
7
|
-
export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule } from '../
|
|
6
|
+
import { A as AbstractApiData } from '../config-BRUjtCd1.mjs';
|
|
7
|
+
export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule, c as configureTokenUsage, g as getTokenUsageCurrency, t as tokenUsageModules } from '../config-BRUjtCd1.mjs';
|
|
8
8
|
import { A as AbstractService, N as NextRef, P as PreviousRef } from '../AbstractService-B0T7h8fX.mjs';
|
|
9
9
|
export { H as HttpMethod, S as SelfRef, T as TotalRef, b as clearLastApiMeta, c as clearLastApiTotal, d as getGlobalErrorHandler, a as getLastApiMeta, g as getLastApiTotal, s as setGlobalErrorHandler } from '../AbstractService-B0T7h8fX.mjs';
|
|
10
10
|
import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as PermissionModule, a as ModuleFactory } from '../types-Bq_UA8Lg.mjs';
|
|
@@ -240,6 +240,9 @@ interface FoundationModuleDefinitions {
|
|
|
240
240
|
TokenUsageAdminSummary: ModuleWithPermissions;
|
|
241
241
|
TokenUsageAdminTimeline: ModuleWithPermissions;
|
|
242
242
|
TokenUsageAdminBreakdown: ModuleWithPermissions;
|
|
243
|
+
TokenUsageReportSummary: ModuleWithPermissions;
|
|
244
|
+
TokenUsageReportTimeline: ModuleWithPermissions;
|
|
245
|
+
TokenUsageReportBreakdown: ModuleWithPermissions;
|
|
243
246
|
}
|
|
244
247
|
interface AppModuleDefinitions {
|
|
245
248
|
}
|
|
@@ -1371,6 +1374,13 @@ declare class StripeProduct extends AbstractApiData implements StripeProductInte
|
|
|
1371
1374
|
createJsonApi(data: StripeProductInput): any;
|
|
1372
1375
|
}
|
|
1373
1376
|
|
|
1377
|
+
declare enum StripeProductFields {
|
|
1378
|
+
stripeProductId = "stripeProductId",
|
|
1379
|
+
name = "name",
|
|
1380
|
+
status = "status",
|
|
1381
|
+
prices = "prices"
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1374
1384
|
declare class StripeProductService extends AbstractService {
|
|
1375
1385
|
/**
|
|
1376
1386
|
* List all products (admin)
|
|
@@ -1447,6 +1457,15 @@ declare class StripePrice extends AbstractApiData implements StripePriceInterfac
|
|
|
1447
1457
|
createJsonApi(data: StripePriceInput): any;
|
|
1448
1458
|
}
|
|
1449
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
|
+
|
|
1450
1469
|
/**
|
|
1451
1470
|
* Admin billing service for managing products and prices
|
|
1452
1471
|
*/
|
|
@@ -2495,4 +2514,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2495
2514
|
|
|
2496
2515
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2497
2516
|
|
|
2498
|
-
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
|
@@ -3,8 +3,8 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
|
|
|
3
3
|
import { A as ApiRequestDataTypeInterface, F as FieldSelector } from '../ApiRequestDataTypeInterface-CYEcRUrh.js';
|
|
4
4
|
export { G as GetterKeys, c as createJsonApiInclusion } from '../ApiRequestDataTypeInterface-CYEcRUrh.js';
|
|
5
5
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-CWLvSCvS.js';
|
|
6
|
-
import { A as AbstractApiData } from '../
|
|
7
|
-
export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule } from '../
|
|
6
|
+
import { A as AbstractApiData } from '../config-BIjrg5wd.js';
|
|
7
|
+
export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule, c as configureTokenUsage, g as getTokenUsageCurrency, t as tokenUsageModules } from '../config-BIjrg5wd.js';
|
|
8
8
|
import { A as AbstractService, N as NextRef, P as PreviousRef } from '../AbstractService-Cew0PD0L.js';
|
|
9
9
|
export { H as HttpMethod, S as SelfRef, T as TotalRef, b as clearLastApiMeta, c as clearLastApiTotal, d as getGlobalErrorHandler, a as getLastApiMeta, g as getLastApiTotal, s as setGlobalErrorHandler } from '../AbstractService-Cew0PD0L.js';
|
|
10
10
|
import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as PermissionModule, a as ModuleFactory } from '../types-bsm8Fp55.js';
|
|
@@ -240,6 +240,9 @@ interface FoundationModuleDefinitions {
|
|
|
240
240
|
TokenUsageAdminSummary: ModuleWithPermissions;
|
|
241
241
|
TokenUsageAdminTimeline: ModuleWithPermissions;
|
|
242
242
|
TokenUsageAdminBreakdown: ModuleWithPermissions;
|
|
243
|
+
TokenUsageReportSummary: ModuleWithPermissions;
|
|
244
|
+
TokenUsageReportTimeline: ModuleWithPermissions;
|
|
245
|
+
TokenUsageReportBreakdown: ModuleWithPermissions;
|
|
243
246
|
}
|
|
244
247
|
interface AppModuleDefinitions {
|
|
245
248
|
}
|
|
@@ -1371,6 +1374,13 @@ declare class StripeProduct extends AbstractApiData implements StripeProductInte
|
|
|
1371
1374
|
createJsonApi(data: StripeProductInput): any;
|
|
1372
1375
|
}
|
|
1373
1376
|
|
|
1377
|
+
declare enum StripeProductFields {
|
|
1378
|
+
stripeProductId = "stripeProductId",
|
|
1379
|
+
name = "name",
|
|
1380
|
+
status = "status",
|
|
1381
|
+
prices = "prices"
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1374
1384
|
declare class StripeProductService extends AbstractService {
|
|
1375
1385
|
/**
|
|
1376
1386
|
* List all products (admin)
|
|
@@ -1447,6 +1457,15 @@ declare class StripePrice extends AbstractApiData implements StripePriceInterfac
|
|
|
1447
1457
|
createJsonApi(data: StripePriceInput): any;
|
|
1448
1458
|
}
|
|
1449
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
|
+
|
|
1450
1469
|
/**
|
|
1451
1470
|
* Admin billing service for managing products and prices
|
|
1452
1471
|
*/
|
|
@@ -2495,4 +2514,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2495
2514
|
|
|
2496
2515
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2497
2516
|
|
|
2498
|
-
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 };
|