@donotdev/core 0.0.18 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -2182,82 +2182,6 @@ interface DndevFrameworkConfig {
2182
2182
  /** Environment variables (VITE_* variables from .env files) */
2183
2183
  env?: Record<string, string>;
2184
2184
  }
2185
- declare global {
2186
- interface Window {
2187
- /**
2188
- * Single source of truth for all DoNotDev framework configuration
2189
- * @description Set by platform detection and populated by discovery plugins
2190
- */
2191
- _DNDEV_CONFIG_?: DndevFrameworkConfig;
2192
- /**
2193
- * Global store registry for singleton Zustand stores
2194
- * @description Ensures single instance across code-split chunks
2195
- */
2196
- _DNDEV_STORES_?: Record<string, any>;
2197
- /** PapaParse CSV parser library (external) */
2198
- Papa?: {
2199
- parse: (input: string | File, config?: any) => any;
2200
- unparse: (data: any[], config?: any) => string;
2201
- };
2202
- /** Sentry error tracking library (external) */
2203
- Sentry?: {
2204
- captureException: (error: unknown) => void;
2205
- withScope: (callback: (scope: any) => void) => void;
2206
- getClient: () => {
2207
- close: () => Promise<boolean>;
2208
- } | undefined;
2209
- };
2210
- /**
2211
- * Google APIs (Maps, One Tap, etc.)
2212
- * @description Unified type for all Google services
2213
- */
2214
- google?: {
2215
- /** Google Maps API */
2216
- maps?: {
2217
- places?: {
2218
- AutocompleteService: new () => any;
2219
- PlacesService: new (element: HTMLElement) => any;
2220
- PlacesServiceStatus: {
2221
- OK: string;
2222
- };
2223
- };
2224
- [key: string]: any;
2225
- };
2226
- /** Google Identity Services (One Tap) */
2227
- accounts?: {
2228
- id?: {
2229
- initialize: (config: any) => void;
2230
- prompt: (callback?: (notification: any) => void) => void;
2231
- cancel?: () => void;
2232
- disableAutoSelect?: () => void;
2233
- };
2234
- };
2235
- [key: string]: any;
2236
- };
2237
- /** FedCM Identity Credential API */
2238
- IdentityCredential?: any;
2239
- }
2240
- namespace NodeJS {
2241
- interface ProcessEnv {
2242
- /** Serialized framework config for Node.js environment */
2243
- _DNDEV_CONFIG_?: string;
2244
- }
2245
- }
2246
- namespace globalThis {
2247
- /** Framework configuration (same as window._DNDEV_CONFIG_) */
2248
- var _DNDEV_CONFIG_: DndevFrameworkConfig | undefined;
2249
- /** Store registry (same as window._DNDEV_STORES_) */
2250
- var _DNDEV_STORES_: Record<string, any> | undefined;
2251
- var __vite_plugin_react_preamble_installed__: boolean | undefined;
2252
- var __vite_hmr_port: number | undefined;
2253
- var __NEXT_DATA__: any | undefined;
2254
- var __REACT_QUERY_CLIENT__: any | undefined;
2255
- var __REACT_QUERY_PROVIDER__: any | undefined;
2256
- var __DNDEV_DEBUG: boolean | undefined;
2257
- var __FIREBASE_DEMO_MODE__: boolean | undefined;
2258
- var getAvailableThemes: (() => string[]) | undefined;
2259
- }
2260
- }
2261
2185
 
2262
2186
  /**
2263
2187
  * @fileoverview Billing Constants
@@ -4705,7 +4629,7 @@ declare const DEFAULT_ENTITY_ACCESS: {
4705
4629
  * @since 0.0.1
4706
4630
  * @author AMBROISE PARK Consulting
4707
4631
  */
4708
- declare const FIELD_TYPES: readonly ["address", "array", "avatar", "badge", "boolean", "checkbox", "color", "combobox", "date", "datetime-local", "document", "documents", "email", "file", "files", "gdprConsent", "geopoint", "hidden", "image", "images", "map", "month", "multiselect", "number", "password", "radio", "reference", "range", "reset", "richtext", "select", "submit", "switch", "tel", "text", "textarea", "time", "timestamp", "toggle", "url", "week", "year"];
4632
+ declare const FIELD_TYPES: readonly ["address", "array", "avatar", "badge", "boolean", "checkbox", "color", "combobox", "date", "datetime-local", "document", "documents", "email", "file", "files", "gdprConsent", "geopoint", "hidden", "image", "images", "map", "month", "multiselect", "number", "currency", "price", "password", "radio", "reference", "range", "rating", "reset", "richtext", "select", "submit", "switch", "tel", "text", "textarea", "time", "timestamp", "url", "week", "year"];
4709
4633
 
4710
4634
  /**
4711
4635
  * @fileoverview Schema-Related Type Definitions
@@ -4955,6 +4879,12 @@ type FieldTypeToValue = {
4955
4879
  month: string;
4956
4880
  multiselect: string[];
4957
4881
  number: number;
4882
+ price: {
4883
+ amount: number;
4884
+ currency?: string;
4885
+ vatIncluded?: boolean;
4886
+ discountPercent?: number;
4887
+ };
4958
4888
  password: string;
4959
4889
  radio: string;
4960
4890
  reference: string;
@@ -4967,7 +4897,6 @@ type FieldTypeToValue = {
4967
4897
  textarea: string;
4968
4898
  time: string;
4969
4899
  timestamp: string;
4970
- toggle: boolean;
4971
4900
  switch: string | boolean;
4972
4901
  url: string;
4973
4902
  week: string;
@@ -4982,6 +4911,16 @@ type FieldTypeToValue = {
4982
4911
  * @author AMBROISE PARK Consulting
4983
4912
  */
4984
4913
  type ValueTypeForField<T extends FieldType> = T extends keyof FieldTypeToValue ? FieldTypeToValue[T] : never;
4914
+ /**
4915
+ * Any valid field value - includes built-in types plus custom registered types
4916
+ * Uses `unknown` since consumers can register custom field types via RegisterFieldType
4917
+ */
4918
+ type AnyFieldValue = unknown;
4919
+ /**
4920
+ * Entity record type - a record where values are valid field values
4921
+ * Accepts unknown since consumers can register custom field types
4922
+ */
4923
+ type EntityRecord = Record<string, AnyFieldValue>;
4985
4924
  /**
4986
4925
  * Enhanced validation rules with type checking
4987
4926
  * @template T - The field type
@@ -5319,10 +5258,82 @@ interface BaseEntityFields {
5319
5258
  */
5320
5259
  status: EntityField<'select'>;
5321
5260
  }
5261
+ /**
5262
+ * Unique key constraint definition for entity deduplication
5263
+ * Enables automatic checking for duplicates on create/update operations
5264
+ *
5265
+ * @example
5266
+ * ```typescript
5267
+ * // Single field unique key with findOrCreate
5268
+ * uniqueKeys: [{ fields: ['email'], findOrCreate: true }]
5269
+ *
5270
+ * // Composite unique key
5271
+ * uniqueKeys: [{ fields: ['vin', 'make'], skipForDrafts: true }]
5272
+ *
5273
+ * // Multiple keys (OR logic - either can identify)
5274
+ * uniqueKeys: [
5275
+ * { fields: ['email'], findOrCreate: true },
5276
+ * { fields: ['phone'], findOrCreate: true }
5277
+ * ]
5278
+ * ```
5279
+ *
5280
+ * @version 0.0.1
5281
+ * @since 0.0.5
5282
+ * @author AMBROISE PARK Consulting
5283
+ */
5284
+ interface UniqueKeyDefinition {
5285
+ /** Field names that together form the unique key (single or composite) */
5286
+ fields: string[];
5287
+ /** Custom error message when duplicate is found */
5288
+ errorMessage?: string;
5289
+ /** Skip validation for draft documents (default: true) */
5290
+ skipForDrafts?: boolean;
5291
+ /**
5292
+ * Return existing document instead of throwing error on duplicate (default: false)
5293
+ * When true, create operations will return the existing document if a match is found
5294
+ */
5295
+ findOrCreate?: boolean;
5296
+ }
5297
+ /**
5298
+ * Multi-tenancy scope configuration for entities
5299
+ * Enables automatic scoping of data by tenant/company/workspace
5300
+ *
5301
+ * @example
5302
+ * ```typescript
5303
+ * const clientEntity = defineEntity({
5304
+ * name: 'Client',
5305
+ * collection: 'clients',
5306
+ * scope: { field: 'companyId', provider: 'company' },
5307
+ * fields: { ... } // No need to manually define companyId
5308
+ * });
5309
+ * ```
5310
+ *
5311
+ * @version 0.0.4
5312
+ * @since 0.0.4
5313
+ * @author AMBROISE PARK Consulting
5314
+ */
5315
+ interface ScopeConfig {
5316
+ /**
5317
+ * Field name that stores the scope ID (e.g., 'companyId', 'tenantId', 'workspaceId')
5318
+ * This field will be auto-added to the entity with type 'reference'
5319
+ */
5320
+ field: string;
5321
+ /**
5322
+ * Name of the scope provider registered with registerScopeProvider()
5323
+ * The provider function returns the current scope ID from app state
5324
+ * @example 'company', 'tenant', 'workspace'
5325
+ */
5326
+ provider: string;
5327
+ /**
5328
+ * Collection being referenced (optional, defaults to field name without 'Id' suffix + 's')
5329
+ * @example 'companies' for field 'companyId'
5330
+ */
5331
+ collection?: string;
5332
+ }
5322
5333
  /**
5323
5334
  * Definition of a business entity without base fields
5324
5335
  *
5325
- * @version 0.0.3
5336
+ * @version 0.0.4
5326
5337
  * @since 0.0.1
5327
5338
  * @author AMBROISE PARK Consulting
5328
5339
  */
@@ -5337,6 +5348,16 @@ interface BusinessEntity {
5337
5348
  * @default `entity-${name.toLowerCase()}`
5338
5349
  */
5339
5350
  namespace?: string;
5351
+ /**
5352
+ * Multi-tenancy scope configuration (optional)
5353
+ * When set, the scope field is auto-added and CRUD operations auto-inject/filter by scope
5354
+ *
5355
+ * @example
5356
+ * ```typescript
5357
+ * scope: { field: 'companyId', provider: 'company' }
5358
+ * ```
5359
+ */
5360
+ scope?: ScopeConfig;
5340
5361
  /** Field definitions - name and label are required */
5341
5362
  fields: Record<string, EntityField>;
5342
5363
  /** Form configuration for advanced forms */
@@ -5384,12 +5405,39 @@ interface BusinessEntity {
5384
5405
  * ```
5385
5406
  */
5386
5407
  access?: EntityAccessConfig;
5408
+ /**
5409
+ * Unique key constraints for deduplication
5410
+ * Checked during create/update operations
5411
+ *
5412
+ * - Single field: `[{ fields: ['email'] }]`
5413
+ * - Composite: `[{ fields: ['vin', 'make'] }]`
5414
+ * - Multiple keys (OR): `[{ fields: ['email'] }, { fields: ['phone'] }]`
5415
+ *
5416
+ * @example
5417
+ * ```typescript
5418
+ * // Customer: email OR phone identifies (findOrCreate behavior)
5419
+ * uniqueKeys: [
5420
+ * { fields: ['email'], findOrCreate: true },
5421
+ * { fields: ['phone'], findOrCreate: true }
5422
+ * ]
5423
+ *
5424
+ * // Car: VIN is unique, skip for drafts
5425
+ * uniqueKeys: [{ fields: ['vin'], skipForDrafts: true }]
5426
+ * ```
5427
+ */
5428
+ uniqueKeys?: UniqueKeyDefinition[];
5387
5429
  }
5388
5430
  /**
5389
5431
  * Complete entity definition including base fields
5390
5432
  * Created by defineEntity() which merges defaults
5391
5433
  *
5392
- * @version 0.0.2
5434
+ * Extends BusinessEntity but overrides optional properties to required:
5435
+ * - namespace: always computed (defaults to `entity-${name.toLowerCase()}`)
5436
+ * - access: always merged with defaults
5437
+ * - fields: includes base fields (id, createdAt, etc.)
5438
+ * - scope: preserved if provided (for multi-tenancy)
5439
+ *
5440
+ * @version 0.0.4
5393
5441
  * @since 0.0.1
5394
5442
  * @author AMBROISE PARK Consulting
5395
5443
  */
@@ -5400,6 +5448,8 @@ interface Entity extends BusinessEntity {
5400
5448
  access: Required<EntityAccessConfig>;
5401
5449
  /** i18n namespace for translations (always present after defineEntity, defaults to `entity-${name.toLowerCase()}`) */
5402
5450
  namespace: string;
5451
+ /** Multi-tenancy scope configuration (preserved from BusinessEntity if provided) */
5452
+ scope?: ScopeConfig;
5403
5453
  }
5404
5454
  /**
5405
5455
  * Unified metadata structure for all schemas (CRUD, Functions, etc.)
@@ -5421,6 +5471,11 @@ interface SchemaMetadata {
5421
5471
  field: string;
5422
5472
  errorMessage?: string;
5423
5473
  }>;
5474
+ /**
5475
+ * Unique key constraints from entity definition
5476
+ * Used by backend CRUD functions for deduplication
5477
+ */
5478
+ uniqueKeys?: UniqueKeyDefinition[];
5424
5479
  /** Custom validation function (for function validation) */
5425
5480
  customValidate?: (data: Record<string, any>, operation: 'create' | 'update') => Promise<void>;
5426
5481
  }
@@ -5623,6 +5678,178 @@ interface ListEntitiesResponse {
5623
5678
  hasMore: boolean;
5624
5679
  }
5625
5680
 
5681
+ /**
5682
+ * @fileoverview CRUD Component Props Types
5683
+ * @description Shared prop types for CRUD components used across UI, Templates, and CRUD packages
5684
+ *
5685
+ * @version 0.0.1
5686
+ * @since 0.0.1
5687
+ * @author AMBROISE PARK Consulting
5688
+ */
5689
+
5690
+ interface EntityListProps {
5691
+ /** The entity definition */
5692
+ entity: Entity;
5693
+ /** Current user role (for UI toggle only - backend enforces security) */
5694
+ userRole?: string;
5695
+ /**
5696
+ * Base path for view/edit/create. Default: `/${collection}`.
5697
+ * View/Edit = `${basePath}/${id}`, Create = `${basePath}/new`.
5698
+ */
5699
+ basePath?: string;
5700
+ /**
5701
+ * Called when user clicks a row. If provided, overrides default navigation to basePath/:id (e.g. open sheet).
5702
+ */
5703
+ onClick?: (id: string) => void;
5704
+ /** Hide filters section (default: false) */
5705
+ hideFilters?: boolean;
5706
+ /** Pagination mode: 'client' (default) or 'server' for massive datasets */
5707
+ pagination?: 'client' | 'server';
5708
+ /** Page size - passed to DataTable. If not provided, DataTable uses its default (12) */
5709
+ pageSize?: number;
5710
+ /** Optional query constraints (e.g. where companyId == currentCompanyId) passed to useCrudList */
5711
+ queryOptions?: {
5712
+ where?: Array<{
5713
+ field: string;
5714
+ operator: string;
5715
+ value: unknown;
5716
+ }>;
5717
+ orderBy?: Array<{
5718
+ field: string;
5719
+ direction?: 'asc' | 'desc';
5720
+ }>;
5721
+ limit?: number;
5722
+ startAfterId?: string;
5723
+ };
5724
+ }
5725
+ interface EntityCardListProps {
5726
+ /** The entity definition */
5727
+ entity: Entity;
5728
+ /**
5729
+ * Base path for view. Default: `/${collection}`. View = `${basePath}/${id}`.
5730
+ */
5731
+ basePath?: string;
5732
+ /**
5733
+ * Called when user clicks a card. If provided, overrides default navigation to basePath/:id (e.g. open sheet).
5734
+ */
5735
+ onClick?: (id: string) => void;
5736
+ /** Grid columns (responsive) - defaults to [1, 2, 3, 4] */
5737
+ cols?: number | [number, number, number, number];
5738
+ /** Cache stale time is ms - defaults to 30 mins */
5739
+ staleTime?: number;
5740
+ /** Optional filter function to filter items client-side */
5741
+ filter?: (item: any) => boolean;
5742
+ /** Hide filters section (default: false) */
5743
+ hideFilters?: boolean;
5744
+ }
5745
+ interface EntityFormRendererProps<T extends EntityRecord = EntityRecord> {
5746
+ /** Entity definition - pass the full entity from defineEntity() */
5747
+ entity: Entity;
5748
+ /** Form submission handler */
5749
+ onSubmit: (data: T) => void | Promise<void>;
5750
+ /** Translation function */
5751
+ t?: (key: string, options?: Record<string, unknown>) => string;
5752
+ /** Additional CSS classes */
5753
+ className?: string;
5754
+ /** Submit button text */
5755
+ submitText?: string;
5756
+ /**
5757
+ * Whether form data is loading (shows loading overlay)
5758
+ * Use this when fetching existing entity data for edit mode
5759
+ */
5760
+ loading?: boolean;
5761
+ /** Initial form values */
5762
+ defaultValues?: Partial<T>;
5763
+ /** Submit button variant */
5764
+ submitVariant?: 'primary' | 'destructive' | 'outline' | 'ghost' | 'link';
5765
+ /** Secondary button text */
5766
+ secondaryButtonText?: string;
5767
+ /** Secondary button variant */
5768
+ secondaryButtonVariant?: 'primary' | 'destructive' | 'outline' | 'ghost' | 'link';
5769
+ /** Secondary button submission handler */
5770
+ onSecondarySubmit?: (data: T) => void | Promise<void>;
5771
+ /**
5772
+ * Current viewer's role for editability checks
5773
+ * @default 'admin'
5774
+ */
5775
+ viewerRole?: 'public' | 'guest' | 'user' | 'admin' | 'super';
5776
+ /**
5777
+ * Form operation type
5778
+ * @default 'create' (or 'edit' if defaultValues provided)
5779
+ */
5780
+ operation?: 'create' | 'edit';
5781
+ /**
5782
+ * Enable auto-save to localStorage for crash recovery.
5783
+ * @default true for create mode
5784
+ */
5785
+ autoSave?: boolean;
5786
+ /**
5787
+ * Optional form ID for tracking loading state.
5788
+ * If not provided, one will be generated automatically.
5789
+ */
5790
+ formId?: string;
5791
+ /**
5792
+ * Cancel button text. If provided, shows a cancel button.
5793
+ * If not provided but onCancel is provided, shows default "Cancel" text.
5794
+ * Set to null to explicitly hide cancel button.
5795
+ */
5796
+ cancelText?: string | null;
5797
+ /**
5798
+ * Success path - full path to navigate after successful submit (e.g., `/products`).
5799
+ * If not provided, navigates back (optimistic - user came from list, go back there).
5800
+ */
5801
+ successPath?: string;
5802
+ /**
5803
+ * Cancel path - full path (e.g., `/products`). If not provided, navigates back.
5804
+ * If onCancel callback is provided, it takes precedence over cancelPath.
5805
+ */
5806
+ cancelPath?: string;
5807
+ /**
5808
+ * Callback when cancel is clicked (after confirmation if dirty).
5809
+ * If not provided, cancel navigates to cancelPath or `/${collection}`.
5810
+ * If provided, cancel button will show (with cancelText or default "Cancel").
5811
+ */
5812
+ onCancel?: () => void;
5813
+ /**
5814
+ * Whether to show unsaved changes warning when navigating away.
5815
+ * @default true
5816
+ */
5817
+ warnOnUnsavedChanges?: boolean;
5818
+ /**
5819
+ * Custom message for unsaved changes confirmation.
5820
+ */
5821
+ unsavedChangesMessage?: string;
5822
+ /**
5823
+ * Hide visibility indicators (badges + View As toggle).
5824
+ * When false (default), shows badge next to non-guest fields and View As role selector.
5825
+ * @default false
5826
+ */
5827
+ hideVisibilityInfo?: boolean;
5828
+ }
5829
+ interface EntityDisplayRendererProps<T extends EntityRecord = EntityRecord> {
5830
+ /** Entity definition - pass the full entity from defineEntity() */
5831
+ entity: Entity;
5832
+ /** Entity ID to fetch */
5833
+ id: string;
5834
+ /** Translation function (optional - auto-generated if not provided) */
5835
+ t?: (key: string, options?: Record<string, unknown>) => string;
5836
+ /** Additional CSS classes */
5837
+ className?: string;
5838
+ /** Backend to use */
5839
+ backend?: 'firestore' | 'functions';
5840
+ /** Custom loading message */
5841
+ loadingMessage?: string;
5842
+ /** Custom not found message */
5843
+ notFoundMessage?: string;
5844
+ /**
5845
+ * Current viewer's role for visibility checks
5846
+ * Used to determine which fields should be visible based on their visibility setting
5847
+ * If not provided, defaults to 'guest' (most restrictive - shows only public fields)
5848
+ * @default 'guest'
5849
+ */
5850
+ viewerRole?: UserRole;
5851
+ }
5852
+
5626
5853
  type FieldValues = Record<string, any>;
5627
5854
 
5628
5855
  /**
@@ -5660,13 +5887,21 @@ interface CrudAPI<T = unknown> {
5660
5887
  /** Fetch single document by ID */
5661
5888
  get: (id: string) => Promise<T | null>;
5662
5889
  /** Set/replace document by ID */
5663
- set: (id: string, data: T) => Promise<void>;
5890
+ set: (id: string, data: T, options?: {
5891
+ showSuccessToast?: boolean;
5892
+ }) => Promise<void>;
5664
5893
  /** Partial update document by ID */
5665
- update: (id: string, data: Partial<T>) => Promise<void>;
5894
+ update: (id: string, data: Partial<T>, options?: {
5895
+ showSuccessToast?: boolean;
5896
+ }) => Promise<void>;
5666
5897
  /** Delete document by ID */
5667
- delete: (id: string) => Promise<void>;
5898
+ delete: (id: string, options?: {
5899
+ showSuccessToast?: boolean;
5900
+ }) => Promise<void>;
5668
5901
  /** Add new document (auto-generated ID) */
5669
- add: (data: T) => Promise<string>;
5902
+ add: (data: T, options?: {
5903
+ showSuccessToast?: boolean;
5904
+ }) => Promise<string>;
5670
5905
  /** Query collection with filters */
5671
5906
  query: (options: any) => Promise<T[]>;
5672
5907
  /** Subscribe to document changes */
@@ -8187,6 +8422,26 @@ type KeyWithContext<Key, TOpt extends TOptions> = TOpt['context'] extends string
8187
8422
  ? `${Key & string}${_ContextSeparator}${TOpt['context']}`
8188
8423
  : Key;
8189
8424
 
8425
+ // helper that maps the configured fallbackNS value to the matching resources slice
8426
+ type FallbackResourcesOf<FallbackNS, R> = FallbackNS extends readonly (infer FN)[]
8427
+ ? R[FN & keyof R]
8428
+ : [FallbackNS] extends [false]
8429
+ ? never
8430
+ : R[Extract<FallbackNS, keyof R> & keyof R];
8431
+
8432
+ /* reuse the parse helpers as top-level aliases (no nested type declarations) */
8433
+ type _PrimaryParse<
8434
+ ActualKey,
8435
+ PrimaryNS extends keyof Resources,
8436
+ TOpt extends TOptions,
8437
+ > = ParseTReturn<ActualKey, Resources[PrimaryNS], TOpt>;
8438
+
8439
+ type _FallbackParse<ActualKey, FallbackNS, TOpt extends TOptions> = [
8440
+ FallbackResourcesOf<FallbackNS, Resources>,
8441
+ ] extends [never]
8442
+ ? never
8443
+ : ParseTReturn<ActualKey, FallbackResourcesOf<FallbackNS, Resources>, TOpt>;
8444
+
8190
8445
  type TFunctionReturn<
8191
8446
  Ns extends Namespace,
8192
8447
  Key,
@@ -8196,7 +8451,15 @@ type TFunctionReturn<
8196
8451
  > = $IsResourcesDefined extends true
8197
8452
  ? ActualKey extends `${infer Nsp}${_NsSeparator}${infer RestKey}`
8198
8453
  ? ParseTReturn<RestKey, Resources[Nsp & keyof Resources], TOpt>
8199
- : ParseTReturn<ActualKey, Resources[$FirstNamespace<ActualNS>], TOpt>
8454
+ : $FirstNamespace<ActualNS> extends infer PrimaryNS
8455
+ ? [PrimaryNS] extends [keyof Resources]
8456
+ ? [_PrimaryParse<ActualKey, PrimaryNS & keyof Resources, TOpt>] extends [never]
8457
+ ? [_FallbackParse<ActualKey, _FallbackNamespace, TOpt>] extends [never]
8458
+ ? DefaultTReturn<TOpt>
8459
+ : _FallbackParse<ActualKey, _FallbackNamespace, TOpt>
8460
+ : _PrimaryParse<ActualKey, PrimaryNS & keyof Resources, TOpt>
8461
+ : never
8462
+ : never
8200
8463
  : DefaultTReturn<TOpt>;
8201
8464
 
8202
8465
  type TFunctionDetailedResult<T = string, TOpt extends TOptions = {}> = {
@@ -8299,17 +8562,24 @@ type KeyPrefix<Ns extends Namespace> = ResourceKeys<true>[$FirstNamespace<Ns>] |
8299
8562
  /// ↆ selector ↆ ///
8300
8563
  /// ////////////// ///
8301
8564
 
8565
+ type NsArg<Ns extends Namespace> = Ns[number] | readonly Ns[number][];
8566
+
8302
8567
  interface TFunctionSelector<Ns extends Namespace, KPrefix, Source> extends Branded<Ns> {
8303
8568
  <
8304
8569
  Target extends ConstrainTarget<Opts>,
8570
+ const NewNs extends NsArg<Ns> & Namespace,
8305
8571
  const Opts extends SelectorOptions<NewNs>,
8306
- NewNs extends Namespace,
8307
8572
  NewSrc extends GetSource<NewNs, KPrefix>,
8308
8573
  >(
8309
8574
  selector: SelectorFn<NewSrc, ApplyTarget<Target, Opts>, Opts>,
8310
8575
  options: Opts & InterpolationMap<Target> & { ns: NewNs },
8311
8576
  ): SelectorReturn<Target, Opts>;
8312
- <Target extends ConstrainTarget<Opts>, const Opts extends SelectorOptions<Ns>>(
8577
+
8578
+ <
8579
+ Target extends ConstrainTarget<Opts>,
8580
+ const NewNs extends NsArg<Ns> = Ns[number],
8581
+ const Opts extends SelectorOptions<NewNs> = SelectorOptions<NewNs>,
8582
+ >(
8313
8583
  selector: SelectorFn<Source, ApplyTarget<Target, Opts>, Opts>,
8314
8584
  options?: Opts & InterpolationMap<Target>,
8315
8585
  ): SelectorReturn<Target, Opts>;
@@ -9515,8 +9785,6 @@ interface AppMetadata {
9515
9785
  name?: string;
9516
9786
  /** Short application name for mobile/compact displays (defaults to name if not set) */
9517
9787
  shortName?: string;
9518
- /** Application URL (base URL for production, defaults to localhost in development) */
9519
- url?: string;
9520
9788
  /** Application description */
9521
9789
  description?: string;
9522
9790
  /** Social and external links */
@@ -9657,7 +9925,7 @@ interface AuthConfig {
9657
9925
  interface SEOConfig {
9658
9926
  /** Enable automatic SEO (default: true) */
9659
9927
  enabled?: boolean;
9660
- /** Base URL for SEO files (robots.txt, sitemap.xml) - defaults to appConfig.app.url (set at build time) */
9928
+ /** Base URL for SEO files (robots.txt, sitemap.xml) - reads from VITE_APP_URL/NEXT_PUBLIC_APP_URL env var */
9661
9929
  baseUrl?: string;
9662
9930
  /** Site name for SEO - defaults to APP_NAME from app.ts */
9663
9931
  siteName?: string;
@@ -12033,6 +12301,7 @@ type index_d$5_AggregateFilterOperator = AggregateFilterOperator;
12033
12301
  type index_d$5_AggregateOperation = AggregateOperation;
12034
12302
  type index_d$5_AggregateRequest = AggregateRequest;
12035
12303
  type index_d$5_AggregateResponse = AggregateResponse;
12304
+ type index_d$5_AnyFieldValue = AnyFieldValue;
12036
12305
  type index_d$5_ApiResponse<T> = ApiResponse<T>;
12037
12306
  type index_d$5_AppConfig = AppConfig;
12038
12307
  type index_d$5_AppCookieCategories = AppCookieCategories;
@@ -12149,11 +12418,16 @@ type index_d$5_EmailVerificationStatus = EmailVerificationStatus;
12149
12418
  type index_d$5_Entity = Entity;
12150
12419
  type index_d$5_EntityAccessConfig = EntityAccessConfig;
12151
12420
  type index_d$5_EntityAccessDefaults = EntityAccessDefaults;
12421
+ type index_d$5_EntityCardListProps = EntityCardListProps;
12422
+ type index_d$5_EntityDisplayRendererProps<T extends EntityRecord = EntityRecord> = EntityDisplayRendererProps<T>;
12152
12423
  type index_d$5_EntityField<T extends FieldType = FieldType> = EntityField<T>;
12424
+ type index_d$5_EntityFormRendererProps<T extends EntityRecord = EntityRecord> = EntityFormRendererProps<T>;
12153
12425
  type index_d$5_EntityHookError = EntityHookError;
12154
12426
  declare const index_d$5_EntityHookError: typeof EntityHookError;
12155
12427
  type index_d$5_EntityHookErrors = EntityHookErrors;
12428
+ type index_d$5_EntityListProps = EntityListProps;
12156
12429
  type index_d$5_EntityMetadata = EntityMetadata;
12430
+ type index_d$5_EntityRecord = EntityRecord;
12157
12431
  type index_d$5_EntityTemplateProps<T extends FieldValues> = EntityTemplateProps<T>;
12158
12432
  type index_d$5_EntityTranslations = EntityTranslations;
12159
12433
  type index_d$5_EnvironmentMode = EnvironmentMode;
@@ -12364,6 +12638,7 @@ declare const index_d$5_SUBSCRIPTION_DURATIONS: typeof SUBSCRIPTION_DURATIONS;
12364
12638
  declare const index_d$5_SUBSCRIPTION_STATUS: typeof SUBSCRIPTION_STATUS;
12365
12639
  declare const index_d$5_SUBSCRIPTION_TIERS: typeof SUBSCRIPTION_TIERS;
12366
12640
  type index_d$5_SchemaMetadata = SchemaMetadata;
12641
+ type index_d$5_ScopeConfig = ScopeConfig;
12367
12642
  type index_d$5_SetCustomClaimsResponse = SetCustomClaimsResponse;
12368
12643
  type index_d$5_SidebarZoneConfig = SidebarZoneConfig;
12369
12644
  type index_d$5_SlotContent = SlotContent;
@@ -12428,6 +12703,7 @@ type index_d$5_TranslationResource = TranslationResource;
12428
12703
  type index_d$5_UIFieldOptions<T extends FieldType = FieldType> = UIFieldOptions<T>;
12429
12704
  declare const index_d$5_USER_ROLES: typeof USER_ROLES;
12430
12705
  type index_d$5_UniqueConstraintValidator = UniqueConstraintValidator;
12706
+ type index_d$5_UniqueKeyDefinition = UniqueKeyDefinition;
12431
12707
  type index_d$5_UnsubscribeFn = UnsubscribeFn;
12432
12708
  type index_d$5_UpdateEntityData<T extends Record<string, any>> = UpdateEntityData<T>;
12433
12709
  type index_d$5_UpdateEntityRequest = UpdateEntityRequest;
@@ -12495,7 +12771,7 @@ declare const index_d$5_validateUserSubscription: typeof validateUserSubscriptio
12495
12771
  declare const index_d$5_validateWebhookEvent: typeof validateWebhookEvent;
12496
12772
  declare namespace index_d$5 {
12497
12773
  export { index_d$5_AUTH_EVENTS as AUTH_EVENTS, index_d$5_AUTH_PARTNERS as AUTH_PARTNERS, index_d$5_AUTH_PARTNER_STATE as AUTH_PARTNER_STATE, index_d$5_AuthUserSchema as AuthUserSchema, index_d$5_BILLING_EVENTS as BILLING_EVENTS, index_d$5_BREAKPOINT_RANGES as BREAKPOINT_RANGES, index_d$5_BREAKPOINT_THRESHOLDS as BREAKPOINT_THRESHOLDS, index_d$5_COMMON_TIER_CONFIGS as COMMON_TIER_CONFIGS, index_d$5_CONFIDENCE_LEVELS as CONFIDENCE_LEVELS, index_d$5_CONSENT_CATEGORY as CONSENT_CATEGORY, index_d$5_CONTEXTS as CONTEXTS, index_d$5_CheckoutSessionMetadataSchema as CheckoutSessionMetadataSchema, index_d$5_CreateCheckoutSessionRequestSchema as CreateCheckoutSessionRequestSchema, index_d$5_CreateCheckoutSessionResponseSchema as CreateCheckoutSessionResponseSchema, index_d$5_CustomClaimsSchema as CustomClaimsSchema, index_d$5_DEFAULT_ENTITY_ACCESS as DEFAULT_ENTITY_ACCESS, index_d$5_DEFAULT_LAYOUT_PRESET as DEFAULT_LAYOUT_PRESET, index_d$5_DEFAULT_SUBSCRIPTION as DEFAULT_SUBSCRIPTION, index_d$5_DENSITY as DENSITY, index_d$5_DoNotDevError as DoNotDevError, index_d$5_ENVIRONMENTS as ENVIRONMENTS, index_d$5_EntityHookError as EntityHookError, index_d$5_FEATURES as FEATURES, index_d$5_FEATURE_CONSENT_MATRIX as FEATURE_CONSENT_MATRIX, index_d$5_FEATURE_STATUS as FEATURE_STATUS, index_d$5_FIREBASE_ERROR_MAP as FIREBASE_ERROR_MAP, index_d$5_FIRESTORE_ID_PATTERN as FIRESTORE_ID_PATTERN, index_d$5_GITHUB_PERMISSION_LEVELS as GITHUB_PERMISSION_LEVELS, index_d$5_LAYOUT_PRESET as LAYOUT_PRESET, index_d$5_OAUTH_EVENTS as OAUTH_EVENTS, index_d$5_OAUTH_PARTNERS as OAUTH_PARTNERS, index_d$5_PARTNER_ICONS as PARTNER_ICONS, index_d$5_PAYLOAD_EVENTS as PAYLOAD_EVENTS, index_d$5_PERMISSIONS as PERMISSIONS, index_d$5_PLATFORMS as PLATFORMS, index_d$5_PWA_ASSET_TYPES as PWA_ASSET_TYPES, index_d$5_PWA_DISPLAY_MODES as PWA_DISPLAY_MODES, index_d$5_ProductDeclarationSchema as ProductDeclarationSchema, index_d$5_ProductDeclarationsSchema as ProductDeclarationsSchema, index_d$5_ROUTE_SOURCES as ROUTE_SOURCES, index_d$5_ReactNode as ReactNode, index_d$5_STORAGE_SCOPES as STORAGE_SCOPES, index_d$5_STORAGE_TYPES as STORAGE_TYPES, index_d$5_STRIPE_EVENTS as STRIPE_EVENTS, index_d$5_STRIPE_MODES as STRIPE_MODES, index_d$5_SUBSCRIPTION_DURATIONS as SUBSCRIPTION_DURATIONS, index_d$5_SUBSCRIPTION_STATUS as SUBSCRIPTION_STATUS, index_d$5_SUBSCRIPTION_TIERS as SUBSCRIPTION_TIERS, index_d$5_StripeBackConfigSchema as StripeBackConfigSchema, index_d$5_StripeFrontConfigSchema as StripeFrontConfigSchema, index_d$5_StripePaymentSchema as StripePaymentSchema, index_d$5_StripeSubscriptionSchema as StripeSubscriptionSchema, index_d$5_SubscriptionClaimsSchema as SubscriptionClaimsSchema, index_d$5_SubscriptionDataSchema as SubscriptionDataSchema, index_d$5_USER_ROLES as USER_ROLES, index_d$5_UserSubscriptionSchema as UserSubscriptionSchema, index_d$5_WebhookEventSchema as WebhookEventSchema, index_d$5_checkGitHubAccessSchema as checkGitHubAccessSchema, index_d$5_createDefaultSubscriptionClaims as createDefaultSubscriptionClaims, index_d$5_createDefaultUserProfile as createDefaultUserProfile, index_d$5_createEntitySchema as createEntitySchema, index_d$5_deleteEntitySchema as deleteEntitySchema, index_d$5_disconnectOAuthSchema as disconnectOAuthSchema, index_d$5_exchangeTokenSchema as exchangeTokenSchema, index_d$5_getBreakpointFromWidth as getBreakpointFromWidth, index_d$5_getBreakpointUtils as getBreakpointUtils, index_d$5_getConnectionsSchema as getConnectionsSchema, index_d$5_getEntitySchema as getEntitySchema, index_d$5_githubPermissionSchema as githubPermissionSchema, index_d$5_githubRepoConfigSchema as githubRepoConfigSchema, index_d$5_grantGitHubAccessSchema as grantGitHubAccessSchema, index_d$5_isAuthPartnerId as isAuthPartnerId, index_d$5_isBreakpoint as isBreakpoint, index_d$5_isOAuthPartnerId as isOAuthPartnerId, index_d$5_listEntitiesSchema as listEntitiesSchema, index_d$5_overrideFeatures as overrideFeatures, index_d$5_overridePaymentModes as overridePaymentModes, index_d$5_overridePermissions as overridePermissions, index_d$5_overrideSubscriptionStatus as overrideSubscriptionStatus, index_d$5_overrideSubscriptionTiers as overrideSubscriptionTiers, index_d$5_overrideUserRoles as overrideUserRoles, index_d$5_refreshTokenSchema as refreshTokenSchema, index_d$5_revokeGitHubAccessSchema as revokeGitHubAccessSchema, index_d$5_updateEntitySchema as updateEntitySchema, index_d$5_validateAuthPartners as validateAuthPartners, index_d$5_validateAuthSchemas as validateAuthSchemas, index_d$5_validateAuthUser as validateAuthUser, index_d$5_validateBillingSchemas as validateBillingSchemas, index_d$5_validateCheckoutSessionMetadata as validateCheckoutSessionMetadata, index_d$5_validateCreateCheckoutSessionRequest as validateCreateCheckoutSessionRequest, index_d$5_validateCreateCheckoutSessionResponse as validateCreateCheckoutSessionResponse, index_d$5_validateCustomClaims as validateCustomClaims, index_d$5_validateOAuthPartners as validateOAuthPartners, index_d$5_validateStripeBackConfig as validateStripeBackConfig, index_d$5_validateStripeFrontConfig as validateStripeFrontConfig, index_d$5_validateSubscriptionClaims as validateSubscriptionClaims, index_d$5_validateSubscriptionData as validateSubscriptionData, index_d$5_validateUserSubscription as validateUserSubscription, index_d$5_validateWebhookEvent as validateWebhookEvent };
12498
- export type { index_d$5_AccountLinkResult as AccountLinkResult, index_d$5_AccountLinkingInfo as AccountLinkingInfo, index_d$5_AdminCheckHookResult as AdminCheckHookResult, index_d$5_AdminClaims as AdminClaims, index_d$5_AggregateConfig as AggregateConfig, index_d$5_AggregateFilterOperator as AggregateFilterOperator, index_d$5_AggregateOperation as AggregateOperation, index_d$5_AggregateRequest as AggregateRequest, index_d$5_AggregateResponse as AggregateResponse, index_d$5_ApiResponse as ApiResponse, index_d$5_AppConfig as AppConfig, index_d$5_AppCookieCategories as AppCookieCategories, index_d$5_AppMetadata as AppMetadata, index_d$5_AppProvidersProps as AppProvidersProps, index_d$5_AssetsPluginConfig as AssetsPluginConfig, index_d$5_AttemptRecord as AttemptRecord, index_d$5_AuthAPI as AuthAPI, index_d$5_AuthActions as AuthActions, index_d$5_AuthConfig as AuthConfig, index_d$5_AuthContextValue as AuthContextValue, index_d$5_AuthCoreHookResult as AuthCoreHookResult, index_d$5_AuthError as AuthError, index_d$5_AuthEventData as AuthEventData, index_d$5_AuthEventKey as AuthEventKey, index_d$5_AuthEventName as AuthEventName, index_d$5_AuthMethod as AuthMethod, index_d$5_AuthPartner as AuthPartner, index_d$5_AuthPartnerButton as AuthPartnerButton, index_d$5_AuthPartnerHookResult as AuthPartnerHookResult, index_d$5_AuthPartnerId as AuthPartnerId, index_d$5_AuthPartnerResult as AuthPartnerResult, index_d$5_AuthPartnerState as AuthPartnerState, index_d$5_AuthProvider as AuthProvider, index_d$5_AuthProviderProps as AuthProviderProps, index_d$5_AuthRedirectHookResult as AuthRedirectHookResult, index_d$5_AuthRedirectOperation as AuthRedirectOperation, index_d$5_AuthRedirectOptions as AuthRedirectOptions, index_d$5_AuthResult as AuthResult, index_d$5_AuthState as AuthState, index_d$5_AuthStateStore as AuthStateStore, index_d$5_AuthStatus as AuthStatus, index_d$5_AuthTokenHookResult as AuthTokenHookResult, index_d$5_AuthUser as AuthUser, index_d$5_BaseActions as BaseActions, index_d$5_BaseCredentials as BaseCredentials, index_d$5_BaseDocument as BaseDocument, index_d$5_BaseEntityFields as BaseEntityFields, index_d$5_BasePartnerState as BasePartnerState, index_d$5_BaseState as BaseState, index_d$5_BaseStoreActions as BaseStoreActions, index_d$5_BaseStoreState as BaseStoreState, index_d$5_BaseUserProfile as BaseUserProfile, index_d$5_BasicUserInfo as BasicUserInfo, index_d$5_BillingAPI as BillingAPI, index_d$5_BillingAdapter as BillingAdapter, index_d$5_BillingErrorCode as BillingErrorCode, index_d$5_BillingEvent as BillingEvent, index_d$5_BillingEventData as BillingEventData, index_d$5_BillingEventKey as BillingEventKey, index_d$5_BillingEventName as BillingEventName, index_d$5_BillingProvider as BillingProvider, index_d$5_BillingProviderConfig as BillingProviderConfig, index_d$5_BillingRedirectOperation as BillingRedirectOperation, index_d$5_Breakpoint as Breakpoint, index_d$5_BreakpointUtils as BreakpointUtils, index_d$5_BusinessEntity as BusinessEntity, index_d$5_CachedError as CachedError, index_d$5_CanAPI as CanAPI, index_d$5_CheckGitHubAccessRequest as CheckGitHubAccessRequest, index_d$5_CheckoutMode as CheckoutMode, index_d$5_CheckoutOptions as CheckoutOptions, index_d$5_CheckoutSessionMetadata as CheckoutSessionMetadata, index_d$5_ColumnDef as ColumnDef, index_d$5_CommonSubscriptionFeatures as CommonSubscriptionFeatures, index_d$5_CommonTranslations as CommonTranslations, index_d$5_ConfidenceLevel as ConfidenceLevel, index_d$5_ConsentAPI as ConsentAPI, index_d$5_ConsentActions as ConsentActions, index_d$5_ConsentCategory as ConsentCategory, index_d$5_ConsentState as ConsentState, index_d$5_Context as Context, index_d$5_CookieOptions as CookieOptions, index_d$5_CreateCheckoutSessionRequest as CreateCheckoutSessionRequest, index_d$5_CreateCheckoutSessionResponse as CreateCheckoutSessionResponse, index_d$5_CreateEntityData as CreateEntityData, index_d$5_CreateEntityRequest as CreateEntityRequest, index_d$5_CreateEntityResponse as CreateEntityResponse, index_d$5_CrudAPI as CrudAPI, index_d$5_CrudConfig as CrudConfig, index_d$5_CustomClaims as CustomClaims, index_d$5_CustomStoreConfig as CustomStoreConfig, index_d$5_DateValue as DateValue, index_d$5_DeleteEntityRequest as DeleteEntityRequest, index_d$5_DeleteEntityResponse as DeleteEntityResponse, index_d$5_Density as Density, index_d$5_DnDevOverride as DnDevOverride, index_d$5_DndevFrameworkConfig as DndevFrameworkConfig, index_d$5_DoNotDevCookieCategories as DoNotDevCookieCategories, index_d$5_DynamicFormRule as DynamicFormRule, index_d$5_Editable as Editable, index_d$5_EffectiveConnectionType as EffectiveConnectionType, index_d$5_EmailVerificationHookResult as EmailVerificationHookResult, index_d$5_EmailVerificationStatus as EmailVerificationStatus, index_d$5_Entity as Entity, index_d$5_EntityAccessConfig as EntityAccessConfig, index_d$5_EntityAccessDefaults as EntityAccessDefaults, index_d$5_EntityField as EntityField, index_d$5_EntityHookErrors as EntityHookErrors, index_d$5_EntityMetadata as EntityMetadata, index_d$5_EntityTemplateProps as EntityTemplateProps, index_d$5_EntityTranslations as EntityTranslations, index_d$5_EnvironmentMode as EnvironmentMode, index_d$5_ErrorCode as ErrorCode, index_d$5_ErrorSeverity as ErrorSeverity, index_d$5_ErrorSource as ErrorSource, index_d$5_ExchangeTokenParams as ExchangeTokenParams, index_d$5_ExchangeTokenRequest as ExchangeTokenRequest, index_d$5_FaviconConfig as FaviconConfig, index_d$5_Feature as Feature, index_d$5_FeatureAccessHookResult as FeatureAccessHookResult, index_d$5_FeatureConsentRequirement as FeatureConsentRequirement, index_d$5_FeatureHookResult as FeatureHookResult, index_d$5_FeatureId as FeatureId, index_d$5_FeatureName as FeatureName, index_d$5_FeatureStatus as FeatureStatus, index_d$5_FeaturesConfig as FeaturesConfig, index_d$5_FeaturesPluginConfig as FeaturesPluginConfig, index_d$5_FeaturesRequiringAnyConsent as FeaturesRequiringAnyConsent, index_d$5_FeaturesRequiringConsent as FeaturesRequiringConsent, index_d$5_FeaturesWithoutConsent as FeaturesWithoutConsent, index_d$5_FieldCondition as FieldCondition, index_d$5_FieldType as FieldType, index_d$5_FieldTypeToValue as FieldTypeToValue, index_d$5_FileAsset as FileAsset, index_d$5_FirebaseCallOptions as FirebaseCallOptions, index_d$5_FirebaseConfig as FirebaseConfig, index_d$5_FirestoreTimestamp as FirestoreTimestamp, index_d$5_FirestoreUniqueConstraintValidator as FirestoreUniqueConstraintValidator, index_d$5_FooterConfig as FooterConfig, index_d$5_FooterZoneConfig as FooterZoneConfig, index_d$5_FormConfig as FormConfig, index_d$5_FormStep as FormStep, index_d$5_FunctionCallConfig as FunctionCallConfig, index_d$5_FunctionCallContext as FunctionCallContext, index_d$5_FunctionCallOptions as FunctionCallOptions, index_d$5_FunctionCallResult as FunctionCallResult, index_d$5_FunctionClient as FunctionClient, index_d$5_FunctionClientFactoryOptions as FunctionClientFactoryOptions, index_d$5_FunctionDefaults as FunctionDefaults, index_d$5_FunctionEndpoint as FunctionEndpoint, index_d$5_FunctionError as FunctionError, index_d$5_FunctionLoader as FunctionLoader, index_d$5_FunctionMemory as FunctionMemory, index_d$5_FunctionMeta as FunctionMeta, index_d$5_FunctionPlatform as FunctionPlatform, index_d$5_FunctionResponse as FunctionResponse, index_d$5_FunctionSchema as FunctionSchema, index_d$5_FunctionSchemas as FunctionSchemas, index_d$5_FunctionSystem as FunctionSystem, index_d$5_FunctionTrigger as FunctionTrigger, index_d$5_FunctionsConfig as FunctionsConfig, index_d$5_GetCustomClaimsResponse as GetCustomClaimsResponse, index_d$5_GetEntityData as GetEntityData, index_d$5_GetEntityRequest as GetEntityRequest, index_d$5_GetEntityResponse as GetEntityResponse, index_d$5_GetUserAuthStatusResponse as GetUserAuthStatusResponse, index_d$5_GitHubPermission as GitHubPermission, index_d$5_GitHubRepoConfig as GitHubRepoConfig, index_d$5_GrantGitHubAccessRequest as GrantGitHubAccessRequest, index_d$5_GroupByDefinition as GroupByDefinition, index_d$5_HeaderZoneConfig as HeaderZoneConfig, index_d$5_I18nConfig as I18nConfig, index_d$5_I18nPluginConfig as I18nPluginConfig, index_d$5_I18nProviderProps as I18nProviderProps, index_d$5_ID as ID, index_d$5_INetworkManager as INetworkManager, index_d$5_IStorageManager as IStorageManager, index_d$5_IStorageStrategy as IStorageStrategy, index_d$5_Invoice as Invoice, index_d$5_InvoiceItem as InvoiceItem, index_d$5_LanguageInfo as LanguageInfo, index_d$5_LayoutConfig as LayoutConfig, index_d$5_LayoutPreset as LayoutPreset, index_d$5_LegalCompanyInfo as LegalCompanyInfo, index_d$5_LegalConfig as LegalConfig, index_d$5_LegalContactInfo as LegalContactInfo, index_d$5_LegalDirectorInfo as LegalDirectorInfo, index_d$5_LegalHostingInfo as LegalHostingInfo, index_d$5_LegalJurisdictionInfo as LegalJurisdictionInfo, index_d$5_LegalSectionsConfig as LegalSectionsConfig, index_d$5_LegalWebsiteInfo as LegalWebsiteInfo, index_d$5_ListEntitiesRequest as ListEntitiesRequest, index_d$5_ListEntitiesResponse as ListEntitiesResponse, index_d$5_ListEntityData as ListEntityData, index_d$5_ListOptions as ListOptions, index_d$5_ListResponse as ListResponse, index_d$5_LoadingActions as LoadingActions, index_d$5_LoadingState as LoadingState, index_d$5_MergedBarConfig as MergedBarConfig, index_d$5_MetricDefinition as MetricDefinition, index_d$5_MobileBehaviorConfig as MobileBehaviorConfig, index_d$5_ModalActions as ModalActions, index_d$5_ModalState as ModalState, index_d$5_MutationResponse as MutationResponse, index_d$5_NavigationRoute as NavigationRoute, index_d$5_NetworkCheckConfig as NetworkCheckConfig, index_d$5_NetworkConnectionType as NetworkConnectionType, index_d$5_NetworkReconnectCallback as NetworkReconnectCallback, NetworkState$1 as NetworkState, index_d$5_NetworkStatus as NetworkStatus, index_d$5_NetworkStatusHookResult as NetworkStatusHookResult, index_d$5_OAuthAPI as OAuthAPI, index_d$5_OAuthApiRequestOptions as OAuthApiRequestOptions, index_d$5_OAuthCallbackHookResult as OAuthCallbackHookResult, index_d$5_OAuthConnection as OAuthConnection, index_d$5_OAuthConnectionInfo as OAuthConnectionInfo, index_d$5_OAuthConnectionRequest as OAuthConnectionRequest, index_d$5_OAuthConnectionStatus as OAuthConnectionStatus, index_d$5_OAuthCredentials as OAuthCredentials, index_d$5_OAuthEventData as OAuthEventData, index_d$5_OAuthEventKey as OAuthEventKey, index_d$5_OAuthEventName as OAuthEventName, index_d$5_OAuthPartner as OAuthPartner, index_d$5_OAuthPartnerButton as OAuthPartnerButton, index_d$5_OAuthPartnerHookResult as OAuthPartnerHookResult, index_d$5_OAuthPartnerId as OAuthPartnerId, index_d$5_OAuthPartnerResult as OAuthPartnerResult, index_d$5_OAuthPartnerState as OAuthPartnerState, index_d$5_OAuthPurpose as OAuthPurpose, index_d$5_OAuthRedirectOperation as OAuthRedirectOperation, index_d$5_OAuthRefreshRequest as OAuthRefreshRequest, index_d$5_OAuthRefreshResponse as OAuthRefreshResponse, index_d$5_OAuthResult as OAuthResult, index_d$5_OAuthStoreActions as OAuthStoreActions, index_d$5_OAuthStoreState as OAuthStoreState, index_d$5_Observable as Observable, index_d$5_OrderByClause as OrderByClause, index_d$5_PWAAssetType as PWAAssetType, index_d$5_PWADisplayMode as PWADisplayMode, index_d$5_PWAPluginConfig as PWAPluginConfig, index_d$5_PageAuth as PageAuth, index_d$5_PageMeta as PageMeta, index_d$5_PaginationOptions as PaginationOptions, index_d$5_PartnerButton as PartnerButton, index_d$5_PartnerConnectionState as PartnerConnectionState, index_d$5_PartnerIconId as PartnerIconId, index_d$5_PartnerId as PartnerId, index_d$5_PartnerResult as PartnerResult, index_d$5_PartnerType as PartnerType, index_d$5_PayloadCacheEventData as PayloadCacheEventData, index_d$5_PayloadDocument as PayloadDocument, index_d$5_PayloadDocumentEventData as PayloadDocumentEventData, index_d$5_PayloadEventKey as PayloadEventKey, index_d$5_PayloadEventName as PayloadEventName, index_d$5_PayloadGlobalEventData as PayloadGlobalEventData, index_d$5_PayloadMediaEventData as PayloadMediaEventData, index_d$5_PayloadPageRegenerationEventData as PayloadPageRegenerationEventData, index_d$5_PayloadRequest as PayloadRequest, index_d$5_PayloadUserEventData as PayloadUserEventData, index_d$5_PaymentEventData as PaymentEventData, index_d$5_PaymentMethod as PaymentMethod, index_d$5_PaymentMethodType as PaymentMethodType, index_d$5_PaymentMode as PaymentMode, index_d$5_Permission as Permission, index_d$5_Picture as Picture, index_d$5_Platform as Platform, index_d$5_PresetConfig as PresetConfig, index_d$5_PresetRegistry as PresetRegistry, index_d$5_ProcessPaymentSuccessRequest as ProcessPaymentSuccessRequest, index_d$5_ProcessPaymentSuccessResponse as ProcessPaymentSuccessResponse, index_d$5_ProductDeclaration as ProductDeclaration, index_d$5_ProviderInstances as ProviderInstances, QueryConfig$1 as QueryConfig, index_d$5_RateLimitConfig as RateLimitConfig, index_d$5_RateLimitManager as RateLimitManager, index_d$5_RateLimitResult as RateLimitResult, index_d$5_RateLimitState as RateLimitState, index_d$5_RateLimiter as RateLimiter, index_d$5_ReadCallback as ReadCallback, index_d$5_RedirectOperation as RedirectOperation, index_d$5_RedirectOverlayActions as RedirectOverlayActions, index_d$5_RedirectOverlayConfig as RedirectOverlayConfig, index_d$5_RedirectOverlayPhase as RedirectOverlayPhase, index_d$5_RedirectOverlayState as RedirectOverlayState, index_d$5_Reference as Reference, index_d$5_RefreshSubscriptionRequest as RefreshSubscriptionRequest, index_d$5_RefreshSubscriptionResponse as RefreshSubscriptionResponse, index_d$5_RemoveCustomClaimsResponse as RemoveCustomClaimsResponse, index_d$5_ResolvedLayoutConfig as ResolvedLayoutConfig, index_d$5_RevokeGitHubAccessRequest as RevokeGitHubAccessRequest, index_d$5_RouteMeta as RouteMeta, index_d$5_RouteSource as RouteSource, index_d$5_RoutesPluginConfig as RoutesPluginConfig, index_d$5_SEOConfig as SEOConfig, index_d$5_SchemaMetadata as SchemaMetadata, index_d$5_SetCustomClaimsResponse as SetCustomClaimsResponse, index_d$5_SidebarZoneConfig as SidebarZoneConfig, index_d$5_SlotContent as SlotContent, index_d$5_StorageOptions as StorageOptions, index_d$5_StorageScope as StorageScope, index_d$5_StorageType as StorageType, index_d$5_Store as Store, index_d$5_StoreApi as StoreApi, index_d$5_StripeBackConfig as StripeBackConfig, index_d$5_StripeCheckoutRequest as StripeCheckoutRequest, index_d$5_StripeCheckoutResponse as StripeCheckoutResponse, index_d$5_StripeCheckoutSessionEventData as StripeCheckoutSessionEventData, index_d$5_StripeConfig as StripeConfig, index_d$5_StripeCustomer as StripeCustomer, index_d$5_StripeCustomerEventData as StripeCustomerEventData, index_d$5_StripeEventData as StripeEventData, index_d$5_StripeEventKey as StripeEventKey, index_d$5_StripeEventName as StripeEventName, index_d$5_StripeFrontConfig as StripeFrontConfig, index_d$5_StripeInvoice as StripeInvoice, index_d$5_StripeInvoiceEventData as StripeInvoiceEventData, index_d$5_StripePayment as StripePayment, index_d$5_StripePaymentIntentEventData as StripePaymentIntentEventData, index_d$5_StripePaymentMethod as StripePaymentMethod, index_d$5_StripePrice as StripePrice, index_d$5_StripeProduct as StripeProduct, index_d$5_StripeProvider as StripeProvider, index_d$5_StripeSubscription as StripeSubscription, index_d$5_StripeSubscriptionData as StripeSubscriptionData, index_d$5_StripeWebhookEvent as StripeWebhookEvent, index_d$5_StripeWebhookEventData as StripeWebhookEventData, index_d$5_Subscription as Subscription, index_d$5_SubscriptionClaims as SubscriptionClaims, index_d$5_SubscriptionConfig as SubscriptionConfig, index_d$5_SubscriptionData as SubscriptionData, index_d$5_SubscriptionDuration as SubscriptionDuration, index_d$5_SubscriptionEventData as SubscriptionEventData, index_d$5_SubscriptionHookResult as SubscriptionHookResult, index_d$5_SubscriptionInfo as SubscriptionInfo, index_d$5_SubscriptionStatus as SubscriptionStatus, index_d$5_SubscriptionTier as SubscriptionTier, index_d$5_SupportedLanguage as SupportedLanguage, index_d$5_ThemeActions as ThemeActions, index_d$5_ThemeInfo as ThemeInfo, index_d$5_ThemeMode as ThemeMode, index_d$5_ThemeState as ThemeState, index_d$5_ThemesPluginConfig as ThemesPluginConfig, index_d$5_TierAccessHookResult as TierAccessHookResult, index_d$5_Timestamp as Timestamp, index_d$5_TokenInfo as TokenInfo, index_d$5_TokenResponse as TokenResponse, index_d$5_TokenState as TokenState, index_d$5_TokenStatus as TokenStatus, index_d$5_TranslationOptions as TranslationOptions, index_d$5_TranslationResource as TranslationResource, index_d$5_UIFieldOptions as UIFieldOptions, index_d$5_UniqueConstraintValidator as UniqueConstraintValidator, index_d$5_UnsubscribeFn as UnsubscribeFn, index_d$5_UpdateEntityData as UpdateEntityData, index_d$5_UpdateEntityRequest as UpdateEntityRequest, index_d$5_UpdateEntityResponse as UpdateEntityResponse, index_d$5_UseFunctionsMutationOptions as UseFunctionsMutationOptions, index_d$5_UseFunctionsQueryOptions as UseFunctionsQueryOptions, index_d$5_UseTranslationOptionsEnhanced as UseTranslationOptionsEnhanced, index_d$5_UserContext as UserContext, index_d$5_UserProfile as UserProfile, index_d$5_UserProviderData as UserProviderData, index_d$5_UserRole as UserRole, index_d$5_UserSubscription as UserSubscription, index_d$5_ValidationRules as ValidationRules, index_d$5_ValueTypeForField as ValueTypeForField, index_d$5_Visibility as Visibility, index_d$5_WebhookEvent as WebhookEvent, index_d$5_WebhookEventData as WebhookEventData, index_d$5_WhereClause as WhereClause, index_d$5_WhereOperator as WhereOperator, index_d$5_WithMetadata as WithMetadata, index_d$5_dndevSchema as dndevSchema };
12774
+ export type { index_d$5_AccountLinkResult as AccountLinkResult, index_d$5_AccountLinkingInfo as AccountLinkingInfo, index_d$5_AdminCheckHookResult as AdminCheckHookResult, index_d$5_AdminClaims as AdminClaims, index_d$5_AggregateConfig as AggregateConfig, index_d$5_AggregateFilterOperator as AggregateFilterOperator, index_d$5_AggregateOperation as AggregateOperation, index_d$5_AggregateRequest as AggregateRequest, index_d$5_AggregateResponse as AggregateResponse, index_d$5_AnyFieldValue as AnyFieldValue, index_d$5_ApiResponse as ApiResponse, index_d$5_AppConfig as AppConfig, index_d$5_AppCookieCategories as AppCookieCategories, index_d$5_AppMetadata as AppMetadata, index_d$5_AppProvidersProps as AppProvidersProps, index_d$5_AssetsPluginConfig as AssetsPluginConfig, index_d$5_AttemptRecord as AttemptRecord, index_d$5_AuthAPI as AuthAPI, index_d$5_AuthActions as AuthActions, index_d$5_AuthConfig as AuthConfig, index_d$5_AuthContextValue as AuthContextValue, index_d$5_AuthCoreHookResult as AuthCoreHookResult, index_d$5_AuthError as AuthError, index_d$5_AuthEventData as AuthEventData, index_d$5_AuthEventKey as AuthEventKey, index_d$5_AuthEventName as AuthEventName, index_d$5_AuthMethod as AuthMethod, index_d$5_AuthPartner as AuthPartner, index_d$5_AuthPartnerButton as AuthPartnerButton, index_d$5_AuthPartnerHookResult as AuthPartnerHookResult, index_d$5_AuthPartnerId as AuthPartnerId, index_d$5_AuthPartnerResult as AuthPartnerResult, index_d$5_AuthPartnerState as AuthPartnerState, index_d$5_AuthProvider as AuthProvider, index_d$5_AuthProviderProps as AuthProviderProps, index_d$5_AuthRedirectHookResult as AuthRedirectHookResult, index_d$5_AuthRedirectOperation as AuthRedirectOperation, index_d$5_AuthRedirectOptions as AuthRedirectOptions, index_d$5_AuthResult as AuthResult, index_d$5_AuthState as AuthState, index_d$5_AuthStateStore as AuthStateStore, index_d$5_AuthStatus as AuthStatus, index_d$5_AuthTokenHookResult as AuthTokenHookResult, index_d$5_AuthUser as AuthUser, index_d$5_BaseActions as BaseActions, index_d$5_BaseCredentials as BaseCredentials, index_d$5_BaseDocument as BaseDocument, index_d$5_BaseEntityFields as BaseEntityFields, index_d$5_BasePartnerState as BasePartnerState, index_d$5_BaseState as BaseState, index_d$5_BaseStoreActions as BaseStoreActions, index_d$5_BaseStoreState as BaseStoreState, index_d$5_BaseUserProfile as BaseUserProfile, index_d$5_BasicUserInfo as BasicUserInfo, index_d$5_BillingAPI as BillingAPI, index_d$5_BillingAdapter as BillingAdapter, index_d$5_BillingErrorCode as BillingErrorCode, index_d$5_BillingEvent as BillingEvent, index_d$5_BillingEventData as BillingEventData, index_d$5_BillingEventKey as BillingEventKey, index_d$5_BillingEventName as BillingEventName, index_d$5_BillingProvider as BillingProvider, index_d$5_BillingProviderConfig as BillingProviderConfig, index_d$5_BillingRedirectOperation as BillingRedirectOperation, index_d$5_Breakpoint as Breakpoint, index_d$5_BreakpointUtils as BreakpointUtils, index_d$5_BusinessEntity as BusinessEntity, index_d$5_CachedError as CachedError, index_d$5_CanAPI as CanAPI, index_d$5_CheckGitHubAccessRequest as CheckGitHubAccessRequest, index_d$5_CheckoutMode as CheckoutMode, index_d$5_CheckoutOptions as CheckoutOptions, index_d$5_CheckoutSessionMetadata as CheckoutSessionMetadata, index_d$5_ColumnDef as ColumnDef, index_d$5_CommonSubscriptionFeatures as CommonSubscriptionFeatures, index_d$5_CommonTranslations as CommonTranslations, index_d$5_ConfidenceLevel as ConfidenceLevel, index_d$5_ConsentAPI as ConsentAPI, index_d$5_ConsentActions as ConsentActions, index_d$5_ConsentCategory as ConsentCategory, index_d$5_ConsentState as ConsentState, index_d$5_Context as Context, index_d$5_CookieOptions as CookieOptions, index_d$5_CreateCheckoutSessionRequest as CreateCheckoutSessionRequest, index_d$5_CreateCheckoutSessionResponse as CreateCheckoutSessionResponse, index_d$5_CreateEntityData as CreateEntityData, index_d$5_CreateEntityRequest as CreateEntityRequest, index_d$5_CreateEntityResponse as CreateEntityResponse, index_d$5_CrudAPI as CrudAPI, index_d$5_CrudConfig as CrudConfig, index_d$5_CustomClaims as CustomClaims, index_d$5_CustomStoreConfig as CustomStoreConfig, index_d$5_DateValue as DateValue, index_d$5_DeleteEntityRequest as DeleteEntityRequest, index_d$5_DeleteEntityResponse as DeleteEntityResponse, index_d$5_Density as Density, index_d$5_DnDevOverride as DnDevOverride, index_d$5_DndevFrameworkConfig as DndevFrameworkConfig, index_d$5_DoNotDevCookieCategories as DoNotDevCookieCategories, index_d$5_DynamicFormRule as DynamicFormRule, index_d$5_Editable as Editable, index_d$5_EffectiveConnectionType as EffectiveConnectionType, index_d$5_EmailVerificationHookResult as EmailVerificationHookResult, index_d$5_EmailVerificationStatus as EmailVerificationStatus, index_d$5_Entity as Entity, index_d$5_EntityAccessConfig as EntityAccessConfig, index_d$5_EntityAccessDefaults as EntityAccessDefaults, index_d$5_EntityCardListProps as EntityCardListProps, index_d$5_EntityDisplayRendererProps as EntityDisplayRendererProps, index_d$5_EntityField as EntityField, index_d$5_EntityFormRendererProps as EntityFormRendererProps, index_d$5_EntityHookErrors as EntityHookErrors, index_d$5_EntityListProps as EntityListProps, index_d$5_EntityMetadata as EntityMetadata, index_d$5_EntityRecord as EntityRecord, index_d$5_EntityTemplateProps as EntityTemplateProps, index_d$5_EntityTranslations as EntityTranslations, index_d$5_EnvironmentMode as EnvironmentMode, index_d$5_ErrorCode as ErrorCode, index_d$5_ErrorSeverity as ErrorSeverity, index_d$5_ErrorSource as ErrorSource, index_d$5_ExchangeTokenParams as ExchangeTokenParams, index_d$5_ExchangeTokenRequest as ExchangeTokenRequest, index_d$5_FaviconConfig as FaviconConfig, index_d$5_Feature as Feature, index_d$5_FeatureAccessHookResult as FeatureAccessHookResult, index_d$5_FeatureConsentRequirement as FeatureConsentRequirement, index_d$5_FeatureHookResult as FeatureHookResult, index_d$5_FeatureId as FeatureId, index_d$5_FeatureName as FeatureName, index_d$5_FeatureStatus as FeatureStatus, index_d$5_FeaturesConfig as FeaturesConfig, index_d$5_FeaturesPluginConfig as FeaturesPluginConfig, index_d$5_FeaturesRequiringAnyConsent as FeaturesRequiringAnyConsent, index_d$5_FeaturesRequiringConsent as FeaturesRequiringConsent, index_d$5_FeaturesWithoutConsent as FeaturesWithoutConsent, index_d$5_FieldCondition as FieldCondition, index_d$5_FieldType as FieldType, index_d$5_FieldTypeToValue as FieldTypeToValue, index_d$5_FileAsset as FileAsset, index_d$5_FirebaseCallOptions as FirebaseCallOptions, index_d$5_FirebaseConfig as FirebaseConfig, index_d$5_FirestoreTimestamp as FirestoreTimestamp, index_d$5_FirestoreUniqueConstraintValidator as FirestoreUniqueConstraintValidator, index_d$5_FooterConfig as FooterConfig, index_d$5_FooterZoneConfig as FooterZoneConfig, index_d$5_FormConfig as FormConfig, index_d$5_FormStep as FormStep, index_d$5_FunctionCallConfig as FunctionCallConfig, index_d$5_FunctionCallContext as FunctionCallContext, index_d$5_FunctionCallOptions as FunctionCallOptions, index_d$5_FunctionCallResult as FunctionCallResult, index_d$5_FunctionClient as FunctionClient, index_d$5_FunctionClientFactoryOptions as FunctionClientFactoryOptions, index_d$5_FunctionDefaults as FunctionDefaults, index_d$5_FunctionEndpoint as FunctionEndpoint, index_d$5_FunctionError as FunctionError, index_d$5_FunctionLoader as FunctionLoader, index_d$5_FunctionMemory as FunctionMemory, index_d$5_FunctionMeta as FunctionMeta, index_d$5_FunctionPlatform as FunctionPlatform, index_d$5_FunctionResponse as FunctionResponse, index_d$5_FunctionSchema as FunctionSchema, index_d$5_FunctionSchemas as FunctionSchemas, index_d$5_FunctionSystem as FunctionSystem, index_d$5_FunctionTrigger as FunctionTrigger, index_d$5_FunctionsConfig as FunctionsConfig, index_d$5_GetCustomClaimsResponse as GetCustomClaimsResponse, index_d$5_GetEntityData as GetEntityData, index_d$5_GetEntityRequest as GetEntityRequest, index_d$5_GetEntityResponse as GetEntityResponse, index_d$5_GetUserAuthStatusResponse as GetUserAuthStatusResponse, index_d$5_GitHubPermission as GitHubPermission, index_d$5_GitHubRepoConfig as GitHubRepoConfig, index_d$5_GrantGitHubAccessRequest as GrantGitHubAccessRequest, index_d$5_GroupByDefinition as GroupByDefinition, index_d$5_HeaderZoneConfig as HeaderZoneConfig, index_d$5_I18nConfig as I18nConfig, index_d$5_I18nPluginConfig as I18nPluginConfig, index_d$5_I18nProviderProps as I18nProviderProps, index_d$5_ID as ID, index_d$5_INetworkManager as INetworkManager, index_d$5_IStorageManager as IStorageManager, index_d$5_IStorageStrategy as IStorageStrategy, index_d$5_Invoice as Invoice, index_d$5_InvoiceItem as InvoiceItem, index_d$5_LanguageInfo as LanguageInfo, index_d$5_LayoutConfig as LayoutConfig, index_d$5_LayoutPreset as LayoutPreset, index_d$5_LegalCompanyInfo as LegalCompanyInfo, index_d$5_LegalConfig as LegalConfig, index_d$5_LegalContactInfo as LegalContactInfo, index_d$5_LegalDirectorInfo as LegalDirectorInfo, index_d$5_LegalHostingInfo as LegalHostingInfo, index_d$5_LegalJurisdictionInfo as LegalJurisdictionInfo, index_d$5_LegalSectionsConfig as LegalSectionsConfig, index_d$5_LegalWebsiteInfo as LegalWebsiteInfo, index_d$5_ListEntitiesRequest as ListEntitiesRequest, index_d$5_ListEntitiesResponse as ListEntitiesResponse, index_d$5_ListEntityData as ListEntityData, index_d$5_ListOptions as ListOptions, index_d$5_ListResponse as ListResponse, index_d$5_LoadingActions as LoadingActions, index_d$5_LoadingState as LoadingState, index_d$5_MergedBarConfig as MergedBarConfig, index_d$5_MetricDefinition as MetricDefinition, index_d$5_MobileBehaviorConfig as MobileBehaviorConfig, index_d$5_ModalActions as ModalActions, index_d$5_ModalState as ModalState, index_d$5_MutationResponse as MutationResponse, index_d$5_NavigationRoute as NavigationRoute, index_d$5_NetworkCheckConfig as NetworkCheckConfig, index_d$5_NetworkConnectionType as NetworkConnectionType, index_d$5_NetworkReconnectCallback as NetworkReconnectCallback, NetworkState$1 as NetworkState, index_d$5_NetworkStatus as NetworkStatus, index_d$5_NetworkStatusHookResult as NetworkStatusHookResult, index_d$5_OAuthAPI as OAuthAPI, index_d$5_OAuthApiRequestOptions as OAuthApiRequestOptions, index_d$5_OAuthCallbackHookResult as OAuthCallbackHookResult, index_d$5_OAuthConnection as OAuthConnection, index_d$5_OAuthConnectionInfo as OAuthConnectionInfo, index_d$5_OAuthConnectionRequest as OAuthConnectionRequest, index_d$5_OAuthConnectionStatus as OAuthConnectionStatus, index_d$5_OAuthCredentials as OAuthCredentials, index_d$5_OAuthEventData as OAuthEventData, index_d$5_OAuthEventKey as OAuthEventKey, index_d$5_OAuthEventName as OAuthEventName, index_d$5_OAuthPartner as OAuthPartner, index_d$5_OAuthPartnerButton as OAuthPartnerButton, index_d$5_OAuthPartnerHookResult as OAuthPartnerHookResult, index_d$5_OAuthPartnerId as OAuthPartnerId, index_d$5_OAuthPartnerResult as OAuthPartnerResult, index_d$5_OAuthPartnerState as OAuthPartnerState, index_d$5_OAuthPurpose as OAuthPurpose, index_d$5_OAuthRedirectOperation as OAuthRedirectOperation, index_d$5_OAuthRefreshRequest as OAuthRefreshRequest, index_d$5_OAuthRefreshResponse as OAuthRefreshResponse, index_d$5_OAuthResult as OAuthResult, index_d$5_OAuthStoreActions as OAuthStoreActions, index_d$5_OAuthStoreState as OAuthStoreState, index_d$5_Observable as Observable, index_d$5_OrderByClause as OrderByClause, index_d$5_PWAAssetType as PWAAssetType, index_d$5_PWADisplayMode as PWADisplayMode, index_d$5_PWAPluginConfig as PWAPluginConfig, index_d$5_PageAuth as PageAuth, index_d$5_PageMeta as PageMeta, index_d$5_PaginationOptions as PaginationOptions, index_d$5_PartnerButton as PartnerButton, index_d$5_PartnerConnectionState as PartnerConnectionState, index_d$5_PartnerIconId as PartnerIconId, index_d$5_PartnerId as PartnerId, index_d$5_PartnerResult as PartnerResult, index_d$5_PartnerType as PartnerType, index_d$5_PayloadCacheEventData as PayloadCacheEventData, index_d$5_PayloadDocument as PayloadDocument, index_d$5_PayloadDocumentEventData as PayloadDocumentEventData, index_d$5_PayloadEventKey as PayloadEventKey, index_d$5_PayloadEventName as PayloadEventName, index_d$5_PayloadGlobalEventData as PayloadGlobalEventData, index_d$5_PayloadMediaEventData as PayloadMediaEventData, index_d$5_PayloadPageRegenerationEventData as PayloadPageRegenerationEventData, index_d$5_PayloadRequest as PayloadRequest, index_d$5_PayloadUserEventData as PayloadUserEventData, index_d$5_PaymentEventData as PaymentEventData, index_d$5_PaymentMethod as PaymentMethod, index_d$5_PaymentMethodType as PaymentMethodType, index_d$5_PaymentMode as PaymentMode, index_d$5_Permission as Permission, index_d$5_Picture as Picture, index_d$5_Platform as Platform, index_d$5_PresetConfig as PresetConfig, index_d$5_PresetRegistry as PresetRegistry, index_d$5_ProcessPaymentSuccessRequest as ProcessPaymentSuccessRequest, index_d$5_ProcessPaymentSuccessResponse as ProcessPaymentSuccessResponse, index_d$5_ProductDeclaration as ProductDeclaration, index_d$5_ProviderInstances as ProviderInstances, QueryConfig$1 as QueryConfig, index_d$5_RateLimitConfig as RateLimitConfig, index_d$5_RateLimitManager as RateLimitManager, index_d$5_RateLimitResult as RateLimitResult, index_d$5_RateLimitState as RateLimitState, index_d$5_RateLimiter as RateLimiter, index_d$5_ReadCallback as ReadCallback, index_d$5_RedirectOperation as RedirectOperation, index_d$5_RedirectOverlayActions as RedirectOverlayActions, index_d$5_RedirectOverlayConfig as RedirectOverlayConfig, index_d$5_RedirectOverlayPhase as RedirectOverlayPhase, index_d$5_RedirectOverlayState as RedirectOverlayState, index_d$5_Reference as Reference, index_d$5_RefreshSubscriptionRequest as RefreshSubscriptionRequest, index_d$5_RefreshSubscriptionResponse as RefreshSubscriptionResponse, index_d$5_RemoveCustomClaimsResponse as RemoveCustomClaimsResponse, index_d$5_ResolvedLayoutConfig as ResolvedLayoutConfig, index_d$5_RevokeGitHubAccessRequest as RevokeGitHubAccessRequest, index_d$5_RouteMeta as RouteMeta, index_d$5_RouteSource as RouteSource, index_d$5_RoutesPluginConfig as RoutesPluginConfig, index_d$5_SEOConfig as SEOConfig, index_d$5_SchemaMetadata as SchemaMetadata, index_d$5_ScopeConfig as ScopeConfig, index_d$5_SetCustomClaimsResponse as SetCustomClaimsResponse, index_d$5_SidebarZoneConfig as SidebarZoneConfig, index_d$5_SlotContent as SlotContent, index_d$5_StorageOptions as StorageOptions, index_d$5_StorageScope as StorageScope, index_d$5_StorageType as StorageType, index_d$5_Store as Store, index_d$5_StoreApi as StoreApi, index_d$5_StripeBackConfig as StripeBackConfig, index_d$5_StripeCheckoutRequest as StripeCheckoutRequest, index_d$5_StripeCheckoutResponse as StripeCheckoutResponse, index_d$5_StripeCheckoutSessionEventData as StripeCheckoutSessionEventData, index_d$5_StripeConfig as StripeConfig, index_d$5_StripeCustomer as StripeCustomer, index_d$5_StripeCustomerEventData as StripeCustomerEventData, index_d$5_StripeEventData as StripeEventData, index_d$5_StripeEventKey as StripeEventKey, index_d$5_StripeEventName as StripeEventName, index_d$5_StripeFrontConfig as StripeFrontConfig, index_d$5_StripeInvoice as StripeInvoice, index_d$5_StripeInvoiceEventData as StripeInvoiceEventData, index_d$5_StripePayment as StripePayment, index_d$5_StripePaymentIntentEventData as StripePaymentIntentEventData, index_d$5_StripePaymentMethod as StripePaymentMethod, index_d$5_StripePrice as StripePrice, index_d$5_StripeProduct as StripeProduct, index_d$5_StripeProvider as StripeProvider, index_d$5_StripeSubscription as StripeSubscription, index_d$5_StripeSubscriptionData as StripeSubscriptionData, index_d$5_StripeWebhookEvent as StripeWebhookEvent, index_d$5_StripeWebhookEventData as StripeWebhookEventData, index_d$5_Subscription as Subscription, index_d$5_SubscriptionClaims as SubscriptionClaims, index_d$5_SubscriptionConfig as SubscriptionConfig, index_d$5_SubscriptionData as SubscriptionData, index_d$5_SubscriptionDuration as SubscriptionDuration, index_d$5_SubscriptionEventData as SubscriptionEventData, index_d$5_SubscriptionHookResult as SubscriptionHookResult, index_d$5_SubscriptionInfo as SubscriptionInfo, index_d$5_SubscriptionStatus as SubscriptionStatus, index_d$5_SubscriptionTier as SubscriptionTier, index_d$5_SupportedLanguage as SupportedLanguage, index_d$5_ThemeActions as ThemeActions, index_d$5_ThemeInfo as ThemeInfo, index_d$5_ThemeMode as ThemeMode, index_d$5_ThemeState as ThemeState, index_d$5_ThemesPluginConfig as ThemesPluginConfig, index_d$5_TierAccessHookResult as TierAccessHookResult, index_d$5_Timestamp as Timestamp, index_d$5_TokenInfo as TokenInfo, index_d$5_TokenResponse as TokenResponse, index_d$5_TokenState as TokenState, index_d$5_TokenStatus as TokenStatus, index_d$5_TranslationOptions as TranslationOptions, index_d$5_TranslationResource as TranslationResource, index_d$5_UIFieldOptions as UIFieldOptions, index_d$5_UniqueConstraintValidator as UniqueConstraintValidator, index_d$5_UniqueKeyDefinition as UniqueKeyDefinition, index_d$5_UnsubscribeFn as UnsubscribeFn, index_d$5_UpdateEntityData as UpdateEntityData, index_d$5_UpdateEntityRequest as UpdateEntityRequest, index_d$5_UpdateEntityResponse as UpdateEntityResponse, index_d$5_UseFunctionsMutationOptions as UseFunctionsMutationOptions, index_d$5_UseFunctionsQueryOptions as UseFunctionsQueryOptions, index_d$5_UseTranslationOptionsEnhanced as UseTranslationOptionsEnhanced, index_d$5_UserContext as UserContext, index_d$5_UserProfile as UserProfile, index_d$5_UserProviderData as UserProviderData, index_d$5_UserRole as UserRole, index_d$5_UserSubscription as UserSubscription, index_d$5_ValidationRules as ValidationRules, index_d$5_ValueTypeForField as ValueTypeForField, index_d$5_Visibility as Visibility, index_d$5_WebhookEvent as WebhookEvent, index_d$5_WebhookEventData as WebhookEventData, index_d$5_WhereClause as WhereClause, index_d$5_WhereOperator as WhereOperator, index_d$5_WithMetadata as WithMetadata, index_d$5_dndevSchema as dndevSchema };
12499
12775
  }
12500
12776
 
12501
12777
  /**
@@ -17215,6 +17491,56 @@ declare function createMetadata(userId: string): {
17215
17491
  _updatedBy: string;
17216
17492
  };
17217
17493
 
17494
+ /**
17495
+ * @fileoverview Currency Formatting Utilities
17496
+ * @description Single mapping of ISO 4217 currency codes to locale and symbol. Top ~50 currencies.
17497
+ *
17498
+ * @version 0.0.1
17499
+ * @since 0.0.1
17500
+ * @author AMBROISE PARK Consulting
17501
+ */
17502
+ /** Entry: 3-letter code → locale (for Intl) and display symbol */
17503
+ interface CurrencyEntry {
17504
+ locale: string;
17505
+ symbol: string;
17506
+ }
17507
+ /**
17508
+ * Top ~50 currencies: 3-letter code, locale, symbol.
17509
+ * Unknown codes: getCurrencyLocale → 'en-US', getCurrencySymbol → code as-is.
17510
+ */
17511
+ declare const CURRENCY_MAP: Record<string, CurrencyEntry>;
17512
+ /**
17513
+ * Returns the locale for a currency code (for Intl formatting).
17514
+ * Unknown codes → 'en-US'.
17515
+ *
17516
+ * @param currencyCode - ISO 4217 currency code (e.g. 'EUR', 'USD')
17517
+ * @returns Locale string
17518
+ */
17519
+ declare function getCurrencyLocale(currencyCode: string): string;
17520
+ /**
17521
+ * Returns the symbol for a currency code (e.g. EUR → '€').
17522
+ * Unknown codes → code as-is (no validation).
17523
+ *
17524
+ * @param currencyCode - ISO 4217 currency code or any string
17525
+ * @returns Symbol string or the code itself
17526
+ */
17527
+ declare function getCurrencySymbol(currencyCode: string): string;
17528
+ /**
17529
+ * Format currency value with proper locale based on currency code
17530
+ *
17531
+ * @param value - Numeric value to format
17532
+ * @param currencyCode - ISO 4217 currency code
17533
+ * @param options - Additional Intl.NumberFormat options
17534
+ * @returns Formatted currency string
17535
+ *
17536
+ * @example
17537
+ * ```typescript
17538
+ * formatCurrency(12345, 'EUR') // → "12 345 €"
17539
+ * formatCurrency(12345, 'USD') // → "$12,345"
17540
+ * ```
17541
+ */
17542
+ declare function formatCurrency(value: number | null | undefined, currencyCode: string, options?: Intl.NumberFormatOptions): string;
17543
+
17218
17544
  /**
17219
17545
  * @fileoverview Date utilities for consistent timestamp handling
17220
17546
  * @description Provides standardized date utilities for ISO string timestamps.
@@ -18113,6 +18439,7 @@ type index_d$4_BrowserEngine = BrowserEngine;
18113
18439
  type index_d$4_BrowserInfo = BrowserInfo;
18114
18440
  type index_d$4_BrowserType = BrowserType;
18115
18441
  declare const index_d$4_CONSENT_LEVELS: typeof CONSENT_LEVELS;
18442
+ declare const index_d$4_CURRENCY_MAP: typeof CURRENCY_MAP;
18116
18443
  type index_d$4_Claims = Claims;
18117
18444
  type index_d$4_ClaimsCache = ClaimsCache;
18118
18445
  declare const index_d$4_ClaimsCache: typeof ClaimsCache;
@@ -18122,6 +18449,7 @@ type index_d$4_CleanupFunction = CleanupFunction;
18122
18449
  type index_d$4_CompatibilityReport = CompatibilityReport;
18123
18450
  type index_d$4_ConsentLevel = ConsentLevel;
18124
18451
  type index_d$4_CookieInfo = CookieInfo;
18452
+ type index_d$4_CurrencyEntry = CurrencyEntry;
18125
18453
  declare const index_d$4_DEFAULT_ERROR_MESSAGES: typeof DEFAULT_ERROR_MESSAGES;
18126
18454
  declare const index_d$4_DEGRADED_AUTH_API: typeof DEGRADED_AUTH_API;
18127
18455
  declare const index_d$4_DEGRADED_BILLING_API: typeof DEGRADED_BILLING_API;
@@ -18204,6 +18532,7 @@ declare const index_d$4_encryptData: typeof encryptData;
18204
18532
  declare const index_d$4_exportEncryptionKey: typeof exportEncryptionKey;
18205
18533
  declare const index_d$4_filterVisibleFields: typeof filterVisibleFields;
18206
18534
  declare const index_d$4_formatCookieList: typeof formatCookieList;
18535
+ declare const index_d$4_formatCurrency: typeof formatCurrency;
18207
18536
  declare const index_d$4_formatDate: typeof formatDate;
18208
18537
  declare const index_d$4_formatRelativeTime: typeof formatRelativeTime;
18209
18538
  declare const index_d$4_generateCodeChallenge: typeof generateCodeChallenge;
@@ -18224,6 +18553,8 @@ declare const index_d$4_getConfigSource: typeof getConfigSource;
18224
18553
  declare const index_d$4_getCookie: typeof getCookie;
18225
18554
  declare const index_d$4_getCookieExamples: typeof getCookieExamples;
18226
18555
  declare const index_d$4_getCookiesByCategory: typeof getCookiesByCategory;
18556
+ declare const index_d$4_getCurrencyLocale: typeof getCurrencyLocale;
18557
+ declare const index_d$4_getCurrencySymbol: typeof getCurrencySymbol;
18227
18558
  declare const index_d$4_getCurrentOrigin: typeof getCurrentOrigin;
18228
18559
  declare const index_d$4_getCurrentTimestamp: typeof getCurrentTimestamp;
18229
18560
  declare const index_d$4_getDndevConfig: typeof getDndevConfig;
@@ -18318,8 +18649,8 @@ declare const index_d$4_validateLicenseKey: typeof validateLicenseKey;
18318
18649
  declare const index_d$4_withErrorHandling: typeof withErrorHandling;
18319
18650
  declare const index_d$4_withGracefulDegradation: typeof withGracefulDegradation;
18320
18651
  declare namespace index_d$4 {
18321
- export { index_d$4_AUTH_COMPUTED_KEYS as AUTH_COMPUTED_KEYS, index_d$4_AUTH_STORE_KEYS as AUTH_STORE_KEYS, index_d$4_BILLING_STORE_KEYS as BILLING_STORE_KEYS, index_d$4_BaseStorageStrategy as BaseStorageStrategy, index_d$4_CONSENT_LEVELS as CONSENT_LEVELS, index_d$4_ClaimsCache as ClaimsCache, index_d$4_DEFAULT_ERROR_MESSAGES as DEFAULT_ERROR_MESSAGES, index_d$4_DEGRADED_AUTH_API as DEGRADED_AUTH_API, index_d$4_DEGRADED_BILLING_API as DEGRADED_BILLING_API, index_d$4_DEGRADED_CRUD_API as DEGRADED_CRUD_API, index_d$4_DEGRADED_OAUTH_API as DEGRADED_OAUTH_API, index_d$4_DoNotDevError as DoNotDevError, index_d$4_EventEmitter as EventEmitter, index_d$4_FRAMEWORK_FEATURES as FRAMEWORK_FEATURES, index_d$4_HybridStorageStrategy as HybridStorageStrategy, index_d$4_LocalStorageStrategy as LocalStorageStrategy, index_d$4_OAUTH_STORE_KEYS as OAUTH_STORE_KEYS, index_d$4_SingletonManager as SingletonManager, index_d$4_StorageManager as StorageManager, index_d$4_TokenManager as TokenManager, index_d$4_ViewportHandler as ViewportHandler, index_d$4_areFeaturesAvailable as areFeaturesAvailable, index_d$4_canRedirectExternally as canRedirectExternally, index_d$4_captureError as captureError, index_d$4_captureErrorToSentry as captureErrorToSentry, index_d$4_captureMessage as captureMessage, index_d$4_checkLicense as checkLicense, index_d$4_cleanupSentry as cleanupSentry, index_d$4_clearFeatureCache as clearFeatureCache, index_d$4_clearLocalStorage as clearLocalStorage, index_d$4_clearPartnerCache as clearPartnerCache, index_d$4_commonErrorCodeMappings as commonErrorCodeMappings, index_d$4_compactToISOString as compactToISOString, index_d$4_cooldown as cooldown, index_d$4_createAsyncSingleton as createAsyncSingleton, index_d$4_createErrorHandler as createErrorHandler, index_d$4_createMetadata as createMetadata, index_d$4_createMethodProxy as createMethodProxy, index_d$4_createProvider as createProvider, index_d$4_createProviders as createProviders, index_d$4_createSingleton as createSingleton, index_d$4_createSingletonWithParams as createSingletonWithParams, index_d$4_createViewportHandler as createViewportHandler, index_d$4_debounce as debounce, index_d$4_debugPlatformDetection as debugPlatformDetection, index_d$4_decryptData as decryptData, index_d$4_delay as delay, index_d$4_deleteCookie as deleteCookie, index_d$4_detectBrowser as detectBrowser, index_d$4_detectErrorSource as detectErrorSource, index_d$4_detectFeatures as detectFeatures, index_d$4_detectLicenseKey as detectLicenseKey, index_d$4_detectPlatform as detectPlatform, index_d$4_detectPlatformInfo as detectPlatformInfo, index_d$4_detectStorageError as detectStorageError, index_d$4_encryptData as encryptData, index_d$4_exportEncryptionKey as exportEncryptionKey, index_d$4_filterVisibleFields as filterVisibleFields, index_d$4_formatCookieList as formatCookieList, index_d$4_formatDate as formatDate, index_d$4_formatRelativeTime as formatRelativeTime, index_d$4_generateCodeChallenge as generateCodeChallenge, index_d$4_generateCodeVerifier as generateCodeVerifier, index_d$4_generateCompatibilityReport as generateCompatibilityReport, index_d$4_generateEncryptionKey as generateEncryptionKey, index_d$4_generatePKCEPair as generatePKCEPair, index_d$4_getActiveCookies as getActiveCookies, index_d$4_getAppShortName as getAppShortName, index_d$4_getAssetsConfig as getAssetsConfig, index_d$4_getAuthDomain as getAuthDomain, index_d$4_getAuthPartnerConfig as getAuthPartnerConfig, index_d$4_getAuthPartnerIdByFirebaseId as getAuthPartnerIdByFirebaseId, index_d$4_getAvailableFeatures as getAvailableFeatures, index_d$4_getBrowserRecommendations as getBrowserRecommendations, index_d$4_getConfigSection as getConfigSection, index_d$4_getConfigSource as getConfigSource, index_d$4_getCookie as getCookie, index_d$4_getCookieExamples as getCookieExamples, index_d$4_getCookiesByCategory as getCookiesByCategory, index_d$4_getCurrentOrigin as getCurrentOrigin, index_d$4_getCurrentTimestamp as getCurrentTimestamp, index_d$4_getDndevConfig as getDndevConfig, index_d$4_getEnabledAuthPartners as getEnabledAuthPartners, index_d$4_getEnabledOAuthPartners as getEnabledOAuthPartners, index_d$4_getEncryptionKey as getEncryptionKey, index_d$4_getFeatureSummary as getFeatureSummary, index_d$4_getI18nConfig as getI18nConfig, index_d$4_getLocalStorageItem as getLocalStorageItem, index_d$4_getNextEnvVar as getNextEnvVar, index_d$4_getOAuthClientId as getOAuthClientId, index_d$4_getOAuthPartnerConfig as getOAuthPartnerConfig, index_d$4_getOAuthRedirectUri as getOAuthRedirectUri, index_d$4_getOAuthRedirectUrl as getOAuthRedirectUrl, index_d$4_getPartnerCacheStatus as getPartnerCacheStatus, index_d$4_getPartnerConfig as getPartnerConfig, index_d$4_getPlatformEnvVar as getPlatformEnvVar, index_d$4_getProviderColor as getProviderColor, index_d$4_getRoutesConfig as getRoutesConfig, index_d$4_getStorageManager as getStorageManager, index_d$4_getThemesConfig as getThemesConfig, index_d$4_getTokenManager as getTokenManager, index_d$4_getValidAuthPartnerConfig as getValidAuthPartnerConfig, index_d$4_getValidAuthPartnerIds as getValidAuthPartnerIds, index_d$4_getValidOAuthPartnerConfig as getValidOAuthPartnerConfig, index_d$4_getValidOAuthPartnerIds as getValidOAuthPartnerIds, index_d$4_getVisibleFields as getVisibleFields, index_d$4_getVisibleItems as getVisibleItems, index_d$4_getViteEnvVar as getViteEnvVar, index_d$4_getWeekFromISOString as getWeekFromISOString, index_d$4_globalEmitter as globalEmitter, index_d$4_handleError as handleError, index_d$4_hasOptionalCookies as hasOptionalCookies, index_d$4_hasRoleAccess as hasRoleAccess, index_d$4_hasTierAccess as hasTierAccess, index_d$4_importEncryptionKey as importEncryptionKey, index_d$4_initSentry as initSentry, index_d$4_initializeConfig as initializeConfig, index_d$4_initializePlatformDetection as initializePlatformDetection, index_d$4_isAuthPartnerEnabled as isAuthPartnerEnabled, index_d$4_isClient as isClient, index_d$4_isCompactDateString as isCompactDateString, index_d$4_isConfigAvailable as isConfigAvailable, index_d$4_isDev as isDev, index_d$4_isElementInViewport as isElementInViewport, index_d$4_isEmailVerificationRequired as isEmailVerificationRequired, index_d$4_isFeatureAvailable as isFeatureAvailable, index_d$4_isFieldVisible as isFieldVisible, index_d$4_isIntersectionObserverSupported as isIntersectionObserverSupported, index_d$4_isLocalStorageAvailable as isLocalStorageAvailable, index_d$4_isNextJs as isNextJs, index_d$4_isOAuthPartnerEnabled as isOAuthPartnerEnabled, index_d$4_isPKCESupported as isPKCESupported, index_d$4_isPlatform as isPlatform, index_d$4_isServer as isServer, index_d$4_isTest as isTest, index_d$4_isVite as isVite, index_d$4_isoToCompactString as isoToCompactString, index_d$4_lazyImport as lazyImport, index_d$4_mapToDoNotDevError as mapToDoNotDevError, index_d$4_maybeTranslate as maybeTranslate, index_d$4_normalizeToISOString as normalizeToISOString, index_d$4_observeElement as observeElement, index_d$4_parseDate as parseDate, index_d$4_parseDateToNoonUTC as parseDateToNoonUTC, index_d$4_redirectToExternalUrl as redirectToExternalUrl, index_d$4_redirectToExternalUrlWithErrorHandling as redirectToExternalUrlWithErrorHandling, index_d$4_removeLocalStorageItem as removeLocalStorageItem, index_d$4_resolveAppConfig as resolveAppConfig, index_d$4_safeLocalStorage as safeLocalStorage, index_d$4_safeSessionStorage as safeSessionStorage, index_d$4_setCookie as setCookie, index_d$4_setLocalStorageItem as setLocalStorageItem, index_d$4_shouldShowEmailVerification as shouldShowEmailVerification, index_d$4_showNotification as showNotification, index_d$4_supportsFeature as supportsFeature, index_d$4_throttle as throttle, index_d$4_timestampToISOString as timestampToISOString, index_d$4_timingUtils as timingUtils, index_d$4_toDateOnly as toDateOnly, index_d$4_toISOString as toISOString, index_d$4_translateArray as translateArray, index_d$4_translateArrayRange as translateArrayRange, index_d$4_translateArrayWithIndices as translateArrayWithIndices, index_d$4_translateObjectArray as translateObjectArray, index_d$4_updateMetadata as updateMetadata, index_d$4_useSafeContext as useSafeContext, index_d$4_useStorageManager as useStorageManager, index_d$4_validateCodeChallenge as validateCodeChallenge, index_d$4_validateCodeVerifier as validateCodeVerifier, index_d$4_validateLicenseKey as validateLicenseKey, index_d$4_withErrorHandling as withErrorHandling, index_d$4_withGracefulDegradation as withGracefulDegradation };
18322
- export type { index_d$4_BrowserEngine as BrowserEngine, index_d$4_BrowserInfo as BrowserInfo, index_d$4_BrowserType as BrowserType, index_d$4_Claims as Claims, index_d$4_ClaimsCacheOptions as ClaimsCacheOptions, index_d$4_ClaimsCacheResult as ClaimsCacheResult, index_d$4_CleanupFunction as CleanupFunction, index_d$4_CompatibilityReport as CompatibilityReport, index_d$4_ConsentLevel as ConsentLevel, index_d$4_CookieInfo as CookieInfo, index_d$4_DateFormatOptions as DateFormatOptions, index_d$4_DateFormatPreset as DateFormatPreset, index_d$4_ErrorHandlerConfig as ErrorHandlerConfig, index_d$4_ErrorHandlerFunction as ErrorHandlerFunction, index_d$4_EventListener as EventListener, index_d$4_FeatureAvailability as FeatureAvailability, index_d$4_FeatureSupport as FeatureSupport, index_d$4_FrameworkFeature as FrameworkFeature, index_d$4_HandleErrorOptions as HandleErrorOptions, index_d$4_IStorageManager as IStorageManager, index_d$4_IntersectionObserverCallback as IntersectionObserverCallback, index_d$4_IntersectionObserverOptions as IntersectionObserverOptions, index_d$4_LicenseValidationResult as LicenseValidationResult, index_d$4_OS as OS, index_d$4_PlatformInfo as PlatformInfo, index_d$4_StorageError as StorageError, index_d$4_StorageErrorType as StorageErrorType, index_d$4_StorageOptions as StorageOptions, index_d$4_TokenManagerOptions as TokenManagerOptions, index_d$4_ViewportDetectionOptions as ViewportDetectionOptions, index_d$4_ViewportDetectionResult as ViewportDetectionResult };
18652
+ export { index_d$4_AUTH_COMPUTED_KEYS as AUTH_COMPUTED_KEYS, index_d$4_AUTH_STORE_KEYS as AUTH_STORE_KEYS, index_d$4_BILLING_STORE_KEYS as BILLING_STORE_KEYS, index_d$4_BaseStorageStrategy as BaseStorageStrategy, index_d$4_CONSENT_LEVELS as CONSENT_LEVELS, index_d$4_CURRENCY_MAP as CURRENCY_MAP, index_d$4_ClaimsCache as ClaimsCache, index_d$4_DEFAULT_ERROR_MESSAGES as DEFAULT_ERROR_MESSAGES, index_d$4_DEGRADED_AUTH_API as DEGRADED_AUTH_API, index_d$4_DEGRADED_BILLING_API as DEGRADED_BILLING_API, index_d$4_DEGRADED_CRUD_API as DEGRADED_CRUD_API, index_d$4_DEGRADED_OAUTH_API as DEGRADED_OAUTH_API, index_d$4_DoNotDevError as DoNotDevError, index_d$4_EventEmitter as EventEmitter, index_d$4_FRAMEWORK_FEATURES as FRAMEWORK_FEATURES, index_d$4_HybridStorageStrategy as HybridStorageStrategy, index_d$4_LocalStorageStrategy as LocalStorageStrategy, index_d$4_OAUTH_STORE_KEYS as OAUTH_STORE_KEYS, index_d$4_SingletonManager as SingletonManager, index_d$4_StorageManager as StorageManager, index_d$4_TokenManager as TokenManager, index_d$4_ViewportHandler as ViewportHandler, index_d$4_areFeaturesAvailable as areFeaturesAvailable, index_d$4_canRedirectExternally as canRedirectExternally, index_d$4_captureError as captureError, index_d$4_captureErrorToSentry as captureErrorToSentry, index_d$4_captureMessage as captureMessage, index_d$4_checkLicense as checkLicense, index_d$4_cleanupSentry as cleanupSentry, index_d$4_clearFeatureCache as clearFeatureCache, index_d$4_clearLocalStorage as clearLocalStorage, index_d$4_clearPartnerCache as clearPartnerCache, index_d$4_commonErrorCodeMappings as commonErrorCodeMappings, index_d$4_compactToISOString as compactToISOString, index_d$4_cooldown as cooldown, index_d$4_createAsyncSingleton as createAsyncSingleton, index_d$4_createErrorHandler as createErrorHandler, index_d$4_createMetadata as createMetadata, index_d$4_createMethodProxy as createMethodProxy, index_d$4_createProvider as createProvider, index_d$4_createProviders as createProviders, index_d$4_createSingleton as createSingleton, index_d$4_createSingletonWithParams as createSingletonWithParams, index_d$4_createViewportHandler as createViewportHandler, index_d$4_debounce as debounce, index_d$4_debugPlatformDetection as debugPlatformDetection, index_d$4_decryptData as decryptData, index_d$4_delay as delay, index_d$4_deleteCookie as deleteCookie, index_d$4_detectBrowser as detectBrowser, index_d$4_detectErrorSource as detectErrorSource, index_d$4_detectFeatures as detectFeatures, index_d$4_detectLicenseKey as detectLicenseKey, index_d$4_detectPlatform as detectPlatform, index_d$4_detectPlatformInfo as detectPlatformInfo, index_d$4_detectStorageError as detectStorageError, index_d$4_encryptData as encryptData, index_d$4_exportEncryptionKey as exportEncryptionKey, index_d$4_filterVisibleFields as filterVisibleFields, index_d$4_formatCookieList as formatCookieList, index_d$4_formatCurrency as formatCurrency, index_d$4_formatDate as formatDate, index_d$4_formatRelativeTime as formatRelativeTime, index_d$4_generateCodeChallenge as generateCodeChallenge, index_d$4_generateCodeVerifier as generateCodeVerifier, index_d$4_generateCompatibilityReport as generateCompatibilityReport, index_d$4_generateEncryptionKey as generateEncryptionKey, index_d$4_generatePKCEPair as generatePKCEPair, index_d$4_getActiveCookies as getActiveCookies, index_d$4_getAppShortName as getAppShortName, index_d$4_getAssetsConfig as getAssetsConfig, index_d$4_getAuthDomain as getAuthDomain, index_d$4_getAuthPartnerConfig as getAuthPartnerConfig, index_d$4_getAuthPartnerIdByFirebaseId as getAuthPartnerIdByFirebaseId, index_d$4_getAvailableFeatures as getAvailableFeatures, index_d$4_getBrowserRecommendations as getBrowserRecommendations, index_d$4_getConfigSection as getConfigSection, index_d$4_getConfigSource as getConfigSource, index_d$4_getCookie as getCookie, index_d$4_getCookieExamples as getCookieExamples, index_d$4_getCookiesByCategory as getCookiesByCategory, index_d$4_getCurrencyLocale as getCurrencyLocale, index_d$4_getCurrencySymbol as getCurrencySymbol, index_d$4_getCurrentOrigin as getCurrentOrigin, index_d$4_getCurrentTimestamp as getCurrentTimestamp, index_d$4_getDndevConfig as getDndevConfig, index_d$4_getEnabledAuthPartners as getEnabledAuthPartners, index_d$4_getEnabledOAuthPartners as getEnabledOAuthPartners, index_d$4_getEncryptionKey as getEncryptionKey, index_d$4_getFeatureSummary as getFeatureSummary, index_d$4_getI18nConfig as getI18nConfig, index_d$4_getLocalStorageItem as getLocalStorageItem, index_d$4_getNextEnvVar as getNextEnvVar, index_d$4_getOAuthClientId as getOAuthClientId, index_d$4_getOAuthPartnerConfig as getOAuthPartnerConfig, index_d$4_getOAuthRedirectUri as getOAuthRedirectUri, index_d$4_getOAuthRedirectUrl as getOAuthRedirectUrl, index_d$4_getPartnerCacheStatus as getPartnerCacheStatus, index_d$4_getPartnerConfig as getPartnerConfig, index_d$4_getPlatformEnvVar as getPlatformEnvVar, index_d$4_getProviderColor as getProviderColor, index_d$4_getRoutesConfig as getRoutesConfig, index_d$4_getStorageManager as getStorageManager, index_d$4_getThemesConfig as getThemesConfig, index_d$4_getTokenManager as getTokenManager, index_d$4_getValidAuthPartnerConfig as getValidAuthPartnerConfig, index_d$4_getValidAuthPartnerIds as getValidAuthPartnerIds, index_d$4_getValidOAuthPartnerConfig as getValidOAuthPartnerConfig, index_d$4_getValidOAuthPartnerIds as getValidOAuthPartnerIds, index_d$4_getVisibleFields as getVisibleFields, index_d$4_getVisibleItems as getVisibleItems, index_d$4_getViteEnvVar as getViteEnvVar, index_d$4_getWeekFromISOString as getWeekFromISOString, index_d$4_globalEmitter as globalEmitter, index_d$4_handleError as handleError, index_d$4_hasOptionalCookies as hasOptionalCookies, index_d$4_hasRoleAccess as hasRoleAccess, index_d$4_hasTierAccess as hasTierAccess, index_d$4_importEncryptionKey as importEncryptionKey, index_d$4_initSentry as initSentry, index_d$4_initializeConfig as initializeConfig, index_d$4_initializePlatformDetection as initializePlatformDetection, index_d$4_isAuthPartnerEnabled as isAuthPartnerEnabled, index_d$4_isClient as isClient, index_d$4_isCompactDateString as isCompactDateString, index_d$4_isConfigAvailable as isConfigAvailable, index_d$4_isDev as isDev, index_d$4_isElementInViewport as isElementInViewport, index_d$4_isEmailVerificationRequired as isEmailVerificationRequired, index_d$4_isFeatureAvailable as isFeatureAvailable, index_d$4_isFieldVisible as isFieldVisible, index_d$4_isIntersectionObserverSupported as isIntersectionObserverSupported, index_d$4_isLocalStorageAvailable as isLocalStorageAvailable, index_d$4_isNextJs as isNextJs, index_d$4_isOAuthPartnerEnabled as isOAuthPartnerEnabled, index_d$4_isPKCESupported as isPKCESupported, index_d$4_isPlatform as isPlatform, index_d$4_isServer as isServer, index_d$4_isTest as isTest, index_d$4_isVite as isVite, index_d$4_isoToCompactString as isoToCompactString, index_d$4_lazyImport as lazyImport, index_d$4_mapToDoNotDevError as mapToDoNotDevError, index_d$4_maybeTranslate as maybeTranslate, index_d$4_normalizeToISOString as normalizeToISOString, index_d$4_observeElement as observeElement, index_d$4_parseDate as parseDate, index_d$4_parseDateToNoonUTC as parseDateToNoonUTC, index_d$4_redirectToExternalUrl as redirectToExternalUrl, index_d$4_redirectToExternalUrlWithErrorHandling as redirectToExternalUrlWithErrorHandling, index_d$4_removeLocalStorageItem as removeLocalStorageItem, index_d$4_resolveAppConfig as resolveAppConfig, index_d$4_safeLocalStorage as safeLocalStorage, index_d$4_safeSessionStorage as safeSessionStorage, index_d$4_setCookie as setCookie, index_d$4_setLocalStorageItem as setLocalStorageItem, index_d$4_shouldShowEmailVerification as shouldShowEmailVerification, index_d$4_showNotification as showNotification, index_d$4_supportsFeature as supportsFeature, index_d$4_throttle as throttle, index_d$4_timestampToISOString as timestampToISOString, index_d$4_timingUtils as timingUtils, index_d$4_toDateOnly as toDateOnly, index_d$4_toISOString as toISOString, index_d$4_translateArray as translateArray, index_d$4_translateArrayRange as translateArrayRange, index_d$4_translateArrayWithIndices as translateArrayWithIndices, index_d$4_translateObjectArray as translateObjectArray, index_d$4_updateMetadata as updateMetadata, index_d$4_useSafeContext as useSafeContext, index_d$4_useStorageManager as useStorageManager, index_d$4_validateCodeChallenge as validateCodeChallenge, index_d$4_validateCodeVerifier as validateCodeVerifier, index_d$4_validateLicenseKey as validateLicenseKey, index_d$4_withErrorHandling as withErrorHandling, index_d$4_withGracefulDegradation as withGracefulDegradation };
18653
+ export type { index_d$4_BrowserEngine as BrowserEngine, index_d$4_BrowserInfo as BrowserInfo, index_d$4_BrowserType as BrowserType, index_d$4_Claims as Claims, index_d$4_ClaimsCacheOptions as ClaimsCacheOptions, index_d$4_ClaimsCacheResult as ClaimsCacheResult, index_d$4_CleanupFunction as CleanupFunction, index_d$4_CompatibilityReport as CompatibilityReport, index_d$4_ConsentLevel as ConsentLevel, index_d$4_CookieInfo as CookieInfo, index_d$4_CurrencyEntry as CurrencyEntry, index_d$4_DateFormatOptions as DateFormatOptions, index_d$4_DateFormatPreset as DateFormatPreset, index_d$4_ErrorHandlerConfig as ErrorHandlerConfig, index_d$4_ErrorHandlerFunction as ErrorHandlerFunction, index_d$4_EventListener as EventListener, index_d$4_FeatureAvailability as FeatureAvailability, index_d$4_FeatureSupport as FeatureSupport, index_d$4_FrameworkFeature as FrameworkFeature, index_d$4_HandleErrorOptions as HandleErrorOptions, index_d$4_IStorageManager as IStorageManager, index_d$4_IntersectionObserverCallback as IntersectionObserverCallback, index_d$4_IntersectionObserverOptions as IntersectionObserverOptions, index_d$4_LicenseValidationResult as LicenseValidationResult, index_d$4_OS as OS, index_d$4_PlatformInfo as PlatformInfo, index_d$4_StorageError as StorageError, index_d$4_StorageErrorType as StorageErrorType, index_d$4_StorageOptions as StorageOptions, index_d$4_TokenManagerOptions as TokenManagerOptions, index_d$4_ViewportDetectionOptions as ViewportDetectionOptions, index_d$4_ViewportDetectionResult as ViewportDetectionResult };
18323
18654
  }
18324
18655
 
18325
18656
  /**
@@ -19416,6 +19747,34 @@ declare function getRegisteredSchemaTypes(): string[];
19416
19747
  * Clear all schema generators (testing)
19417
19748
  */
19418
19749
  declare function clearSchemaGenerators(): void;
19750
+ /**
19751
+ * Schema generators exported for unified registry
19752
+ * These are also auto-registered below for backward compatibility
19753
+ */
19754
+ declare const textSchema: CustomSchemaGenerator;
19755
+ declare const emailSchema: CustomSchemaGenerator;
19756
+ declare const passwordSchema: CustomSchemaGenerator;
19757
+ declare const urlSchema: CustomSchemaGenerator;
19758
+ declare const numberSchema: CustomSchemaGenerator;
19759
+ declare const booleanSchema: CustomSchemaGenerator;
19760
+ declare const dateSchema: CustomSchemaGenerator;
19761
+ declare const fileSchema: CustomSchemaGenerator;
19762
+ declare const filesSchema: CustomSchemaGenerator;
19763
+ declare const pictureSchema: CustomSchemaGenerator;
19764
+ declare const picturesSchema: CustomSchemaGenerator;
19765
+ declare const geopointSchema: CustomSchemaGenerator;
19766
+ declare const addressSchema: CustomSchemaGenerator;
19767
+ declare const mapSchema: CustomSchemaGenerator;
19768
+ declare const arraySchema: CustomSchemaGenerator;
19769
+ declare const selectSchema: CustomSchemaGenerator;
19770
+ declare const multiselectSchema: CustomSchemaGenerator;
19771
+ declare const referenceSchema: CustomSchemaGenerator;
19772
+ declare const stringSchema: CustomSchemaGenerator;
19773
+ declare const telSchema: CustomSchemaGenerator;
19774
+ declare const neverSchema: CustomSchemaGenerator;
19775
+ declare const switchSchema: CustomSchemaGenerator;
19776
+ declare const gdprConsentSchema: CustomSchemaGenerator;
19777
+ declare const priceSchema: CustomSchemaGenerator;
19419
19778
  /**
19420
19779
  * Get Valibot schema for an entity field
19421
19780
  *
@@ -19801,6 +20160,131 @@ interface SelectOption {
19801
20160
  */
19802
20161
  declare function rangeOptions(start: number, end: number, step?: number, descending?: boolean): SelectOption[];
19803
20162
 
20163
+ /**
20164
+ * @fileoverview Scope Provider Registry for Multi-Tenancy
20165
+ * @description Global registry for scope providers that supply tenant/company/workspace IDs
20166
+ * to CRUD operations. Apps register providers once, entities declare which provider to use.
20167
+ *
20168
+ * @example
20169
+ * ```typescript
20170
+ * // 1. App registers scope provider (once, at startup)
20171
+ * import { registerScopeProvider } from '@donotdev/core';
20172
+ * import { useCurrentCompanyStore } from './stores/currentCompanyStore';
20173
+ *
20174
+ * registerScopeProvider('company', () =>
20175
+ * useCurrentCompanyStore.getState().currentCompanyId
20176
+ * );
20177
+ *
20178
+ * // 2. Entity declares scope
20179
+ * const clientEntity = defineEntity({
20180
+ * name: 'Client',
20181
+ * collection: 'clients',
20182
+ * scope: { field: 'companyId', provider: 'company' },
20183
+ * fields: { ... }
20184
+ * });
20185
+ *
20186
+ * // 3. CRUD operations auto-inject/filter by scope (transparent)
20187
+ * const { add } = useCrud(clientEntity);
20188
+ * await add({ name: 'Acme' }); // companyId auto-injected
20189
+ * ```
20190
+ *
20191
+ * @version 0.0.4
20192
+ * @since 0.0.4
20193
+ * @author AMBROISE PARK Consulting
20194
+ */
20195
+ /**
20196
+ * Function that returns the current scope ID from app state
20197
+ * Returns null if no scope is currently selected (e.g., no company selected)
20198
+ */
20199
+ type ScopeProviderFn = () => string | null;
20200
+ /**
20201
+ * Register a scope provider function
20202
+ *
20203
+ * Call this once at app startup to register scope providers.
20204
+ * The provider function should return the current scope ID from your app's state.
20205
+ *
20206
+ * @param name - Provider name (e.g., 'company', 'tenant', 'workspace')
20207
+ * @param provider - Function that returns the current scope ID
20208
+ *
20209
+ * @example
20210
+ * ```typescript
20211
+ * // Using Zustand store
20212
+ * registerScopeProvider('company', () =>
20213
+ * useCurrentCompanyStore.getState().currentCompanyId
20214
+ * );
20215
+ *
20216
+ * // Using React context (via ref)
20217
+ * const companyIdRef = { current: null };
20218
+ * registerScopeProvider('company', () => companyIdRef.current);
20219
+ * // Update ref in your context provider
20220
+ * ```
20221
+ *
20222
+ * @version 0.0.4
20223
+ * @since 0.0.4
20224
+ * @author AMBROISE PARK Consulting
20225
+ */
20226
+ declare function registerScopeProvider(name: string, provider: ScopeProviderFn): void;
20227
+ /**
20228
+ * Unregister a scope provider (for testing or cleanup)
20229
+ *
20230
+ * @param name - Provider name to unregister
20231
+ *
20232
+ * @version 0.0.4
20233
+ * @since 0.0.4
20234
+ * @author AMBROISE PARK Consulting
20235
+ */
20236
+ declare function unregisterScopeProvider(name: string): void;
20237
+ /**
20238
+ * Get the current scope value from a registered provider
20239
+ *
20240
+ * Used internally by CRUD operations to inject/filter by scope.
20241
+ *
20242
+ * @param providerName - Name of the registered provider
20243
+ * @returns Current scope ID, or null if not available
20244
+ *
20245
+ * @example
20246
+ * ```typescript
20247
+ * const companyId = getScopeValue('company');
20248
+ * if (!companyId) {
20249
+ * throw new Error('No company selected');
20250
+ * }
20251
+ * ```
20252
+ *
20253
+ * @version 0.0.4
20254
+ * @since 0.0.4
20255
+ * @author AMBROISE PARK Consulting
20256
+ */
20257
+ declare function getScopeValue(providerName: string): string | null;
20258
+ /**
20259
+ * Check if a scope provider is registered
20260
+ *
20261
+ * @param providerName - Name of the provider to check
20262
+ * @returns True if provider is registered
20263
+ *
20264
+ * @version 0.0.4
20265
+ * @since 0.0.4
20266
+ * @author AMBROISE PARK Consulting
20267
+ */
20268
+ declare function hasScopeProvider(providerName: string): boolean;
20269
+ /**
20270
+ * Get all registered scope provider names (for debugging)
20271
+ *
20272
+ * @returns Array of registered provider names
20273
+ *
20274
+ * @version 0.0.4
20275
+ * @since 0.0.4
20276
+ * @author AMBROISE PARK Consulting
20277
+ */
20278
+ declare function getRegisteredScopeProviders(): string[];
20279
+ /**
20280
+ * Clear all scope providers (for testing)
20281
+ *
20282
+ * @version 0.0.4
20283
+ * @since 0.0.4
20284
+ * @author AMBROISE PARK Consulting
20285
+ */
20286
+ declare function clearScopeProviders(): void;
20287
+
19804
20288
  /**
19805
20289
  * @fileoverview Schemas package exports
19806
20290
  * @description Schema definitions and validation utilities
@@ -19819,32 +20303,63 @@ declare const index_d$2_DEFAULT_STATUS_VALUE: typeof DEFAULT_STATUS_VALUE;
19819
20303
  declare const index_d$2_HIDDEN_STATUSES: typeof HIDDEN_STATUSES;
19820
20304
  type index_d$2_OperationSchemas = OperationSchemas;
19821
20305
  type index_d$2_SchemaWithVisibility = SchemaWithVisibility;
20306
+ type index_d$2_ScopeProviderFn = ScopeProviderFn;
19822
20307
  type index_d$2_SelectOption = SelectOption;
19823
20308
  type index_d$2_StatusField = StatusField;
19824
20309
  declare const index_d$2_TECHNICAL_FIELD_NAMES: typeof TECHNICAL_FIELD_NAMES;
19825
20310
  type index_d$2_TechnicalField = TechnicalField;
19826
20311
  type index_d$2_TypedBaseFields = TypedBaseFields;
20312
+ declare const index_d$2_addressSchema: typeof addressSchema;
20313
+ declare const index_d$2_arraySchema: typeof arraySchema;
19827
20314
  declare const index_d$2_baseFields: typeof baseFields;
20315
+ declare const index_d$2_booleanSchema: typeof booleanSchema;
19828
20316
  declare const index_d$2_clearSchemaGenerators: typeof clearSchemaGenerators;
20317
+ declare const index_d$2_clearScopeProviders: typeof clearScopeProviders;
19829
20318
  declare const index_d$2_createSchemas: typeof createSchemas;
20319
+ declare const index_d$2_dateSchema: typeof dateSchema;
19830
20320
  declare const index_d$2_defineEntity: typeof defineEntity;
20321
+ declare const index_d$2_emailSchema: typeof emailSchema;
19831
20322
  declare const index_d$2_enhanceSchema: typeof enhanceSchema;
20323
+ declare const index_d$2_fileSchema: typeof fileSchema;
20324
+ declare const index_d$2_filesSchema: typeof filesSchema;
20325
+ declare const index_d$2_gdprConsentSchema: typeof gdprConsentSchema;
20326
+ declare const index_d$2_geopointSchema: typeof geopointSchema;
19832
20327
  declare const index_d$2_getCollectionName: typeof getCollectionName;
19833
20328
  declare const index_d$2_getRegisteredSchemaTypes: typeof getRegisteredSchemaTypes;
20329
+ declare const index_d$2_getRegisteredScopeProviders: typeof getRegisteredScopeProviders;
19834
20330
  declare const index_d$2_getSchemaType: typeof getSchemaType;
20331
+ declare const index_d$2_getScopeValue: typeof getScopeValue;
19835
20332
  declare const index_d$2_hasCustomSchemaGenerator: typeof hasCustomSchemaGenerator;
19836
20333
  declare const index_d$2_hasMetadata: typeof hasMetadata;
20334
+ declare const index_d$2_hasScopeProvider: typeof hasScopeProvider;
19837
20335
  declare const index_d$2_isBackendGeneratedField: typeof isBackendGeneratedField;
19838
20336
  declare const index_d$2_isFrameworkField: typeof isFrameworkField;
20337
+ declare const index_d$2_mapSchema: typeof mapSchema;
20338
+ declare const index_d$2_multiselectSchema: typeof multiselectSchema;
20339
+ declare const index_d$2_neverSchema: typeof neverSchema;
20340
+ declare const index_d$2_numberSchema: typeof numberSchema;
20341
+ declare const index_d$2_passwordSchema: typeof passwordSchema;
20342
+ declare const index_d$2_pictureSchema: typeof pictureSchema;
20343
+ declare const index_d$2_picturesSchema: typeof picturesSchema;
20344
+ declare const index_d$2_priceSchema: typeof priceSchema;
19839
20345
  declare const index_d$2_rangeOptions: typeof rangeOptions;
20346
+ declare const index_d$2_referenceSchema: typeof referenceSchema;
19840
20347
  declare const index_d$2_registerSchemaGenerator: typeof registerSchemaGenerator;
20348
+ declare const index_d$2_registerScopeProvider: typeof registerScopeProvider;
19841
20349
  declare const index_d$2_registerUniqueConstraintValidator: typeof registerUniqueConstraintValidator;
20350
+ declare const index_d$2_selectSchema: typeof selectSchema;
20351
+ declare const index_d$2_stringSchema: typeof stringSchema;
20352
+ declare const index_d$2_switchSchema: typeof switchSchema;
20353
+ declare const index_d$2_telSchema: typeof telSchema;
20354
+ declare const index_d$2_textSchema: typeof textSchema;
20355
+ declare const index_d$2_unregisterScopeProvider: typeof unregisterScopeProvider;
20356
+ declare const index_d$2_urlSchema: typeof urlSchema;
19842
20357
  declare const index_d$2_validateDates: typeof validateDates;
19843
20358
  declare const index_d$2_validateDocument: typeof validateDocument;
19844
20359
  declare const index_d$2_validateUniqueFields: typeof validateUniqueFields;
19845
20360
  declare namespace index_d$2 {
19846
- export { index_d$2_BACKEND_GENERATED_FIELD_NAMES as BACKEND_GENERATED_FIELD_NAMES, index_d$2_DEFAULT_STATUS_OPTIONS as DEFAULT_STATUS_OPTIONS, index_d$2_DEFAULT_STATUS_VALUE as DEFAULT_STATUS_VALUE, index_d$2_HIDDEN_STATUSES as HIDDEN_STATUSES, index_d$2_TECHNICAL_FIELD_NAMES as TECHNICAL_FIELD_NAMES, index_d$2_baseFields as baseFields, index_d$2_clearSchemaGenerators as clearSchemaGenerators, index_d$2_createSchemas as createSchemas, index_d$2_defineEntity as defineEntity, index_d$2_enhanceSchema as enhanceSchema, index_d$2_getCollectionName as getCollectionName, index_d$2_getRegisteredSchemaTypes as getRegisteredSchemaTypes, index_d$2_getSchemaType as getSchemaType, index_d$2_hasCustomSchemaGenerator as hasCustomSchemaGenerator, index_d$2_hasMetadata as hasMetadata, index_d$2_isBackendGeneratedField as isBackendGeneratedField, index_d$2_isFrameworkField as isFrameworkField, index_d$2_rangeOptions as rangeOptions, index_d$2_registerSchemaGenerator as registerSchemaGenerator, index_d$2_registerUniqueConstraintValidator as registerUniqueConstraintValidator, index_d$2_validateDates as validateDates, index_d$2_validateDocument as validateDocument, index_d$2_validateUniqueFields as validateUniqueFields };
19847
- export type { index_d$2_BackendGeneratedField as BackendGeneratedField, index_d$2_CustomSchemaGenerator as CustomSchemaGenerator, index_d$2_OperationSchemas as OperationSchemas, index_d$2_SchemaWithVisibility as SchemaWithVisibility, index_d$2_SelectOption as SelectOption, index_d$2_StatusField as StatusField, index_d$2_TechnicalField as TechnicalField, index_d$2_TypedBaseFields as TypedBaseFields };
20361
+ export { index_d$2_BACKEND_GENERATED_FIELD_NAMES as BACKEND_GENERATED_FIELD_NAMES, index_d$2_DEFAULT_STATUS_OPTIONS as DEFAULT_STATUS_OPTIONS, index_d$2_DEFAULT_STATUS_VALUE as DEFAULT_STATUS_VALUE, index_d$2_HIDDEN_STATUSES as HIDDEN_STATUSES, index_d$2_TECHNICAL_FIELD_NAMES as TECHNICAL_FIELD_NAMES, index_d$2_addressSchema as addressSchema, index_d$2_arraySchema as arraySchema, index_d$2_baseFields as baseFields, index_d$2_booleanSchema as booleanSchema, index_d$2_clearSchemaGenerators as clearSchemaGenerators, index_d$2_clearScopeProviders as clearScopeProviders, index_d$2_createSchemas as createSchemas, index_d$2_dateSchema as dateSchema, index_d$2_defineEntity as defineEntity, index_d$2_emailSchema as emailSchema, index_d$2_enhanceSchema as enhanceSchema, index_d$2_fileSchema as fileSchema, index_d$2_filesSchema as filesSchema, index_d$2_gdprConsentSchema as gdprConsentSchema, index_d$2_geopointSchema as geopointSchema, index_d$2_getCollectionName as getCollectionName, index_d$2_getRegisteredSchemaTypes as getRegisteredSchemaTypes, index_d$2_getRegisteredScopeProviders as getRegisteredScopeProviders, index_d$2_getSchemaType as getSchemaType, index_d$2_getScopeValue as getScopeValue, index_d$2_hasCustomSchemaGenerator as hasCustomSchemaGenerator, index_d$2_hasMetadata as hasMetadata, index_d$2_hasScopeProvider as hasScopeProvider, index_d$2_isBackendGeneratedField as isBackendGeneratedField, index_d$2_isFrameworkField as isFrameworkField, index_d$2_mapSchema as mapSchema, index_d$2_multiselectSchema as multiselectSchema, index_d$2_neverSchema as neverSchema, index_d$2_numberSchema as numberSchema, index_d$2_passwordSchema as passwordSchema, index_d$2_pictureSchema as pictureSchema, index_d$2_picturesSchema as picturesSchema, index_d$2_priceSchema as priceSchema, index_d$2_rangeOptions as rangeOptions, index_d$2_referenceSchema as referenceSchema, index_d$2_registerSchemaGenerator as registerSchemaGenerator, index_d$2_registerScopeProvider as registerScopeProvider, index_d$2_registerUniqueConstraintValidator as registerUniqueConstraintValidator, index_d$2_selectSchema as selectSchema, index_d$2_stringSchema as stringSchema, index_d$2_switchSchema as switchSchema, index_d$2_telSchema as telSchema, index_d$2_textSchema as textSchema, index_d$2_unregisterScopeProvider as unregisterScopeProvider, index_d$2_urlSchema as urlSchema, index_d$2_validateDates as validateDates, index_d$2_validateDocument as validateDocument, index_d$2_validateUniqueFields as validateUniqueFields };
20362
+ export type { index_d$2_BackendGeneratedField as BackendGeneratedField, index_d$2_CustomSchemaGenerator as CustomSchemaGenerator, index_d$2_OperationSchemas as OperationSchemas, index_d$2_SchemaWithVisibility as SchemaWithVisibility, index_d$2_ScopeProviderFn as ScopeProviderFn, index_d$2_SelectOption as SelectOption, index_d$2_StatusField as StatusField, index_d$2_TechnicalField as TechnicalField, index_d$2_TypedBaseFields as TypedBaseFields };
19848
20363
  }
19849
20364
 
19850
20365
  declare class Subscribable<TListener extends Function> {
@@ -22482,7 +22997,7 @@ declare function AppConfigProvider({ config, platform, children, }: AppConfigPro
22482
22997
  */
22483
22998
  declare function useAppConfig(): AppConfig;
22484
22999
  declare function useAppConfig(key: 'app'): AppMetadata | undefined;
22485
- declare function useAppConfig(key: 'url' | 'name' | 'shortName' | 'description'): string;
23000
+ declare function useAppConfig(key: 'name' | 'shortName' | 'description'): string;
22486
23001
  /**
22487
23002
  * useAuthConfig hook
22488
23003
  *
@@ -23293,5 +23808,5 @@ declare namespace index_d {
23293
23808
  export type { index_d_CountryData as CountryData, index_d_DoNotDevTransProps as DoNotDevTransProps, index_d_FAQSectionProps as FAQSectionProps, index_d_LanguageData as LanguageData, index_d_TransTag as TransTag };
23294
23809
  }
23295
23810
 
23296
- export { AUTH_COMPUTED_KEYS, AUTH_EVENTS, AUTH_PARTNERS, AUTH_PARTNER_STATE, AUTH_STORE_KEYS, AppConfigContext, AppConfigProvider, AuthUserSchema, BACKEND_GENERATED_FIELD_NAMES, BILLING_EVENTS, BILLING_STORE_KEYS, BREAKPOINT_RANGES, BREAKPOINT_THRESHOLDS, BaseStorageStrategy, COMMON_TIER_CONFIGS, CONFIDENCE_LEVELS, CONSENT_CATEGORY, CONSENT_LEVELS, CONTEXTS, COUNTRIES, CheckoutSessionMetadataSchema, ClaimsCache, CreateCheckoutSessionRequestSchema, CreateCheckoutSessionResponseSchema, CustomClaimsSchema, DEFAULT_ENTITY_ACCESS, DEFAULT_ERROR_MESSAGES, DEFAULT_LAYOUT_PRESET, DEFAULT_STATUS_OPTIONS, DEFAULT_STATUS_VALUE, DEFAULT_SUBSCRIPTION, DEGRADED_AUTH_API, DEGRADED_BILLING_API, DEGRADED_CRUD_API, DEGRADED_OAUTH_API, DENSITY, DoNotDevError, ENVIRONMENTS, EntityHookError, EventEmitter, FAQSection, FEATURES, FEATURE_CONSENT_MATRIX, FEATURE_STATUS, FIREBASE_ERROR_MAP, FIRESTORE_ID_PATTERN, FRAMEWORK_FEATURES, Flag, GITHUB_PERMISSION_LEVELS, HIDDEN_STATUSES, index_d$1 as Hooks, HybridStorageStrategy, index_d as I18n, LANGUAGES, LAYOUT_PRESET, LanguageFAB, LanguageSelector, LanguageToggleGroup, LocalStorageStrategy, OAUTH_EVENTS, OAUTH_PARTNERS, OAUTH_STORE_KEYS, PARTNER_ICONS, PAYLOAD_EVENTS, PERMISSIONS, PLATFORMS, PWA_ASSET_TYPES, PWA_DISPLAY_MODES, ProductDeclarationSchema, ProductDeclarationsSchema, QueryClient, QueryClientProvider, QueryProviders, ROUTE_SOURCES, STORAGE_SCOPES, STORAGE_TYPES, STRIPE_EVENTS, STRIPE_MODES, SUBSCRIPTION_DURATIONS, SUBSCRIPTION_STATUS, SUBSCRIPTION_TIERS, index_d$2 as Schemas, SingletonManager, StorageManager, index_d$3 as Stores, StripeBackConfigSchema, StripeFrontConfigSchema, StripePaymentSchema, StripeSubscriptionSchema, SubscriptionClaimsSchema, SubscriptionDataSchema, TECHNICAL_FIELD_NAMES, TRANS_TAGS, TokenManager, Trans, TranslatedText, index_d$5 as Types, USER_ROLES, UserSubscriptionSchema, index_d$4 as Utils, ViewportHandler, WebhookEventSchema, applyTheme, areFeaturesAvailable, baseFields, buildRoutePath, canRedirectExternally, captureError, captureErrorToSentry, captureMessage, checkGitHubAccessSchema, checkLicense, cleanupSentry, clearFeatureCache, clearLocalStorage, clearPartnerCache, clearSchemaGenerators, commonErrorCodeMappings, compactToISOString, cooldown, createAsyncSingleton, createDefaultSubscriptionClaims, createDefaultUserProfile, createDoNotDevStore, createEntitySchema, createErrorHandler, createMetadata, createMethodProxy, createProvider, createProviders, createSchemas, createSingleton, createSingletonWithParams, createViewportHandler, debounce, debugPlatformDetection, decryptData, defineEntity, delay, deleteCookie, deleteEntitySchema, detectBrowser, detectErrorSource, detectFeatures, detectLicenseKey, detectPlatform, detectPlatformInfo, detectStorageError, disconnectOAuthSchema, encryptData, enhanceSchema, exchangeTokenSchema, exportEncryptionKey, extractRoutePath, filterVisibleFields, formatCookieList, formatDate, formatRelativeTime, generateCodeChallenge, generateCodeVerifier, generateCompatibilityReport, generateEncryptionKey, generatePKCEPair, getActiveCookies, getAppShortName, getAssetsConfig, getAuthDomain, getAuthPartnerConfig, getAuthPartnerIdByFirebaseId, getAvailableFeatures, getAvailableThemeNames, getAvailableThemes, getBreakpointFromWidth, getBreakpointUtils, getBrowserRecommendations, getCollectionName, getConfigSection, getConfigSource, getConnectionsSchema, getCookie, getCookieExamples, getCookiesByCategory, getCountries, getCurrentOrigin, getCurrentTimestamp, getDndevConfig, getEnabledAuthPartners, getEnabledOAuthPartners, getEncryptionKey, getEntitySchema, getFeatureSummary, getFlagCodes, getI18nConfig, getI18nInstance, getLocalStorageItem, getNextEnvVar, getOAuthClientId, getOAuthPartnerConfig, getOAuthRedirectUri, getOAuthRedirectUrl, getPartnerCacheStatus, getPartnerConfig, getPlatformEnvVar, getProviderColor, getQueryClient, getRegisteredSchemaTypes, getRouteManifest, getRouteSource, getRoutes, getRoutesConfig, getSchemaType, getSmartDefaults, getStorageManager, getThemeInfo, getThemesConfig, getTokenManager, getValidAuthPartnerConfig, getValidAuthPartnerIds, getValidOAuthPartnerConfig, getValidOAuthPartnerIds, getVisibleFields, getVisibleItems, getViteEnvVar, getWeekFromISOString, githubPermissionSchema, githubRepoConfigSchema, globalEmitter, grantGitHubAccessSchema, handleError, hasCustomSchemaGenerator, hasFlag, hasMetadata, hasOptionalCookies, hasRoleAccess, hasTierAccess, importEncryptionKey, initSentry, initializeConfig, initializePlatformDetection, isAuthPartnerEnabled, isAuthPartnerId, isBackendGeneratedField, isBreakpoint, isClient, isCompactDateString, isConfigAvailable, isDev, isDoNotDevStore, isElementInViewport, isEmailVerificationRequired, isFeatureAvailable, isFieldVisible, isFrameworkField, isIntersectionObserverSupported, isLocalStorageAvailable, isNextJs, isOAuthPartnerEnabled, isOAuthPartnerId, isPKCESupported, isPlatform, isServer, isTest, isValidTheme, isVite, isoToCompactString, lazyImport, listEntitiesSchema, mapToDoNotDevError, maybeTranslate, normalizeToISOString, observeElement, overrideFeatures, overridePaymentModes, overridePermissions, overrideSubscriptionStatus, overrideSubscriptionTiers, overrideUserRoles, parseDate, parseDateToNoonUTC, queryClient, rangeOptions, redirectToExternalUrl, redirectToExternalUrlWithErrorHandling, refreshTokenSchema, registerSchemaGenerator, registerUniqueConstraintValidator, removeLocalStorageItem, resolveAppConfig, resolveAuthConfig, resolvePageMeta, revokeGitHubAccessSchema, safeLocalStorage, safeSessionStorage, setCookie, setLocalStorageItem, shouldShowEmailVerification, showNotification, supportsFeature, throttle, timestampToISOString, timingUtils, toDateOnly, toISOString, translateArray, translateArrayRange, translateArrayWithIndices, translateObjectArray, updateEntitySchema, updateMetadata, useAbortControllerStore, useAnalyticsConsent, useAppConfig, useAuthConfig, useBreakpoint, useBreathingTimer, useClickOutside, useConsent, useConsentReady, useConsentStore, useDebounce, useEventListener, useFaviconConfig, useFeatureConsent, useFeaturesConfig, useFunctionalConsent, useHasConsented, useI18nReady, useIntersectionObserver, useIsClient, useLanguageSelector, useLayout, useLocalStorage, useMarketingConsent, useMutation, useNavigationStore, useNetwork, useNetworkConnectionType, useNetworkOnline, useNetworkStatus, useNetworkStore, useOverlay, useOverlayStore, useQuery, useQueryClient, useRateLimit, useSafeContext, useScriptLoader, useSeoConfig, useStorageManager, useTheme, useThemeReady, useThemeStore, useTranslation, useViewportVisibility, validateAuthPartners, validateAuthSchemas, validateAuthUser, validateBillingSchemas, validateCheckoutSessionMetadata, validateCodeChallenge, validateCodeVerifier, validateCreateCheckoutSessionRequest, validateCreateCheckoutSessionResponse, validateCustomClaims, validateDates, validateDocument, validateLicenseKey, validateOAuthPartners, validateStripeBackConfig, validateStripeFrontConfig, validateSubscriptionClaims, validateSubscriptionData, validateUniqueFields, validateUserSubscription, validateWebhookEvent, withErrorHandling, withGracefulDegradation };
23297
- export type { AccountLinkResult, AccountLinkingInfo, AdminCheckHookResult, AdminClaims, AggregateConfig, AggregateFilterOperator, AggregateOperation, AggregateRequest, AggregateResponse, ApiResponse, AppConfig, AppConfigProviderProps, AppCookieCategories, AppMetadata, AppProvidersProps, AssetsPluginConfig, AttemptRecord, AuthAPI, AuthActions, AuthConfig, AuthContextValue, AuthCoreHookResult, AuthError, AuthEventData, AuthEventKey, AuthEventName, AuthMethod, AuthPartner, AuthPartnerButton, AuthPartnerHookResult, AuthPartnerId, AuthPartnerResult, AuthPartnerState, AuthProvider, AuthProviderProps, AuthRedirectHookResult, AuthRedirectOperation, AuthRedirectOptions, AuthResult, AuthState, AuthStateStore, AuthStatus, AuthTokenHookResult, AuthUser, BackendGeneratedField, BaseActions, BaseCredentials, BaseDocument, BaseEntityFields, BasePartnerState, BaseState, BaseStoreActions, BaseStoreState, BaseUserProfile, BasicUserInfo, BillingAPI, BillingAdapter, BillingErrorCode, BillingEvent, BillingEventData, BillingEventKey, BillingEventName, BillingProvider, BillingProviderConfig, BillingRedirectOperation, Breakpoint, BreakpointAPI, BreakpointUtils, BrowserEngine, BrowserInfo, BrowserType, BusinessEntity, CachedError, CanAPI, CheckGitHubAccessRequest, CheckoutMode, CheckoutOptions, CheckoutSessionMetadata, Claims, ClaimsCacheOptions, ClaimsCacheResult, CleanupFunction, ColumnDef, CommonSubscriptionFeatures, CommonTranslations, CompatibilityReport, ConfidenceLevel, ConsentAPI, ConsentActions, ConsentCategory, ConsentLevel, ConsentState, Context, CookieInfo, CookieOptions, CountryData, CreateCheckoutSessionRequest, CreateCheckoutSessionResponse, CreateEntityData, CreateEntityRequest, CreateEntityResponse, CrudAPI, CrudConfig, CustomClaims, CustomSchemaGenerator, CustomStoreConfig, DateFormatOptions, DateFormatPreset, DateValue, DeleteEntityRequest, DeleteEntityResponse, Density, DnDevOverride, DndevFrameworkConfig, DoNotDevCookieCategories, DoNotDevStore, DoNotDevStoreConfig, DoNotDevStoreState, DoNotDevTransProps, DynamicFormRule, Editable, EffectiveConnectionType, EmailVerificationHookResult, EmailVerificationStatus, Entity, EntityAccessConfig, EntityAccessDefaults, EntityField, EntityHookErrors, EntityMetadata, EntityTemplateProps, EntityTranslations, EnvironmentMode, ErrorCode, ErrorHandlerConfig, ErrorHandlerFunction, ErrorSeverity, ErrorSource, EventListener, ExchangeTokenParams, ExchangeTokenRequest, FAQSectionProps, FaviconConfig, Feature, FeatureAccessHookResult, FeatureAvailability, FeatureConsentRequirement, FeatureHookResult, FeatureId, FeatureName, FeatureStatus, FeatureSupport, FeaturesConfig, FeaturesPluginConfig, FeaturesRequiringAnyConsent, FeaturesRequiringConsent, FeaturesWithoutConsent, FieldCondition, FieldType, FieldTypeToValue, FileAsset, FirebaseCallOptions, FirebaseConfig, FirestoreTimestamp, FirestoreUniqueConstraintValidator, FooterConfig, FooterZoneConfig, FormConfig, FormStep, FrameworkFeature, FunctionCallConfig, FunctionCallContext, FunctionCallOptions, FunctionCallResult, FunctionClient, FunctionClientFactoryOptions, FunctionDefaults, FunctionEndpoint, FunctionError, FunctionLoader, FunctionMemory, FunctionMeta, FunctionPlatform, FunctionResponse, FunctionSchema, FunctionSchemas, FunctionSystem, FunctionTrigger, FunctionsConfig, GetCustomClaimsResponse, GetEntityData, GetEntityRequest, GetEntityResponse, GetUserAuthStatusResponse, GitHubPermission, GitHubRepoConfig, GrantGitHubAccessRequest, GroupByDefinition, HandleErrorOptions, HeaderZoneConfig, I18nConfig, I18nPluginConfig, I18nProviderProps, ID, INetworkManager, IStorageManager, IStorageStrategy, IntersectionObserverCallback, IntersectionObserverOptions, Invoice, InvoiceItem, LanguageData, LanguageInfo, LayoutAPI, LayoutConfig, LayoutPreset, LegalCompanyInfo, LegalConfig, LegalContactInfo, LegalDirectorInfo, LegalHostingInfo, LegalJurisdictionInfo, LegalSectionsConfig, LegalWebsiteInfo, LicenseValidationResult, ListEntitiesRequest, ListEntitiesResponse, ListEntityData, ListOptions, ListResponse, LoadingActions, LoadingState, MergedBarConfig, MetricDefinition, MobileBehaviorConfig, ModalActions, ModalState, MutationOptions, MutationResponse, NavigationRoute, NetworkCheckConfig, NetworkConnectionType, NetworkReconnectCallback, NetworkState$1 as NetworkState, NetworkStatus, NetworkStatusHookResult, OAuthAPI, OAuthApiRequestOptions, OAuthCallbackHookResult, OAuthConnection, OAuthConnectionInfo, OAuthConnectionRequest, OAuthConnectionStatus, OAuthCredentials, OAuthEventData, OAuthEventKey, OAuthEventName, OAuthPartner, OAuthPartnerButton, OAuthPartnerHookResult, OAuthPartnerId, OAuthPartnerResult, OAuthPartnerState, OAuthPurpose, OAuthRedirectOperation, OAuthRefreshRequest, OAuthRefreshResponse, OAuthResult, OAuthStoreActions, OAuthStoreState, OS, Observable, OperationSchemas, OrderByClause, OverlayAPI, PWAAssetType, PWADisplayMode, PWAPluginConfig, PageAuth, PageMeta, PaginationOptions, PartnerButton, PartnerConnectionState, PartnerIconId, PartnerId, PartnerResult, PartnerType, PayloadCacheEventData, PayloadDocument, PayloadDocumentEventData, PayloadEventKey, PayloadEventName, PayloadGlobalEventData, PayloadMediaEventData, PayloadPageRegenerationEventData, PayloadRequest, PayloadUserEventData, PaymentEventData, PaymentMethod, PaymentMethodType, PaymentMode, Permission, Picture, Platform, PlatformInfo, PresetConfig, PresetRegistry, ProcessPaymentSuccessRequest, ProcessPaymentSuccessResponse, ProductDeclaration, ProviderInstances, QueryClientProviderProps, QueryConfig$1 as QueryConfig, QueryFunction, QueryKey, QueryOptions, RateLimitConfig, RateLimitManager, RateLimitResult, RateLimitState, RateLimiter, ReadCallback, RedirectOperation, RedirectOverlayActions, RedirectOverlayConfig, RedirectOverlayPhase, RedirectOverlayState, Reference, RefreshSubscriptionRequest, RefreshSubscriptionResponse, RemoveCustomClaimsResponse, ResolvedLayoutConfig, RevokeGitHubAccessRequest, RouteData, RouteManifest, RouteMeta, RouteSource, RoutesPluginConfig, SEOConfig, SchemaMetadata, SchemaWithVisibility, SelectOption, SetCustomClaimsResponse, SidebarZoneConfig, SlotContent, StatusField, StorageError, StorageErrorType, StorageOptions, StorageScope, StorageType, Store, StoreApi, StripeBackConfig, StripeCheckoutRequest, StripeCheckoutResponse, StripeCheckoutSessionEventData, StripeConfig, StripeCustomer, StripeCustomerEventData, StripeEventData, StripeEventKey, StripeEventName, StripeFrontConfig, StripeInvoice, StripeInvoiceEventData, StripePayment, StripePaymentIntentEventData, StripePaymentMethod, StripePrice, StripeProduct, StripeProvider, StripeSubscription, StripeSubscriptionData, StripeWebhookEvent, StripeWebhookEventData, Subscription, SubscriptionClaims, SubscriptionConfig, SubscriptionData, SubscriptionDuration, SubscriptionEventData, SubscriptionHookResult, SubscriptionInfo, SubscriptionStatus, SubscriptionTier, SupportedLanguage, TechnicalField, ThemeAPI, ThemeActions, ThemeInfo, ThemeMode, ThemeState, ThemesPluginConfig, TierAccessHookResult, Timestamp, TokenInfo, TokenManagerOptions, TokenResponse, TokenState, TokenStatus, TransTag, TranslationOptions, TranslationResource, TypedBaseFields, UIFieldOptions, UniqueConstraintValidator, UnsubscribeFn, UpdateEntityData, UpdateEntityRequest, UpdateEntityResponse, UseClickOutsideOptions, UseClickOutsideReturn, UseDebounceOptions, UseEventListenerOptions, UseEventListenerReturn, UseFunctionsMutationOptions, UseFunctionsQueryOptions, UseIntersectionObserverOptions, UseIntersectionObserverReturn, UseLocalStorageOptions, UseLocalStorageReturn, UseMutationOptions, UseMutationOptionsWithErrorHandling, UseMutationResult, UseQueryOptions, UseQueryOptionsWithErrorHandling, UseQueryResult, UseScriptLoaderOptions, UseScriptLoaderReturn, UseTranslationOptionsEnhanced, UseViewportVisibilityOptions, UseViewportVisibilityReturn, UserContext, UserProfile, UserProviderData, UserRole, UserSubscription, ValidationRules, ValueTypeForField, ViewportDetectionOptions, ViewportDetectionResult, Visibility, WebhookEvent, WebhookEventData, WhereClause, WhereOperator, WithMetadata, dndevSchema };
23811
+ export { AUTH_COMPUTED_KEYS, AUTH_EVENTS, AUTH_PARTNERS, AUTH_PARTNER_STATE, AUTH_STORE_KEYS, AppConfigContext, AppConfigProvider, AuthUserSchema, BACKEND_GENERATED_FIELD_NAMES, BILLING_EVENTS, BILLING_STORE_KEYS, BREAKPOINT_RANGES, BREAKPOINT_THRESHOLDS, BaseStorageStrategy, COMMON_TIER_CONFIGS, CONFIDENCE_LEVELS, CONSENT_CATEGORY, CONSENT_LEVELS, CONTEXTS, COUNTRIES, CURRENCY_MAP, CheckoutSessionMetadataSchema, ClaimsCache, CreateCheckoutSessionRequestSchema, CreateCheckoutSessionResponseSchema, CustomClaimsSchema, DEFAULT_ENTITY_ACCESS, DEFAULT_ERROR_MESSAGES, DEFAULT_LAYOUT_PRESET, DEFAULT_STATUS_OPTIONS, DEFAULT_STATUS_VALUE, DEFAULT_SUBSCRIPTION, DEGRADED_AUTH_API, DEGRADED_BILLING_API, DEGRADED_CRUD_API, DEGRADED_OAUTH_API, DENSITY, DoNotDevError, ENVIRONMENTS, EntityHookError, EventEmitter, FAQSection, FEATURES, FEATURE_CONSENT_MATRIX, FEATURE_STATUS, FIREBASE_ERROR_MAP, FIRESTORE_ID_PATTERN, FRAMEWORK_FEATURES, Flag, GITHUB_PERMISSION_LEVELS, HIDDEN_STATUSES, index_d$1 as Hooks, HybridStorageStrategy, index_d as I18n, LANGUAGES, LAYOUT_PRESET, LanguageFAB, LanguageSelector, LanguageToggleGroup, LocalStorageStrategy, OAUTH_EVENTS, OAUTH_PARTNERS, OAUTH_STORE_KEYS, PARTNER_ICONS, PAYLOAD_EVENTS, PERMISSIONS, PLATFORMS, PWA_ASSET_TYPES, PWA_DISPLAY_MODES, ProductDeclarationSchema, ProductDeclarationsSchema, QueryClient, QueryClientProvider, QueryProviders, ROUTE_SOURCES, STORAGE_SCOPES, STORAGE_TYPES, STRIPE_EVENTS, STRIPE_MODES, SUBSCRIPTION_DURATIONS, SUBSCRIPTION_STATUS, SUBSCRIPTION_TIERS, index_d$2 as Schemas, SingletonManager, StorageManager, index_d$3 as Stores, StripeBackConfigSchema, StripeFrontConfigSchema, StripePaymentSchema, StripeSubscriptionSchema, SubscriptionClaimsSchema, SubscriptionDataSchema, TECHNICAL_FIELD_NAMES, TRANS_TAGS, TokenManager, Trans, TranslatedText, index_d$5 as Types, USER_ROLES, UserSubscriptionSchema, index_d$4 as Utils, ViewportHandler, WebhookEventSchema, addressSchema, applyTheme, areFeaturesAvailable, arraySchema, baseFields, booleanSchema, buildRoutePath, canRedirectExternally, captureError, captureErrorToSentry, captureMessage, checkGitHubAccessSchema, checkLicense, cleanupSentry, clearFeatureCache, clearLocalStorage, clearPartnerCache, clearSchemaGenerators, clearScopeProviders, commonErrorCodeMappings, compactToISOString, cooldown, createAsyncSingleton, createDefaultSubscriptionClaims, createDefaultUserProfile, createDoNotDevStore, createEntitySchema, createErrorHandler, createMetadata, createMethodProxy, createProvider, createProviders, createSchemas, createSingleton, createSingletonWithParams, createViewportHandler, dateSchema, debounce, debugPlatformDetection, decryptData, defineEntity, delay, deleteCookie, deleteEntitySchema, detectBrowser, detectErrorSource, detectFeatures, detectLicenseKey, detectPlatform, detectPlatformInfo, detectStorageError, disconnectOAuthSchema, emailSchema, encryptData, enhanceSchema, exchangeTokenSchema, exportEncryptionKey, extractRoutePath, fileSchema, filesSchema, filterVisibleFields, formatCookieList, formatCurrency, formatDate, formatRelativeTime, gdprConsentSchema, generateCodeChallenge, generateCodeVerifier, generateCompatibilityReport, generateEncryptionKey, generatePKCEPair, geopointSchema, getActiveCookies, getAppShortName, getAssetsConfig, getAuthDomain, getAuthPartnerConfig, getAuthPartnerIdByFirebaseId, getAvailableFeatures, getAvailableThemeNames, getAvailableThemes, getBreakpointFromWidth, getBreakpointUtils, getBrowserRecommendations, getCollectionName, getConfigSection, getConfigSource, getConnectionsSchema, getCookie, getCookieExamples, getCookiesByCategory, getCountries, getCurrencyLocale, getCurrencySymbol, getCurrentOrigin, getCurrentTimestamp, getDndevConfig, getEnabledAuthPartners, getEnabledOAuthPartners, getEncryptionKey, getEntitySchema, getFeatureSummary, getFlagCodes, getI18nConfig, getI18nInstance, getLocalStorageItem, getNextEnvVar, getOAuthClientId, getOAuthPartnerConfig, getOAuthRedirectUri, getOAuthRedirectUrl, getPartnerCacheStatus, getPartnerConfig, getPlatformEnvVar, getProviderColor, getQueryClient, getRegisteredSchemaTypes, getRegisteredScopeProviders, getRouteManifest, getRouteSource, getRoutes, getRoutesConfig, getSchemaType, getScopeValue, getSmartDefaults, getStorageManager, getThemeInfo, getThemesConfig, getTokenManager, getValidAuthPartnerConfig, getValidAuthPartnerIds, getValidOAuthPartnerConfig, getValidOAuthPartnerIds, getVisibleFields, getVisibleItems, getViteEnvVar, getWeekFromISOString, githubPermissionSchema, githubRepoConfigSchema, globalEmitter, grantGitHubAccessSchema, handleError, hasCustomSchemaGenerator, hasFlag, hasMetadata, hasOptionalCookies, hasRoleAccess, hasScopeProvider, hasTierAccess, importEncryptionKey, initSentry, initializeConfig, initializePlatformDetection, isAuthPartnerEnabled, isAuthPartnerId, isBackendGeneratedField, isBreakpoint, isClient, isCompactDateString, isConfigAvailable, isDev, isDoNotDevStore, isElementInViewport, isEmailVerificationRequired, isFeatureAvailable, isFieldVisible, isFrameworkField, isIntersectionObserverSupported, isLocalStorageAvailable, isNextJs, isOAuthPartnerEnabled, isOAuthPartnerId, isPKCESupported, isPlatform, isServer, isTest, isValidTheme, isVite, isoToCompactString, lazyImport, listEntitiesSchema, mapSchema, mapToDoNotDevError, maybeTranslate, multiselectSchema, neverSchema, normalizeToISOString, numberSchema, observeElement, overrideFeatures, overridePaymentModes, overridePermissions, overrideSubscriptionStatus, overrideSubscriptionTiers, overrideUserRoles, parseDate, parseDateToNoonUTC, passwordSchema, pictureSchema, picturesSchema, priceSchema, queryClient, rangeOptions, redirectToExternalUrl, redirectToExternalUrlWithErrorHandling, referenceSchema, refreshTokenSchema, registerSchemaGenerator, registerScopeProvider, registerUniqueConstraintValidator, removeLocalStorageItem, resolveAppConfig, resolveAuthConfig, resolvePageMeta, revokeGitHubAccessSchema, safeLocalStorage, safeSessionStorage, selectSchema, setCookie, setLocalStorageItem, shouldShowEmailVerification, showNotification, stringSchema, supportsFeature, switchSchema, telSchema, textSchema, throttle, timestampToISOString, timingUtils, toDateOnly, toISOString, translateArray, translateArrayRange, translateArrayWithIndices, translateObjectArray, unregisterScopeProvider, updateEntitySchema, updateMetadata, urlSchema, useAbortControllerStore, useAnalyticsConsent, useAppConfig, useAuthConfig, useBreakpoint, useBreathingTimer, useClickOutside, useConsent, useConsentReady, useConsentStore, useDebounce, useEventListener, useFaviconConfig, useFeatureConsent, useFeaturesConfig, useFunctionalConsent, useHasConsented, useI18nReady, useIntersectionObserver, useIsClient, useLanguageSelector, useLayout, useLocalStorage, useMarketingConsent, useMutation, useNavigationStore, useNetwork, useNetworkConnectionType, useNetworkOnline, useNetworkStatus, useNetworkStore, useOverlay, useOverlayStore, useQuery, useQueryClient, useRateLimit, useSafeContext, useScriptLoader, useSeoConfig, useStorageManager, useTheme, useThemeReady, useThemeStore, useTranslation, useViewportVisibility, validateAuthPartners, validateAuthSchemas, validateAuthUser, validateBillingSchemas, validateCheckoutSessionMetadata, validateCodeChallenge, validateCodeVerifier, validateCreateCheckoutSessionRequest, validateCreateCheckoutSessionResponse, validateCustomClaims, validateDates, validateDocument, validateLicenseKey, validateOAuthPartners, validateStripeBackConfig, validateStripeFrontConfig, validateSubscriptionClaims, validateSubscriptionData, validateUniqueFields, validateUserSubscription, validateWebhookEvent, withErrorHandling, withGracefulDegradation };
23812
+ export type { AccountLinkResult, AccountLinkingInfo, AdminCheckHookResult, AdminClaims, AggregateConfig, AggregateFilterOperator, AggregateOperation, AggregateRequest, AggregateResponse, AnyFieldValue, ApiResponse, AppConfig, AppConfigProviderProps, AppCookieCategories, AppMetadata, AppProvidersProps, AssetsPluginConfig, AttemptRecord, AuthAPI, AuthActions, AuthConfig, AuthContextValue, AuthCoreHookResult, AuthError, AuthEventData, AuthEventKey, AuthEventName, AuthMethod, AuthPartner, AuthPartnerButton, AuthPartnerHookResult, AuthPartnerId, AuthPartnerResult, AuthPartnerState, AuthProvider, AuthProviderProps, AuthRedirectHookResult, AuthRedirectOperation, AuthRedirectOptions, AuthResult, AuthState, AuthStateStore, AuthStatus, AuthTokenHookResult, AuthUser, BackendGeneratedField, BaseActions, BaseCredentials, BaseDocument, BaseEntityFields, BasePartnerState, BaseState, BaseStoreActions, BaseStoreState, BaseUserProfile, BasicUserInfo, BillingAPI, BillingAdapter, BillingErrorCode, BillingEvent, BillingEventData, BillingEventKey, BillingEventName, BillingProvider, BillingProviderConfig, BillingRedirectOperation, Breakpoint, BreakpointAPI, BreakpointUtils, BrowserEngine, BrowserInfo, BrowserType, BusinessEntity, CachedError, CanAPI, CheckGitHubAccessRequest, CheckoutMode, CheckoutOptions, CheckoutSessionMetadata, Claims, ClaimsCacheOptions, ClaimsCacheResult, CleanupFunction, ColumnDef, CommonSubscriptionFeatures, CommonTranslations, CompatibilityReport, ConfidenceLevel, ConsentAPI, ConsentActions, ConsentCategory, ConsentLevel, ConsentState, Context, CookieInfo, CookieOptions, CountryData, CreateCheckoutSessionRequest, CreateCheckoutSessionResponse, CreateEntityData, CreateEntityRequest, CreateEntityResponse, CrudAPI, CrudConfig, CurrencyEntry, CustomClaims, CustomSchemaGenerator, CustomStoreConfig, DateFormatOptions, DateFormatPreset, DateValue, DeleteEntityRequest, DeleteEntityResponse, Density, DnDevOverride, DndevFrameworkConfig, DoNotDevCookieCategories, DoNotDevStore, DoNotDevStoreConfig, DoNotDevStoreState, DoNotDevTransProps, DynamicFormRule, Editable, EffectiveConnectionType, EmailVerificationHookResult, EmailVerificationStatus, Entity, EntityAccessConfig, EntityAccessDefaults, EntityCardListProps, EntityDisplayRendererProps, EntityField, EntityFormRendererProps, EntityHookErrors, EntityListProps, EntityMetadata, EntityRecord, EntityTemplateProps, EntityTranslations, EnvironmentMode, ErrorCode, ErrorHandlerConfig, ErrorHandlerFunction, ErrorSeverity, ErrorSource, EventListener, ExchangeTokenParams, ExchangeTokenRequest, FAQSectionProps, FaviconConfig, Feature, FeatureAccessHookResult, FeatureAvailability, FeatureConsentRequirement, FeatureHookResult, FeatureId, FeatureName, FeatureStatus, FeatureSupport, FeaturesConfig, FeaturesPluginConfig, FeaturesRequiringAnyConsent, FeaturesRequiringConsent, FeaturesWithoutConsent, FieldCondition, FieldType, FieldTypeToValue, FileAsset, FirebaseCallOptions, FirebaseConfig, FirestoreTimestamp, FirestoreUniqueConstraintValidator, FooterConfig, FooterZoneConfig, FormConfig, FormStep, FrameworkFeature, FunctionCallConfig, FunctionCallContext, FunctionCallOptions, FunctionCallResult, FunctionClient, FunctionClientFactoryOptions, FunctionDefaults, FunctionEndpoint, FunctionError, FunctionLoader, FunctionMemory, FunctionMeta, FunctionPlatform, FunctionResponse, FunctionSchema, FunctionSchemas, FunctionSystem, FunctionTrigger, FunctionsConfig, GetCustomClaimsResponse, GetEntityData, GetEntityRequest, GetEntityResponse, GetUserAuthStatusResponse, GitHubPermission, GitHubRepoConfig, GrantGitHubAccessRequest, GroupByDefinition, HandleErrorOptions, HeaderZoneConfig, I18nConfig, I18nPluginConfig, I18nProviderProps, ID, INetworkManager, IStorageManager, IStorageStrategy, IntersectionObserverCallback, IntersectionObserverOptions, Invoice, InvoiceItem, LanguageData, LanguageInfo, LayoutAPI, LayoutConfig, LayoutPreset, LegalCompanyInfo, LegalConfig, LegalContactInfo, LegalDirectorInfo, LegalHostingInfo, LegalJurisdictionInfo, LegalSectionsConfig, LegalWebsiteInfo, LicenseValidationResult, ListEntitiesRequest, ListEntitiesResponse, ListEntityData, ListOptions, ListResponse, LoadingActions, LoadingState, MergedBarConfig, MetricDefinition, MobileBehaviorConfig, ModalActions, ModalState, MutationOptions, MutationResponse, NavigationRoute, NetworkCheckConfig, NetworkConnectionType, NetworkReconnectCallback, NetworkState$1 as NetworkState, NetworkStatus, NetworkStatusHookResult, OAuthAPI, OAuthApiRequestOptions, OAuthCallbackHookResult, OAuthConnection, OAuthConnectionInfo, OAuthConnectionRequest, OAuthConnectionStatus, OAuthCredentials, OAuthEventData, OAuthEventKey, OAuthEventName, OAuthPartner, OAuthPartnerButton, OAuthPartnerHookResult, OAuthPartnerId, OAuthPartnerResult, OAuthPartnerState, OAuthPurpose, OAuthRedirectOperation, OAuthRefreshRequest, OAuthRefreshResponse, OAuthResult, OAuthStoreActions, OAuthStoreState, OS, Observable, OperationSchemas, OrderByClause, OverlayAPI, PWAAssetType, PWADisplayMode, PWAPluginConfig, PageAuth, PageMeta, PaginationOptions, PartnerButton, PartnerConnectionState, PartnerIconId, PartnerId, PartnerResult, PartnerType, PayloadCacheEventData, PayloadDocument, PayloadDocumentEventData, PayloadEventKey, PayloadEventName, PayloadGlobalEventData, PayloadMediaEventData, PayloadPageRegenerationEventData, PayloadRequest, PayloadUserEventData, PaymentEventData, PaymentMethod, PaymentMethodType, PaymentMode, Permission, Picture, Platform, PlatformInfo, PresetConfig, PresetRegistry, ProcessPaymentSuccessRequest, ProcessPaymentSuccessResponse, ProductDeclaration, ProviderInstances, QueryClientProviderProps, QueryConfig$1 as QueryConfig, QueryFunction, QueryKey, QueryOptions, RateLimitConfig, RateLimitManager, RateLimitResult, RateLimitState, RateLimiter, ReadCallback, RedirectOperation, RedirectOverlayActions, RedirectOverlayConfig, RedirectOverlayPhase, RedirectOverlayState, Reference, RefreshSubscriptionRequest, RefreshSubscriptionResponse, RemoveCustomClaimsResponse, ResolvedLayoutConfig, RevokeGitHubAccessRequest, RouteData, RouteManifest, RouteMeta, RouteSource, RoutesPluginConfig, SEOConfig, SchemaMetadata, SchemaWithVisibility, ScopeConfig, ScopeProviderFn, SelectOption, SetCustomClaimsResponse, SidebarZoneConfig, SlotContent, StatusField, StorageError, StorageErrorType, StorageOptions, StorageScope, StorageType, Store, StoreApi, StripeBackConfig, StripeCheckoutRequest, StripeCheckoutResponse, StripeCheckoutSessionEventData, StripeConfig, StripeCustomer, StripeCustomerEventData, StripeEventData, StripeEventKey, StripeEventName, StripeFrontConfig, StripeInvoice, StripeInvoiceEventData, StripePayment, StripePaymentIntentEventData, StripePaymentMethod, StripePrice, StripeProduct, StripeProvider, StripeSubscription, StripeSubscriptionData, StripeWebhookEvent, StripeWebhookEventData, Subscription, SubscriptionClaims, SubscriptionConfig, SubscriptionData, SubscriptionDuration, SubscriptionEventData, SubscriptionHookResult, SubscriptionInfo, SubscriptionStatus, SubscriptionTier, SupportedLanguage, TechnicalField, ThemeAPI, ThemeActions, ThemeInfo, ThemeMode, ThemeState, ThemesPluginConfig, TierAccessHookResult, Timestamp, TokenInfo, TokenManagerOptions, TokenResponse, TokenState, TokenStatus, TransTag, TranslationOptions, TranslationResource, TypedBaseFields, UIFieldOptions, UniqueConstraintValidator, UniqueKeyDefinition, UnsubscribeFn, UpdateEntityData, UpdateEntityRequest, UpdateEntityResponse, UseClickOutsideOptions, UseClickOutsideReturn, UseDebounceOptions, UseEventListenerOptions, UseEventListenerReturn, UseFunctionsMutationOptions, UseFunctionsQueryOptions, UseIntersectionObserverOptions, UseIntersectionObserverReturn, UseLocalStorageOptions, UseLocalStorageReturn, UseMutationOptions, UseMutationOptionsWithErrorHandling, UseMutationResult, UseQueryOptions, UseQueryOptionsWithErrorHandling, UseQueryResult, UseScriptLoaderOptions, UseScriptLoaderReturn, UseTranslationOptionsEnhanced, UseViewportVisibilityOptions, UseViewportVisibilityReturn, UserContext, UserProfile, UserProviderData, UserRole, UserSubscription, ValidationRules, ValueTypeForField, ViewportDetectionOptions, ViewportDetectionResult, Visibility, WebhookEvent, WebhookEventData, WhereClause, WhereOperator, WithMetadata, dndevSchema };