@stndrds/schema 0.1.0-alpha.59 → 0.1.0-alpha.61

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.
@@ -3854,17 +3854,22 @@ interface SearchOptions extends ListOptions {
3854
3854
  highlight?: boolean;
3855
3855
  }
3856
3856
  /**
3857
- * Global search options
3857
+ * Global search options (standalone, not extending ListOptions)
3858
3858
  */
3859
- interface GlobalSearchOptions extends ListOptions {
3859
+ interface GlobalSearchOptions {
3860
+ limit?: number;
3861
+ offset?: number;
3860
3862
  /**
3861
3863
  * Limit results to specific object names
3862
3864
  */
3863
3865
  objectNames?: string[];
3864
- /**
3865
- * Whether to include object metadata in results
3866
- */
3867
- includeObjectInfo?: boolean;
3866
+ }
3867
+ /**
3868
+ * Global search grouped options
3869
+ */
3870
+ interface GlobalSearchGroupedOptions {
3871
+ objectNames?: string[];
3872
+ limitPerGroup?: number;
3868
3873
  }
3869
3874
  /**
3870
3875
  * Global search result item
@@ -3876,11 +3881,22 @@ interface GlobalSearchResultItem {
3876
3881
  /** Computed label from labelExpression */
3877
3882
  label: string;
3878
3883
  recordId: string;
3879
- values: Record<string, unknown>;
3880
3884
  completionStatus: "draft" | "complete";
3881
3885
  createdAt: Date;
3882
3886
  updatedAt: Date;
3883
3887
  }
3888
+ /**
3889
+ * Global search grouped result
3890
+ */
3891
+ interface GlobalSearchGroupedResult {
3892
+ groups: Array<{
3893
+ objectName: string;
3894
+ objectLabel: string;
3895
+ results: GlobalSearchResultItem[];
3896
+ totalInGroup: number;
3897
+ }>;
3898
+ total: number;
3899
+ }
3884
3900
  /**
3885
3901
  * File-specific list options
3886
3902
  */
@@ -4809,8 +4825,8 @@ declare const cacheKeys: {
4809
4825
  readonly searchResults: (tenantId: string, objectId: string, hash: string) => string;
4810
4826
  /** All search results for an object (for invalidation) */
4811
4827
  readonly allSearchResults: (tenantId: string, objectId: string) => string;
4812
- /** Global search results */
4813
- readonly globalSearch: (tenantId: string, hash: string) => string;
4828
+ /** Global search results (3-param signature to match cachedList pattern) */
4829
+ readonly globalSearch: (tenantId: string, _id: string, hash: string) => string;
4814
4830
  /** All global search results for tenant (for invalidation) */
4815
4831
  readonly allGlobalSearch: (tenantId: string) => string;
4816
4832
  /** All schema cache for a tenant */
@@ -5232,6 +5248,12 @@ interface ObjectRecordsRepository {
5232
5248
  results: GlobalSearchResultItem[];
5233
5249
  total: number;
5234
5250
  }>;
5251
+ /**
5252
+ * Global search grouped by object type.
5253
+ * Returns results partitioned by object name with per-group counts.
5254
+ * Automatically filtered by current tenant context.
5255
+ */
5256
+ globalSearchGrouped(query: string, options?: GlobalSearchGroupedOptions): Promise<GlobalSearchGroupedResult>;
5235
5257
  /**
5236
5258
  * Count records that reference a given record ID in any relation attribute.
5237
5259
  * Used to implement the "Restrict" delete behavior.
@@ -12059,6 +12081,9 @@ declare class GeocodingService {
12059
12081
  * objectNames: ["products", "orders"],
12060
12082
  * limit: 20
12061
12083
  * });
12084
+ *
12085
+ * // Search grouped by object type
12086
+ * const { groups, total } = await service.searchGrouped("nike");
12062
12087
  * ```
12063
12088
  */
12064
12089
  declare class GlobalSearchService extends BaseService {
@@ -12069,50 +12094,20 @@ declare class GlobalSearchService extends BaseService {
12069
12094
  * @param query - Search query string
12070
12095
  * @param options - Search options (pagination, object filters)
12071
12096
  * @returns Matching records with object metadata and total count
12072
- *
12073
- * @example
12074
- * ```typescript
12075
- * // Basic search
12076
- * const { results, total } = await service.search("nike air");
12077
- *
12078
- * // With pagination
12079
- * const { results, total } = await service.search("nike", {
12080
- * limit: 10,
12081
- * offset: 20
12082
- * });
12083
- *
12084
- * // Filter by object types
12085
- * const { results, total } = await service.search("nike", {
12086
- * objectNames: ["products", "orders"]
12087
- * });
12088
- * ```
12089
12097
  */
12090
12098
  search(query: string, options?: GlobalSearchOptions): Promise<{
12091
12099
  results: GlobalSearchResultItem[];
12092
12100
  total: number;
12093
12101
  }>;
12094
12102
  /**
12095
- * Internal search execution (extracted for caching)
12096
- */
12097
- private executeSearch;
12098
- /**
12099
- * Search and group results by object type
12103
+ * Search and group results by object type.
12104
+ * Delegates grouping to the database for accurate per-group counts.
12100
12105
  *
12101
12106
  * @param query - Search query string
12102
- * @param options - Search options
12103
- * @returns Results grouped by object name
12107
+ * @param options - Search options (object filters, limit per group)
12108
+ * @returns Results grouped by object name with per-group totals
12104
12109
  */
12105
- searchGrouped(query: string, options?: Omit<GlobalSearchOptions, "limit" | "offset"> & {
12106
- limitPerGroup?: number;
12107
- }): Promise<{
12108
- groups: Array<{
12109
- objectName: string;
12110
- objectLabel: string;
12111
- results: GlobalSearchResultItem[];
12112
- count: number;
12113
- }>;
12114
- total: number;
12115
- }>;
12110
+ searchGrouped(query: string, options?: GlobalSearchGroupedOptions): Promise<GlobalSearchGroupedResult>;
12116
12111
  }
12117
12112
 
12118
12113
  /**
@@ -12580,4 +12575,4 @@ interface FullSyncOptions extends SyncOptions, ViewSyncOptions {
12580
12575
  */
12581
12576
  declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof registry, nativeViewRegistry: typeof viewRegistry, options?: FullSyncOptions): Promise<FullSyncResult>;
12582
12577
 
12583
- export { type TextPartData as $, type AttributeGroupField as A, type BoundingBox as B, type ConditionGroup as C, type DetailViewLayout as D, type SignatureRequestResult as E, type Field as F, type Group as G, type SignatureStatusResult as H, type InferAttributeValue as I, type SignerStatus as J, type SignatureStatus as K, type ListViewDefinition as L, type IdentityVerificationAdapter as M, type VerifyInput as N, type ObjectAction as O, type VerificationResult as P, type DocumentData as Q, type VerificationCheck as R, type SystemResource as S, type TableTab as T, type AIMessageRole as U, type ViewType as V, type WorkflowTheme as W, type AIThinkingLevel as X, type AIToolCallStatus as Y, type AIToolCall as Z, type AIChatMessagePartType as _, type SystemAction as a, type UpdateFile as a$, type ToolPartData as a0, type ThinkingPartData as a1, type ReasoningPartData as a2, type AIChatMessagePart as a3, type AIChatMessage as a4, type AIQuestionType as a5, type AIQuestionOption as a6, type AIQuestion as a7, type AIQuestionAnswer as a8, type AIBatchQuestionOption as a9, type UpdateDocumentGenerationTemplate as aA, type PendingDocumentRequest as aB, type DocumentSlotDefinition as aC, type DocumentAutoProcessing as aD, type ExtractionMapping as aE, type ExtractionField as aF, type Document as aG, type DocumentStatus as aH, type DocumentSlot as aI, type SlotStatus as aJ, type ProcessingJob as aK, type ProcessingJobType as aL, type ProcessingJobStatus as aM, type CreateDocument as aN, type UpdateDocument as aO, type CreateDocumentTemplate as aP, type UpdateDocumentTemplate as aQ, type CreateDocumentSlot as aR, type UpdateDocumentSlot as aS, type CreateProcessingJob as aT, type UpdateProcessingJob as aU, type DocumentListOptions as aV, type DocumentTemplateListOptions as aW, type StorageProvider as aX, type FileVisibility as aY, type File as aZ, type CreateFile as a_, type AIBatchQuestion as aa, type AIBatchQuestionAnswer as ab, type AITodoStatus as ac, type AITodoItem as ad, type AITodoList as ae, type AIMessageAttachment as af, type AIConversation as ag, type AIMessage as ah, type AIToolCallRecord as ai, type AIUserMemory as aj, type AIUsageMetrics as ak, type AIProviderMetrics as al, type CreateAIMessageInput as am, type AuditResourceType as an, type AuditAction as ao, type AuditActorType as ap, type AuditChange as aq, type AuditLogEntry as ar, type CreateAuditLogInput as as, type AuditListOptions as at, type AuditServiceOptions as au, type VariableMapping as av, type PdfTemplateField as aw, type TemplateSource as ax, type DocumentGenerationTemplate as ay, type CreateDocumentGenerationTemplate as az, type InverseTableTab as b, type Permission as b$, type TextFilterOperator as b0, type NumberFilterOperator as b1, type CheckboxFilterOperator as b2, type DateFilterOperator as b3, type SelectFilterOperator as b4, type MultiselectFilterOperator as b5, type RelationFilterOperator as b6, type FilterOperator as b7, type RelativeDateValue as b8, type CurrencyFilterValue as b9, type GeocodingAdapter as bA, NoopGeocodingAdapter as bB, type AttributeSchema as bC, type InferRecordFromSchema as bD, type InferRecordWithRequirements as bE, type TypedAttribute as bF, type AttributeMap as bG, type AddAttribute as bH, type InferRecord as bI, type InferRecordInput as bJ, type InferRecordUpdate as bK, type CustomAttributeValue as bL, type WithCustomAttributes as bM, type RecordMetadata as bN, type SystemFields as bO, type ExtractRecord as bP, type ExtractRecordStrict as bQ, type ExtractRecordInput as bR, type ExtractRecordInputStrict as bS, type ExtractRecordUpdate as bT, type ExtractRecordUpdateStrict as bU, type ExtractAttributes as bV, type TypedObjectRecord as bW, type ExtractObjectRecord as bX, type ExtractObjectRecordWithCustom as bY, type PermissionScope as bZ, type Role as b_, type PhoneFilterValue as ba, type FilterValue as bb, type FilterRule as bc, type ExtendedFilterRule as bd, type FilterCombinator as be, type FilterGroup as bf, type AdvancedFilterState as bg, type SortDirection as bh, type QueryState as bi, OPERATORS_BY_TYPE as bj, type NoValueOperator as bk, NO_VALUE_OPERATORS as bl, isNoValueOperator as bm, type FlowSlot as bn, type FlowRowField as bo, type FlowPage as bp, type FlowRelation as bq, type FlowStatus as br, type FlowDefinition as bs, isFlowDefinition as bt, isFlowPublished as bu, isSystemFlow as bv, type GeocodingSuggestion as bw, type GeocodingAutocompleteParams as bx, type ReverseGeocodingParams as by, type GeocodingParams as bz, type DetailViewDefinition as c, isEndNode as c$, type UserRoleAssignment as c0, type EffectivePermissions as c1, type ObjectPermissions as c2, type SystemPermissions as c3, type CreateRoleInput as c4, type UpdateRoleInput as c5, type CreatePermissionInput as c6, type AssignRoleInput as c7, type PolicyContext as c8, type RecordPolicy as c9, type ConfigOverrides as cA, type ViewOverlay as cB, isDetailView as cC, isListView as cD, isCalendarView as cE, isTimelineView as cF, isGalleryView as cG, isFormTab as cH, isTableTab as cI, isDirectTableTab as cJ, isInverseTableTab as cK, isCustomTab as cL, isActivityTab as cM, isNotesTab as cN, isFlowsTab as cO, isDocumentsTab as cP, type ConditionNode as cQ, type DocumentNode as cR, type EndNode as cS, type FormFieldRef as cT, type FormNode as cU, type StartNode as cV, type WorkflowNodeType as cW, getNodeOutputs as cX, isAdvancedFormNode as cY, isConditionNode as cZ, isDocumentNode as c_, PolicyViolationError as ca, type UserRole as cb, type UserStatus as cc, type UserProfile as cd, type CreateUserProfile as ce, type UpdateUserProfile as cf, type InviteUserInput as cg, type TabType as ch, type FormTab as ci, type CustomTab as cj, type ActivityTab as ck, type NotesTab as cl, type FlowsTab as cm, type DocumentsTab as cn, type ListViewLayout as co, type ViewLayout as cp, type ViewTab as cq, type DetailViewConfig as cr, type ListViewConfig as cs, type CalendarViewConfig as ct, type TimelineViewConfig as cu, type GalleryViewConfig as cv, type ViewConfig as cw, type CalendarViewDefinition as cx, type TimelineViewDefinition as cy, type GalleryViewDefinition as cz, type InstanceStatus as d, type RelationAttributeRow as d$, isFormNode as d0, isSimpleFormNode as d1, isStartNode as d2, type ConditionOperator as d3, and as d4, eq as d5, inValues as d6, isConditionGroup as d7, isConditionRule as d8, neq as d9, type WorkflowAccessGrant as dA, canAccessNode as dB, isGrantExpired as dC, isGrantRevoked as dD, isGrantValid as dE, isTokenRevoked as dF, type GeneratedDocument as dG, type WorkflowExecutionContext as dH, createEmptyContext as dI, getContextValue as dJ, setContextValue as dK, type FormContextResponse as dL, type FormFieldContext as dM, type FormFieldRow as dN, type FormNodeInfo as dO, type ReadOnlyReason as dP, type WorkflowAccessMode as dQ, type ThemeColors as dR, type ThemeLogo as dS, type ThemeTypography as dT, DEFAULT_THEME as dU, generateCssVariables as dV, mergeWithDefaults as dW, registry as dX, viewRegistry as dY, type ViewOverlaysRepository as dZ, type RelationAttributeInput as d_, or as da, type CanvasViewport as db, type NodePosition as dc, type WorkflowLayout as dd, type WorkflowSlot as de, type WorkflowStatus as df, isSystemWorkflow as dg, isWorkflowDefinition as dh, isWorkflowPublished as di, type PendingAction as dj, type WorkflowError as dk, type WorkflowInstance as dl, type WorkflowTransition as dm, canResumeInstance as dn, createStartTransition as dp, isInstanceTerminal as dq, isInstanceWaiting as dr, type CreateInvitationInput as ds, type CreateInvitationResult as dt, type InvitationStatus as du, type WorkflowInvitation as dv, isInvitationAccepted as dw, isInvitationExpired as dx, isInvitationValid as dy, type CreateGrantInput as dz, type Tab as e, createDefaultExecutorRegistry as e$, type RelationAttributesRepository as e0, type DatabaseAdapter as e1, WorkflowJwtService as e2, type JwtVerificationResult as e3, type MagicLinkPayload as e4, type WorkflowAccessPayload as e5, type WorkflowJwtConfig as e6, type WorkflowJwtPayload as e7, type CacheKeyType as e8, hashOptions as e9, evaluate as eA, evaluateWithTrace as eB, TenantContextError as eC, FeatureFlagsContextError as eD, getFeatureFlags as eE, getFeatureValue as eF, hasFeatureFlagsContext as eG, isFeatureEnabled as eH, runWithFeatureFlags as eI, tryGetFeatureValue as eJ, withFeatureFlags as eK, type FeatureFlagsContext as eL, addSchemaToContext as eM, getSchemaByNameFromContext as eN, getSchemaContext as eO, getSchemaFromContext as eP, hasSchemaContext as eQ, runWithMergedSchemaContext as eR, runWithSchemaContext as eS, type SchemaContext as eT, getContext as eU, getTenantId as eV, getUserId as eW, hasContext as eX, runWithContext as eY, withTenantContext as eZ, type TenantContext as e_, type CacheAdapter as ea, type CacheOptions as eb, cacheKeys as ec, cacheTtl as ed, defaultTtl as ee, NoopCacheAdapter as ef, type FetchResult as eg, type FormattedRecord as eh, type GroupedFetchResult as ei, type InsertOptions as ej, type QueryBuilderState as ek, type RegistryMap as el, type RegistryObjectNames as em, type ShortcutOperator as en, createDefaultState as eo, formatRecord as ep, formatRecords as eq, QueryMultipleResultsError as er, QueryNoResultError as es, SHORTCUT_TO_FILTER_OPERATOR as et, createQueryBuilder as eu, QueryBuilder as ev, type QueryBuilderOptions as ew, type EvaluationResult as ex, type EvaluationTrace as ey, evaluateCondition as ez, type FilterState as f, type AttributesRepository as f$, getDefaultExecutorRegistry as f0, type ExecutorCompleteResult as f1, type ExecutorContext as f2, type ExecutorErrorResult as f3, type ExecutorResult as f4, type ExecutorSuccessResult as f5, type ExecutorWaitResult as f6, type NodeExecutor as f7, complete as f8, error as f9, parsePath as fA, pathHasManyCardinality as fB, validatePath as fC, type PathCardinality as fD, type PathSegment as fE, type PathSegmentType as fF, type SchemaResolver as fG, resolveMultiplePaths as fH, resolveSingleValue as fI, traversePath as fJ, type TraversalOptions as fK, type TraversalResult as fL, type AttributeChange as fM, type HookContext as fN, type HookDefinition as fO, type HookHandler as fP, type HookType as fQ, NoopHookRegistry as fR, type HookRegistry as fS, createMockAdapter as fT, type MockStores as fU, defaultPolicyRegistry as fV, PolicyRegistry as fW, notesPolicy as fX, type AIConversationsRepository as fY, type AIUsageMetricsRepository as fZ, type AIUserMemoryRepository as f_, ExecutorRegistry as fa, success as fb, wait as fc, ConditionExecutor as fd, DocumentExecutor as fe, EndExecutor as ff, FormExecutor as fg, StartExecutor as fh, evaluateFormula as fi, evaluateFormulaAttribute as fj, evaluateFormulaAttributeWithRelations as fk, evaluateFormulaWithRelations as fl, evaluateFormulaWithResult as fm, extractFormulaVariables as fn, extractRelationNames as fo, extractRelationReferences as fp, flattenRelationsForEval as fq, formatFormulaResult as fr, hasRelationReferences as fs, validateFormulaExpression as ft, type FormulaResult as fu, getPathDepth as fv, getRelationPath as fw, getTargetAttributeName as fx, InvalidPathError as fy, MaxDepthExceededError as fz, type SortRule as g, computeLabel as g$, type AuditRepository as g0, type DocumentGenerationTemplateListOptions as g1, type DocumentGenerationTemplatesRepository as g2, type DocumentJobsRepository as g3, type DocumentSlotsRepository as g4, type DocumentsRepository as g5, type DocumentTemplatesRepository as g6, type FilesRepository as g7, type ObjectRecordsRepository as g8, type ObjectsRepository as g9, type RelationOptionsResponse as gA, type GetRelationOptionsParams as gB, type RelationServiceOptions as gC, type ResolveIdsBatchRequest as gD, type ResolveIdsBatchResponse as gE, RelationService as gF, type MultiRelationValue as gG, type SingleRelationValue as gH, type HybridRelationValue as gI, RelationPropertiesService as gJ, RecordResolverService as gK, type ResolvedRelations as gL, type FormulaResolverServiceOptions as gM, FormulaResolverService as gN, type RollupResult as gO, type RollupServiceOptions as gP, RollupService as gQ, type RollupSchedulerOptions as gR, RollupScheduler as gS, applyDefaultValues as gT, checkPermission as gU, getPolicy as gV, buildPolicyContext as gW, checkRecordAccess as gX, checkRecordModifyOrThrow as gY, checkRecordDeleteOrThrow as gZ, checkSharedObjectWriteAccess as g_, 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 DirectTableTab as h, type CreateViewInput as h$, type LabelResolver as h0, enrichWithFormulas as h1, enrichRecordsWithFormulas as h2, createContextForCreate as h3, createContextForUpdate as h4, createContextForDelete as h5, createContextForRestore as h6, recalculateParentRollups as h7, type RollupCascadeContext as h8, type DocumentProcessingHookOptions as h9, type UserProfileServiceOptions as hA, UserProfileService as hB, AuditService as hC, buildAuditChanges as hD, DocumentGenerationTemplateNotFoundError as hE, DocumentGenerationNotConfiguredError as hF, DocumentGenerationService as hG, type DocumentProcessingConfig as hH, DocumentProcessingService as hI, type RenderDocumentInput as hJ, type DocumentRendererOptions as hK, type RenderDocumentResult as hL, DocumentRenderError as hM, StorageDownloadNotSupportedError as hN, DocumentRendererService as hO, DocumentTemplateService as hP, type RecordDocumentsResult as hQ, type CreateRecordDocumentInput as hR, type CreateRecordDocumentResult as hS, type DocumentServiceOptions as hT, DocumentService as hU, type FileServiceOptions as hV, FileService as hW, GeocodingService as hX, GlobalSearchService as hY, type PermissionServiceOptions as hZ, PermissionService as h_, 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 WorkflowConfig as i, type ViewSyncResult as i$, type UpdateViewInput as i0, type GetViewsOptions as i1, type GetViewOptions as i2, ViewService as i3, type FileContent as i4, type StorageUploadInput as i5, type StorageUploadResult as i6, type SignedUrlOptions as i7, type StorageAdapter as i8, type UploadFileInput as i9, type UpsertDBAttribute as iA, type CreateObjectRecord as iB, type ListOptions as iC, type SearchOptions as iD, type GlobalSearchOptions as iE, type GlobalSearchResultItem as iF, type FileListOptions as iG, type DBView as iH, type CreateDBView as iI, type UpdateDBView as iJ, type UpsertDBView as iK, type DBViewOverlay as iL, type CreateDBViewOverlay as iM, type UpdateDBViewOverlay as iN, type DBWorkflow as iO, type CreateDBWorkflow as iP, type UpdateDBWorkflow as iQ, type DBWorkflowInstance as iR, type CreateDBWorkflowInstance as iS, type UpdateDBWorkflowInstance as iT, type DBWorkflowInvitation as iU, type CreateDBWorkflowInvitation as iV, type UpdateDBWorkflowInvitation as iW, type DBWorkflowAccessGrant as iX, type CreateDBWorkflowAccessGrant as iY, type UpdateDBWorkflowAccessGrant as iZ, type OperationResult as i_, type SyncResult as ia, type SyncOptions as ib, syncNativeObjects as ic, verifyNativeObjectsSync as id, getSyncPreview as ie, type FullSyncResult as ig, type FullSyncOptions as ih, syncAll as ii, DEFAULT_LABEL_FALLBACK as ij, renderLabelExpression as ik, isLabelExpression as il, extractAttributeNames as im, 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 SlotMode as j, type ViewSyncLogger as j0, type ViewSyncOptions as j1, seedRegistryViews as j2, syncNativeViews as j3, verifyRegistryViewsSeeded as j4, verifyNativeViewsSync as j5, getViewSeedPreview as j6, getViewSyncPreview as j7, type ConditionRule as k, type WorkflowNode as l, type WorkflowDefinition as m, type FlowRow as n, type ViewDefinition as o, type DocumentTemplate as p, type OcrAdapter as q, type OcrInput as r, type OcrOptions as s, type OcrResult as t, type OcrPage as u, type OcrTextBlock as v, type SignatureAdapter as w, type CreateSignatureInput as x, type SignerRequest as y, type SignaturePosition as z };
12578
+ export { type TextPartData as $, type AttributeGroupField as A, type BoundingBox as B, type ConditionGroup as C, type DetailViewLayout as D, type SignatureRequestResult as E, type Field as F, type Group as G, type SignatureStatusResult as H, type InferAttributeValue as I, type SignerStatus as J, type SignatureStatus as K, type ListViewDefinition as L, type IdentityVerificationAdapter as M, type VerifyInput as N, type ObjectAction as O, type VerificationResult as P, type DocumentData as Q, type VerificationCheck as R, type SystemResource as S, type TableTab as T, type AIMessageRole as U, type ViewType as V, type WorkflowTheme as W, type AIThinkingLevel as X, type AIToolCallStatus as Y, type AIToolCall as Z, type AIChatMessagePartType as _, type SystemAction as a, type UpdateFile as a$, type ToolPartData as a0, type ThinkingPartData as a1, type ReasoningPartData as a2, type AIChatMessagePart as a3, type AIChatMessage as a4, type AIQuestionType as a5, type AIQuestionOption as a6, type AIQuestion as a7, type AIQuestionAnswer as a8, type AIBatchQuestionOption as a9, type UpdateDocumentGenerationTemplate as aA, type PendingDocumentRequest as aB, type DocumentSlotDefinition as aC, type DocumentAutoProcessing as aD, type ExtractionMapping as aE, type ExtractionField as aF, type Document as aG, type DocumentStatus as aH, type DocumentSlot as aI, type SlotStatus as aJ, type ProcessingJob as aK, type ProcessingJobType as aL, type ProcessingJobStatus as aM, type CreateDocument as aN, type UpdateDocument as aO, type CreateDocumentTemplate as aP, type UpdateDocumentTemplate as aQ, type CreateDocumentSlot as aR, type UpdateDocumentSlot as aS, type CreateProcessingJob as aT, type UpdateProcessingJob as aU, type DocumentListOptions as aV, type DocumentTemplateListOptions as aW, type StorageProvider as aX, type FileVisibility as aY, type File as aZ, type CreateFile as a_, type AIBatchQuestion as aa, type AIBatchQuestionAnswer as ab, type AITodoStatus as ac, type AITodoItem as ad, type AITodoList as ae, type AIMessageAttachment as af, type AIConversation as ag, type AIMessage as ah, type AIToolCallRecord as ai, type AIUserMemory as aj, type AIUsageMetrics as ak, type AIProviderMetrics as al, type CreateAIMessageInput as am, type AuditResourceType as an, type AuditAction as ao, type AuditActorType as ap, type AuditChange as aq, type AuditLogEntry as ar, type CreateAuditLogInput as as, type AuditListOptions as at, type AuditServiceOptions as au, type VariableMapping as av, type PdfTemplateField as aw, type TemplateSource as ax, type DocumentGenerationTemplate as ay, type CreateDocumentGenerationTemplate as az, type InverseTableTab as b, type Permission as b$, type TextFilterOperator as b0, type NumberFilterOperator as b1, type CheckboxFilterOperator as b2, type DateFilterOperator as b3, type SelectFilterOperator as b4, type MultiselectFilterOperator as b5, type RelationFilterOperator as b6, type FilterOperator as b7, type RelativeDateValue as b8, type CurrencyFilterValue as b9, type GeocodingAdapter as bA, NoopGeocodingAdapter as bB, type AttributeSchema as bC, type InferRecordFromSchema as bD, type InferRecordWithRequirements as bE, type TypedAttribute as bF, type AttributeMap as bG, type AddAttribute as bH, type InferRecord as bI, type InferRecordInput as bJ, type InferRecordUpdate as bK, type CustomAttributeValue as bL, type WithCustomAttributes as bM, type RecordMetadata as bN, type SystemFields as bO, type ExtractRecord as bP, type ExtractRecordStrict as bQ, type ExtractRecordInput as bR, type ExtractRecordInputStrict as bS, type ExtractRecordUpdate as bT, type ExtractRecordUpdateStrict as bU, type ExtractAttributes as bV, type TypedObjectRecord as bW, type ExtractObjectRecord as bX, type ExtractObjectRecordWithCustom as bY, type PermissionScope as bZ, type Role as b_, type PhoneFilterValue as ba, type FilterValue as bb, type FilterRule as bc, type ExtendedFilterRule as bd, type FilterCombinator as be, type FilterGroup as bf, type AdvancedFilterState as bg, type SortDirection as bh, type QueryState as bi, OPERATORS_BY_TYPE as bj, type NoValueOperator as bk, NO_VALUE_OPERATORS as bl, isNoValueOperator as bm, type FlowSlot as bn, type FlowRowField as bo, type FlowPage as bp, type FlowRelation as bq, type FlowStatus as br, type FlowDefinition as bs, isFlowDefinition as bt, isFlowPublished as bu, isSystemFlow as bv, type GeocodingSuggestion as bw, type GeocodingAutocompleteParams as bx, type ReverseGeocodingParams as by, type GeocodingParams as bz, type DetailViewDefinition as c, isEndNode as c$, type UserRoleAssignment as c0, type EffectivePermissions as c1, type ObjectPermissions as c2, type SystemPermissions as c3, type CreateRoleInput as c4, type UpdateRoleInput as c5, type CreatePermissionInput as c6, type AssignRoleInput as c7, type PolicyContext as c8, type RecordPolicy as c9, type ConfigOverrides as cA, type ViewOverlay as cB, isDetailView as cC, isListView as cD, isCalendarView as cE, isTimelineView as cF, isGalleryView as cG, isFormTab as cH, isTableTab as cI, isDirectTableTab as cJ, isInverseTableTab as cK, isCustomTab as cL, isActivityTab as cM, isNotesTab as cN, isFlowsTab as cO, isDocumentsTab as cP, type ConditionNode as cQ, type DocumentNode as cR, type EndNode as cS, type FormFieldRef as cT, type FormNode as cU, type StartNode as cV, type WorkflowNodeType as cW, getNodeOutputs as cX, isAdvancedFormNode as cY, isConditionNode as cZ, isDocumentNode as c_, PolicyViolationError as ca, type UserRole as cb, type UserStatus as cc, type UserProfile as cd, type CreateUserProfile as ce, type UpdateUserProfile as cf, type InviteUserInput as cg, type TabType as ch, type FormTab as ci, type CustomTab as cj, type ActivityTab as ck, type NotesTab as cl, type FlowsTab as cm, type DocumentsTab as cn, type ListViewLayout as co, type ViewLayout as cp, type ViewTab as cq, type DetailViewConfig as cr, type ListViewConfig as cs, type CalendarViewConfig as ct, type TimelineViewConfig as cu, type GalleryViewConfig as cv, type ViewConfig as cw, type CalendarViewDefinition as cx, type TimelineViewDefinition as cy, type GalleryViewDefinition as cz, type InstanceStatus as d, type RelationAttributeRow as d$, isFormNode as d0, isSimpleFormNode as d1, isStartNode as d2, type ConditionOperator as d3, and as d4, eq as d5, inValues as d6, isConditionGroup as d7, isConditionRule as d8, neq as d9, type WorkflowAccessGrant as dA, canAccessNode as dB, isGrantExpired as dC, isGrantRevoked as dD, isGrantValid as dE, isTokenRevoked as dF, type GeneratedDocument as dG, type WorkflowExecutionContext as dH, createEmptyContext as dI, getContextValue as dJ, setContextValue as dK, type FormContextResponse as dL, type FormFieldContext as dM, type FormFieldRow as dN, type FormNodeInfo as dO, type ReadOnlyReason as dP, type WorkflowAccessMode as dQ, type ThemeColors as dR, type ThemeLogo as dS, type ThemeTypography as dT, DEFAULT_THEME as dU, generateCssVariables as dV, mergeWithDefaults as dW, registry as dX, viewRegistry as dY, type ViewOverlaysRepository as dZ, type RelationAttributeInput as d_, or as da, type CanvasViewport as db, type NodePosition as dc, type WorkflowLayout as dd, type WorkflowSlot as de, type WorkflowStatus as df, isSystemWorkflow as dg, isWorkflowDefinition as dh, isWorkflowPublished as di, type PendingAction as dj, type WorkflowError as dk, type WorkflowInstance as dl, type WorkflowTransition as dm, canResumeInstance as dn, createStartTransition as dp, isInstanceTerminal as dq, isInstanceWaiting as dr, type CreateInvitationInput as ds, type CreateInvitationResult as dt, type InvitationStatus as du, type WorkflowInvitation as dv, isInvitationAccepted as dw, isInvitationExpired as dx, isInvitationValid as dy, type CreateGrantInput as dz, type Tab as e, createDefaultExecutorRegistry as e$, type RelationAttributesRepository as e0, type DatabaseAdapter as e1, WorkflowJwtService as e2, type JwtVerificationResult as e3, type MagicLinkPayload as e4, type WorkflowAccessPayload as e5, type WorkflowJwtConfig as e6, type WorkflowJwtPayload as e7, type CacheKeyType as e8, hashOptions as e9, evaluate as eA, evaluateWithTrace as eB, TenantContextError as eC, FeatureFlagsContextError as eD, getFeatureFlags as eE, getFeatureValue as eF, hasFeatureFlagsContext as eG, isFeatureEnabled as eH, runWithFeatureFlags as eI, tryGetFeatureValue as eJ, withFeatureFlags as eK, type FeatureFlagsContext as eL, addSchemaToContext as eM, getSchemaByNameFromContext as eN, getSchemaContext as eO, getSchemaFromContext as eP, hasSchemaContext as eQ, runWithMergedSchemaContext as eR, runWithSchemaContext as eS, type SchemaContext as eT, getContext as eU, getTenantId as eV, getUserId as eW, hasContext as eX, runWithContext as eY, withTenantContext as eZ, type TenantContext as e_, type CacheAdapter as ea, type CacheOptions as eb, cacheKeys as ec, cacheTtl as ed, defaultTtl as ee, NoopCacheAdapter as ef, type FetchResult as eg, type FormattedRecord as eh, type GroupedFetchResult as ei, type InsertOptions as ej, type QueryBuilderState as ek, type RegistryMap as el, type RegistryObjectNames as em, type ShortcutOperator as en, createDefaultState as eo, formatRecord as ep, formatRecords as eq, QueryMultipleResultsError as er, QueryNoResultError as es, SHORTCUT_TO_FILTER_OPERATOR as et, createQueryBuilder as eu, QueryBuilder as ev, type QueryBuilderOptions as ew, type EvaluationResult as ex, type EvaluationTrace as ey, evaluateCondition as ez, type FilterState as f, type AttributesRepository as f$, getDefaultExecutorRegistry as f0, type ExecutorCompleteResult as f1, type ExecutorContext as f2, type ExecutorErrorResult as f3, type ExecutorResult as f4, type ExecutorSuccessResult as f5, type ExecutorWaitResult as f6, type NodeExecutor as f7, complete as f8, error as f9, parsePath as fA, pathHasManyCardinality as fB, validatePath as fC, type PathCardinality as fD, type PathSegment as fE, type PathSegmentType as fF, type SchemaResolver as fG, resolveMultiplePaths as fH, resolveSingleValue as fI, traversePath as fJ, type TraversalOptions as fK, type TraversalResult as fL, type AttributeChange as fM, type HookContext as fN, type HookDefinition as fO, type HookHandler as fP, type HookType as fQ, NoopHookRegistry as fR, type HookRegistry as fS, createMockAdapter as fT, type MockStores as fU, defaultPolicyRegistry as fV, PolicyRegistry as fW, notesPolicy as fX, type AIConversationsRepository as fY, type AIUsageMetricsRepository as fZ, type AIUserMemoryRepository as f_, ExecutorRegistry as fa, success as fb, wait as fc, ConditionExecutor as fd, DocumentExecutor as fe, EndExecutor as ff, FormExecutor as fg, StartExecutor as fh, evaluateFormula as fi, evaluateFormulaAttribute as fj, evaluateFormulaAttributeWithRelations as fk, evaluateFormulaWithRelations as fl, evaluateFormulaWithResult as fm, extractFormulaVariables as fn, extractRelationNames as fo, extractRelationReferences as fp, flattenRelationsForEval as fq, formatFormulaResult as fr, hasRelationReferences as fs, validateFormulaExpression as ft, type FormulaResult as fu, getPathDepth as fv, getRelationPath as fw, getTargetAttributeName as fx, InvalidPathError as fy, MaxDepthExceededError as fz, type SortRule as g, computeLabel as g$, type AuditRepository as g0, type DocumentGenerationTemplateListOptions as g1, type DocumentGenerationTemplatesRepository as g2, type DocumentJobsRepository as g3, type DocumentSlotsRepository as g4, type DocumentsRepository as g5, type DocumentTemplatesRepository as g6, type FilesRepository as g7, type ObjectRecordsRepository as g8, type ObjectsRepository as g9, type RelationOptionsResponse as gA, type GetRelationOptionsParams as gB, type RelationServiceOptions as gC, type ResolveIdsBatchRequest as gD, type ResolveIdsBatchResponse as gE, RelationService as gF, type MultiRelationValue as gG, type SingleRelationValue as gH, type HybridRelationValue as gI, RelationPropertiesService as gJ, RecordResolverService as gK, type ResolvedRelations as gL, type FormulaResolverServiceOptions as gM, FormulaResolverService as gN, type RollupResult as gO, type RollupServiceOptions as gP, RollupService as gQ, type RollupSchedulerOptions as gR, RollupScheduler as gS, applyDefaultValues as gT, checkPermission as gU, getPolicy as gV, buildPolicyContext as gW, checkRecordAccess as gX, checkRecordModifyOrThrow as gY, checkRecordDeleteOrThrow as gZ, checkSharedObjectWriteAccess as g_, 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 DirectTableTab as h, type CreateViewInput as h$, type LabelResolver as h0, enrichWithFormulas as h1, enrichRecordsWithFormulas as h2, createContextForCreate as h3, createContextForUpdate as h4, createContextForDelete as h5, createContextForRestore as h6, recalculateParentRollups as h7, type RollupCascadeContext as h8, type DocumentProcessingHookOptions as h9, type UserProfileServiceOptions as hA, UserProfileService as hB, AuditService as hC, buildAuditChanges as hD, DocumentGenerationTemplateNotFoundError as hE, DocumentGenerationNotConfiguredError as hF, DocumentGenerationService as hG, type DocumentProcessingConfig as hH, DocumentProcessingService as hI, type RenderDocumentInput as hJ, type DocumentRendererOptions as hK, type RenderDocumentResult as hL, DocumentRenderError as hM, StorageDownloadNotSupportedError as hN, DocumentRendererService as hO, DocumentTemplateService as hP, type RecordDocumentsResult as hQ, type CreateRecordDocumentInput as hR, type CreateRecordDocumentResult as hS, type DocumentServiceOptions as hT, DocumentService as hU, type FileServiceOptions as hV, FileService as hW, GeocodingService as hX, GlobalSearchService as hY, type PermissionServiceOptions as hZ, PermissionService as h_, 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 WorkflowConfig as i, type UpdateDBWorkflowAccessGrant as i$, type UpdateViewInput as i0, type GetViewsOptions as i1, type GetViewOptions as i2, ViewService as i3, type FileContent as i4, type StorageUploadInput as i5, type StorageUploadResult as i6, type SignedUrlOptions as i7, type StorageAdapter as i8, type UploadFileInput as i9, type UpsertDBAttribute as iA, type CreateObjectRecord as iB, type ListOptions as iC, type SearchOptions as iD, type GlobalSearchOptions as iE, type GlobalSearchGroupedOptions as iF, type GlobalSearchResultItem as iG, type GlobalSearchGroupedResult as iH, type FileListOptions as iI, type DBView as iJ, type CreateDBView as iK, type UpdateDBView as iL, type UpsertDBView as iM, type DBViewOverlay as iN, type CreateDBViewOverlay as iO, type UpdateDBViewOverlay as iP, type DBWorkflow as iQ, type CreateDBWorkflow as iR, type UpdateDBWorkflow as iS, type DBWorkflowInstance as iT, type CreateDBWorkflowInstance as iU, type UpdateDBWorkflowInstance as iV, type DBWorkflowInvitation as iW, type CreateDBWorkflowInvitation as iX, type UpdateDBWorkflowInvitation as iY, type DBWorkflowAccessGrant as iZ, type CreateDBWorkflowAccessGrant as i_, type SyncResult as ia, type SyncOptions as ib, syncNativeObjects as ic, verifyNativeObjectsSync as id, getSyncPreview as ie, type FullSyncResult as ig, type FullSyncOptions as ih, syncAll as ii, DEFAULT_LABEL_FALLBACK as ij, renderLabelExpression as ik, isLabelExpression as il, extractAttributeNames as im, 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 SlotMode as j, type OperationResult as j0, type ViewSyncResult as j1, type ViewSyncLogger as j2, type ViewSyncOptions as j3, seedRegistryViews as j4, syncNativeViews as j5, verifyRegistryViewsSeeded as j6, verifyNativeViewsSync as j7, getViewSeedPreview as j8, getViewSyncPreview as j9, type ConditionRule as k, type WorkflowNode as l, type WorkflowDefinition as m, type FlowRow as n, type ViewDefinition as o, type DocumentTemplate as p, type OcrAdapter as q, type OcrInput as r, type OcrOptions as s, type OcrResult as t, type OcrPage as u, type OcrTextBlock as v, type SignatureAdapter as w, type CreateSignatureInput as x, type SignerRequest as y, type SignaturePosition as z };
@@ -3854,17 +3854,22 @@ interface SearchOptions extends ListOptions {
3854
3854
  highlight?: boolean;
3855
3855
  }
3856
3856
  /**
3857
- * Global search options
3857
+ * Global search options (standalone, not extending ListOptions)
3858
3858
  */
3859
- interface GlobalSearchOptions extends ListOptions {
3859
+ interface GlobalSearchOptions {
3860
+ limit?: number;
3861
+ offset?: number;
3860
3862
  /**
3861
3863
  * Limit results to specific object names
3862
3864
  */
3863
3865
  objectNames?: string[];
3864
- /**
3865
- * Whether to include object metadata in results
3866
- */
3867
- includeObjectInfo?: boolean;
3866
+ }
3867
+ /**
3868
+ * Global search grouped options
3869
+ */
3870
+ interface GlobalSearchGroupedOptions {
3871
+ objectNames?: string[];
3872
+ limitPerGroup?: number;
3868
3873
  }
3869
3874
  /**
3870
3875
  * Global search result item
@@ -3876,11 +3881,22 @@ interface GlobalSearchResultItem {
3876
3881
  /** Computed label from labelExpression */
3877
3882
  label: string;
3878
3883
  recordId: string;
3879
- values: Record<string, unknown>;
3880
3884
  completionStatus: "draft" | "complete";
3881
3885
  createdAt: Date;
3882
3886
  updatedAt: Date;
3883
3887
  }
3888
+ /**
3889
+ * Global search grouped result
3890
+ */
3891
+ interface GlobalSearchGroupedResult {
3892
+ groups: Array<{
3893
+ objectName: string;
3894
+ objectLabel: string;
3895
+ results: GlobalSearchResultItem[];
3896
+ totalInGroup: number;
3897
+ }>;
3898
+ total: number;
3899
+ }
3884
3900
  /**
3885
3901
  * File-specific list options
3886
3902
  */
@@ -4809,8 +4825,8 @@ declare const cacheKeys: {
4809
4825
  readonly searchResults: (tenantId: string, objectId: string, hash: string) => string;
4810
4826
  /** All search results for an object (for invalidation) */
4811
4827
  readonly allSearchResults: (tenantId: string, objectId: string) => string;
4812
- /** Global search results */
4813
- readonly globalSearch: (tenantId: string, hash: string) => string;
4828
+ /** Global search results (3-param signature to match cachedList pattern) */
4829
+ readonly globalSearch: (tenantId: string, _id: string, hash: string) => string;
4814
4830
  /** All global search results for tenant (for invalidation) */
4815
4831
  readonly allGlobalSearch: (tenantId: string) => string;
4816
4832
  /** All schema cache for a tenant */
@@ -5232,6 +5248,12 @@ interface ObjectRecordsRepository {
5232
5248
  results: GlobalSearchResultItem[];
5233
5249
  total: number;
5234
5250
  }>;
5251
+ /**
5252
+ * Global search grouped by object type.
5253
+ * Returns results partitioned by object name with per-group counts.
5254
+ * Automatically filtered by current tenant context.
5255
+ */
5256
+ globalSearchGrouped(query: string, options?: GlobalSearchGroupedOptions): Promise<GlobalSearchGroupedResult>;
5235
5257
  /**
5236
5258
  * Count records that reference a given record ID in any relation attribute.
5237
5259
  * Used to implement the "Restrict" delete behavior.
@@ -12059,6 +12081,9 @@ declare class GeocodingService {
12059
12081
  * objectNames: ["products", "orders"],
12060
12082
  * limit: 20
12061
12083
  * });
12084
+ *
12085
+ * // Search grouped by object type
12086
+ * const { groups, total } = await service.searchGrouped("nike");
12062
12087
  * ```
12063
12088
  */
12064
12089
  declare class GlobalSearchService extends BaseService {
@@ -12069,50 +12094,20 @@ declare class GlobalSearchService extends BaseService {
12069
12094
  * @param query - Search query string
12070
12095
  * @param options - Search options (pagination, object filters)
12071
12096
  * @returns Matching records with object metadata and total count
12072
- *
12073
- * @example
12074
- * ```typescript
12075
- * // Basic search
12076
- * const { results, total } = await service.search("nike air");
12077
- *
12078
- * // With pagination
12079
- * const { results, total } = await service.search("nike", {
12080
- * limit: 10,
12081
- * offset: 20
12082
- * });
12083
- *
12084
- * // Filter by object types
12085
- * const { results, total } = await service.search("nike", {
12086
- * objectNames: ["products", "orders"]
12087
- * });
12088
- * ```
12089
12097
  */
12090
12098
  search(query: string, options?: GlobalSearchOptions): Promise<{
12091
12099
  results: GlobalSearchResultItem[];
12092
12100
  total: number;
12093
12101
  }>;
12094
12102
  /**
12095
- * Internal search execution (extracted for caching)
12096
- */
12097
- private executeSearch;
12098
- /**
12099
- * Search and group results by object type
12103
+ * Search and group results by object type.
12104
+ * Delegates grouping to the database for accurate per-group counts.
12100
12105
  *
12101
12106
  * @param query - Search query string
12102
- * @param options - Search options
12103
- * @returns Results grouped by object name
12107
+ * @param options - Search options (object filters, limit per group)
12108
+ * @returns Results grouped by object name with per-group totals
12104
12109
  */
12105
- searchGrouped(query: string, options?: Omit<GlobalSearchOptions, "limit" | "offset"> & {
12106
- limitPerGroup?: number;
12107
- }): Promise<{
12108
- groups: Array<{
12109
- objectName: string;
12110
- objectLabel: string;
12111
- results: GlobalSearchResultItem[];
12112
- count: number;
12113
- }>;
12114
- total: number;
12115
- }>;
12110
+ searchGrouped(query: string, options?: GlobalSearchGroupedOptions): Promise<GlobalSearchGroupedResult>;
12116
12111
  }
12117
12112
 
12118
12113
  /**
@@ -12580,4 +12575,4 @@ interface FullSyncOptions extends SyncOptions, ViewSyncOptions {
12580
12575
  */
12581
12576
  declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof registry, nativeViewRegistry: typeof viewRegistry, options?: FullSyncOptions): Promise<FullSyncResult>;
12582
12577
 
12583
- export { type TextPartData as $, type AttributeGroupField as A, type BoundingBox as B, type ConditionGroup as C, type DetailViewLayout as D, type SignatureRequestResult as E, type Field as F, type Group as G, type SignatureStatusResult as H, type InferAttributeValue as I, type SignerStatus as J, type SignatureStatus as K, type ListViewDefinition as L, type IdentityVerificationAdapter as M, type VerifyInput as N, type ObjectAction as O, type VerificationResult as P, type DocumentData as Q, type VerificationCheck as R, type SystemResource as S, type TableTab as T, type AIMessageRole as U, type ViewType as V, type WorkflowTheme as W, type AIThinkingLevel as X, type AIToolCallStatus as Y, type AIToolCall as Z, type AIChatMessagePartType as _, type SystemAction as a, type UpdateFile as a$, type ToolPartData as a0, type ThinkingPartData as a1, type ReasoningPartData as a2, type AIChatMessagePart as a3, type AIChatMessage as a4, type AIQuestionType as a5, type AIQuestionOption as a6, type AIQuestion as a7, type AIQuestionAnswer as a8, type AIBatchQuestionOption as a9, type UpdateDocumentGenerationTemplate as aA, type PendingDocumentRequest as aB, type DocumentSlotDefinition as aC, type DocumentAutoProcessing as aD, type ExtractionMapping as aE, type ExtractionField as aF, type Document as aG, type DocumentStatus as aH, type DocumentSlot as aI, type SlotStatus as aJ, type ProcessingJob as aK, type ProcessingJobType as aL, type ProcessingJobStatus as aM, type CreateDocument as aN, type UpdateDocument as aO, type CreateDocumentTemplate as aP, type UpdateDocumentTemplate as aQ, type CreateDocumentSlot as aR, type UpdateDocumentSlot as aS, type CreateProcessingJob as aT, type UpdateProcessingJob as aU, type DocumentListOptions as aV, type DocumentTemplateListOptions as aW, type StorageProvider as aX, type FileVisibility as aY, type File as aZ, type CreateFile as a_, type AIBatchQuestion as aa, type AIBatchQuestionAnswer as ab, type AITodoStatus as ac, type AITodoItem as ad, type AITodoList as ae, type AIMessageAttachment as af, type AIConversation as ag, type AIMessage as ah, type AIToolCallRecord as ai, type AIUserMemory as aj, type AIUsageMetrics as ak, type AIProviderMetrics as al, type CreateAIMessageInput as am, type AuditResourceType as an, type AuditAction as ao, type AuditActorType as ap, type AuditChange as aq, type AuditLogEntry as ar, type CreateAuditLogInput as as, type AuditListOptions as at, type AuditServiceOptions as au, type VariableMapping as av, type PdfTemplateField as aw, type TemplateSource as ax, type DocumentGenerationTemplate as ay, type CreateDocumentGenerationTemplate as az, type InverseTableTab as b, type Permission as b$, type TextFilterOperator as b0, type NumberFilterOperator as b1, type CheckboxFilterOperator as b2, type DateFilterOperator as b3, type SelectFilterOperator as b4, type MultiselectFilterOperator as b5, type RelationFilterOperator as b6, type FilterOperator as b7, type RelativeDateValue as b8, type CurrencyFilterValue as b9, type GeocodingAdapter as bA, NoopGeocodingAdapter as bB, type AttributeSchema as bC, type InferRecordFromSchema as bD, type InferRecordWithRequirements as bE, type TypedAttribute as bF, type AttributeMap as bG, type AddAttribute as bH, type InferRecord as bI, type InferRecordInput as bJ, type InferRecordUpdate as bK, type CustomAttributeValue as bL, type WithCustomAttributes as bM, type RecordMetadata as bN, type SystemFields as bO, type ExtractRecord as bP, type ExtractRecordStrict as bQ, type ExtractRecordInput as bR, type ExtractRecordInputStrict as bS, type ExtractRecordUpdate as bT, type ExtractRecordUpdateStrict as bU, type ExtractAttributes as bV, type TypedObjectRecord as bW, type ExtractObjectRecord as bX, type ExtractObjectRecordWithCustom as bY, type PermissionScope as bZ, type Role as b_, type PhoneFilterValue as ba, type FilterValue as bb, type FilterRule as bc, type ExtendedFilterRule as bd, type FilterCombinator as be, type FilterGroup as bf, type AdvancedFilterState as bg, type SortDirection as bh, type QueryState as bi, OPERATORS_BY_TYPE as bj, type NoValueOperator as bk, NO_VALUE_OPERATORS as bl, isNoValueOperator as bm, type FlowSlot as bn, type FlowRowField as bo, type FlowPage as bp, type FlowRelation as bq, type FlowStatus as br, type FlowDefinition as bs, isFlowDefinition as bt, isFlowPublished as bu, isSystemFlow as bv, type GeocodingSuggestion as bw, type GeocodingAutocompleteParams as bx, type ReverseGeocodingParams as by, type GeocodingParams as bz, type DetailViewDefinition as c, isEndNode as c$, type UserRoleAssignment as c0, type EffectivePermissions as c1, type ObjectPermissions as c2, type SystemPermissions as c3, type CreateRoleInput as c4, type UpdateRoleInput as c5, type CreatePermissionInput as c6, type AssignRoleInput as c7, type PolicyContext as c8, type RecordPolicy as c9, type ConfigOverrides as cA, type ViewOverlay as cB, isDetailView as cC, isListView as cD, isCalendarView as cE, isTimelineView as cF, isGalleryView as cG, isFormTab as cH, isTableTab as cI, isDirectTableTab as cJ, isInverseTableTab as cK, isCustomTab as cL, isActivityTab as cM, isNotesTab as cN, isFlowsTab as cO, isDocumentsTab as cP, type ConditionNode as cQ, type DocumentNode as cR, type EndNode as cS, type FormFieldRef as cT, type FormNode as cU, type StartNode as cV, type WorkflowNodeType as cW, getNodeOutputs as cX, isAdvancedFormNode as cY, isConditionNode as cZ, isDocumentNode as c_, PolicyViolationError as ca, type UserRole as cb, type UserStatus as cc, type UserProfile as cd, type CreateUserProfile as ce, type UpdateUserProfile as cf, type InviteUserInput as cg, type TabType as ch, type FormTab as ci, type CustomTab as cj, type ActivityTab as ck, type NotesTab as cl, type FlowsTab as cm, type DocumentsTab as cn, type ListViewLayout as co, type ViewLayout as cp, type ViewTab as cq, type DetailViewConfig as cr, type ListViewConfig as cs, type CalendarViewConfig as ct, type TimelineViewConfig as cu, type GalleryViewConfig as cv, type ViewConfig as cw, type CalendarViewDefinition as cx, type TimelineViewDefinition as cy, type GalleryViewDefinition as cz, type InstanceStatus as d, type RelationAttributeRow as d$, isFormNode as d0, isSimpleFormNode as d1, isStartNode as d2, type ConditionOperator as d3, and as d4, eq as d5, inValues as d6, isConditionGroup as d7, isConditionRule as d8, neq as d9, type WorkflowAccessGrant as dA, canAccessNode as dB, isGrantExpired as dC, isGrantRevoked as dD, isGrantValid as dE, isTokenRevoked as dF, type GeneratedDocument as dG, type WorkflowExecutionContext as dH, createEmptyContext as dI, getContextValue as dJ, setContextValue as dK, type FormContextResponse as dL, type FormFieldContext as dM, type FormFieldRow as dN, type FormNodeInfo as dO, type ReadOnlyReason as dP, type WorkflowAccessMode as dQ, type ThemeColors as dR, type ThemeLogo as dS, type ThemeTypography as dT, DEFAULT_THEME as dU, generateCssVariables as dV, mergeWithDefaults as dW, registry as dX, viewRegistry as dY, type ViewOverlaysRepository as dZ, type RelationAttributeInput as d_, or as da, type CanvasViewport as db, type NodePosition as dc, type WorkflowLayout as dd, type WorkflowSlot as de, type WorkflowStatus as df, isSystemWorkflow as dg, isWorkflowDefinition as dh, isWorkflowPublished as di, type PendingAction as dj, type WorkflowError as dk, type WorkflowInstance as dl, type WorkflowTransition as dm, canResumeInstance as dn, createStartTransition as dp, isInstanceTerminal as dq, isInstanceWaiting as dr, type CreateInvitationInput as ds, type CreateInvitationResult as dt, type InvitationStatus as du, type WorkflowInvitation as dv, isInvitationAccepted as dw, isInvitationExpired as dx, isInvitationValid as dy, type CreateGrantInput as dz, type Tab as e, createDefaultExecutorRegistry as e$, type RelationAttributesRepository as e0, type DatabaseAdapter as e1, WorkflowJwtService as e2, type JwtVerificationResult as e3, type MagicLinkPayload as e4, type WorkflowAccessPayload as e5, type WorkflowJwtConfig as e6, type WorkflowJwtPayload as e7, type CacheKeyType as e8, hashOptions as e9, evaluate as eA, evaluateWithTrace as eB, TenantContextError as eC, FeatureFlagsContextError as eD, getFeatureFlags as eE, getFeatureValue as eF, hasFeatureFlagsContext as eG, isFeatureEnabled as eH, runWithFeatureFlags as eI, tryGetFeatureValue as eJ, withFeatureFlags as eK, type FeatureFlagsContext as eL, addSchemaToContext as eM, getSchemaByNameFromContext as eN, getSchemaContext as eO, getSchemaFromContext as eP, hasSchemaContext as eQ, runWithMergedSchemaContext as eR, runWithSchemaContext as eS, type SchemaContext as eT, getContext as eU, getTenantId as eV, getUserId as eW, hasContext as eX, runWithContext as eY, withTenantContext as eZ, type TenantContext as e_, type CacheAdapter as ea, type CacheOptions as eb, cacheKeys as ec, cacheTtl as ed, defaultTtl as ee, NoopCacheAdapter as ef, type FetchResult as eg, type FormattedRecord as eh, type GroupedFetchResult as ei, type InsertOptions as ej, type QueryBuilderState as ek, type RegistryMap as el, type RegistryObjectNames as em, type ShortcutOperator as en, createDefaultState as eo, formatRecord as ep, formatRecords as eq, QueryMultipleResultsError as er, QueryNoResultError as es, SHORTCUT_TO_FILTER_OPERATOR as et, createQueryBuilder as eu, QueryBuilder as ev, type QueryBuilderOptions as ew, type EvaluationResult as ex, type EvaluationTrace as ey, evaluateCondition as ez, type FilterState as f, type AttributesRepository as f$, getDefaultExecutorRegistry as f0, type ExecutorCompleteResult as f1, type ExecutorContext as f2, type ExecutorErrorResult as f3, type ExecutorResult as f4, type ExecutorSuccessResult as f5, type ExecutorWaitResult as f6, type NodeExecutor as f7, complete as f8, error as f9, parsePath as fA, pathHasManyCardinality as fB, validatePath as fC, type PathCardinality as fD, type PathSegment as fE, type PathSegmentType as fF, type SchemaResolver as fG, resolveMultiplePaths as fH, resolveSingleValue as fI, traversePath as fJ, type TraversalOptions as fK, type TraversalResult as fL, type AttributeChange as fM, type HookContext as fN, type HookDefinition as fO, type HookHandler as fP, type HookType as fQ, NoopHookRegistry as fR, type HookRegistry as fS, createMockAdapter as fT, type MockStores as fU, defaultPolicyRegistry as fV, PolicyRegistry as fW, notesPolicy as fX, type AIConversationsRepository as fY, type AIUsageMetricsRepository as fZ, type AIUserMemoryRepository as f_, ExecutorRegistry as fa, success as fb, wait as fc, ConditionExecutor as fd, DocumentExecutor as fe, EndExecutor as ff, FormExecutor as fg, StartExecutor as fh, evaluateFormula as fi, evaluateFormulaAttribute as fj, evaluateFormulaAttributeWithRelations as fk, evaluateFormulaWithRelations as fl, evaluateFormulaWithResult as fm, extractFormulaVariables as fn, extractRelationNames as fo, extractRelationReferences as fp, flattenRelationsForEval as fq, formatFormulaResult as fr, hasRelationReferences as fs, validateFormulaExpression as ft, type FormulaResult as fu, getPathDepth as fv, getRelationPath as fw, getTargetAttributeName as fx, InvalidPathError as fy, MaxDepthExceededError as fz, type SortRule as g, computeLabel as g$, type AuditRepository as g0, type DocumentGenerationTemplateListOptions as g1, type DocumentGenerationTemplatesRepository as g2, type DocumentJobsRepository as g3, type DocumentSlotsRepository as g4, type DocumentsRepository as g5, type DocumentTemplatesRepository as g6, type FilesRepository as g7, type ObjectRecordsRepository as g8, type ObjectsRepository as g9, type RelationOptionsResponse as gA, type GetRelationOptionsParams as gB, type RelationServiceOptions as gC, type ResolveIdsBatchRequest as gD, type ResolveIdsBatchResponse as gE, RelationService as gF, type MultiRelationValue as gG, type SingleRelationValue as gH, type HybridRelationValue as gI, RelationPropertiesService as gJ, RecordResolverService as gK, type ResolvedRelations as gL, type FormulaResolverServiceOptions as gM, FormulaResolverService as gN, type RollupResult as gO, type RollupServiceOptions as gP, RollupService as gQ, type RollupSchedulerOptions as gR, RollupScheduler as gS, applyDefaultValues as gT, checkPermission as gU, getPolicy as gV, buildPolicyContext as gW, checkRecordAccess as gX, checkRecordModifyOrThrow as gY, checkRecordDeleteOrThrow as gZ, checkSharedObjectWriteAccess as g_, 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 DirectTableTab as h, type CreateViewInput as h$, type LabelResolver as h0, enrichWithFormulas as h1, enrichRecordsWithFormulas as h2, createContextForCreate as h3, createContextForUpdate as h4, createContextForDelete as h5, createContextForRestore as h6, recalculateParentRollups as h7, type RollupCascadeContext as h8, type DocumentProcessingHookOptions as h9, type UserProfileServiceOptions as hA, UserProfileService as hB, AuditService as hC, buildAuditChanges as hD, DocumentGenerationTemplateNotFoundError as hE, DocumentGenerationNotConfiguredError as hF, DocumentGenerationService as hG, type DocumentProcessingConfig as hH, DocumentProcessingService as hI, type RenderDocumentInput as hJ, type DocumentRendererOptions as hK, type RenderDocumentResult as hL, DocumentRenderError as hM, StorageDownloadNotSupportedError as hN, DocumentRendererService as hO, DocumentTemplateService as hP, type RecordDocumentsResult as hQ, type CreateRecordDocumentInput as hR, type CreateRecordDocumentResult as hS, type DocumentServiceOptions as hT, DocumentService as hU, type FileServiceOptions as hV, FileService as hW, GeocodingService as hX, GlobalSearchService as hY, type PermissionServiceOptions as hZ, PermissionService as h_, 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 WorkflowConfig as i, type ViewSyncResult as i$, type UpdateViewInput as i0, type GetViewsOptions as i1, type GetViewOptions as i2, ViewService as i3, type FileContent as i4, type StorageUploadInput as i5, type StorageUploadResult as i6, type SignedUrlOptions as i7, type StorageAdapter as i8, type UploadFileInput as i9, type UpsertDBAttribute as iA, type CreateObjectRecord as iB, type ListOptions as iC, type SearchOptions as iD, type GlobalSearchOptions as iE, type GlobalSearchResultItem as iF, type FileListOptions as iG, type DBView as iH, type CreateDBView as iI, type UpdateDBView as iJ, type UpsertDBView as iK, type DBViewOverlay as iL, type CreateDBViewOverlay as iM, type UpdateDBViewOverlay as iN, type DBWorkflow as iO, type CreateDBWorkflow as iP, type UpdateDBWorkflow as iQ, type DBWorkflowInstance as iR, type CreateDBWorkflowInstance as iS, type UpdateDBWorkflowInstance as iT, type DBWorkflowInvitation as iU, type CreateDBWorkflowInvitation as iV, type UpdateDBWorkflowInvitation as iW, type DBWorkflowAccessGrant as iX, type CreateDBWorkflowAccessGrant as iY, type UpdateDBWorkflowAccessGrant as iZ, type OperationResult as i_, type SyncResult as ia, type SyncOptions as ib, syncNativeObjects as ic, verifyNativeObjectsSync as id, getSyncPreview as ie, type FullSyncResult as ig, type FullSyncOptions as ih, syncAll as ii, DEFAULT_LABEL_FALLBACK as ij, renderLabelExpression as ik, isLabelExpression as il, extractAttributeNames as im, 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 SlotMode as j, type ViewSyncLogger as j0, type ViewSyncOptions as j1, seedRegistryViews as j2, syncNativeViews as j3, verifyRegistryViewsSeeded as j4, verifyNativeViewsSync as j5, getViewSeedPreview as j6, getViewSyncPreview as j7, type ConditionRule as k, type WorkflowNode as l, type WorkflowDefinition as m, type FlowRow as n, type ViewDefinition as o, type DocumentTemplate as p, type OcrAdapter as q, type OcrInput as r, type OcrOptions as s, type OcrResult as t, type OcrPage as u, type OcrTextBlock as v, type SignatureAdapter as w, type CreateSignatureInput as x, type SignerRequest as y, type SignaturePosition as z };
12578
+ export { type TextPartData as $, type AttributeGroupField as A, type BoundingBox as B, type ConditionGroup as C, type DetailViewLayout as D, type SignatureRequestResult as E, type Field as F, type Group as G, type SignatureStatusResult as H, type InferAttributeValue as I, type SignerStatus as J, type SignatureStatus as K, type ListViewDefinition as L, type IdentityVerificationAdapter as M, type VerifyInput as N, type ObjectAction as O, type VerificationResult as P, type DocumentData as Q, type VerificationCheck as R, type SystemResource as S, type TableTab as T, type AIMessageRole as U, type ViewType as V, type WorkflowTheme as W, type AIThinkingLevel as X, type AIToolCallStatus as Y, type AIToolCall as Z, type AIChatMessagePartType as _, type SystemAction as a, type UpdateFile as a$, type ToolPartData as a0, type ThinkingPartData as a1, type ReasoningPartData as a2, type AIChatMessagePart as a3, type AIChatMessage as a4, type AIQuestionType as a5, type AIQuestionOption as a6, type AIQuestion as a7, type AIQuestionAnswer as a8, type AIBatchQuestionOption as a9, type UpdateDocumentGenerationTemplate as aA, type PendingDocumentRequest as aB, type DocumentSlotDefinition as aC, type DocumentAutoProcessing as aD, type ExtractionMapping as aE, type ExtractionField as aF, type Document as aG, type DocumentStatus as aH, type DocumentSlot as aI, type SlotStatus as aJ, type ProcessingJob as aK, type ProcessingJobType as aL, type ProcessingJobStatus as aM, type CreateDocument as aN, type UpdateDocument as aO, type CreateDocumentTemplate as aP, type UpdateDocumentTemplate as aQ, type CreateDocumentSlot as aR, type UpdateDocumentSlot as aS, type CreateProcessingJob as aT, type UpdateProcessingJob as aU, type DocumentListOptions as aV, type DocumentTemplateListOptions as aW, type StorageProvider as aX, type FileVisibility as aY, type File as aZ, type CreateFile as a_, type AIBatchQuestion as aa, type AIBatchQuestionAnswer as ab, type AITodoStatus as ac, type AITodoItem as ad, type AITodoList as ae, type AIMessageAttachment as af, type AIConversation as ag, type AIMessage as ah, type AIToolCallRecord as ai, type AIUserMemory as aj, type AIUsageMetrics as ak, type AIProviderMetrics as al, type CreateAIMessageInput as am, type AuditResourceType as an, type AuditAction as ao, type AuditActorType as ap, type AuditChange as aq, type AuditLogEntry as ar, type CreateAuditLogInput as as, type AuditListOptions as at, type AuditServiceOptions as au, type VariableMapping as av, type PdfTemplateField as aw, type TemplateSource as ax, type DocumentGenerationTemplate as ay, type CreateDocumentGenerationTemplate as az, type InverseTableTab as b, type Permission as b$, type TextFilterOperator as b0, type NumberFilterOperator as b1, type CheckboxFilterOperator as b2, type DateFilterOperator as b3, type SelectFilterOperator as b4, type MultiselectFilterOperator as b5, type RelationFilterOperator as b6, type FilterOperator as b7, type RelativeDateValue as b8, type CurrencyFilterValue as b9, type GeocodingAdapter as bA, NoopGeocodingAdapter as bB, type AttributeSchema as bC, type InferRecordFromSchema as bD, type InferRecordWithRequirements as bE, type TypedAttribute as bF, type AttributeMap as bG, type AddAttribute as bH, type InferRecord as bI, type InferRecordInput as bJ, type InferRecordUpdate as bK, type CustomAttributeValue as bL, type WithCustomAttributes as bM, type RecordMetadata as bN, type SystemFields as bO, type ExtractRecord as bP, type ExtractRecordStrict as bQ, type ExtractRecordInput as bR, type ExtractRecordInputStrict as bS, type ExtractRecordUpdate as bT, type ExtractRecordUpdateStrict as bU, type ExtractAttributes as bV, type TypedObjectRecord as bW, type ExtractObjectRecord as bX, type ExtractObjectRecordWithCustom as bY, type PermissionScope as bZ, type Role as b_, type PhoneFilterValue as ba, type FilterValue as bb, type FilterRule as bc, type ExtendedFilterRule as bd, type FilterCombinator as be, type FilterGroup as bf, type AdvancedFilterState as bg, type SortDirection as bh, type QueryState as bi, OPERATORS_BY_TYPE as bj, type NoValueOperator as bk, NO_VALUE_OPERATORS as bl, isNoValueOperator as bm, type FlowSlot as bn, type FlowRowField as bo, type FlowPage as bp, type FlowRelation as bq, type FlowStatus as br, type FlowDefinition as bs, isFlowDefinition as bt, isFlowPublished as bu, isSystemFlow as bv, type GeocodingSuggestion as bw, type GeocodingAutocompleteParams as bx, type ReverseGeocodingParams as by, type GeocodingParams as bz, type DetailViewDefinition as c, isEndNode as c$, type UserRoleAssignment as c0, type EffectivePermissions as c1, type ObjectPermissions as c2, type SystemPermissions as c3, type CreateRoleInput as c4, type UpdateRoleInput as c5, type CreatePermissionInput as c6, type AssignRoleInput as c7, type PolicyContext as c8, type RecordPolicy as c9, type ConfigOverrides as cA, type ViewOverlay as cB, isDetailView as cC, isListView as cD, isCalendarView as cE, isTimelineView as cF, isGalleryView as cG, isFormTab as cH, isTableTab as cI, isDirectTableTab as cJ, isInverseTableTab as cK, isCustomTab as cL, isActivityTab as cM, isNotesTab as cN, isFlowsTab as cO, isDocumentsTab as cP, type ConditionNode as cQ, type DocumentNode as cR, type EndNode as cS, type FormFieldRef as cT, type FormNode as cU, type StartNode as cV, type WorkflowNodeType as cW, getNodeOutputs as cX, isAdvancedFormNode as cY, isConditionNode as cZ, isDocumentNode as c_, PolicyViolationError as ca, type UserRole as cb, type UserStatus as cc, type UserProfile as cd, type CreateUserProfile as ce, type UpdateUserProfile as cf, type InviteUserInput as cg, type TabType as ch, type FormTab as ci, type CustomTab as cj, type ActivityTab as ck, type NotesTab as cl, type FlowsTab as cm, type DocumentsTab as cn, type ListViewLayout as co, type ViewLayout as cp, type ViewTab as cq, type DetailViewConfig as cr, type ListViewConfig as cs, type CalendarViewConfig as ct, type TimelineViewConfig as cu, type GalleryViewConfig as cv, type ViewConfig as cw, type CalendarViewDefinition as cx, type TimelineViewDefinition as cy, type GalleryViewDefinition as cz, type InstanceStatus as d, type RelationAttributeRow as d$, isFormNode as d0, isSimpleFormNode as d1, isStartNode as d2, type ConditionOperator as d3, and as d4, eq as d5, inValues as d6, isConditionGroup as d7, isConditionRule as d8, neq as d9, type WorkflowAccessGrant as dA, canAccessNode as dB, isGrantExpired as dC, isGrantRevoked as dD, isGrantValid as dE, isTokenRevoked as dF, type GeneratedDocument as dG, type WorkflowExecutionContext as dH, createEmptyContext as dI, getContextValue as dJ, setContextValue as dK, type FormContextResponse as dL, type FormFieldContext as dM, type FormFieldRow as dN, type FormNodeInfo as dO, type ReadOnlyReason as dP, type WorkflowAccessMode as dQ, type ThemeColors as dR, type ThemeLogo as dS, type ThemeTypography as dT, DEFAULT_THEME as dU, generateCssVariables as dV, mergeWithDefaults as dW, registry as dX, viewRegistry as dY, type ViewOverlaysRepository as dZ, type RelationAttributeInput as d_, or as da, type CanvasViewport as db, type NodePosition as dc, type WorkflowLayout as dd, type WorkflowSlot as de, type WorkflowStatus as df, isSystemWorkflow as dg, isWorkflowDefinition as dh, isWorkflowPublished as di, type PendingAction as dj, type WorkflowError as dk, type WorkflowInstance as dl, type WorkflowTransition as dm, canResumeInstance as dn, createStartTransition as dp, isInstanceTerminal as dq, isInstanceWaiting as dr, type CreateInvitationInput as ds, type CreateInvitationResult as dt, type InvitationStatus as du, type WorkflowInvitation as dv, isInvitationAccepted as dw, isInvitationExpired as dx, isInvitationValid as dy, type CreateGrantInput as dz, type Tab as e, createDefaultExecutorRegistry as e$, type RelationAttributesRepository as e0, type DatabaseAdapter as e1, WorkflowJwtService as e2, type JwtVerificationResult as e3, type MagicLinkPayload as e4, type WorkflowAccessPayload as e5, type WorkflowJwtConfig as e6, type WorkflowJwtPayload as e7, type CacheKeyType as e8, hashOptions as e9, evaluate as eA, evaluateWithTrace as eB, TenantContextError as eC, FeatureFlagsContextError as eD, getFeatureFlags as eE, getFeatureValue as eF, hasFeatureFlagsContext as eG, isFeatureEnabled as eH, runWithFeatureFlags as eI, tryGetFeatureValue as eJ, withFeatureFlags as eK, type FeatureFlagsContext as eL, addSchemaToContext as eM, getSchemaByNameFromContext as eN, getSchemaContext as eO, getSchemaFromContext as eP, hasSchemaContext as eQ, runWithMergedSchemaContext as eR, runWithSchemaContext as eS, type SchemaContext as eT, getContext as eU, getTenantId as eV, getUserId as eW, hasContext as eX, runWithContext as eY, withTenantContext as eZ, type TenantContext as e_, type CacheAdapter as ea, type CacheOptions as eb, cacheKeys as ec, cacheTtl as ed, defaultTtl as ee, NoopCacheAdapter as ef, type FetchResult as eg, type FormattedRecord as eh, type GroupedFetchResult as ei, type InsertOptions as ej, type QueryBuilderState as ek, type RegistryMap as el, type RegistryObjectNames as em, type ShortcutOperator as en, createDefaultState as eo, formatRecord as ep, formatRecords as eq, QueryMultipleResultsError as er, QueryNoResultError as es, SHORTCUT_TO_FILTER_OPERATOR as et, createQueryBuilder as eu, QueryBuilder as ev, type QueryBuilderOptions as ew, type EvaluationResult as ex, type EvaluationTrace as ey, evaluateCondition as ez, type FilterState as f, type AttributesRepository as f$, getDefaultExecutorRegistry as f0, type ExecutorCompleteResult as f1, type ExecutorContext as f2, type ExecutorErrorResult as f3, type ExecutorResult as f4, type ExecutorSuccessResult as f5, type ExecutorWaitResult as f6, type NodeExecutor as f7, complete as f8, error as f9, parsePath as fA, pathHasManyCardinality as fB, validatePath as fC, type PathCardinality as fD, type PathSegment as fE, type PathSegmentType as fF, type SchemaResolver as fG, resolveMultiplePaths as fH, resolveSingleValue as fI, traversePath as fJ, type TraversalOptions as fK, type TraversalResult as fL, type AttributeChange as fM, type HookContext as fN, type HookDefinition as fO, type HookHandler as fP, type HookType as fQ, NoopHookRegistry as fR, type HookRegistry as fS, createMockAdapter as fT, type MockStores as fU, defaultPolicyRegistry as fV, PolicyRegistry as fW, notesPolicy as fX, type AIConversationsRepository as fY, type AIUsageMetricsRepository as fZ, type AIUserMemoryRepository as f_, ExecutorRegistry as fa, success as fb, wait as fc, ConditionExecutor as fd, DocumentExecutor as fe, EndExecutor as ff, FormExecutor as fg, StartExecutor as fh, evaluateFormula as fi, evaluateFormulaAttribute as fj, evaluateFormulaAttributeWithRelations as fk, evaluateFormulaWithRelations as fl, evaluateFormulaWithResult as fm, extractFormulaVariables as fn, extractRelationNames as fo, extractRelationReferences as fp, flattenRelationsForEval as fq, formatFormulaResult as fr, hasRelationReferences as fs, validateFormulaExpression as ft, type FormulaResult as fu, getPathDepth as fv, getRelationPath as fw, getTargetAttributeName as fx, InvalidPathError as fy, MaxDepthExceededError as fz, type SortRule as g, computeLabel as g$, type AuditRepository as g0, type DocumentGenerationTemplateListOptions as g1, type DocumentGenerationTemplatesRepository as g2, type DocumentJobsRepository as g3, type DocumentSlotsRepository as g4, type DocumentsRepository as g5, type DocumentTemplatesRepository as g6, type FilesRepository as g7, type ObjectRecordsRepository as g8, type ObjectsRepository as g9, type RelationOptionsResponse as gA, type GetRelationOptionsParams as gB, type RelationServiceOptions as gC, type ResolveIdsBatchRequest as gD, type ResolveIdsBatchResponse as gE, RelationService as gF, type MultiRelationValue as gG, type SingleRelationValue as gH, type HybridRelationValue as gI, RelationPropertiesService as gJ, RecordResolverService as gK, type ResolvedRelations as gL, type FormulaResolverServiceOptions as gM, FormulaResolverService as gN, type RollupResult as gO, type RollupServiceOptions as gP, RollupService as gQ, type RollupSchedulerOptions as gR, RollupScheduler as gS, applyDefaultValues as gT, checkPermission as gU, getPolicy as gV, buildPolicyContext as gW, checkRecordAccess as gX, checkRecordModifyOrThrow as gY, checkRecordDeleteOrThrow as gZ, checkSharedObjectWriteAccess as g_, 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 DirectTableTab as h, type CreateViewInput as h$, type LabelResolver as h0, enrichWithFormulas as h1, enrichRecordsWithFormulas as h2, createContextForCreate as h3, createContextForUpdate as h4, createContextForDelete as h5, createContextForRestore as h6, recalculateParentRollups as h7, type RollupCascadeContext as h8, type DocumentProcessingHookOptions as h9, type UserProfileServiceOptions as hA, UserProfileService as hB, AuditService as hC, buildAuditChanges as hD, DocumentGenerationTemplateNotFoundError as hE, DocumentGenerationNotConfiguredError as hF, DocumentGenerationService as hG, type DocumentProcessingConfig as hH, DocumentProcessingService as hI, type RenderDocumentInput as hJ, type DocumentRendererOptions as hK, type RenderDocumentResult as hL, DocumentRenderError as hM, StorageDownloadNotSupportedError as hN, DocumentRendererService as hO, DocumentTemplateService as hP, type RecordDocumentsResult as hQ, type CreateRecordDocumentInput as hR, type CreateRecordDocumentResult as hS, type DocumentServiceOptions as hT, DocumentService as hU, type FileServiceOptions as hV, FileService as hW, GeocodingService as hX, GlobalSearchService as hY, type PermissionServiceOptions as hZ, PermissionService as h_, 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 WorkflowConfig as i, type UpdateDBWorkflowAccessGrant as i$, type UpdateViewInput as i0, type GetViewsOptions as i1, type GetViewOptions as i2, ViewService as i3, type FileContent as i4, type StorageUploadInput as i5, type StorageUploadResult as i6, type SignedUrlOptions as i7, type StorageAdapter as i8, type UploadFileInput as i9, type UpsertDBAttribute as iA, type CreateObjectRecord as iB, type ListOptions as iC, type SearchOptions as iD, type GlobalSearchOptions as iE, type GlobalSearchGroupedOptions as iF, type GlobalSearchResultItem as iG, type GlobalSearchGroupedResult as iH, type FileListOptions as iI, type DBView as iJ, type CreateDBView as iK, type UpdateDBView as iL, type UpsertDBView as iM, type DBViewOverlay as iN, type CreateDBViewOverlay as iO, type UpdateDBViewOverlay as iP, type DBWorkflow as iQ, type CreateDBWorkflow as iR, type UpdateDBWorkflow as iS, type DBWorkflowInstance as iT, type CreateDBWorkflowInstance as iU, type UpdateDBWorkflowInstance as iV, type DBWorkflowInvitation as iW, type CreateDBWorkflowInvitation as iX, type UpdateDBWorkflowInvitation as iY, type DBWorkflowAccessGrant as iZ, type CreateDBWorkflowAccessGrant as i_, type SyncResult as ia, type SyncOptions as ib, syncNativeObjects as ic, verifyNativeObjectsSync as id, getSyncPreview as ie, type FullSyncResult as ig, type FullSyncOptions as ih, syncAll as ii, DEFAULT_LABEL_FALLBACK as ij, renderLabelExpression as ik, isLabelExpression as il, extractAttributeNames as im, 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 SlotMode as j, type OperationResult as j0, type ViewSyncResult as j1, type ViewSyncLogger as j2, type ViewSyncOptions as j3, seedRegistryViews as j4, syncNativeViews as j5, verifyRegistryViewsSeeded as j6, verifyNativeViewsSync as j7, getViewSeedPreview as j8, getViewSyncPreview as j9, type ConditionRule as k, type WorkflowNode as l, type WorkflowDefinition as m, type FlowRow as n, type ViewDefinition as o, type DocumentTemplate as p, type OcrAdapter as q, type OcrInput as r, type OcrOptions as s, type OcrResult as t, type OcrPage as u, type OcrTextBlock as v, type SignatureAdapter as w, type CreateSignatureInput as x, type SignerRequest as y, type SignaturePosition as z };
@@ -1,4 +1,4 @@
1
- export { fY as AIConversationsRepository, fZ as AIUsageMetricsRepository, f_ as AIUserMemoryRepository, gm as AddAttributeInput, fM as AttributeChange, f$ as AttributesRepository, g0 as AuditRepository, hC as AuditService, gi as BaseRepository, gh as BaseService, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, fd as ConditionExecutor, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iI as CreateDBView, iM as CreateDBViewOverlay, iP as CreateDBWorkflow, iY as CreateDBWorkflowAccessGrant, iS as CreateDBWorkflowInstance, iV as CreateDBWorkflowInvitation, hg as CreateGrantResult, iB as CreateObjectRecord, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, h$ as CreateViewInput, ht as CreateWorkflowInput, ix as DBAttribute, it as DBObject, iH as DBView, iL as DBViewOverlay, iO as DBWorkflow, iX as DBWorkflowAccessGrant, iR as DBWorkflowInstance, iU as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, e1 as DatabaseAdapter, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, g4 as DocumentSlotsRepository, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, ff as EndExecutor, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, i4 as FileContent, iG as FileListOptions, hW as FileService, hV as FileServiceOptions, g7 as FilesRepository, fg as FormExecutor, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iE as GlobalSearchOptions, iF as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, f7 as NodeExecutor, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, i_ as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, hQ as RecordDocumentsResult, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, en as ShortcutOperator, i7 as SignedUrlOptions, gH as SingleRelationValue, fh as StartExecutor, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, e_ as TenantContext, eC as TenantContextError, he as TokenRevokedError, fK as TraversalOptions, fL as TraversalResult, iz as UpdateDBAttribute, iv as UpdateDBObject, iJ as UpdateDBView, iN as UpdateDBViewOverlay, iQ as UpdateDBWorkflow, iZ as UpdateDBWorkflowAccessGrant, iT as UpdateDBWorkflowInstance, iW as UpdateDBWorkflowInvitation, gn as UpdateObjectInput, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iK as UpsertDBView, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, hz as UserService, hy as UserValidationError, hx as UserValidationResult, dZ as ViewOverlaysRepository, i3 as ViewService, j0 as ViewSyncLogger, j1 as ViewSyncOptions, i$ as ViewSyncResult, gc as ViewsRepository, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, e5 as WorkflowAccessPayload, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, gg as WorkflowsRepository, eM as addSchemaToContext, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, fT as createMockAdapter, eu as createQueryBuilder, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, eU as getContext, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j6 as getViewSeedPreview, j7 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, eH as isFeatureEnabled, il as isLabelExpression, fX as notesPolicy, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j2 as seedRegistryViews, fb as success, ii as syncAll, ic as syncNativeObjects, j3 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j5 as verifyNativeViewsSync, j4 as verifyRegistryViewsSeeded, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-Chz-bTNq.mjs';
1
+ export { fY as AIConversationsRepository, fZ as AIUsageMetricsRepository, f_ as AIUserMemoryRepository, gm as AddAttributeInput, fM as AttributeChange, f$ as AttributesRepository, g0 as AuditRepository, hC as AuditService, gi as BaseRepository, gh as BaseService, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, fd as ConditionExecutor, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iK as CreateDBView, iO as CreateDBViewOverlay, iR as CreateDBWorkflow, i_ as CreateDBWorkflowAccessGrant, iU as CreateDBWorkflowInstance, iX as CreateDBWorkflowInvitation, hg as CreateGrantResult, iB as CreateObjectRecord, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, h$ as CreateViewInput, ht as CreateWorkflowInput, ix as DBAttribute, it as DBObject, iJ as DBView, iN as DBViewOverlay, iQ as DBWorkflow, iZ as DBWorkflowAccessGrant, iT as DBWorkflowInstance, iW as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, e1 as DatabaseAdapter, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, g4 as DocumentSlotsRepository, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, ff as EndExecutor, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, i4 as FileContent, iI as FileListOptions, hW as FileService, hV as FileServiceOptions, g7 as FilesRepository, fg as FormExecutor, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iF as GlobalSearchGroupedOptions, iH as GlobalSearchGroupedResult, iE as GlobalSearchOptions, iG as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, f7 as NodeExecutor, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, j0 as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, hQ as RecordDocumentsResult, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, en as ShortcutOperator, i7 as SignedUrlOptions, gH as SingleRelationValue, fh as StartExecutor, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, e_ as TenantContext, eC as TenantContextError, he as TokenRevokedError, fK as TraversalOptions, fL as TraversalResult, iz as UpdateDBAttribute, iv as UpdateDBObject, iL as UpdateDBView, iP as UpdateDBViewOverlay, iS as UpdateDBWorkflow, i$ as UpdateDBWorkflowAccessGrant, iV as UpdateDBWorkflowInstance, iY as UpdateDBWorkflowInvitation, gn as UpdateObjectInput, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iM as UpsertDBView, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, hz as UserService, hy as UserValidationError, hx as UserValidationResult, dZ as ViewOverlaysRepository, i3 as ViewService, j2 as ViewSyncLogger, j3 as ViewSyncOptions, j1 as ViewSyncResult, gc as ViewsRepository, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, e5 as WorkflowAccessPayload, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, gg as WorkflowsRepository, eM as addSchemaToContext, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, fT as createMockAdapter, eu as createQueryBuilder, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, eU as getContext, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j8 as getViewSeedPreview, j9 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, eH as isFeatureEnabled, il as isLabelExpression, fX as notesPolicy, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j4 as seedRegistryViews, fb as success, ii as syncAll, ic as syncNativeObjects, j5 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j7 as verifyNativeViewsSync, j6 as verifyRegistryViewsSeeded, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-D0XMDY1D.mjs';
2
2
  export { ah as CompletionStatus } from './validators-BIAmz0CD.mjs';
3
3
  import '@stndrds/constants';
4
4
  import './utils.mjs';
package/dist/runtime.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { fY as AIConversationsRepository, fZ as AIUsageMetricsRepository, f_ as AIUserMemoryRepository, gm as AddAttributeInput, fM as AttributeChange, f$ as AttributesRepository, g0 as AuditRepository, hC as AuditService, gi as BaseRepository, gh as BaseService, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, fd as ConditionExecutor, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iI as CreateDBView, iM as CreateDBViewOverlay, iP as CreateDBWorkflow, iY as CreateDBWorkflowAccessGrant, iS as CreateDBWorkflowInstance, iV as CreateDBWorkflowInvitation, hg as CreateGrantResult, iB as CreateObjectRecord, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, h$ as CreateViewInput, ht as CreateWorkflowInput, ix as DBAttribute, it as DBObject, iH as DBView, iL as DBViewOverlay, iO as DBWorkflow, iX as DBWorkflowAccessGrant, iR as DBWorkflowInstance, iU as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, e1 as DatabaseAdapter, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, g4 as DocumentSlotsRepository, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, ff as EndExecutor, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, i4 as FileContent, iG as FileListOptions, hW as FileService, hV as FileServiceOptions, g7 as FilesRepository, fg as FormExecutor, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iE as GlobalSearchOptions, iF as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, f7 as NodeExecutor, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, i_ as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, hQ as RecordDocumentsResult, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, en as ShortcutOperator, i7 as SignedUrlOptions, gH as SingleRelationValue, fh as StartExecutor, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, e_ as TenantContext, eC as TenantContextError, he as TokenRevokedError, fK as TraversalOptions, fL as TraversalResult, iz as UpdateDBAttribute, iv as UpdateDBObject, iJ as UpdateDBView, iN as UpdateDBViewOverlay, iQ as UpdateDBWorkflow, iZ as UpdateDBWorkflowAccessGrant, iT as UpdateDBWorkflowInstance, iW as UpdateDBWorkflowInvitation, gn as UpdateObjectInput, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iK as UpsertDBView, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, hz as UserService, hy as UserValidationError, hx as UserValidationResult, dZ as ViewOverlaysRepository, i3 as ViewService, j0 as ViewSyncLogger, j1 as ViewSyncOptions, i$ as ViewSyncResult, gc as ViewsRepository, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, e5 as WorkflowAccessPayload, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, gg as WorkflowsRepository, eM as addSchemaToContext, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, fT as createMockAdapter, eu as createQueryBuilder, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, eU as getContext, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j6 as getViewSeedPreview, j7 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, eH as isFeatureEnabled, il as isLabelExpression, fX as notesPolicy, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j2 as seedRegistryViews, fb as success, ii as syncAll, ic as syncNativeObjects, j3 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j5 as verifyNativeViewsSync, j4 as verifyRegistryViewsSeeded, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-BRkoIwsC.js';
1
+ export { fY as AIConversationsRepository, fZ as AIUsageMetricsRepository, f_ as AIUserMemoryRepository, gm as AddAttributeInput, fM as AttributeChange, f$ as AttributesRepository, g0 as AuditRepository, hC as AuditService, gi as BaseRepository, gh as BaseService, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, fd as ConditionExecutor, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iK as CreateDBView, iO as CreateDBViewOverlay, iR as CreateDBWorkflow, i_ as CreateDBWorkflowAccessGrant, iU as CreateDBWorkflowInstance, iX as CreateDBWorkflowInvitation, hg as CreateGrantResult, iB as CreateObjectRecord, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, h$ as CreateViewInput, ht as CreateWorkflowInput, ix as DBAttribute, it as DBObject, iJ as DBView, iN as DBViewOverlay, iQ as DBWorkflow, iZ as DBWorkflowAccessGrant, iT as DBWorkflowInstance, iW as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, e1 as DatabaseAdapter, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, g4 as DocumentSlotsRepository, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, ff as EndExecutor, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, i4 as FileContent, iI as FileListOptions, hW as FileService, hV as FileServiceOptions, g7 as FilesRepository, fg as FormExecutor, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iF as GlobalSearchGroupedOptions, iH as GlobalSearchGroupedResult, iE as GlobalSearchOptions, iG as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, f7 as NodeExecutor, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, j0 as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, hQ as RecordDocumentsResult, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, en as ShortcutOperator, i7 as SignedUrlOptions, gH as SingleRelationValue, fh as StartExecutor, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, e_ as TenantContext, eC as TenantContextError, he as TokenRevokedError, fK as TraversalOptions, fL as TraversalResult, iz as UpdateDBAttribute, iv as UpdateDBObject, iL as UpdateDBView, iP as UpdateDBViewOverlay, iS as UpdateDBWorkflow, i$ as UpdateDBWorkflowAccessGrant, iV as UpdateDBWorkflowInstance, iY as UpdateDBWorkflowInvitation, gn as UpdateObjectInput, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iM as UpsertDBView, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, hz as UserService, hy as UserValidationError, hx as UserValidationResult, dZ as ViewOverlaysRepository, i3 as ViewService, j2 as ViewSyncLogger, j3 as ViewSyncOptions, j1 as ViewSyncResult, gc as ViewsRepository, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, e5 as WorkflowAccessPayload, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, gg as WorkflowsRepository, eM as addSchemaToContext, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, fT as createMockAdapter, eu as createQueryBuilder, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, eU as getContext, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j8 as getViewSeedPreview, j9 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, eH as isFeatureEnabled, il as isLabelExpression, fX as notesPolicy, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j4 as seedRegistryViews, fb as success, ii as syncAll, ic as syncNativeObjects, j5 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j7 as verifyNativeViewsSync, j6 as verifyRegistryViewsSeeded, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-Cx6QJ4QV.js';
2
2
  export { ah as CompletionStatus } from './validators-BPIB7Miq.js';
3
3
  import '@stndrds/constants';
4
4
  import './utils.js';
package/dist/runtime.js CHANGED
@@ -158,7 +158,7 @@
158
158
 
159
159
 
160
160
 
161
- var _chunkDCTLP3ZDjs = require('./chunk-DCTLP3ZD.js');
161
+ var _chunkW7A7AQUFjs = require('./chunk-W7A7AQUF.js');
162
162
  require('./chunk-NEVERCM3.js');
163
163
  require('./chunk-U4AB53AM.js');
164
164
  require('./chunk-3RG5ZIWI.js');
@@ -322,4 +322,4 @@ require('./chunk-3RG5ZIWI.js');
322
322
 
323
323
 
324
324
 
325
- exports.AuditService = _chunkDCTLP3ZDjs.AuditService; exports.BaseRepository = _chunkDCTLP3ZDjs.BaseRepository; exports.BaseService = _chunkDCTLP3ZDjs.BaseService; exports.ConditionExecutor = _chunkDCTLP3ZDjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkDCTLP3ZDjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunkDCTLP3ZDjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkDCTLP3ZDjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkDCTLP3ZDjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkDCTLP3ZDjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunkDCTLP3ZDjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkDCTLP3ZDjs.DocumentProcessingService; exports.DocumentRenderError = _chunkDCTLP3ZDjs.DocumentRenderError; exports.DocumentRendererService = _chunkDCTLP3ZDjs.DocumentRendererService; exports.DocumentService = _chunkDCTLP3ZDjs.DocumentService; exports.DocumentTemplateService = _chunkDCTLP3ZDjs.DocumentTemplateService; exports.EndExecutor = _chunkDCTLP3ZDjs.EndExecutor; exports.ExecutorRegistry = _chunkDCTLP3ZDjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkDCTLP3ZDjs.FeatureFlagsContextError; exports.FileService = _chunkDCTLP3ZDjs.FileService; exports.FormExecutor = _chunkDCTLP3ZDjs.FormExecutor; exports.FormulaResolverService = _chunkDCTLP3ZDjs.FormulaResolverService; exports.GeocodingService = _chunkDCTLP3ZDjs.GeocodingService; exports.GlobalSearchService = _chunkDCTLP3ZDjs.GlobalSearchService; exports.GrantExpiredError = _chunkDCTLP3ZDjs.GrantExpiredError; exports.GrantNotFoundError = _chunkDCTLP3ZDjs.GrantNotFoundError; exports.GrantRevokedError = _chunkDCTLP3ZDjs.GrantRevokedError; exports.InvalidPathError = _chunkDCTLP3ZDjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkDCTLP3ZDjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkDCTLP3ZDjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkDCTLP3ZDjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkDCTLP3ZDjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunkDCTLP3ZDjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkDCTLP3ZDjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkDCTLP3ZDjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkDCTLP3ZDjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkDCTLP3ZDjs.ObjectSchemaService; exports.PermissionService = _chunkDCTLP3ZDjs.PermissionService; exports.PolicyRegistry = _chunkDCTLP3ZDjs.PolicyRegistry; exports.PolicyViolationError = _chunkDCTLP3ZDjs.PolicyViolationError; exports.QueryBuilder = _chunkDCTLP3ZDjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkDCTLP3ZDjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkDCTLP3ZDjs.QueryNoResultError; exports.RecordQueryService = _chunkDCTLP3ZDjs.RecordQueryService; exports.RecordResolverService = _chunkDCTLP3ZDjs.RecordResolverService; exports.RecordService = _chunkDCTLP3ZDjs.RecordService; exports.RelationPropertiesService = _chunkDCTLP3ZDjs.RelationPropertiesService; exports.RelationService = _chunkDCTLP3ZDjs.RelationService; exports.RollupScheduler = _chunkDCTLP3ZDjs.RollupScheduler; exports.RollupService = _chunkDCTLP3ZDjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkDCTLP3ZDjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunkDCTLP3ZDjs.SchemaContextAwareRepository; exports.StartExecutor = _chunkDCTLP3ZDjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunkDCTLP3ZDjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunkDCTLP3ZDjs.TenantContextError; exports.TokenRevokedError = _chunkDCTLP3ZDjs.TokenRevokedError; exports.UserProfileService = _chunkDCTLP3ZDjs.UserProfileService; exports.UserService = _chunkDCTLP3ZDjs.UserService; exports.ViewService = _chunkDCTLP3ZDjs.ViewService; exports.WorkflowAccessGrantService = _chunkDCTLP3ZDjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkDCTLP3ZDjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkDCTLP3ZDjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkDCTLP3ZDjs.WorkflowJwtService; exports.WorkflowRelationService = _chunkDCTLP3ZDjs.WorkflowRelationService; exports.WorkflowService = _chunkDCTLP3ZDjs.WorkflowService; exports.addSchemaToContext = _chunkDCTLP3ZDjs.addSchemaToContext; exports.applyDefaultValues = _chunkDCTLP3ZDjs.applyDefaultValues; exports.buildAuditChanges = _chunkDCTLP3ZDjs.buildAuditChanges; exports.buildPolicyContext = _chunkDCTLP3ZDjs.buildPolicyContext; exports.cacheKeys = _chunkDCTLP3ZDjs.cacheKeys; exports.cacheTtl = _chunkDCTLP3ZDjs.cacheTtl; exports.checkPermission = _chunkDCTLP3ZDjs.checkPermission; exports.checkRecordAccess = _chunkDCTLP3ZDjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkDCTLP3ZDjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkDCTLP3ZDjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkDCTLP3ZDjs.checkSharedObjectWriteAccess; exports.complete = _chunkDCTLP3ZDjs.complete; exports.computeLabel = _chunkDCTLP3ZDjs.computeLabel; exports.computeLabelWithRelations = _chunkDCTLP3ZDjs.computeLabelWithRelations; exports.createContextForCreate = _chunkDCTLP3ZDjs.createContextForCreate; exports.createContextForDelete = _chunkDCTLP3ZDjs.createContextForDelete; exports.createContextForRestore = _chunkDCTLP3ZDjs.createContextForRestore; exports.createContextForUpdate = _chunkDCTLP3ZDjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkDCTLP3ZDjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkDCTLP3ZDjs.createDefaultState; exports.createMockAdapter = _chunkDCTLP3ZDjs.createMockAdapter; exports.createQueryBuilder = _chunkDCTLP3ZDjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkDCTLP3ZDjs.defaultPolicyRegistry; exports.defaultTtl = _chunkDCTLP3ZDjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunkDCTLP3ZDjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkDCTLP3ZDjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkDCTLP3ZDjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkDCTLP3ZDjs.enrichWithFormulas; exports.error = _chunkDCTLP3ZDjs.error; exports.evaluate = _chunkDCTLP3ZDjs.evaluate; exports.evaluateCondition = _chunkDCTLP3ZDjs.evaluateCondition; exports.evaluateFormula = _chunkDCTLP3ZDjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkDCTLP3ZDjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkDCTLP3ZDjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkDCTLP3ZDjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkDCTLP3ZDjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkDCTLP3ZDjs.evaluateWithTrace; exports.extractAttributeNames = _chunkDCTLP3ZDjs.extractAttributeNames; exports.extractFormulaVariables = _chunkDCTLP3ZDjs.extractFormulaVariables; exports.extractRelationIds = _chunkDCTLP3ZDjs.extractRelationIds; exports.extractRelationNames = _chunkDCTLP3ZDjs.extractRelationNames; exports.extractRelationReferences = _chunkDCTLP3ZDjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkDCTLP3ZDjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkDCTLP3ZDjs.formatFormulaResult; exports.formatRecord = _chunkDCTLP3ZDjs.formatRecord; exports.formatRecords = _chunkDCTLP3ZDjs.formatRecords; exports.getContext = _chunkDCTLP3ZDjs.getContext; exports.getDefaultExecutorRegistry = _chunkDCTLP3ZDjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkDCTLP3ZDjs.getFeatureFlags; exports.getFeatureValue = _chunkDCTLP3ZDjs.getFeatureValue; exports.getPathDepth = _chunkDCTLP3ZDjs.getPathDepth; exports.getPolicy = _chunkDCTLP3ZDjs.getPolicy; exports.getRelationPath = _chunkDCTLP3ZDjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkDCTLP3ZDjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkDCTLP3ZDjs.getSchemaContext; exports.getSchemaFromContext = _chunkDCTLP3ZDjs.getSchemaFromContext; exports.getSyncPreview = _chunkDCTLP3ZDjs.getSyncPreview; exports.getTargetAttributeName = _chunkDCTLP3ZDjs.getTargetAttributeName; exports.getTenantId = _chunkDCTLP3ZDjs.getTenantId; exports.getUserId = _chunkDCTLP3ZDjs.getUserId; exports.getViewSeedPreview = _chunkDCTLP3ZDjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkDCTLP3ZDjs.getViewSyncPreview; exports.hasContext = _chunkDCTLP3ZDjs.hasContext; exports.hasFeatureFlagsContext = _chunkDCTLP3ZDjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkDCTLP3ZDjs.hasRelationReferences; exports.hasSchemaContext = _chunkDCTLP3ZDjs.hasSchemaContext; exports.hashOptions = _chunkDCTLP3ZDjs.hashOptions; exports.isFeatureEnabled = _chunkDCTLP3ZDjs.isFeatureEnabled; exports.isLabelExpression = _chunkDCTLP3ZDjs.isLabelExpression; exports.notesPolicy = _chunkDCTLP3ZDjs.notesPolicy; exports.parsePath = _chunkDCTLP3ZDjs.parsePath; exports.pathHasManyCardinality = _chunkDCTLP3ZDjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunkDCTLP3ZDjs.recalculateParentRollups; exports.renderLabelExpression = _chunkDCTLP3ZDjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkDCTLP3ZDjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkDCTLP3ZDjs.resolveSingleValue; exports.runWithContext = _chunkDCTLP3ZDjs.runWithContext; exports.runWithFeatureFlags = _chunkDCTLP3ZDjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkDCTLP3ZDjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkDCTLP3ZDjs.runWithSchemaContext; exports.seedRegistryViews = _chunkDCTLP3ZDjs.seedRegistryViews; exports.success = _chunkDCTLP3ZDjs.success; exports.syncAll = _chunkDCTLP3ZDjs.syncAll; exports.syncNativeObjects = _chunkDCTLP3ZDjs.syncNativeObjects; exports.syncNativeViews = _chunkDCTLP3ZDjs.syncNativeViews; exports.traversePath = _chunkDCTLP3ZDjs.traversePath; exports.tryGetFeatureValue = _chunkDCTLP3ZDjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunkDCTLP3ZDjs.validateFormulaExpression; exports.validatePath = _chunkDCTLP3ZDjs.validatePath; exports.verifyNativeObjectsSync = _chunkDCTLP3ZDjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkDCTLP3ZDjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkDCTLP3ZDjs.verifyRegistryViewsSeeded; exports.wait = _chunkDCTLP3ZDjs.wait; exports.withFeatureFlags = _chunkDCTLP3ZDjs.withFeatureFlags; exports.withTenantContext = _chunkDCTLP3ZDjs.withTenantContext;
325
+ exports.AuditService = _chunkW7A7AQUFjs.AuditService; exports.BaseRepository = _chunkW7A7AQUFjs.BaseRepository; exports.BaseService = _chunkW7A7AQUFjs.BaseService; exports.ConditionExecutor = _chunkW7A7AQUFjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkW7A7AQUFjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunkW7A7AQUFjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkW7A7AQUFjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkW7A7AQUFjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkW7A7AQUFjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunkW7A7AQUFjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkW7A7AQUFjs.DocumentProcessingService; exports.DocumentRenderError = _chunkW7A7AQUFjs.DocumentRenderError; exports.DocumentRendererService = _chunkW7A7AQUFjs.DocumentRendererService; exports.DocumentService = _chunkW7A7AQUFjs.DocumentService; exports.DocumentTemplateService = _chunkW7A7AQUFjs.DocumentTemplateService; exports.EndExecutor = _chunkW7A7AQUFjs.EndExecutor; exports.ExecutorRegistry = _chunkW7A7AQUFjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkW7A7AQUFjs.FeatureFlagsContextError; exports.FileService = _chunkW7A7AQUFjs.FileService; exports.FormExecutor = _chunkW7A7AQUFjs.FormExecutor; exports.FormulaResolverService = _chunkW7A7AQUFjs.FormulaResolverService; exports.GeocodingService = _chunkW7A7AQUFjs.GeocodingService; exports.GlobalSearchService = _chunkW7A7AQUFjs.GlobalSearchService; exports.GrantExpiredError = _chunkW7A7AQUFjs.GrantExpiredError; exports.GrantNotFoundError = _chunkW7A7AQUFjs.GrantNotFoundError; exports.GrantRevokedError = _chunkW7A7AQUFjs.GrantRevokedError; exports.InvalidPathError = _chunkW7A7AQUFjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkW7A7AQUFjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkW7A7AQUFjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkW7A7AQUFjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkW7A7AQUFjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunkW7A7AQUFjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkW7A7AQUFjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkW7A7AQUFjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkW7A7AQUFjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkW7A7AQUFjs.ObjectSchemaService; exports.PermissionService = _chunkW7A7AQUFjs.PermissionService; exports.PolicyRegistry = _chunkW7A7AQUFjs.PolicyRegistry; exports.PolicyViolationError = _chunkW7A7AQUFjs.PolicyViolationError; exports.QueryBuilder = _chunkW7A7AQUFjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkW7A7AQUFjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkW7A7AQUFjs.QueryNoResultError; exports.RecordQueryService = _chunkW7A7AQUFjs.RecordQueryService; exports.RecordResolverService = _chunkW7A7AQUFjs.RecordResolverService; exports.RecordService = _chunkW7A7AQUFjs.RecordService; exports.RelationPropertiesService = _chunkW7A7AQUFjs.RelationPropertiesService; exports.RelationService = _chunkW7A7AQUFjs.RelationService; exports.RollupScheduler = _chunkW7A7AQUFjs.RollupScheduler; exports.RollupService = _chunkW7A7AQUFjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkW7A7AQUFjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunkW7A7AQUFjs.SchemaContextAwareRepository; exports.StartExecutor = _chunkW7A7AQUFjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunkW7A7AQUFjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunkW7A7AQUFjs.TenantContextError; exports.TokenRevokedError = _chunkW7A7AQUFjs.TokenRevokedError; exports.UserProfileService = _chunkW7A7AQUFjs.UserProfileService; exports.UserService = _chunkW7A7AQUFjs.UserService; exports.ViewService = _chunkW7A7AQUFjs.ViewService; exports.WorkflowAccessGrantService = _chunkW7A7AQUFjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkW7A7AQUFjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkW7A7AQUFjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkW7A7AQUFjs.WorkflowJwtService; exports.WorkflowRelationService = _chunkW7A7AQUFjs.WorkflowRelationService; exports.WorkflowService = _chunkW7A7AQUFjs.WorkflowService; exports.addSchemaToContext = _chunkW7A7AQUFjs.addSchemaToContext; exports.applyDefaultValues = _chunkW7A7AQUFjs.applyDefaultValues; exports.buildAuditChanges = _chunkW7A7AQUFjs.buildAuditChanges; exports.buildPolicyContext = _chunkW7A7AQUFjs.buildPolicyContext; exports.cacheKeys = _chunkW7A7AQUFjs.cacheKeys; exports.cacheTtl = _chunkW7A7AQUFjs.cacheTtl; exports.checkPermission = _chunkW7A7AQUFjs.checkPermission; exports.checkRecordAccess = _chunkW7A7AQUFjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkW7A7AQUFjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkW7A7AQUFjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkW7A7AQUFjs.checkSharedObjectWriteAccess; exports.complete = _chunkW7A7AQUFjs.complete; exports.computeLabel = _chunkW7A7AQUFjs.computeLabel; exports.computeLabelWithRelations = _chunkW7A7AQUFjs.computeLabelWithRelations; exports.createContextForCreate = _chunkW7A7AQUFjs.createContextForCreate; exports.createContextForDelete = _chunkW7A7AQUFjs.createContextForDelete; exports.createContextForRestore = _chunkW7A7AQUFjs.createContextForRestore; exports.createContextForUpdate = _chunkW7A7AQUFjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkW7A7AQUFjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkW7A7AQUFjs.createDefaultState; exports.createMockAdapter = _chunkW7A7AQUFjs.createMockAdapter; exports.createQueryBuilder = _chunkW7A7AQUFjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkW7A7AQUFjs.defaultPolicyRegistry; exports.defaultTtl = _chunkW7A7AQUFjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunkW7A7AQUFjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkW7A7AQUFjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkW7A7AQUFjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkW7A7AQUFjs.enrichWithFormulas; exports.error = _chunkW7A7AQUFjs.error; exports.evaluate = _chunkW7A7AQUFjs.evaluate; exports.evaluateCondition = _chunkW7A7AQUFjs.evaluateCondition; exports.evaluateFormula = _chunkW7A7AQUFjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkW7A7AQUFjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkW7A7AQUFjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkW7A7AQUFjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkW7A7AQUFjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkW7A7AQUFjs.evaluateWithTrace; exports.extractAttributeNames = _chunkW7A7AQUFjs.extractAttributeNames; exports.extractFormulaVariables = _chunkW7A7AQUFjs.extractFormulaVariables; exports.extractRelationIds = _chunkW7A7AQUFjs.extractRelationIds; exports.extractRelationNames = _chunkW7A7AQUFjs.extractRelationNames; exports.extractRelationReferences = _chunkW7A7AQUFjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkW7A7AQUFjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkW7A7AQUFjs.formatFormulaResult; exports.formatRecord = _chunkW7A7AQUFjs.formatRecord; exports.formatRecords = _chunkW7A7AQUFjs.formatRecords; exports.getContext = _chunkW7A7AQUFjs.getContext; exports.getDefaultExecutorRegistry = _chunkW7A7AQUFjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkW7A7AQUFjs.getFeatureFlags; exports.getFeatureValue = _chunkW7A7AQUFjs.getFeatureValue; exports.getPathDepth = _chunkW7A7AQUFjs.getPathDepth; exports.getPolicy = _chunkW7A7AQUFjs.getPolicy; exports.getRelationPath = _chunkW7A7AQUFjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkW7A7AQUFjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkW7A7AQUFjs.getSchemaContext; exports.getSchemaFromContext = _chunkW7A7AQUFjs.getSchemaFromContext; exports.getSyncPreview = _chunkW7A7AQUFjs.getSyncPreview; exports.getTargetAttributeName = _chunkW7A7AQUFjs.getTargetAttributeName; exports.getTenantId = _chunkW7A7AQUFjs.getTenantId; exports.getUserId = _chunkW7A7AQUFjs.getUserId; exports.getViewSeedPreview = _chunkW7A7AQUFjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkW7A7AQUFjs.getViewSyncPreview; exports.hasContext = _chunkW7A7AQUFjs.hasContext; exports.hasFeatureFlagsContext = _chunkW7A7AQUFjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkW7A7AQUFjs.hasRelationReferences; exports.hasSchemaContext = _chunkW7A7AQUFjs.hasSchemaContext; exports.hashOptions = _chunkW7A7AQUFjs.hashOptions; exports.isFeatureEnabled = _chunkW7A7AQUFjs.isFeatureEnabled; exports.isLabelExpression = _chunkW7A7AQUFjs.isLabelExpression; exports.notesPolicy = _chunkW7A7AQUFjs.notesPolicy; exports.parsePath = _chunkW7A7AQUFjs.parsePath; exports.pathHasManyCardinality = _chunkW7A7AQUFjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunkW7A7AQUFjs.recalculateParentRollups; exports.renderLabelExpression = _chunkW7A7AQUFjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkW7A7AQUFjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkW7A7AQUFjs.resolveSingleValue; exports.runWithContext = _chunkW7A7AQUFjs.runWithContext; exports.runWithFeatureFlags = _chunkW7A7AQUFjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkW7A7AQUFjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkW7A7AQUFjs.runWithSchemaContext; exports.seedRegistryViews = _chunkW7A7AQUFjs.seedRegistryViews; exports.success = _chunkW7A7AQUFjs.success; exports.syncAll = _chunkW7A7AQUFjs.syncAll; exports.syncNativeObjects = _chunkW7A7AQUFjs.syncNativeObjects; exports.syncNativeViews = _chunkW7A7AQUFjs.syncNativeViews; exports.traversePath = _chunkW7A7AQUFjs.traversePath; exports.tryGetFeatureValue = _chunkW7A7AQUFjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunkW7A7AQUFjs.validateFormulaExpression; exports.validatePath = _chunkW7A7AQUFjs.validatePath; exports.verifyNativeObjectsSync = _chunkW7A7AQUFjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkW7A7AQUFjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkW7A7AQUFjs.verifyRegistryViewsSeeded; exports.wait = _chunkW7A7AQUFjs.wait; exports.withFeatureFlags = _chunkW7A7AQUFjs.withFeatureFlags; exports.withTenantContext = _chunkW7A7AQUFjs.withTenantContext;
package/dist/runtime.mjs CHANGED
@@ -158,7 +158,7 @@ import {
158
158
  wait,
159
159
  withFeatureFlags,
160
160
  withTenantContext
161
- } from "./chunk-O7FGYLYG.mjs";
161
+ } from "./chunk-533TTNPT.mjs";
162
162
  import "./chunk-V2RPPE2Y.mjs";
163
163
  import "./chunk-SV4BCGQU.mjs";
164
164
  import "./chunk-Y6FXYEAI.mjs";