@donotdev/core 0.0.18 → 0.0.20

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
@@ -4654,7 +4578,7 @@ interface AggregateResponse {
4654
4578
  /**
4655
4579
  * Visibility levels for entity fields (runtime constants)
4656
4580
  * Controls who can SEE this field in responses
4657
- * Matches USER_ROLES hierarchy + technical + hidden
4581
+ * Matches USER_ROLES hierarchy + technical + hidden + owner
4658
4582
  *
4659
4583
  * - guest: Everyone (even unauthenticated)
4660
4584
  * - user: Authenticated users (users see guest + user fields)
@@ -4662,6 +4586,7 @@ interface AggregateResponse {
4662
4586
  * - super: Super admins only (see all non-technical fields)
4663
4587
  * - technical: System fields (shown as read-only in edit forms, admins+ only)
4664
4588
  * - hidden: Never exposed to client (passwords, tokens, API keys)
4589
+ * - owner: Visible only when request.auth.uid matches one of entity.ownership.ownerFields on the document
4665
4590
  */
4666
4591
  declare const VISIBILITY: {
4667
4592
  readonly GUEST: "guest";
@@ -4670,6 +4595,7 @@ declare const VISIBILITY: {
4670
4595
  readonly SUPER: "super";
4671
4596
  readonly TECHNICAL: "technical";
4672
4597
  readonly HIDDEN: "hidden";
4598
+ readonly OWNER: "owner";
4673
4599
  };
4674
4600
  /**
4675
4601
  * Editable levels for entity fields (runtime constants)
@@ -4705,7 +4631,7 @@ declare const DEFAULT_ENTITY_ACCESS: {
4705
4631
  * @since 0.0.1
4706
4632
  * @author AMBROISE PARK Consulting
4707
4633
  */
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"];
4634
+ declare const FIELD_TYPES: readonly ["address", "array", "avatar", "badge", "boolean", "checkbox", "color", "combobox", "date", "datetime-local", "document", "documents", "duration", "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
4635
 
4710
4636
  /**
4711
4637
  * @fileoverview Schema-Related Type Definitions
@@ -4782,6 +4708,37 @@ interface EntityAccessConfig {
4782
4708
  }
4783
4709
  /** Type derived from DEFAULT_ENTITY_ACCESS for type safety */
4784
4710
  type EntityAccessDefaults = typeof DEFAULT_ENTITY_ACCESS;
4711
+ /**
4712
+ * Single condition for public read/update in Firestore rules.
4713
+ * Joined with && when publicCondition is an array.
4714
+ */
4715
+ interface EntityOwnershipPublicCondition {
4716
+ field: string;
4717
+ op: string;
4718
+ value: string | boolean | number;
4719
+ }
4720
+ /**
4721
+ * Ownership configuration for stakeholder access (marketplace-style entities).
4722
+ * When set, drives Firestore rule condition generation, list/listCard query constraints,
4723
+ * and visibility: 'owner' field masking.
4724
+ *
4725
+ * @example
4726
+ * ```typescript
4727
+ * ownership: {
4728
+ * ownerFields: ['providerId', 'customerId'],
4729
+ * publicCondition: [
4730
+ * { field: 'status', op: '==', value: 'available' },
4731
+ * { field: 'isApproved', op: '==', value: true },
4732
+ * ],
4733
+ * }
4734
+ * ```
4735
+ */
4736
+ interface EntityOwnershipConfig {
4737
+ /** Document fields whose value is a user id (e.g. providerId, customerId) */
4738
+ ownerFields: string[];
4739
+ /** Conditions joined with && for "public" read (e.g. status == 'available') */
4740
+ publicCondition?: EntityOwnershipPublicCondition[];
4741
+ }
4785
4742
  /**
4786
4743
  * Supported field types for entities
4787
4744
  * These determine the UI components and validation rules used for each field
@@ -4955,6 +4912,12 @@ type FieldTypeToValue = {
4955
4912
  month: string;
4956
4913
  multiselect: string[];
4957
4914
  number: number;
4915
+ price: {
4916
+ amount: number;
4917
+ currency?: string;
4918
+ vatIncluded?: boolean;
4919
+ discountPercent?: number;
4920
+ };
4958
4921
  password: string;
4959
4922
  radio: string;
4960
4923
  reference: string;
@@ -4967,7 +4930,6 @@ type FieldTypeToValue = {
4967
4930
  textarea: string;
4968
4931
  time: string;
4969
4932
  timestamp: string;
4970
- toggle: boolean;
4971
4933
  switch: string | boolean;
4972
4934
  url: string;
4973
4935
  week: string;
@@ -4982,6 +4944,16 @@ type FieldTypeToValue = {
4982
4944
  * @author AMBROISE PARK Consulting
4983
4945
  */
4984
4946
  type ValueTypeForField<T extends FieldType> = T extends keyof FieldTypeToValue ? FieldTypeToValue[T] : never;
4947
+ /**
4948
+ * Any valid field value - includes built-in types plus custom registered types
4949
+ * Uses `unknown` since consumers can register custom field types via RegisterFieldType
4950
+ */
4951
+ type AnyFieldValue = unknown;
4952
+ /**
4953
+ * Entity record type - a record where values are valid field values
4954
+ * Accepts unknown since consumers can register custom field types
4955
+ */
4956
+ type EntityRecord = Record<string, AnyFieldValue>;
4985
4957
  /**
4986
4958
  * Enhanced validation rules with type checking
4987
4959
  * @template T - The field type
@@ -5319,10 +5291,82 @@ interface BaseEntityFields {
5319
5291
  */
5320
5292
  status: EntityField<'select'>;
5321
5293
  }
5294
+ /**
5295
+ * Unique key constraint definition for entity deduplication
5296
+ * Enables automatic checking for duplicates on create/update operations
5297
+ *
5298
+ * @example
5299
+ * ```typescript
5300
+ * // Single field unique key with findOrCreate
5301
+ * uniqueKeys: [{ fields: ['email'], findOrCreate: true }]
5302
+ *
5303
+ * // Composite unique key
5304
+ * uniqueKeys: [{ fields: ['vin', 'make'], skipForDrafts: true }]
5305
+ *
5306
+ * // Multiple keys (OR logic - either can identify)
5307
+ * uniqueKeys: [
5308
+ * { fields: ['email'], findOrCreate: true },
5309
+ * { fields: ['phone'], findOrCreate: true }
5310
+ * ]
5311
+ * ```
5312
+ *
5313
+ * @version 0.0.1
5314
+ * @since 0.0.5
5315
+ * @author AMBROISE PARK Consulting
5316
+ */
5317
+ interface UniqueKeyDefinition {
5318
+ /** Field names that together form the unique key (single or composite) */
5319
+ fields: string[];
5320
+ /** Custom error message when duplicate is found */
5321
+ errorMessage?: string;
5322
+ /** Skip validation for draft documents (default: true) */
5323
+ skipForDrafts?: boolean;
5324
+ /**
5325
+ * Return existing document instead of throwing error on duplicate (default: false)
5326
+ * When true, create operations will return the existing document if a match is found
5327
+ */
5328
+ findOrCreate?: boolean;
5329
+ }
5330
+ /**
5331
+ * Multi-tenancy scope configuration for entities
5332
+ * Enables automatic scoping of data by tenant/company/workspace
5333
+ *
5334
+ * @example
5335
+ * ```typescript
5336
+ * const clientEntity = defineEntity({
5337
+ * name: 'Client',
5338
+ * collection: 'clients',
5339
+ * scope: { field: 'companyId', provider: 'company' },
5340
+ * fields: { ... } // No need to manually define companyId
5341
+ * });
5342
+ * ```
5343
+ *
5344
+ * @version 0.0.4
5345
+ * @since 0.0.4
5346
+ * @author AMBROISE PARK Consulting
5347
+ */
5348
+ interface ScopeConfig {
5349
+ /**
5350
+ * Field name that stores the scope ID (e.g., 'companyId', 'tenantId', 'workspaceId')
5351
+ * This field will be auto-added to the entity with type 'reference'
5352
+ */
5353
+ field: string;
5354
+ /**
5355
+ * Name of the scope provider registered with registerScopeProvider()
5356
+ * The provider function returns the current scope ID from app state
5357
+ * @example 'company', 'tenant', 'workspace'
5358
+ */
5359
+ provider: string;
5360
+ /**
5361
+ * Collection being referenced (optional, defaults to field name without 'Id' suffix + 's')
5362
+ * @example 'companies' for field 'companyId'
5363
+ */
5364
+ collection?: string;
5365
+ }
5322
5366
  /**
5323
5367
  * Definition of a business entity without base fields
5324
5368
  *
5325
- * @version 0.0.3
5369
+ * @version 0.0.4
5326
5370
  * @since 0.0.1
5327
5371
  * @author AMBROISE PARK Consulting
5328
5372
  */
@@ -5337,6 +5381,31 @@ interface BusinessEntity {
5337
5381
  * @default `entity-${name.toLowerCase()}`
5338
5382
  */
5339
5383
  namespace?: string;
5384
+ /**
5385
+ * Multi-tenancy scope configuration (optional)
5386
+ * When set, the scope field is auto-added and CRUD operations auto-inject/filter by scope
5387
+ *
5388
+ * @example
5389
+ * ```typescript
5390
+ * scope: { field: 'companyId', provider: 'company' }
5391
+ * ```
5392
+ */
5393
+ scope?: ScopeConfig;
5394
+ /**
5395
+ * Stakeholder ownership configuration (optional).
5396
+ * When set, drives Firestore rule condition (read/update), list/listCard query constraints,
5397
+ * and visibility: 'owner' field masking. Use for marketplace-style entities (e.g. schedules:
5398
+ * public when available, private to partner/customer when booked).
5399
+ *
5400
+ * @example
5401
+ * ```typescript
5402
+ * ownership: {
5403
+ * ownerFields: ['providerId', 'customerId'],
5404
+ * publicCondition: [{ field: 'status', op: '==', value: 'available' }],
5405
+ * }
5406
+ * ```
5407
+ */
5408
+ ownership?: EntityOwnershipConfig;
5340
5409
  /** Field definitions - name and label are required */
5341
5410
  fields: Record<string, EntityField>;
5342
5411
  /** Form configuration for advanced forms */
@@ -5384,12 +5453,39 @@ interface BusinessEntity {
5384
5453
  * ```
5385
5454
  */
5386
5455
  access?: EntityAccessConfig;
5456
+ /**
5457
+ * Unique key constraints for deduplication
5458
+ * Checked during create/update operations
5459
+ *
5460
+ * - Single field: `[{ fields: ['email'] }]`
5461
+ * - Composite: `[{ fields: ['vin', 'make'] }]`
5462
+ * - Multiple keys (OR): `[{ fields: ['email'] }, { fields: ['phone'] }]`
5463
+ *
5464
+ * @example
5465
+ * ```typescript
5466
+ * // Customer: email OR phone identifies (findOrCreate behavior)
5467
+ * uniqueKeys: [
5468
+ * { fields: ['email'], findOrCreate: true },
5469
+ * { fields: ['phone'], findOrCreate: true }
5470
+ * ]
5471
+ *
5472
+ * // Car: VIN is unique, skip for drafts
5473
+ * uniqueKeys: [{ fields: ['vin'], skipForDrafts: true }]
5474
+ * ```
5475
+ */
5476
+ uniqueKeys?: UniqueKeyDefinition[];
5387
5477
  }
5388
5478
  /**
5389
5479
  * Complete entity definition including base fields
5390
5480
  * Created by defineEntity() which merges defaults
5391
5481
  *
5392
- * @version 0.0.2
5482
+ * Extends BusinessEntity but overrides optional properties to required:
5483
+ * - namespace: always computed (defaults to `entity-${name.toLowerCase()}`)
5484
+ * - access: always merged with defaults
5485
+ * - fields: includes base fields (id, createdAt, etc.)
5486
+ * - scope: preserved if provided (for multi-tenancy)
5487
+ *
5488
+ * @version 0.0.4
5393
5489
  * @since 0.0.1
5394
5490
  * @author AMBROISE PARK Consulting
5395
5491
  */
@@ -5400,6 +5496,8 @@ interface Entity extends BusinessEntity {
5400
5496
  access: Required<EntityAccessConfig>;
5401
5497
  /** i18n namespace for translations (always present after defineEntity, defaults to `entity-${name.toLowerCase()}`) */
5402
5498
  namespace: string;
5499
+ /** Multi-tenancy scope configuration (preserved from BusinessEntity if provided) */
5500
+ scope?: ScopeConfig;
5403
5501
  }
5404
5502
  /**
5405
5503
  * Unified metadata structure for all schemas (CRUD, Functions, etc.)
@@ -5421,6 +5519,11 @@ interface SchemaMetadata {
5421
5519
  field: string;
5422
5520
  errorMessage?: string;
5423
5521
  }>;
5522
+ /**
5523
+ * Unique key constraints from entity definition
5524
+ * Used by backend CRUD functions for deduplication
5525
+ */
5526
+ uniqueKeys?: UniqueKeyDefinition[];
5424
5527
  /** Custom validation function (for function validation) */
5425
5528
  customValidate?: (data: Record<string, any>, operation: 'create' | 'update') => Promise<void>;
5426
5529
  }
@@ -5623,6 +5726,179 @@ interface ListEntitiesResponse {
5623
5726
  hasMore: boolean;
5624
5727
  }
5625
5728
 
5729
+ /**
5730
+ * @fileoverview CRUD Component Props Types
5731
+ * @description Shared prop types for CRUD components used across UI, Templates, and CRUD packages
5732
+ *
5733
+ * @version 0.0.1
5734
+ * @since 0.0.1
5735
+ * @author AMBROISE PARK Consulting
5736
+ */
5737
+
5738
+ interface EntityListProps {
5739
+ /** The entity definition */
5740
+ entity: Entity;
5741
+ /** Current user role (for UI toggle only - backend enforces security) */
5742
+ userRole?: string;
5743
+ /**
5744
+ * Base path for view/edit/create. Default: `/${collection}`.
5745
+ * View/Edit = `${basePath}/${id}`, Create = `${basePath}/new`.
5746
+ */
5747
+ basePath?: string;
5748
+ /**
5749
+ * Called when user clicks a row. If provided, overrides default navigation to basePath/:id (e.g. open sheet).
5750
+ */
5751
+ onClick?: (id: string) => void;
5752
+ /** Hide filters section (default: false) */
5753
+ hideFilters?: boolean;
5754
+ /** Pagination mode: 'client' (default) or 'server' for massive datasets */
5755
+ pagination?: 'client' | 'server';
5756
+ /** Page size - passed to DataTable. If not provided, DataTable uses its default (12) */
5757
+ pageSize?: number;
5758
+ /** Optional query constraints (e.g. where companyId == currentCompanyId) passed to useCrudList */
5759
+ queryOptions?: {
5760
+ where?: Array<{
5761
+ field: string;
5762
+ operator: string;
5763
+ value: unknown;
5764
+ }>;
5765
+ orderBy?: Array<{
5766
+ field: string;
5767
+ direction?: 'asc' | 'desc';
5768
+ }>;
5769
+ limit?: number;
5770
+ startAfterId?: string;
5771
+ };
5772
+ }
5773
+ interface EntityCardListProps {
5774
+ /** The entity definition */
5775
+ entity: Entity;
5776
+ /**
5777
+ * Base path for view. Default: `/${collection}`. View = `${basePath}/${id}`.
5778
+ */
5779
+ basePath?: string;
5780
+ /**
5781
+ * Called when user clicks a card. If provided, overrides default navigation to basePath/:id (e.g. open sheet).
5782
+ */
5783
+ onClick?: (id: string) => void;
5784
+ /** Grid columns (responsive) - defaults to [1, 2, 3, 4] */
5785
+ cols?: number | [number, number, number, number];
5786
+ /** Cache stale time is ms - defaults to 30 mins */
5787
+ staleTime?: number;
5788
+ /** Optional filter function to filter items client-side */
5789
+ filter?: (item: any) => boolean;
5790
+ /** Hide filters section (default: false) */
5791
+ hideFilters?: boolean;
5792
+ }
5793
+ interface EntityFormRendererProps<T extends EntityRecord = EntityRecord> {
5794
+ /** Entity definition - pass the full entity from defineEntity() */
5795
+ entity: Entity;
5796
+ /** Form submission handler */
5797
+ onSubmit: (data: T) => void | Promise<void>;
5798
+ /** Translation function */
5799
+ t?: (key: string, options?: Record<string, unknown>) => string;
5800
+ /** Additional CSS classes */
5801
+ className?: string;
5802
+ /** Submit button text */
5803
+ submitText?: string;
5804
+ /**
5805
+ * Whether form data is loading (shows loading overlay)
5806
+ * Use this when fetching existing entity data for edit mode
5807
+ */
5808
+ loading?: boolean;
5809
+ /** Initial form values */
5810
+ defaultValues?: Partial<T>;
5811
+ /** Submit button variant */
5812
+ submitVariant?: 'primary' | 'destructive' | 'outline' | 'ghost' | 'link';
5813
+ /** Secondary button text */
5814
+ secondaryButtonText?: string;
5815
+ /** Secondary button variant */
5816
+ secondaryButtonVariant?: 'primary' | 'destructive' | 'outline' | 'ghost' | 'link';
5817
+ /** Secondary button submission handler */
5818
+ onSecondarySubmit?: (data: T) => void | Promise<void>;
5819
+ /**
5820
+ * Current viewer's role for editability checks
5821
+ * If not provided, defaults to 'guest' (most restrictive)
5822
+ * @default 'guest'
5823
+ */
5824
+ viewerRole?: string;
5825
+ /**
5826
+ * Form operation type
5827
+ * @default 'create' (or 'edit' if defaultValues provided)
5828
+ */
5829
+ operation?: 'create' | 'edit';
5830
+ /**
5831
+ * Enable auto-save to localStorage for crash recovery.
5832
+ * @default true for create mode
5833
+ */
5834
+ autoSave?: boolean;
5835
+ /**
5836
+ * Optional form ID for tracking loading state.
5837
+ * If not provided, one will be generated automatically.
5838
+ */
5839
+ formId?: string;
5840
+ /**
5841
+ * Cancel button text. If provided, shows a cancel button.
5842
+ * If not provided but onCancel is provided, shows default "Cancel" text.
5843
+ * Set to null to explicitly hide cancel button.
5844
+ */
5845
+ cancelText?: string | null;
5846
+ /**
5847
+ * Success path - full path to navigate after successful submit (e.g., `/products`).
5848
+ * If not provided, navigates back (optimistic - user came from list, go back there).
5849
+ */
5850
+ successPath?: string;
5851
+ /**
5852
+ * Cancel path - full path (e.g., `/products`). If not provided, navigates back.
5853
+ * If onCancel callback is provided, it takes precedence over cancelPath.
5854
+ */
5855
+ cancelPath?: string;
5856
+ /**
5857
+ * Callback when cancel is clicked (after confirmation if dirty).
5858
+ * If not provided, cancel navigates to cancelPath or `/${collection}`.
5859
+ * If provided, cancel button will show (with cancelText or default "Cancel").
5860
+ */
5861
+ onCancel?: () => void;
5862
+ /**
5863
+ * Whether to show unsaved changes warning when navigating away.
5864
+ * @default true
5865
+ */
5866
+ warnOnUnsavedChanges?: boolean;
5867
+ /**
5868
+ * Custom message for unsaved changes confirmation.
5869
+ */
5870
+ unsavedChangesMessage?: string;
5871
+ /**
5872
+ * Hide visibility indicators (badges + View As toggle).
5873
+ * When false (default), shows badge next to non-guest fields and View As role selector.
5874
+ * @default false
5875
+ */
5876
+ hideVisibilityInfo?: boolean;
5877
+ }
5878
+ interface EntityDisplayRendererProps<T extends EntityRecord = EntityRecord> {
5879
+ /** Entity definition - pass the full entity from defineEntity() */
5880
+ entity: Entity;
5881
+ /** Entity ID to fetch */
5882
+ id: string;
5883
+ /** Translation function (optional - auto-generated if not provided) */
5884
+ t?: (key: string, options?: Record<string, unknown>) => string;
5885
+ /** Additional CSS classes */
5886
+ className?: string;
5887
+ /** Backend to use */
5888
+ backend?: 'firestore' | 'functions';
5889
+ /** Custom loading message */
5890
+ loadingMessage?: string;
5891
+ /** Custom not found message */
5892
+ notFoundMessage?: string;
5893
+ /**
5894
+ * Current viewer's role for visibility checks
5895
+ * Used to determine which fields should be visible based on their visibility setting
5896
+ * If not provided, defaults to 'guest' (most restrictive - shows only public fields)
5897
+ * @default 'guest'
5898
+ */
5899
+ viewerRole?: string;
5900
+ }
5901
+
5626
5902
  type FieldValues = Record<string, any>;
5627
5903
 
5628
5904
  /**
@@ -5660,13 +5936,21 @@ interface CrudAPI<T = unknown> {
5660
5936
  /** Fetch single document by ID */
5661
5937
  get: (id: string) => Promise<T | null>;
5662
5938
  /** Set/replace document by ID */
5663
- set: (id: string, data: T) => Promise<void>;
5939
+ set: (id: string, data: T, options?: {
5940
+ showSuccessToast?: boolean;
5941
+ }) => Promise<void>;
5664
5942
  /** Partial update document by ID */
5665
- update: (id: string, data: Partial<T>) => Promise<void>;
5943
+ update: (id: string, data: Partial<T>, options?: {
5944
+ showSuccessToast?: boolean;
5945
+ }) => Promise<void>;
5666
5946
  /** Delete document by ID */
5667
- delete: (id: string) => Promise<void>;
5947
+ delete: (id: string, options?: {
5948
+ showSuccessToast?: boolean;
5949
+ }) => Promise<void>;
5668
5950
  /** Add new document (auto-generated ID) */
5669
- add: (data: T) => Promise<string>;
5951
+ add: (data: T, options?: {
5952
+ showSuccessToast?: boolean;
5953
+ }) => Promise<string>;
5670
5954
  /** Query collection with filters */
5671
5955
  query: (options: any) => Promise<T[]>;
5672
5956
  /** Subscribe to document changes */
@@ -8187,6 +8471,26 @@ type KeyWithContext<Key, TOpt extends TOptions> = TOpt['context'] extends string
8187
8471
  ? `${Key & string}${_ContextSeparator}${TOpt['context']}`
8188
8472
  : Key;
8189
8473
 
8474
+ // helper that maps the configured fallbackNS value to the matching resources slice
8475
+ type FallbackResourcesOf<FallbackNS, R> = FallbackNS extends readonly (infer FN)[]
8476
+ ? R[FN & keyof R]
8477
+ : [FallbackNS] extends [false]
8478
+ ? never
8479
+ : R[Extract<FallbackNS, keyof R> & keyof R];
8480
+
8481
+ /* reuse the parse helpers as top-level aliases (no nested type declarations) */
8482
+ type _PrimaryParse<
8483
+ ActualKey,
8484
+ PrimaryNS extends keyof Resources,
8485
+ TOpt extends TOptions,
8486
+ > = ParseTReturn<ActualKey, Resources[PrimaryNS], TOpt>;
8487
+
8488
+ type _FallbackParse<ActualKey, FallbackNS, TOpt extends TOptions> = [
8489
+ FallbackResourcesOf<FallbackNS, Resources>,
8490
+ ] extends [never]
8491
+ ? never
8492
+ : ParseTReturn<ActualKey, FallbackResourcesOf<FallbackNS, Resources>, TOpt>;
8493
+
8190
8494
  type TFunctionReturn<
8191
8495
  Ns extends Namespace,
8192
8496
  Key,
@@ -8196,7 +8500,15 @@ type TFunctionReturn<
8196
8500
  > = $IsResourcesDefined extends true
8197
8501
  ? ActualKey extends `${infer Nsp}${_NsSeparator}${infer RestKey}`
8198
8502
  ? ParseTReturn<RestKey, Resources[Nsp & keyof Resources], TOpt>
8199
- : ParseTReturn<ActualKey, Resources[$FirstNamespace<ActualNS>], TOpt>
8503
+ : $FirstNamespace<ActualNS> extends infer PrimaryNS
8504
+ ? [PrimaryNS] extends [keyof Resources]
8505
+ ? [_PrimaryParse<ActualKey, PrimaryNS & keyof Resources, TOpt>] extends [never]
8506
+ ? [_FallbackParse<ActualKey, _FallbackNamespace, TOpt>] extends [never]
8507
+ ? DefaultTReturn<TOpt>
8508
+ : _FallbackParse<ActualKey, _FallbackNamespace, TOpt>
8509
+ : _PrimaryParse<ActualKey, PrimaryNS & keyof Resources, TOpt>
8510
+ : never
8511
+ : never
8200
8512
  : DefaultTReturn<TOpt>;
8201
8513
 
8202
8514
  type TFunctionDetailedResult<T = string, TOpt extends TOptions = {}> = {
@@ -8299,17 +8611,24 @@ type KeyPrefix<Ns extends Namespace> = ResourceKeys<true>[$FirstNamespace<Ns>] |
8299
8611
  /// ↆ selector ↆ ///
8300
8612
  /// ////////////// ///
8301
8613
 
8614
+ type NsArg<Ns extends Namespace> = Ns[number] | readonly Ns[number][];
8615
+
8302
8616
  interface TFunctionSelector<Ns extends Namespace, KPrefix, Source> extends Branded<Ns> {
8303
8617
  <
8304
8618
  Target extends ConstrainTarget<Opts>,
8619
+ const NewNs extends NsArg<Ns> & Namespace,
8305
8620
  const Opts extends SelectorOptions<NewNs>,
8306
- NewNs extends Namespace,
8307
8621
  NewSrc extends GetSource<NewNs, KPrefix>,
8308
8622
  >(
8309
8623
  selector: SelectorFn<NewSrc, ApplyTarget<Target, Opts>, Opts>,
8310
8624
  options: Opts & InterpolationMap<Target> & { ns: NewNs },
8311
8625
  ): SelectorReturn<Target, Opts>;
8312
- <Target extends ConstrainTarget<Opts>, const Opts extends SelectorOptions<Ns>>(
8626
+
8627
+ <
8628
+ Target extends ConstrainTarget<Opts>,
8629
+ const NewNs extends NsArg<Ns> = Ns[number],
8630
+ const Opts extends SelectorOptions<NewNs> = SelectorOptions<NewNs>,
8631
+ >(
8313
8632
  selector: SelectorFn<Source, ApplyTarget<Target, Opts>, Opts>,
8314
8633
  options?: Opts & InterpolationMap<Target>,
8315
8634
  ): SelectorReturn<Target, Opts>;
@@ -9515,8 +9834,6 @@ interface AppMetadata {
9515
9834
  name?: string;
9516
9835
  /** Short application name for mobile/compact displays (defaults to name if not set) */
9517
9836
  shortName?: string;
9518
- /** Application URL (base URL for production, defaults to localhost in development) */
9519
- url?: string;
9520
9837
  /** Application description */
9521
9838
  description?: string;
9522
9839
  /** Social and external links */
@@ -9657,7 +9974,7 @@ interface AuthConfig {
9657
9974
  interface SEOConfig {
9658
9975
  /** Enable automatic SEO (default: true) */
9659
9976
  enabled?: boolean;
9660
- /** Base URL for SEO files (robots.txt, sitemap.xml) - defaults to appConfig.app.url (set at build time) */
9977
+ /** Base URL for SEO files (robots.txt, sitemap.xml) - reads from VITE_APP_URL/NEXT_PUBLIC_APP_URL env var */
9661
9978
  baseUrl?: string;
9662
9979
  /** Site name for SEO - defaults to APP_NAME from app.ts */
9663
9980
  siteName?: string;
@@ -12033,6 +12350,7 @@ type index_d$5_AggregateFilterOperator = AggregateFilterOperator;
12033
12350
  type index_d$5_AggregateOperation = AggregateOperation;
12034
12351
  type index_d$5_AggregateRequest = AggregateRequest;
12035
12352
  type index_d$5_AggregateResponse = AggregateResponse;
12353
+ type index_d$5_AnyFieldValue = AnyFieldValue;
12036
12354
  type index_d$5_ApiResponse<T> = ApiResponse<T>;
12037
12355
  type index_d$5_AppConfig = AppConfig;
12038
12356
  type index_d$5_AppCookieCategories = AppCookieCategories;
@@ -12149,11 +12467,18 @@ type index_d$5_EmailVerificationStatus = EmailVerificationStatus;
12149
12467
  type index_d$5_Entity = Entity;
12150
12468
  type index_d$5_EntityAccessConfig = EntityAccessConfig;
12151
12469
  type index_d$5_EntityAccessDefaults = EntityAccessDefaults;
12470
+ type index_d$5_EntityCardListProps = EntityCardListProps;
12471
+ type index_d$5_EntityDisplayRendererProps<T extends EntityRecord = EntityRecord> = EntityDisplayRendererProps<T>;
12152
12472
  type index_d$5_EntityField<T extends FieldType = FieldType> = EntityField<T>;
12473
+ type index_d$5_EntityFormRendererProps<T extends EntityRecord = EntityRecord> = EntityFormRendererProps<T>;
12153
12474
  type index_d$5_EntityHookError = EntityHookError;
12154
12475
  declare const index_d$5_EntityHookError: typeof EntityHookError;
12155
12476
  type index_d$5_EntityHookErrors = EntityHookErrors;
12477
+ type index_d$5_EntityListProps = EntityListProps;
12156
12478
  type index_d$5_EntityMetadata = EntityMetadata;
12479
+ type index_d$5_EntityOwnershipConfig = EntityOwnershipConfig;
12480
+ type index_d$5_EntityOwnershipPublicCondition = EntityOwnershipPublicCondition;
12481
+ type index_d$5_EntityRecord = EntityRecord;
12157
12482
  type index_d$5_EntityTemplateProps<T extends FieldValues> = EntityTemplateProps<T>;
12158
12483
  type index_d$5_EntityTranslations = EntityTranslations;
12159
12484
  type index_d$5_EnvironmentMode = EnvironmentMode;
@@ -12364,6 +12689,7 @@ declare const index_d$5_SUBSCRIPTION_DURATIONS: typeof SUBSCRIPTION_DURATIONS;
12364
12689
  declare const index_d$5_SUBSCRIPTION_STATUS: typeof SUBSCRIPTION_STATUS;
12365
12690
  declare const index_d$5_SUBSCRIPTION_TIERS: typeof SUBSCRIPTION_TIERS;
12366
12691
  type index_d$5_SchemaMetadata = SchemaMetadata;
12692
+ type index_d$5_ScopeConfig = ScopeConfig;
12367
12693
  type index_d$5_SetCustomClaimsResponse = SetCustomClaimsResponse;
12368
12694
  type index_d$5_SidebarZoneConfig = SidebarZoneConfig;
12369
12695
  type index_d$5_SlotContent = SlotContent;
@@ -12428,6 +12754,7 @@ type index_d$5_TranslationResource = TranslationResource;
12428
12754
  type index_d$5_UIFieldOptions<T extends FieldType = FieldType> = UIFieldOptions<T>;
12429
12755
  declare const index_d$5_USER_ROLES: typeof USER_ROLES;
12430
12756
  type index_d$5_UniqueConstraintValidator = UniqueConstraintValidator;
12757
+ type index_d$5_UniqueKeyDefinition = UniqueKeyDefinition;
12431
12758
  type index_d$5_UnsubscribeFn = UnsubscribeFn;
12432
12759
  type index_d$5_UpdateEntityData<T extends Record<string, any>> = UpdateEntityData<T>;
12433
12760
  type index_d$5_UpdateEntityRequest = UpdateEntityRequest;
@@ -12495,7 +12822,7 @@ declare const index_d$5_validateUserSubscription: typeof validateUserSubscriptio
12495
12822
  declare const index_d$5_validateWebhookEvent: typeof validateWebhookEvent;
12496
12823
  declare namespace index_d$5 {
12497
12824
  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 };
12825
+ 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_EntityOwnershipConfig as EntityOwnershipConfig, index_d$5_EntityOwnershipPublicCondition as EntityOwnershipPublicCondition, 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
12826
  }
12500
12827
 
12501
12828
  /**
@@ -17215,6 +17542,56 @@ declare function createMetadata(userId: string): {
17215
17542
  _updatedBy: string;
17216
17543
  };
17217
17544
 
17545
+ /**
17546
+ * @fileoverview Currency Formatting Utilities
17547
+ * @description Single mapping of ISO 4217 currency codes to locale and symbol. Top ~50 currencies.
17548
+ *
17549
+ * @version 0.0.1
17550
+ * @since 0.0.1
17551
+ * @author AMBROISE PARK Consulting
17552
+ */
17553
+ /** Entry: 3-letter code → locale (for Intl) and display symbol */
17554
+ interface CurrencyEntry {
17555
+ locale: string;
17556
+ symbol: string;
17557
+ }
17558
+ /**
17559
+ * Top ~50 currencies: 3-letter code, locale, symbol.
17560
+ * Unknown codes: getCurrencyLocale → 'en-US', getCurrencySymbol → code as-is.
17561
+ */
17562
+ declare const CURRENCY_MAP: Record<string, CurrencyEntry>;
17563
+ /**
17564
+ * Returns the locale for a currency code (for Intl formatting).
17565
+ * Unknown codes → 'en-US'.
17566
+ *
17567
+ * @param currencyCode - ISO 4217 currency code (e.g. 'EUR', 'USD')
17568
+ * @returns Locale string
17569
+ */
17570
+ declare function getCurrencyLocale(currencyCode: string): string;
17571
+ /**
17572
+ * Returns the symbol for a currency code (e.g. EUR → '€').
17573
+ * Unknown codes → code as-is (no validation).
17574
+ *
17575
+ * @param currencyCode - ISO 4217 currency code or any string
17576
+ * @returns Symbol string or the code itself
17577
+ */
17578
+ declare function getCurrencySymbol(currencyCode: string): string;
17579
+ /**
17580
+ * Format currency value with proper locale based on currency code
17581
+ *
17582
+ * @param value - Numeric value to format
17583
+ * @param currencyCode - ISO 4217 currency code
17584
+ * @param options - Additional Intl.NumberFormat options
17585
+ * @returns Formatted currency string
17586
+ *
17587
+ * @example
17588
+ * ```typescript
17589
+ * formatCurrency(12345, 'EUR') // → "12 345 €"
17590
+ * formatCurrency(12345, 'USD') // → "$12,345"
17591
+ * ```
17592
+ */
17593
+ declare function formatCurrency(value: number | null | undefined, currencyCode: string, options?: Intl.NumberFormatOptions): string;
17594
+
17218
17595
  /**
17219
17596
  * @fileoverview Date utilities for consistent timestamp handling
17220
17597
  * @description Provides standardized date utilities for ISO string timestamps.
@@ -17420,6 +17797,29 @@ declare function parseDateToNoonUTC(dateString: string): string | undefined;
17420
17797
  */
17421
17798
  declare function toDateOnly(date: DateValue | number | string | null | undefined): string;
17422
17799
 
17800
+ /**
17801
+ * @fileoverview Firestore rule condition generator for stakeholder ownership
17802
+ * @description Given EntityOwnershipConfig, returns a rule condition string suitable for
17803
+ * allow read and allow update. Use the same condition for both (owners can read and update).
17804
+ *
17805
+ * @version 0.0.1
17806
+ * @since 0.0.1
17807
+ * @author AMBROISE PARK Consulting
17808
+ */
17809
+
17810
+ /**
17811
+ * Generates a Firestore rule condition for read and update based on ownership config.
17812
+ * Use the returned string in firestore.rules like:
17813
+ *
17814
+ * allow read, update: if <generated>;
17815
+ *
17816
+ * The condition is: (publicCondition AND ...) OR request.auth.uid == resource.data.<ownerField1> OR ...
17817
+ *
17818
+ * @param ownership - Entity ownership config (ownerFields + optional publicCondition array)
17819
+ * @returns Rule condition expression string
17820
+ */
17821
+ declare function generateFirestoreRuleCondition(ownership: EntityOwnershipConfig): string;
17822
+
17423
17823
  /**
17424
17824
  * @fileoverview Smart translation helper
17425
17825
  * @description Auto-detects translation keys vs raw strings
@@ -17668,6 +18068,18 @@ declare function lazyImport<T>(importFn: () => Promise<T>, cacheKey: string): Pr
17668
18068
 
17669
18069
  */
17670
18070
  declare function hasRoleAccess(userRole: string | undefined, requiredRole: string): boolean;
18071
+ /**
18072
+ * Extract canonical role from auth claims
18073
+ *
18074
+ * Handles:
18075
+ * - 'role' claim (primary)
18076
+ * - Boolean flags (isAdmin, isSuper) (legacy/convenience)
18077
+ * - Fallbacks to USER_ROLES.USER
18078
+ *
18079
+ * @param claims - Auth claims object
18080
+ * @returns Canonical role string
18081
+ */
18082
+ declare function getRoleFromClaims(claims: Record<string, any>): string;
17671
18083
 
17672
18084
  /**
17673
18085
 
@@ -17934,38 +18346,6 @@ declare function updateMetadata(userId: string): {
17934
18346
  _updatedBy: string;
17935
18347
  };
17936
18348
 
17937
- /**
17938
- * @fileoverview Field visibility filter utility
17939
- * @description Filters document fields based on visibility and user role using a Valibot schema.
17940
- *
17941
- * Uses 6-level hierarchical visibility system:
17942
- *
17943
- * Hierarchy: guest < user < admin < super
17944
- *
17945
- * - `guest`: Everyone (including unauthenticated)
17946
- * - `user`: Authenticated users (see guest + user)
17947
- * - `admin`: Admins (see guest + user + admin)
17948
- * - `super`: Super admins (see guest + user + admin + super)
17949
- * - `technical`: System fields (admins+ only, read-only in forms)
17950
- * - `hidden`: Never exposed to client
17951
- *
17952
- * @version 0.0.3
17953
- * @since 0.0.1
17954
- * @author AMBROISE PARK Consulting
17955
- */
17956
-
17957
- /**
17958
- * Filters the fields of a data object based on visibility rules defined
17959
- * in a Valibot schema and the user's role.
17960
- *
17961
- * @template T - The expected type of the data object
17962
- * @param data - The document data object to filter
17963
- * @param schema - The Valibot schema with visibility metadata on each field
17964
- * @param userRole - The current user's role (guest, user, admin, super)
17965
- * @returns A new object containing only the fields visible to the user
17966
- */
17967
- declare function filterVisibleFields<T extends Record<string, any>>(data: T | null | undefined, schema: v.BaseSchema<unknown, any, v.BaseIssue<unknown>> | dndevSchema<any>, userRole: UserRole): Partial<T>;
17968
-
17969
18349
  /**
17970
18350
  * @fileoverview Field visibility utility
17971
18351
  * @description Extracts visible field names from a Valibot schema based on user role.
@@ -17980,8 +18360,9 @@ declare function filterVisibleFields<T extends Record<string, any>>(data: T | nu
17980
18360
  * - `super`: Super admins (see guest + user + admin + super)
17981
18361
  * - `technical`: System fields (admins+ only, read-only in forms)
17982
18362
  * - `hidden`: Never exposed to client
18363
+ * - `owner`: Visible only when request.auth.uid matches one of entity.ownership.ownerFields on the document (requires options)
17983
18364
  *
17984
- * @version 0.0.4
18365
+ * @version 0.0.5
17985
18366
  * @since 0.0.1
17986
18367
  * @author AMBROISE PARK Consulting
17987
18368
  */
@@ -18003,15 +18384,64 @@ declare function filterVisibleFields<T extends Record<string, any>>(data: T | nu
18003
18384
  * @returns True if the field should be visible
18004
18385
  */
18005
18386
  declare function isFieldVisible(visibility: Visibility | undefined, userRole: UserRole): boolean;
18387
+ /**
18388
+ * Options for owner-level visibility (per-document check).
18389
+ */
18390
+ interface GetVisibleFieldsOptions {
18391
+ documentData?: Record<string, unknown>;
18392
+ uid?: string;
18393
+ ownership?: EntityOwnershipConfig;
18394
+ }
18006
18395
  /**
18007
18396
  * Extracts the names of all fields from a Valibot object schema that should be visible
18008
- * based on the user's role.
18397
+ * based on the user's role and optional ownership context (for visibility: 'owner').
18009
18398
  *
18010
18399
  * @param schema - The Valibot schema, expected to be an object schema (v.object)
18011
18400
  * @param userRole - The current user's role (guest, user, admin, super)
18401
+ * @param options - Optional: documentData, uid, ownership for owner-level visibility
18012
18402
  * @returns An array of visible field names
18013
18403
  */
18014
- declare function getVisibleFields(schema: v.BaseSchema<unknown, any, v.BaseIssue<unknown>> | dndevSchema<any>, userRole: UserRole): string[];
18404
+ declare function getVisibleFields(schema: v.BaseSchema<unknown, any, v.BaseIssue<unknown>> | dndevSchema<any>, userRole: UserRole, options?: GetVisibleFieldsOptions): string[];
18405
+
18406
+ /**
18407
+ * @fileoverview Field visibility filter utility
18408
+ * @description Filters document fields based on visibility and user role using a Valibot schema.
18409
+ *
18410
+ * Uses 6-level hierarchical visibility system:
18411
+ *
18412
+ * Hierarchy: guest < user < admin < super
18413
+ *
18414
+ * - `guest`: Everyone (including unauthenticated)
18415
+ * - `user`: Authenticated users (see guest + user)
18416
+ * - `admin`: Admins (see guest + user + admin)
18417
+ * - `super`: Super admins (see guest + user + admin + super)
18418
+ * - `technical`: System fields (admins+ only, read-only in forms)
18419
+ * - `hidden`: Never exposed to client
18420
+ *
18421
+ * @version 0.0.3
18422
+ * @since 0.0.1
18423
+ * @author AMBROISE PARK Consulting
18424
+ */
18425
+
18426
+ /**
18427
+ * Options for owner-level visibility (per-document check).
18428
+ * Pass documentData, uid, and ownership so fields with visibility: 'owner' are included when uid matches an owner field.
18429
+ */
18430
+ type FilterVisibleFieldsOptions = GetVisibleFieldsOptions;
18431
+ /**
18432
+ * Filters the fields of a data object based on visibility rules defined
18433
+ * in a Valibot schema and the user's role. When options (documentData, uid, ownership)
18434
+ * are provided, fields with visibility: 'owner' are included only if uid matches
18435
+ * one of ownership.ownerFields in documentData.
18436
+ *
18437
+ * @template T - The expected type of the data object
18438
+ * @param data - The document data object to filter
18439
+ * @param schema - The Valibot schema with visibility metadata on each field
18440
+ * @param userRole - The current user's role (guest, user, admin, super)
18441
+ * @param options - Optional: documentData, uid, ownership for owner-level visibility
18442
+ * @returns A new object containing only the fields visible to the user
18443
+ */
18444
+ declare function filterVisibleFields<T extends Record<string, any>>(data: T | null | undefined, schema: v.BaseSchema<unknown, any, v.BaseIssue<unknown>> | dndevSchema<any>, userRole: UserRole, options?: FilterVisibleFieldsOptions): Partial<T>;
18015
18445
 
18016
18446
  /**
18017
18447
  * License validation result
@@ -18113,6 +18543,7 @@ type index_d$4_BrowserEngine = BrowserEngine;
18113
18543
  type index_d$4_BrowserInfo = BrowserInfo;
18114
18544
  type index_d$4_BrowserType = BrowserType;
18115
18545
  declare const index_d$4_CONSENT_LEVELS: typeof CONSENT_LEVELS;
18546
+ declare const index_d$4_CURRENCY_MAP: typeof CURRENCY_MAP;
18116
18547
  type index_d$4_Claims = Claims;
18117
18548
  type index_d$4_ClaimsCache = ClaimsCache;
18118
18549
  declare const index_d$4_ClaimsCache: typeof ClaimsCache;
@@ -18122,6 +18553,7 @@ type index_d$4_CleanupFunction = CleanupFunction;
18122
18553
  type index_d$4_CompatibilityReport = CompatibilityReport;
18123
18554
  type index_d$4_ConsentLevel = ConsentLevel;
18124
18555
  type index_d$4_CookieInfo = CookieInfo;
18556
+ type index_d$4_CurrencyEntry = CurrencyEntry;
18125
18557
  declare const index_d$4_DEFAULT_ERROR_MESSAGES: typeof DEFAULT_ERROR_MESSAGES;
18126
18558
  declare const index_d$4_DEGRADED_AUTH_API: typeof DEGRADED_AUTH_API;
18127
18559
  declare const index_d$4_DEGRADED_BILLING_API: typeof DEGRADED_BILLING_API;
@@ -18139,7 +18571,9 @@ type index_d$4_EventListener<T = any> = EventListener<T>;
18139
18571
  declare const index_d$4_FRAMEWORK_FEATURES: typeof FRAMEWORK_FEATURES;
18140
18572
  type index_d$4_FeatureAvailability = FeatureAvailability;
18141
18573
  type index_d$4_FeatureSupport = FeatureSupport;
18574
+ type index_d$4_FilterVisibleFieldsOptions = FilterVisibleFieldsOptions;
18142
18575
  type index_d$4_FrameworkFeature = FrameworkFeature;
18576
+ type index_d$4_GetVisibleFieldsOptions = GetVisibleFieldsOptions;
18143
18577
  type index_d$4_HandleErrorOptions = HandleErrorOptions;
18144
18578
  type index_d$4_HybridStorageStrategy = HybridStorageStrategy;
18145
18579
  declare const index_d$4_HybridStorageStrategy: typeof HybridStorageStrategy;
@@ -18204,12 +18638,14 @@ declare const index_d$4_encryptData: typeof encryptData;
18204
18638
  declare const index_d$4_exportEncryptionKey: typeof exportEncryptionKey;
18205
18639
  declare const index_d$4_filterVisibleFields: typeof filterVisibleFields;
18206
18640
  declare const index_d$4_formatCookieList: typeof formatCookieList;
18641
+ declare const index_d$4_formatCurrency: typeof formatCurrency;
18207
18642
  declare const index_d$4_formatDate: typeof formatDate;
18208
18643
  declare const index_d$4_formatRelativeTime: typeof formatRelativeTime;
18209
18644
  declare const index_d$4_generateCodeChallenge: typeof generateCodeChallenge;
18210
18645
  declare const index_d$4_generateCodeVerifier: typeof generateCodeVerifier;
18211
18646
  declare const index_d$4_generateCompatibilityReport: typeof generateCompatibilityReport;
18212
18647
  declare const index_d$4_generateEncryptionKey: typeof generateEncryptionKey;
18648
+ declare const index_d$4_generateFirestoreRuleCondition: typeof generateFirestoreRuleCondition;
18213
18649
  declare const index_d$4_generatePKCEPair: typeof generatePKCEPair;
18214
18650
  declare const index_d$4_getActiveCookies: typeof getActiveCookies;
18215
18651
  declare const index_d$4_getAppShortName: typeof getAppShortName;
@@ -18224,6 +18660,8 @@ declare const index_d$4_getConfigSource: typeof getConfigSource;
18224
18660
  declare const index_d$4_getCookie: typeof getCookie;
18225
18661
  declare const index_d$4_getCookieExamples: typeof getCookieExamples;
18226
18662
  declare const index_d$4_getCookiesByCategory: typeof getCookiesByCategory;
18663
+ declare const index_d$4_getCurrencyLocale: typeof getCurrencyLocale;
18664
+ declare const index_d$4_getCurrencySymbol: typeof getCurrencySymbol;
18227
18665
  declare const index_d$4_getCurrentOrigin: typeof getCurrentOrigin;
18228
18666
  declare const index_d$4_getCurrentTimestamp: typeof getCurrentTimestamp;
18229
18667
  declare const index_d$4_getDndevConfig: typeof getDndevConfig;
@@ -18242,6 +18680,7 @@ declare const index_d$4_getPartnerCacheStatus: typeof getPartnerCacheStatus;
18242
18680
  declare const index_d$4_getPartnerConfig: typeof getPartnerConfig;
18243
18681
  declare const index_d$4_getPlatformEnvVar: typeof getPlatformEnvVar;
18244
18682
  declare const index_d$4_getProviderColor: typeof getProviderColor;
18683
+ declare const index_d$4_getRoleFromClaims: typeof getRoleFromClaims;
18245
18684
  declare const index_d$4_getRoutesConfig: typeof getRoutesConfig;
18246
18685
  declare const index_d$4_getStorageManager: typeof getStorageManager;
18247
18686
  declare const index_d$4_getThemesConfig: typeof getThemesConfig;
@@ -18318,8 +18757,8 @@ declare const index_d$4_validateLicenseKey: typeof validateLicenseKey;
18318
18757
  declare const index_d$4_withErrorHandling: typeof withErrorHandling;
18319
18758
  declare const index_d$4_withGracefulDegradation: typeof withGracefulDegradation;
18320
18759
  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 };
18760
+ 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_generateFirestoreRuleCondition as generateFirestoreRuleCondition, 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_getRoleFromClaims as getRoleFromClaims, 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 };
18761
+ 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_FilterVisibleFieldsOptions as FilterVisibleFieldsOptions, index_d$4_FrameworkFeature as FrameworkFeature, index_d$4_GetVisibleFieldsOptions as GetVisibleFieldsOptions, 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
18762
  }
18324
18763
 
18325
18764
  /**
@@ -19416,6 +19855,34 @@ declare function getRegisteredSchemaTypes(): string[];
19416
19855
  * Clear all schema generators (testing)
19417
19856
  */
19418
19857
  declare function clearSchemaGenerators(): void;
19858
+ /**
19859
+ * Schema generators exported for unified registry
19860
+ * These are also auto-registered below for backward compatibility
19861
+ */
19862
+ declare const textSchema: CustomSchemaGenerator;
19863
+ declare const emailSchema: CustomSchemaGenerator;
19864
+ declare const passwordSchema: CustomSchemaGenerator;
19865
+ declare const urlSchema: CustomSchemaGenerator;
19866
+ declare const numberSchema: CustomSchemaGenerator;
19867
+ declare const booleanSchema: CustomSchemaGenerator;
19868
+ declare const dateSchema: CustomSchemaGenerator;
19869
+ declare const fileSchema: CustomSchemaGenerator;
19870
+ declare const filesSchema: CustomSchemaGenerator;
19871
+ declare const pictureSchema: CustomSchemaGenerator;
19872
+ declare const picturesSchema: CustomSchemaGenerator;
19873
+ declare const geopointSchema: CustomSchemaGenerator;
19874
+ declare const addressSchema: CustomSchemaGenerator;
19875
+ declare const mapSchema: CustomSchemaGenerator;
19876
+ declare const arraySchema: CustomSchemaGenerator;
19877
+ declare const selectSchema: CustomSchemaGenerator;
19878
+ declare const multiselectSchema: CustomSchemaGenerator;
19879
+ declare const referenceSchema: CustomSchemaGenerator;
19880
+ declare const stringSchema: CustomSchemaGenerator;
19881
+ declare const telSchema: CustomSchemaGenerator;
19882
+ declare const neverSchema: CustomSchemaGenerator;
19883
+ declare const switchSchema: CustomSchemaGenerator;
19884
+ declare const gdprConsentSchema: CustomSchemaGenerator;
19885
+ declare const priceSchema: CustomSchemaGenerator;
19419
19886
  /**
19420
19887
  * Get Valibot schema for an entity field
19421
19888
  *
@@ -19801,6 +20268,131 @@ interface SelectOption {
19801
20268
  */
19802
20269
  declare function rangeOptions(start: number, end: number, step?: number, descending?: boolean): SelectOption[];
19803
20270
 
20271
+ /**
20272
+ * @fileoverview Scope Provider Registry for Multi-Tenancy
20273
+ * @description Global registry for scope providers that supply tenant/company/workspace IDs
20274
+ * to CRUD operations. Apps register providers once, entities declare which provider to use.
20275
+ *
20276
+ * @example
20277
+ * ```typescript
20278
+ * // 1. App registers scope provider (once, at startup)
20279
+ * import { registerScopeProvider } from '@donotdev/core';
20280
+ * import { useCurrentCompanyStore } from './stores/currentCompanyStore';
20281
+ *
20282
+ * registerScopeProvider('company', () =>
20283
+ * useCurrentCompanyStore.getState().currentCompanyId
20284
+ * );
20285
+ *
20286
+ * // 2. Entity declares scope
20287
+ * const clientEntity = defineEntity({
20288
+ * name: 'Client',
20289
+ * collection: 'clients',
20290
+ * scope: { field: 'companyId', provider: 'company' },
20291
+ * fields: { ... }
20292
+ * });
20293
+ *
20294
+ * // 3. CRUD operations auto-inject/filter by scope (transparent)
20295
+ * const { add } = useCrud(clientEntity);
20296
+ * await add({ name: 'Acme' }); // companyId auto-injected
20297
+ * ```
20298
+ *
20299
+ * @version 0.0.4
20300
+ * @since 0.0.4
20301
+ * @author AMBROISE PARK Consulting
20302
+ */
20303
+ /**
20304
+ * Function that returns the current scope ID from app state
20305
+ * Returns null if no scope is currently selected (e.g., no company selected)
20306
+ */
20307
+ type ScopeProviderFn = () => string | null;
20308
+ /**
20309
+ * Register a scope provider function
20310
+ *
20311
+ * Call this once at app startup to register scope providers.
20312
+ * The provider function should return the current scope ID from your app's state.
20313
+ *
20314
+ * @param name - Provider name (e.g., 'company', 'tenant', 'workspace')
20315
+ * @param provider - Function that returns the current scope ID
20316
+ *
20317
+ * @example
20318
+ * ```typescript
20319
+ * // Using Zustand store
20320
+ * registerScopeProvider('company', () =>
20321
+ * useCurrentCompanyStore.getState().currentCompanyId
20322
+ * );
20323
+ *
20324
+ * // Using React context (via ref)
20325
+ * const companyIdRef = { current: null };
20326
+ * registerScopeProvider('company', () => companyIdRef.current);
20327
+ * // Update ref in your context provider
20328
+ * ```
20329
+ *
20330
+ * @version 0.0.4
20331
+ * @since 0.0.4
20332
+ * @author AMBROISE PARK Consulting
20333
+ */
20334
+ declare function registerScopeProvider(name: string, provider: ScopeProviderFn): void;
20335
+ /**
20336
+ * Unregister a scope provider (for testing or cleanup)
20337
+ *
20338
+ * @param name - Provider name to unregister
20339
+ *
20340
+ * @version 0.0.4
20341
+ * @since 0.0.4
20342
+ * @author AMBROISE PARK Consulting
20343
+ */
20344
+ declare function unregisterScopeProvider(name: string): void;
20345
+ /**
20346
+ * Get the current scope value from a registered provider
20347
+ *
20348
+ * Used internally by CRUD operations to inject/filter by scope.
20349
+ *
20350
+ * @param providerName - Name of the registered provider
20351
+ * @returns Current scope ID, or null if not available
20352
+ *
20353
+ * @example
20354
+ * ```typescript
20355
+ * const companyId = getScopeValue('company');
20356
+ * if (!companyId) {
20357
+ * throw new Error('No company selected');
20358
+ * }
20359
+ * ```
20360
+ *
20361
+ * @version 0.0.4
20362
+ * @since 0.0.4
20363
+ * @author AMBROISE PARK Consulting
20364
+ */
20365
+ declare function getScopeValue(providerName: string): string | null;
20366
+ /**
20367
+ * Check if a scope provider is registered
20368
+ *
20369
+ * @param providerName - Name of the provider to check
20370
+ * @returns True if provider is registered
20371
+ *
20372
+ * @version 0.0.4
20373
+ * @since 0.0.4
20374
+ * @author AMBROISE PARK Consulting
20375
+ */
20376
+ declare function hasScopeProvider(providerName: string): boolean;
20377
+ /**
20378
+ * Get all registered scope provider names (for debugging)
20379
+ *
20380
+ * @returns Array of registered provider names
20381
+ *
20382
+ * @version 0.0.4
20383
+ * @since 0.0.4
20384
+ * @author AMBROISE PARK Consulting
20385
+ */
20386
+ declare function getRegisteredScopeProviders(): string[];
20387
+ /**
20388
+ * Clear all scope providers (for testing)
20389
+ *
20390
+ * @version 0.0.4
20391
+ * @since 0.0.4
20392
+ * @author AMBROISE PARK Consulting
20393
+ */
20394
+ declare function clearScopeProviders(): void;
20395
+
19804
20396
  /**
19805
20397
  * @fileoverview Schemas package exports
19806
20398
  * @description Schema definitions and validation utilities
@@ -19819,32 +20411,63 @@ declare const index_d$2_DEFAULT_STATUS_VALUE: typeof DEFAULT_STATUS_VALUE;
19819
20411
  declare const index_d$2_HIDDEN_STATUSES: typeof HIDDEN_STATUSES;
19820
20412
  type index_d$2_OperationSchemas = OperationSchemas;
19821
20413
  type index_d$2_SchemaWithVisibility = SchemaWithVisibility;
20414
+ type index_d$2_ScopeProviderFn = ScopeProviderFn;
19822
20415
  type index_d$2_SelectOption = SelectOption;
19823
20416
  type index_d$2_StatusField = StatusField;
19824
20417
  declare const index_d$2_TECHNICAL_FIELD_NAMES: typeof TECHNICAL_FIELD_NAMES;
19825
20418
  type index_d$2_TechnicalField = TechnicalField;
19826
20419
  type index_d$2_TypedBaseFields = TypedBaseFields;
20420
+ declare const index_d$2_addressSchema: typeof addressSchema;
20421
+ declare const index_d$2_arraySchema: typeof arraySchema;
19827
20422
  declare const index_d$2_baseFields: typeof baseFields;
20423
+ declare const index_d$2_booleanSchema: typeof booleanSchema;
19828
20424
  declare const index_d$2_clearSchemaGenerators: typeof clearSchemaGenerators;
20425
+ declare const index_d$2_clearScopeProviders: typeof clearScopeProviders;
19829
20426
  declare const index_d$2_createSchemas: typeof createSchemas;
20427
+ declare const index_d$2_dateSchema: typeof dateSchema;
19830
20428
  declare const index_d$2_defineEntity: typeof defineEntity;
20429
+ declare const index_d$2_emailSchema: typeof emailSchema;
19831
20430
  declare const index_d$2_enhanceSchema: typeof enhanceSchema;
20431
+ declare const index_d$2_fileSchema: typeof fileSchema;
20432
+ declare const index_d$2_filesSchema: typeof filesSchema;
20433
+ declare const index_d$2_gdprConsentSchema: typeof gdprConsentSchema;
20434
+ declare const index_d$2_geopointSchema: typeof geopointSchema;
19832
20435
  declare const index_d$2_getCollectionName: typeof getCollectionName;
19833
20436
  declare const index_d$2_getRegisteredSchemaTypes: typeof getRegisteredSchemaTypes;
20437
+ declare const index_d$2_getRegisteredScopeProviders: typeof getRegisteredScopeProviders;
19834
20438
  declare const index_d$2_getSchemaType: typeof getSchemaType;
20439
+ declare const index_d$2_getScopeValue: typeof getScopeValue;
19835
20440
  declare const index_d$2_hasCustomSchemaGenerator: typeof hasCustomSchemaGenerator;
19836
20441
  declare const index_d$2_hasMetadata: typeof hasMetadata;
20442
+ declare const index_d$2_hasScopeProvider: typeof hasScopeProvider;
19837
20443
  declare const index_d$2_isBackendGeneratedField: typeof isBackendGeneratedField;
19838
20444
  declare const index_d$2_isFrameworkField: typeof isFrameworkField;
20445
+ declare const index_d$2_mapSchema: typeof mapSchema;
20446
+ declare const index_d$2_multiselectSchema: typeof multiselectSchema;
20447
+ declare const index_d$2_neverSchema: typeof neverSchema;
20448
+ declare const index_d$2_numberSchema: typeof numberSchema;
20449
+ declare const index_d$2_passwordSchema: typeof passwordSchema;
20450
+ declare const index_d$2_pictureSchema: typeof pictureSchema;
20451
+ declare const index_d$2_picturesSchema: typeof picturesSchema;
20452
+ declare const index_d$2_priceSchema: typeof priceSchema;
19839
20453
  declare const index_d$2_rangeOptions: typeof rangeOptions;
20454
+ declare const index_d$2_referenceSchema: typeof referenceSchema;
19840
20455
  declare const index_d$2_registerSchemaGenerator: typeof registerSchemaGenerator;
20456
+ declare const index_d$2_registerScopeProvider: typeof registerScopeProvider;
19841
20457
  declare const index_d$2_registerUniqueConstraintValidator: typeof registerUniqueConstraintValidator;
20458
+ declare const index_d$2_selectSchema: typeof selectSchema;
20459
+ declare const index_d$2_stringSchema: typeof stringSchema;
20460
+ declare const index_d$2_switchSchema: typeof switchSchema;
20461
+ declare const index_d$2_telSchema: typeof telSchema;
20462
+ declare const index_d$2_textSchema: typeof textSchema;
20463
+ declare const index_d$2_unregisterScopeProvider: typeof unregisterScopeProvider;
20464
+ declare const index_d$2_urlSchema: typeof urlSchema;
19842
20465
  declare const index_d$2_validateDates: typeof validateDates;
19843
20466
  declare const index_d$2_validateDocument: typeof validateDocument;
19844
20467
  declare const index_d$2_validateUniqueFields: typeof validateUniqueFields;
19845
20468
  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 };
20469
+ 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 };
20470
+ 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
20471
  }
19849
20472
 
19850
20473
  declare class Subscribable<TListener extends Function> {
@@ -22482,7 +23105,7 @@ declare function AppConfigProvider({ config, platform, children, }: AppConfigPro
22482
23105
  */
22483
23106
  declare function useAppConfig(): AppConfig;
22484
23107
  declare function useAppConfig(key: 'app'): AppMetadata | undefined;
22485
- declare function useAppConfig(key: 'url' | 'name' | 'shortName' | 'description'): string;
23108
+ declare function useAppConfig(key: 'name' | 'shortName' | 'description'): string;
22486
23109
  /**
22487
23110
  * useAuthConfig hook
22488
23111
  *
@@ -23293,5 +23916,5 @@ declare namespace index_d {
23293
23916
  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
23917
  }
23295
23918
 
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 };
23919
+ 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, generateFirestoreRuleCondition, 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, getRoleFromClaims, 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 };
23920
+ 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, EntityOwnershipConfig, EntityOwnershipPublicCondition, 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, FilterVisibleFieldsOptions, 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, GetVisibleFieldsOptions, 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 };