@stndrds/schema 1.0.0-alpha.77 → 1.0.0-alpha.79

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.
@@ -1,4 +1,4 @@
1
- import { a5 as Timestamps, A as Attribute, q as AttributeType, K as Location, Q as LocationGranularity, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, P as Phone, J as Currency, m as FormulaAttribute, o as RollupAttribute, a8 as CompletionStatus, a6 as SharingMode, a9 as ObjectRecord, r as ObjectDefinition, v as FeatureFlagsRepository, b1 as ValidationResult, ae as PropertySchema, i as RelationAttribute, n as FormulaReturnType } from './validators-BxPuQ2GT.js';
1
+ import { a5 as Timestamps, A as Attribute, q as AttributeType, o as RollupAttribute, K as Location, Q as LocationGranularity, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, P as Phone, J as Currency, m as FormulaAttribute, a8 as CompletionStatus, a6 as SharingMode, a9 as ObjectRecord, r as ObjectDefinition, v as FeatureFlagsRepository, b1 as ValidationResult, ae as PropertySchema, i as RelationAttribute, n as FormulaReturnType } from './validators-5RPbTlXa.js';
2
2
  import { IconName, MimeType, ColorId, CountryIso3 } from '@stndrds/constants';
3
3
  import { Uuid, TenantId, UserId } from './utils.js';
4
4
  import { JWTPayload } from 'jose';
@@ -266,6 +266,20 @@ type AIMessageRole = "user" | "assistant";
266
266
  * Level of "thinking" or reasoning depth
267
267
  */
268
268
  type AIThinkingLevel = "none" | "light" | "deep" | "maximum";
269
+ /**
270
+ * An AI model available for selection by the user.
271
+ * Configured on the backend and exposed via GET /agent/models.
272
+ */
273
+ interface AIAvailableModel {
274
+ /** Model identifier (e.g. "claude-sonnet-4-6") */
275
+ id: string;
276
+ /** Provider name (e.g. "anthropic", "google") */
277
+ provider: string;
278
+ /** Display label (e.g. "Claude 4.6 Sonnet") */
279
+ label: string;
280
+ /** Whether this is the default model */
281
+ isDefault?: boolean;
282
+ }
269
283
  /**
270
284
  * Tool call status during execution
271
285
  */
@@ -685,6 +699,8 @@ interface AuditLogEntry {
685
699
  */
686
700
  interface CreateAuditLogInput {
687
701
  actorId?: string;
702
+ /** Denormalized actor email for display purposes. */
703
+ actorEmail?: string;
688
704
  actorType?: AuditActorType;
689
705
  action: AuditAction;
690
706
  resourceType: AuditResourceType;
@@ -1433,6 +1449,14 @@ declare const NO_VALUE_OPERATORS: readonly NoValueOperator[];
1433
1449
  * Check if an operator requires a value
1434
1450
  */
1435
1451
  declare function isNoValueOperator(operator: FilterOperator): operator is NoValueOperator;
1452
+ /**
1453
+ * Get the filter operators for a rollup attribute based on its aggregation function and target type.
1454
+ *
1455
+ * - earliest / latest → date operators
1456
+ * - original → operators matching targetAttributeType (falls back to numeric if unknown)
1457
+ * - all other functions → numeric operators (sum, avg, count, percent, etc.)
1458
+ */
1459
+ declare function getRollupFilterOperators(attr: RollupAttribute): readonly FilterOperator[];
1436
1460
 
1437
1461
  /**
1438
1462
  * Represents a "slot" for an object to be created in the flow
@@ -1466,20 +1490,71 @@ interface FlowRowField {
1466
1490
  attribute: string;
1467
1491
  /** Override label for this flow */
1468
1492
  label?: string;
1493
+ /** Override tooltip/description for this flow */
1494
+ tooltip?: string;
1469
1495
  /** Override required */
1470
1496
  required?: boolean;
1471
1497
  }
1472
1498
  /**
1473
- * Row containing fields that auto-distribute their width
1499
+ * Row type discriminator.
1500
+ * - "fields" (or undefined): standard row with data fields
1501
+ * - "heading": section heading
1502
+ * - "separator": visual divider
1503
+ * - "text": static descriptive text
1474
1504
  */
1475
- interface FlowRow {
1505
+ type FlowRowType = "fields" | "heading" | "separator" | "text";
1506
+ /**
1507
+ * Standard row containing data fields
1508
+ */
1509
+ interface FlowFieldsRow {
1476
1510
  /** Unique row ID */
1477
1511
  id: string;
1478
1512
  /** Display order within the page */
1479
1513
  order: number;
1514
+ /** Row type (optional for backward compat — defaults to "fields") */
1515
+ type?: "fields";
1480
1516
  /** Fields in this row (auto-distribute width) */
1481
1517
  fields: FlowRowField[];
1482
1518
  }
1519
+ /**
1520
+ * Heading row — renders a section title in the form
1521
+ */
1522
+ interface FlowHeadingRow {
1523
+ id: string;
1524
+ order: number;
1525
+ type: "heading";
1526
+ /** Heading text */
1527
+ content: string;
1528
+ /** Heading level (1 = large, 2 = medium, 3 = small) */
1529
+ level?: 1 | 2 | 3;
1530
+ }
1531
+ /**
1532
+ * Separator row — renders a visual divider
1533
+ */
1534
+ interface FlowSeparatorRow {
1535
+ id: string;
1536
+ order: number;
1537
+ type: "separator";
1538
+ }
1539
+ /**
1540
+ * Static text row — renders descriptive/instructional text
1541
+ */
1542
+ interface FlowTextRow {
1543
+ id: string;
1544
+ order: number;
1545
+ type: "text";
1546
+ /** Text content (supports basic markdown) */
1547
+ content: string;
1548
+ }
1549
+ /**
1550
+ * Union of all row types.
1551
+ * Use `isFlowFieldsRow()` / `isLayoutRow()` type guards for narrowing.
1552
+ */
1553
+ type FlowRow = FlowFieldsRow | FlowHeadingRow | FlowSeparatorRow | FlowTextRow;
1554
+ /** Check if a row is a standard fields row */
1555
+ declare function isFlowFieldsRow(row: FlowRow): row is FlowFieldsRow;
1556
+ /** Check if a row is a layout row (heading, separator, or text) */
1557
+ declare function isLayoutRow(row: FlowRow): row is FlowHeadingRow | FlowSeparatorRow | FlowTextRow;
1483
1558
  /**
1484
1559
  * Page/step in a flow
1485
1560
  */
@@ -2007,16 +2082,13 @@ type PermissionScope = "object" | "system";
2007
2082
  * Actions that can be performed on a resource.
2008
2083
  */
2009
2084
  type Action = "read" | "create" | "update" | "delete";
2010
- /** @deprecated Use Action directly */
2011
- type ObjectAction = Action;
2012
- /** @deprecated Use Action directly */
2013
- type SystemAction = Action;
2014
2085
  /**
2015
2086
  * System resources that can be managed.
2016
2087
  * - `people`: User profiles, invitations, roles and permissions
2017
2088
  * - `workspace`: Object definitions, attributes, tenant settings, audit logs
2089
+ * - `architect`: Architect settings, templates, and configurations
2018
2090
  */
2019
- type SystemResource = "people" | "workspace";
2091
+ type SystemResource = "people" | "workspace" | "architect";
2020
2092
  /**
2021
2093
  * Preset access levels for simplified permission configuration.
2022
2094
  * - `full`: All CRUD actions
@@ -2158,10 +2230,6 @@ interface UserRoleAssignment {
2158
2230
  * Returned by the API for permission checks.
2159
2231
  */
2160
2232
  interface EffectivePermissions {
2161
- /**
2162
- * If true, the user has full admin access and bypasses all permission checks.
2163
- */
2164
- isAdmin: boolean;
2165
2233
  /**
2166
2234
  * Object-level permissions.
2167
2235
  * Key is the object name, value is array of allowed actions.
@@ -3786,17 +3854,30 @@ interface FormFieldContext {
3786
3854
  readOnly: boolean;
3787
3855
  /** Reason for read-only (if applicable) */
3788
3856
  readOnlyReason?: ReadOnlyReason;
3857
+ /** Override label (from FlowRowField.label) */
3858
+ labelOverride?: string;
3859
+ /** Override tooltip/description (from FlowRowField.tooltip) */
3860
+ tooltipOverride?: string;
3789
3861
  }
3790
3862
  /**
3791
- * A row of form fields.
3792
- * Preserves the row structure defined in the workflow form node.
3863
+ * Standard row of form fields
3793
3864
  */
3794
- interface FormFieldRow {
3865
+ interface FormFieldsRow {
3795
3866
  /** Row ID from the workflow definition */
3796
3867
  id: string;
3868
+ /** Row type (optional for backward compat) */
3869
+ type?: "fields";
3797
3870
  /** Fields in this row */
3798
3871
  fields: FormFieldContext[];
3799
3872
  }
3873
+ /**
3874
+ * Union of all form row types.
3875
+ * Backward-compatible: rows without `type` are treated as field rows.
3876
+ * Layout rows (heading, separator, text) are shared with FlowRow types.
3877
+ */
3878
+ type FormFieldRow = FormFieldsRow | FlowHeadingRow | FlowSeparatorRow | FlowTextRow;
3879
+ /** Check if a form row contains fields */
3880
+ declare function isFormFieldsRow(row: FormFieldRow): row is FormFieldsRow;
3800
3881
  /**
3801
3882
  * Form node information
3802
3883
  */
@@ -4554,9 +4635,9 @@ interface CreateUserProfile {
4554
4635
  * Data for updating an existing user profile
4555
4636
  */
4556
4637
  interface UpdateUserProfile {
4557
- firstName?: string;
4558
- lastName?: string;
4559
- avatarUrl?: string;
4638
+ firstName?: string | null;
4639
+ lastName?: string | null;
4640
+ avatarUrl?: string | null;
4560
4641
  status?: UserStatus;
4561
4642
  lastLoginAt?: Date;
4562
4643
  }
@@ -7155,6 +7236,10 @@ declare class AuditService extends BaseService {
7155
7236
  * Log an entry (sync or async based on options)
7156
7237
  */
7157
7238
  private log;
7239
+ /**
7240
+ * Resolve actorEmail from user profiles if not already set
7241
+ */
7242
+ private resolveActorEmail;
7158
7243
  /**
7159
7244
  * Start the flush timer for async mode
7160
7245
  */
@@ -7210,7 +7295,7 @@ declare class PermissionService extends BaseService {
7210
7295
  * @param action - Action to check (read, create, update, delete)
7211
7296
  * @returns true if user has permission, false otherwise
7212
7297
  */
7213
- canAccessObject(userProfileId: string, objectName: string, action: ObjectAction): Promise<boolean>;
7298
+ canAccessObject(userProfileId: string, objectName: string, action: Action): Promise<boolean>;
7214
7299
  /**
7215
7300
  * Check if user can access an object, throw ForbiddenError if not.
7216
7301
  *
@@ -7219,7 +7304,7 @@ declare class PermissionService extends BaseService {
7219
7304
  * @param action - Action to check
7220
7305
  * @throws ForbiddenError if user lacks permission
7221
7306
  */
7222
- checkObjectAccess(userProfileId: string, objectName: string, action: ObjectAction): Promise<void>;
7307
+ checkObjectAccess(userProfileId: string, objectName: string, action: Action): Promise<void>;
7223
7308
  /**
7224
7309
  * Get permissions for a specific object as boolean flags.
7225
7310
  * Optimized to fetch permissions once and compute all flags.
@@ -7237,7 +7322,7 @@ declare class PermissionService extends BaseService {
7237
7322
  * @param action - Action to check (read, create, update, delete)
7238
7323
  * @returns true if user has permission, false otherwise
7239
7324
  */
7240
- canAccessSystem(userProfileId: string, resource: SystemResource, action: SystemAction): Promise<boolean>;
7325
+ canAccessSystem(userProfileId: string, resource: SystemResource, action: Action): Promise<boolean>;
7241
7326
  /**
7242
7327
  * Check if user can access a system resource, throw ForbiddenError if not.
7243
7328
  *
@@ -7246,7 +7331,7 @@ declare class PermissionService extends BaseService {
7246
7331
  * @param action - Action to check
7247
7332
  * @throws ForbiddenError if user lacks permission
7248
7333
  */
7249
- checkSystemAccess(userProfileId: string, resource: SystemResource, action: SystemAction): Promise<void>;
7334
+ checkSystemAccess(userProfileId: string, resource: SystemResource, action: Action): Promise<void>;
7250
7335
  /**
7251
7336
  * Get permissions for a specific system resource as boolean flags.
7252
7337
  * Optimized to fetch permissions once and compute all flags.
@@ -7319,9 +7404,8 @@ declare class PermissionService extends BaseService {
7319
7404
  * Initialize default roles for the tenant if they don't exist.
7320
7405
  *
7321
7406
  * Creates the following roles with their default permissions:
7322
- * - **admin**: Full access to all system resources and objects
7323
- * - **member**: No system access, can read/create/update objects (no delete)
7324
- * - **guest**: No system access, read-only access to objects
7407
+ * - **owner**: Full access to all system resources and objects
7408
+ * - **member**: Full CRUD on business data, read-only on system resources (people, workspace)
7325
7409
  *
7326
7410
  * This method is idempotent - it only creates roles that don't already exist.
7327
7411
  * Should be called during tenant bootstrap or on first admin login.
@@ -10748,9 +10832,7 @@ declare class FileService extends BaseService {
10748
10832
  * @param userId - User ID to check
10749
10833
  * @returns true if user can access the file
10750
10834
  */
10751
- checkAccess(fileId: string, userId: string, options?: {
10752
- isAdmin?: boolean;
10753
- }): Promise<boolean>;
10835
+ checkAccess(fileId: string, userId: string): Promise<boolean>;
10754
10836
  /**
10755
10837
  * @deprecated Use checkAccess() instead
10756
10838
  */
@@ -11843,6 +11925,29 @@ declare class UserProfileService extends BaseService {
11843
11925
  * Called automatically after mutations.
11844
11926
  */
11845
11927
  private invalidateProfileCache;
11928
+ /**
11929
+ * Resolve avatar storage path to a signed URL.
11930
+ * External URLs (https://) pass through unchanged.
11931
+ * Storage paths are resolved to fresh signed URLs (1h expiry).
11932
+ */
11933
+ private resolveAvatarUrl;
11934
+ private resolveAvatarUrls;
11935
+ /**
11936
+ * Upload a new avatar for the user.
11937
+ * Deletes previous avatar from storage if it was an internal upload.
11938
+ * Stores the storagePath — resolved to signed URL at read time.
11939
+ */
11940
+ uploadAvatar(profileId: string, input: {
11941
+ content: FileContent;
11942
+ fileName: string;
11943
+ mimeType: string;
11944
+ size: number;
11945
+ }): Promise<UserProfile>;
11946
+ /**
11947
+ * Delete the user's avatar.
11948
+ * Removes file from storage if it was an internal upload, then clears avatarUrl.
11949
+ */
11950
+ deleteAvatar(profileId: string): Promise<UserProfile>;
11846
11951
  /**
11847
11952
  * Create a new user profile (typically after first auth).
11848
11953
  * Automatically uses tenant context from AsyncLocalStorage.
@@ -12839,4 +12944,4 @@ interface FullSyncOptions extends SyncOptions, ViewSyncOptions {
12839
12944
  */
12840
12945
  declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof registry, nativeViewRegistry: typeof viewRegistry, options?: FullSyncOptions): Promise<FullSyncResult>;
12841
12946
 
12842
- export { type AIToolCallStatus as $, type Action as A, type BoundingBox as B, type CreateMode as C, type DetailViewLayout as D, type SignerRequest as E, type Field as F, type Group as G, type SignaturePosition as H, type InferAttributeValue as I, type SignatureRequestResult as J, type SignatureStatusResult as K, type ListViewDefinition as L, type SignerStatus as M, type SignatureStatus as N, type OcrAdapter as O, type IdentityVerificationAdapter as P, type VerifyInput as Q, type RelationGroup as R, type SystemResource as S, type Tab as T, type VerificationResult as U, type ViewType as V, type WorkflowTheme as W, type DocumentData as X, type VerificationCheck as Y, type AIMessageRole as Z, type AIThinkingLevel as _, type AttributeGroupField as a, type UpdateProcessingJob as a$, type AIToolCall as a0, type AIChatMessagePartType as a1, type TextPartData as a2, type ToolPartData as a3, type ThinkingPartData as a4, type ReasoningPartData as a5, type AIChatMessagePart as a6, type AIChatMessage as a7, type AIQuestionType as a8, type AIQuestionOption as a9, type AuditListOptions as aA, type AuditServiceOptions as aB, type VariableMapping as aC, type PdfTemplateField as aD, type TemplateSource as aE, type DocumentGenerationTemplate as aF, type CreateDocumentGenerationTemplate as aG, type UpdateDocumentGenerationTemplate as aH, type PendingDocumentRequest as aI, type DocumentSlotDefinition as aJ, type DocumentAutoProcessing as aK, type ExtractionMapping as aL, type ExtractionField as aM, type Document as aN, type DocumentStatus as aO, type DocumentSlot as aP, type SlotStatus as aQ, type ProcessingJob as aR, type ProcessingJobType as aS, type ProcessingJobStatus as aT, type CreateDocument as aU, type UpdateDocument as aV, type CreateDocumentTemplate as aW, type UpdateDocumentTemplate as aX, type CreateDocumentSlot as aY, type UpdateDocumentSlot as aZ, type CreateProcessingJob as a_, type AIQuestion as aa, type AIQuestionAnswer as ab, type AIBatchQuestionOption as ac, type AIBatchQuestion as ad, type AIBatchQuestionAnswer as ae, type AITodoStatus as af, type AITodoItem as ag, type AITodoList as ah, type AIMessageAttachment as ai, type AIConversation as aj, type AIMessage as ak, type AIToolCallRecord as al, type AIUserMemory as am, type AIUsageMetrics as an, type AIProviderMetrics as ao, type CreateAIMessageInput as ap, type AIMemoryType as aq, type AIMemoryEntry as ar, type AITenantPersona as as, type AICompactionSummary as at, type AuditResourceType as au, type AuditAction as av, type AuditActorType as aw, type AuditChange as ax, type AuditLogEntry as ay, type CreateAuditLogInput as az, type FieldGroup as b, type ExtractRecordUpdateStrict as b$, type DocumentListOptions as b0, type DocumentTemplateListOptions as b1, type StorageProvider as b2, type FileVisibility as b3, type File as b4, type CreateFile as b5, type UpdateFile as b6, type TextFilterOperator as b7, type NumberFilterOperator as b8, type CheckboxFilterOperator as b9, isFlowDefinition as bA, isFlowPublished as bB, isSystemFlow as bC, type GeocodingSuggestion as bD, type GeocodingAutocompleteParams as bE, type ReverseGeocodingParams as bF, type GeocodingParams as bG, type GeocodingAdapter as bH, NoopGeocodingAdapter as bI, type AttributeSchema as bJ, type InferRecordFromSchema as bK, type InferRecordWithRequirements as bL, type TypedAttribute as bM, type AttributeMap as bN, type AddAttribute as bO, type InferRecord as bP, type InferRecordInput as bQ, type InferRecordUpdate as bR, type CustomAttributeValue as bS, type WithCustomAttributes as bT, type RecordMetadata as bU, type SystemFields as bV, type ExtractRecord as bW, type ExtractRecordStrict as bX, type ExtractRecordInput as bY, type ExtractRecordInputStrict as bZ, type ExtractRecordUpdate as b_, type DateFilterOperator as ba, type SelectFilterOperator as bb, type MultiselectFilterOperator as bc, type RelationFilterOperator as bd, type FilterOperator as be, type RelativeDateValue as bf, type CurrencyFilterValue as bg, type PhoneFilterValue as bh, type FilterValue as bi, type FilterRule as bj, type ExtendedFilterRule as bk, type FilterCombinator as bl, type FilterGroup as bm, type AdvancedFilterState as bn, type SortDirection as bo, type QueryState as bp, OPERATORS_BY_TYPE as bq, type NoValueOperator as br, NO_VALUE_OPERATORS as bs, isNoValueOperator as bt, type FlowSlot as bu, type FlowRowField as bv, type FlowPage as bw, type FlowRelation as bx, type FlowStatus as by, type FlowDefinition as bz, type SidePanelConfig as c, isCustomTab as c$, type ExtractAttributes as c0, type TypedObjectRecord as c1, type ExtractObjectRecord as c2, type ExtractObjectRecordWithCustom as c3, type PermissionScope as c4, type ObjectAction as c5, type SystemAction as c6, type AccessLevel as c7, ALL_ACTIONS as c8, actionsToAccessLevel as c9, type CustomTab as cA, type ActivityTab as cB, type RichtextTab as cC, type FlowsTab as cD, type DocumentsTab as cE, type ListViewLayout as cF, type DetailViewConfig as cG, type CalendarViewConfig as cH, type TimelineViewConfig as cI, type GalleryViewConfig as cJ, type ViewConfig as cK, type CalendarViewDefinition as cL, type TimelineViewDefinition as cM, type GalleryViewDefinition as cN, type ConfigOverrides as cO, type ViewOverlay as cP, isDetailView as cQ, isListView as cR, isCalendarView as cS, isTimelineView as cT, isGalleryView as cU, isFieldGroup as cV, isRelationGroup as cW, isFormTab as cX, isTableTab as cY, isRelationSourceTab as cZ, isInverseSourceTab as c_, accessLevelToActions as ca, type Role as cb, type Permission as cc, type UserRoleAssignment as cd, type EffectivePermissions as ce, type ObjectPermissions as cf, type SystemPermissions as cg, type CreateRoleInput as ch, type UpdateRoleInput as ci, type CreatePermissionInput as cj, type AssignRoleInput as ck, type PolicyContext as cl, type RecordPolicy as cm, PolicyViolationError as cn, type UserStatus as co, USER_STATUSES as cp, type UserProfile as cq, type CreateUserProfile as cr, type UpdateUserProfile as cs, type InviteUserInput as ct, type TabType as cu, type FormDensity as cv, type FormTab as cw, type RelationSource as cx, type InverseSource as cy, type TableSource as cz, type DetailViewDefinition as d, type FormContextResponse as d$, isActivityTab as d0, isRichtextTab as d1, isFlowsTab as d2, isDocumentsTab as d3, type ConditionNode as d4, type DocumentNode as d5, type EndNode as d6, type FormFieldRef as d7, type FormNode as d8, type StartNode as d9, type PendingAction as dA, type WorkflowError as dB, type WorkflowInstance as dC, type WorkflowTransition as dD, canResumeInstance as dE, createStartTransition as dF, isInstanceTerminal as dG, isInstanceWaiting as dH, type CreateInvitationInput as dI, type CreateInvitationResult as dJ, type InvitationStatus as dK, type WorkflowInvitation as dL, isInvitationAccepted as dM, isInvitationExpired as dN, isInvitationValid as dO, type CreateGrantInput as dP, type WorkflowAccessGrant as dQ, canAccessNode as dR, isGrantExpired as dS, isGrantRevoked as dT, isGrantValid as dU, isTokenRevoked as dV, type GeneratedDocument as dW, type WorkflowExecutionContext as dX, createEmptyContext as dY, getContextValue as dZ, setContextValue as d_, type WorkflowNodeType as da, getNodeOutputs as db, isAdvancedFormNode as dc, isConditionNode as dd, isDocumentNode as de, isEndNode as df, isFormNode as dg, isSimpleFormNode as dh, isStartNode as di, type ConditionOperator as dj, and as dk, eq as dl, inValues as dm, isConditionGroup as dn, isConditionRule as dp, neq as dq, or as dr, type CanvasViewport as ds, type NodePosition as dt, type WorkflowLayout as du, type WorkflowSlot as dv, type WorkflowStatus as dw, isSystemWorkflow as dx, isWorkflowDefinition as dy, isWorkflowPublished as dz, type InstanceStatus as e, tryGetFeatureValue as e$, type FormFieldContext as e0, type FormFieldRow as e1, type FormNodeInfo as e2, type ReadOnlyReason as e3, type WorkflowAccessMode as e4, type ThemeColors as e5, type ThemeLogo as e6, type ThemeTypography as e7, DEFAULT_THEME as e8, generateCssVariables as e9, type GroupedFetchResult as eA, type InsertOptions as eB, type QueryBuilderState as eC, type RegistryMap as eD, type RegistryObjectNames as eE, type ShortcutOperator as eF, createDefaultState as eG, formatRecord as eH, formatRecords as eI, QueryMultipleResultsError as eJ, QueryNoResultError as eK, SHORTCUT_TO_FILTER_OPERATOR as eL, createQueryBuilder as eM, QueryBuilder as eN, type QueryBuilderOptions as eO, type EvaluationResult as eP, type EvaluationTrace as eQ, evaluateCondition as eR, evaluate as eS, evaluateWithTrace as eT, TenantContextError as eU, FeatureFlagsContextError as eV, getFeatureFlags as eW, getFeatureValue as eX, hasFeatureFlagsContext as eY, isFeatureEnabled as eZ, runWithFeatureFlags as e_, mergeWithDefaults as ea, registry as eb, viewRegistry as ec, type ViewOverlaysRepository as ed, type RelationAttributeInput as ee, type RelationAttributeRow as ef, type RelationAttributesRepository as eg, SORTABLE_ATTRIBUTE_TYPES as eh, type SearchAdapter as ei, type DatabaseAdapter as ej, WorkflowJwtService as ek, type JwtVerificationResult as el, type MagicLinkPayload as em, type WorkflowAccessPayload as en, type WorkflowJwtConfig as eo, type WorkflowJwtPayload as ep, type CacheKeyType as eq, hashOptions as er, type CacheAdapter as es, type CacheOptions as et, cacheKeys as eu, cacheTtl as ev, defaultTtl as ew, NoopCacheAdapter as ex, type FetchResult as ey, type FormattedRecord as ez, type TableTab as f, traversePath as f$, withFeatureFlags as f0, type FeatureFlagsContext as f1, addSchemaToContext as f2, getSchemaByNameFromContext as f3, getSchemaContext as f4, getSchemaFromContext as f5, hasSchemaContext as f6, runWithMergedSchemaContext as f7, runWithSchemaContext as f8, type SchemaContext as f9, evaluateFormula as fA, evaluateFormulaAttribute as fB, evaluateFormulaAttributeWithRelations as fC, evaluateFormulaWithRelations as fD, evaluateFormulaWithResult as fE, extractFormulaVariables as fF, extractRelationNames as fG, extractRelationReferences as fH, flattenRelationsForEval as fI, formatFormulaResult as fJ, hasRelationReferences as fK, validateFormulaExpression as fL, type FormulaResult as fM, getPathDepth as fN, getRelationPath as fO, getTargetAttributeName as fP, InvalidPathError as fQ, MaxDepthExceededError as fR, parsePath as fS, pathHasManyCardinality as fT, validatePath as fU, type PathCardinality as fV, type PathSegment as fW, type PathSegmentType as fX, type SchemaResolver as fY, resolveMultiplePaths as fZ, resolveSingleValue as f_, getContext as fa, getTenantId as fb, getUserId as fc, hasContext as fd, runWithContext as fe, withTenantContext as ff, type TenantContext as fg, createDefaultExecutorRegistry as fh, getDefaultExecutorRegistry as fi, type ExecutorCompleteResult as fj, type ExecutorContext as fk, type ExecutorErrorResult as fl, type ExecutorResult as fm, type ExecutorSuccessResult as fn, type ExecutorWaitResult as fo, type NodeExecutor as fp, complete as fq, error as fr, ExecutorRegistry as fs, success as ft, wait as fu, ConditionExecutor as fv, DocumentExecutor as fw, EndExecutor as fx, FormExecutor as fy, StartExecutor as fz, type FilterState as g, RecordResolverService as g$, type TraversalOptions as g0, type TraversalResult as g1, type AttributeChange as g2, type HookContext as g3, type HookDefinition as g4, type HookHandler as g5, type HookType as g6, NoopHookRegistry as g7, type HookRegistry as g8, createMockAdapter as g9, type SchemaContextAware as gA, SchemaContextAwareRepository as gB, type CreateCustomObjectInput as gC, type AddAttributeInput as gD, type UpdateObjectInput as gE, type ObjectSchemaServiceOptions as gF, ObjectSchemaService as gG, type RecordServiceOptions as gH, RecordService as gI, type RecordQueryServiceOptions as gJ, type QueryOptions as gK, type SearchQueryOptions as gL, type QueryResult as gM, RecordQueryService as gN, type RelationValidationResult as gO, type RelationValidationError as gP, type RelationOption as gQ, type RelationOptionsResponse as gR, type GetRelationOptionsParams as gS, type RelationServiceOptions as gT, type ResolveIdsBatchRequest as gU, type ResolveIdsBatchResponse as gV, RelationService as gW, type MultiRelationValue as gX, type SingleRelationValue as gY, type HybridRelationValue as gZ, RelationPropertiesService as g_, type MockStores as ga, defaultPolicyRegistry as gb, PolicyRegistry as gc, type AIConversationsRepository as gd, type AIUsageMetricsRepository as ge, type AIUserMemoryRepository as gf, type AttributesRepository as gg, type AuditRepository as gh, type DocumentGenerationTemplateListOptions as gi, type DocumentGenerationTemplatesRepository as gj, type DocumentJobsRepository as gk, type DocumentSlotsRepository as gl, type DocumentsRepository as gm, type DocumentTemplatesRepository as gn, type FilesRepository as go, type ObjectRecordsRepository as gp, type ObjectsRepository as gq, type PermissionsRepository as gr, type UserProfilesRepository as gs, type ViewsRepository as gt, type WorkflowAccessGrantsRepository as gu, type WorkflowInstancesRepository as gv, type WorkflowInvitationsRepository as gw, type WorkflowsRepository as gx, BaseService as gy, BaseRepository as gz, type SortRule as h, type DocumentRendererOptions as h$, type ResolvedRelations as h0, type FormulaResolverServiceOptions as h1, FormulaResolverService as h2, type RollupResult as h3, type RollupServiceOptions as h4, RollupService as h5, type RollupSchedulerOptions as h6, RollupScheduler as h7, applyDefaultValues as h8, checkPermission as h9, type ResumeWorkflowInput as hA, type WorkflowInstanceServiceOptions as hB, WorkflowInstanceService as hC, type InvitationServiceConfig as hD, InvitationNotFoundError as hE, InvitationExpiredError as hF, InvitationAlreadyAcceptedError as hG, InvitationRevokedError as hH, WorkflowInvitationService as hI, WorkflowRelationService as hJ, type CreateWorkflowInput as hK, type UpdateWorkflowInput as hL, type WorkflowServiceOptions as hM, WorkflowService as hN, type UserValidationResult as hO, type UserValidationError as hP, UserService as hQ, type UserProfileServiceOptions as hR, UserProfileService as hS, AuditService as hT, buildAuditChanges as hU, DocumentGenerationTemplateNotFoundError as hV, DocumentGenerationNotConfiguredError as hW, DocumentGenerationService as hX, type DocumentProcessingConfig as hY, DocumentProcessingService as hZ, type RenderDocumentInput as h_, getPolicy as ha, buildPolicyContext as hb, checkRecordAccess as hc, checkRecordModifyOrThrow as hd, checkRecordDeleteOrThrow as he, checkSharedObjectWriteAccess as hf, computeLabel as hg, type LabelResolver as hh, enrichWithFormulas as hi, enrichRecordsWithFormulas as hj, createContextForCreate as hk, createContextForUpdate as hl, createContextForDelete as hm, createContextForRestore as hn, recalculateParentRollups as ho, type RollupCascadeContext as hp, type DocumentProcessingHookOptions as hq, DocumentProcessingHook as hr, GrantNotFoundError as hs, GrantExpiredError as ht, GrantRevokedError as hu, TokenRevokedError as hv, type GrantServiceConfig as hw, type CreateGrantResult as hx, WorkflowAccessGrantService as hy, type StartWorkflowInput as hz, type WorkflowConfig as i, type CreateDBView as i$, type RenderDocumentResult as i0, DocumentRenderError as i1, StorageDownloadNotSupportedError as i2, DocumentRendererService as i3, DocumentTemplateService as i4, type RecordDocumentsResult as i5, type CreateRecordDocumentInput as i6, type CreateRecordDocumentResult as i7, type DocumentServiceOptions as i8, DocumentService as i9, syncAll as iA, DEFAULT_LABEL_FALLBACK as iB, renderLabelExpression as iC, isLabelExpression as iD, extractAttributeNames as iE, enrichValuesForDisplay as iF, enrichValuesWithSelectLabels as iG, extractRelationIds as iH, type RelationLabelResolver as iI, computeLabelWithRelations as iJ, type DBObject as iK, type CreateDBObject as iL, type UpdateDBObject as iM, type UpsertDBObject as iN, type DBAttribute as iO, type CreateDBAttribute as iP, type UpdateDBAttribute as iQ, type UpsertDBAttribute as iR, type CreateObjectRecord as iS, type ListOptions as iT, type SearchOptions as iU, type GlobalSearchOptions as iV, type GlobalSearchGroupedOptions as iW, type GlobalSearchResultItem as iX, type GlobalSearchGroupedResult as iY, type FileListOptions as iZ, type DBView as i_, type FileServiceOptions as ia, FileService as ib, GeocodingService as ic, GlobalSearchService as id, type PermissionServiceOptions as ie, PermissionService as ig, type CreateViewInput as ih, type UpdateViewInput as ii, type GetViewsOptions as ij, type GetViewOptions as ik, ViewService as il, type FileContent as im, type StorageUploadInput as io, type StorageUploadResult as ip, type SignedUrlOptions as iq, type StorageAdapter as ir, type UploadFileInput as is, type SyncResult as it, type SyncOptions as iu, syncNativeObjects as iv, verifyNativeObjectsSync as iw, getSyncPreview as ix, type FullSyncResult as iy, type FullSyncOptions as iz, type SlotMode as j, type UpdateDBView as j0, type UpsertDBView as j1, type DBViewOverlay as j2, type CreateDBViewOverlay as j3, type UpdateDBViewOverlay as j4, type DBWorkflow as j5, type CreateDBWorkflow as j6, type UpdateDBWorkflow as j7, type DBWorkflowInstance as j8, type CreateDBWorkflowInstance as j9, type UpdateDBWorkflowInstance as ja, type DBWorkflowInvitation as jb, type CreateDBWorkflowInvitation as jc, type UpdateDBWorkflowInvitation as jd, type DBWorkflowAccessGrant as je, type CreateDBWorkflowAccessGrant as jf, type UpdateDBWorkflowAccessGrant as jg, type OperationResult as jh, type ViewSyncResult as ji, type ViewSyncLogger as jj, type ViewSyncOptions as jk, seedRegistryViews as jl, syncNativeViews as jm, verifyRegistryViewsSeeded as jn, verifyNativeViewsSync as jo, getViewSeedPreview as jp, getViewSyncPreview as jq, type ConditionGroup as k, type ConditionRule as l, type WorkflowNode as m, type WorkflowDefinition as n, type FlowRow as o, type ListViewConfig as p, type ListViewTab as q, type ViewDefinition as r, type DocumentTemplate as s, type OcrInput as t, type OcrOptions as u, type OcrResult as v, type OcrPage as w, type OcrTextBlock as x, type SignatureAdapter as y, type CreateSignatureInput as z };
12947
+ export { type AIAvailableModel as $, type Action as A, type BoundingBox as B, type CreateMode as C, type DetailViewLayout as D, type SignerRequest as E, type Field as F, type Group as G, type SignaturePosition as H, type InferAttributeValue as I, type SignatureRequestResult as J, type SignatureStatusResult as K, type ListViewDefinition as L, type SignerStatus as M, type SignatureStatus as N, type OcrAdapter as O, type IdentityVerificationAdapter as P, type VerifyInput as Q, type RelationGroup as R, type SystemResource as S, type Tab as T, type VerificationResult as U, type ViewType as V, type WorkflowTheme as W, type DocumentData as X, type VerificationCheck as Y, type AIMessageRole as Z, type AIThinkingLevel as _, type AttributeGroupField as a, type CreateProcessingJob as a$, type AIToolCallStatus as a0, type AIToolCall as a1, type AIChatMessagePartType as a2, type TextPartData as a3, type ToolPartData as a4, type ThinkingPartData as a5, type ReasoningPartData as a6, type AIChatMessagePart as a7, type AIChatMessage as a8, type AIQuestionType as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type VariableMapping as aD, type PdfTemplateField as aE, type TemplateSource as aF, type DocumentGenerationTemplate as aG, type CreateDocumentGenerationTemplate as aH, type UpdateDocumentGenerationTemplate as aI, type PendingDocumentRequest as aJ, type DocumentSlotDefinition as aK, type DocumentAutoProcessing as aL, type ExtractionMapping as aM, type ExtractionField as aN, type Document as aO, type DocumentStatus as aP, type DocumentSlot as aQ, type SlotStatus as aR, type ProcessingJob as aS, type ProcessingJobType as aT, type ProcessingJobStatus as aU, type CreateDocument as aV, type UpdateDocument as aW, type CreateDocumentTemplate as aX, type UpdateDocumentTemplate as aY, type CreateDocumentSlot as aZ, type UpdateDocumentSlot as a_, type AIQuestionOption as aa, type AIQuestion as ab, type AIQuestionAnswer as ac, type AIBatchQuestionOption as ad, type AIBatchQuestion as ae, type AIBatchQuestionAnswer as af, type AITodoStatus as ag, type AITodoItem as ah, type AITodoList as ai, type AIMessageAttachment as aj, type AIConversation as ak, type AIMessage as al, type AIToolCallRecord as am, type AIUserMemory as an, type AIUsageMetrics as ao, type AIProviderMetrics as ap, type CreateAIMessageInput as aq, type AIMemoryType as ar, type AIMemoryEntry as as, type AITenantPersona as at, type AICompactionSummary as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type FieldGroup as b, type CustomAttributeValue as b$, type UpdateProcessingJob as b0, type DocumentListOptions as b1, type DocumentTemplateListOptions as b2, type StorageProvider as b3, type FileVisibility as b4, type File as b5, type CreateFile as b6, type UpdateFile as b7, type TextFilterOperator as b8, type NumberFilterOperator as b9, type FlowSeparatorRow as bA, type FlowTextRow as bB, type FlowRow as bC, isFlowFieldsRow as bD, isLayoutRow as bE, type FlowPage as bF, type FlowRelation as bG, type FlowStatus as bH, type FlowDefinition as bI, isFlowDefinition as bJ, isFlowPublished as bK, isSystemFlow as bL, type GeocodingSuggestion as bM, type GeocodingAutocompleteParams as bN, type ReverseGeocodingParams as bO, type GeocodingParams as bP, type GeocodingAdapter as bQ, NoopGeocodingAdapter as bR, type AttributeSchema as bS, type InferRecordFromSchema as bT, type InferRecordWithRequirements as bU, type TypedAttribute as bV, type AttributeMap as bW, type AddAttribute as bX, type InferRecord as bY, type InferRecordInput as bZ, type InferRecordUpdate as b_, type CheckboxFilterOperator as ba, type DateFilterOperator as bb, type SelectFilterOperator as bc, type MultiselectFilterOperator as bd, type RelationFilterOperator as be, type FilterOperator as bf, type RelativeDateValue as bg, type CurrencyFilterValue as bh, type PhoneFilterValue as bi, type FilterValue as bj, type FilterRule as bk, type ExtendedFilterRule as bl, type FilterCombinator as bm, type FilterGroup as bn, type AdvancedFilterState as bo, type SortDirection as bp, type QueryState as bq, OPERATORS_BY_TYPE as br, type NoValueOperator as bs, NO_VALUE_OPERATORS as bt, isNoValueOperator as bu, getRollupFilterOperators as bv, type FlowSlot as bw, type FlowRowField as bx, type FlowRowType as by, type FlowHeadingRow as bz, type SidePanelConfig as c, isGalleryView as c$, type WithCustomAttributes as c0, type RecordMetadata as c1, type SystemFields as c2, type ExtractRecord as c3, type ExtractRecordStrict as c4, type ExtractRecordInput as c5, type ExtractRecordInputStrict as c6, type ExtractRecordUpdate as c7, type ExtractRecordUpdateStrict as c8, type ExtractAttributes as c9, type InviteUserInput as cA, type TabType as cB, type FormDensity as cC, type FormTab as cD, type RelationSource as cE, type InverseSource as cF, type TableSource as cG, type CustomTab as cH, type ActivityTab as cI, type RichtextTab as cJ, type FlowsTab as cK, type DocumentsTab as cL, type ListViewLayout as cM, type DetailViewConfig as cN, type CalendarViewConfig as cO, type TimelineViewConfig as cP, type GalleryViewConfig as cQ, type ViewConfig as cR, type CalendarViewDefinition as cS, type TimelineViewDefinition as cT, type GalleryViewDefinition as cU, type ConfigOverrides as cV, type ViewOverlay as cW, isDetailView as cX, isListView as cY, isCalendarView as cZ, isTimelineView as c_, type TypedObjectRecord as ca, type ExtractObjectRecord as cb, type ExtractObjectRecordWithCustom as cc, type PermissionScope as cd, type AccessLevel as ce, ALL_ACTIONS as cf, actionsToAccessLevel as cg, accessLevelToActions as ch, type Role as ci, type Permission as cj, type UserRoleAssignment as ck, type EffectivePermissions as cl, type ObjectPermissions as cm, type SystemPermissions as cn, type CreateRoleInput as co, type UpdateRoleInput as cp, type CreatePermissionInput as cq, type AssignRoleInput as cr, type PolicyContext as cs, type RecordPolicy as ct, PolicyViolationError as cu, type UserStatus as cv, USER_STATUSES as cw, type UserProfile as cx, type CreateUserProfile as cy, type UpdateUserProfile as cz, type DetailViewDefinition as d, isGrantValid as d$, isFieldGroup as d0, isRelationGroup as d1, isFormTab as d2, isTableTab as d3, isRelationSourceTab as d4, isInverseSourceTab as d5, isCustomTab as d6, isActivityTab as d7, isRichtextTab as d8, isFlowsTab as d9, type NodePosition as dA, type WorkflowLayout as dB, type WorkflowSlot as dC, type WorkflowStatus as dD, isSystemWorkflow as dE, isWorkflowDefinition as dF, isWorkflowPublished as dG, type PendingAction as dH, type WorkflowError as dI, type WorkflowInstance as dJ, type WorkflowTransition as dK, canResumeInstance as dL, createStartTransition as dM, isInstanceTerminal as dN, isInstanceWaiting as dO, type CreateInvitationInput as dP, type CreateInvitationResult as dQ, type InvitationStatus as dR, type WorkflowInvitation as dS, isInvitationAccepted as dT, isInvitationExpired as dU, isInvitationValid as dV, type CreateGrantInput as dW, type WorkflowAccessGrant as dX, canAccessNode as dY, isGrantExpired as dZ, isGrantRevoked as d_, isDocumentsTab as da, type ConditionNode as db, type DocumentNode as dc, type EndNode as dd, type FormFieldRef as de, type FormNode as df, type StartNode as dg, type WorkflowNodeType as dh, getNodeOutputs as di, isAdvancedFormNode as dj, isConditionNode as dk, isDocumentNode as dl, isEndNode as dm, isFormNode as dn, isSimpleFormNode as dp, isStartNode as dq, type ConditionOperator as dr, and as ds, eq as dt, inValues as du, isConditionGroup as dv, isConditionRule as dw, neq as dx, or as dy, type CanvasViewport as dz, type InstanceStatus as e, evaluate as e$, isTokenRevoked as e0, type GeneratedDocument as e1, type WorkflowExecutionContext as e2, createEmptyContext as e3, getContextValue as e4, setContextValue as e5, type FormContextResponse as e6, type FormFieldContext as e7, type FormFieldRow as e8, type FormFieldsRow as e9, hashOptions as eA, type CacheAdapter as eB, type CacheOptions as eC, cacheKeys as eD, cacheTtl as eE, defaultTtl as eF, NoopCacheAdapter as eG, type FetchResult as eH, type FormattedRecord as eI, type GroupedFetchResult as eJ, type InsertOptions as eK, type QueryBuilderState as eL, type RegistryMap as eM, type RegistryObjectNames as eN, type ShortcutOperator as eO, createDefaultState as eP, formatRecord as eQ, formatRecords as eR, QueryMultipleResultsError as eS, QueryNoResultError as eT, SHORTCUT_TO_FILTER_OPERATOR as eU, createQueryBuilder as eV, QueryBuilder as eW, type QueryBuilderOptions as eX, type EvaluationResult as eY, type EvaluationTrace as eZ, evaluateCondition as e_, type FormNodeInfo as ea, type ReadOnlyReason as eb, type WorkflowAccessMode as ec, isFormFieldsRow as ed, type ThemeColors as ee, type ThemeLogo as ef, type ThemeTypography as eg, DEFAULT_THEME as eh, generateCssVariables as ei, mergeWithDefaults as ej, registry as ek, viewRegistry as el, type ViewOverlaysRepository as em, type RelationAttributeInput as en, type RelationAttributeRow as eo, type RelationAttributesRepository as ep, SORTABLE_ATTRIBUTE_TYPES as eq, type SearchAdapter as er, type DatabaseAdapter as es, WorkflowJwtService as et, type JwtVerificationResult as eu, type MagicLinkPayload as ev, type WorkflowAccessPayload as ew, type WorkflowJwtConfig as ex, type WorkflowJwtPayload as ey, type CacheKeyType as ez, type TableTab as f, parsePath as f$, evaluateWithTrace as f0, TenantContextError as f1, FeatureFlagsContextError as f2, getFeatureFlags as f3, getFeatureValue as f4, hasFeatureFlagsContext as f5, isFeatureEnabled as f6, runWithFeatureFlags as f7, tryGetFeatureValue as f8, withFeatureFlags as f9, error as fA, ExecutorRegistry as fB, success as fC, wait as fD, ConditionExecutor as fE, DocumentExecutor as fF, EndExecutor as fG, FormExecutor as fH, StartExecutor as fI, evaluateFormula as fJ, evaluateFormulaAttribute as fK, evaluateFormulaAttributeWithRelations as fL, evaluateFormulaWithRelations as fM, evaluateFormulaWithResult as fN, extractFormulaVariables as fO, extractRelationNames as fP, extractRelationReferences as fQ, flattenRelationsForEval as fR, formatFormulaResult as fS, hasRelationReferences as fT, validateFormulaExpression as fU, type FormulaResult as fV, getPathDepth as fW, getRelationPath as fX, getTargetAttributeName as fY, InvalidPathError as fZ, MaxDepthExceededError as f_, type FeatureFlagsContext as fa, addSchemaToContext as fb, getSchemaByNameFromContext as fc, getSchemaContext as fd, getSchemaFromContext as fe, hasSchemaContext as ff, runWithMergedSchemaContext as fg, runWithSchemaContext as fh, type SchemaContext as fi, getContext as fj, getTenantId as fk, getUserId as fl, hasContext as fm, runWithContext as fn, withTenantContext as fo, type TenantContext as fp, createDefaultExecutorRegistry as fq, getDefaultExecutorRegistry as fr, type ExecutorCompleteResult as fs, type ExecutorContext as ft, type ExecutorErrorResult as fu, type ExecutorResult as fv, type ExecutorSuccessResult as fw, type ExecutorWaitResult as fx, type NodeExecutor as fy, complete as fz, type FilterState as g, type GetRelationOptionsParams as g$, pathHasManyCardinality as g0, validatePath as g1, type PathCardinality as g2, type PathSegment as g3, type PathSegmentType as g4, type SchemaResolver as g5, resolveMultiplePaths as g6, resolveSingleValue as g7, traversePath as g8, type TraversalOptions as g9, type PermissionsRepository as gA, type UserProfilesRepository as gB, type ViewsRepository as gC, type WorkflowAccessGrantsRepository as gD, type WorkflowInstancesRepository as gE, type WorkflowInvitationsRepository as gF, type WorkflowsRepository as gG, BaseService as gH, BaseRepository as gI, type SchemaContextAware as gJ, SchemaContextAwareRepository as gK, type CreateCustomObjectInput as gL, type AddAttributeInput as gM, type UpdateObjectInput as gN, type ObjectSchemaServiceOptions as gO, ObjectSchemaService as gP, type RecordServiceOptions as gQ, RecordService as gR, type RecordQueryServiceOptions as gS, type QueryOptions as gT, type SearchQueryOptions as gU, type QueryResult as gV, RecordQueryService as gW, type RelationValidationResult as gX, type RelationValidationError as gY, type RelationOption as gZ, type RelationOptionsResponse as g_, type TraversalResult as ga, type AttributeChange as gb, type HookContext as gc, type HookDefinition as gd, type HookHandler as ge, type HookType as gf, NoopHookRegistry as gg, type HookRegistry as gh, createMockAdapter as gi, type MockStores as gj, defaultPolicyRegistry as gk, PolicyRegistry as gl, type AIConversationsRepository as gm, type AIUsageMetricsRepository as gn, type AIUserMemoryRepository as go, type AttributesRepository as gp, type AuditRepository as gq, type DocumentGenerationTemplateListOptions as gr, type DocumentGenerationTemplatesRepository as gs, type DocumentJobsRepository as gt, type DocumentSlotsRepository as gu, type DocumentsRepository as gv, type DocumentTemplatesRepository as gw, type FilesRepository as gx, type ObjectRecordsRepository as gy, type ObjectsRepository as gz, type SortRule as h, UserProfileService as h$, type RelationServiceOptions as h0, type ResolveIdsBatchRequest as h1, type ResolveIdsBatchResponse as h2, RelationService as h3, type MultiRelationValue as h4, type SingleRelationValue as h5, type HybridRelationValue as h6, RelationPropertiesService as h7, RecordResolverService as h8, type ResolvedRelations as h9, DocumentProcessingHook as hA, GrantNotFoundError as hB, GrantExpiredError as hC, GrantRevokedError as hD, TokenRevokedError as hE, type GrantServiceConfig as hF, type CreateGrantResult as hG, WorkflowAccessGrantService as hH, type StartWorkflowInput as hI, type ResumeWorkflowInput as hJ, type WorkflowInstanceServiceOptions as hK, WorkflowInstanceService as hL, type InvitationServiceConfig as hM, InvitationNotFoundError as hN, InvitationExpiredError as hO, InvitationAlreadyAcceptedError as hP, InvitationRevokedError as hQ, WorkflowInvitationService as hR, WorkflowRelationService as hS, type CreateWorkflowInput as hT, type UpdateWorkflowInput as hU, type WorkflowServiceOptions as hV, WorkflowService as hW, type UserValidationResult as hX, type UserValidationError as hY, UserService as hZ, type UserProfileServiceOptions as h_, type FormulaResolverServiceOptions as ha, FormulaResolverService as hb, type RollupResult as hc, type RollupServiceOptions as hd, RollupService as he, type RollupSchedulerOptions as hf, RollupScheduler as hg, applyDefaultValues as hh, checkPermission as hi, getPolicy as hj, buildPolicyContext as hk, checkRecordAccess as hl, checkRecordModifyOrThrow as hm, checkRecordDeleteOrThrow as hn, checkSharedObjectWriteAccess as ho, computeLabel as hp, type LabelResolver as hq, enrichWithFormulas as hr, enrichRecordsWithFormulas as hs, createContextForCreate as ht, createContextForUpdate as hu, createContextForDelete as hv, createContextForRestore as hw, recalculateParentRollups as hx, type RollupCascadeContext as hy, type DocumentProcessingHookOptions as hz, type WorkflowConfig as i, type CreateObjectRecord as i$, AuditService as i0, buildAuditChanges as i1, DocumentGenerationTemplateNotFoundError as i2, DocumentGenerationNotConfiguredError as i3, DocumentGenerationService as i4, type DocumentProcessingConfig as i5, DocumentProcessingService as i6, type RenderDocumentInput as i7, type DocumentRendererOptions as i8, type RenderDocumentResult as i9, type StorageAdapter as iA, type UploadFileInput as iB, type SyncResult as iC, type SyncOptions as iD, syncNativeObjects as iE, verifyNativeObjectsSync as iF, getSyncPreview as iG, type FullSyncResult as iH, type FullSyncOptions as iI, syncAll as iJ, DEFAULT_LABEL_FALLBACK as iK, renderLabelExpression as iL, isLabelExpression as iM, extractAttributeNames as iN, enrichValuesForDisplay as iO, enrichValuesWithSelectLabels as iP, extractRelationIds as iQ, type RelationLabelResolver as iR, computeLabelWithRelations as iS, type DBObject as iT, type CreateDBObject as iU, type UpdateDBObject as iV, type UpsertDBObject as iW, type DBAttribute as iX, type CreateDBAttribute as iY, type UpdateDBAttribute as iZ, type UpsertDBAttribute as i_, DocumentRenderError as ia, StorageDownloadNotSupportedError as ib, DocumentRendererService as ic, DocumentTemplateService as id, type RecordDocumentsResult as ie, type CreateRecordDocumentInput as ig, type CreateRecordDocumentResult as ih, type DocumentServiceOptions as ii, DocumentService as ij, type FileServiceOptions as ik, FileService as il, GeocodingService as im, GlobalSearchService as io, type PermissionServiceOptions as ip, PermissionService as iq, type CreateViewInput as ir, type UpdateViewInput as is, type GetViewsOptions as it, type GetViewOptions as iu, ViewService as iv, type FileContent as iw, type StorageUploadInput as ix, type StorageUploadResult as iy, type SignedUrlOptions as iz, type SlotMode as j, type ListOptions as j0, type SearchOptions as j1, type GlobalSearchOptions as j2, type GlobalSearchGroupedOptions as j3, type GlobalSearchResultItem as j4, type GlobalSearchGroupedResult as j5, type FileListOptions as j6, type DBView as j7, type CreateDBView as j8, type UpdateDBView as j9, type UpsertDBView as ja, type DBViewOverlay as jb, type CreateDBViewOverlay as jc, type UpdateDBViewOverlay as jd, type DBWorkflow as je, type CreateDBWorkflow as jf, type UpdateDBWorkflow as jg, type DBWorkflowInstance as jh, type CreateDBWorkflowInstance as ji, type UpdateDBWorkflowInstance as jj, type DBWorkflowInvitation as jk, type CreateDBWorkflowInvitation as jl, type UpdateDBWorkflowInvitation as jm, type DBWorkflowAccessGrant as jn, type CreateDBWorkflowAccessGrant as jo, type UpdateDBWorkflowAccessGrant as jp, type OperationResult as jq, type ViewSyncResult as jr, type ViewSyncLogger as js, type ViewSyncOptions as jt, seedRegistryViews as ju, syncNativeViews as jv, verifyRegistryViewsSeeded as jw, verifyNativeViewsSync as jx, getViewSeedPreview as jy, getViewSyncPreview as jz, type ConditionGroup as k, type ConditionRule as l, type WorkflowNode as m, type WorkflowDefinition as n, type FlowFieldsRow as o, type ListViewConfig as p, type ListViewTab as q, type ViewDefinition as r, type DocumentTemplate as s, type OcrInput as t, type OcrOptions as u, type OcrResult as v, type OcrPage as w, type OcrTextBlock as x, type SignatureAdapter as y, type CreateSignatureInput as z };
@@ -1,5 +1,5 @@
1
- export { gd as AIConversationsRepository, ge as AIUsageMetricsRepository, gf as AIUserMemoryRepository, gD as AddAttributeInput, g2 as AttributeChange, gg as AttributesRepository, gh as AuditRepository, hT as AuditService, gz as BaseRepository, gy as BaseService, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, fv as ConditionExecutor, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, hx as CreateGrantResult, iS as CreateObjectRecord, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ih as CreateViewInput, hK as CreateWorkflowInput, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, ej as DatabaseAdapter, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, gl as DocumentSlotsRepository, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, fx as EndExecutor, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, go as FilesRepository, fy as FormExecutor, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, eB as InsertOptions, fQ as InvalidPathError, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, fp as NodeExecutor, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, i5 as RecordDocumentsResult, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, gP as RelationValidationError, gO as RelationValidationResult, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, eF as ShortcutOperator, iq as SignedUrlOptions, gY as SingleRelationValue, fz as StartExecutor, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, fg as TenantContext, eU as TenantContextError, hv as TokenRevokedError, g0 as TraversalOptions, g1 as TraversalResult, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, gE as UpdateObjectInput, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, hQ as UserService, hP as UserValidationError, hO as UserValidationResult, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, en as WorkflowAccessPayload, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, gx as WorkflowsRepository, f2 as addSchemaToContext, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, g9 as createMockAdapter, eM as createQueryBuilder, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, fa as getContext, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, eZ as isFeatureEnabled, iD as isLabelExpression, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-kH9dOaQt.mjs';
2
- export { a8 as CompletionStatus } from './validators-DUB0tEzp.mjs';
1
+ export { gm as AIConversationsRepository, gn as AIUsageMetricsRepository, go as AIUserMemoryRepository, gM as AddAttributeInput, gb as AttributeChange, gp as AttributesRepository, gq as AuditRepository, i0 as AuditService, gI as BaseRepository, gH as BaseService, eB as CacheAdapter, ez as CacheKeyType, eC as CacheOptions, fE as ConditionExecutor, gL as CreateCustomObjectInput, iY as CreateDBAttribute, iU as CreateDBObject, j8 as CreateDBView, jc as CreateDBViewOverlay, jf as CreateDBWorkflow, jo as CreateDBWorkflowAccessGrant, ji as CreateDBWorkflowInstance, jl as CreateDBWorkflowInvitation, hG as CreateGrantResult, i$ as CreateObjectRecord, ig as CreateRecordDocumentInput, ih as CreateRecordDocumentResult, ir as CreateViewInput, hT as CreateWorkflowInput, iX as DBAttribute, iT as DBObject, j7 as DBView, jb as DBViewOverlay, je as DBWorkflow, jn as DBWorkflowAccessGrant, jh as DBWorkflowInstance, jk as DBWorkflowInvitation, iK as DEFAULT_LABEL_FALLBACK, es as DatabaseAdapter, fF as DocumentExecutor, i3 as DocumentGenerationNotConfiguredError, i4 as DocumentGenerationService, gr as DocumentGenerationTemplateListOptions, i2 as DocumentGenerationTemplateNotFoundError, gs as DocumentGenerationTemplatesRepository, gt as DocumentJobsRepository, i5 as DocumentProcessingConfig, hA as DocumentProcessingHook, hz as DocumentProcessingHookOptions, i6 as DocumentProcessingService, ia as DocumentRenderError, i8 as DocumentRendererOptions, ic as DocumentRendererService, ij as DocumentService, ii as DocumentServiceOptions, gu as DocumentSlotsRepository, id as DocumentTemplateService, gw as DocumentTemplatesRepository, gv as DocumentsRepository, fG as EndExecutor, eY as EvaluationResult, eZ as EvaluationTrace, fs as ExecutorCompleteResult, ft as ExecutorContext, fu as ExecutorErrorResult, fB as ExecutorRegistry, fv as ExecutorResult, fw as ExecutorSuccessResult, fx as ExecutorWaitResult, fa as FeatureFlagsContext, f2 as FeatureFlagsContextError, eH as FetchResult, iw as FileContent, j6 as FileListOptions, il as FileService, ik as FileServiceOptions, gx as FilesRepository, fH as FormExecutor, eI as FormattedRecord, hb as FormulaResolverService, ha as FormulaResolverServiceOptions, fV as FormulaResult, iI as FullSyncOptions, iH as FullSyncResult, bQ as GeocodingAdapter, bN as GeocodingAutocompleteParams, bP as GeocodingParams, im as GeocodingService, bM as GeocodingSuggestion, g$ as GetRelationOptionsParams, iu as GetViewOptions, it as GetViewsOptions, j3 as GlobalSearchGroupedOptions, j5 as GlobalSearchGroupedResult, j2 as GlobalSearchOptions, j4 as GlobalSearchResultItem, io as GlobalSearchService, hC as GrantExpiredError, hB as GrantNotFoundError, hD as GrantRevokedError, hF as GrantServiceConfig, eJ as GroupedFetchResult, gc as HookContext, gd as HookDefinition, ge as HookHandler, gh as HookRegistry, gf as HookType, h6 as HybridRelationValue, eK as InsertOptions, fZ as InvalidPathError, hP as InvitationAlreadyAcceptedError, hO as InvitationExpiredError, hN as InvitationNotFoundError, hQ as InvitationRevokedError, hM as InvitationServiceConfig, eu as JwtVerificationResult, hq as LabelResolver, j0 as ListOptions, ev as MagicLinkPayload, f_ as MaxDepthExceededError, gj as MockStores, h4 as MultiRelationValue, fy as NodeExecutor, eG as NoopCacheAdapter, bR as NoopGeocodingAdapter, gg as NoopHookRegistry, gy as ObjectRecordsRepository, gP as ObjectSchemaService, gO as ObjectSchemaServiceOptions, gz as ObjectsRepository, jq as OperationResult, g2 as PathCardinality, g3 as PathSegment, g4 as PathSegmentType, iq as PermissionService, ip as PermissionServiceOptions, gA as PermissionsRepository, cs as PolicyContext, gl as PolicyRegistry, cu as PolicyViolationError, eW as QueryBuilder, eX as QueryBuilderOptions, eL as QueryBuilderState, eS as QueryMultipleResultsError, eT as QueryNoResultError, gT as QueryOptions, gV as QueryResult, ie as RecordDocumentsResult, ct as RecordPolicy, gW as RecordQueryService, gS as RecordQueryServiceOptions, h8 as RecordResolverService, gR as RecordService, gQ as RecordServiceOptions, eM as RegistryMap, eN as RegistryObjectNames, en as RelationAttributeInput, eo as RelationAttributeRow, ep as RelationAttributesRepository, iR as RelationLabelResolver, gZ as RelationOption, g_ as RelationOptionsResponse, h7 as RelationPropertiesService, h3 as RelationService, h0 as RelationServiceOptions, gY as RelationValidationError, gX as RelationValidationResult, i7 as RenderDocumentInput, i9 as RenderDocumentResult, h1 as ResolveIdsBatchRequest, h2 as ResolveIdsBatchResponse, h9 as ResolvedRelations, hJ as ResumeWorkflowInput, bO as ReverseGeocodingParams, hy as RollupCascadeContext, hc as RollupResult, hg as RollupScheduler, hf as RollupSchedulerOptions, he as RollupService, hd as RollupServiceOptions, eU as SHORTCUT_TO_FILTER_OPERATOR, eq as SORTABLE_ATTRIBUTE_TYPES, fi as SchemaContext, gJ as SchemaContextAware, gK as SchemaContextAwareRepository, g5 as SchemaResolver, er as SearchAdapter, j1 as SearchOptions, gU as SearchQueryOptions, eO as ShortcutOperator, iz as SignedUrlOptions, h5 as SingleRelationValue, fI as StartExecutor, hI as StartWorkflowInput, iA as StorageAdapter, ib as StorageDownloadNotSupportedError, ix as StorageUploadInput, iy as StorageUploadResult, iD as SyncOptions, iC as SyncResult, fp as TenantContext, f1 as TenantContextError, hE as TokenRevokedError, g9 as TraversalOptions, ga as TraversalResult, iZ as UpdateDBAttribute, iV as UpdateDBObject, j9 as UpdateDBView, jd as UpdateDBViewOverlay, jg as UpdateDBWorkflow, jp as UpdateDBWorkflowAccessGrant, jj as UpdateDBWorkflowInstance, jm as UpdateDBWorkflowInvitation, gN as UpdateObjectInput, is as UpdateViewInput, hU as UpdateWorkflowInput, iB as UploadFileInput, i_ as UpsertDBAttribute, iW as UpsertDBObject, ja as UpsertDBView, h$ as UserProfileService, h_ as UserProfileServiceOptions, gB as UserProfilesRepository, hZ as UserService, hY as UserValidationError, hX as UserValidationResult, em as ViewOverlaysRepository, iv as ViewService, js as ViewSyncLogger, jt as ViewSyncOptions, jr as ViewSyncResult, gC as ViewsRepository, hH as WorkflowAccessGrantService, gD as WorkflowAccessGrantsRepository, ew as WorkflowAccessPayload, hL as WorkflowInstanceService, hK as WorkflowInstanceServiceOptions, gE as WorkflowInstancesRepository, hR as WorkflowInvitationService, gF as WorkflowInvitationsRepository, ex as WorkflowJwtConfig, ey as WorkflowJwtPayload, et as WorkflowJwtService, hS as WorkflowRelationService, hW as WorkflowService, hV as WorkflowServiceOptions, gG as WorkflowsRepository, fb as addSchemaToContext, hh as applyDefaultValues, i1 as buildAuditChanges, hk as buildPolicyContext, eD as cacheKeys, eE as cacheTtl, hi as checkPermission, hl as checkRecordAccess, hn as checkRecordDeleteOrThrow, hm as checkRecordModifyOrThrow, ho as checkSharedObjectWriteAccess, fz as complete, hp as computeLabel, iS as computeLabelWithRelations, ht as createContextForCreate, hv as createContextForDelete, hw as createContextForRestore, hu as createContextForUpdate, fq as createDefaultExecutorRegistry, eP as createDefaultState, gi as createMockAdapter, eV as createQueryBuilder, gk as defaultPolicyRegistry, eF as defaultTtl, hs as enrichRecordsWithFormulas, iO as enrichValuesForDisplay, iP as enrichValuesWithSelectLabels, hr as enrichWithFormulas, fA as error, e$ as evaluate, e_ as evaluateCondition, fJ as evaluateFormula, fK as evaluateFormulaAttribute, fL as evaluateFormulaAttributeWithRelations, fM as evaluateFormulaWithRelations, fN as evaluateFormulaWithResult, f0 as evaluateWithTrace, iN as extractAttributeNames, fO as extractFormulaVariables, iQ as extractRelationIds, fP as extractRelationNames, fQ as extractRelationReferences, fR as flattenRelationsForEval, fS as formatFormulaResult, eQ as formatRecord, eR as formatRecords, fj as getContext, fr as getDefaultExecutorRegistry, f3 as getFeatureFlags, f4 as getFeatureValue, fW as getPathDepth, hj as getPolicy, fX as getRelationPath, fc as getSchemaByNameFromContext, fd as getSchemaContext, fe as getSchemaFromContext, iG as getSyncPreview, fY as getTargetAttributeName, fk as getTenantId, fl as getUserId, jy as getViewSeedPreview, jz as getViewSyncPreview, fm as hasContext, f5 as hasFeatureFlagsContext, fT as hasRelationReferences, ff as hasSchemaContext, eA as hashOptions, f6 as isFeatureEnabled, iM as isLabelExpression, f$ as parsePath, g0 as pathHasManyCardinality, hx as recalculateParentRollups, iL as renderLabelExpression, g6 as resolveMultiplePaths, g7 as resolveSingleValue, fn as runWithContext, f7 as runWithFeatureFlags, fg as runWithMergedSchemaContext, fh as runWithSchemaContext, ju as seedRegistryViews, fC as success, iJ as syncAll, iE as syncNativeObjects, jv as syncNativeViews, g8 as traversePath, f8 as tryGetFeatureValue, fU as validateFormulaExpression, g1 as validatePath, iF as verifyNativeObjectsSync, jx as verifyNativeViewsSync, jw as verifyRegistryViewsSeeded, fD as wait, f9 as withFeatureFlags, fo as withTenantContext } from './runtime-BU3qnMH0.mjs';
2
+ export { a8 as CompletionStatus } from './validators-DVfMzWfY.mjs';
3
3
  import '@stndrds/constants';
4
4
  import './utils.mjs';
5
5
  import 'jose';
package/dist/runtime.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- export { gd as AIConversationsRepository, ge as AIUsageMetricsRepository, gf as AIUserMemoryRepository, gD as AddAttributeInput, g2 as AttributeChange, gg as AttributesRepository, gh as AuditRepository, hT as AuditService, gz as BaseRepository, gy as BaseService, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, fv as ConditionExecutor, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, hx as CreateGrantResult, iS as CreateObjectRecord, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ih as CreateViewInput, hK as CreateWorkflowInput, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, ej as DatabaseAdapter, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, gl as DocumentSlotsRepository, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, fx as EndExecutor, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, go as FilesRepository, fy as FormExecutor, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, eB as InsertOptions, fQ as InvalidPathError, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, fp as NodeExecutor, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, i5 as RecordDocumentsResult, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, gP as RelationValidationError, gO as RelationValidationResult, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, eF as ShortcutOperator, iq as SignedUrlOptions, gY as SingleRelationValue, fz as StartExecutor, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, fg as TenantContext, eU as TenantContextError, hv as TokenRevokedError, g0 as TraversalOptions, g1 as TraversalResult, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, gE as UpdateObjectInput, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, hQ as UserService, hP as UserValidationError, hO as UserValidationResult, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, en as WorkflowAccessPayload, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, gx as WorkflowsRepository, f2 as addSchemaToContext, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, g9 as createMockAdapter, eM as createQueryBuilder, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, fa as getContext, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, eZ as isFeatureEnabled, iD as isLabelExpression, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-DE2X2kPp.js';
2
- export { a8 as CompletionStatus } from './validators-BxPuQ2GT.js';
1
+ export { gm as AIConversationsRepository, gn as AIUsageMetricsRepository, go as AIUserMemoryRepository, gM as AddAttributeInput, gb as AttributeChange, gp as AttributesRepository, gq as AuditRepository, i0 as AuditService, gI as BaseRepository, gH as BaseService, eB as CacheAdapter, ez as CacheKeyType, eC as CacheOptions, fE as ConditionExecutor, gL as CreateCustomObjectInput, iY as CreateDBAttribute, iU as CreateDBObject, j8 as CreateDBView, jc as CreateDBViewOverlay, jf as CreateDBWorkflow, jo as CreateDBWorkflowAccessGrant, ji as CreateDBWorkflowInstance, jl as CreateDBWorkflowInvitation, hG as CreateGrantResult, i$ as CreateObjectRecord, ig as CreateRecordDocumentInput, ih as CreateRecordDocumentResult, ir as CreateViewInput, hT as CreateWorkflowInput, iX as DBAttribute, iT as DBObject, j7 as DBView, jb as DBViewOverlay, je as DBWorkflow, jn as DBWorkflowAccessGrant, jh as DBWorkflowInstance, jk as DBWorkflowInvitation, iK as DEFAULT_LABEL_FALLBACK, es as DatabaseAdapter, fF as DocumentExecutor, i3 as DocumentGenerationNotConfiguredError, i4 as DocumentGenerationService, gr as DocumentGenerationTemplateListOptions, i2 as DocumentGenerationTemplateNotFoundError, gs as DocumentGenerationTemplatesRepository, gt as DocumentJobsRepository, i5 as DocumentProcessingConfig, hA as DocumentProcessingHook, hz as DocumentProcessingHookOptions, i6 as DocumentProcessingService, ia as DocumentRenderError, i8 as DocumentRendererOptions, ic as DocumentRendererService, ij as DocumentService, ii as DocumentServiceOptions, gu as DocumentSlotsRepository, id as DocumentTemplateService, gw as DocumentTemplatesRepository, gv as DocumentsRepository, fG as EndExecutor, eY as EvaluationResult, eZ as EvaluationTrace, fs as ExecutorCompleteResult, ft as ExecutorContext, fu as ExecutorErrorResult, fB as ExecutorRegistry, fv as ExecutorResult, fw as ExecutorSuccessResult, fx as ExecutorWaitResult, fa as FeatureFlagsContext, f2 as FeatureFlagsContextError, eH as FetchResult, iw as FileContent, j6 as FileListOptions, il as FileService, ik as FileServiceOptions, gx as FilesRepository, fH as FormExecutor, eI as FormattedRecord, hb as FormulaResolverService, ha as FormulaResolverServiceOptions, fV as FormulaResult, iI as FullSyncOptions, iH as FullSyncResult, bQ as GeocodingAdapter, bN as GeocodingAutocompleteParams, bP as GeocodingParams, im as GeocodingService, bM as GeocodingSuggestion, g$ as GetRelationOptionsParams, iu as GetViewOptions, it as GetViewsOptions, j3 as GlobalSearchGroupedOptions, j5 as GlobalSearchGroupedResult, j2 as GlobalSearchOptions, j4 as GlobalSearchResultItem, io as GlobalSearchService, hC as GrantExpiredError, hB as GrantNotFoundError, hD as GrantRevokedError, hF as GrantServiceConfig, eJ as GroupedFetchResult, gc as HookContext, gd as HookDefinition, ge as HookHandler, gh as HookRegistry, gf as HookType, h6 as HybridRelationValue, eK as InsertOptions, fZ as InvalidPathError, hP as InvitationAlreadyAcceptedError, hO as InvitationExpiredError, hN as InvitationNotFoundError, hQ as InvitationRevokedError, hM as InvitationServiceConfig, eu as JwtVerificationResult, hq as LabelResolver, j0 as ListOptions, ev as MagicLinkPayload, f_ as MaxDepthExceededError, gj as MockStores, h4 as MultiRelationValue, fy as NodeExecutor, eG as NoopCacheAdapter, bR as NoopGeocodingAdapter, gg as NoopHookRegistry, gy as ObjectRecordsRepository, gP as ObjectSchemaService, gO as ObjectSchemaServiceOptions, gz as ObjectsRepository, jq as OperationResult, g2 as PathCardinality, g3 as PathSegment, g4 as PathSegmentType, iq as PermissionService, ip as PermissionServiceOptions, gA as PermissionsRepository, cs as PolicyContext, gl as PolicyRegistry, cu as PolicyViolationError, eW as QueryBuilder, eX as QueryBuilderOptions, eL as QueryBuilderState, eS as QueryMultipleResultsError, eT as QueryNoResultError, gT as QueryOptions, gV as QueryResult, ie as RecordDocumentsResult, ct as RecordPolicy, gW as RecordQueryService, gS as RecordQueryServiceOptions, h8 as RecordResolverService, gR as RecordService, gQ as RecordServiceOptions, eM as RegistryMap, eN as RegistryObjectNames, en as RelationAttributeInput, eo as RelationAttributeRow, ep as RelationAttributesRepository, iR as RelationLabelResolver, gZ as RelationOption, g_ as RelationOptionsResponse, h7 as RelationPropertiesService, h3 as RelationService, h0 as RelationServiceOptions, gY as RelationValidationError, gX as RelationValidationResult, i7 as RenderDocumentInput, i9 as RenderDocumentResult, h1 as ResolveIdsBatchRequest, h2 as ResolveIdsBatchResponse, h9 as ResolvedRelations, hJ as ResumeWorkflowInput, bO as ReverseGeocodingParams, hy as RollupCascadeContext, hc as RollupResult, hg as RollupScheduler, hf as RollupSchedulerOptions, he as RollupService, hd as RollupServiceOptions, eU as SHORTCUT_TO_FILTER_OPERATOR, eq as SORTABLE_ATTRIBUTE_TYPES, fi as SchemaContext, gJ as SchemaContextAware, gK as SchemaContextAwareRepository, g5 as SchemaResolver, er as SearchAdapter, j1 as SearchOptions, gU as SearchQueryOptions, eO as ShortcutOperator, iz as SignedUrlOptions, h5 as SingleRelationValue, fI as StartExecutor, hI as StartWorkflowInput, iA as StorageAdapter, ib as StorageDownloadNotSupportedError, ix as StorageUploadInput, iy as StorageUploadResult, iD as SyncOptions, iC as SyncResult, fp as TenantContext, f1 as TenantContextError, hE as TokenRevokedError, g9 as TraversalOptions, ga as TraversalResult, iZ as UpdateDBAttribute, iV as UpdateDBObject, j9 as UpdateDBView, jd as UpdateDBViewOverlay, jg as UpdateDBWorkflow, jp as UpdateDBWorkflowAccessGrant, jj as UpdateDBWorkflowInstance, jm as UpdateDBWorkflowInvitation, gN as UpdateObjectInput, is as UpdateViewInput, hU as UpdateWorkflowInput, iB as UploadFileInput, i_ as UpsertDBAttribute, iW as UpsertDBObject, ja as UpsertDBView, h$ as UserProfileService, h_ as UserProfileServiceOptions, gB as UserProfilesRepository, hZ as UserService, hY as UserValidationError, hX as UserValidationResult, em as ViewOverlaysRepository, iv as ViewService, js as ViewSyncLogger, jt as ViewSyncOptions, jr as ViewSyncResult, gC as ViewsRepository, hH as WorkflowAccessGrantService, gD as WorkflowAccessGrantsRepository, ew as WorkflowAccessPayload, hL as WorkflowInstanceService, hK as WorkflowInstanceServiceOptions, gE as WorkflowInstancesRepository, hR as WorkflowInvitationService, gF as WorkflowInvitationsRepository, ex as WorkflowJwtConfig, ey as WorkflowJwtPayload, et as WorkflowJwtService, hS as WorkflowRelationService, hW as WorkflowService, hV as WorkflowServiceOptions, gG as WorkflowsRepository, fb as addSchemaToContext, hh as applyDefaultValues, i1 as buildAuditChanges, hk as buildPolicyContext, eD as cacheKeys, eE as cacheTtl, hi as checkPermission, hl as checkRecordAccess, hn as checkRecordDeleteOrThrow, hm as checkRecordModifyOrThrow, ho as checkSharedObjectWriteAccess, fz as complete, hp as computeLabel, iS as computeLabelWithRelations, ht as createContextForCreate, hv as createContextForDelete, hw as createContextForRestore, hu as createContextForUpdate, fq as createDefaultExecutorRegistry, eP as createDefaultState, gi as createMockAdapter, eV as createQueryBuilder, gk as defaultPolicyRegistry, eF as defaultTtl, hs as enrichRecordsWithFormulas, iO as enrichValuesForDisplay, iP as enrichValuesWithSelectLabels, hr as enrichWithFormulas, fA as error, e$ as evaluate, e_ as evaluateCondition, fJ as evaluateFormula, fK as evaluateFormulaAttribute, fL as evaluateFormulaAttributeWithRelations, fM as evaluateFormulaWithRelations, fN as evaluateFormulaWithResult, f0 as evaluateWithTrace, iN as extractAttributeNames, fO as extractFormulaVariables, iQ as extractRelationIds, fP as extractRelationNames, fQ as extractRelationReferences, fR as flattenRelationsForEval, fS as formatFormulaResult, eQ as formatRecord, eR as formatRecords, fj as getContext, fr as getDefaultExecutorRegistry, f3 as getFeatureFlags, f4 as getFeatureValue, fW as getPathDepth, hj as getPolicy, fX as getRelationPath, fc as getSchemaByNameFromContext, fd as getSchemaContext, fe as getSchemaFromContext, iG as getSyncPreview, fY as getTargetAttributeName, fk as getTenantId, fl as getUserId, jy as getViewSeedPreview, jz as getViewSyncPreview, fm as hasContext, f5 as hasFeatureFlagsContext, fT as hasRelationReferences, ff as hasSchemaContext, eA as hashOptions, f6 as isFeatureEnabled, iM as isLabelExpression, f$ as parsePath, g0 as pathHasManyCardinality, hx as recalculateParentRollups, iL as renderLabelExpression, g6 as resolveMultiplePaths, g7 as resolveSingleValue, fn as runWithContext, f7 as runWithFeatureFlags, fg as runWithMergedSchemaContext, fh as runWithSchemaContext, ju as seedRegistryViews, fC as success, iJ as syncAll, iE as syncNativeObjects, jv as syncNativeViews, g8 as traversePath, f8 as tryGetFeatureValue, fU as validateFormulaExpression, g1 as validatePath, iF as verifyNativeObjectsSync, jx as verifyNativeViewsSync, jw as verifyRegistryViewsSeeded, fD as wait, f9 as withFeatureFlags, fo as withTenantContext } from './runtime-CjZp8UsJ.js';
2
+ export { a8 as CompletionStatus } from './validators-5RPbTlXa.js';
3
3
  import '@stndrds/constants';
4
4
  import './utils.js';
5
5
  import 'jose';
package/dist/runtime.js CHANGED
@@ -158,10 +158,9 @@
158
158
 
159
159
 
160
160
 
161
- var _chunk7JHBQL6Hjs = require('./chunk-7JHBQL6H.js');
161
+ var _chunkY4FDI32Gjs = require('./chunk-Y4FDI32G.js');
162
162
  require('./chunk-NEVERCM3.js');
163
163
  require('./chunk-3WTK7ESH.js');
164
- require('./chunk-JZO52C3F.js');
165
164
  require('./chunk-3RG5ZIWI.js');
166
165
 
167
166
 
@@ -323,4 +322,4 @@ require('./chunk-3RG5ZIWI.js');
323
322
 
324
323
 
325
324
 
326
- exports.AuditService = _chunk7JHBQL6Hjs.AuditService; exports.BaseRepository = _chunk7JHBQL6Hjs.BaseRepository; exports.BaseService = _chunk7JHBQL6Hjs.BaseService; exports.ConditionExecutor = _chunk7JHBQL6Hjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunk7JHBQL6Hjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunk7JHBQL6Hjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk7JHBQL6Hjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk7JHBQL6Hjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk7JHBQL6Hjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunk7JHBQL6Hjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk7JHBQL6Hjs.DocumentProcessingService; exports.DocumentRenderError = _chunk7JHBQL6Hjs.DocumentRenderError; exports.DocumentRendererService = _chunk7JHBQL6Hjs.DocumentRendererService; exports.DocumentService = _chunk7JHBQL6Hjs.DocumentService; exports.DocumentTemplateService = _chunk7JHBQL6Hjs.DocumentTemplateService; exports.EndExecutor = _chunk7JHBQL6Hjs.EndExecutor; exports.ExecutorRegistry = _chunk7JHBQL6Hjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunk7JHBQL6Hjs.FeatureFlagsContextError; exports.FileService = _chunk7JHBQL6Hjs.FileService; exports.FormExecutor = _chunk7JHBQL6Hjs.FormExecutor; exports.FormulaResolverService = _chunk7JHBQL6Hjs.FormulaResolverService; exports.GeocodingService = _chunk7JHBQL6Hjs.GeocodingService; exports.GlobalSearchService = _chunk7JHBQL6Hjs.GlobalSearchService; exports.GrantExpiredError = _chunk7JHBQL6Hjs.GrantExpiredError; exports.GrantNotFoundError = _chunk7JHBQL6Hjs.GrantNotFoundError; exports.GrantRevokedError = _chunk7JHBQL6Hjs.GrantRevokedError; exports.InvalidPathError = _chunk7JHBQL6Hjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk7JHBQL6Hjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk7JHBQL6Hjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk7JHBQL6Hjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk7JHBQL6Hjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunk7JHBQL6Hjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunk7JHBQL6Hjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk7JHBQL6Hjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk7JHBQL6Hjs.NoopHookRegistry; exports.ObjectSchemaService = _chunk7JHBQL6Hjs.ObjectSchemaService; exports.PermissionService = _chunk7JHBQL6Hjs.PermissionService; exports.PolicyRegistry = _chunk7JHBQL6Hjs.PolicyRegistry; exports.PolicyViolationError = _chunk7JHBQL6Hjs.PolicyViolationError; exports.QueryBuilder = _chunk7JHBQL6Hjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk7JHBQL6Hjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk7JHBQL6Hjs.QueryNoResultError; exports.RecordQueryService = _chunk7JHBQL6Hjs.RecordQueryService; exports.RecordResolverService = _chunk7JHBQL6Hjs.RecordResolverService; exports.RecordService = _chunk7JHBQL6Hjs.RecordService; exports.RelationPropertiesService = _chunk7JHBQL6Hjs.RelationPropertiesService; exports.RelationService = _chunk7JHBQL6Hjs.RelationService; exports.RollupScheduler = _chunk7JHBQL6Hjs.RollupScheduler; exports.RollupService = _chunk7JHBQL6Hjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk7JHBQL6Hjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SORTABLE_ATTRIBUTE_TYPES = _chunk7JHBQL6Hjs.SORTABLE_ATTRIBUTE_TYPES; exports.SchemaContextAwareRepository = _chunk7JHBQL6Hjs.SchemaContextAwareRepository; exports.StartExecutor = _chunk7JHBQL6Hjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunk7JHBQL6Hjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunk7JHBQL6Hjs.TenantContextError; exports.TokenRevokedError = _chunk7JHBQL6Hjs.TokenRevokedError; exports.UserProfileService = _chunk7JHBQL6Hjs.UserProfileService; exports.UserService = _chunk7JHBQL6Hjs.UserService; exports.ViewService = _chunk7JHBQL6Hjs.ViewService; exports.WorkflowAccessGrantService = _chunk7JHBQL6Hjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunk7JHBQL6Hjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk7JHBQL6Hjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk7JHBQL6Hjs.WorkflowJwtService; exports.WorkflowRelationService = _chunk7JHBQL6Hjs.WorkflowRelationService; exports.WorkflowService = _chunk7JHBQL6Hjs.WorkflowService; exports.addSchemaToContext = _chunk7JHBQL6Hjs.addSchemaToContext; exports.applyDefaultValues = _chunk7JHBQL6Hjs.applyDefaultValues; exports.buildAuditChanges = _chunk7JHBQL6Hjs.buildAuditChanges; exports.buildPolicyContext = _chunk7JHBQL6Hjs.buildPolicyContext; exports.cacheKeys = _chunk7JHBQL6Hjs.cacheKeys; exports.cacheTtl = _chunk7JHBQL6Hjs.cacheTtl; exports.checkPermission = _chunk7JHBQL6Hjs.checkPermission; exports.checkRecordAccess = _chunk7JHBQL6Hjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk7JHBQL6Hjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk7JHBQL6Hjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk7JHBQL6Hjs.checkSharedObjectWriteAccess; exports.complete = _chunk7JHBQL6Hjs.complete; exports.computeLabel = _chunk7JHBQL6Hjs.computeLabel; exports.computeLabelWithRelations = _chunk7JHBQL6Hjs.computeLabelWithRelations; exports.createContextForCreate = _chunk7JHBQL6Hjs.createContextForCreate; exports.createContextForDelete = _chunk7JHBQL6Hjs.createContextForDelete; exports.createContextForRestore = _chunk7JHBQL6Hjs.createContextForRestore; exports.createContextForUpdate = _chunk7JHBQL6Hjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunk7JHBQL6Hjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk7JHBQL6Hjs.createDefaultState; exports.createMockAdapter = _chunk7JHBQL6Hjs.createMockAdapter; exports.createQueryBuilder = _chunk7JHBQL6Hjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunk7JHBQL6Hjs.defaultPolicyRegistry; exports.defaultTtl = _chunk7JHBQL6Hjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunk7JHBQL6Hjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk7JHBQL6Hjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk7JHBQL6Hjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk7JHBQL6Hjs.enrichWithFormulas; exports.error = _chunk7JHBQL6Hjs.error; exports.evaluate = _chunk7JHBQL6Hjs.evaluate; exports.evaluateCondition = _chunk7JHBQL6Hjs.evaluateCondition; exports.evaluateFormula = _chunk7JHBQL6Hjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk7JHBQL6Hjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk7JHBQL6Hjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk7JHBQL6Hjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk7JHBQL6Hjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk7JHBQL6Hjs.evaluateWithTrace; exports.extractAttributeNames = _chunk7JHBQL6Hjs.extractAttributeNames; exports.extractFormulaVariables = _chunk7JHBQL6Hjs.extractFormulaVariables; exports.extractRelationIds = _chunk7JHBQL6Hjs.extractRelationIds; exports.extractRelationNames = _chunk7JHBQL6Hjs.extractRelationNames; exports.extractRelationReferences = _chunk7JHBQL6Hjs.extractRelationReferences; exports.flattenRelationsForEval = _chunk7JHBQL6Hjs.flattenRelationsForEval; exports.formatFormulaResult = _chunk7JHBQL6Hjs.formatFormulaResult; exports.formatRecord = _chunk7JHBQL6Hjs.formatRecord; exports.formatRecords = _chunk7JHBQL6Hjs.formatRecords; exports.getContext = _chunk7JHBQL6Hjs.getContext; exports.getDefaultExecutorRegistry = _chunk7JHBQL6Hjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunk7JHBQL6Hjs.getFeatureFlags; exports.getFeatureValue = _chunk7JHBQL6Hjs.getFeatureValue; exports.getPathDepth = _chunk7JHBQL6Hjs.getPathDepth; exports.getPolicy = _chunk7JHBQL6Hjs.getPolicy; exports.getRelationPath = _chunk7JHBQL6Hjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk7JHBQL6Hjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk7JHBQL6Hjs.getSchemaContext; exports.getSchemaFromContext = _chunk7JHBQL6Hjs.getSchemaFromContext; exports.getSyncPreview = _chunk7JHBQL6Hjs.getSyncPreview; exports.getTargetAttributeName = _chunk7JHBQL6Hjs.getTargetAttributeName; exports.getTenantId = _chunk7JHBQL6Hjs.getTenantId; exports.getUserId = _chunk7JHBQL6Hjs.getUserId; exports.getViewSeedPreview = _chunk7JHBQL6Hjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk7JHBQL6Hjs.getViewSyncPreview; exports.hasContext = _chunk7JHBQL6Hjs.hasContext; exports.hasFeatureFlagsContext = _chunk7JHBQL6Hjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunk7JHBQL6Hjs.hasRelationReferences; exports.hasSchemaContext = _chunk7JHBQL6Hjs.hasSchemaContext; exports.hashOptions = _chunk7JHBQL6Hjs.hashOptions; exports.isFeatureEnabled = _chunk7JHBQL6Hjs.isFeatureEnabled; exports.isLabelExpression = _chunk7JHBQL6Hjs.isLabelExpression; exports.parsePath = _chunk7JHBQL6Hjs.parsePath; exports.pathHasManyCardinality = _chunk7JHBQL6Hjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunk7JHBQL6Hjs.recalculateParentRollups; exports.renderLabelExpression = _chunk7JHBQL6Hjs.renderLabelExpression; exports.resolveMultiplePaths = _chunk7JHBQL6Hjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk7JHBQL6Hjs.resolveSingleValue; exports.runWithContext = _chunk7JHBQL6Hjs.runWithContext; exports.runWithFeatureFlags = _chunk7JHBQL6Hjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk7JHBQL6Hjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk7JHBQL6Hjs.runWithSchemaContext; exports.seedRegistryViews = _chunk7JHBQL6Hjs.seedRegistryViews; exports.success = _chunk7JHBQL6Hjs.success; exports.syncAll = _chunk7JHBQL6Hjs.syncAll; exports.syncNativeObjects = _chunk7JHBQL6Hjs.syncNativeObjects; exports.syncNativeViews = _chunk7JHBQL6Hjs.syncNativeViews; exports.traversePath = _chunk7JHBQL6Hjs.traversePath; exports.tryGetFeatureValue = _chunk7JHBQL6Hjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunk7JHBQL6Hjs.validateFormulaExpression; exports.validatePath = _chunk7JHBQL6Hjs.validatePath; exports.verifyNativeObjectsSync = _chunk7JHBQL6Hjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk7JHBQL6Hjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk7JHBQL6Hjs.verifyRegistryViewsSeeded; exports.wait = _chunk7JHBQL6Hjs.wait; exports.withFeatureFlags = _chunk7JHBQL6Hjs.withFeatureFlags; exports.withTenantContext = _chunk7JHBQL6Hjs.withTenantContext;
325
+ exports.AuditService = _chunkY4FDI32Gjs.AuditService; exports.BaseRepository = _chunkY4FDI32Gjs.BaseRepository; exports.BaseService = _chunkY4FDI32Gjs.BaseService; exports.ConditionExecutor = _chunkY4FDI32Gjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkY4FDI32Gjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunkY4FDI32Gjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkY4FDI32Gjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkY4FDI32Gjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkY4FDI32Gjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunkY4FDI32Gjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkY4FDI32Gjs.DocumentProcessingService; exports.DocumentRenderError = _chunkY4FDI32Gjs.DocumentRenderError; exports.DocumentRendererService = _chunkY4FDI32Gjs.DocumentRendererService; exports.DocumentService = _chunkY4FDI32Gjs.DocumentService; exports.DocumentTemplateService = _chunkY4FDI32Gjs.DocumentTemplateService; exports.EndExecutor = _chunkY4FDI32Gjs.EndExecutor; exports.ExecutorRegistry = _chunkY4FDI32Gjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkY4FDI32Gjs.FeatureFlagsContextError; exports.FileService = _chunkY4FDI32Gjs.FileService; exports.FormExecutor = _chunkY4FDI32Gjs.FormExecutor; exports.FormulaResolverService = _chunkY4FDI32Gjs.FormulaResolverService; exports.GeocodingService = _chunkY4FDI32Gjs.GeocodingService; exports.GlobalSearchService = _chunkY4FDI32Gjs.GlobalSearchService; exports.GrantExpiredError = _chunkY4FDI32Gjs.GrantExpiredError; exports.GrantNotFoundError = _chunkY4FDI32Gjs.GrantNotFoundError; exports.GrantRevokedError = _chunkY4FDI32Gjs.GrantRevokedError; exports.InvalidPathError = _chunkY4FDI32Gjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkY4FDI32Gjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkY4FDI32Gjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkY4FDI32Gjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkY4FDI32Gjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunkY4FDI32Gjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkY4FDI32Gjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkY4FDI32Gjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkY4FDI32Gjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkY4FDI32Gjs.ObjectSchemaService; exports.PermissionService = _chunkY4FDI32Gjs.PermissionService; exports.PolicyRegistry = _chunkY4FDI32Gjs.PolicyRegistry; exports.PolicyViolationError = _chunkY4FDI32Gjs.PolicyViolationError; exports.QueryBuilder = _chunkY4FDI32Gjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkY4FDI32Gjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkY4FDI32Gjs.QueryNoResultError; exports.RecordQueryService = _chunkY4FDI32Gjs.RecordQueryService; exports.RecordResolverService = _chunkY4FDI32Gjs.RecordResolverService; exports.RecordService = _chunkY4FDI32Gjs.RecordService; exports.RelationPropertiesService = _chunkY4FDI32Gjs.RelationPropertiesService; exports.RelationService = _chunkY4FDI32Gjs.RelationService; exports.RollupScheduler = _chunkY4FDI32Gjs.RollupScheduler; exports.RollupService = _chunkY4FDI32Gjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkY4FDI32Gjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SORTABLE_ATTRIBUTE_TYPES = _chunkY4FDI32Gjs.SORTABLE_ATTRIBUTE_TYPES; exports.SchemaContextAwareRepository = _chunkY4FDI32Gjs.SchemaContextAwareRepository; exports.StartExecutor = _chunkY4FDI32Gjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunkY4FDI32Gjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunkY4FDI32Gjs.TenantContextError; exports.TokenRevokedError = _chunkY4FDI32Gjs.TokenRevokedError; exports.UserProfileService = _chunkY4FDI32Gjs.UserProfileService; exports.UserService = _chunkY4FDI32Gjs.UserService; exports.ViewService = _chunkY4FDI32Gjs.ViewService; exports.WorkflowAccessGrantService = _chunkY4FDI32Gjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkY4FDI32Gjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkY4FDI32Gjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkY4FDI32Gjs.WorkflowJwtService; exports.WorkflowRelationService = _chunkY4FDI32Gjs.WorkflowRelationService; exports.WorkflowService = _chunkY4FDI32Gjs.WorkflowService; exports.addSchemaToContext = _chunkY4FDI32Gjs.addSchemaToContext; exports.applyDefaultValues = _chunkY4FDI32Gjs.applyDefaultValues; exports.buildAuditChanges = _chunkY4FDI32Gjs.buildAuditChanges; exports.buildPolicyContext = _chunkY4FDI32Gjs.buildPolicyContext; exports.cacheKeys = _chunkY4FDI32Gjs.cacheKeys; exports.cacheTtl = _chunkY4FDI32Gjs.cacheTtl; exports.checkPermission = _chunkY4FDI32Gjs.checkPermission; exports.checkRecordAccess = _chunkY4FDI32Gjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkY4FDI32Gjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkY4FDI32Gjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkY4FDI32Gjs.checkSharedObjectWriteAccess; exports.complete = _chunkY4FDI32Gjs.complete; exports.computeLabel = _chunkY4FDI32Gjs.computeLabel; exports.computeLabelWithRelations = _chunkY4FDI32Gjs.computeLabelWithRelations; exports.createContextForCreate = _chunkY4FDI32Gjs.createContextForCreate; exports.createContextForDelete = _chunkY4FDI32Gjs.createContextForDelete; exports.createContextForRestore = _chunkY4FDI32Gjs.createContextForRestore; exports.createContextForUpdate = _chunkY4FDI32Gjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkY4FDI32Gjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkY4FDI32Gjs.createDefaultState; exports.createMockAdapter = _chunkY4FDI32Gjs.createMockAdapter; exports.createQueryBuilder = _chunkY4FDI32Gjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkY4FDI32Gjs.defaultPolicyRegistry; exports.defaultTtl = _chunkY4FDI32Gjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunkY4FDI32Gjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkY4FDI32Gjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkY4FDI32Gjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkY4FDI32Gjs.enrichWithFormulas; exports.error = _chunkY4FDI32Gjs.error; exports.evaluate = _chunkY4FDI32Gjs.evaluate; exports.evaluateCondition = _chunkY4FDI32Gjs.evaluateCondition; exports.evaluateFormula = _chunkY4FDI32Gjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkY4FDI32Gjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkY4FDI32Gjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkY4FDI32Gjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkY4FDI32Gjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkY4FDI32Gjs.evaluateWithTrace; exports.extractAttributeNames = _chunkY4FDI32Gjs.extractAttributeNames; exports.extractFormulaVariables = _chunkY4FDI32Gjs.extractFormulaVariables; exports.extractRelationIds = _chunkY4FDI32Gjs.extractRelationIds; exports.extractRelationNames = _chunkY4FDI32Gjs.extractRelationNames; exports.extractRelationReferences = _chunkY4FDI32Gjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkY4FDI32Gjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkY4FDI32Gjs.formatFormulaResult; exports.formatRecord = _chunkY4FDI32Gjs.formatRecord; exports.formatRecords = _chunkY4FDI32Gjs.formatRecords; exports.getContext = _chunkY4FDI32Gjs.getContext; exports.getDefaultExecutorRegistry = _chunkY4FDI32Gjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkY4FDI32Gjs.getFeatureFlags; exports.getFeatureValue = _chunkY4FDI32Gjs.getFeatureValue; exports.getPathDepth = _chunkY4FDI32Gjs.getPathDepth; exports.getPolicy = _chunkY4FDI32Gjs.getPolicy; exports.getRelationPath = _chunkY4FDI32Gjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkY4FDI32Gjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkY4FDI32Gjs.getSchemaContext; exports.getSchemaFromContext = _chunkY4FDI32Gjs.getSchemaFromContext; exports.getSyncPreview = _chunkY4FDI32Gjs.getSyncPreview; exports.getTargetAttributeName = _chunkY4FDI32Gjs.getTargetAttributeName; exports.getTenantId = _chunkY4FDI32Gjs.getTenantId; exports.getUserId = _chunkY4FDI32Gjs.getUserId; exports.getViewSeedPreview = _chunkY4FDI32Gjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkY4FDI32Gjs.getViewSyncPreview; exports.hasContext = _chunkY4FDI32Gjs.hasContext; exports.hasFeatureFlagsContext = _chunkY4FDI32Gjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkY4FDI32Gjs.hasRelationReferences; exports.hasSchemaContext = _chunkY4FDI32Gjs.hasSchemaContext; exports.hashOptions = _chunkY4FDI32Gjs.hashOptions; exports.isFeatureEnabled = _chunkY4FDI32Gjs.isFeatureEnabled; exports.isLabelExpression = _chunkY4FDI32Gjs.isLabelExpression; exports.parsePath = _chunkY4FDI32Gjs.parsePath; exports.pathHasManyCardinality = _chunkY4FDI32Gjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunkY4FDI32Gjs.recalculateParentRollups; exports.renderLabelExpression = _chunkY4FDI32Gjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkY4FDI32Gjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkY4FDI32Gjs.resolveSingleValue; exports.runWithContext = _chunkY4FDI32Gjs.runWithContext; exports.runWithFeatureFlags = _chunkY4FDI32Gjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkY4FDI32Gjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkY4FDI32Gjs.runWithSchemaContext; exports.seedRegistryViews = _chunkY4FDI32Gjs.seedRegistryViews; exports.success = _chunkY4FDI32Gjs.success; exports.syncAll = _chunkY4FDI32Gjs.syncAll; exports.syncNativeObjects = _chunkY4FDI32Gjs.syncNativeObjects; exports.syncNativeViews = _chunkY4FDI32Gjs.syncNativeViews; exports.traversePath = _chunkY4FDI32Gjs.traversePath; exports.tryGetFeatureValue = _chunkY4FDI32Gjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunkY4FDI32Gjs.validateFormulaExpression; exports.validatePath = _chunkY4FDI32Gjs.validatePath; exports.verifyNativeObjectsSync = _chunkY4FDI32Gjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkY4FDI32Gjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkY4FDI32Gjs.verifyRegistryViewsSeeded; exports.wait = _chunkY4FDI32Gjs.wait; exports.withFeatureFlags = _chunkY4FDI32Gjs.withFeatureFlags; exports.withTenantContext = _chunkY4FDI32Gjs.withTenantContext;
package/dist/runtime.mjs CHANGED
@@ -158,10 +158,9 @@ import {
158
158
  wait,
159
159
  withFeatureFlags,
160
160
  withTenantContext
161
- } from "./chunk-XF46EJU7.mjs";
161
+ } from "./chunk-K5MARJCD.mjs";
162
162
  import "./chunk-V2RPPE2Y.mjs";
163
163
  import "./chunk-5SZ5OISG.mjs";
164
- import "./chunk-6P3NPTYV.mjs";
165
164
  import "./chunk-Y6FXYEAI.mjs";
166
165
  export {
167
166
  AuditService,
@@ -1,4 +1,4 @@
1
1
  import 'zod';
2
- export { ah as DEFAULT_VALIDATION_MESSAGES, ag as ValidationMessages, b1 as ValidationResult, aB as attributeConfigSchemas, am as checkboxConfigSchema, ba as computeRecordStatus, a_ as createAttributeValidator, aI as createCheckboxValidator, aL as createCurrencyValidator, aJ as createDateValidator, b5 as createDraftValidator, aQ as createFileValidator, a$ as createFormAttributeValidator, aW as createFormulaValidator, aP as createLocationValidator, aT as createMultiRelationValidator, aO as createMultiselectValidator, aH as createNumberValidator, b0 as createObjectValidator, aK as createPhoneValidator, aV as createRatingValidator, aU as createRelationValidator, aZ as createRichtextValidator, aX as createRollupValidator, aN as createSelectValidator, aS as createSingleRelationValidator, aM as createStatusValidator, aY as createTextAreaValidator, aG as createTextValidator, aR as createUserValidator, ap as currencyConfigSchema, an as dateConfigSchema, aA as documentConfigSchema, au as fileConfigSchema, af as formatZodErrors, ay as formulaConfigSchema, aC as getAttributeConfigSchema, b8 as getMissingRequiredAttributes, b9 as isRecordComplete, ar as locationConfigSchema, at as multiselectConfigSchema, al as numberConfigSchema, aE as parseAttributeConfig, ao as phoneConfigSchema, ax as ratingConfigSchema, aw as relationConfigSchema, ak as richtextConfigSchema, az as rollupConfigSchema, aF as safeParseAttributeConfig, as as selectConfigSchema, aq as statusConfigSchema, ai as textConfigSchema, aj as textareaConfigSchema, av as userConfigSchema, b2 as validateAttribute, aD as validateAttributeConfig, b6 as validateDraft, b7 as validateDraftOrThrow, b3 as validateObject, b4 as validateObjectOrThrow } from '../validators-DUB0tEzp.mjs';
2
+ export { ah as DEFAULT_VALIDATION_MESSAGES, ag as ValidationMessages, b1 as ValidationResult, aB as attributeConfigSchemas, am as checkboxConfigSchema, ba as computeRecordStatus, a_ as createAttributeValidator, aI as createCheckboxValidator, aL as createCurrencyValidator, aJ as createDateValidator, b5 as createDraftValidator, aQ as createFileValidator, a$ as createFormAttributeValidator, aW as createFormulaValidator, aP as createLocationValidator, aT as createMultiRelationValidator, aO as createMultiselectValidator, aH as createNumberValidator, b0 as createObjectValidator, aK as createPhoneValidator, aV as createRatingValidator, aU as createRelationValidator, aZ as createRichtextValidator, aX as createRollupValidator, aN as createSelectValidator, aS as createSingleRelationValidator, aM as createStatusValidator, aY as createTextAreaValidator, aG as createTextValidator, aR as createUserValidator, ap as currencyConfigSchema, an as dateConfigSchema, aA as documentConfigSchema, au as fileConfigSchema, af as formatZodErrors, ay as formulaConfigSchema, aC as getAttributeConfigSchema, b8 as getMissingRequiredAttributes, b9 as isRecordComplete, ar as locationConfigSchema, at as multiselectConfigSchema, al as numberConfigSchema, aE as parseAttributeConfig, ao as phoneConfigSchema, ax as ratingConfigSchema, aw as relationConfigSchema, ak as richtextConfigSchema, az as rollupConfigSchema, aF as safeParseAttributeConfig, as as selectConfigSchema, aq as statusConfigSchema, ai as textConfigSchema, aj as textareaConfigSchema, av as userConfigSchema, b2 as validateAttribute, aD as validateAttributeConfig, b6 as validateDraft, b7 as validateDraftOrThrow, b3 as validateObject, b4 as validateObjectOrThrow } from '../validators-DVfMzWfY.mjs';
3
3
  import '@stndrds/constants';
4
4
  import '../utils.mjs';
@@ -1,4 +1,4 @@
1
1
  import 'zod';
2
- export { ah as DEFAULT_VALIDATION_MESSAGES, ag as ValidationMessages, b1 as ValidationResult, aB as attributeConfigSchemas, am as checkboxConfigSchema, ba as computeRecordStatus, a_ as createAttributeValidator, aI as createCheckboxValidator, aL as createCurrencyValidator, aJ as createDateValidator, b5 as createDraftValidator, aQ as createFileValidator, a$ as createFormAttributeValidator, aW as createFormulaValidator, aP as createLocationValidator, aT as createMultiRelationValidator, aO as createMultiselectValidator, aH as createNumberValidator, b0 as createObjectValidator, aK as createPhoneValidator, aV as createRatingValidator, aU as createRelationValidator, aZ as createRichtextValidator, aX as createRollupValidator, aN as createSelectValidator, aS as createSingleRelationValidator, aM as createStatusValidator, aY as createTextAreaValidator, aG as createTextValidator, aR as createUserValidator, ap as currencyConfigSchema, an as dateConfigSchema, aA as documentConfigSchema, au as fileConfigSchema, af as formatZodErrors, ay as formulaConfigSchema, aC as getAttributeConfigSchema, b8 as getMissingRequiredAttributes, b9 as isRecordComplete, ar as locationConfigSchema, at as multiselectConfigSchema, al as numberConfigSchema, aE as parseAttributeConfig, ao as phoneConfigSchema, ax as ratingConfigSchema, aw as relationConfigSchema, ak as richtextConfigSchema, az as rollupConfigSchema, aF as safeParseAttributeConfig, as as selectConfigSchema, aq as statusConfigSchema, ai as textConfigSchema, aj as textareaConfigSchema, av as userConfigSchema, b2 as validateAttribute, aD as validateAttributeConfig, b6 as validateDraft, b7 as validateDraftOrThrow, b3 as validateObject, b4 as validateObjectOrThrow } from '../validators-BxPuQ2GT.js';
2
+ export { ah as DEFAULT_VALIDATION_MESSAGES, ag as ValidationMessages, b1 as ValidationResult, aB as attributeConfigSchemas, am as checkboxConfigSchema, ba as computeRecordStatus, a_ as createAttributeValidator, aI as createCheckboxValidator, aL as createCurrencyValidator, aJ as createDateValidator, b5 as createDraftValidator, aQ as createFileValidator, a$ as createFormAttributeValidator, aW as createFormulaValidator, aP as createLocationValidator, aT as createMultiRelationValidator, aO as createMultiselectValidator, aH as createNumberValidator, b0 as createObjectValidator, aK as createPhoneValidator, aV as createRatingValidator, aU as createRelationValidator, aZ as createRichtextValidator, aX as createRollupValidator, aN as createSelectValidator, aS as createSingleRelationValidator, aM as createStatusValidator, aY as createTextAreaValidator, aG as createTextValidator, aR as createUserValidator, ap as currencyConfigSchema, an as dateConfigSchema, aA as documentConfigSchema, au as fileConfigSchema, af as formatZodErrors, ay as formulaConfigSchema, aC as getAttributeConfigSchema, b8 as getMissingRequiredAttributes, b9 as isRecordComplete, ar as locationConfigSchema, at as multiselectConfigSchema, al as numberConfigSchema, aE as parseAttributeConfig, ao as phoneConfigSchema, ax as ratingConfigSchema, aw as relationConfigSchema, ak as richtextConfigSchema, az as rollupConfigSchema, aF as safeParseAttributeConfig, as as selectConfigSchema, aq as statusConfigSchema, ai as textConfigSchema, aj as textareaConfigSchema, av as userConfigSchema, b2 as validateAttribute, aD as validateAttributeConfig, b6 as validateDraft, b7 as validateDraftOrThrow, b3 as validateObject, b4 as validateObjectOrThrow } from '../validators-5RPbTlXa.js';
3
3
  import '@stndrds/constants';
4
4
  import '../utils.js';
@@ -109,6 +109,8 @@ interface FeatureFlagsRepository {
109
109
  level?: FlagLevel;
110
110
  /** Filter by target ID (tenantId or userId) */
111
111
  targetId?: string;
112
+ /** Filter by flag names (for efficient single/batch lookups) */
113
+ flagNames?: string[];
112
114
  }): Promise<FlagOverride[]>;
113
115
  /**
114
116
  * Create or update an override.