@carlonicora/nextjs-jsonapi 1.85.0 → 1.86.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/{BlockNoteEditor-UKGNL227.mjs → BlockNoteEditor-7TZA4XEN.mjs} +3 -3
  2. package/dist/{BlockNoteEditor-NHEJMFCW.js → BlockNoteEditor-KRDP6OSE.js} +7 -7
  3. package/dist/{BlockNoteEditor-NHEJMFCW.js.map → BlockNoteEditor-KRDP6OSE.js.map} +1 -1
  4. package/dist/billing/index.js +303 -303
  5. package/dist/billing/index.mjs +2 -2
  6. package/dist/{chunk-ZEJSPTHS.js → chunk-2AK4GRIB.js} +19 -11
  7. package/dist/chunk-2AK4GRIB.js.map +1 -0
  8. package/dist/{chunk-UUMDUIY6.js → chunk-AMP2ZDAV.js} +80 -80
  9. package/dist/{chunk-UUMDUIY6.js.map → chunk-AMP2ZDAV.js.map} +1 -1
  10. package/dist/{chunk-TTVVHFS4.mjs → chunk-CZ56O6JZ.mjs} +9 -9
  11. package/dist/{chunk-TTVVHFS4.mjs.map → chunk-CZ56O6JZ.mjs.map} +1 -1
  12. package/dist/{chunk-PV5V6CVW.mjs → chunk-NEJ7CDM3.mjs} +9 -1
  13. package/dist/chunk-NEJ7CDM3.mjs.map +1 -0
  14. package/dist/client/index.d.mts +1 -1
  15. package/dist/client/index.d.ts +1 -1
  16. package/dist/client/index.js +5 -3
  17. package/dist/client/index.js.map +1 -1
  18. package/dist/client/index.mjs +4 -2
  19. package/dist/components/index.js +3 -3
  20. package/dist/components/index.mjs +2 -2
  21. package/dist/{config-B5oBQVEA.d.ts → config-CLQynoaa.d.ts} +15 -1
  22. package/dist/{config-Bx_uh22h.d.mts → config-k61pe_o2.d.mts} +15 -1
  23. package/dist/contexts/index.js +3 -3
  24. package/dist/contexts/index.mjs +2 -2
  25. package/dist/index.d.mts +1 -1
  26. package/dist/index.d.ts +1 -1
  27. package/dist/index.js +4 -2
  28. package/dist/index.js.map +1 -1
  29. package/dist/index.mjs +3 -1
  30. package/package.json +1 -1
  31. package/src/client/config.ts +20 -0
  32. package/src/features/auth/components/buttons/GoogleSignInButton.tsx +2 -2
  33. package/src/features/auth/components/details/LandingComponent.tsx +2 -2
  34. package/src/features/auth/components/forms/Login.tsx +2 -2
  35. package/src/features/auth/components/forms/Register.tsx +3 -3
  36. package/src/index.ts +8 -1
  37. package/dist/chunk-PV5V6CVW.mjs.map +0 -1
  38. package/dist/chunk-ZEJSPTHS.js.map +0 -1
  39. /package/dist/{BlockNoteEditor-UKGNL227.mjs.map → BlockNoteEditor-7TZA4XEN.mjs.map} +0 -0
@@ -34,6 +34,13 @@ function getApiUrl() {
34
34
  return "";
35
35
  }
36
36
  __name(getApiUrl, "getApiUrl");
37
+ function getPublicApiUrl() {
38
+ if (typeof process !== "undefined" && process.env?.NEXT_PUBLIC_API_URL) {
39
+ return process.env.NEXT_PUBLIC_API_URL;
40
+ }
41
+ return "";
42
+ }
43
+ __name(getPublicApiUrl, "getPublicApiUrl");
37
44
  function getAppUrl() {
38
45
  if (_clientConfig?.appUrl) {
39
46
  return _clientConfig.appUrl;
@@ -241,6 +248,7 @@ export {
241
248
  configureJsonApi,
242
249
  configureClientConfig,
243
250
  getApiUrl,
251
+ getPublicApiUrl,
244
252
  getAppUrl,
245
253
  getTrackablePages,
246
254
  getStripePublishableKey,
@@ -268,4 +276,4 @@ export {
268
276
  ACTION_TYPES,
269
277
  RbacService
270
278
  };
271
- //# sourceMappingURL=chunk-PV5V6CVW.mjs.map
279
+ //# sourceMappingURL=chunk-NEJ7CDM3.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/client/config.ts","../src/i18n/config.ts","../src/login/config.ts","../src/roles/config.ts","../src/features/waitlist/config/waitlist.config.ts","../src/features/referral/config.ts","../src/features/rbac/data/RbacTypes.ts","../src/features/rbac/data/RbacService.ts"],"sourcesContent":["\"use client\";\n\nimport { ModuleWithPermissions } from \"../permissions/types\";\nimport { setBootstrapper } from \"../core/registry/bootstrapStore\";\n\n// Config storage for client-side contexts\nlet _clientConfig: {\n apiUrl: string;\n appUrl?: string;\n trackablePages?: ModuleWithPermissions[];\n bootstrapper?: () => void;\n additionalHeaders?: Record<string, string>;\n stripePublishableKey?: string;\n} | null = null;\n\n/**\n * Configure the JSON:API client. This is the main configuration function.\n * This is typically called during app initialization.\n */\nexport function configureJsonApi(config: {\n apiUrl: string;\n appUrl?: string;\n trackablePages?: ModuleWithPermissions[];\n bootstrapper?: () => void;\n additionalHeaders?: Record<string, string>;\n stripePublishableKey?: string;\n}): void {\n _clientConfig = config;\n // Register and call bootstrapper to register all modules\n if (config.bootstrapper) {\n setBootstrapper(config.bootstrapper);\n config.bootstrapper();\n }\n}\n\n/**\n * Configure the client config. This is typically called during app initialization.\n * @deprecated Use configureJsonApi instead\n */\nexport function configureClientConfig(config: {\n apiUrl: string;\n appUrl?: string;\n trackablePages?: ModuleWithPermissions[];\n}): void {\n _clientConfig = config;\n}\n\n/**\n * Get the configured API URL.\n *\n * This may resolve to an internal/private host (e.g. a docker-network\n * hostname) when configured to do so for SSR fetches. Do NOT use this for\n * URLs that are rendered into HTML and followed by the browser — use\n * `getPublicApiUrl()` instead.\n */\nexport function getApiUrl(): string {\n if (_clientConfig?.apiUrl) {\n return _clientConfig.apiUrl;\n }\n if (typeof process !== \"undefined\" && process.env?.NEXT_PUBLIC_API_URL) {\n return process.env.NEXT_PUBLIC_API_URL;\n }\n return \"\";\n}\n\n/**\n * Get the public-facing API URL.\n *\n * Always sourced from `NEXT_PUBLIC_API_URL` so it is identical on server\n * and client, and reachable from the user's browser. Use for any URL that\n * gets rendered into HTML the browser will navigate to (links, redirects,\n * OAuth hrefs).\n */\nexport function getPublicApiUrl(): string {\n if (typeof process !== \"undefined\" && process.env?.NEXT_PUBLIC_API_URL) {\n return process.env.NEXT_PUBLIC_API_URL;\n }\n return \"\";\n}\n\n/**\n * Get the configured app URL.\n */\nexport function getAppUrl(): string {\n if (_clientConfig?.appUrl) {\n return _clientConfig.appUrl;\n }\n if (typeof process !== \"undefined\" && process.env?.NEXT_PUBLIC_APP_URL) {\n return process.env.NEXT_PUBLIC_APP_URL;\n }\n if (typeof window !== \"undefined\") {\n return window.location.origin;\n }\n return \"\";\n}\n\n/**\n * Get the configured trackable pages.\n */\nexport function getTrackablePages(): ModuleWithPermissions[] {\n return _clientConfig?.trackablePages ?? [];\n}\n\n/**\n * Get the configured Stripe publishable key.\n */\nexport function getStripePublishableKey(): string | undefined {\n return _clientConfig?.stripePublishableKey;\n}\n","import { ComponentType } from \"react\";\n\n// Types for injected hooks\nexport interface I18nRouter {\n push: (href: string) => void;\n replace: (href: string) => void;\n back: () => void;\n forward: () => void;\n refresh: () => void;\n prefetch: (href: string) => void;\n}\n\nexport type UseRouterHook = () => I18nRouter;\nexport type UseTranslationsHook = (namespace?: string) => (key: string, values?: Record<string, any>) => string;\nexport type UseLocaleHook = () => string;\n\nexport type UseDateFnsLocaleHook = () => any; // date-fns Locale type\nexport type LinkComponent = ComponentType<{ href: string; children: React.ReactNode; [key: string]: any }>;\n\nexport interface I18nConfig {\n useRouter: UseRouterHook;\n useTranslations: UseTranslationsHook;\n useLocale?: UseLocaleHook;\n useDateFnsLocale?: UseDateFnsLocaleHook;\n Link: LinkComponent;\n usePathname: () => string;\n}\n\n// Private storage\nlet _config: I18nConfig | null = null;\n\n// Configuration function (called by app at startup)\nexport function configureI18n(config: I18nConfig): void {\n _config = config;\n}\n\n// Hooks for library components to use\nexport function useI18nRouter(): I18nRouter {\n if (!_config?.useRouter) {\n throw new Error(\"i18n not configured. Call configureI18n() at app startup.\");\n }\n return _config.useRouter();\n}\n\nexport function useI18nTranslations(namespace?: string): (key: string, values?: Record<string, any>) => string {\n if (!_config?.useTranslations) {\n // Fallback: return key as-is (safe for server/client)\n return (key: string) => key;\n }\n return _config.useTranslations(namespace);\n}\n\nexport function getI18nLink(): LinkComponent {\n if (!_config?.Link) {\n throw new Error(\"i18n not configured. Call configureI18n() at app startup.\");\n }\n return _config.Link;\n}\n\nexport function useI18nLocale(): string {\n if (_config?.useLocale) {\n return _config.useLocale();\n }\n // Fallback to English (safe for server/client)\n return \"en\";\n}\n\nexport function useI18nDateFnsLocale(): any {\n if (_config?.useDateFnsLocale) {\n return _config.useDateFnsLocale();\n }\n // Fallback to undefined (Calendar will use default)\n return undefined;\n}\n","let _useDiscordAuth: boolean = false;\nlet _useGoogleAuth: boolean = false;\nlet _useInternalAuth: boolean = true;\nlet _allowRegistration: boolean = true;\nlet _registrationMode: \"open\" | \"closed\" | \"waitlist\" = \"open\";\n\nexport type RegistrationMode = \"open\" | \"closed\" | \"waitlist\";\n\nexport interface LoginConfig {\n discordClientId?: string;\n googleClientId?: string;\n useInternalAuth?: boolean;\n allowRegistration?: boolean;\n registrationMode?: RegistrationMode;\n}\n\nexport function configureLogin(params: LoginConfig): void {\n _useDiscordAuth = !!params.discordClientId;\n _useGoogleAuth = !!params.googleClientId;\n _useInternalAuth = params.useInternalAuth ?? true;\n _allowRegistration = params.allowRegistration ?? true;\n _registrationMode = params.registrationMode ?? \"open\";\n}\n\nexport function isDiscordAuthEnabled(): boolean {\n return _useDiscordAuth;\n}\n\nexport function isGoogleAuthEnabled(): boolean {\n return _useGoogleAuth;\n}\n\nexport function isInternalAuthEnabled(): boolean {\n return _useInternalAuth;\n}\n\nexport function isRegistrationAllowed(): boolean {\n return _allowRegistration;\n}\n\nexport function getRegistrationMode(): RegistrationMode {\n return _registrationMode;\n}\n","/**\n * Role ID configuration interface\n * Apps provide their role IDs via configureRoles()\n */\nexport interface RoleIdConfig {\n Administrator: string;\n CompanyAdministrator: string;\n [key: string]: string; // Allow additional roles\n}\n\n// Private storage for the injected role IDs\nlet _roleId: RoleIdConfig | null = null;\n\n/**\n * Configure role IDs for the library\n * Call this at app startup to provide role ID constants\n *\n * @example\n * ```typescript\n * import { configureRoles } from \"@carlonicora/nextjs-jsonapi\";\n * import { RoleId } from \"@phlow/shared\";\n *\n * configureRoles(RoleId);\n * ```\n */\nexport function configureRoles(roleId: RoleIdConfig): void {\n _roleId = roleId;\n}\n\n/**\n * Get configured role IDs\n * @throws Error if roles not configured\n */\nexport function getRoleId(): RoleIdConfig {\n if (!_roleId) {\n throw new Error(\"Roles not configured. Call configureRoles() at app startup.\");\n }\n return _roleId;\n}\n\n/**\n * Check if roles have been configured\n */\nexport function isRolesConfigured(): boolean {\n return _roleId !== null;\n}\n","export type QuestionnaireFieldType = \"text\" | \"textarea\" | \"select\" | \"checkbox\";\n\nexport interface QuestionnaireOption {\n value: string;\n label: string;\n description?: string;\n}\n\nexport interface QuestionnaireField {\n id: string;\n type: QuestionnaireFieldType;\n label: string;\n description?: string;\n placeholder?: string;\n required?: boolean;\n options?: QuestionnaireOption[];\n}\n\nexport interface WaitlistConfig {\n questionnaire?: QuestionnaireField[];\n heroTitle?: string;\n heroSubtitle?: string;\n heroDescription?: string;\n benefits?: string[];\n}\n\nlet _waitlistConfig: WaitlistConfig = {};\n\nexport function configureWaitlist(config: WaitlistConfig): void {\n _waitlistConfig = config;\n}\n\nexport function getWaitlistConfig(): WaitlistConfig {\n return _waitlistConfig;\n}\n","/**\n * Configuration interface for frontend referral feature.\n */\nexport interface ReferralConfig {\n /**\n * Whether the referral feature is enabled.\n * When false, components render nothing and hooks return null.\n * @default false\n */\n enabled?: boolean;\n\n /**\n * Name of the cookie used to store referral codes.\n * @default \"referral_code\"\n */\n cookieName?: string;\n\n /**\n * Number of days the referral cookie is valid.\n * @default 30\n */\n cookieDays?: number;\n\n /**\n * Query parameter name for referral code in URL.\n * @default \"ref\"\n */\n urlParamName?: string;\n\n /**\n * Base URL for referral links.\n * @default window.location.origin (client-side only)\n */\n referralUrlBase?: string;\n\n /**\n * Path to append to base URL for referral links.\n * @default \"/\"\n */\n referralPath?: string;\n}\n\n/**\n * Default configuration values\n */\nexport const DEFAULT_REFERRAL_CONFIG: Required<ReferralConfig> = {\n enabled: false,\n cookieName: \"referral_code\",\n cookieDays: 30,\n urlParamName: \"ref\",\n referralUrlBase: \"\",\n referralPath: \"/\",\n};\n\n// Private storage for configuration\nlet _referralConfig: Required<ReferralConfig> = { ...DEFAULT_REFERRAL_CONFIG };\n\n/**\n * Configure referral feature settings.\n * Call this at app startup to enable and configure referral functionality.\n *\n * @example\n * ```typescript\n * import { configureReferral } from \"@carlonicora/nextjs-jsonapi\";\n *\n * configureReferral({\n * enabled: process.env.NEXT_PUBLIC_REFERRAL_ENABLED === 'true',\n * cookieDays: 30,\n * });\n * ```\n */\nexport function configureReferral(config: ReferralConfig): void {\n _referralConfig = { ...DEFAULT_REFERRAL_CONFIG, ...config };\n}\n\n/**\n * Get the current referral configuration.\n * @internal\n */\nexport function getReferralConfig(): Required<ReferralConfig> {\n return _referralConfig;\n}\n\n/**\n * Check if referral feature is enabled.\n */\nexport function isReferralEnabled(): boolean {\n return _referralConfig.enabled;\n}\n","export const COMPANY_ADMINISTRATOR_ROLE_ID = \"2e1eee00-6cba-4506-9059-ccd24e4ea5b0\";\n\nexport type PermissionValue = boolean | string;\n\nexport type ActionType = \"read\" | \"create\" | \"update\" | \"delete\";\n\nexport const ACTION_TYPES: ActionType[] = [\"read\", \"create\", \"update\", \"delete\"];\n\n/** The permissions object shape used by both Module and PermissionMapping entities */\nexport type PermissionsMap = {\n create?: PermissionValue;\n read?: PermissionValue;\n update?: PermissionValue;\n delete?: PermissionValue;\n};\n\n/**\n * Declarative-RBAC matrix types.\n *\n * Mirror of the library types defined in\n * `packages/nestjs-neo4jsonapi/src/foundations/rbac/dsl/types.ts`.\n * Frontend does not import from backend, so the shape is redefined here.\n *\n * A `PermToken` represents a single permission entry:\n * - `scope: true` → unconditional (e.g. full read of the module)\n * - `scope: false` → nothing (rarely used, mostly a placeholder)\n * - `scope: \"path\"` → scoped by relationship path (e.g. \"orders.account\")\n */\nexport type PermToken = { action: string; scope: boolean | string };\n\n/**\n * A per-module block of the matrix. Always has a `default` row (permissions\n * granted to every role). Additional keys are role IDs → role-specific\n * permission tokens that are unioned with `default` to produce the effective\n * permissions for that role in that module.\n */\nexport type RbacModuleBlock = { default: PermToken[] } & Record<string, PermToken[]>;\n\n/**\n * The full RBAC matrix as served by the dev endpoint `GET /_dev/rbac/matrix`.\n * Keys are module IDs; values are module blocks.\n */\nexport type RbacMatrix = Record<string, RbacModuleBlock>;\n","import { AbstractService, EndpointCreator, HttpMethod, Modules } from \"../../../core\";\nimport type { RbacMatrixModel } from \"./RbacMatrixModel\";\nimport type { RbacMatrix } from \"./RbacTypes\";\n\n/**\n * RbacService — fetches RBAC configuration for the admin UI.\n *\n * Declarative-matrix methods (`fetchMatrix`, `saveMatrix`) talk to the\n * dev-only endpoints added in\n * `packages/nestjs-neo4jsonapi/.../rbac-dev.controller.ts`. The controller\n * speaks JSON:API (singleton resource with `type: \"rbac-matrix\"`, `id:\n * \"singleton\"`), so these methods go through the standard `callApi()`\n * pipeline like every other service in the codebase.\n *\n * The backend only registers these routes when `devMode` is enabled on\n * `RbacModule.register` (see `apps/api/src/features/features.modules.ts`).\n * In production the routes return 404; callers should guard with a dev-mode\n * check.\n */\nexport class RbacService extends AbstractService {\n /**\n * Fetch the current RBAC matrix plus each module's known BFS relationship\n * paths (used by the permission picker as scope suggestions).\n *\n * Dev-only endpoint — see class header.\n */\n static async fetchMatrix(): Promise<{\n matrix: RbacMatrix;\n modulePaths: Record<string, readonly string[]>;\n }> {\n const endpoint = new EndpointCreator({ endpoint: Modules.RbacMatrix }).generate();\n\n const model = await this.callApi<RbacMatrixModel>({\n type: Modules.RbacMatrix,\n method: HttpMethod.GET,\n endpoint,\n });\n\n return {\n matrix: model.matrix ?? {},\n modulePaths: model.modulePaths ?? {},\n };\n }\n\n /**\n * Persist a matrix back to the declarative `permissions.ts` file.\n *\n * The backend serializes the matrix to formatted TypeScript using the\n * provided `roleNames` / `moduleNames` lookup tables (so the emitted file\n * references `RoleId.X` / `ModuleId.X` rather than raw UUIDs) and writes\n * it to `outputPath` (absolute, or relative to the repo root).\n *\n * Dev-only endpoint — see class header.\n */\n static async saveMatrix(args: {\n matrix: RbacMatrix;\n roleNames: Record<string, string>;\n moduleNames: Record<string, string>;\n outputPath: string;\n }): Promise<{ bytesWritten: number; path: string }> {\n const endpoint = new EndpointCreator({ endpoint: Modules.RbacMatrix }).generate();\n\n const model = await this.callApi<RbacMatrixModel>({\n type: Modules.RbacMatrix,\n method: HttpMethod.PUT,\n endpoint,\n input: args,\n });\n\n return {\n bytesWritten: model.bytesWritten ?? 0,\n path: model.path ?? \"\",\n };\n }\n}\n"],"mappings":";;;;;;;;;;;;;AAMA,IAAI,gBAOO;AAMJ,SAAS,iBAAiB,QAOxB;AACP,kBAAgB;AAEhB,MAAI,OAAO,cAAc;AACvB,oBAAgB,OAAO,YAAY;AACnC,WAAO,aAAa;AAAA,EACtB;AACF;AAdgB;AAoBT,SAAS,sBAAsB,QAI7B;AACP,kBAAgB;AAClB;AANgB;AAgBT,SAAS,YAAoB;AAClC,MAAI,eAAe,QAAQ;AACzB,WAAO,cAAc;AAAA,EACvB;AACA,MAAI,OAAO,YAAY,eAAe,QAAQ,KAAK,qBAAqB;AACtE,WAAO,QAAQ,IAAI;AAAA,EACrB;AACA,SAAO;AACT;AARgB;AAkBT,SAAS,kBAA0B;AACxC,MAAI,OAAO,YAAY,eAAe,QAAQ,KAAK,qBAAqB;AACtE,WAAO,QAAQ,IAAI;AAAA,EACrB;AACA,SAAO;AACT;AALgB;AAUT,SAAS,YAAoB;AAClC,MAAI,eAAe,QAAQ;AACzB,WAAO,cAAc;AAAA,EACvB;AACA,MAAI,OAAO,YAAY,eAAe,QAAQ,KAAK,qBAAqB;AACtE,WAAO,QAAQ,IAAI;AAAA,EACrB;AACA,MAAI,OAAO,WAAW,aAAa;AACjC,WAAO,OAAO,SAAS;AAAA,EACzB;AACA,SAAO;AACT;AAXgB;AAgBT,SAAS,oBAA6C;AAC3D,SAAO,eAAe,kBAAkB,CAAC;AAC3C;AAFgB;AAOT,SAAS,0BAA8C;AAC5D,SAAO,eAAe;AACxB;AAFgB;;;AC7EhB,IAAI,UAA6B;AAG1B,SAAS,cAAc,QAA0B;AACtD,YAAU;AACZ;AAFgB;AAKT,SAAS,gBAA4B;AAC1C,MAAI,CAAC,SAAS,WAAW;AACvB,UAAM,IAAI,MAAM,2DAA2D;AAAA,EAC7E;AACA,SAAO,QAAQ,UAAU;AAC3B;AALgB;AAOT,SAAS,oBAAoB,WAA2E;AAC7G,MAAI,CAAC,SAAS,iBAAiB;AAE7B,WAAO,CAAC,QAAgB;AAAA,EAC1B;AACA,SAAO,QAAQ,gBAAgB,SAAS;AAC1C;AANgB;AAQT,SAAS,cAA6B;AAC3C,MAAI,CAAC,SAAS,MAAM;AAClB,UAAM,IAAI,MAAM,2DAA2D;AAAA,EAC7E;AACA,SAAO,QAAQ;AACjB;AALgB;AAOT,SAAS,gBAAwB;AACtC,MAAI,SAAS,WAAW;AACtB,WAAO,QAAQ,UAAU;AAAA,EAC3B;AAEA,SAAO;AACT;AANgB;AAQT,SAAS,uBAA4B;AAC1C,MAAI,SAAS,kBAAkB;AAC7B,WAAO,QAAQ,iBAAiB;AAAA,EAClC;AAEA,SAAO;AACT;AANgB;;;ACnEhB,IAAI,kBAA2B;AAC/B,IAAI,iBAA0B;AAC9B,IAAI,mBAA4B;AAChC,IAAI,qBAA8B;AAClC,IAAI,oBAAoD;AAYjD,SAAS,eAAe,QAA2B;AACxD,oBAAkB,CAAC,CAAC,OAAO;AAC3B,mBAAiB,CAAC,CAAC,OAAO;AAC1B,qBAAmB,OAAO,mBAAmB;AAC7C,uBAAqB,OAAO,qBAAqB;AACjD,sBAAoB,OAAO,oBAAoB;AACjD;AANgB;AAQT,SAAS,uBAAgC;AAC9C,SAAO;AACT;AAFgB;AAIT,SAAS,sBAA+B;AAC7C,SAAO;AACT;AAFgB;AAIT,SAAS,wBAAiC;AAC/C,SAAO;AACT;AAFgB;AAIT,SAAS,wBAAiC;AAC/C,SAAO;AACT;AAFgB;AAIT,SAAS,sBAAwC;AACtD,SAAO;AACT;AAFgB;;;AC7BhB,IAAI,UAA+B;AAc5B,SAAS,eAAe,QAA4B;AACzD,YAAU;AACZ;AAFgB;AAQT,SAAS,YAA0B;AACxC,MAAI,CAAC,SAAS;AACZ,UAAM,IAAI,MAAM,6DAA6D;AAAA,EAC/E;AACA,SAAO;AACT;AALgB;AAUT,SAAS,oBAA6B;AAC3C,SAAO,YAAY;AACrB;AAFgB;;;ACjBhB,IAAI,kBAAkC,CAAC;AAEhC,SAAS,kBAAkB,QAA8B;AAC9D,oBAAkB;AACpB;AAFgB;AAIT,SAAS,oBAAoC;AAClD,SAAO;AACT;AAFgB;;;ACaT,IAAM,0BAAoD;AAAA,EAC/D,SAAS;AAAA,EACT,YAAY;AAAA,EACZ,YAAY;AAAA,EACZ,cAAc;AAAA,EACd,iBAAiB;AAAA,EACjB,cAAc;AAChB;AAGA,IAAI,kBAA4C,EAAE,GAAG,wBAAwB;AAgBtE,SAAS,kBAAkB,QAA8B;AAC9D,oBAAkB,EAAE,GAAG,yBAAyB,GAAG,OAAO;AAC5D;AAFgB;AAQT,SAAS,oBAA8C;AAC5D,SAAO;AACT;AAFgB;AAOT,SAAS,oBAA6B;AAC3C,SAAO,gBAAgB;AACzB;AAFgB;;;ACtFT,IAAM,gCAAgC;AAMtC,IAAM,eAA6B,CAAC,QAAQ,UAAU,UAAU,QAAQ;;;ACaxE,IAAM,cAAN,cAA0B,gBAAgB;AAAA,EAnBjD,OAmBiD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAO/C,aAAa,cAGV;AACD,UAAM,WAAW,IAAI,gBAAgB,EAAE,UAAU,QAAQ,WAAW,CAAC,EAAE,SAAS;AAEhF,UAAM,QAAQ,MAAM,KAAK,QAAyB;AAAA,MAChD,MAAM,QAAQ;AAAA,MACd;AAAA,MACA;AAAA,IACF,CAAC;AAED,WAAO;AAAA,MACL,QAAQ,MAAM,UAAU,CAAC;AAAA,MACzB,aAAa,MAAM,eAAe,CAAC;AAAA,IACrC;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAYA,aAAa,WAAW,MAK4B;AAClD,UAAM,WAAW,IAAI,gBAAgB,EAAE,UAAU,QAAQ,WAAW,CAAC,EAAE,SAAS;AAEhF,UAAM,QAAQ,MAAM,KAAK,QAAyB;AAAA,MAChD,MAAM,QAAQ;AAAA,MACd;AAAA,MACA;AAAA,MACA,OAAO;AAAA,IACT,CAAC;AAED,WAAO;AAAA,MACL,cAAc,MAAM,gBAAgB;AAAA,MACpC,MAAM,MAAM,QAAQ;AAAA,IACtB;AAAA,EACF;AACF;","names":[]}
@@ -8,7 +8,7 @@ import { A as ApiRequestDataTypeInterface } from '../ApiRequestDataTypeInterface
8
8
  import { A as ApiResponseInterface } from '../ApiResponseInterface-rsXRL_Hn.mjs';
9
9
  import { A as ApiData } from '../ApiData-DPKNfY-9.mjs';
10
10
  import { M as ModuleWithPermissions, b as PageUrl, C as ContentInterface, l as RoleInterface, U as UserInterface } from '../notification.interface-DLZGtV7Z.mjs';
11
- export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-Bx_uh22h.mjs';
11
+ export { I as I18nConfig, m as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, n as UseLocaleHook, o as UseRouterHook, p as UseTranslationsHook, h as configureClientConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, i as getI18nLink, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages, u as useI18nDateFnsLocale, j as useI18nLocale, k as useI18nRouter, l as useI18nTranslations } from '../config-k61pe_o2.mjs';
12
12
  import { ColumnDef } from '@tanstack/react-table';
13
13
  import { D as DataListRetriever } from '../useDataListRetriever-BqJSFBck.mjs';
14
14
  export { u as useDataListRetriever } from '../useDataListRetriever-BqJSFBck.mjs';
@@ -8,7 +8,7 @@ import { A as ApiRequestDataTypeInterface } from '../ApiRequestDataTypeInterface
8
8
  import { A as ApiResponseInterface } from '../ApiResponseInterface-CWLvSCvS.js';
9
9
  import { A as ApiData } from '../ApiData-DPKNfY-9.js';
10
10
  import { M as ModuleWithPermissions, b as PageUrl, C as ContentInterface, l as RoleInterface, U as UserInterface } from '../notification.interface-aLEJbA_g.js';
11
- export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-B5oBQVEA.js';
11
+ export { I as I18nConfig, m as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, n as UseLocaleHook, o as UseRouterHook, p as UseTranslationsHook, h as configureClientConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, i as getI18nLink, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages, u as useI18nDateFnsLocale, j as useI18nLocale, k as useI18nRouter, l as useI18nTranslations } from '../config-CLQynoaa.js';
12
12
  import { ColumnDef } from '@tanstack/react-table';
13
13
  import { D as DataListRetriever } from '../useDataListRetriever-BqJSFBck.js';
14
14
  export { u as useDataListRetriever } from '../useDataListRetriever-BqJSFBck.js';
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- var _chunkUUMDUIY6js = require('../chunk-UUMDUIY6.js');
29
+ var _chunkAMP2ZDAVjs = require('../chunk-AMP2ZDAV.js');
30
30
 
31
31
 
32
32
 
@@ -40,7 +40,8 @@ var _chunkUUMDUIY6js = require('../chunk-UUMDUIY6.js');
40
40
 
41
41
 
42
42
 
43
- var _chunkZEJSPTHSjs = require('../chunk-ZEJSPTHS.js');
43
+
44
+ var _chunk2AK4GRIBjs = require('../chunk-2AK4GRIB.js');
44
45
 
45
46
 
46
47
 
@@ -117,5 +118,6 @@ require('../chunk-7QVYU63E.js');
117
118
 
118
119
 
119
120
 
120
- exports.ClientJsonApiDelete = _chunkN4YZ45SKjs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunkN4YZ45SKjs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunkN4YZ45SKjs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunkN4YZ45SKjs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunkN4YZ45SKjs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunkUUMDUIY6js.JsonApiProvider; exports.TableGeneratorRegistry = _chunkUUMDUIY6js.TableGeneratorRegistry; exports.configureClientConfig = _chunkZEJSPTHSjs.configureClientConfig; exports.configureClientJsonApi = _chunkN4YZ45SKjs.configureClientJsonApi; exports.configureI18n = _chunkZEJSPTHSjs.configureI18n; exports.configureJsonApi = _chunkZEJSPTHSjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.getApiUrl = _chunkZEJSPTHSjs.getApiUrl; exports.getAppUrl = _chunkZEJSPTHSjs.getAppUrl; exports.getClientApiUrl = _chunkN4YZ45SKjs.getClientApiUrl; exports.getClientAppUrl = _chunkN4YZ45SKjs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunkN4YZ45SKjs.getClientTrackablePages; exports.getI18nLink = _chunkZEJSPTHSjs.getI18nLink; exports.getStripePublishableKey = _chunkZEJSPTHSjs.getStripePublishableKey; exports.getTrackablePages = _chunkZEJSPTHSjs.getTrackablePages; exports.registerTableGenerator = _chunkUUMDUIY6js.registerTableGenerator; exports.tableGeneratorRegistry = _chunkUUMDUIY6js.tableGeneratorRegistry; exports.useContentTableStructure = _chunkUUMDUIY6js.useContentTableStructure; exports.useCustomD3Graph = _chunkUUMDUIY6js.useCustomD3Graph; exports.useDataListRetriever = _chunkUUMDUIY6js.useDataListRetriever; exports.useDebounce = _chunkUUMDUIY6js.useDebounce; exports.useI18nDateFnsLocale = _chunkZEJSPTHSjs.useI18nDateFnsLocale; exports.useI18nLocale = _chunkZEJSPTHSjs.useI18nLocale; exports.useI18nRouter = _chunkZEJSPTHSjs.useI18nRouter; exports.useI18nTranslations = _chunkZEJSPTHSjs.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunkUUMDUIY6js.useJsonApiGet; exports.useJsonApiMutation = _chunkUUMDUIY6js.useJsonApiMutation; exports.useNotificationSync = _chunkUUMDUIY6js.useNotificationSync; exports.useOAuthClient = _chunkUUMDUIY6js.useOAuthClient; exports.useOAuthClients = _chunkUUMDUIY6js.useOAuthClients; exports.useOAuthConsent = _chunkUUMDUIY6js.useOAuthConsent; exports.usePageTracker = _chunkUUMDUIY6js.usePageTracker; exports.usePageUrlGenerator = _chunkUUMDUIY6js.usePageUrlGenerator; exports.useRehydration = _chunkUUMDUIY6js.useRehydration; exports.useRehydrationList = _chunkUUMDUIY6js.useRehydrationList; exports.useRoleTableStructure = _chunkUUMDUIY6js.useRoleTableStructure; exports.useSocket = _chunkUUMDUIY6js.useSocket; exports.useSubscriptionStatus = _chunkUUMDUIY6js.useSubscriptionStatus; exports.useTableGenerator = _chunkUUMDUIY6js.useTableGenerator; exports.useUrlRewriter = _chunkUUMDUIY6js.useUrlRewriter; exports.useUserSearch = _chunkUUMDUIY6js.useUserSearch; exports.useUserTableStructure = _chunkUUMDUIY6js.useUserTableStructure;
121
+
122
+ exports.ClientJsonApiDelete = _chunkN4YZ45SKjs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunkN4YZ45SKjs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunkN4YZ45SKjs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunkN4YZ45SKjs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunkN4YZ45SKjs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunkAMP2ZDAVjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunkAMP2ZDAVjs.TableGeneratorRegistry; exports.configureClientConfig = _chunk2AK4GRIBjs.configureClientConfig; exports.configureClientJsonApi = _chunkN4YZ45SKjs.configureClientJsonApi; exports.configureI18n = _chunk2AK4GRIBjs.configureI18n; exports.configureJsonApi = _chunk2AK4GRIBjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.getApiUrl = _chunk2AK4GRIBjs.getApiUrl; exports.getAppUrl = _chunk2AK4GRIBjs.getAppUrl; exports.getClientApiUrl = _chunkN4YZ45SKjs.getClientApiUrl; exports.getClientAppUrl = _chunkN4YZ45SKjs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunkN4YZ45SKjs.getClientTrackablePages; exports.getI18nLink = _chunk2AK4GRIBjs.getI18nLink; exports.getPublicApiUrl = _chunk2AK4GRIBjs.getPublicApiUrl; exports.getStripePublishableKey = _chunk2AK4GRIBjs.getStripePublishableKey; exports.getTrackablePages = _chunk2AK4GRIBjs.getTrackablePages; exports.registerTableGenerator = _chunkAMP2ZDAVjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunkAMP2ZDAVjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunkAMP2ZDAVjs.useContentTableStructure; exports.useCustomD3Graph = _chunkAMP2ZDAVjs.useCustomD3Graph; exports.useDataListRetriever = _chunkAMP2ZDAVjs.useDataListRetriever; exports.useDebounce = _chunkAMP2ZDAVjs.useDebounce; exports.useI18nDateFnsLocale = _chunk2AK4GRIBjs.useI18nDateFnsLocale; exports.useI18nLocale = _chunk2AK4GRIBjs.useI18nLocale; exports.useI18nRouter = _chunk2AK4GRIBjs.useI18nRouter; exports.useI18nTranslations = _chunk2AK4GRIBjs.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunkAMP2ZDAVjs.useJsonApiGet; exports.useJsonApiMutation = _chunkAMP2ZDAVjs.useJsonApiMutation; exports.useNotificationSync = _chunkAMP2ZDAVjs.useNotificationSync; exports.useOAuthClient = _chunkAMP2ZDAVjs.useOAuthClient; exports.useOAuthClients = _chunkAMP2ZDAVjs.useOAuthClients; exports.useOAuthConsent = _chunkAMP2ZDAVjs.useOAuthConsent; exports.usePageTracker = _chunkAMP2ZDAVjs.usePageTracker; exports.usePageUrlGenerator = _chunkAMP2ZDAVjs.usePageUrlGenerator; exports.useRehydration = _chunkAMP2ZDAVjs.useRehydration; exports.useRehydrationList = _chunkAMP2ZDAVjs.useRehydrationList; exports.useRoleTableStructure = _chunkAMP2ZDAVjs.useRoleTableStructure; exports.useSocket = _chunkAMP2ZDAVjs.useSocket; exports.useSubscriptionStatus = _chunkAMP2ZDAVjs.useSubscriptionStatus; exports.useTableGenerator = _chunkAMP2ZDAVjs.useTableGenerator; exports.useUrlRewriter = _chunkAMP2ZDAVjs.useUrlRewriter; exports.useUserSearch = _chunkAMP2ZDAVjs.useUserSearch; exports.useUserTableStructure = _chunkAMP2ZDAVjs.useUserTableStructure;
121
123
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"],"names":[],"mappings":"AAAA,qFAAY;AACZ;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACF,uDAA6B;AAC7B;AACE;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,+pGAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"}
1
+ {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"],"names":[],"mappings":"AAAA,qFAAY;AACZ;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACF,uDAA6B;AAC7B;AACE;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,2tGAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"}
@@ -25,7 +25,7 @@ import {
25
25
  useUrlRewriter,
26
26
  useUserSearch,
27
27
  useUserTableStructure
28
- } from "../chunk-TTVVHFS4.mjs";
28
+ } from "../chunk-CZ56O6JZ.mjs";
29
29
  import {
30
30
  configureClientConfig,
31
31
  configureI18n,
@@ -33,13 +33,14 @@ import {
33
33
  getApiUrl,
34
34
  getAppUrl,
35
35
  getI18nLink,
36
+ getPublicApiUrl,
36
37
  getStripePublishableKey,
37
38
  getTrackablePages,
38
39
  useI18nDateFnsLocale,
39
40
  useI18nLocale,
40
41
  useI18nRouter,
41
42
  useI18nTranslations
42
- } from "../chunk-PV5V6CVW.mjs";
43
+ } from "../chunk-NEJ7CDM3.mjs";
43
44
  import {
44
45
  ClientJsonApiDelete,
45
46
  ClientJsonApiGet,
@@ -85,6 +86,7 @@ export {
85
86
  getClientToken,
86
87
  getClientTrackablePages,
87
88
  getI18nLink,
89
+ getPublicApiUrl,
88
90
  getStripePublishableKey,
89
91
  getTrackablePages,
90
92
  registerTableGenerator,
@@ -449,8 +449,8 @@
449
449
 
450
450
 
451
451
 
452
- var _chunkUUMDUIY6js = require('../chunk-UUMDUIY6.js');
453
- require('../chunk-ZEJSPTHS.js');
452
+ var _chunkAMP2ZDAVjs = require('../chunk-AMP2ZDAV.js');
453
+ require('../chunk-2AK4GRIB.js');
454
454
 
455
455
 
456
456
 
@@ -923,5 +923,5 @@ require('../chunk-7QVYU63E.js');
923
923
 
924
924
 
925
925
 
926
- exports.AcceptInvitation = _chunkUUMDUIY6js.AcceptInvitation; exports.Accordion = _chunkUUMDUIY6js.Accordion; exports.AccordionContent = _chunkUUMDUIY6js.AccordionContent; exports.AccordionItem = _chunkUUMDUIY6js.AccordionItem; exports.AccordionTrigger = _chunkUUMDUIY6js.AccordionTrigger; exports.ActivateAccount = _chunkUUMDUIY6js.ActivateAccount; exports.AddUserToRole = _chunkUUMDUIY6js.AddUserToRole; exports.AdminCompanyContainer = _chunkUUMDUIY6js.AdminCompanyContainer; exports.AdminUsersList = _chunkUUMDUIY6js.AdminUsersList; exports.Alert = _chunkUUMDUIY6js.Alert; exports.AlertAction = _chunkUUMDUIY6js.AlertAction; exports.AlertDescription = _chunkUUMDUIY6js.AlertDescription; exports.AlertDialog = _chunkUUMDUIY6js.AlertDialog; exports.AlertDialogAction = _chunkUUMDUIY6js.AlertDialogAction; exports.AlertDialogCancel = _chunkUUMDUIY6js.AlertDialogCancel; exports.AlertDialogContent = _chunkUUMDUIY6js.AlertDialogContent; exports.AlertDialogDescription = _chunkUUMDUIY6js.AlertDialogDescription; exports.AlertDialogFooter = _chunkUUMDUIY6js.AlertDialogFooter; exports.AlertDialogHeader = _chunkUUMDUIY6js.AlertDialogHeader; exports.AlertDialogMedia = _chunkUUMDUIY6js.AlertDialogMedia; exports.AlertDialogOverlay = _chunkUUMDUIY6js.AlertDialogOverlay; exports.AlertDialogPortal = _chunkUUMDUIY6js.AlertDialogPortal; exports.AlertDialogTitle = _chunkUUMDUIY6js.AlertDialogTitle; exports.AlertDialogTrigger = _chunkUUMDUIY6js.AlertDialogTrigger; exports.AlertTitle = _chunkUUMDUIY6js.AlertTitle; exports.AllUsersListContainer = _chunkUUMDUIY6js.AllUsersListContainer; exports.AllowedUsersDetails = _chunkUUMDUIY6js.AllowedUsersDetails; exports.AssistantContainer = _chunkUUMDUIY6js.AssistantContainer; exports.AttributeElement = _chunkUUMDUIY6js.AttributeElement; exports.AuthContainer = _chunkUUMDUIY6js.AuthContainer; exports.Avatar = _chunkUUMDUIY6js.Avatar; exports.AvatarBadge = _chunkUUMDUIY6js.AvatarBadge; exports.AvatarFallback = _chunkUUMDUIY6js.AvatarFallback; exports.AvatarGroup = _chunkUUMDUIY6js.AvatarGroup; exports.AvatarGroupCount = _chunkUUMDUIY6js.AvatarGroupCount; exports.AvatarImage = _chunkUUMDUIY6js.AvatarImage; exports.BackupCodesDialog = _chunkUUMDUIY6js.BackupCodesDialog; exports.Badge = _chunkUUMDUIY6js.Badge; exports.BlockNoteEditorContainer = _chunkUUMDUIY6js.BlockNoteEditorContainer; exports.Board = _chunkUUMDUIY6js.KanbanBoard; exports.Breadcrumb = _chunkUUMDUIY6js.Breadcrumb; exports.BreadcrumbEllipsis = _chunkUUMDUIY6js.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkUUMDUIY6js.BreadcrumbItem; exports.BreadcrumbLink = _chunkUUMDUIY6js.BreadcrumbLink; exports.BreadcrumbList = _chunkUUMDUIY6js.BreadcrumbList; exports.BreadcrumbNavigation = _chunkUUMDUIY6js.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkUUMDUIY6js.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkUUMDUIY6js.BreadcrumbSeparator; exports.Button = _chunkUUMDUIY6js.Button; exports.Calendar = _chunkUUMDUIY6js.Calendar; exports.CalendarDayButton = _chunkUUMDUIY6js.CalendarDayButton; exports.Card = _chunkUUMDUIY6js.Card; exports.CardAction = _chunkUUMDUIY6js.CardAction; exports.CardContent = _chunkUUMDUIY6js.CardContent; exports.CardDescription = _chunkUUMDUIY6js.CardDescription; exports.CardFooter = _chunkUUMDUIY6js.CardFooter; exports.CardHeader = _chunkUUMDUIY6js.CardHeader; exports.CardTitle = _chunkUUMDUIY6js.CardTitle; exports.Carousel = _chunkUUMDUIY6js.Carousel; exports.CarouselContent = _chunkUUMDUIY6js.CarouselContent; exports.CarouselItem = _chunkUUMDUIY6js.CarouselItem; exports.CarouselNext = _chunkUUMDUIY6js.CarouselNext; exports.CarouselPrevious = _chunkUUMDUIY6js.CarouselPrevious; exports.ChartContainer = _chunkUUMDUIY6js.ChartContainer; exports.ChartLegend = _chunkUUMDUIY6js.ChartLegend; exports.ChartLegendContent = _chunkUUMDUIY6js.ChartLegendContent; exports.ChartStyle = _chunkUUMDUIY6js.ChartStyle; exports.ChartTooltip = _chunkUUMDUIY6js.ChartTooltip; exports.ChartTooltipContent = _chunkUUMDUIY6js.ChartTooltipContent; exports.Checkbox = _chunkUUMDUIY6js.Checkbox; exports.Collapsible = _chunkUUMDUIY6js.Collapsible; exports.CollapsibleContent = _chunkUUMDUIY6js.CollapsibleContent; exports.CollapsibleTrigger = _chunkUUMDUIY6js.CollapsibleTrigger; exports.Column = _chunkUUMDUIY6js.KanbanColumn; exports.ColumnHandle = _chunkUUMDUIY6js.KanbanColumnHandle; exports.Combobox = _chunkUUMDUIY6js.Combobox; exports.ComboboxChip = _chunkUUMDUIY6js.ComboboxChip; exports.ComboboxChips = _chunkUUMDUIY6js.ComboboxChips; exports.ComboboxChipsInput = _chunkUUMDUIY6js.ComboboxChipsInput; exports.ComboboxCollection = _chunkUUMDUIY6js.ComboboxCollection; exports.ComboboxContent = _chunkUUMDUIY6js.ComboboxContent; exports.ComboboxEmpty = _chunkUUMDUIY6js.ComboboxEmpty; exports.ComboboxGroup = _chunkUUMDUIY6js.ComboboxGroup; exports.ComboboxInput = _chunkUUMDUIY6js.ComboboxInput; exports.ComboboxItem = _chunkUUMDUIY6js.ComboboxItem; exports.ComboboxLabel = _chunkUUMDUIY6js.ComboboxLabel; exports.ComboboxList = _chunkUUMDUIY6js.ComboboxList; exports.ComboboxSeparator = _chunkUUMDUIY6js.ComboboxSeparator; exports.ComboboxTrigger = _chunkUUMDUIY6js.ComboboxTrigger; exports.ComboboxValue = _chunkUUMDUIY6js.ComboboxValue; exports.Command = _chunkUUMDUIY6js.Command; exports.CommandDialog = _chunkUUMDUIY6js.CommandDialog; exports.CommandEmpty = _chunkUUMDUIY6js.CommandEmpty; exports.CommandGroup = _chunkUUMDUIY6js.CommandGroup; exports.CommandInput = _chunkUUMDUIY6js.CommandInput; exports.CommandItem = _chunkUUMDUIY6js.CommandItem; exports.CommandList = _chunkUUMDUIY6js.CommandList; exports.CommandSeparator = _chunkUUMDUIY6js.CommandSeparator; exports.CommandShortcut = _chunkUUMDUIY6js.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkUUMDUIY6js.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkUUMDUIY6js.CommonAssociationTrigger; exports.CommonDeleter = _chunkUUMDUIY6js.CommonDeleter; exports.CommonEditorButtons = _chunkUUMDUIY6js.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkUUMDUIY6js.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkUUMDUIY6js.CommonEditorHeader; exports.CommonEditorTrigger = _chunkUUMDUIY6js.CommonEditorTrigger; exports.CompaniesList = _chunkUUMDUIY6js.CompaniesList; exports.CompanyConfigurationEditor = _chunkUUMDUIY6js.CompanyConfigurationEditor; exports.CompanyContainer = _chunkUUMDUIY6js.CompanyContainer; exports.CompanyContent = _chunkUUMDUIY6js.CompanyContent; exports.CompanyDeleter = _chunkUUMDUIY6js.CompanyDeleter; exports.CompanyDetails = _chunkUUMDUIY6js.CompanyDetails; exports.CompanyEditor = _chunkUUMDUIY6js.CompanyEditor; exports.CompanyUsersList = _chunkUUMDUIY6js.CompanyUsersList; exports.ContentListGrid = _chunkUUMDUIY6js.ContentListGrid; exports.ContentListTable = _chunkUUMDUIY6js.ContentListTable; exports.ContentTableSearch = _chunkUUMDUIY6js.ContentTableSearch; exports.ContentTitle = _chunkUUMDUIY6js.ContentTitle; exports.ContentsList = _chunkUUMDUIY6js.ContentsList; exports.ContentsListById = _chunkUUMDUIY6js.ContentsListById; exports.ContextMenu = _chunkUUMDUIY6js.ContextMenu; exports.ContextMenuCheckboxItem = _chunkUUMDUIY6js.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkUUMDUIY6js.ContextMenuContent; exports.ContextMenuGroup = _chunkUUMDUIY6js.ContextMenuGroup; exports.ContextMenuItem = _chunkUUMDUIY6js.ContextMenuItem; exports.ContextMenuLabel = _chunkUUMDUIY6js.ContextMenuLabel; exports.ContextMenuPortal = _chunkUUMDUIY6js.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkUUMDUIY6js.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkUUMDUIY6js.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkUUMDUIY6js.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkUUMDUIY6js.ContextMenuShortcut; exports.ContextMenuSub = _chunkUUMDUIY6js.ContextMenuSub; exports.ContextMenuSubContent = _chunkUUMDUIY6js.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkUUMDUIY6js.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkUUMDUIY6js.ContextMenuTrigger; exports.ContributorsList = _chunkUUMDUIY6js.ContributorsList; exports.Cookies = _chunkUUMDUIY6js.Cookies; exports.DatePickerPopover = _chunkUUMDUIY6js.DatePickerPopover; exports.DateRangeSelector = _chunkUUMDUIY6js.DateRangeSelector; exports.Dialog = _chunkUUMDUIY6js.Dialog; exports.DialogClose = _chunkUUMDUIY6js.DialogClose; exports.DialogContent = _chunkUUMDUIY6js.DialogContent; exports.DialogDescription = _chunkUUMDUIY6js.DialogDescription; exports.DialogFooter = _chunkUUMDUIY6js.DialogFooter; exports.DialogHeader = _chunkUUMDUIY6js.DialogHeader; exports.DialogOverlay = _chunkUUMDUIY6js.DialogOverlay; exports.DialogPortal = _chunkUUMDUIY6js.DialogPortal; exports.DialogTitle = _chunkUUMDUIY6js.DialogTitle; exports.DialogTrigger = _chunkUUMDUIY6js.DialogTrigger; exports.DisableTwoFactorDialog = _chunkUUMDUIY6js.DisableTwoFactorDialog; exports.Drawer = _chunkUUMDUIY6js.Drawer; exports.DrawerClose = _chunkUUMDUIY6js.DrawerClose; exports.DrawerContent = _chunkUUMDUIY6js.DrawerContent; exports.DrawerDescription = _chunkUUMDUIY6js.DrawerDescription; exports.DrawerFooter = _chunkUUMDUIY6js.DrawerFooter; exports.DrawerHeader = _chunkUUMDUIY6js.DrawerHeader; exports.DrawerOverlay = _chunkUUMDUIY6js.DrawerOverlay; exports.DrawerPortal = _chunkUUMDUIY6js.DrawerPortal; exports.DrawerTitle = _chunkUUMDUIY6js.DrawerTitle; exports.DrawerTrigger = _chunkUUMDUIY6js.DrawerTrigger; exports.DropdownMenu = _chunkUUMDUIY6js.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkUUMDUIY6js.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkUUMDUIY6js.DropdownMenuContent; exports.DropdownMenuGroup = _chunkUUMDUIY6js.DropdownMenuGroup; exports.DropdownMenuItem = _chunkUUMDUIY6js.DropdownMenuItem; exports.DropdownMenuLabel = _chunkUUMDUIY6js.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkUUMDUIY6js.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkUUMDUIY6js.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkUUMDUIY6js.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkUUMDUIY6js.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkUUMDUIY6js.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkUUMDUIY6js.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkUUMDUIY6js.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkUUMDUIY6js.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkUUMDUIY6js.DropdownMenuTrigger; exports.EditableAvatar = _chunkUUMDUIY6js.EditableAvatar; exports.EditorSheet = _chunkUUMDUIY6js.EditorSheet; exports.EntityAvatar = _chunkUUMDUIY6js.EntityAvatar; exports.EntityMultiSelector = _chunkUUMDUIY6js.EntityMultiSelector; exports.ErrorDetails = _chunkUUMDUIY6js.ErrorDetails; exports.Field = _chunkUUMDUIY6js.Field; exports.FieldContent = _chunkUUMDUIY6js.FieldContent; exports.FieldDescription = _chunkUUMDUIY6js.FieldDescription; exports.FieldError = _chunkUUMDUIY6js.FieldError; exports.FieldGroup = _chunkUUMDUIY6js.FieldGroup; exports.FieldLabel = _chunkUUMDUIY6js.FieldLabel; exports.FieldLegend = _chunkUUMDUIY6js.FieldLegend; exports.FieldSeparator = _chunkUUMDUIY6js.FieldSeparator; exports.FieldSet = _chunkUUMDUIY6js.FieldSet; exports.FieldTitle = _chunkUUMDUIY6js.FieldTitle; exports.FileInput = _chunkUUMDUIY6js.FileInput; exports.FileUploader = _chunkUUMDUIY6js.FileUploader; exports.FileUploaderContent = _chunkUUMDUIY6js.FileUploaderContent; exports.FileUploaderItem = _chunkUUMDUIY6js.FileUploaderItem; exports.FiscalDataDisplay = _chunkUUMDUIY6js.FiscalDataDisplay; exports.ForgotPassword = _chunkUUMDUIY6js.ForgotPassword; exports.Form = _chunkUUMDUIY6js.Form; exports.FormBlockNote = _chunkUUMDUIY6js.FormBlockNote; exports.FormCheckbox = _chunkUUMDUIY6js.FormCheckbox; exports.FormDate = _chunkUUMDUIY6js.FormDate; exports.FormDateTime = _chunkUUMDUIY6js.FormDateTime; exports.FormFeatures = _chunkUUMDUIY6js.FormFeatures; exports.FormFieldWrapper = _chunkUUMDUIY6js.FormFieldWrapper; exports.FormInput = _chunkUUMDUIY6js.FormInput; exports.FormPassword = _chunkUUMDUIY6js.FormPassword; exports.FormPlaceAutocomplete = _chunkUUMDUIY6js.FormPlaceAutocomplete; exports.FormRoles = _chunkUUMDUIY6js.FormRoles; exports.FormSelect = _chunkUUMDUIY6js.FormSelect; exports.FormSlider = _chunkUUMDUIY6js.FormSlider; exports.FormSwitch = _chunkUUMDUIY6js.FormSwitch; exports.FormTextarea = _chunkUUMDUIY6js.FormTextarea; exports.GdprConsentCheckbox = _chunkUUMDUIY6js.GdprConsentCheckbox; exports.GdprConsentSection = _chunkUUMDUIY6js.GdprConsentSection; exports.Header = _chunkUUMDUIY6js.Header; exports.HoverCard = _chunkUUMDUIY6js.HoverCard; exports.HoverCardContent = _chunkUUMDUIY6js.HoverCardContent; exports.HoverCardTrigger = _chunkUUMDUIY6js.HoverCardTrigger; exports.HowToCommand = _chunkUUMDUIY6js.HowToCommand; exports.HowToCommandViewer = _chunkUUMDUIY6js.HowToCommandViewer; exports.HowToContainer = _chunkUUMDUIY6js.HowToContainer; exports.HowToContent = _chunkUUMDUIY6js.HowToContent; exports.HowToDeleter = _chunkUUMDUIY6js.HowToDeleter; exports.HowToDetails = _chunkUUMDUIY6js.HowToDetails; exports.HowToEditor = _chunkUUMDUIY6js.HowToEditor; exports.HowToList = _chunkUUMDUIY6js.HowToList; exports.HowToListContainer = _chunkUUMDUIY6js.HowToListContainer; exports.HowToMultiSelector = _chunkUUMDUIY6js.HowToMultiSelector; exports.HowToSelector = _chunkUUMDUIY6js.HowToSelector; exports.Input = _chunkUUMDUIY6js.Input; exports.InputGroup = _chunkUUMDUIY6js.InputGroup; exports.InputGroupAddon = _chunkUUMDUIY6js.InputGroupAddon; exports.InputGroupButton = _chunkUUMDUIY6js.InputGroupButton; exports.InputGroupInput = _chunkUUMDUIY6js.InputGroupInput; exports.InputGroupText = _chunkUUMDUIY6js.InputGroupText; exports.InputGroupTextarea = _chunkUUMDUIY6js.InputGroupTextarea; exports.InputOTP = _chunkUUMDUIY6js.InputOTP; exports.InputOTPGroup = _chunkUUMDUIY6js.InputOTPGroup; exports.InputOTPSeparator = _chunkUUMDUIY6js.InputOTPSeparator; exports.InputOTPSlot = _chunkUUMDUIY6js.InputOTPSlot; exports.ItalianFiscalData = _chunkUUMDUIY6js.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkUUMDUIY6js.ItalianFiscalDataDisplay; exports.Item = _chunkUUMDUIY6js.KanbanItem; exports.ItemHandle = _chunkUUMDUIY6js.KanbanItemHandle; exports.Kanban = _chunkUUMDUIY6js.KanbanRoot; exports.KanbanBoard = _chunkUUMDUIY6js.KanbanBoard; exports.KanbanColumn = _chunkUUMDUIY6js.KanbanColumn; exports.KanbanColumnHandle = _chunkUUMDUIY6js.KanbanColumnHandle; exports.KanbanItem = _chunkUUMDUIY6js.KanbanItem; exports.KanbanItemHandle = _chunkUUMDUIY6js.KanbanItemHandle; exports.KanbanOverlay = _chunkUUMDUIY6js.KanbanOverlay; exports.Label = _chunkUUMDUIY6js.Label; exports.LandingComponent = _chunkUUMDUIY6js.LandingComponent; exports.Link = _chunkUUMDUIY6js.Link; exports.Login = _chunkUUMDUIY6js.Login; exports.Logout = _chunkUUMDUIY6js.Logout; exports.MessageItem = _chunkUUMDUIY6js.MessageItem; exports.MessageList = _chunkUUMDUIY6js.MessageList; exports.MessageSourcesPanel = _chunkUUMDUIY6js.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkUUMDUIY6js.ModeToggleSwitch; exports.MultiSelect = _chunkUUMDUIY6js.MultiSelect; exports.MultipleSelector = _chunkUUMDUIY6js.MultipleSelector; exports.NavigationMenu = _chunkUUMDUIY6js.NavigationMenu; exports.NavigationMenuContent = _chunkUUMDUIY6js.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkUUMDUIY6js.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkUUMDUIY6js.NavigationMenuItem; exports.NavigationMenuLink = _chunkUUMDUIY6js.NavigationMenuLink; exports.NavigationMenuList = _chunkUUMDUIY6js.NavigationMenuList; exports.NavigationMenuPositioner = _chunkUUMDUIY6js.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkUUMDUIY6js.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkUUMDUIY6js.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkUUMDUIY6js.NotificationMenuItem; exports.NotificationModal = _chunkUUMDUIY6js.NotificationModal; exports.NotificationToast = _chunkUUMDUIY6js.NotificationToast; exports.NotificationsList = _chunkUUMDUIY6js.NotificationsList; exports.NotificationsListContainer = _chunkUUMDUIY6js.NotificationsListContainer; exports.OAuthClientCard = _chunkUUMDUIY6js.OAuthClientCard; exports.OAuthClientDetail = _chunkUUMDUIY6js.OAuthClientDetail; exports.OAuthClientForm = _chunkUUMDUIY6js.OAuthClientForm; exports.OAuthClientList = _chunkUUMDUIY6js.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkUUMDUIY6js.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkUUMDUIY6js.OAuthConsentActions; exports.OAuthConsentHeader = _chunkUUMDUIY6js.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkUUMDUIY6js.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkUUMDUIY6js.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkUUMDUIY6js.OAuthScopeList; exports.OAuthScopeSelector = _chunkUUMDUIY6js.OAuthScopeSelector; exports.OnboardingCard = _chunkUUMDUIY6js.OnboardingCard; exports.Overlay = _chunkUUMDUIY6js.KanbanOverlay; exports.PageContainer = _chunkUUMDUIY6js.PageContainer; exports.PageContainerContentDetails = _chunkUUMDUIY6js.PageContainerContentDetails; exports.PageContentContainer = _chunkUUMDUIY6js.PageContentContainer; exports.PageSection = _chunkUUMDUIY6js.PageSection; exports.PasskeyButton = _chunkUUMDUIY6js.PasskeyButton; exports.PasskeyList = _chunkUUMDUIY6js.PasskeyList; exports.PasskeySetupDialog = _chunkUUMDUIY6js.PasskeySetupDialog; exports.PasswordInput = _chunkUUMDUIY6js.PasswordInput; exports.Popover = _chunkUUMDUIY6js.Popover; exports.PopoverContent = _chunkUUMDUIY6js.PopoverContent; exports.PopoverDescription = _chunkUUMDUIY6js.PopoverDescription; exports.PopoverHeader = _chunkUUMDUIY6js.PopoverHeader; exports.PopoverTitle = _chunkUUMDUIY6js.PopoverTitle; exports.PopoverTrigger = _chunkUUMDUIY6js.PopoverTrigger; exports.Progress = _chunkUUMDUIY6js.Progress; exports.ProgressIndicator = _chunkUUMDUIY6js.ProgressIndicator; exports.ProgressLabel = _chunkUUMDUIY6js.ProgressLabel; exports.ProgressTrack = _chunkUUMDUIY6js.ProgressTrack; exports.ProgressValue = _chunkUUMDUIY6js.ProgressValue; exports.PushNotificationProvider = _chunkUUMDUIY6js.PushNotificationProvider; exports.RadioGroup = _chunkUUMDUIY6js.RadioGroup; exports.RadioGroupItem = _chunkUUMDUIY6js.RadioGroupItem; exports.RbacByRoleContainer = _chunkUUMDUIY6js.RbacByRoleContainer; exports.RbacContainer = _chunkUUMDUIY6js.RbacContainer; exports.RbacPermissionCell = _chunkUUMDUIY6js.RbacPermissionCell; exports.RbacPermissionPicker = _chunkUUMDUIY6js.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkUUMDUIY6js.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkUUMDUIY6js.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkUUMDUIY6js.ReferralCodeCapture; exports.ReferralDialog = _chunkUUMDUIY6js.ReferralDialog; exports.ReferralWidget = _chunkUUMDUIY6js.ReferralWidget; exports.RefreshUser = _chunkUUMDUIY6js.RefreshUser; exports.RelevantContentsList = _chunkUUMDUIY6js.RelevantContentsList; exports.RelevantUsersList = _chunkUUMDUIY6js.RelevantUsersList; exports.RemoveUserFromRole = _chunkUUMDUIY6js.RemoveUserFromRole; exports.ResetPassword = _chunkUUMDUIY6js.ResetPassword; exports.ResizableHandle = _chunkUUMDUIY6js.ResizableHandle; exports.ResizablePanel = _chunkUUMDUIY6js.ResizablePanel; exports.ResizablePanelGroup = _chunkUUMDUIY6js.ResizablePanelGroup; exports.RoleContainer = _chunkUUMDUIY6js.RoleContainer; exports.RoleDetails = _chunkUUMDUIY6js.RoleDetails; exports.RoleUsersList = _chunkUUMDUIY6js.RoleUsersList; exports.RolesList = _chunkUUMDUIY6js.RolesList; exports.Root = _chunkUUMDUIY6js.KanbanRoot; exports.RoundPageContainer = _chunkUUMDUIY6js.RoundPageContainer; exports.RoundPageContainerTitle = _chunkUUMDUIY6js.RoundPageContainerTitle; exports.ScrollArea = _chunkUUMDUIY6js.ScrollArea; exports.ScrollBar = _chunkUUMDUIY6js.ScrollBar; exports.SecurityContainer = _chunkUUMDUIY6js.SecurityContainer; exports.Select = _chunkUUMDUIY6js.Select; exports.SelectContent = _chunkUUMDUIY6js.SelectContent; exports.SelectGroup = _chunkUUMDUIY6js.SelectGroup; exports.SelectItem = _chunkUUMDUIY6js.SelectItem; exports.SelectLabel = _chunkUUMDUIY6js.SelectLabel; exports.SelectScrollDownButton = _chunkUUMDUIY6js.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkUUMDUIY6js.SelectScrollUpButton; exports.SelectSeparator = _chunkUUMDUIY6js.SelectSeparator; exports.SelectTrigger = _chunkUUMDUIY6js.SelectTrigger; exports.SelectValue = _chunkUUMDUIY6js.SelectValue; exports.Separator = _chunkUUMDUIY6js.Separator; exports.Sheet = _chunkUUMDUIY6js.Sheet; exports.SheetClose = _chunkUUMDUIY6js.SheetClose; exports.SheetContent = _chunkUUMDUIY6js.SheetContent; exports.SheetDescription = _chunkUUMDUIY6js.SheetDescription; exports.SheetFooter = _chunkUUMDUIY6js.SheetFooter; exports.SheetHeader = _chunkUUMDUIY6js.SheetHeader; exports.SheetTitle = _chunkUUMDUIY6js.SheetTitle; exports.SheetTrigger = _chunkUUMDUIY6js.SheetTrigger; exports.Sidebar = _chunkUUMDUIY6js.Sidebar; exports.SidebarContent = _chunkUUMDUIY6js.SidebarContent; exports.SidebarFooter = _chunkUUMDUIY6js.SidebarFooter; exports.SidebarGroup = _chunkUUMDUIY6js.SidebarGroup; exports.SidebarGroupAction = _chunkUUMDUIY6js.SidebarGroupAction; exports.SidebarGroupContent = _chunkUUMDUIY6js.SidebarGroupContent; exports.SidebarGroupLabel = _chunkUUMDUIY6js.SidebarGroupLabel; exports.SidebarHeader = _chunkUUMDUIY6js.SidebarHeader; exports.SidebarInput = _chunkUUMDUIY6js.SidebarInput; exports.SidebarInset = _chunkUUMDUIY6js.SidebarInset; exports.SidebarMenu = _chunkUUMDUIY6js.SidebarMenu; exports.SidebarMenuAction = _chunkUUMDUIY6js.SidebarMenuAction; exports.SidebarMenuBadge = _chunkUUMDUIY6js.SidebarMenuBadge; exports.SidebarMenuButton = _chunkUUMDUIY6js.SidebarMenuButton; exports.SidebarMenuItem = _chunkUUMDUIY6js.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkUUMDUIY6js.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkUUMDUIY6js.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkUUMDUIY6js.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkUUMDUIY6js.SidebarMenuSubItem; exports.SidebarProvider = _chunkUUMDUIY6js.SidebarProvider; exports.SidebarRail = _chunkUUMDUIY6js.SidebarRail; exports.SidebarSeparator = _chunkUUMDUIY6js.SidebarSeparator; exports.SidebarTrigger = _chunkUUMDUIY6js.SidebarTrigger; exports.Skeleton = _chunkUUMDUIY6js.Skeleton; exports.Slider = _chunkUUMDUIY6js.Slider; exports.Switch = _chunkUUMDUIY6js.Switch; exports.Table = _chunkUUMDUIY6js.Table; exports.TableBody = _chunkUUMDUIY6js.TableBody; exports.TableCaption = _chunkUUMDUIY6js.TableCaption; exports.TableCell = _chunkUUMDUIY6js.TableCell; exports.TableCellAvatar = _chunkUUMDUIY6js.TableCellAvatar; exports.TableFooter = _chunkUUMDUIY6js.TableFooter; exports.TableHead = _chunkUUMDUIY6js.TableHead; exports.TableHeader = _chunkUUMDUIY6js.TableHeader; exports.TableRow = _chunkUUMDUIY6js.TableRow; exports.Tabs = _chunkUUMDUIY6js.Tabs; exports.TabsContainer = _chunkUUMDUIY6js.TabsContainer; exports.TabsContent = _chunkUUMDUIY6js.TabsContent; exports.TabsList = _chunkUUMDUIY6js.TabsList; exports.TabsTrigger = _chunkUUMDUIY6js.TabsTrigger; exports.Textarea = _chunkUUMDUIY6js.Textarea; exports.Toaster = _chunkUUMDUIY6js.Toaster; exports.Toggle = _chunkUUMDUIY6js.Toggle; exports.TokenStatusIndicator = _chunkUUMDUIY6js.TokenStatusIndicator; exports.Tooltip = _chunkUUMDUIY6js.Tooltip; exports.TooltipContent = _chunkUUMDUIY6js.TooltipContent; exports.TooltipProvider = _chunkUUMDUIY6js.TooltipProvider; exports.TooltipTrigger = _chunkUUMDUIY6js.TooltipTrigger; exports.TotpAuthenticatorList = _chunkUUMDUIY6js.TotpAuthenticatorList; exports.TotpInput = _chunkUUMDUIY6js.TotpInput; exports.TotpSetupDialog = _chunkUUMDUIY6js.TotpSetupDialog; exports.TwoFactorChallenge = _chunkUUMDUIY6js.TwoFactorChallenge; exports.TwoFactorSettings = _chunkUUMDUIY6js.TwoFactorSettings; exports.UserAvatar = _chunkUUMDUIY6js.UserAvatar; exports.UserAvatarEditor = _chunkUUMDUIY6js.UserAvatarEditor; exports.UserAvatarList = _chunkUUMDUIY6js.UserAvatarList; exports.UserContainer = _chunkUUMDUIY6js.UserContainer; exports.UserContent = _chunkUUMDUIY6js.UserContent; exports.UserDeleter = _chunkUUMDUIY6js.UserDeleter; exports.UserEditor = _chunkUUMDUIY6js.UserEditor; exports.UserIndexContainer = _chunkUUMDUIY6js.UserIndexContainer; exports.UserIndexDetails = _chunkUUMDUIY6js.UserIndexDetails; exports.UserListInAdd = _chunkUUMDUIY6js.UserListInAdd; exports.UserMultiSelect = _chunkUUMDUIY6js.UserMultiSelect; exports.UserReactivator = _chunkUUMDUIY6js.UserReactivator; exports.UserResentInvitationEmail = _chunkUUMDUIY6js.UserResentInvitationEmail; exports.UserRoleAdd = _chunkUUMDUIY6js.UserRoleAdd; exports.UserRolesList = _chunkUUMDUIY6js.UserRolesList; exports.UserSearchPopover = _chunkUUMDUIY6js.UserSearchPopover; exports.UserSelector = _chunkUUMDUIY6js.UserSelector; exports.UserStanadaloneDetails = _chunkUUMDUIY6js.UserStanadaloneDetails; exports.UsersList = _chunkUUMDUIY6js.UsersList; exports.UsersListByContentIds = _chunkUUMDUIY6js.UsersListByContentIds; exports.UsersListContainer = _chunkUUMDUIY6js.UsersListContainer; exports.WaitlistConfirmation = _chunkUUMDUIY6js.WaitlistConfirmation; exports.WaitlistForm = _chunkUUMDUIY6js.WaitlistForm; exports.WaitlistHeroSection = _chunkUUMDUIY6js.WaitlistHeroSection; exports.WaitlistList = _chunkUUMDUIY6js.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkUUMDUIY6js.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkUUMDUIY6js.WaitlistSuccessState; exports.badgeVariants = _chunkUUMDUIY6js.badgeVariants; exports.buttonVariants = _chunkUUMDUIY6js.buttonVariants; exports.cellComponent = _chunkUUMDUIY6js.cellComponent; exports.cellDate = _chunkUUMDUIY6js.cellDate; exports.cellId = _chunkUUMDUIY6js.cellId; exports.cellLink = _chunkUUMDUIY6js.cellLink; exports.cellUrl = _chunkUUMDUIY6js.cellUrl; exports.errorToast = _chunkUUMDUIY6js.errorToast; exports.generateNotificationData = _chunkUUMDUIY6js.generateNotificationData; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.navigationMenuTriggerStyle = _chunkUUMDUIY6js.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkUUMDUIY6js.parseFiscalData; exports.tabsListVariants = _chunkUUMDUIY6js.tabsListVariants; exports.toggleVariants = _chunkUUMDUIY6js.toggleVariants; exports.triggerAssociationToast = _chunkUUMDUIY6js.triggerAssociationToast; exports.useCarousel = _chunkUUMDUIY6js.useCarousel; exports.useComboboxAnchor = _chunkUUMDUIY6js.useComboboxAnchor; exports.useDebounce = _chunkUUMDUIY6js.useDebounce2; exports.useEditorDialog = _chunkUUMDUIY6js.useEditorDialog; exports.useFileUpload = _chunkUUMDUIY6js.useFileUpload; exports.useSidebar = _chunkUUMDUIY6js.useSidebar;
926
+ exports.AcceptInvitation = _chunkAMP2ZDAVjs.AcceptInvitation; exports.Accordion = _chunkAMP2ZDAVjs.Accordion; exports.AccordionContent = _chunkAMP2ZDAVjs.AccordionContent; exports.AccordionItem = _chunkAMP2ZDAVjs.AccordionItem; exports.AccordionTrigger = _chunkAMP2ZDAVjs.AccordionTrigger; exports.ActivateAccount = _chunkAMP2ZDAVjs.ActivateAccount; exports.AddUserToRole = _chunkAMP2ZDAVjs.AddUserToRole; exports.AdminCompanyContainer = _chunkAMP2ZDAVjs.AdminCompanyContainer; exports.AdminUsersList = _chunkAMP2ZDAVjs.AdminUsersList; exports.Alert = _chunkAMP2ZDAVjs.Alert; exports.AlertAction = _chunkAMP2ZDAVjs.AlertAction; exports.AlertDescription = _chunkAMP2ZDAVjs.AlertDescription; exports.AlertDialog = _chunkAMP2ZDAVjs.AlertDialog; exports.AlertDialogAction = _chunkAMP2ZDAVjs.AlertDialogAction; exports.AlertDialogCancel = _chunkAMP2ZDAVjs.AlertDialogCancel; exports.AlertDialogContent = _chunkAMP2ZDAVjs.AlertDialogContent; exports.AlertDialogDescription = _chunkAMP2ZDAVjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkAMP2ZDAVjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkAMP2ZDAVjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkAMP2ZDAVjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkAMP2ZDAVjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkAMP2ZDAVjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkAMP2ZDAVjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkAMP2ZDAVjs.AlertDialogTrigger; exports.AlertTitle = _chunkAMP2ZDAVjs.AlertTitle; exports.AllUsersListContainer = _chunkAMP2ZDAVjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkAMP2ZDAVjs.AllowedUsersDetails; exports.AssistantContainer = _chunkAMP2ZDAVjs.AssistantContainer; exports.AttributeElement = _chunkAMP2ZDAVjs.AttributeElement; exports.AuthContainer = _chunkAMP2ZDAVjs.AuthContainer; exports.Avatar = _chunkAMP2ZDAVjs.Avatar; exports.AvatarBadge = _chunkAMP2ZDAVjs.AvatarBadge; exports.AvatarFallback = _chunkAMP2ZDAVjs.AvatarFallback; exports.AvatarGroup = _chunkAMP2ZDAVjs.AvatarGroup; exports.AvatarGroupCount = _chunkAMP2ZDAVjs.AvatarGroupCount; exports.AvatarImage = _chunkAMP2ZDAVjs.AvatarImage; exports.BackupCodesDialog = _chunkAMP2ZDAVjs.BackupCodesDialog; exports.Badge = _chunkAMP2ZDAVjs.Badge; exports.BlockNoteEditorContainer = _chunkAMP2ZDAVjs.BlockNoteEditorContainer; exports.Board = _chunkAMP2ZDAVjs.KanbanBoard; exports.Breadcrumb = _chunkAMP2ZDAVjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkAMP2ZDAVjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkAMP2ZDAVjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkAMP2ZDAVjs.BreadcrumbLink; exports.BreadcrumbList = _chunkAMP2ZDAVjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkAMP2ZDAVjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkAMP2ZDAVjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkAMP2ZDAVjs.BreadcrumbSeparator; exports.Button = _chunkAMP2ZDAVjs.Button; exports.Calendar = _chunkAMP2ZDAVjs.Calendar; exports.CalendarDayButton = _chunkAMP2ZDAVjs.CalendarDayButton; exports.Card = _chunkAMP2ZDAVjs.Card; exports.CardAction = _chunkAMP2ZDAVjs.CardAction; exports.CardContent = _chunkAMP2ZDAVjs.CardContent; exports.CardDescription = _chunkAMP2ZDAVjs.CardDescription; exports.CardFooter = _chunkAMP2ZDAVjs.CardFooter; exports.CardHeader = _chunkAMP2ZDAVjs.CardHeader; exports.CardTitle = _chunkAMP2ZDAVjs.CardTitle; exports.Carousel = _chunkAMP2ZDAVjs.Carousel; exports.CarouselContent = _chunkAMP2ZDAVjs.CarouselContent; exports.CarouselItem = _chunkAMP2ZDAVjs.CarouselItem; exports.CarouselNext = _chunkAMP2ZDAVjs.CarouselNext; exports.CarouselPrevious = _chunkAMP2ZDAVjs.CarouselPrevious; exports.ChartContainer = _chunkAMP2ZDAVjs.ChartContainer; exports.ChartLegend = _chunkAMP2ZDAVjs.ChartLegend; exports.ChartLegendContent = _chunkAMP2ZDAVjs.ChartLegendContent; exports.ChartStyle = _chunkAMP2ZDAVjs.ChartStyle; exports.ChartTooltip = _chunkAMP2ZDAVjs.ChartTooltip; exports.ChartTooltipContent = _chunkAMP2ZDAVjs.ChartTooltipContent; exports.Checkbox = _chunkAMP2ZDAVjs.Checkbox; exports.Collapsible = _chunkAMP2ZDAVjs.Collapsible; exports.CollapsibleContent = _chunkAMP2ZDAVjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkAMP2ZDAVjs.CollapsibleTrigger; exports.Column = _chunkAMP2ZDAVjs.KanbanColumn; exports.ColumnHandle = _chunkAMP2ZDAVjs.KanbanColumnHandle; exports.Combobox = _chunkAMP2ZDAVjs.Combobox; exports.ComboboxChip = _chunkAMP2ZDAVjs.ComboboxChip; exports.ComboboxChips = _chunkAMP2ZDAVjs.ComboboxChips; exports.ComboboxChipsInput = _chunkAMP2ZDAVjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkAMP2ZDAVjs.ComboboxCollection; exports.ComboboxContent = _chunkAMP2ZDAVjs.ComboboxContent; exports.ComboboxEmpty = _chunkAMP2ZDAVjs.ComboboxEmpty; exports.ComboboxGroup = _chunkAMP2ZDAVjs.ComboboxGroup; exports.ComboboxInput = _chunkAMP2ZDAVjs.ComboboxInput; exports.ComboboxItem = _chunkAMP2ZDAVjs.ComboboxItem; exports.ComboboxLabel = _chunkAMP2ZDAVjs.ComboboxLabel; exports.ComboboxList = _chunkAMP2ZDAVjs.ComboboxList; exports.ComboboxSeparator = _chunkAMP2ZDAVjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkAMP2ZDAVjs.ComboboxTrigger; exports.ComboboxValue = _chunkAMP2ZDAVjs.ComboboxValue; exports.Command = _chunkAMP2ZDAVjs.Command; exports.CommandDialog = _chunkAMP2ZDAVjs.CommandDialog; exports.CommandEmpty = _chunkAMP2ZDAVjs.CommandEmpty; exports.CommandGroup = _chunkAMP2ZDAVjs.CommandGroup; exports.CommandInput = _chunkAMP2ZDAVjs.CommandInput; exports.CommandItem = _chunkAMP2ZDAVjs.CommandItem; exports.CommandList = _chunkAMP2ZDAVjs.CommandList; exports.CommandSeparator = _chunkAMP2ZDAVjs.CommandSeparator; exports.CommandShortcut = _chunkAMP2ZDAVjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkAMP2ZDAVjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkAMP2ZDAVjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkAMP2ZDAVjs.CommonDeleter; exports.CommonEditorButtons = _chunkAMP2ZDAVjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkAMP2ZDAVjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkAMP2ZDAVjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkAMP2ZDAVjs.CommonEditorTrigger; exports.CompaniesList = _chunkAMP2ZDAVjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkAMP2ZDAVjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkAMP2ZDAVjs.CompanyContainer; exports.CompanyContent = _chunkAMP2ZDAVjs.CompanyContent; exports.CompanyDeleter = _chunkAMP2ZDAVjs.CompanyDeleter; exports.CompanyDetails = _chunkAMP2ZDAVjs.CompanyDetails; exports.CompanyEditor = _chunkAMP2ZDAVjs.CompanyEditor; exports.CompanyUsersList = _chunkAMP2ZDAVjs.CompanyUsersList; exports.ContentListGrid = _chunkAMP2ZDAVjs.ContentListGrid; exports.ContentListTable = _chunkAMP2ZDAVjs.ContentListTable; exports.ContentTableSearch = _chunkAMP2ZDAVjs.ContentTableSearch; exports.ContentTitle = _chunkAMP2ZDAVjs.ContentTitle; exports.ContentsList = _chunkAMP2ZDAVjs.ContentsList; exports.ContentsListById = _chunkAMP2ZDAVjs.ContentsListById; exports.ContextMenu = _chunkAMP2ZDAVjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkAMP2ZDAVjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkAMP2ZDAVjs.ContextMenuContent; exports.ContextMenuGroup = _chunkAMP2ZDAVjs.ContextMenuGroup; exports.ContextMenuItem = _chunkAMP2ZDAVjs.ContextMenuItem; exports.ContextMenuLabel = _chunkAMP2ZDAVjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkAMP2ZDAVjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkAMP2ZDAVjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkAMP2ZDAVjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkAMP2ZDAVjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkAMP2ZDAVjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkAMP2ZDAVjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkAMP2ZDAVjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkAMP2ZDAVjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkAMP2ZDAVjs.ContextMenuTrigger; exports.ContributorsList = _chunkAMP2ZDAVjs.ContributorsList; exports.Cookies = _chunkAMP2ZDAVjs.Cookies; exports.DatePickerPopover = _chunkAMP2ZDAVjs.DatePickerPopover; exports.DateRangeSelector = _chunkAMP2ZDAVjs.DateRangeSelector; exports.Dialog = _chunkAMP2ZDAVjs.Dialog; exports.DialogClose = _chunkAMP2ZDAVjs.DialogClose; exports.DialogContent = _chunkAMP2ZDAVjs.DialogContent; exports.DialogDescription = _chunkAMP2ZDAVjs.DialogDescription; exports.DialogFooter = _chunkAMP2ZDAVjs.DialogFooter; exports.DialogHeader = _chunkAMP2ZDAVjs.DialogHeader; exports.DialogOverlay = _chunkAMP2ZDAVjs.DialogOverlay; exports.DialogPortal = _chunkAMP2ZDAVjs.DialogPortal; exports.DialogTitle = _chunkAMP2ZDAVjs.DialogTitle; exports.DialogTrigger = _chunkAMP2ZDAVjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkAMP2ZDAVjs.DisableTwoFactorDialog; exports.Drawer = _chunkAMP2ZDAVjs.Drawer; exports.DrawerClose = _chunkAMP2ZDAVjs.DrawerClose; exports.DrawerContent = _chunkAMP2ZDAVjs.DrawerContent; exports.DrawerDescription = _chunkAMP2ZDAVjs.DrawerDescription; exports.DrawerFooter = _chunkAMP2ZDAVjs.DrawerFooter; exports.DrawerHeader = _chunkAMP2ZDAVjs.DrawerHeader; exports.DrawerOverlay = _chunkAMP2ZDAVjs.DrawerOverlay; exports.DrawerPortal = _chunkAMP2ZDAVjs.DrawerPortal; exports.DrawerTitle = _chunkAMP2ZDAVjs.DrawerTitle; exports.DrawerTrigger = _chunkAMP2ZDAVjs.DrawerTrigger; exports.DropdownMenu = _chunkAMP2ZDAVjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkAMP2ZDAVjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkAMP2ZDAVjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkAMP2ZDAVjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkAMP2ZDAVjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkAMP2ZDAVjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkAMP2ZDAVjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkAMP2ZDAVjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkAMP2ZDAVjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkAMP2ZDAVjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkAMP2ZDAVjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkAMP2ZDAVjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkAMP2ZDAVjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkAMP2ZDAVjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkAMP2ZDAVjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkAMP2ZDAVjs.EditableAvatar; exports.EditorSheet = _chunkAMP2ZDAVjs.EditorSheet; exports.EntityAvatar = _chunkAMP2ZDAVjs.EntityAvatar; exports.EntityMultiSelector = _chunkAMP2ZDAVjs.EntityMultiSelector; exports.ErrorDetails = _chunkAMP2ZDAVjs.ErrorDetails; exports.Field = _chunkAMP2ZDAVjs.Field; exports.FieldContent = _chunkAMP2ZDAVjs.FieldContent; exports.FieldDescription = _chunkAMP2ZDAVjs.FieldDescription; exports.FieldError = _chunkAMP2ZDAVjs.FieldError; exports.FieldGroup = _chunkAMP2ZDAVjs.FieldGroup; exports.FieldLabel = _chunkAMP2ZDAVjs.FieldLabel; exports.FieldLegend = _chunkAMP2ZDAVjs.FieldLegend; exports.FieldSeparator = _chunkAMP2ZDAVjs.FieldSeparator; exports.FieldSet = _chunkAMP2ZDAVjs.FieldSet; exports.FieldTitle = _chunkAMP2ZDAVjs.FieldTitle; exports.FileInput = _chunkAMP2ZDAVjs.FileInput; exports.FileUploader = _chunkAMP2ZDAVjs.FileUploader; exports.FileUploaderContent = _chunkAMP2ZDAVjs.FileUploaderContent; exports.FileUploaderItem = _chunkAMP2ZDAVjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkAMP2ZDAVjs.FiscalDataDisplay; exports.ForgotPassword = _chunkAMP2ZDAVjs.ForgotPassword; exports.Form = _chunkAMP2ZDAVjs.Form; exports.FormBlockNote = _chunkAMP2ZDAVjs.FormBlockNote; exports.FormCheckbox = _chunkAMP2ZDAVjs.FormCheckbox; exports.FormDate = _chunkAMP2ZDAVjs.FormDate; exports.FormDateTime = _chunkAMP2ZDAVjs.FormDateTime; exports.FormFeatures = _chunkAMP2ZDAVjs.FormFeatures; exports.FormFieldWrapper = _chunkAMP2ZDAVjs.FormFieldWrapper; exports.FormInput = _chunkAMP2ZDAVjs.FormInput; exports.FormPassword = _chunkAMP2ZDAVjs.FormPassword; exports.FormPlaceAutocomplete = _chunkAMP2ZDAVjs.FormPlaceAutocomplete; exports.FormRoles = _chunkAMP2ZDAVjs.FormRoles; exports.FormSelect = _chunkAMP2ZDAVjs.FormSelect; exports.FormSlider = _chunkAMP2ZDAVjs.FormSlider; exports.FormSwitch = _chunkAMP2ZDAVjs.FormSwitch; exports.FormTextarea = _chunkAMP2ZDAVjs.FormTextarea; exports.GdprConsentCheckbox = _chunkAMP2ZDAVjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkAMP2ZDAVjs.GdprConsentSection; exports.Header = _chunkAMP2ZDAVjs.Header; exports.HoverCard = _chunkAMP2ZDAVjs.HoverCard; exports.HoverCardContent = _chunkAMP2ZDAVjs.HoverCardContent; exports.HoverCardTrigger = _chunkAMP2ZDAVjs.HoverCardTrigger; exports.HowToCommand = _chunkAMP2ZDAVjs.HowToCommand; exports.HowToCommandViewer = _chunkAMP2ZDAVjs.HowToCommandViewer; exports.HowToContainer = _chunkAMP2ZDAVjs.HowToContainer; exports.HowToContent = _chunkAMP2ZDAVjs.HowToContent; exports.HowToDeleter = _chunkAMP2ZDAVjs.HowToDeleter; exports.HowToDetails = _chunkAMP2ZDAVjs.HowToDetails; exports.HowToEditor = _chunkAMP2ZDAVjs.HowToEditor; exports.HowToList = _chunkAMP2ZDAVjs.HowToList; exports.HowToListContainer = _chunkAMP2ZDAVjs.HowToListContainer; exports.HowToMultiSelector = _chunkAMP2ZDAVjs.HowToMultiSelector; exports.HowToSelector = _chunkAMP2ZDAVjs.HowToSelector; exports.Input = _chunkAMP2ZDAVjs.Input; exports.InputGroup = _chunkAMP2ZDAVjs.InputGroup; exports.InputGroupAddon = _chunkAMP2ZDAVjs.InputGroupAddon; exports.InputGroupButton = _chunkAMP2ZDAVjs.InputGroupButton; exports.InputGroupInput = _chunkAMP2ZDAVjs.InputGroupInput; exports.InputGroupText = _chunkAMP2ZDAVjs.InputGroupText; exports.InputGroupTextarea = _chunkAMP2ZDAVjs.InputGroupTextarea; exports.InputOTP = _chunkAMP2ZDAVjs.InputOTP; exports.InputOTPGroup = _chunkAMP2ZDAVjs.InputOTPGroup; exports.InputOTPSeparator = _chunkAMP2ZDAVjs.InputOTPSeparator; exports.InputOTPSlot = _chunkAMP2ZDAVjs.InputOTPSlot; exports.ItalianFiscalData = _chunkAMP2ZDAVjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkAMP2ZDAVjs.ItalianFiscalDataDisplay; exports.Item = _chunkAMP2ZDAVjs.KanbanItem; exports.ItemHandle = _chunkAMP2ZDAVjs.KanbanItemHandle; exports.Kanban = _chunkAMP2ZDAVjs.KanbanRoot; exports.KanbanBoard = _chunkAMP2ZDAVjs.KanbanBoard; exports.KanbanColumn = _chunkAMP2ZDAVjs.KanbanColumn; exports.KanbanColumnHandle = _chunkAMP2ZDAVjs.KanbanColumnHandle; exports.KanbanItem = _chunkAMP2ZDAVjs.KanbanItem; exports.KanbanItemHandle = _chunkAMP2ZDAVjs.KanbanItemHandle; exports.KanbanOverlay = _chunkAMP2ZDAVjs.KanbanOverlay; exports.Label = _chunkAMP2ZDAVjs.Label; exports.LandingComponent = _chunkAMP2ZDAVjs.LandingComponent; exports.Link = _chunkAMP2ZDAVjs.Link; exports.Login = _chunkAMP2ZDAVjs.Login; exports.Logout = _chunkAMP2ZDAVjs.Logout; exports.MessageItem = _chunkAMP2ZDAVjs.MessageItem; exports.MessageList = _chunkAMP2ZDAVjs.MessageList; exports.MessageSourcesPanel = _chunkAMP2ZDAVjs.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkAMP2ZDAVjs.ModeToggleSwitch; exports.MultiSelect = _chunkAMP2ZDAVjs.MultiSelect; exports.MultipleSelector = _chunkAMP2ZDAVjs.MultipleSelector; exports.NavigationMenu = _chunkAMP2ZDAVjs.NavigationMenu; exports.NavigationMenuContent = _chunkAMP2ZDAVjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkAMP2ZDAVjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkAMP2ZDAVjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkAMP2ZDAVjs.NavigationMenuLink; exports.NavigationMenuList = _chunkAMP2ZDAVjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkAMP2ZDAVjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkAMP2ZDAVjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkAMP2ZDAVjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkAMP2ZDAVjs.NotificationMenuItem; exports.NotificationModal = _chunkAMP2ZDAVjs.NotificationModal; exports.NotificationToast = _chunkAMP2ZDAVjs.NotificationToast; exports.NotificationsList = _chunkAMP2ZDAVjs.NotificationsList; exports.NotificationsListContainer = _chunkAMP2ZDAVjs.NotificationsListContainer; exports.OAuthClientCard = _chunkAMP2ZDAVjs.OAuthClientCard; exports.OAuthClientDetail = _chunkAMP2ZDAVjs.OAuthClientDetail; exports.OAuthClientForm = _chunkAMP2ZDAVjs.OAuthClientForm; exports.OAuthClientList = _chunkAMP2ZDAVjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkAMP2ZDAVjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkAMP2ZDAVjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkAMP2ZDAVjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkAMP2ZDAVjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkAMP2ZDAVjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkAMP2ZDAVjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkAMP2ZDAVjs.OAuthScopeSelector; exports.OnboardingCard = _chunkAMP2ZDAVjs.OnboardingCard; exports.Overlay = _chunkAMP2ZDAVjs.KanbanOverlay; exports.PageContainer = _chunkAMP2ZDAVjs.PageContainer; exports.PageContainerContentDetails = _chunkAMP2ZDAVjs.PageContainerContentDetails; exports.PageContentContainer = _chunkAMP2ZDAVjs.PageContentContainer; exports.PageSection = _chunkAMP2ZDAVjs.PageSection; exports.PasskeyButton = _chunkAMP2ZDAVjs.PasskeyButton; exports.PasskeyList = _chunkAMP2ZDAVjs.PasskeyList; exports.PasskeySetupDialog = _chunkAMP2ZDAVjs.PasskeySetupDialog; exports.PasswordInput = _chunkAMP2ZDAVjs.PasswordInput; exports.Popover = _chunkAMP2ZDAVjs.Popover; exports.PopoverContent = _chunkAMP2ZDAVjs.PopoverContent; exports.PopoverDescription = _chunkAMP2ZDAVjs.PopoverDescription; exports.PopoverHeader = _chunkAMP2ZDAVjs.PopoverHeader; exports.PopoverTitle = _chunkAMP2ZDAVjs.PopoverTitle; exports.PopoverTrigger = _chunkAMP2ZDAVjs.PopoverTrigger; exports.Progress = _chunkAMP2ZDAVjs.Progress; exports.ProgressIndicator = _chunkAMP2ZDAVjs.ProgressIndicator; exports.ProgressLabel = _chunkAMP2ZDAVjs.ProgressLabel; exports.ProgressTrack = _chunkAMP2ZDAVjs.ProgressTrack; exports.ProgressValue = _chunkAMP2ZDAVjs.ProgressValue; exports.PushNotificationProvider = _chunkAMP2ZDAVjs.PushNotificationProvider; exports.RadioGroup = _chunkAMP2ZDAVjs.RadioGroup; exports.RadioGroupItem = _chunkAMP2ZDAVjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkAMP2ZDAVjs.RbacByRoleContainer; exports.RbacContainer = _chunkAMP2ZDAVjs.RbacContainer; exports.RbacPermissionCell = _chunkAMP2ZDAVjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkAMP2ZDAVjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkAMP2ZDAVjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkAMP2ZDAVjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkAMP2ZDAVjs.ReferralCodeCapture; exports.ReferralDialog = _chunkAMP2ZDAVjs.ReferralDialog; exports.ReferralWidget = _chunkAMP2ZDAVjs.ReferralWidget; exports.RefreshUser = _chunkAMP2ZDAVjs.RefreshUser; exports.RelevantContentsList = _chunkAMP2ZDAVjs.RelevantContentsList; exports.RelevantUsersList = _chunkAMP2ZDAVjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkAMP2ZDAVjs.RemoveUserFromRole; exports.ResetPassword = _chunkAMP2ZDAVjs.ResetPassword; exports.ResizableHandle = _chunkAMP2ZDAVjs.ResizableHandle; exports.ResizablePanel = _chunkAMP2ZDAVjs.ResizablePanel; exports.ResizablePanelGroup = _chunkAMP2ZDAVjs.ResizablePanelGroup; exports.RoleContainer = _chunkAMP2ZDAVjs.RoleContainer; exports.RoleDetails = _chunkAMP2ZDAVjs.RoleDetails; exports.RoleUsersList = _chunkAMP2ZDAVjs.RoleUsersList; exports.RolesList = _chunkAMP2ZDAVjs.RolesList; exports.Root = _chunkAMP2ZDAVjs.KanbanRoot; exports.RoundPageContainer = _chunkAMP2ZDAVjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkAMP2ZDAVjs.RoundPageContainerTitle; exports.ScrollArea = _chunkAMP2ZDAVjs.ScrollArea; exports.ScrollBar = _chunkAMP2ZDAVjs.ScrollBar; exports.SecurityContainer = _chunkAMP2ZDAVjs.SecurityContainer; exports.Select = _chunkAMP2ZDAVjs.Select; exports.SelectContent = _chunkAMP2ZDAVjs.SelectContent; exports.SelectGroup = _chunkAMP2ZDAVjs.SelectGroup; exports.SelectItem = _chunkAMP2ZDAVjs.SelectItem; exports.SelectLabel = _chunkAMP2ZDAVjs.SelectLabel; exports.SelectScrollDownButton = _chunkAMP2ZDAVjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkAMP2ZDAVjs.SelectScrollUpButton; exports.SelectSeparator = _chunkAMP2ZDAVjs.SelectSeparator; exports.SelectTrigger = _chunkAMP2ZDAVjs.SelectTrigger; exports.SelectValue = _chunkAMP2ZDAVjs.SelectValue; exports.Separator = _chunkAMP2ZDAVjs.Separator; exports.Sheet = _chunkAMP2ZDAVjs.Sheet; exports.SheetClose = _chunkAMP2ZDAVjs.SheetClose; exports.SheetContent = _chunkAMP2ZDAVjs.SheetContent; exports.SheetDescription = _chunkAMP2ZDAVjs.SheetDescription; exports.SheetFooter = _chunkAMP2ZDAVjs.SheetFooter; exports.SheetHeader = _chunkAMP2ZDAVjs.SheetHeader; exports.SheetTitle = _chunkAMP2ZDAVjs.SheetTitle; exports.SheetTrigger = _chunkAMP2ZDAVjs.SheetTrigger; exports.Sidebar = _chunkAMP2ZDAVjs.Sidebar; exports.SidebarContent = _chunkAMP2ZDAVjs.SidebarContent; exports.SidebarFooter = _chunkAMP2ZDAVjs.SidebarFooter; exports.SidebarGroup = _chunkAMP2ZDAVjs.SidebarGroup; exports.SidebarGroupAction = _chunkAMP2ZDAVjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkAMP2ZDAVjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkAMP2ZDAVjs.SidebarGroupLabel; exports.SidebarHeader = _chunkAMP2ZDAVjs.SidebarHeader; exports.SidebarInput = _chunkAMP2ZDAVjs.SidebarInput; exports.SidebarInset = _chunkAMP2ZDAVjs.SidebarInset; exports.SidebarMenu = _chunkAMP2ZDAVjs.SidebarMenu; exports.SidebarMenuAction = _chunkAMP2ZDAVjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkAMP2ZDAVjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkAMP2ZDAVjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkAMP2ZDAVjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkAMP2ZDAVjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkAMP2ZDAVjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkAMP2ZDAVjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkAMP2ZDAVjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkAMP2ZDAVjs.SidebarProvider; exports.SidebarRail = _chunkAMP2ZDAVjs.SidebarRail; exports.SidebarSeparator = _chunkAMP2ZDAVjs.SidebarSeparator; exports.SidebarTrigger = _chunkAMP2ZDAVjs.SidebarTrigger; exports.Skeleton = _chunkAMP2ZDAVjs.Skeleton; exports.Slider = _chunkAMP2ZDAVjs.Slider; exports.Switch = _chunkAMP2ZDAVjs.Switch; exports.Table = _chunkAMP2ZDAVjs.Table; exports.TableBody = _chunkAMP2ZDAVjs.TableBody; exports.TableCaption = _chunkAMP2ZDAVjs.TableCaption; exports.TableCell = _chunkAMP2ZDAVjs.TableCell; exports.TableCellAvatar = _chunkAMP2ZDAVjs.TableCellAvatar; exports.TableFooter = _chunkAMP2ZDAVjs.TableFooter; exports.TableHead = _chunkAMP2ZDAVjs.TableHead; exports.TableHeader = _chunkAMP2ZDAVjs.TableHeader; exports.TableRow = _chunkAMP2ZDAVjs.TableRow; exports.Tabs = _chunkAMP2ZDAVjs.Tabs; exports.TabsContainer = _chunkAMP2ZDAVjs.TabsContainer; exports.TabsContent = _chunkAMP2ZDAVjs.TabsContent; exports.TabsList = _chunkAMP2ZDAVjs.TabsList; exports.TabsTrigger = _chunkAMP2ZDAVjs.TabsTrigger; exports.Textarea = _chunkAMP2ZDAVjs.Textarea; exports.Toaster = _chunkAMP2ZDAVjs.Toaster; exports.Toggle = _chunkAMP2ZDAVjs.Toggle; exports.TokenStatusIndicator = _chunkAMP2ZDAVjs.TokenStatusIndicator; exports.Tooltip = _chunkAMP2ZDAVjs.Tooltip; exports.TooltipContent = _chunkAMP2ZDAVjs.TooltipContent; exports.TooltipProvider = _chunkAMP2ZDAVjs.TooltipProvider; exports.TooltipTrigger = _chunkAMP2ZDAVjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkAMP2ZDAVjs.TotpAuthenticatorList; exports.TotpInput = _chunkAMP2ZDAVjs.TotpInput; exports.TotpSetupDialog = _chunkAMP2ZDAVjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkAMP2ZDAVjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkAMP2ZDAVjs.TwoFactorSettings; exports.UserAvatar = _chunkAMP2ZDAVjs.UserAvatar; exports.UserAvatarEditor = _chunkAMP2ZDAVjs.UserAvatarEditor; exports.UserAvatarList = _chunkAMP2ZDAVjs.UserAvatarList; exports.UserContainer = _chunkAMP2ZDAVjs.UserContainer; exports.UserContent = _chunkAMP2ZDAVjs.UserContent; exports.UserDeleter = _chunkAMP2ZDAVjs.UserDeleter; exports.UserEditor = _chunkAMP2ZDAVjs.UserEditor; exports.UserIndexContainer = _chunkAMP2ZDAVjs.UserIndexContainer; exports.UserIndexDetails = _chunkAMP2ZDAVjs.UserIndexDetails; exports.UserListInAdd = _chunkAMP2ZDAVjs.UserListInAdd; exports.UserMultiSelect = _chunkAMP2ZDAVjs.UserMultiSelect; exports.UserReactivator = _chunkAMP2ZDAVjs.UserReactivator; exports.UserResentInvitationEmail = _chunkAMP2ZDAVjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkAMP2ZDAVjs.UserRoleAdd; exports.UserRolesList = _chunkAMP2ZDAVjs.UserRolesList; exports.UserSearchPopover = _chunkAMP2ZDAVjs.UserSearchPopover; exports.UserSelector = _chunkAMP2ZDAVjs.UserSelector; exports.UserStanadaloneDetails = _chunkAMP2ZDAVjs.UserStanadaloneDetails; exports.UsersList = _chunkAMP2ZDAVjs.UsersList; exports.UsersListByContentIds = _chunkAMP2ZDAVjs.UsersListByContentIds; exports.UsersListContainer = _chunkAMP2ZDAVjs.UsersListContainer; exports.WaitlistConfirmation = _chunkAMP2ZDAVjs.WaitlistConfirmation; exports.WaitlistForm = _chunkAMP2ZDAVjs.WaitlistForm; exports.WaitlistHeroSection = _chunkAMP2ZDAVjs.WaitlistHeroSection; exports.WaitlistList = _chunkAMP2ZDAVjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkAMP2ZDAVjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkAMP2ZDAVjs.WaitlistSuccessState; exports.badgeVariants = _chunkAMP2ZDAVjs.badgeVariants; exports.buttonVariants = _chunkAMP2ZDAVjs.buttonVariants; exports.cellComponent = _chunkAMP2ZDAVjs.cellComponent; exports.cellDate = _chunkAMP2ZDAVjs.cellDate; exports.cellId = _chunkAMP2ZDAVjs.cellId; exports.cellLink = _chunkAMP2ZDAVjs.cellLink; exports.cellUrl = _chunkAMP2ZDAVjs.cellUrl; exports.errorToast = _chunkAMP2ZDAVjs.errorToast; exports.generateNotificationData = _chunkAMP2ZDAVjs.generateNotificationData; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.navigationMenuTriggerStyle = _chunkAMP2ZDAVjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkAMP2ZDAVjs.parseFiscalData; exports.tabsListVariants = _chunkAMP2ZDAVjs.tabsListVariants; exports.toggleVariants = _chunkAMP2ZDAVjs.toggleVariants; exports.triggerAssociationToast = _chunkAMP2ZDAVjs.triggerAssociationToast; exports.useCarousel = _chunkAMP2ZDAVjs.useCarousel; exports.useComboboxAnchor = _chunkAMP2ZDAVjs.useComboboxAnchor; exports.useDebounce = _chunkAMP2ZDAVjs.useDebounce2; exports.useEditorDialog = _chunkAMP2ZDAVjs.useEditorDialog; exports.useFileUpload = _chunkAMP2ZDAVjs.useFileUpload; exports.useSidebar = _chunkAMP2ZDAVjs.useSidebar;
927
927
  //# sourceMappingURL=index.js.map
@@ -449,8 +449,8 @@ import {
449
449
  useEditorDialog,
450
450
  useFileUpload,
451
451
  useSidebar
452
- } from "../chunk-TTVVHFS4.mjs";
453
- import "../chunk-PV5V6CVW.mjs";
452
+ } from "../chunk-CZ56O6JZ.mjs";
453
+ import "../chunk-NEJ7CDM3.mjs";
454
454
  import {
455
455
  getIcon,
456
456
  getIconByModule,
@@ -24,8 +24,22 @@ declare function configureClientConfig(config: {
24
24
  }): void;
25
25
  /**
26
26
  * Get the configured API URL.
27
+ *
28
+ * This may resolve to an internal/private host (e.g. a docker-network
29
+ * hostname) when configured to do so for SSR fetches. Do NOT use this for
30
+ * URLs that are rendered into HTML and followed by the browser — use
31
+ * `getPublicApiUrl()` instead.
27
32
  */
28
33
  declare function getApiUrl(): string;
34
+ /**
35
+ * Get the public-facing API URL.
36
+ *
37
+ * Always sourced from `NEXT_PUBLIC_API_URL` so it is identical on server
38
+ * and client, and reachable from the user's browser. Use for any URL that
39
+ * gets rendered into HTML the browser will navigate to (links, redirects,
40
+ * OAuth hrefs).
41
+ */
42
+ declare function getPublicApiUrl(): string;
29
43
  /**
30
44
  * Get the configured app URL.
31
45
  */
@@ -71,4 +85,4 @@ declare function getI18nLink(): LinkComponent;
71
85
  declare function useI18nLocale(): string;
72
86
  declare function useI18nDateFnsLocale(): any;
73
87
 
74
- export { type I18nConfig as I, type LinkComponent as L, type UseDateFnsLocaleHook as U, getAppUrl as a, getTrackablePages as b, configureJsonApi as c, getStripePublishableKey as d, configureI18n as e, configureClientConfig as f, getApiUrl as g, getI18nLink as h, useI18nLocale as i, useI18nRouter as j, useI18nTranslations as k, type I18nRouter as l, type UseLocaleHook as m, type UseRouterHook as n, type UseTranslationsHook as o, useI18nDateFnsLocale as u };
88
+ export { type I18nConfig as I, type LinkComponent as L, type UseDateFnsLocaleHook as U, getPublicApiUrl as a, getAppUrl as b, configureJsonApi as c, getTrackablePages as d, getStripePublishableKey as e, configureI18n as f, getApiUrl as g, configureClientConfig as h, getI18nLink as i, useI18nLocale as j, useI18nRouter as k, useI18nTranslations as l, type I18nRouter as m, type UseLocaleHook as n, type UseRouterHook as o, type UseTranslationsHook as p, useI18nDateFnsLocale as u };
@@ -24,8 +24,22 @@ declare function configureClientConfig(config: {
24
24
  }): void;
25
25
  /**
26
26
  * Get the configured API URL.
27
+ *
28
+ * This may resolve to an internal/private host (e.g. a docker-network
29
+ * hostname) when configured to do so for SSR fetches. Do NOT use this for
30
+ * URLs that are rendered into HTML and followed by the browser — use
31
+ * `getPublicApiUrl()` instead.
27
32
  */
28
33
  declare function getApiUrl(): string;
34
+ /**
35
+ * Get the public-facing API URL.
36
+ *
37
+ * Always sourced from `NEXT_PUBLIC_API_URL` so it is identical on server
38
+ * and client, and reachable from the user's browser. Use for any URL that
39
+ * gets rendered into HTML the browser will navigate to (links, redirects,
40
+ * OAuth hrefs).
41
+ */
42
+ declare function getPublicApiUrl(): string;
29
43
  /**
30
44
  * Get the configured app URL.
31
45
  */
@@ -71,4 +85,4 @@ declare function getI18nLink(): LinkComponent;
71
85
  declare function useI18nLocale(): string;
72
86
  declare function useI18nDateFnsLocale(): any;
73
87
 
74
- export { type I18nConfig as I, type LinkComponent as L, type UseDateFnsLocaleHook as U, getAppUrl as a, getTrackablePages as b, configureJsonApi as c, getStripePublishableKey as d, configureI18n as e, configureClientConfig as f, getApiUrl as g, getI18nLink as h, useI18nLocale as i, useI18nRouter as j, useI18nTranslations as k, type I18nRouter as l, type UseLocaleHook as m, type UseRouterHook as n, type UseTranslationsHook as o, useI18nDateFnsLocale as u };
88
+ export { type I18nConfig as I, type LinkComponent as L, type UseDateFnsLocaleHook as U, getPublicApiUrl as a, getAppUrl as b, configureJsonApi as c, getTrackablePages as d, getStripePublishableKey as e, configureI18n as f, getApiUrl as g, configureClientConfig as h, getI18nLink as i, useI18nLocale as j, useI18nRouter as k, useI18nTranslations as l, type I18nRouter as m, type UseLocaleHook as n, type UseRouterHook as o, type UseTranslationsHook as p, useI18nDateFnsLocale as u };
@@ -31,8 +31,8 @@
31
31
 
32
32
 
33
33
 
34
- var _chunkUUMDUIY6js = require('../chunk-UUMDUIY6.js');
35
- require('../chunk-ZEJSPTHS.js');
34
+ var _chunkAMP2ZDAVjs = require('../chunk-AMP2ZDAV.js');
35
+ require('../chunk-2AK4GRIB.js');
36
36
  require('../chunk-N4YZ45SK.js');
37
37
  require('../chunk-LXKSUWAV.js');
38
38
  require('../chunk-IBS6NI7D.js');
@@ -71,5 +71,5 @@ require('../chunk-7QVYU63E.js');
71
71
 
72
72
 
73
73
 
74
- exports.AssistantProvider = _chunkUUMDUIY6js.AssistantProvider; exports.CommonProvider = _chunkUUMDUIY6js.CommonProvider; exports.CompanyProvider = _chunkUUMDUIY6js.CompanyProvider; exports.CurrentUserProvider = _chunkUUMDUIY6js.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkUUMDUIY6js.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkUUMDUIY6js.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkUUMDUIY6js.HeaderLeftContentProvider; exports.HowToProvider = _chunkUUMDUIY6js.HowToProvider; exports.NotificationContextProvider = _chunkUUMDUIY6js.NotificationContextProvider; exports.OnboardingProvider = _chunkUUMDUIY6js.OnboardingProvider; exports.RbacProvider = _chunkUUMDUIY6js.RbacProvider; exports.RoleProvider = _chunkUUMDUIY6js.RoleProvider; exports.SharedProvider = _chunkUUMDUIY6js.SharedProvider; exports.SocketContext = _chunkUUMDUIY6js.SocketContext; exports.SocketProvider = _chunkUUMDUIY6js.SocketProvider; exports.UserProvider = _chunkUUMDUIY6js.UserProvider; exports.recentPagesAtom = _chunkUUMDUIY6js.recentPagesAtom; exports.useAssistantContext = _chunkUUMDUIY6js.useAssistantContext; exports.useCommonContext = _chunkUUMDUIY6js.useCommonContext; exports.useCompanyContext = _chunkUUMDUIY6js.useCompanyContext; exports.useCurrentUserContext = _chunkUUMDUIY6js.useCurrentUserContext; exports.useHeaderChildren = _chunkUUMDUIY6js.useHeaderChildren; exports.useHeaderLeftContent = _chunkUUMDUIY6js.useHeaderLeftContent; exports.useHowToContext = _chunkUUMDUIY6js.useHowToContext; exports.useNotificationContext = _chunkUUMDUIY6js.useNotificationContext; exports.useOnboarding = _chunkUUMDUIY6js.useOnboarding; exports.useRbacContext = _chunkUUMDUIY6js.useRbacContext; exports.useRoleContext = _chunkUUMDUIY6js.useRoleContext; exports.useSharedContext = _chunkUUMDUIY6js.useSharedContext; exports.useSocketContext = _chunkUUMDUIY6js.useSocketContext; exports.useUserContext = _chunkUUMDUIY6js.useUserContext;
74
+ exports.AssistantProvider = _chunkAMP2ZDAVjs.AssistantProvider; exports.CommonProvider = _chunkAMP2ZDAVjs.CommonProvider; exports.CompanyProvider = _chunkAMP2ZDAVjs.CompanyProvider; exports.CurrentUserProvider = _chunkAMP2ZDAVjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkAMP2ZDAVjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkAMP2ZDAVjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkAMP2ZDAVjs.HeaderLeftContentProvider; exports.HowToProvider = _chunkAMP2ZDAVjs.HowToProvider; exports.NotificationContextProvider = _chunkAMP2ZDAVjs.NotificationContextProvider; exports.OnboardingProvider = _chunkAMP2ZDAVjs.OnboardingProvider; exports.RbacProvider = _chunkAMP2ZDAVjs.RbacProvider; exports.RoleProvider = _chunkAMP2ZDAVjs.RoleProvider; exports.SharedProvider = _chunkAMP2ZDAVjs.SharedProvider; exports.SocketContext = _chunkAMP2ZDAVjs.SocketContext; exports.SocketProvider = _chunkAMP2ZDAVjs.SocketProvider; exports.UserProvider = _chunkAMP2ZDAVjs.UserProvider; exports.recentPagesAtom = _chunkAMP2ZDAVjs.recentPagesAtom; exports.useAssistantContext = _chunkAMP2ZDAVjs.useAssistantContext; exports.useCommonContext = _chunkAMP2ZDAVjs.useCommonContext; exports.useCompanyContext = _chunkAMP2ZDAVjs.useCompanyContext; exports.useCurrentUserContext = _chunkAMP2ZDAVjs.useCurrentUserContext; exports.useHeaderChildren = _chunkAMP2ZDAVjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkAMP2ZDAVjs.useHeaderLeftContent; exports.useHowToContext = _chunkAMP2ZDAVjs.useHowToContext; exports.useNotificationContext = _chunkAMP2ZDAVjs.useNotificationContext; exports.useOnboarding = _chunkAMP2ZDAVjs.useOnboarding; exports.useRbacContext = _chunkAMP2ZDAVjs.useRbacContext; exports.useRoleContext = _chunkAMP2ZDAVjs.useRoleContext; exports.useSharedContext = _chunkAMP2ZDAVjs.useSharedContext; exports.useSocketContext = _chunkAMP2ZDAVjs.useSocketContext; exports.useUserContext = _chunkAMP2ZDAVjs.useUserContext;
75
75
  //# sourceMappingURL=index.js.map
@@ -31,8 +31,8 @@ import {
31
31
  useSharedContext,
32
32
  useSocketContext,
33
33
  useUserContext
34
- } from "../chunk-TTVVHFS4.mjs";
35
- import "../chunk-PV5V6CVW.mjs";
34
+ } from "../chunk-CZ56O6JZ.mjs";
35
+ import "../chunk-NEJ7CDM3.mjs";
36
36
  import "../chunk-6UMB5LTQ.mjs";
37
37
  import "../chunk-AUXK7QSA.mjs";
38
38
  import "../chunk-C7C7VY4F.mjs";
package/dist/index.d.mts CHANGED
@@ -16,7 +16,7 @@ export { I as InvoiceStatus, M as MeterInterface, o as MeterSummaryInterface, P
16
16
  export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-BYgI5z1-.mjs';
17
17
  export { F as FeatureInterface, M as ModuleInterface } from './feature.interface-CXb1-vNq.mjs';
18
18
  export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, O as OAuthClientInterface, f as OAuthConsentInfo, d as OAuthConsentRequest, e as OAuthScopeInfo } from './oauth.interface-o5FLpiN7.mjs';
19
- export { I as I18nConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, d as getStripePublishableKey, b as getTrackablePages } from './config-Bx_uh22h.mjs';
19
+ export { I as I18nConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages } from './config-k61pe_o2.mjs';
20
20
  export { Q as QuestionnaireField, a as QuestionnaireFieldType, b as QuestionnaireOption, W as WaitlistConfig, c as configureWaitlist, g as getWaitlistConfig } from './waitlist.config-kPfjImle.mjs';
21
21
  import { R as RbacMatrix } from './RbacTypes-BTbr27Ew.mjs';
22
22
  export { a as ACTION_TYPES, A as ActionType, C as COMPANY_ADMINISTRATOR_ROLE_ID, c as PermToken, P as PermissionValue, b as PermissionsMap, d as RbacModuleBlock } from './RbacTypes-BTbr27Ew.mjs';
package/dist/index.d.ts CHANGED
@@ -16,7 +16,7 @@ export { I as InvoiceStatus, M as MeterInterface, o as MeterSummaryInterface, P
16
16
  export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-DfDcz0gJ.js';
17
17
  export { F as FeatureInterface, M as ModuleInterface } from './feature.interface-BO25VLlx.js';
18
18
  export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, O as OAuthClientInterface, f as OAuthConsentInfo, d as OAuthConsentRequest, e as OAuthScopeInfo } from './oauth.interface-B6xmfDzK.js';
19
- export { I as I18nConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, d as getStripePublishableKey, b as getTrackablePages } from './config-B5oBQVEA.js';
19
+ export { I as I18nConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages } from './config-CLQynoaa.js';
20
20
  export { Q as QuestionnaireField, a as QuestionnaireFieldType, b as QuestionnaireOption, W as WaitlistConfig, c as configureWaitlist, g as getWaitlistConfig } from './waitlist.config-kPfjImle.js';
21
21
  import { R as RbacMatrix } from './RbacTypes-BTbr27Ew.js';
22
22
  export { a as ACTION_TYPES, A as ActionType, C as COMPANY_ADMINISTRATOR_ROLE_ID, c as PermToken, P as PermissionValue, b as PermissionsMap, d as RbacModuleBlock } from './RbacTypes-BTbr27Ew.js';
package/dist/index.js CHANGED
@@ -17,7 +17,8 @@
17
17
 
18
18
 
19
19
 
20
- var _chunkZEJSPTHSjs = require('./chunk-ZEJSPTHS.js');
20
+
21
+ var _chunk2AK4GRIBjs = require('./chunk-2AK4GRIB.js');
21
22
 
22
23
 
23
24
 
@@ -419,5 +420,6 @@ require('./chunk-7QVYU63E.js');
419
420
 
420
421
 
421
422
 
422
- exports.ACTION_TYPES = _chunkZEJSPTHSjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunkN4YZ45SKjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkN4YZ45SKjs.AbstractApiData; exports.AbstractService = _chunkN4YZ45SKjs.AbstractService; exports.Action = _chunkN4YZ45SKjs.Action; exports.Assistant = _chunkN4YZ45SKjs.Assistant; exports.AssistantMessage = _chunkN4YZ45SKjs.AssistantMessage; exports.AssistantMessageModule = _chunkN4YZ45SKjs.AssistantMessageModule; exports.AssistantMessageService = _chunkN4YZ45SKjs.AssistantMessageService; exports.AssistantModule = _chunkN4YZ45SKjs.AssistantModule; exports.AssistantService = _chunkN4YZ45SKjs.AssistantService; exports.AuditLog = _chunkN4YZ45SKjs.AuditLog; exports.AuditLogModule = _chunkN4YZ45SKjs.AuditLogModule; exports.AuditLogService = _chunkN4YZ45SKjs.AuditLogService; exports.Auth = _chunkN4YZ45SKjs.Auth; exports.AuthComponent = _chunkN4YZ45SKjs.AuthComponent; exports.AuthModule = _chunkN4YZ45SKjs.AuthModule; exports.AuthService = _chunkN4YZ45SKjs.AuthService; exports.AuthorModule = _chunkN4YZ45SKjs.AuthorModule; exports.BackupCodeVerify = _chunkN4YZ45SKjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkN4YZ45SKjs.BackupCodeVerifyModule; exports.Billing = _chunkN4YZ45SKjs.Billing; exports.BillingModule = _chunkN4YZ45SKjs.BillingModule; exports.BillingService = _chunkN4YZ45SKjs.BillingService; exports.BlockNoteDiffUtil = _chunkN4YZ45SKjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkN4YZ45SKjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunkZEJSPTHSjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.Chunk = _chunkN4YZ45SKjs.Chunk; exports.ChunkModule = _chunkN4YZ45SKjs.ChunkModule; exports.ClientAbstractService = _chunkN4YZ45SKjs.ClientAbstractService; exports.ClientHttpMethod = _chunkN4YZ45SKjs.ClientHttpMethod; exports.Company = _chunkN4YZ45SKjs.Company; exports.CompanyFields = _chunkN4YZ45SKjs.CompanyFields; exports.CompanyModule = _chunkN4YZ45SKjs.CompanyModule; exports.CompanyService = _chunkN4YZ45SKjs.CompanyService; exports.Content = _chunkN4YZ45SKjs.Content; exports.ContentFields = _chunkN4YZ45SKjs.ContentFields; exports.ContentModule = _chunkN4YZ45SKjs.ContentModule; exports.ContentService = _chunkN4YZ45SKjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkN4YZ45SKjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkN4YZ45SKjs.EndpointCreator; exports.Feature = _chunkN4YZ45SKjs.Feature; exports.FeatureModule = _chunkN4YZ45SKjs.FeatureModule; exports.FeatureService = _chunkN4YZ45SKjs.FeatureService; exports.HowTo = _chunkN4YZ45SKjs.HowTo; exports.HowToFields = _chunkN4YZ45SKjs.HowToFields; exports.HowToModule = _chunkN4YZ45SKjs.HowToModule; exports.HowToService = _chunkN4YZ45SKjs.HowToService; exports.HttpMethod = _chunkN4YZ45SKjs.HttpMethod; exports.InvoiceStatus = _chunkN4YZ45SKjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkN4YZ45SKjs.Module; exports.ModuleModule = _chunkN4YZ45SKjs.ModuleModule; exports.ModulePaths = _chunkN4YZ45SKjs.ModulePaths; exports.ModulePathsModule = _chunkN4YZ45SKjs.ModulePathsModule; exports.ModuleRegistrar = _chunkN4YZ45SKjs.ModuleRegistrar; exports.ModuleRegistry = _chunkN4YZ45SKjs.ModuleRegistry; exports.Modules = _chunkN4YZ45SKjs.Modules; exports.Notification = _chunkN4YZ45SKjs.Notification; exports.NotificationFields = _chunkN4YZ45SKjs.NotificationFields; exports.NotificationModule = _chunkN4YZ45SKjs.NotificationModule; exports.NotificationService = _chunkN4YZ45SKjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkN4YZ45SKjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkN4YZ45SKjs.OAuthClient; exports.OAuthModule = _chunkN4YZ45SKjs.OAuthModule; exports.OAuthService = _chunkN4YZ45SKjs.OAuthService; exports.Passkey = _chunkN4YZ45SKjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkN4YZ45SKjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkN4YZ45SKjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkN4YZ45SKjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkN4YZ45SKjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkN4YZ45SKjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkN4YZ45SKjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkN4YZ45SKjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkN4YZ45SKjs.PasskeyRename; exports.PasskeyRenameModule = _chunkN4YZ45SKjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkN4YZ45SKjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkN4YZ45SKjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkN4YZ45SKjs.PaymentMethod; exports.PermissionMapping = _chunkN4YZ45SKjs.PermissionMapping; exports.PermissionMappingModule = _chunkN4YZ45SKjs.PermissionMappingModule; exports.Push = _chunkN4YZ45SKjs.Push; exports.PushModule = _chunkN4YZ45SKjs.PushModule; exports.PushService = _chunkN4YZ45SKjs.PushService; exports.RbacMatrixModel = _chunkN4YZ45SKjs.RbacMatrixModel; exports.RbacMatrixModule = _chunkN4YZ45SKjs.RbacMatrixModule; exports.RbacService = _chunkZEJSPTHSjs.RbacService; exports.ReferralModule = _chunkN4YZ45SKjs.ReferralModule; exports.ReferralService = _chunkN4YZ45SKjs.ReferralService; exports.ReferralStats = _chunkN4YZ45SKjs.ReferralStats; exports.ReferralStatsModule = _chunkN4YZ45SKjs.ReferralStatsModule; exports.RehydrationFactory = _chunkN4YZ45SKjs.RehydrationFactory; exports.Role = _chunkN4YZ45SKjs.Role; exports.RoleFields = _chunkN4YZ45SKjs.RoleFields; exports.RoleModule = _chunkN4YZ45SKjs.RoleModule; exports.RoleService = _chunkN4YZ45SKjs.RoleService; exports.S3 = _chunkN4YZ45SKjs.S3; exports.S3Module = _chunkN4YZ45SKjs.S3Module; exports.S3Service = _chunkN4YZ45SKjs.S3Service; exports.StripeCustomer = _chunkN4YZ45SKjs.StripeCustomer; exports.StripeCustomerModule = _chunkN4YZ45SKjs.StripeCustomerModule; exports.StripeCustomerService = _chunkN4YZ45SKjs.StripeCustomerService; exports.StripeInvoice = _chunkN4YZ45SKjs.StripeInvoice; exports.StripeInvoiceModule = _chunkN4YZ45SKjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkN4YZ45SKjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkN4YZ45SKjs.StripePaymentMethodModule; exports.StripePrice = _chunkN4YZ45SKjs.StripePrice; exports.StripePriceModule = _chunkN4YZ45SKjs.StripePriceModule; exports.StripePriceService = _chunkN4YZ45SKjs.StripePriceService; exports.StripeProduct = _chunkN4YZ45SKjs.StripeProduct; exports.StripeProductModule = _chunkN4YZ45SKjs.StripeProductModule; exports.StripeProductService = _chunkN4YZ45SKjs.StripeProductService; exports.StripePromotionCode = _chunkN4YZ45SKjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkN4YZ45SKjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkN4YZ45SKjs.StripePromotionCodeService; exports.StripeSubscription = _chunkN4YZ45SKjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkN4YZ45SKjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkN4YZ45SKjs.StripeSubscriptionService; exports.StripeUsage = _chunkN4YZ45SKjs.StripeUsage; exports.StripeUsageModule = _chunkN4YZ45SKjs.StripeUsageModule; exports.StripeUsageService = _chunkN4YZ45SKjs.StripeUsageService; exports.SubscriptionStatus = _chunkN4YZ45SKjs.SubscriptionStatus; exports.TableOptions = _chunkN4YZ45SKjs.TableOptions; exports.TotpAuthenticator = _chunkN4YZ45SKjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkN4YZ45SKjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkN4YZ45SKjs.TotpSetup; exports.TotpSetupModule = _chunkN4YZ45SKjs.TotpSetupModule; exports.TotpVerify = _chunkN4YZ45SKjs.TotpVerify; exports.TotpVerifyLogin = _chunkN4YZ45SKjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkN4YZ45SKjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkN4YZ45SKjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkN4YZ45SKjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkN4YZ45SKjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkN4YZ45SKjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkN4YZ45SKjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkN4YZ45SKjs.TwoFactorService; exports.TwoFactorStatus = _chunkN4YZ45SKjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkN4YZ45SKjs.TwoFactorStatusModule; exports.User = _chunkN4YZ45SKjs.User; exports.UserFields = _chunkN4YZ45SKjs.UserFields; exports.UserModule = _chunkN4YZ45SKjs.UserModule; exports.UserService = _chunkN4YZ45SKjs.UserService; exports.Waitlist = _chunkN4YZ45SKjs.Waitlist; exports.WaitlistModule = _chunkN4YZ45SKjs.WaitlistModule; exports.WaitlistService = _chunkN4YZ45SKjs.WaitlistService; exports.WaitlistStats = _chunkN4YZ45SKjs.WaitlistStats; exports.WaitlistStatsModule = _chunkN4YZ45SKjs.WaitlistStatsModule; exports.checkPermissions = _chunkN4YZ45SKjs.checkPermissions; exports.checkPermissionsFromServer = _chunkN4YZ45SKjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkN4YZ45SKjs.clearLastApiTotal; exports.cn = _chunkN4YZ45SKjs.cn; exports.composeRefs = _chunkN4YZ45SKjs.composeRefs; exports.configureAuth = _chunkN4YZ45SKjs.configureAuth; exports.configureI18n = _chunkZEJSPTHSjs.configureI18n; exports.configureJsonApi = _chunkZEJSPTHSjs.configureJsonApi; exports.configureLogin = _chunkZEJSPTHSjs.configureLogin; exports.configureReferral = _chunkZEJSPTHSjs.configureReferral; exports.configureRoles = _chunkZEJSPTHSjs.configureRoles; exports.configureWaitlist = _chunkZEJSPTHSjs.configureWaitlist; exports.createJsonApiInclusion = _chunkN4YZ45SKjs.createJsonApiInclusion; exports.dismissToast = _chunkN4YZ45SKjs.dismissToast; exports.entityObjectSchema = _chunkN4YZ45SKjs.entityObjectSchema; exports.exists = _chunkN4YZ45SKjs.exists; exports.formatDate = _chunkN4YZ45SKjs.formatDate; exports.getApiUrl = _chunkZEJSPTHSjs.getApiUrl; exports.getAppUrl = _chunkZEJSPTHSjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkN4YZ45SKjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkN4YZ45SKjs.getGlobalErrorHandler; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.getLastApiTotal = _chunkN4YZ45SKjs.getLastApiTotal; exports.getLucideIcon = _chunkN4YZ45SKjs.getLucideIcon; exports.getLucideIconByModule = _chunkN4YZ45SKjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkN4YZ45SKjs.getLucideIconByModuleName; exports.getReferralConfig = _chunkZEJSPTHSjs.getReferralConfig; exports.getRoleId = _chunkZEJSPTHSjs.getRoleId; exports.getStripePublishableKey = _chunkZEJSPTHSjs.getStripePublishableKey; exports.getTableComponents = _chunkN4YZ45SKjs.getTableComponents; exports.getTableOptions = _chunkN4YZ45SKjs.getTableOptions; exports.getTokenHandler = _chunkN4YZ45SKjs.getTokenHandler; exports.getTrackablePages = _chunkZEJSPTHSjs.getTrackablePages; exports.getValueFromPath = _chunkN4YZ45SKjs.getValueFromPath; exports.getWaitlistConfig = _chunkZEJSPTHSjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunkZEJSPTHSjs.isReferralEnabled; exports.isRolesConfigured = _chunkZEJSPTHSjs.isRolesConfigured; exports.rehydrate = _chunkN4YZ45SKjs.rehydrate; exports.rehydrateList = _chunkN4YZ45SKjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkN4YZ45SKjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkN4YZ45SKjs.setGlobalErrorHandler; exports.showCustomToast = _chunkN4YZ45SKjs.showCustomToast; exports.showError = _chunkN4YZ45SKjs.showError; exports.showToast = _chunkN4YZ45SKjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkN4YZ45SKjs.useComposedRefs; exports.useIsMobile = _chunkN4YZ45SKjs.useIsMobile; exports.userObjectSchema = _chunkN4YZ45SKjs.userObjectSchema;
423
+
424
+ exports.ACTION_TYPES = _chunk2AK4GRIBjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunkN4YZ45SKjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkN4YZ45SKjs.AbstractApiData; exports.AbstractService = _chunkN4YZ45SKjs.AbstractService; exports.Action = _chunkN4YZ45SKjs.Action; exports.Assistant = _chunkN4YZ45SKjs.Assistant; exports.AssistantMessage = _chunkN4YZ45SKjs.AssistantMessage; exports.AssistantMessageModule = _chunkN4YZ45SKjs.AssistantMessageModule; exports.AssistantMessageService = _chunkN4YZ45SKjs.AssistantMessageService; exports.AssistantModule = _chunkN4YZ45SKjs.AssistantModule; exports.AssistantService = _chunkN4YZ45SKjs.AssistantService; exports.AuditLog = _chunkN4YZ45SKjs.AuditLog; exports.AuditLogModule = _chunkN4YZ45SKjs.AuditLogModule; exports.AuditLogService = _chunkN4YZ45SKjs.AuditLogService; exports.Auth = _chunkN4YZ45SKjs.Auth; exports.AuthComponent = _chunkN4YZ45SKjs.AuthComponent; exports.AuthModule = _chunkN4YZ45SKjs.AuthModule; exports.AuthService = _chunkN4YZ45SKjs.AuthService; exports.AuthorModule = _chunkN4YZ45SKjs.AuthorModule; exports.BackupCodeVerify = _chunkN4YZ45SKjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkN4YZ45SKjs.BackupCodeVerifyModule; exports.Billing = _chunkN4YZ45SKjs.Billing; exports.BillingModule = _chunkN4YZ45SKjs.BillingModule; exports.BillingService = _chunkN4YZ45SKjs.BillingService; exports.BlockNoteDiffUtil = _chunkN4YZ45SKjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkN4YZ45SKjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunk2AK4GRIBjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.Chunk = _chunkN4YZ45SKjs.Chunk; exports.ChunkModule = _chunkN4YZ45SKjs.ChunkModule; exports.ClientAbstractService = _chunkN4YZ45SKjs.ClientAbstractService; exports.ClientHttpMethod = _chunkN4YZ45SKjs.ClientHttpMethod; exports.Company = _chunkN4YZ45SKjs.Company; exports.CompanyFields = _chunkN4YZ45SKjs.CompanyFields; exports.CompanyModule = _chunkN4YZ45SKjs.CompanyModule; exports.CompanyService = _chunkN4YZ45SKjs.CompanyService; exports.Content = _chunkN4YZ45SKjs.Content; exports.ContentFields = _chunkN4YZ45SKjs.ContentFields; exports.ContentModule = _chunkN4YZ45SKjs.ContentModule; exports.ContentService = _chunkN4YZ45SKjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkN4YZ45SKjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkN4YZ45SKjs.EndpointCreator; exports.Feature = _chunkN4YZ45SKjs.Feature; exports.FeatureModule = _chunkN4YZ45SKjs.FeatureModule; exports.FeatureService = _chunkN4YZ45SKjs.FeatureService; exports.HowTo = _chunkN4YZ45SKjs.HowTo; exports.HowToFields = _chunkN4YZ45SKjs.HowToFields; exports.HowToModule = _chunkN4YZ45SKjs.HowToModule; exports.HowToService = _chunkN4YZ45SKjs.HowToService; exports.HttpMethod = _chunkN4YZ45SKjs.HttpMethod; exports.InvoiceStatus = _chunkN4YZ45SKjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkN4YZ45SKjs.Module; exports.ModuleModule = _chunkN4YZ45SKjs.ModuleModule; exports.ModulePaths = _chunkN4YZ45SKjs.ModulePaths; exports.ModulePathsModule = _chunkN4YZ45SKjs.ModulePathsModule; exports.ModuleRegistrar = _chunkN4YZ45SKjs.ModuleRegistrar; exports.ModuleRegistry = _chunkN4YZ45SKjs.ModuleRegistry; exports.Modules = _chunkN4YZ45SKjs.Modules; exports.Notification = _chunkN4YZ45SKjs.Notification; exports.NotificationFields = _chunkN4YZ45SKjs.NotificationFields; exports.NotificationModule = _chunkN4YZ45SKjs.NotificationModule; exports.NotificationService = _chunkN4YZ45SKjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkN4YZ45SKjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkN4YZ45SKjs.OAuthClient; exports.OAuthModule = _chunkN4YZ45SKjs.OAuthModule; exports.OAuthService = _chunkN4YZ45SKjs.OAuthService; exports.Passkey = _chunkN4YZ45SKjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkN4YZ45SKjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkN4YZ45SKjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkN4YZ45SKjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkN4YZ45SKjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkN4YZ45SKjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkN4YZ45SKjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkN4YZ45SKjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkN4YZ45SKjs.PasskeyRename; exports.PasskeyRenameModule = _chunkN4YZ45SKjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkN4YZ45SKjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkN4YZ45SKjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkN4YZ45SKjs.PaymentMethod; exports.PermissionMapping = _chunkN4YZ45SKjs.PermissionMapping; exports.PermissionMappingModule = _chunkN4YZ45SKjs.PermissionMappingModule; exports.Push = _chunkN4YZ45SKjs.Push; exports.PushModule = _chunkN4YZ45SKjs.PushModule; exports.PushService = _chunkN4YZ45SKjs.PushService; exports.RbacMatrixModel = _chunkN4YZ45SKjs.RbacMatrixModel; exports.RbacMatrixModule = _chunkN4YZ45SKjs.RbacMatrixModule; exports.RbacService = _chunk2AK4GRIBjs.RbacService; exports.ReferralModule = _chunkN4YZ45SKjs.ReferralModule; exports.ReferralService = _chunkN4YZ45SKjs.ReferralService; exports.ReferralStats = _chunkN4YZ45SKjs.ReferralStats; exports.ReferralStatsModule = _chunkN4YZ45SKjs.ReferralStatsModule; exports.RehydrationFactory = _chunkN4YZ45SKjs.RehydrationFactory; exports.Role = _chunkN4YZ45SKjs.Role; exports.RoleFields = _chunkN4YZ45SKjs.RoleFields; exports.RoleModule = _chunkN4YZ45SKjs.RoleModule; exports.RoleService = _chunkN4YZ45SKjs.RoleService; exports.S3 = _chunkN4YZ45SKjs.S3; exports.S3Module = _chunkN4YZ45SKjs.S3Module; exports.S3Service = _chunkN4YZ45SKjs.S3Service; exports.StripeCustomer = _chunkN4YZ45SKjs.StripeCustomer; exports.StripeCustomerModule = _chunkN4YZ45SKjs.StripeCustomerModule; exports.StripeCustomerService = _chunkN4YZ45SKjs.StripeCustomerService; exports.StripeInvoice = _chunkN4YZ45SKjs.StripeInvoice; exports.StripeInvoiceModule = _chunkN4YZ45SKjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkN4YZ45SKjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkN4YZ45SKjs.StripePaymentMethodModule; exports.StripePrice = _chunkN4YZ45SKjs.StripePrice; exports.StripePriceModule = _chunkN4YZ45SKjs.StripePriceModule; exports.StripePriceService = _chunkN4YZ45SKjs.StripePriceService; exports.StripeProduct = _chunkN4YZ45SKjs.StripeProduct; exports.StripeProductModule = _chunkN4YZ45SKjs.StripeProductModule; exports.StripeProductService = _chunkN4YZ45SKjs.StripeProductService; exports.StripePromotionCode = _chunkN4YZ45SKjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkN4YZ45SKjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkN4YZ45SKjs.StripePromotionCodeService; exports.StripeSubscription = _chunkN4YZ45SKjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkN4YZ45SKjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkN4YZ45SKjs.StripeSubscriptionService; exports.StripeUsage = _chunkN4YZ45SKjs.StripeUsage; exports.StripeUsageModule = _chunkN4YZ45SKjs.StripeUsageModule; exports.StripeUsageService = _chunkN4YZ45SKjs.StripeUsageService; exports.SubscriptionStatus = _chunkN4YZ45SKjs.SubscriptionStatus; exports.TableOptions = _chunkN4YZ45SKjs.TableOptions; exports.TotpAuthenticator = _chunkN4YZ45SKjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkN4YZ45SKjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkN4YZ45SKjs.TotpSetup; exports.TotpSetupModule = _chunkN4YZ45SKjs.TotpSetupModule; exports.TotpVerify = _chunkN4YZ45SKjs.TotpVerify; exports.TotpVerifyLogin = _chunkN4YZ45SKjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkN4YZ45SKjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkN4YZ45SKjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkN4YZ45SKjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkN4YZ45SKjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkN4YZ45SKjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkN4YZ45SKjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkN4YZ45SKjs.TwoFactorService; exports.TwoFactorStatus = _chunkN4YZ45SKjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkN4YZ45SKjs.TwoFactorStatusModule; exports.User = _chunkN4YZ45SKjs.User; exports.UserFields = _chunkN4YZ45SKjs.UserFields; exports.UserModule = _chunkN4YZ45SKjs.UserModule; exports.UserService = _chunkN4YZ45SKjs.UserService; exports.Waitlist = _chunkN4YZ45SKjs.Waitlist; exports.WaitlistModule = _chunkN4YZ45SKjs.WaitlistModule; exports.WaitlistService = _chunkN4YZ45SKjs.WaitlistService; exports.WaitlistStats = _chunkN4YZ45SKjs.WaitlistStats; exports.WaitlistStatsModule = _chunkN4YZ45SKjs.WaitlistStatsModule; exports.checkPermissions = _chunkN4YZ45SKjs.checkPermissions; exports.checkPermissionsFromServer = _chunkN4YZ45SKjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkN4YZ45SKjs.clearLastApiTotal; exports.cn = _chunkN4YZ45SKjs.cn; exports.composeRefs = _chunkN4YZ45SKjs.composeRefs; exports.configureAuth = _chunkN4YZ45SKjs.configureAuth; exports.configureI18n = _chunk2AK4GRIBjs.configureI18n; exports.configureJsonApi = _chunk2AK4GRIBjs.configureJsonApi; exports.configureLogin = _chunk2AK4GRIBjs.configureLogin; exports.configureReferral = _chunk2AK4GRIBjs.configureReferral; exports.configureRoles = _chunk2AK4GRIBjs.configureRoles; exports.configureWaitlist = _chunk2AK4GRIBjs.configureWaitlist; exports.createJsonApiInclusion = _chunkN4YZ45SKjs.createJsonApiInclusion; exports.dismissToast = _chunkN4YZ45SKjs.dismissToast; exports.entityObjectSchema = _chunkN4YZ45SKjs.entityObjectSchema; exports.exists = _chunkN4YZ45SKjs.exists; exports.formatDate = _chunkN4YZ45SKjs.formatDate; exports.getApiUrl = _chunk2AK4GRIBjs.getApiUrl; exports.getAppUrl = _chunk2AK4GRIBjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkN4YZ45SKjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkN4YZ45SKjs.getGlobalErrorHandler; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.getLastApiTotal = _chunkN4YZ45SKjs.getLastApiTotal; exports.getLucideIcon = _chunkN4YZ45SKjs.getLucideIcon; exports.getLucideIconByModule = _chunkN4YZ45SKjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkN4YZ45SKjs.getLucideIconByModuleName; exports.getPublicApiUrl = _chunk2AK4GRIBjs.getPublicApiUrl; exports.getReferralConfig = _chunk2AK4GRIBjs.getReferralConfig; exports.getRoleId = _chunk2AK4GRIBjs.getRoleId; exports.getStripePublishableKey = _chunk2AK4GRIBjs.getStripePublishableKey; exports.getTableComponents = _chunkN4YZ45SKjs.getTableComponents; exports.getTableOptions = _chunkN4YZ45SKjs.getTableOptions; exports.getTokenHandler = _chunkN4YZ45SKjs.getTokenHandler; exports.getTrackablePages = _chunk2AK4GRIBjs.getTrackablePages; exports.getValueFromPath = _chunkN4YZ45SKjs.getValueFromPath; exports.getWaitlistConfig = _chunk2AK4GRIBjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunk2AK4GRIBjs.isReferralEnabled; exports.isRolesConfigured = _chunk2AK4GRIBjs.isRolesConfigured; exports.rehydrate = _chunkN4YZ45SKjs.rehydrate; exports.rehydrateList = _chunkN4YZ45SKjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkN4YZ45SKjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkN4YZ45SKjs.setGlobalErrorHandler; exports.showCustomToast = _chunkN4YZ45SKjs.showCustomToast; exports.showError = _chunkN4YZ45SKjs.showError; exports.showToast = _chunkN4YZ45SKjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkN4YZ45SKjs.useComposedRefs; exports.useIsMobile = _chunkN4YZ45SKjs.useIsMobile; exports.userObjectSchema = _chunkN4YZ45SKjs.userObjectSchema;
423
425
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,+oYAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"}
1
+ {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,2sYAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"}
package/dist/index.mjs CHANGED
@@ -10,6 +10,7 @@ import {
10
10
  configureWaitlist,
11
11
  getApiUrl,
12
12
  getAppUrl,
13
+ getPublicApiUrl,
13
14
  getReferralConfig,
14
15
  getRoleId,
15
16
  getStripePublishableKey,
@@ -17,7 +18,7 @@ import {
17
18
  getWaitlistConfig,
18
19
  isReferralEnabled,
19
20
  isRolesConfigured
20
- } from "./chunk-PV5V6CVW.mjs";
21
+ } from "./chunk-NEJ7CDM3.mjs";
21
22
  import {
22
23
  AVAILABLE_OAUTH_SCOPES,
23
24
  AbstractApiData,
@@ -392,6 +393,7 @@ export {
392
393
  getLucideIcon,
393
394
  getLucideIconByModule,
394
395
  getLucideIconByModuleName,
396
+ getPublicApiUrl,
395
397
  getReferralConfig,
396
398
  getRoleId,
397
399
  getStripePublishableKey,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlonicora/nextjs-jsonapi",
3
- "version": "1.85.0",
3
+ "version": "1.86.0",
4
4
  "description": "Next.js JSON:API client with server/client support and caching",
5
5
  "author": "Carlo Nicora",
6
6
  "license": "GPL-3.0-or-later",
@@ -47,6 +47,11 @@ export function configureClientConfig(config: {
47
47
 
48
48
  /**
49
49
  * Get the configured API URL.
50
+ *
51
+ * This may resolve to an internal/private host (e.g. a docker-network
52
+ * hostname) when configured to do so for SSR fetches. Do NOT use this for
53
+ * URLs that are rendered into HTML and followed by the browser — use
54
+ * `getPublicApiUrl()` instead.
50
55
  */
51
56
  export function getApiUrl(): string {
52
57
  if (_clientConfig?.apiUrl) {
@@ -58,6 +63,21 @@ export function getApiUrl(): string {
58
63
  return "";
59
64
  }
60
65
 
66
+ /**
67
+ * Get the public-facing API URL.
68
+ *
69
+ * Always sourced from `NEXT_PUBLIC_API_URL` so it is identical on server
70
+ * and client, and reachable from the user's browser. Use for any URL that
71
+ * gets rendered into HTML the browser will navigate to (links, redirects,
72
+ * OAuth hrefs).
73
+ */
74
+ export function getPublicApiUrl(): string {
75
+ if (typeof process !== "undefined" && process.env?.NEXT_PUBLIC_API_URL) {
76
+ return process.env.NEXT_PUBLIC_API_URL;
77
+ }
78
+ return "";
79
+ }
80
+
61
81
  /**
62
82
  * Get the configured app URL.
63
83
  */