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

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.
@@ -3210,6 +3210,17 @@ function createMockObjectsRepository(stores) {
3210
3210
  );
3211
3211
  return Promise.resolve(results);
3212
3212
  },
3213
+ deleteSystemNotInNames(excludeNames) {
3214
+ const tenantId = getTenantId();
3215
+ let count = 0;
3216
+ for (const [id, obj] of stores.objects.entries()) {
3217
+ if (obj.tenantId === tenantId && obj.system && !excludeNames.includes(obj.name)) {
3218
+ stores.objects.delete(id);
3219
+ count++;
3220
+ }
3221
+ }
3222
+ return Promise.resolve(count);
3223
+ },
3213
3224
  upsert(data) {
3214
3225
  const tenantId = getTenantId();
3215
3226
  for (const obj of stores.objects.values()) {
@@ -18426,6 +18437,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
18426
18437
  const result = {
18427
18438
  success: true,
18428
18439
  objectsSynced: 0,
18440
+ objectsDeleted: 0,
18429
18441
  attributesSynced: 0,
18430
18442
  objectsCreated: 0,
18431
18443
  objectsUpdated: 0,
@@ -18451,6 +18463,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
18451
18463
  });
18452
18464
  }
18453
18465
  }
18466
+ await cleanupOrphanObjects(tx, nativeObjects, result, options);
18454
18467
  });
18455
18468
  } catch (error2) {
18456
18469
  result.success = false;
@@ -18462,7 +18475,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
18462
18475
  if (options.verbose) {
18463
18476
  console.info(
18464
18477
  `[SyncService] ${result.success ? "\u2713" : "\u2717"} Sync complete:
18465
- Objects: ${result.objectsCreated} created, ${result.objectsUpdated} updated
18478
+ Objects: ${result.objectsCreated} created, ${result.objectsUpdated} updated, ${result.objectsDeleted} deleted
18466
18479
  Attributes: ${result.attributesCreated} created, ${result.attributesUpdated} updated, ${result.attributesDeleted} deleted
18467
18480
  Errors: ${result.errors.length}`
18468
18481
  );
@@ -18574,6 +18587,27 @@ async function cleanupAttributes(adapter, objectId, nativeObject, result) {
18574
18587
  const deletedCount = await adapter.attributes.deleteSystemByNames(objectId, attributeNames);
18575
18588
  result.attributesDeleted += deletedCount;
18576
18589
  }
18590
+ async function cleanupOrphanObjects(adapter, nativeObjects, result, options) {
18591
+ const registryNames = nativeObjects.map((obj) => obj.name);
18592
+ if (options.dryRun) {
18593
+ const allObjects = await adapter.objects.list();
18594
+ const orphans = allObjects.filter(
18595
+ (obj) => obj.system && !registryNames.includes(obj.name)
18596
+ );
18597
+ result.objectsDeleted += orphans.length;
18598
+ if (options.verbose && orphans.length > 0) {
18599
+ console.info(
18600
+ `[SyncService] Would delete ${orphans.length} orphan system object(s): ${orphans.map((o) => o.name).join(", ")}`
18601
+ );
18602
+ }
18603
+ return;
18604
+ }
18605
+ const deletedCount = await adapter.objects.deleteSystemNotInNames(registryNames);
18606
+ result.objectsDeleted += deletedCount;
18607
+ if (options.verbose && deletedCount > 0) {
18608
+ console.info(`[SyncService] Deleted ${deletedCount} orphan system object(s)`);
18609
+ }
18610
+ }
18577
18611
  function logSyncSuccess(nativeObject, options) {
18578
18612
  if (options.verbose) {
18579
18613
  console.info(
@@ -3210,6 +3210,17 @@ function createMockObjectsRepository(stores) {
3210
3210
  );
3211
3211
  return Promise.resolve(results);
3212
3212
  },
3213
+ deleteSystemNotInNames(excludeNames) {
3214
+ const tenantId = getTenantId();
3215
+ let count = 0;
3216
+ for (const [id, obj] of stores.objects.entries()) {
3217
+ if (obj.tenantId === tenantId && obj.system && !excludeNames.includes(obj.name)) {
3218
+ stores.objects.delete(id);
3219
+ count++;
3220
+ }
3221
+ }
3222
+ return Promise.resolve(count);
3223
+ },
3213
3224
  upsert(data) {
3214
3225
  const tenantId = getTenantId();
3215
3226
  for (const obj of stores.objects.values()) {
@@ -18426,6 +18437,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
18426
18437
  const result = {
18427
18438
  success: true,
18428
18439
  objectsSynced: 0,
18440
+ objectsDeleted: 0,
18429
18441
  attributesSynced: 0,
18430
18442
  objectsCreated: 0,
18431
18443
  objectsUpdated: 0,
@@ -18451,6 +18463,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
18451
18463
  });
18452
18464
  }
18453
18465
  }
18466
+ await cleanupOrphanObjects(tx, nativeObjects, result, options);
18454
18467
  });
18455
18468
  } catch (error2) {
18456
18469
  result.success = false;
@@ -18462,7 +18475,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
18462
18475
  if (options.verbose) {
18463
18476
  console.info(
18464
18477
  `[SyncService] ${result.success ? "\u2713" : "\u2717"} Sync complete:
18465
- Objects: ${result.objectsCreated} created, ${result.objectsUpdated} updated
18478
+ Objects: ${result.objectsCreated} created, ${result.objectsUpdated} updated, ${result.objectsDeleted} deleted
18466
18479
  Attributes: ${result.attributesCreated} created, ${result.attributesUpdated} updated, ${result.attributesDeleted} deleted
18467
18480
  Errors: ${result.errors.length}`
18468
18481
  );
@@ -18574,6 +18587,27 @@ async function cleanupAttributes(adapter, objectId, nativeObject, result) {
18574
18587
  const deletedCount = await adapter.attributes.deleteSystemByNames(objectId, attributeNames);
18575
18588
  result.attributesDeleted += deletedCount;
18576
18589
  }
18590
+ async function cleanupOrphanObjects(adapter, nativeObjects, result, options) {
18591
+ const registryNames = nativeObjects.map((obj) => obj.name);
18592
+ if (options.dryRun) {
18593
+ const allObjects = await adapter.objects.list();
18594
+ const orphans = allObjects.filter(
18595
+ (obj) => obj.system && !registryNames.includes(obj.name)
18596
+ );
18597
+ result.objectsDeleted += orphans.length;
18598
+ if (options.verbose && orphans.length > 0) {
18599
+ console.info(
18600
+ `[SyncService] Would delete ${orphans.length} orphan system object(s): ${orphans.map((o) => o.name).join(", ")}`
18601
+ );
18602
+ }
18603
+ return;
18604
+ }
18605
+ const deletedCount = await adapter.objects.deleteSystemNotInNames(registryNames);
18606
+ result.objectsDeleted += deletedCount;
18607
+ if (options.verbose && deletedCount > 0) {
18608
+ console.info(`[SyncService] Deleted ${deletedCount} orphan system object(s)`);
18609
+ }
18610
+ }
18577
18611
  function logSyncSuccess(nativeObject, options) {
18578
18612
  if (options.verbose) {
18579
18613
  console.info(
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { S as SystemResource, A as Action, I as InferAttributeValue, F as Field, a as AttributeGroupField, b as FieldGroup, R as RelationGroup, D as DetailViewLayout, c as SidePanelConfig, G as Group, d as DetailViewDefinition, e as InstanceStatus, T as Tab, f as TableTab, C as CreateMode, g as FilterState, h as SortRule, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, k as ConditionGroup, l as ConditionRule, m as WorkflowNode, n as WorkflowDefinition, o as FlowRow, p as ListViewConfig, q as ListViewTab, V as ViewType, r as ViewDefinition, s as DocumentTemplate } from './runtime-Cv41_Suf.mjs';
2
- export { ad as AIBatchQuestion, ae as AIBatchQuestionAnswer, ac as AIBatchQuestionOption, a7 as AIChatMessage, a6 as AIChatMessagePart, a1 as AIChatMessagePartType, at as AICompactionSummary, aj as AIConversation, gd as AIConversationsRepository, ar as AIMemoryEntry, aq as AIMemoryType, ak as AIMessage, ai as AIMessageAttachment, Z as AIMessageRole, ao as AIProviderMetrics, aa as AIQuestion, ab as AIQuestionAnswer, a9 as AIQuestionOption, a8 as AIQuestionType, as as AITenantPersona, _ as AIThinkingLevel, ag as AITodoItem, ah as AITodoList, af as AITodoStatus, a0 as AIToolCall, al as AIToolCallRecord, $ as AIToolCallStatus, an as AIUsageMetrics, ge as AIUsageMetricsRepository, am as AIUserMemory, gf as AIUserMemoryRepository, c8 as ALL_ACTIONS, c7 as AccessLevel, cB as ActivityTab, bO as AddAttribute, gD as AddAttributeInput, bn as AdvancedFilterState, ck as AssignRoleInput, g2 as AttributeChange, bN as AttributeMap, bJ as AttributeSchema, gg as AttributesRepository, av as AuditAction, aw as AuditActorType, ax as AuditChange, aA as AuditListOptions, ay as AuditLogEntry, gh as AuditRepository, au as AuditResourceType, hT as AuditService, aB as AuditServiceOptions, gz as BaseRepository, gy as BaseService, B as BoundingBox, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, cH as CalendarViewConfig, cL as CalendarViewDefinition, ds as CanvasViewport, b9 as CheckboxFilterOperator, fv as ConditionExecutor, d4 as ConditionNode, dj as ConditionOperator, cO as ConfigOverrides, ap as CreateAIMessageInput, az as CreateAuditLogInput, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, aU as CreateDocument, aG as CreateDocumentGenerationTemplate, aY as CreateDocumentSlot, aW as CreateDocumentTemplate, b5 as CreateFile, dP as CreateGrantInput, hx as CreateGrantResult, dI as CreateInvitationInput, dJ as CreateInvitationResult, iS as CreateObjectRecord, cj as CreatePermissionInput, a_ as CreateProcessingJob, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ch as CreateRoleInput, z as CreateSignatureInput, cr as CreateUserProfile, ih as CreateViewInput, hK as CreateWorkflowInput, bg as CurrencyFilterValue, bS as CustomAttributeValue, cA as CustomTab, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, e8 as DEFAULT_THEME, ej as DatabaseAdapter, ba as DateFilterOperator, cG as DetailViewConfig, aN as Document, aK as DocumentAutoProcessing, X as DocumentData, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, aF as DocumentGenerationTemplate, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, b0 as DocumentListOptions, d5 as DocumentNode, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, aP as DocumentSlot, aJ as DocumentSlotDefinition, gl as DocumentSlotsRepository, aO as DocumentStatus, b1 as DocumentTemplateListOptions, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, cE as DocumentsTab, ce as EffectivePermissions, fx as EndExecutor, d6 as EndNode, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, bk as ExtendedFilterRule, c0 as ExtractAttributes, c2 as ExtractObjectRecord, c3 as ExtractObjectRecordWithCustom, bW as ExtractRecord, bY as ExtractRecordInput, bZ as ExtractRecordInputStrict, bX as ExtractRecordStrict, b_ as ExtractRecordUpdate, b$ as ExtractRecordUpdateStrict, aM as ExtractionField, aL as ExtractionMapping, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, b4 as File, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, b3 as FileVisibility, go as FilesRepository, bl as FilterCombinator, bm as FilterGroup, be as FilterOperator, bj as FilterRule, bi as FilterValue, bz as FlowDefinition, bw as FlowPage, bx as FlowRelation, bv as FlowRowField, bu as FlowSlot, by as FlowStatus, cD as FlowsTab, d$ as FormContextResponse, cv as FormDensity, fy as FormExecutor, e0 as FormFieldContext, d7 as FormFieldRef, e1 as FormFieldRow, d8 as FormNode, e2 as FormNodeInfo, cw as FormTab, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, cJ as GalleryViewConfig, cN as GalleryViewDefinition, dW as GeneratedDocument, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, P as IdentityVerificationAdapter, bP as InferRecord, bK as InferRecordFromSchema, bQ as InferRecordInput, bR as InferRecordUpdate, bL as InferRecordWithRequirements, eB as InsertOptions, fQ as InvalidPathError, cy as InverseSource, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, dK as InvitationStatus, ct as InviteUserInput, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, cF as ListViewLayout, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, bc as MultiselectFilterOperator, bs as NO_VALUE_OPERATORS, br as NoValueOperator, fp as NodeExecutor, dt as NodePosition, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, b8 as NumberFilterOperator, bq as OPERATORS_BY_TYPE, c5 as ObjectAction, cf as ObjectPermissions, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, O as OcrAdapter, t as OcrInput, u as OcrOptions, w as OcrPage, v as OcrResult, x as OcrTextBlock, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, aD as PdfTemplateField, dA as PendingAction, aI as PendingDocumentRequest, cc as Permission, c4 as PermissionScope, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, bh as PhoneFilterValue, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, aR as ProcessingJob, aT as ProcessingJobStatus, aS as ProcessingJobType, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, bp as QueryState, e3 as ReadOnlyReason, a5 as ReasoningPartData, i5 as RecordDocumentsResult, bU as RecordMetadata, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, bd as RelationFilterOperator, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, cx as RelationSource, gP as RelationValidationError, gO as RelationValidationResult, bf as RelativeDateValue, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, cC as RichtextTab, cb as Role, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, bb as SelectFilterOperator, eF as ShortcutOperator, y as SignatureAdapter, H as SignaturePosition, J as SignatureRequestResult, N as SignatureStatus, K as SignatureStatusResult, iq as SignedUrlOptions, E as SignerRequest, M as SignerStatus, gY as SingleRelationValue, aQ as SlotStatus, bo as SortDirection, fz as StartExecutor, d9 as StartNode, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, b2 as StorageProvider, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, c6 as SystemAction, bV as SystemFields, cg as SystemPermissions, cu as TabType, cz as TableSource, aE as TemplateSource, fg as TenantContext, eU as TenantContextError, b7 as TextFilterOperator, a2 as TextPartData, e5 as ThemeColors, e6 as ThemeLogo, e7 as ThemeTypography, a4 as ThinkingPartData, cI as TimelineViewConfig, cM as TimelineViewDefinition, hv as TokenRevokedError, a3 as ToolPartData, g0 as TraversalOptions, g1 as TraversalResult, bM as TypedAttribute, c1 as TypedObjectRecord, cp as USER_STATUSES, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, aV as UpdateDocument, aH as UpdateDocumentGenerationTemplate, aZ as UpdateDocumentSlot, aX as UpdateDocumentTemplate, b6 as UpdateFile, gE as UpdateObjectInput, a$ as UpdateProcessingJob, ci as UpdateRoleInput, cs as UpdateUserProfile, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, cq as UserProfile, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, cd as UserRoleAssignment, hQ as UserService, co as UserStatus, hP as UserValidationError, hO as UserValidationResult, aC as VariableMapping, Y as VerificationCheck, U as VerificationResult, Q as VerifyInput, cK as ViewConfig, cP as ViewOverlay, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, bT as WithCustomAttributes, dQ as WorkflowAccessGrant, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, e4 as WorkflowAccessMode, en as WorkflowAccessPayload, dB as WorkflowError, dX as WorkflowExecutionContext, dC as WorkflowInstance, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, dL as WorkflowInvitation, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, du as WorkflowLayout, da as WorkflowNodeType, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, dv as WorkflowSlot, dw as WorkflowStatus, dD as WorkflowTransition, gx as WorkflowsRepository, ca as accessLevelToActions, c9 as actionsToAccessLevel, f2 as addSchemaToContext, dk as and, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, dR as canAccessNode, dE as canResumeInstance, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, dY as createEmptyContext, g9 as createMockAdapter, eM as createQueryBuilder, dF as createStartTransition, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, dl as eq, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, e9 as generateCssVariables, fa as getContext, dZ as getContextValue, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, db as getNodeOutputs, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, dm as inValues, d0 as isActivityTab, dc as isAdvancedFormNode, cS as isCalendarView, dn as isConditionGroup, dd as isConditionNode, dp as isConditionRule, c$ as isCustomTab, cQ as isDetailView, de as isDocumentNode, d3 as isDocumentsTab, df as isEndNode, eZ as isFeatureEnabled, cV as isFieldGroup, bA as isFlowDefinition, bB as isFlowPublished, d2 as isFlowsTab, dg as isFormNode, cX as isFormTab, cU as isGalleryView, dS as isGrantExpired, dT as isGrantRevoked, dU as isGrantValid, dG as isInstanceTerminal, dH as isInstanceWaiting, c_ as isInverseSourceTab, dM as isInvitationAccepted, dN as isInvitationExpired, dO as isInvitationValid, iD as isLabelExpression, cR as isListView, bt as isNoValueOperator, cW as isRelationGroup, cZ as isRelationSourceTab, d1 as isRichtextTab, dh as isSimpleFormNode, di as isStartNode, bC as isSystemFlow, dx as isSystemWorkflow, cY as isTableTab, cT as isTimelineView, dV as isTokenRevoked, dy as isWorkflowDefinition, dz as isWorkflowPublished, ea as mergeWithDefaults, dq as neq, dr as or, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, eb as registry, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, d_ as setContextValue, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, ec as viewRegistry, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-Cv41_Suf.mjs';
1
+ import { S as SystemResource, A as Action, I as InferAttributeValue, F as Field, a as AttributeGroupField, b as FieldGroup, R as RelationGroup, D as DetailViewLayout, c as SidePanelConfig, G as Group, d as DetailViewDefinition, e as InstanceStatus, T as Tab, f as TableTab, C as CreateMode, g as FilterState, h as SortRule, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, k as ConditionGroup, l as ConditionRule, m as WorkflowNode, n as WorkflowDefinition, o as FlowRow, p as ListViewConfig, q as ListViewTab, V as ViewType, r as ViewDefinition, s as DocumentTemplate } from './runtime-kH9dOaQt.mjs';
2
+ export { ad as AIBatchQuestion, ae as AIBatchQuestionAnswer, ac as AIBatchQuestionOption, a7 as AIChatMessage, a6 as AIChatMessagePart, a1 as AIChatMessagePartType, at as AICompactionSummary, aj as AIConversation, gd as AIConversationsRepository, ar as AIMemoryEntry, aq as AIMemoryType, ak as AIMessage, ai as AIMessageAttachment, Z as AIMessageRole, ao as AIProviderMetrics, aa as AIQuestion, ab as AIQuestionAnswer, a9 as AIQuestionOption, a8 as AIQuestionType, as as AITenantPersona, _ as AIThinkingLevel, ag as AITodoItem, ah as AITodoList, af as AITodoStatus, a0 as AIToolCall, al as AIToolCallRecord, $ as AIToolCallStatus, an as AIUsageMetrics, ge as AIUsageMetricsRepository, am as AIUserMemory, gf as AIUserMemoryRepository, c8 as ALL_ACTIONS, c7 as AccessLevel, cB as ActivityTab, bO as AddAttribute, gD as AddAttributeInput, bn as AdvancedFilterState, ck as AssignRoleInput, g2 as AttributeChange, bN as AttributeMap, bJ as AttributeSchema, gg as AttributesRepository, av as AuditAction, aw as AuditActorType, ax as AuditChange, aA as AuditListOptions, ay as AuditLogEntry, gh as AuditRepository, au as AuditResourceType, hT as AuditService, aB as AuditServiceOptions, gz as BaseRepository, gy as BaseService, B as BoundingBox, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, cH as CalendarViewConfig, cL as CalendarViewDefinition, ds as CanvasViewport, b9 as CheckboxFilterOperator, fv as ConditionExecutor, d4 as ConditionNode, dj as ConditionOperator, cO as ConfigOverrides, ap as CreateAIMessageInput, az as CreateAuditLogInput, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, aU as CreateDocument, aG as CreateDocumentGenerationTemplate, aY as CreateDocumentSlot, aW as CreateDocumentTemplate, b5 as CreateFile, dP as CreateGrantInput, hx as CreateGrantResult, dI as CreateInvitationInput, dJ as CreateInvitationResult, iS as CreateObjectRecord, cj as CreatePermissionInput, a_ as CreateProcessingJob, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ch as CreateRoleInput, z as CreateSignatureInput, cr as CreateUserProfile, ih as CreateViewInput, hK as CreateWorkflowInput, bg as CurrencyFilterValue, bS as CustomAttributeValue, cA as CustomTab, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, e8 as DEFAULT_THEME, ej as DatabaseAdapter, ba as DateFilterOperator, cG as DetailViewConfig, aN as Document, aK as DocumentAutoProcessing, X as DocumentData, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, aF as DocumentGenerationTemplate, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, b0 as DocumentListOptions, d5 as DocumentNode, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, aP as DocumentSlot, aJ as DocumentSlotDefinition, gl as DocumentSlotsRepository, aO as DocumentStatus, b1 as DocumentTemplateListOptions, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, cE as DocumentsTab, ce as EffectivePermissions, fx as EndExecutor, d6 as EndNode, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, bk as ExtendedFilterRule, c0 as ExtractAttributes, c2 as ExtractObjectRecord, c3 as ExtractObjectRecordWithCustom, bW as ExtractRecord, bY as ExtractRecordInput, bZ as ExtractRecordInputStrict, bX as ExtractRecordStrict, b_ as ExtractRecordUpdate, b$ as ExtractRecordUpdateStrict, aM as ExtractionField, aL as ExtractionMapping, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, b4 as File, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, b3 as FileVisibility, go as FilesRepository, bl as FilterCombinator, bm as FilterGroup, be as FilterOperator, bj as FilterRule, bi as FilterValue, bz as FlowDefinition, bw as FlowPage, bx as FlowRelation, bv as FlowRowField, bu as FlowSlot, by as FlowStatus, cD as FlowsTab, d$ as FormContextResponse, cv as FormDensity, fy as FormExecutor, e0 as FormFieldContext, d7 as FormFieldRef, e1 as FormFieldRow, d8 as FormNode, e2 as FormNodeInfo, cw as FormTab, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, cJ as GalleryViewConfig, cN as GalleryViewDefinition, dW as GeneratedDocument, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, P as IdentityVerificationAdapter, bP as InferRecord, bK as InferRecordFromSchema, bQ as InferRecordInput, bR as InferRecordUpdate, bL as InferRecordWithRequirements, eB as InsertOptions, fQ as InvalidPathError, cy as InverseSource, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, dK as InvitationStatus, ct as InviteUserInput, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, cF as ListViewLayout, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, bc as MultiselectFilterOperator, bs as NO_VALUE_OPERATORS, br as NoValueOperator, fp as NodeExecutor, dt as NodePosition, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, b8 as NumberFilterOperator, bq as OPERATORS_BY_TYPE, c5 as ObjectAction, cf as ObjectPermissions, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, O as OcrAdapter, t as OcrInput, u as OcrOptions, w as OcrPage, v as OcrResult, x as OcrTextBlock, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, aD as PdfTemplateField, dA as PendingAction, aI as PendingDocumentRequest, cc as Permission, c4 as PermissionScope, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, bh as PhoneFilterValue, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, aR as ProcessingJob, aT as ProcessingJobStatus, aS as ProcessingJobType, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, bp as QueryState, e3 as ReadOnlyReason, a5 as ReasoningPartData, i5 as RecordDocumentsResult, bU as RecordMetadata, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, bd as RelationFilterOperator, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, cx as RelationSource, gP as RelationValidationError, gO as RelationValidationResult, bf as RelativeDateValue, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, cC as RichtextTab, cb as Role, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, bb as SelectFilterOperator, eF as ShortcutOperator, y as SignatureAdapter, H as SignaturePosition, J as SignatureRequestResult, N as SignatureStatus, K as SignatureStatusResult, iq as SignedUrlOptions, E as SignerRequest, M as SignerStatus, gY as SingleRelationValue, aQ as SlotStatus, bo as SortDirection, fz as StartExecutor, d9 as StartNode, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, b2 as StorageProvider, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, c6 as SystemAction, bV as SystemFields, cg as SystemPermissions, cu as TabType, cz as TableSource, aE as TemplateSource, fg as TenantContext, eU as TenantContextError, b7 as TextFilterOperator, a2 as TextPartData, e5 as ThemeColors, e6 as ThemeLogo, e7 as ThemeTypography, a4 as ThinkingPartData, cI as TimelineViewConfig, cM as TimelineViewDefinition, hv as TokenRevokedError, a3 as ToolPartData, g0 as TraversalOptions, g1 as TraversalResult, bM as TypedAttribute, c1 as TypedObjectRecord, cp as USER_STATUSES, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, aV as UpdateDocument, aH as UpdateDocumentGenerationTemplate, aZ as UpdateDocumentSlot, aX as UpdateDocumentTemplate, b6 as UpdateFile, gE as UpdateObjectInput, a$ as UpdateProcessingJob, ci as UpdateRoleInput, cs as UpdateUserProfile, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, cq as UserProfile, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, cd as UserRoleAssignment, hQ as UserService, co as UserStatus, hP as UserValidationError, hO as UserValidationResult, aC as VariableMapping, Y as VerificationCheck, U as VerificationResult, Q as VerifyInput, cK as ViewConfig, cP as ViewOverlay, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, bT as WithCustomAttributes, dQ as WorkflowAccessGrant, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, e4 as WorkflowAccessMode, en as WorkflowAccessPayload, dB as WorkflowError, dX as WorkflowExecutionContext, dC as WorkflowInstance, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, dL as WorkflowInvitation, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, du as WorkflowLayout, da as WorkflowNodeType, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, dv as WorkflowSlot, dw as WorkflowStatus, dD as WorkflowTransition, gx as WorkflowsRepository, ca as accessLevelToActions, c9 as actionsToAccessLevel, f2 as addSchemaToContext, dk as and, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, dR as canAccessNode, dE as canResumeInstance, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, dY as createEmptyContext, g9 as createMockAdapter, eM as createQueryBuilder, dF as createStartTransition, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, dl as eq, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, e9 as generateCssVariables, fa as getContext, dZ as getContextValue, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, db as getNodeOutputs, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, dm as inValues, d0 as isActivityTab, dc as isAdvancedFormNode, cS as isCalendarView, dn as isConditionGroup, dd as isConditionNode, dp as isConditionRule, c$ as isCustomTab, cQ as isDetailView, de as isDocumentNode, d3 as isDocumentsTab, df as isEndNode, eZ as isFeatureEnabled, cV as isFieldGroup, bA as isFlowDefinition, bB as isFlowPublished, d2 as isFlowsTab, dg as isFormNode, cX as isFormTab, cU as isGalleryView, dS as isGrantExpired, dT as isGrantRevoked, dU as isGrantValid, dG as isInstanceTerminal, dH as isInstanceWaiting, c_ as isInverseSourceTab, dM as isInvitationAccepted, dN as isInvitationExpired, dO as isInvitationValid, iD as isLabelExpression, cR as isListView, bt as isNoValueOperator, cW as isRelationGroup, cZ as isRelationSourceTab, d1 as isRichtextTab, dh as isSimpleFormNode, di as isStartNode, bC as isSystemFlow, dx as isSystemWorkflow, cY as isTableTab, cT as isTimelineView, dV as isTokenRevoked, dy as isWorkflowDefinition, dz as isWorkflowPublished, ea as mergeWithDefaults, dq as neq, dr as or, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, eb as registry, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, d_ as setContextValue, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, ec as viewRegistry, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-kH9dOaQt.mjs';
3
3
  import { D as DateAttribute, U as UserAttribute, a as DocumentAttribute, A as Attribute, P as Phone, F as FeatureGate, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, d as PhoneAttribute, e as CurrencyAttribute, O as Option, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, g as FileAttribute, h as RatingAttribute, i as RelationAttribute, B as BilateralConfig, j as SingleRelationAttribute, k as MultiRelationAttribute, l as RelationTarget, m as FormulaAttribute, n as FormulaReturnType, o as RollupAttribute, p as RollupFunction, q as AttributeType, r as ObjectDefinition, s as FlagValueType, t as FeatureFlagDefinition, u as FlagLevel, v as FeatureFlagsRepository, w as StaticFlagDefault, x as ResolvedFlag } from './validators-DUB0tEzp.mjs';
4
4
  export { z as AttributeGroup, E as BaseAttribute, a8 as CompletionStatus, J as Currency, ah as DEFAULT_VALIDATION_MESSAGES, H as DateFormat, I as DateValue, ab as FORBIDDEN_PROPERTY_TYPES, a0 as FeatureFlagsConfig, $ as FlagOverride, ac as ForbiddenPropertyType, K as Location, Q as LocationGranularity, Z as NON_SORTABLE_TYPES, G as NumberUnit, a7 as ObjectAttribute, a9 as ObjectRecord, ad as PropertyAttribute, ae as PropertySchema, aa as PropertyType, V as RELATION_TARGET_ANY, a1 as RESERVED_ATTRIBUTE_NAMES, a3 as ReservedAttributeName, a2 as SYSTEM_FIELD_NAMES, a6 as SharingMode, y as StatusGroup, a4 as SystemFieldName, a5 as Timestamps, ag as ValidationMessages, b1 as ValidationResult, aB as attributeConfigSchemas, am as checkboxConfigSchema, ba as computeRecordStatus, a_ as createAttributeValidator, aI as createCheckboxValidator, aL as createCurrencyValidator, aJ as createDateValidator, b5 as createDraftValidator, aQ as createFileValidator, a$ as createFormAttributeValidator, aW as createFormulaValidator, aP as createLocationValidator, aT as createMultiRelationValidator, aO as createMultiselectValidator, aH as createNumberValidator, b0 as createObjectValidator, aK as createPhoneValidator, aV as createRatingValidator, aU as createRelationValidator, aZ as createRichtextValidator, aX as createRollupValidator, aN as createSelectValidator, aS as createSingleRelationValidator, aM as createStatusValidator, aY as createTextAreaValidator, aG as createTextValidator, aR as createUserValidator, ap as currencyConfigSchema, an as dateConfigSchema, aA as documentConfigSchema, au as fileConfigSchema, af as formatZodErrors, ay as formulaConfigSchema, aC as getAttributeConfigSchema, b8 as getMissingRequiredAttributes, Y as inferInverseCardinality, _ as isAttributeSortable, X as isBilateralRelation, b9 as isRecordComplete, W as isUniversalRelation, ar as locationConfigSchema, at as multiselectConfigSchema, al as numberConfigSchema, aE as parseAttributeConfig, ao as phoneConfigSchema, ax as ratingConfigSchema, aw as relationConfigSchema, ak as richtextConfigSchema, az as rollupConfigSchema, aF as safeParseAttributeConfig, as as selectConfigSchema, aq as statusConfigSchema, ai as textConfigSchema, aj as textareaConfigSchema, av as userConfigSchema, b2 as validateAttribute, aD as validateAttributeConfig, b6 as validateDraft, b7 as validateDraftOrThrow, b3 as validateObject, b4 as validateObjectOrThrow } from './validators-DUB0tEzp.mjs';
5
5
  import { z } from 'zod';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { S as SystemResource, A as Action, I as InferAttributeValue, F as Field, a as AttributeGroupField, b as FieldGroup, R as RelationGroup, D as DetailViewLayout, c as SidePanelConfig, G as Group, d as DetailViewDefinition, e as InstanceStatus, T as Tab, f as TableTab, C as CreateMode, g as FilterState, h as SortRule, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, k as ConditionGroup, l as ConditionRule, m as WorkflowNode, n as WorkflowDefinition, o as FlowRow, p as ListViewConfig, q as ListViewTab, V as ViewType, r as ViewDefinition, s as DocumentTemplate } from './runtime-VuCTBbS6.js';
2
- export { ad as AIBatchQuestion, ae as AIBatchQuestionAnswer, ac as AIBatchQuestionOption, a7 as AIChatMessage, a6 as AIChatMessagePart, a1 as AIChatMessagePartType, at as AICompactionSummary, aj as AIConversation, gd as AIConversationsRepository, ar as AIMemoryEntry, aq as AIMemoryType, ak as AIMessage, ai as AIMessageAttachment, Z as AIMessageRole, ao as AIProviderMetrics, aa as AIQuestion, ab as AIQuestionAnswer, a9 as AIQuestionOption, a8 as AIQuestionType, as as AITenantPersona, _ as AIThinkingLevel, ag as AITodoItem, ah as AITodoList, af as AITodoStatus, a0 as AIToolCall, al as AIToolCallRecord, $ as AIToolCallStatus, an as AIUsageMetrics, ge as AIUsageMetricsRepository, am as AIUserMemory, gf as AIUserMemoryRepository, c8 as ALL_ACTIONS, c7 as AccessLevel, cB as ActivityTab, bO as AddAttribute, gD as AddAttributeInput, bn as AdvancedFilterState, ck as AssignRoleInput, g2 as AttributeChange, bN as AttributeMap, bJ as AttributeSchema, gg as AttributesRepository, av as AuditAction, aw as AuditActorType, ax as AuditChange, aA as AuditListOptions, ay as AuditLogEntry, gh as AuditRepository, au as AuditResourceType, hT as AuditService, aB as AuditServiceOptions, gz as BaseRepository, gy as BaseService, B as BoundingBox, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, cH as CalendarViewConfig, cL as CalendarViewDefinition, ds as CanvasViewport, b9 as CheckboxFilterOperator, fv as ConditionExecutor, d4 as ConditionNode, dj as ConditionOperator, cO as ConfigOverrides, ap as CreateAIMessageInput, az as CreateAuditLogInput, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, aU as CreateDocument, aG as CreateDocumentGenerationTemplate, aY as CreateDocumentSlot, aW as CreateDocumentTemplate, b5 as CreateFile, dP as CreateGrantInput, hx as CreateGrantResult, dI as CreateInvitationInput, dJ as CreateInvitationResult, iS as CreateObjectRecord, cj as CreatePermissionInput, a_ as CreateProcessingJob, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ch as CreateRoleInput, z as CreateSignatureInput, cr as CreateUserProfile, ih as CreateViewInput, hK as CreateWorkflowInput, bg as CurrencyFilterValue, bS as CustomAttributeValue, cA as CustomTab, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, e8 as DEFAULT_THEME, ej as DatabaseAdapter, ba as DateFilterOperator, cG as DetailViewConfig, aN as Document, aK as DocumentAutoProcessing, X as DocumentData, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, aF as DocumentGenerationTemplate, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, b0 as DocumentListOptions, d5 as DocumentNode, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, aP as DocumentSlot, aJ as DocumentSlotDefinition, gl as DocumentSlotsRepository, aO as DocumentStatus, b1 as DocumentTemplateListOptions, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, cE as DocumentsTab, ce as EffectivePermissions, fx as EndExecutor, d6 as EndNode, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, bk as ExtendedFilterRule, c0 as ExtractAttributes, c2 as ExtractObjectRecord, c3 as ExtractObjectRecordWithCustom, bW as ExtractRecord, bY as ExtractRecordInput, bZ as ExtractRecordInputStrict, bX as ExtractRecordStrict, b_ as ExtractRecordUpdate, b$ as ExtractRecordUpdateStrict, aM as ExtractionField, aL as ExtractionMapping, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, b4 as File, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, b3 as FileVisibility, go as FilesRepository, bl as FilterCombinator, bm as FilterGroup, be as FilterOperator, bj as FilterRule, bi as FilterValue, bz as FlowDefinition, bw as FlowPage, bx as FlowRelation, bv as FlowRowField, bu as FlowSlot, by as FlowStatus, cD as FlowsTab, d$ as FormContextResponse, cv as FormDensity, fy as FormExecutor, e0 as FormFieldContext, d7 as FormFieldRef, e1 as FormFieldRow, d8 as FormNode, e2 as FormNodeInfo, cw as FormTab, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, cJ as GalleryViewConfig, cN as GalleryViewDefinition, dW as GeneratedDocument, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, P as IdentityVerificationAdapter, bP as InferRecord, bK as InferRecordFromSchema, bQ as InferRecordInput, bR as InferRecordUpdate, bL as InferRecordWithRequirements, eB as InsertOptions, fQ as InvalidPathError, cy as InverseSource, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, dK as InvitationStatus, ct as InviteUserInput, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, cF as ListViewLayout, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, bc as MultiselectFilterOperator, bs as NO_VALUE_OPERATORS, br as NoValueOperator, fp as NodeExecutor, dt as NodePosition, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, b8 as NumberFilterOperator, bq as OPERATORS_BY_TYPE, c5 as ObjectAction, cf as ObjectPermissions, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, O as OcrAdapter, t as OcrInput, u as OcrOptions, w as OcrPage, v as OcrResult, x as OcrTextBlock, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, aD as PdfTemplateField, dA as PendingAction, aI as PendingDocumentRequest, cc as Permission, c4 as PermissionScope, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, bh as PhoneFilterValue, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, aR as ProcessingJob, aT as ProcessingJobStatus, aS as ProcessingJobType, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, bp as QueryState, e3 as ReadOnlyReason, a5 as ReasoningPartData, i5 as RecordDocumentsResult, bU as RecordMetadata, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, bd as RelationFilterOperator, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, cx as RelationSource, gP as RelationValidationError, gO as RelationValidationResult, bf as RelativeDateValue, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, cC as RichtextTab, cb as Role, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, bb as SelectFilterOperator, eF as ShortcutOperator, y as SignatureAdapter, H as SignaturePosition, J as SignatureRequestResult, N as SignatureStatus, K as SignatureStatusResult, iq as SignedUrlOptions, E as SignerRequest, M as SignerStatus, gY as SingleRelationValue, aQ as SlotStatus, bo as SortDirection, fz as StartExecutor, d9 as StartNode, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, b2 as StorageProvider, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, c6 as SystemAction, bV as SystemFields, cg as SystemPermissions, cu as TabType, cz as TableSource, aE as TemplateSource, fg as TenantContext, eU as TenantContextError, b7 as TextFilterOperator, a2 as TextPartData, e5 as ThemeColors, e6 as ThemeLogo, e7 as ThemeTypography, a4 as ThinkingPartData, cI as TimelineViewConfig, cM as TimelineViewDefinition, hv as TokenRevokedError, a3 as ToolPartData, g0 as TraversalOptions, g1 as TraversalResult, bM as TypedAttribute, c1 as TypedObjectRecord, cp as USER_STATUSES, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, aV as UpdateDocument, aH as UpdateDocumentGenerationTemplate, aZ as UpdateDocumentSlot, aX as UpdateDocumentTemplate, b6 as UpdateFile, gE as UpdateObjectInput, a$ as UpdateProcessingJob, ci as UpdateRoleInput, cs as UpdateUserProfile, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, cq as UserProfile, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, cd as UserRoleAssignment, hQ as UserService, co as UserStatus, hP as UserValidationError, hO as UserValidationResult, aC as VariableMapping, Y as VerificationCheck, U as VerificationResult, Q as VerifyInput, cK as ViewConfig, cP as ViewOverlay, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, bT as WithCustomAttributes, dQ as WorkflowAccessGrant, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, e4 as WorkflowAccessMode, en as WorkflowAccessPayload, dB as WorkflowError, dX as WorkflowExecutionContext, dC as WorkflowInstance, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, dL as WorkflowInvitation, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, du as WorkflowLayout, da as WorkflowNodeType, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, dv as WorkflowSlot, dw as WorkflowStatus, dD as WorkflowTransition, gx as WorkflowsRepository, ca as accessLevelToActions, c9 as actionsToAccessLevel, f2 as addSchemaToContext, dk as and, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, dR as canAccessNode, dE as canResumeInstance, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, dY as createEmptyContext, g9 as createMockAdapter, eM as createQueryBuilder, dF as createStartTransition, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, dl as eq, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, e9 as generateCssVariables, fa as getContext, dZ as getContextValue, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, db as getNodeOutputs, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, dm as inValues, d0 as isActivityTab, dc as isAdvancedFormNode, cS as isCalendarView, dn as isConditionGroup, dd as isConditionNode, dp as isConditionRule, c$ as isCustomTab, cQ as isDetailView, de as isDocumentNode, d3 as isDocumentsTab, df as isEndNode, eZ as isFeatureEnabled, cV as isFieldGroup, bA as isFlowDefinition, bB as isFlowPublished, d2 as isFlowsTab, dg as isFormNode, cX as isFormTab, cU as isGalleryView, dS as isGrantExpired, dT as isGrantRevoked, dU as isGrantValid, dG as isInstanceTerminal, dH as isInstanceWaiting, c_ as isInverseSourceTab, dM as isInvitationAccepted, dN as isInvitationExpired, dO as isInvitationValid, iD as isLabelExpression, cR as isListView, bt as isNoValueOperator, cW as isRelationGroup, cZ as isRelationSourceTab, d1 as isRichtextTab, dh as isSimpleFormNode, di as isStartNode, bC as isSystemFlow, dx as isSystemWorkflow, cY as isTableTab, cT as isTimelineView, dV as isTokenRevoked, dy as isWorkflowDefinition, dz as isWorkflowPublished, ea as mergeWithDefaults, dq as neq, dr as or, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, eb as registry, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, d_ as setContextValue, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, ec as viewRegistry, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-VuCTBbS6.js';
1
+ import { S as SystemResource, A as Action, I as InferAttributeValue, F as Field, a as AttributeGroupField, b as FieldGroup, R as RelationGroup, D as DetailViewLayout, c as SidePanelConfig, G as Group, d as DetailViewDefinition, e as InstanceStatus, T as Tab, f as TableTab, C as CreateMode, g as FilterState, h as SortRule, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, k as ConditionGroup, l as ConditionRule, m as WorkflowNode, n as WorkflowDefinition, o as FlowRow, p as ListViewConfig, q as ListViewTab, V as ViewType, r as ViewDefinition, s as DocumentTemplate } from './runtime-DE2X2kPp.js';
2
+ export { ad as AIBatchQuestion, ae as AIBatchQuestionAnswer, ac as AIBatchQuestionOption, a7 as AIChatMessage, a6 as AIChatMessagePart, a1 as AIChatMessagePartType, at as AICompactionSummary, aj as AIConversation, gd as AIConversationsRepository, ar as AIMemoryEntry, aq as AIMemoryType, ak as AIMessage, ai as AIMessageAttachment, Z as AIMessageRole, ao as AIProviderMetrics, aa as AIQuestion, ab as AIQuestionAnswer, a9 as AIQuestionOption, a8 as AIQuestionType, as as AITenantPersona, _ as AIThinkingLevel, ag as AITodoItem, ah as AITodoList, af as AITodoStatus, a0 as AIToolCall, al as AIToolCallRecord, $ as AIToolCallStatus, an as AIUsageMetrics, ge as AIUsageMetricsRepository, am as AIUserMemory, gf as AIUserMemoryRepository, c8 as ALL_ACTIONS, c7 as AccessLevel, cB as ActivityTab, bO as AddAttribute, gD as AddAttributeInput, bn as AdvancedFilterState, ck as AssignRoleInput, g2 as AttributeChange, bN as AttributeMap, bJ as AttributeSchema, gg as AttributesRepository, av as AuditAction, aw as AuditActorType, ax as AuditChange, aA as AuditListOptions, ay as AuditLogEntry, gh as AuditRepository, au as AuditResourceType, hT as AuditService, aB as AuditServiceOptions, gz as BaseRepository, gy as BaseService, B as BoundingBox, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, cH as CalendarViewConfig, cL as CalendarViewDefinition, ds as CanvasViewport, b9 as CheckboxFilterOperator, fv as ConditionExecutor, d4 as ConditionNode, dj as ConditionOperator, cO as ConfigOverrides, ap as CreateAIMessageInput, az as CreateAuditLogInput, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, aU as CreateDocument, aG as CreateDocumentGenerationTemplate, aY as CreateDocumentSlot, aW as CreateDocumentTemplate, b5 as CreateFile, dP as CreateGrantInput, hx as CreateGrantResult, dI as CreateInvitationInput, dJ as CreateInvitationResult, iS as CreateObjectRecord, cj as CreatePermissionInput, a_ as CreateProcessingJob, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ch as CreateRoleInput, z as CreateSignatureInput, cr as CreateUserProfile, ih as CreateViewInput, hK as CreateWorkflowInput, bg as CurrencyFilterValue, bS as CustomAttributeValue, cA as CustomTab, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, e8 as DEFAULT_THEME, ej as DatabaseAdapter, ba as DateFilterOperator, cG as DetailViewConfig, aN as Document, aK as DocumentAutoProcessing, X as DocumentData, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, aF as DocumentGenerationTemplate, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, b0 as DocumentListOptions, d5 as DocumentNode, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, aP as DocumentSlot, aJ as DocumentSlotDefinition, gl as DocumentSlotsRepository, aO as DocumentStatus, b1 as DocumentTemplateListOptions, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, cE as DocumentsTab, ce as EffectivePermissions, fx as EndExecutor, d6 as EndNode, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, bk as ExtendedFilterRule, c0 as ExtractAttributes, c2 as ExtractObjectRecord, c3 as ExtractObjectRecordWithCustom, bW as ExtractRecord, bY as ExtractRecordInput, bZ as ExtractRecordInputStrict, bX as ExtractRecordStrict, b_ as ExtractRecordUpdate, b$ as ExtractRecordUpdateStrict, aM as ExtractionField, aL as ExtractionMapping, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, b4 as File, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, b3 as FileVisibility, go as FilesRepository, bl as FilterCombinator, bm as FilterGroup, be as FilterOperator, bj as FilterRule, bi as FilterValue, bz as FlowDefinition, bw as FlowPage, bx as FlowRelation, bv as FlowRowField, bu as FlowSlot, by as FlowStatus, cD as FlowsTab, d$ as FormContextResponse, cv as FormDensity, fy as FormExecutor, e0 as FormFieldContext, d7 as FormFieldRef, e1 as FormFieldRow, d8 as FormNode, e2 as FormNodeInfo, cw as FormTab, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, cJ as GalleryViewConfig, cN as GalleryViewDefinition, dW as GeneratedDocument, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, P as IdentityVerificationAdapter, bP as InferRecord, bK as InferRecordFromSchema, bQ as InferRecordInput, bR as InferRecordUpdate, bL as InferRecordWithRequirements, eB as InsertOptions, fQ as InvalidPathError, cy as InverseSource, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, dK as InvitationStatus, ct as InviteUserInput, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, cF as ListViewLayout, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, bc as MultiselectFilterOperator, bs as NO_VALUE_OPERATORS, br as NoValueOperator, fp as NodeExecutor, dt as NodePosition, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, b8 as NumberFilterOperator, bq as OPERATORS_BY_TYPE, c5 as ObjectAction, cf as ObjectPermissions, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, O as OcrAdapter, t as OcrInput, u as OcrOptions, w as OcrPage, v as OcrResult, x as OcrTextBlock, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, aD as PdfTemplateField, dA as PendingAction, aI as PendingDocumentRequest, cc as Permission, c4 as PermissionScope, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, bh as PhoneFilterValue, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, aR as ProcessingJob, aT as ProcessingJobStatus, aS as ProcessingJobType, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, bp as QueryState, e3 as ReadOnlyReason, a5 as ReasoningPartData, i5 as RecordDocumentsResult, bU as RecordMetadata, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, bd as RelationFilterOperator, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, cx as RelationSource, gP as RelationValidationError, gO as RelationValidationResult, bf as RelativeDateValue, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, cC as RichtextTab, cb as Role, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, bb as SelectFilterOperator, eF as ShortcutOperator, y as SignatureAdapter, H as SignaturePosition, J as SignatureRequestResult, N as SignatureStatus, K as SignatureStatusResult, iq as SignedUrlOptions, E as SignerRequest, M as SignerStatus, gY as SingleRelationValue, aQ as SlotStatus, bo as SortDirection, fz as StartExecutor, d9 as StartNode, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, b2 as StorageProvider, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, c6 as SystemAction, bV as SystemFields, cg as SystemPermissions, cu as TabType, cz as TableSource, aE as TemplateSource, fg as TenantContext, eU as TenantContextError, b7 as TextFilterOperator, a2 as TextPartData, e5 as ThemeColors, e6 as ThemeLogo, e7 as ThemeTypography, a4 as ThinkingPartData, cI as TimelineViewConfig, cM as TimelineViewDefinition, hv as TokenRevokedError, a3 as ToolPartData, g0 as TraversalOptions, g1 as TraversalResult, bM as TypedAttribute, c1 as TypedObjectRecord, cp as USER_STATUSES, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, aV as UpdateDocument, aH as UpdateDocumentGenerationTemplate, aZ as UpdateDocumentSlot, aX as UpdateDocumentTemplate, b6 as UpdateFile, gE as UpdateObjectInput, a$ as UpdateProcessingJob, ci as UpdateRoleInput, cs as UpdateUserProfile, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, cq as UserProfile, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, cd as UserRoleAssignment, hQ as UserService, co as UserStatus, hP as UserValidationError, hO as UserValidationResult, aC as VariableMapping, Y as VerificationCheck, U as VerificationResult, Q as VerifyInput, cK as ViewConfig, cP as ViewOverlay, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, bT as WithCustomAttributes, dQ as WorkflowAccessGrant, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, e4 as WorkflowAccessMode, en as WorkflowAccessPayload, dB as WorkflowError, dX as WorkflowExecutionContext, dC as WorkflowInstance, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, dL as WorkflowInvitation, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, du as WorkflowLayout, da as WorkflowNodeType, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, dv as WorkflowSlot, dw as WorkflowStatus, dD as WorkflowTransition, gx as WorkflowsRepository, ca as accessLevelToActions, c9 as actionsToAccessLevel, f2 as addSchemaToContext, dk as and, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, dR as canAccessNode, dE as canResumeInstance, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, dY as createEmptyContext, g9 as createMockAdapter, eM as createQueryBuilder, dF as createStartTransition, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, dl as eq, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, e9 as generateCssVariables, fa as getContext, dZ as getContextValue, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, db as getNodeOutputs, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, dm as inValues, d0 as isActivityTab, dc as isAdvancedFormNode, cS as isCalendarView, dn as isConditionGroup, dd as isConditionNode, dp as isConditionRule, c$ as isCustomTab, cQ as isDetailView, de as isDocumentNode, d3 as isDocumentsTab, df as isEndNode, eZ as isFeatureEnabled, cV as isFieldGroup, bA as isFlowDefinition, bB as isFlowPublished, d2 as isFlowsTab, dg as isFormNode, cX as isFormTab, cU as isGalleryView, dS as isGrantExpired, dT as isGrantRevoked, dU as isGrantValid, dG as isInstanceTerminal, dH as isInstanceWaiting, c_ as isInverseSourceTab, dM as isInvitationAccepted, dN as isInvitationExpired, dO as isInvitationValid, iD as isLabelExpression, cR as isListView, bt as isNoValueOperator, cW as isRelationGroup, cZ as isRelationSourceTab, d1 as isRichtextTab, dh as isSimpleFormNode, di as isStartNode, bC as isSystemFlow, dx as isSystemWorkflow, cY as isTableTab, cT as isTimelineView, dV as isTokenRevoked, dy as isWorkflowDefinition, dz as isWorkflowPublished, ea as mergeWithDefaults, dq as neq, dr as or, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, eb as registry, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, d_ as setContextValue, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, ec as viewRegistry, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-DE2X2kPp.js';
3
3
  import { D as DateAttribute, U as UserAttribute, a as DocumentAttribute, A as Attribute, P as Phone, F as FeatureGate, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, d as PhoneAttribute, e as CurrencyAttribute, O as Option, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, g as FileAttribute, h as RatingAttribute, i as RelationAttribute, B as BilateralConfig, j as SingleRelationAttribute, k as MultiRelationAttribute, l as RelationTarget, m as FormulaAttribute, n as FormulaReturnType, o as RollupAttribute, p as RollupFunction, q as AttributeType, r as ObjectDefinition, s as FlagValueType, t as FeatureFlagDefinition, u as FlagLevel, v as FeatureFlagsRepository, w as StaticFlagDefault, x as ResolvedFlag } from './validators-BxPuQ2GT.js';
4
4
  export { z as AttributeGroup, E as BaseAttribute, a8 as CompletionStatus, J as Currency, ah as DEFAULT_VALIDATION_MESSAGES, H as DateFormat, I as DateValue, ab as FORBIDDEN_PROPERTY_TYPES, a0 as FeatureFlagsConfig, $ as FlagOverride, ac as ForbiddenPropertyType, K as Location, Q as LocationGranularity, Z as NON_SORTABLE_TYPES, G as NumberUnit, a7 as ObjectAttribute, a9 as ObjectRecord, ad as PropertyAttribute, ae as PropertySchema, aa as PropertyType, V as RELATION_TARGET_ANY, a1 as RESERVED_ATTRIBUTE_NAMES, a3 as ReservedAttributeName, a2 as SYSTEM_FIELD_NAMES, a6 as SharingMode, y as StatusGroup, a4 as SystemFieldName, a5 as Timestamps, ag as ValidationMessages, b1 as ValidationResult, aB as attributeConfigSchemas, am as checkboxConfigSchema, ba as computeRecordStatus, a_ as createAttributeValidator, aI as createCheckboxValidator, aL as createCurrencyValidator, aJ as createDateValidator, b5 as createDraftValidator, aQ as createFileValidator, a$ as createFormAttributeValidator, aW as createFormulaValidator, aP as createLocationValidator, aT as createMultiRelationValidator, aO as createMultiselectValidator, aH as createNumberValidator, b0 as createObjectValidator, aK as createPhoneValidator, aV as createRatingValidator, aU as createRelationValidator, aZ as createRichtextValidator, aX as createRollupValidator, aN as createSelectValidator, aS as createSingleRelationValidator, aM as createStatusValidator, aY as createTextAreaValidator, aG as createTextValidator, aR as createUserValidator, ap as currencyConfigSchema, an as dateConfigSchema, aA as documentConfigSchema, au as fileConfigSchema, af as formatZodErrors, ay as formulaConfigSchema, aC as getAttributeConfigSchema, b8 as getMissingRequiredAttributes, Y as inferInverseCardinality, _ as isAttributeSortable, X as isBilateralRelation, b9 as isRecordComplete, W as isUniversalRelation, ar as locationConfigSchema, at as multiselectConfigSchema, al as numberConfigSchema, aE as parseAttributeConfig, ao as phoneConfigSchema, ax as ratingConfigSchema, aw as relationConfigSchema, ak as richtextConfigSchema, az as rollupConfigSchema, aF as safeParseAttributeConfig, as as selectConfigSchema, aq as statusConfigSchema, ai as textConfigSchema, aj as textareaConfigSchema, av as userConfigSchema, b2 as validateAttribute, aD as validateAttributeConfig, b6 as validateDraft, b7 as validateDraftOrThrow, b3 as validateObject, b4 as validateObjectOrThrow } from './validators-BxPuQ2GT.js';
5
5
  import { z } from 'zod';
package/dist/index.js CHANGED
@@ -333,7 +333,7 @@
333
333
 
334
334
 
335
335
 
336
- var _chunk27O7E2WMjs = require('./chunk-27O7E2WM.js');
336
+ var _chunk7JHBQL6Hjs = require('./chunk-7JHBQL6H.js');
337
337
 
338
338
 
339
339
 
@@ -591,14 +591,14 @@ function applyRelationProps(label, props, propertyDefs) {
591
591
  if (value == null) continue;
592
592
  const def = defMap.get(key);
593
593
  if (def) {
594
- const formatted = _chunk27O7E2WMjs.formatAttributeValue.call(void 0, value, def);
595
- formattedProps[key] = formatted === _chunk27O7E2WMjs.EMPTY_VALUE_PLACEHOLDER ? "" : formatted;
594
+ const formatted = _chunk7JHBQL6Hjs.formatAttributeValue.call(void 0, value, def);
595
+ formattedProps[key] = formatted === _chunk7JHBQL6Hjs.EMPTY_VALUE_PLACEHOLDER ? "" : formatted;
596
596
  } else {
597
597
  formattedProps[key] = value;
598
598
  }
599
599
  }
600
600
  }
601
- const result = _chunk27O7E2WMjs.renderLabelExpression.call(void 0, label, { props: formattedProps }, "");
601
+ const result = _chunk7JHBQL6Hjs.renderLabelExpression.call(void 0, label, { props: formattedProps }, "");
602
602
  return result.replace(/\(\s*\)/g, "").replace(/\[\s*\]/g, "").replace(/\s*[-\u2014|:]\s*$/g, "").replace(/\s{2,}/g, " ").trim();
603
603
  }
604
604
 
@@ -2048,4 +2048,4 @@ function isViewCustomized(view2, object2) {
2048
2048
 
2049
2049
 
2050
2050
 
2051
- exports.ALL_ACTIONS = ALL_ACTIONS; exports.ALL_SYSTEM_RESOURCES = _chunkJZO52C3Fjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunk27O7E2WMjs.ActivityTabConfig; exports.AttributeInUseError = _chunk27O7E2WMjs.AttributeInUseError; exports.AttributeNotFoundError = _chunk27O7E2WMjs.AttributeNotFoundError; exports.AuditService = _chunk27O7E2WMjs.AuditService; exports.AuthMethodSchema = _chunk27O7E2WMjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunk27O7E2WMjs.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunk27O7E2WMjs.BaseRepository; exports.BaseService = _chunk27O7E2WMjs.BaseService; exports.ConcurrentModificationError = _chunk27O7E2WMjs.ConcurrentModificationError; exports.ConditionExecutor = _chunk27O7E2WMjs.ConditionExecutor; exports.ConditionGroupSchema = _chunk27O7E2WMjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunk27O7E2WMjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunk27O7E2WMjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunk27O7E2WMjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunk27O7E2WMjs.CreateShareInputSchema; exports.CustomTabConfig = _chunk27O7E2WMjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunk27O7E2WMjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunkJZO52C3Fjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunkJZO52C3Fjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunkJZO52C3Fjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunkJZO52C3Fjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunk27O7E2WMjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunk3WTK7ESHjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunk27O7E2WMjs.DRIVING_LICENSE; exports.DetailViewBuilder = _chunk27O7E2WMjs.DetailViewBuilder; exports.DocumentExecutor = _chunk27O7E2WMjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk27O7E2WMjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk27O7E2WMjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk27O7E2WMjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunk27O7E2WMjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunk27O7E2WMjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk27O7E2WMjs.DocumentProcessingService; exports.DocumentRenderError = _chunk27O7E2WMjs.DocumentRenderError; exports.DocumentRendererService = _chunk27O7E2WMjs.DocumentRendererService; exports.DocumentService = _chunk27O7E2WMjs.DocumentService; exports.DocumentTemplateService = _chunk27O7E2WMjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunk27O7E2WMjs.DocumentsTabConfig; exports.DuplicateError = _chunk27O7E2WMjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunk27O7E2WMjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunk27O7E2WMjs.EndExecutor; exports.EndNodeSchema = _chunk27O7E2WMjs.EndNodeSchema; exports.ExecutorRegistry = _chunk27O7E2WMjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunk27O7E2WMjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunk27O7E2WMjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunk27O7E2WMjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunk27O7E2WMjs.FileNotFoundError; exports.FileService = _chunk27O7E2WMjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunk27O7E2WMjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunk27O7E2WMjs.FlowRowSchema; exports.FlowsTabConfig = _chunk27O7E2WMjs.FlowsTabConfig; exports.ForbiddenError = _chunk27O7E2WMjs.ForbiddenError; exports.FormExecutor = _chunk27O7E2WMjs.FormExecutor; exports.FormFieldRefSchema = _chunk27O7E2WMjs.FormFieldRefSchema; exports.FormNodeSchema = _chunk27O7E2WMjs.FormNodeSchema; exports.FormulaResolverService = _chunk27O7E2WMjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunk27O7E2WMjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunk27O7E2WMjs.GeocodingService; exports.GlobalSearchService = _chunk27O7E2WMjs.GlobalSearchService; exports.GrantExpiredError = _chunk27O7E2WMjs.GrantExpiredError; exports.GrantNotFoundError = _chunk27O7E2WMjs.GrantNotFoundError; exports.GrantRevokedError = _chunk27O7E2WMjs.GrantRevokedError; exports.GroupBuilder = _chunk27O7E2WMjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunk27O7E2WMjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunk27O7E2WMjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk27O7E2WMjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk27O7E2WMjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk27O7E2WMjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk27O7E2WMjs.InvitationRevokedError; exports.ListViewBuilder = _chunk27O7E2WMjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunk27O7E2WMjs.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunk27O7E2WMjs.MaxDepthExceededError; exports.NON_SORTABLE_TYPES = _chunk27O7E2WMjs.NON_SORTABLE_TYPES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunk27O7E2WMjs.NodePositionSchema; exports.NoopCacheAdapter = _chunk27O7E2WMjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk27O7E2WMjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk27O7E2WMjs.NoopHookRegistry; exports.NotFoundError = _chunk27O7E2WMjs.NotFoundError; exports.NotSystemObjectError = _chunk27O7E2WMjs.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunk27O7E2WMjs.ObjectBuilder; exports.ObjectNotFoundError = _chunk27O7E2WMjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunk27O7E2WMjs.ObjectReferencedError; exports.ObjectSchemaService = _chunk27O7E2WMjs.ObjectSchemaService; exports.PASSPORT = _chunk27O7E2WMjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunk27O7E2WMjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunk27O7E2WMjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunk27O7E2WMjs.PermissionService; exports.PolicyRegistry = _chunk27O7E2WMjs.PolicyRegistry; exports.PolicyViolationError = _chunk27O7E2WMjs.PolicyViolationError; exports.ProtectedResourceError = _chunk27O7E2WMjs.ProtectedResourceError; exports.ProtectedRoleError = _chunk27O7E2WMjs.ProtectedRoleError; exports.QueryBuilder = _chunk27O7E2WMjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk27O7E2WMjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk27O7E2WMjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunk27O7E2WMjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunk27O7E2WMjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunk27O7E2WMjs.RecordNotFoundError; exports.RecordQueryService = _chunk27O7E2WMjs.RecordQueryService; exports.RecordReferencedError = _chunk27O7E2WMjs.RecordReferencedError; exports.RecordResolverService = _chunk27O7E2WMjs.RecordResolverService; exports.RecordService = _chunk27O7E2WMjs.RecordService; exports.RelationGroupBuilder = _chunk27O7E2WMjs.RelationGroupBuilder; exports.RelationPropertiesService = _chunk27O7E2WMjs.RelationPropertiesService; exports.RelationService = _chunk27O7E2WMjs.RelationService; exports.RichtextTabConfig = _chunk27O7E2WMjs.RichtextTabConfig; exports.RoleNotFoundError = _chunk27O7E2WMjs.RoleNotFoundError; exports.RollupScheduler = _chunk27O7E2WMjs.RollupScheduler; exports.RollupService = _chunk27O7E2WMjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk27O7E2WMjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunk27O7E2WMjs.SIGNABLE_CONTRACT; exports.SORTABLE_ATTRIBUTE_TYPES = _chunk27O7E2WMjs.SORTABLE_ATTRIBUTE_TYPES; exports.SYSTEM_ATTRIBUTES = _chunk27O7E2WMjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunk27O7E2WMjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunkJZO52C3Fjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunkJZO52C3Fjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunk27O7E2WMjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunk27O7E2WMjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunk27O7E2WMjs.SchemaContextAwareRepository; exports.SchemaError = _chunk27O7E2WMjs.SchemaError; exports.SchemaErrorCode = _chunk27O7E2WMjs.SchemaErrorCode; exports.ShareStatusSchema = _chunk27O7E2WMjs.ShareStatusSchema; exports.SlotModeSchema = _chunk27O7E2WMjs.SlotModeSchema; exports.StartExecutor = _chunk27O7E2WMjs.StartExecutor; exports.StartNodeSchema = _chunk27O7E2WMjs.StartNodeSchema; exports.StorageDownloadNotSupportedError = _chunk27O7E2WMjs.StorageDownloadNotSupportedError; exports.SyncError = _chunk27O7E2WMjs.SyncError; exports.TabBuilder = _chunk27O7E2WMjs.TabBuilder; exports.TableTabConfig = _chunk27O7E2WMjs.TableTabConfig; exports.TenantContextError = _chunk27O7E2WMjs.TenantContextError; exports.ThemeColorsSchema = _chunk27O7E2WMjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunk27O7E2WMjs.ThemeLogoSchema; exports.TokenRevokedError = _chunk27O7E2WMjs.TokenRevokedError; exports.USER_STATUSES = USER_STATUSES; exports.UserProfileNotFoundError = _chunk27O7E2WMjs.UserProfileNotFoundError; exports.UserProfileService = _chunk27O7E2WMjs.UserProfileService; exports.UserService = _chunk27O7E2WMjs.UserService; exports.ValidationError = _chunk27O7E2WMjs.ValidationError; exports.ViewBuilder = _chunk27O7E2WMjs.ViewBuilder; exports.ViewService = _chunk27O7E2WMjs.ViewService; exports.ViewportSchema = _chunk27O7E2WMjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunk27O7E2WMjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunk27O7E2WMjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunk27O7E2WMjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunk27O7E2WMjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunk27O7E2WMjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunk27O7E2WMjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunk27O7E2WMjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunk27O7E2WMjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunk27O7E2WMjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk27O7E2WMjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk27O7E2WMjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunk27O7E2WMjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunk27O7E2WMjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunk27O7E2WMjs.WorkflowRelationService; exports.WorkflowService = _chunk27O7E2WMjs.WorkflowService; exports.WorkflowShareSchema = _chunk27O7E2WMjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunk27O7E2WMjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunk27O7E2WMjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunk27O7E2WMjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunk27O7E2WMjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunk27O7E2WMjs.WorkflowThemeSchema; exports.accessLevelToActions = accessLevelToActions; exports.actionsToAccessLevel = actionsToAccessLevel; exports.addSchemaToContext = _chunk27O7E2WMjs.addSchemaToContext; exports.and = _chunk27O7E2WMjs.and; exports.applyDefaultValues = _chunk27O7E2WMjs.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunk3WTK7ESHjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunk27O7E2WMjs.buildAuditChanges; exports.buildPolicyContext = _chunk27O7E2WMjs.buildPolicyContext; exports.cacheKeys = _chunk27O7E2WMjs.cacheKeys; exports.cacheTtl = _chunk27O7E2WMjs.cacheTtl; exports.canAccessNode = _chunk27O7E2WMjs.canAccessNode; exports.canResumeInstance = _chunk27O7E2WMjs.canResumeInstance; exports.checkPermission = _chunk27O7E2WMjs.checkPermission; exports.checkRecordAccess = _chunk27O7E2WMjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk27O7E2WMjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk27O7E2WMjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk27O7E2WMjs.checkSharedObjectWriteAccess; exports.checkbox = _chunk27O7E2WMjs.checkbox; exports.checkboxConfigSchema = _chunk3WTK7ESHjs.checkboxConfigSchema; exports.complete = _chunk27O7E2WMjs.complete; exports.computeLabel = _chunk27O7E2WMjs.computeLabel; exports.computeLabelWithRelations = _chunk27O7E2WMjs.computeLabelWithRelations; exports.computeRecordStatus = _chunk3WTK7ESHjs.computeRecordStatus; exports.createAttributeValidator = _chunk3WTK7ESHjs.createAttributeValidator; exports.createCheckboxValidator = _chunk3WTK7ESHjs.createCheckboxValidator; exports.createContextForCreate = _chunk27O7E2WMjs.createContextForCreate; exports.createContextForDelete = _chunk27O7E2WMjs.createContextForDelete; exports.createContextForRestore = _chunk27O7E2WMjs.createContextForRestore; exports.createContextForUpdate = _chunk27O7E2WMjs.createContextForUpdate; exports.createCurrencyValidator = _chunk3WTK7ESHjs.createCurrencyValidator; exports.createDateValidator = _chunk3WTK7ESHjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunk27O7E2WMjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk27O7E2WMjs.createDefaultState; exports.createDraftValidator = _chunk3WTK7ESHjs.createDraftValidator; exports.createEmptyContext = _chunk27O7E2WMjs.createEmptyContext; exports.createFileValidator = _chunk3WTK7ESHjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunk3WTK7ESHjs.createFormAttributeValidator; exports.createFormulaValidator = _chunk3WTK7ESHjs.createFormulaValidator; exports.createLocationValidator = _chunk3WTK7ESHjs.createLocationValidator; exports.createMockAdapter = _chunk27O7E2WMjs.createMockAdapter; exports.createMultiRelationValidator = _chunk3WTK7ESHjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk3WTK7ESHjs.createMultiselectValidator; exports.createNumberValidator = _chunk3WTK7ESHjs.createNumberValidator; exports.createObjectValidator = _chunk3WTK7ESHjs.createObjectValidator; exports.createPhoneValidator = _chunk3WTK7ESHjs.createPhoneValidator; exports.createQueryBuilder = _chunk27O7E2WMjs.createQueryBuilder; exports.createRatingValidator = _chunk3WTK7ESHjs.createRatingValidator; exports.createRelationValidator = _chunk3WTK7ESHjs.createRelationValidator; exports.createRichtextValidator = _chunk3WTK7ESHjs.createRichtextValidator; exports.createRollupValidator = _chunk3WTK7ESHjs.createRollupValidator; exports.createSelectValidator = _chunk3WTK7ESHjs.createSelectValidator; exports.createSingleRelationValidator = _chunk3WTK7ESHjs.createSingleRelationValidator; exports.createStartTransition = _chunk27O7E2WMjs.createStartTransition; exports.createStatusValidator = _chunk3WTK7ESHjs.createStatusValidator; exports.createTextAreaValidator = _chunk3WTK7ESHjs.createTextAreaValidator; exports.createTextValidator = _chunk3WTK7ESHjs.createTextValidator; exports.createUserValidator = _chunk3WTK7ESHjs.createUserValidator; exports.currency = _chunk27O7E2WMjs.currency; exports.currencyConfigSchema = _chunk3WTK7ESHjs.currencyConfigSchema; exports.date = _chunk27O7E2WMjs.date; exports.dateConfigSchema = _chunk3WTK7ESHjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunk27O7E2WMjs.defaultPolicyRegistry; exports.defaultTtl = _chunk27O7E2WMjs.defaultTtl; exports.detailView = _chunk27O7E2WMjs.detailView; exports.document = _chunk27O7E2WMjs.document; exports.documentConfigSchema = _chunk3WTK7ESHjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunk27O7E2WMjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk27O7E2WMjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk27O7E2WMjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk27O7E2WMjs.enrichWithFormulas; exports.eq = _chunk27O7E2WMjs.eq; exports.error = _chunk27O7E2WMjs.error; exports.evaluate = _chunk27O7E2WMjs.evaluate; exports.evaluateCondition = _chunk27O7E2WMjs.evaluateCondition; exports.evaluateFormula = _chunk27O7E2WMjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk27O7E2WMjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk27O7E2WMjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk27O7E2WMjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk27O7E2WMjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk27O7E2WMjs.evaluateWithTrace; exports.extractAttributeNames = _chunk27O7E2WMjs.extractAttributeNames; exports.extractFormulaVariables = _chunk27O7E2WMjs.extractFormulaVariables; exports.extractRelationIds = _chunk27O7E2WMjs.extractRelationIds; exports.extractRelationNames = _chunk27O7E2WMjs.extractRelationNames; exports.extractRelationReferences = _chunk27O7E2WMjs.extractRelationReferences; exports.file = _chunk27O7E2WMjs.file; exports.fileConfigSchema = _chunk3WTK7ESHjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunk27O7E2WMjs.flattenRelationsForEval; exports.formatAttributeValue = _chunk27O7E2WMjs.formatAttributeValue; exports.formatFormulaResult = _chunk27O7E2WMjs.formatFormulaResult; exports.formatPhoneForDisplay = _chunk3WTK7ESHjs.formatPhoneForDisplay; exports.formatRecord = _chunk27O7E2WMjs.formatRecord; exports.formatRecords = _chunk27O7E2WMjs.formatRecords; exports.formatZodErrors = _chunk3WTK7ESHjs.formatZodErrors; exports.formula = _chunk27O7E2WMjs.formula; exports.formulaConfigSchema = _chunk3WTK7ESHjs.formulaConfigSchema; exports.generateCssVariables = _chunk27O7E2WMjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getActiveTab = getActiveTab; exports.getAttributeConfigSchema = _chunk3WTK7ESHjs.getAttributeConfigSchema; exports.getContext = _chunk27O7E2WMjs.getContext; exports.getContextValue = _chunk27O7E2WMjs.getContextValue; exports.getDefaultExecutorRegistry = _chunk27O7E2WMjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunk27O7E2WMjs.getErrorMessage; exports.getFeatureFlags = _chunk27O7E2WMjs.getFeatureFlags; exports.getFeatureValue = _chunk27O7E2WMjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunk3WTK7ESHjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunk27O7E2WMjs.getNodeOutputs; exports.getPathDepth = _chunk27O7E2WMjs.getPathDepth; exports.getPolicy = _chunk27O7E2WMjs.getPolicy; exports.getRelationPath = _chunk27O7E2WMjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk27O7E2WMjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk27O7E2WMjs.getSchemaContext; exports.getSchemaFromContext = _chunk27O7E2WMjs.getSchemaFromContext; exports.getSyncPreview = _chunk27O7E2WMjs.getSyncPreview; exports.getSystemAttributeList = _chunk27O7E2WMjs.getSystemAttributeList; exports.getSystemTemplate = _chunk27O7E2WMjs.getSystemTemplate; exports.getTargetAttributeName = _chunk27O7E2WMjs.getTargetAttributeName; exports.getTenantId = _chunk27O7E2WMjs.getTenantId; exports.getUserId = _chunk27O7E2WMjs.getUserId; exports.getViewSeedPreview = _chunk27O7E2WMjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk27O7E2WMjs.getViewSyncPreview; exports.group = _chunk27O7E2WMjs.group; exports.hasContext = _chunk27O7E2WMjs.hasContext; exports.hasFeatureFlagsContext = _chunk27O7E2WMjs.hasFeatureFlagsContext; exports.hasProperties = _chunk27O7E2WMjs.hasProperties; exports.hasRelationReferences = _chunk27O7E2WMjs.hasRelationReferences; exports.hasSchemaContext = _chunk27O7E2WMjs.hasSchemaContext; exports.hashOptions = _chunk27O7E2WMjs.hashOptions; exports.inValues = _chunk27O7E2WMjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.inferInverseCardinality = _chunk27O7E2WMjs.inferInverseCardinality; exports.isActivityTab = isActivityTab; exports.isAdminRole = _chunkJZO52C3Fjs.isAdminRole; exports.isAdvancedFormNode = _chunk27O7E2WMjs.isAdvancedFormNode; exports.isAttributeSortable = _chunk27O7E2WMjs.isAttributeSortable; exports.isBehaviorProperty = _chunk27O7E2WMjs.isBehaviorProperty; exports.isBilateralRelation = _chunk27O7E2WMjs.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunk27O7E2WMjs.isConditionGroup; exports.isConditionNode = _chunk27O7E2WMjs.isConditionNode; exports.isConditionRule = _chunk27O7E2WMjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunkJZO52C3Fjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentNode = _chunk27O7E2WMjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunk27O7E2WMjs.isEmpty; exports.isEndNode = _chunk27O7E2WMjs.isEndNode; exports.isFeatureEnabled = _chunk27O7E2WMjs.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunk27O7E2WMjs.isForbiddenError; exports.isFormNode = _chunk27O7E2WMjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunk27O7E2WMjs.isGrantExpired; exports.isGrantRevoked = _chunk27O7E2WMjs.isGrantRevoked; exports.isGrantValid = _chunk27O7E2WMjs.isGrantValid; exports.isIdentityProperty = _chunk27O7E2WMjs.isIdentityProperty; exports.isInstanceEvent = _chunk27O7E2WMjs.isInstanceEvent; exports.isInstanceTerminal = _chunk27O7E2WMjs.isInstanceTerminal; exports.isInstanceWaiting = _chunk27O7E2WMjs.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunk27O7E2WMjs.isInvitationAccepted; exports.isInvitationExpired = _chunk27O7E2WMjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunk27O7E2WMjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunk27O7E2WMjs.isInvitationValid; exports.isLabelExpression = _chunk27O7E2WMjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunk27O7E2WMjs.isNodeEvent; exports.isNotEmpty = _chunk27O7E2WMjs.isNotEmpty; exports.isNotFoundError = _chunk27O7E2WMjs.isNotFoundError; exports.isPresentationProperty = _chunk27O7E2WMjs.isPresentationProperty; exports.isProtectedResourceError = _chunk27O7E2WMjs.isProtectedResourceError; exports.isRecordComplete = _chunk3WTK7ESHjs.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunk27O7E2WMjs.isSchemaError; exports.isSimpleFormNode = _chunk27O7E2WMjs.isSimpleFormNode; exports.isStartNode = _chunk27O7E2WMjs.isStartNode; exports.isSystemAttribute = _chunk27O7E2WMjs.isSystemAttribute; exports.isSystemAttributeObject = _chunk27O7E2WMjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunk27O7E2WMjs.isSystemTemplate; exports.isSystemWorkflow = _chunk27O7E2WMjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunk27O7E2WMjs.isTokenRevoked; exports.isUniversalRelation = _chunk27O7E2WMjs.isUniversalRelation; exports.isValidationError = _chunk27O7E2WMjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunk27O7E2WMjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunk27O7E2WMjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunk27O7E2WMjs.listView; exports.location = _chunk27O7E2WMjs.location; exports.locationConfigSchema = _chunk3WTK7ESHjs.locationConfigSchema; exports.mergeWithDefaults = _chunk27O7E2WMjs.mergeWithDefaults; exports.multiselect = _chunk27O7E2WMjs.multiselect; exports.multiselectConfigSchema = _chunk3WTK7ESHjs.multiselectConfigSchema; exports.neq = _chunk27O7E2WMjs.neq; exports.normalizePhoneNumber = _chunk3WTK7ESHjs.normalizePhoneNumber; exports.number = _chunk27O7E2WMjs.number; exports.numberConfigSchema = _chunk3WTK7ESHjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunk27O7E2WMjs.object; exports.or = _chunk27O7E2WMjs.or; exports.parseAttributeConfig = _chunk3WTK7ESHjs.parseAttributeConfig; exports.parsePath = _chunk27O7E2WMjs.parsePath; exports.parseRawPhoneInput = _chunk3WTK7ESHjs.parseRawPhoneInput; exports.pathHasManyCardinality = _chunk27O7E2WMjs.pathHasManyCardinality; exports.phone = _chunk27O7E2WMjs.phone; exports.phoneConfigSchema = _chunk3WTK7ESHjs.phoneConfigSchema; exports.rating = _chunk27O7E2WMjs.rating; exports.ratingConfigSchema = _chunk3WTK7ESHjs.ratingConfigSchema; exports.recalculateParentRollups = _chunk27O7E2WMjs.recalculateParentRollups; exports.registry = _chunk27O7E2WMjs.registry; exports.relation = _chunk27O7E2WMjs.relation; exports.relationConfigSchema = _chunk3WTK7ESHjs.relationConfigSchema; exports.relationGroup = _chunk27O7E2WMjs.relationGroup; exports.renderLabelExpression = _chunk27O7E2WMjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunk27O7E2WMjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk27O7E2WMjs.resolveSingleValue; exports.richtext = _chunk27O7E2WMjs.richtext; exports.richtextConfigSchema = _chunk3WTK7ESHjs.richtextConfigSchema; exports.rollup = _chunk27O7E2WMjs.rollup; exports.rollupConfigSchema = _chunk3WTK7ESHjs.rollupConfigSchema; exports.runWithContext = _chunk27O7E2WMjs.runWithContext; exports.runWithFeatureFlags = _chunk27O7E2WMjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk27O7E2WMjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk27O7E2WMjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunk3WTK7ESHjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunk27O7E2WMjs.seedRegistryViews; exports.select = _chunk27O7E2WMjs.select; exports.selectConfigSchema = _chunk3WTK7ESHjs.selectConfigSchema; exports.setContextValue = _chunk27O7E2WMjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunk27O7E2WMjs.status; exports.statusConfigSchema = _chunk3WTK7ESHjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunk27O7E2WMjs.success; exports.syncAll = _chunk27O7E2WMjs.syncAll; exports.syncNativeObjects = _chunk27O7E2WMjs.syncNativeObjects; exports.syncNativeViews = _chunk27O7E2WMjs.syncNativeViews; exports.text = _chunk27O7E2WMjs.text; exports.textConfigSchema = _chunk3WTK7ESHjs.textConfigSchema; exports.textarea = _chunk27O7E2WMjs.textarea; exports.textareaConfigSchema = _chunk3WTK7ESHjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunk27O7E2WMjs.toUndefinedIfEmpty; exports.traversePath = _chunk27O7E2WMjs.traversePath; exports.tryGetFeatureValue = _chunk27O7E2WMjs.tryGetFeatureValue; exports.user = _chunk27O7E2WMjs.user; exports.userConfigSchema = _chunk3WTK7ESHjs.userConfigSchema; exports.validateAttribute = _chunk3WTK7ESHjs.validateAttribute; exports.validateAttributeConfig = _chunk3WTK7ESHjs.validateAttributeConfig; exports.validateDraft = _chunk3WTK7ESHjs.validateDraft; exports.validateDraftOrThrow = _chunk3WTK7ESHjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunk27O7E2WMjs.validateFormulaExpression; exports.validateObject = _chunk3WTK7ESHjs.validateObject; exports.validateObjectOrThrow = _chunk3WTK7ESHjs.validateObjectOrThrow; exports.validatePath = _chunk27O7E2WMjs.validatePath; exports.validatePhoneNumber = _chunk3WTK7ESHjs.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunk27O7E2WMjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk27O7E2WMjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk27O7E2WMjs.verifyRegistryViewsSeeded; exports.view = _chunk27O7E2WMjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunk27O7E2WMjs.wait; exports.withFeatureFlags = _chunk27O7E2WMjs.withFeatureFlags; exports.withTenantContext = _chunk27O7E2WMjs.withTenantContext; exports.workflow = _chunk27O7E2WMjs.workflow;
2051
+ exports.ALL_ACTIONS = ALL_ACTIONS; exports.ALL_SYSTEM_RESOURCES = _chunkJZO52C3Fjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunk7JHBQL6Hjs.ActivityTabConfig; exports.AttributeInUseError = _chunk7JHBQL6Hjs.AttributeInUseError; exports.AttributeNotFoundError = _chunk7JHBQL6Hjs.AttributeNotFoundError; exports.AuditService = _chunk7JHBQL6Hjs.AuditService; exports.AuthMethodSchema = _chunk7JHBQL6Hjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunk7JHBQL6Hjs.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunk7JHBQL6Hjs.BaseRepository; exports.BaseService = _chunk7JHBQL6Hjs.BaseService; exports.ConcurrentModificationError = _chunk7JHBQL6Hjs.ConcurrentModificationError; exports.ConditionExecutor = _chunk7JHBQL6Hjs.ConditionExecutor; exports.ConditionGroupSchema = _chunk7JHBQL6Hjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunk7JHBQL6Hjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunk7JHBQL6Hjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunk7JHBQL6Hjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunk7JHBQL6Hjs.CreateShareInputSchema; exports.CustomTabConfig = _chunk7JHBQL6Hjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunk7JHBQL6Hjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunkJZO52C3Fjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunkJZO52C3Fjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunkJZO52C3Fjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunkJZO52C3Fjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunk7JHBQL6Hjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunk3WTK7ESHjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunk7JHBQL6Hjs.DRIVING_LICENSE; exports.DetailViewBuilder = _chunk7JHBQL6Hjs.DetailViewBuilder; exports.DocumentExecutor = _chunk7JHBQL6Hjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk7JHBQL6Hjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk7JHBQL6Hjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk7JHBQL6Hjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunk7JHBQL6Hjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunk7JHBQL6Hjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk7JHBQL6Hjs.DocumentProcessingService; exports.DocumentRenderError = _chunk7JHBQL6Hjs.DocumentRenderError; exports.DocumentRendererService = _chunk7JHBQL6Hjs.DocumentRendererService; exports.DocumentService = _chunk7JHBQL6Hjs.DocumentService; exports.DocumentTemplateService = _chunk7JHBQL6Hjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunk7JHBQL6Hjs.DocumentsTabConfig; exports.DuplicateError = _chunk7JHBQL6Hjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunk7JHBQL6Hjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunk7JHBQL6Hjs.EndExecutor; exports.EndNodeSchema = _chunk7JHBQL6Hjs.EndNodeSchema; exports.ExecutorRegistry = _chunk7JHBQL6Hjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunk7JHBQL6Hjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunk7JHBQL6Hjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunk7JHBQL6Hjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunk7JHBQL6Hjs.FileNotFoundError; exports.FileService = _chunk7JHBQL6Hjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunk7JHBQL6Hjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunk7JHBQL6Hjs.FlowRowSchema; exports.FlowsTabConfig = _chunk7JHBQL6Hjs.FlowsTabConfig; exports.ForbiddenError = _chunk7JHBQL6Hjs.ForbiddenError; exports.FormExecutor = _chunk7JHBQL6Hjs.FormExecutor; exports.FormFieldRefSchema = _chunk7JHBQL6Hjs.FormFieldRefSchema; exports.FormNodeSchema = _chunk7JHBQL6Hjs.FormNodeSchema; exports.FormulaResolverService = _chunk7JHBQL6Hjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunk7JHBQL6Hjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunk7JHBQL6Hjs.GeocodingService; exports.GlobalSearchService = _chunk7JHBQL6Hjs.GlobalSearchService; exports.GrantExpiredError = _chunk7JHBQL6Hjs.GrantExpiredError; exports.GrantNotFoundError = _chunk7JHBQL6Hjs.GrantNotFoundError; exports.GrantRevokedError = _chunk7JHBQL6Hjs.GrantRevokedError; exports.GroupBuilder = _chunk7JHBQL6Hjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunk7JHBQL6Hjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunk7JHBQL6Hjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk7JHBQL6Hjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk7JHBQL6Hjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk7JHBQL6Hjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk7JHBQL6Hjs.InvitationRevokedError; exports.ListViewBuilder = _chunk7JHBQL6Hjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunk7JHBQL6Hjs.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunk7JHBQL6Hjs.MaxDepthExceededError; exports.NON_SORTABLE_TYPES = _chunk7JHBQL6Hjs.NON_SORTABLE_TYPES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunk7JHBQL6Hjs.NodePositionSchema; exports.NoopCacheAdapter = _chunk7JHBQL6Hjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk7JHBQL6Hjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk7JHBQL6Hjs.NoopHookRegistry; exports.NotFoundError = _chunk7JHBQL6Hjs.NotFoundError; exports.NotSystemObjectError = _chunk7JHBQL6Hjs.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunk7JHBQL6Hjs.ObjectBuilder; exports.ObjectNotFoundError = _chunk7JHBQL6Hjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunk7JHBQL6Hjs.ObjectReferencedError; exports.ObjectSchemaService = _chunk7JHBQL6Hjs.ObjectSchemaService; exports.PASSPORT = _chunk7JHBQL6Hjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunk7JHBQL6Hjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunk7JHBQL6Hjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunk7JHBQL6Hjs.PermissionService; exports.PolicyRegistry = _chunk7JHBQL6Hjs.PolicyRegistry; exports.PolicyViolationError = _chunk7JHBQL6Hjs.PolicyViolationError; exports.ProtectedResourceError = _chunk7JHBQL6Hjs.ProtectedResourceError; exports.ProtectedRoleError = _chunk7JHBQL6Hjs.ProtectedRoleError; exports.QueryBuilder = _chunk7JHBQL6Hjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk7JHBQL6Hjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk7JHBQL6Hjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunk7JHBQL6Hjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunk7JHBQL6Hjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunk7JHBQL6Hjs.RecordNotFoundError; exports.RecordQueryService = _chunk7JHBQL6Hjs.RecordQueryService; exports.RecordReferencedError = _chunk7JHBQL6Hjs.RecordReferencedError; exports.RecordResolverService = _chunk7JHBQL6Hjs.RecordResolverService; exports.RecordService = _chunk7JHBQL6Hjs.RecordService; exports.RelationGroupBuilder = _chunk7JHBQL6Hjs.RelationGroupBuilder; exports.RelationPropertiesService = _chunk7JHBQL6Hjs.RelationPropertiesService; exports.RelationService = _chunk7JHBQL6Hjs.RelationService; exports.RichtextTabConfig = _chunk7JHBQL6Hjs.RichtextTabConfig; exports.RoleNotFoundError = _chunk7JHBQL6Hjs.RoleNotFoundError; exports.RollupScheduler = _chunk7JHBQL6Hjs.RollupScheduler; exports.RollupService = _chunk7JHBQL6Hjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk7JHBQL6Hjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunk7JHBQL6Hjs.SIGNABLE_CONTRACT; exports.SORTABLE_ATTRIBUTE_TYPES = _chunk7JHBQL6Hjs.SORTABLE_ATTRIBUTE_TYPES; exports.SYSTEM_ATTRIBUTES = _chunk7JHBQL6Hjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunk7JHBQL6Hjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunkJZO52C3Fjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunkJZO52C3Fjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunk7JHBQL6Hjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunk7JHBQL6Hjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunk7JHBQL6Hjs.SchemaContextAwareRepository; exports.SchemaError = _chunk7JHBQL6Hjs.SchemaError; exports.SchemaErrorCode = _chunk7JHBQL6Hjs.SchemaErrorCode; exports.ShareStatusSchema = _chunk7JHBQL6Hjs.ShareStatusSchema; exports.SlotModeSchema = _chunk7JHBQL6Hjs.SlotModeSchema; exports.StartExecutor = _chunk7JHBQL6Hjs.StartExecutor; exports.StartNodeSchema = _chunk7JHBQL6Hjs.StartNodeSchema; exports.StorageDownloadNotSupportedError = _chunk7JHBQL6Hjs.StorageDownloadNotSupportedError; exports.SyncError = _chunk7JHBQL6Hjs.SyncError; exports.TabBuilder = _chunk7JHBQL6Hjs.TabBuilder; exports.TableTabConfig = _chunk7JHBQL6Hjs.TableTabConfig; exports.TenantContextError = _chunk7JHBQL6Hjs.TenantContextError; exports.ThemeColorsSchema = _chunk7JHBQL6Hjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunk7JHBQL6Hjs.ThemeLogoSchema; exports.TokenRevokedError = _chunk7JHBQL6Hjs.TokenRevokedError; exports.USER_STATUSES = USER_STATUSES; exports.UserProfileNotFoundError = _chunk7JHBQL6Hjs.UserProfileNotFoundError; exports.UserProfileService = _chunk7JHBQL6Hjs.UserProfileService; exports.UserService = _chunk7JHBQL6Hjs.UserService; exports.ValidationError = _chunk7JHBQL6Hjs.ValidationError; exports.ViewBuilder = _chunk7JHBQL6Hjs.ViewBuilder; exports.ViewService = _chunk7JHBQL6Hjs.ViewService; exports.ViewportSchema = _chunk7JHBQL6Hjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunk7JHBQL6Hjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunk7JHBQL6Hjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunk7JHBQL6Hjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunk7JHBQL6Hjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunk7JHBQL6Hjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunk7JHBQL6Hjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunk7JHBQL6Hjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunk7JHBQL6Hjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunk7JHBQL6Hjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk7JHBQL6Hjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk7JHBQL6Hjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunk7JHBQL6Hjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunk7JHBQL6Hjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunk7JHBQL6Hjs.WorkflowRelationService; exports.WorkflowService = _chunk7JHBQL6Hjs.WorkflowService; exports.WorkflowShareSchema = _chunk7JHBQL6Hjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunk7JHBQL6Hjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunk7JHBQL6Hjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunk7JHBQL6Hjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunk7JHBQL6Hjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunk7JHBQL6Hjs.WorkflowThemeSchema; exports.accessLevelToActions = accessLevelToActions; exports.actionsToAccessLevel = actionsToAccessLevel; exports.addSchemaToContext = _chunk7JHBQL6Hjs.addSchemaToContext; exports.and = _chunk7JHBQL6Hjs.and; exports.applyDefaultValues = _chunk7JHBQL6Hjs.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunk3WTK7ESHjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunk7JHBQL6Hjs.buildAuditChanges; exports.buildPolicyContext = _chunk7JHBQL6Hjs.buildPolicyContext; exports.cacheKeys = _chunk7JHBQL6Hjs.cacheKeys; exports.cacheTtl = _chunk7JHBQL6Hjs.cacheTtl; exports.canAccessNode = _chunk7JHBQL6Hjs.canAccessNode; exports.canResumeInstance = _chunk7JHBQL6Hjs.canResumeInstance; exports.checkPermission = _chunk7JHBQL6Hjs.checkPermission; exports.checkRecordAccess = _chunk7JHBQL6Hjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk7JHBQL6Hjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk7JHBQL6Hjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk7JHBQL6Hjs.checkSharedObjectWriteAccess; exports.checkbox = _chunk7JHBQL6Hjs.checkbox; exports.checkboxConfigSchema = _chunk3WTK7ESHjs.checkboxConfigSchema; exports.complete = _chunk7JHBQL6Hjs.complete; exports.computeLabel = _chunk7JHBQL6Hjs.computeLabel; exports.computeLabelWithRelations = _chunk7JHBQL6Hjs.computeLabelWithRelations; exports.computeRecordStatus = _chunk3WTK7ESHjs.computeRecordStatus; exports.createAttributeValidator = _chunk3WTK7ESHjs.createAttributeValidator; exports.createCheckboxValidator = _chunk3WTK7ESHjs.createCheckboxValidator; exports.createContextForCreate = _chunk7JHBQL6Hjs.createContextForCreate; exports.createContextForDelete = _chunk7JHBQL6Hjs.createContextForDelete; exports.createContextForRestore = _chunk7JHBQL6Hjs.createContextForRestore; exports.createContextForUpdate = _chunk7JHBQL6Hjs.createContextForUpdate; exports.createCurrencyValidator = _chunk3WTK7ESHjs.createCurrencyValidator; exports.createDateValidator = _chunk3WTK7ESHjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunk7JHBQL6Hjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk7JHBQL6Hjs.createDefaultState; exports.createDraftValidator = _chunk3WTK7ESHjs.createDraftValidator; exports.createEmptyContext = _chunk7JHBQL6Hjs.createEmptyContext; exports.createFileValidator = _chunk3WTK7ESHjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunk3WTK7ESHjs.createFormAttributeValidator; exports.createFormulaValidator = _chunk3WTK7ESHjs.createFormulaValidator; exports.createLocationValidator = _chunk3WTK7ESHjs.createLocationValidator; exports.createMockAdapter = _chunk7JHBQL6Hjs.createMockAdapter; exports.createMultiRelationValidator = _chunk3WTK7ESHjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk3WTK7ESHjs.createMultiselectValidator; exports.createNumberValidator = _chunk3WTK7ESHjs.createNumberValidator; exports.createObjectValidator = _chunk3WTK7ESHjs.createObjectValidator; exports.createPhoneValidator = _chunk3WTK7ESHjs.createPhoneValidator; exports.createQueryBuilder = _chunk7JHBQL6Hjs.createQueryBuilder; exports.createRatingValidator = _chunk3WTK7ESHjs.createRatingValidator; exports.createRelationValidator = _chunk3WTK7ESHjs.createRelationValidator; exports.createRichtextValidator = _chunk3WTK7ESHjs.createRichtextValidator; exports.createRollupValidator = _chunk3WTK7ESHjs.createRollupValidator; exports.createSelectValidator = _chunk3WTK7ESHjs.createSelectValidator; exports.createSingleRelationValidator = _chunk3WTK7ESHjs.createSingleRelationValidator; exports.createStartTransition = _chunk7JHBQL6Hjs.createStartTransition; exports.createStatusValidator = _chunk3WTK7ESHjs.createStatusValidator; exports.createTextAreaValidator = _chunk3WTK7ESHjs.createTextAreaValidator; exports.createTextValidator = _chunk3WTK7ESHjs.createTextValidator; exports.createUserValidator = _chunk3WTK7ESHjs.createUserValidator; exports.currency = _chunk7JHBQL6Hjs.currency; exports.currencyConfigSchema = _chunk3WTK7ESHjs.currencyConfigSchema; exports.date = _chunk7JHBQL6Hjs.date; exports.dateConfigSchema = _chunk3WTK7ESHjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunk7JHBQL6Hjs.defaultPolicyRegistry; exports.defaultTtl = _chunk7JHBQL6Hjs.defaultTtl; exports.detailView = _chunk7JHBQL6Hjs.detailView; exports.document = _chunk7JHBQL6Hjs.document; exports.documentConfigSchema = _chunk3WTK7ESHjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunk7JHBQL6Hjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk7JHBQL6Hjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk7JHBQL6Hjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk7JHBQL6Hjs.enrichWithFormulas; exports.eq = _chunk7JHBQL6Hjs.eq; exports.error = _chunk7JHBQL6Hjs.error; exports.evaluate = _chunk7JHBQL6Hjs.evaluate; exports.evaluateCondition = _chunk7JHBQL6Hjs.evaluateCondition; exports.evaluateFormula = _chunk7JHBQL6Hjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk7JHBQL6Hjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk7JHBQL6Hjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk7JHBQL6Hjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk7JHBQL6Hjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk7JHBQL6Hjs.evaluateWithTrace; exports.extractAttributeNames = _chunk7JHBQL6Hjs.extractAttributeNames; exports.extractFormulaVariables = _chunk7JHBQL6Hjs.extractFormulaVariables; exports.extractRelationIds = _chunk7JHBQL6Hjs.extractRelationIds; exports.extractRelationNames = _chunk7JHBQL6Hjs.extractRelationNames; exports.extractRelationReferences = _chunk7JHBQL6Hjs.extractRelationReferences; exports.file = _chunk7JHBQL6Hjs.file; exports.fileConfigSchema = _chunk3WTK7ESHjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunk7JHBQL6Hjs.flattenRelationsForEval; exports.formatAttributeValue = _chunk7JHBQL6Hjs.formatAttributeValue; exports.formatFormulaResult = _chunk7JHBQL6Hjs.formatFormulaResult; exports.formatPhoneForDisplay = _chunk3WTK7ESHjs.formatPhoneForDisplay; exports.formatRecord = _chunk7JHBQL6Hjs.formatRecord; exports.formatRecords = _chunk7JHBQL6Hjs.formatRecords; exports.formatZodErrors = _chunk3WTK7ESHjs.formatZodErrors; exports.formula = _chunk7JHBQL6Hjs.formula; exports.formulaConfigSchema = _chunk3WTK7ESHjs.formulaConfigSchema; exports.generateCssVariables = _chunk7JHBQL6Hjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getActiveTab = getActiveTab; exports.getAttributeConfigSchema = _chunk3WTK7ESHjs.getAttributeConfigSchema; exports.getContext = _chunk7JHBQL6Hjs.getContext; exports.getContextValue = _chunk7JHBQL6Hjs.getContextValue; exports.getDefaultExecutorRegistry = _chunk7JHBQL6Hjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunk7JHBQL6Hjs.getErrorMessage; exports.getFeatureFlags = _chunk7JHBQL6Hjs.getFeatureFlags; exports.getFeatureValue = _chunk7JHBQL6Hjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunk3WTK7ESHjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunk7JHBQL6Hjs.getNodeOutputs; exports.getPathDepth = _chunk7JHBQL6Hjs.getPathDepth; exports.getPolicy = _chunk7JHBQL6Hjs.getPolicy; exports.getRelationPath = _chunk7JHBQL6Hjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk7JHBQL6Hjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk7JHBQL6Hjs.getSchemaContext; exports.getSchemaFromContext = _chunk7JHBQL6Hjs.getSchemaFromContext; exports.getSyncPreview = _chunk7JHBQL6Hjs.getSyncPreview; exports.getSystemAttributeList = _chunk7JHBQL6Hjs.getSystemAttributeList; exports.getSystemTemplate = _chunk7JHBQL6Hjs.getSystemTemplate; exports.getTargetAttributeName = _chunk7JHBQL6Hjs.getTargetAttributeName; exports.getTenantId = _chunk7JHBQL6Hjs.getTenantId; exports.getUserId = _chunk7JHBQL6Hjs.getUserId; exports.getViewSeedPreview = _chunk7JHBQL6Hjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk7JHBQL6Hjs.getViewSyncPreview; exports.group = _chunk7JHBQL6Hjs.group; exports.hasContext = _chunk7JHBQL6Hjs.hasContext; exports.hasFeatureFlagsContext = _chunk7JHBQL6Hjs.hasFeatureFlagsContext; exports.hasProperties = _chunk7JHBQL6Hjs.hasProperties; exports.hasRelationReferences = _chunk7JHBQL6Hjs.hasRelationReferences; exports.hasSchemaContext = _chunk7JHBQL6Hjs.hasSchemaContext; exports.hashOptions = _chunk7JHBQL6Hjs.hashOptions; exports.inValues = _chunk7JHBQL6Hjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.inferInverseCardinality = _chunk7JHBQL6Hjs.inferInverseCardinality; exports.isActivityTab = isActivityTab; exports.isAdminRole = _chunkJZO52C3Fjs.isAdminRole; exports.isAdvancedFormNode = _chunk7JHBQL6Hjs.isAdvancedFormNode; exports.isAttributeSortable = _chunk7JHBQL6Hjs.isAttributeSortable; exports.isBehaviorProperty = _chunk7JHBQL6Hjs.isBehaviorProperty; exports.isBilateralRelation = _chunk7JHBQL6Hjs.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunk7JHBQL6Hjs.isConditionGroup; exports.isConditionNode = _chunk7JHBQL6Hjs.isConditionNode; exports.isConditionRule = _chunk7JHBQL6Hjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunkJZO52C3Fjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentNode = _chunk7JHBQL6Hjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunk7JHBQL6Hjs.isEmpty; exports.isEndNode = _chunk7JHBQL6Hjs.isEndNode; exports.isFeatureEnabled = _chunk7JHBQL6Hjs.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunk7JHBQL6Hjs.isForbiddenError; exports.isFormNode = _chunk7JHBQL6Hjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunk7JHBQL6Hjs.isGrantExpired; exports.isGrantRevoked = _chunk7JHBQL6Hjs.isGrantRevoked; exports.isGrantValid = _chunk7JHBQL6Hjs.isGrantValid; exports.isIdentityProperty = _chunk7JHBQL6Hjs.isIdentityProperty; exports.isInstanceEvent = _chunk7JHBQL6Hjs.isInstanceEvent; exports.isInstanceTerminal = _chunk7JHBQL6Hjs.isInstanceTerminal; exports.isInstanceWaiting = _chunk7JHBQL6Hjs.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunk7JHBQL6Hjs.isInvitationAccepted; exports.isInvitationExpired = _chunk7JHBQL6Hjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunk7JHBQL6Hjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunk7JHBQL6Hjs.isInvitationValid; exports.isLabelExpression = _chunk7JHBQL6Hjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunk7JHBQL6Hjs.isNodeEvent; exports.isNotEmpty = _chunk7JHBQL6Hjs.isNotEmpty; exports.isNotFoundError = _chunk7JHBQL6Hjs.isNotFoundError; exports.isPresentationProperty = _chunk7JHBQL6Hjs.isPresentationProperty; exports.isProtectedResourceError = _chunk7JHBQL6Hjs.isProtectedResourceError; exports.isRecordComplete = _chunk3WTK7ESHjs.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunk7JHBQL6Hjs.isSchemaError; exports.isSimpleFormNode = _chunk7JHBQL6Hjs.isSimpleFormNode; exports.isStartNode = _chunk7JHBQL6Hjs.isStartNode; exports.isSystemAttribute = _chunk7JHBQL6Hjs.isSystemAttribute; exports.isSystemAttributeObject = _chunk7JHBQL6Hjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunk7JHBQL6Hjs.isSystemTemplate; exports.isSystemWorkflow = _chunk7JHBQL6Hjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunk7JHBQL6Hjs.isTokenRevoked; exports.isUniversalRelation = _chunk7JHBQL6Hjs.isUniversalRelation; exports.isValidationError = _chunk7JHBQL6Hjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunk7JHBQL6Hjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunk7JHBQL6Hjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunk7JHBQL6Hjs.listView; exports.location = _chunk7JHBQL6Hjs.location; exports.locationConfigSchema = _chunk3WTK7ESHjs.locationConfigSchema; exports.mergeWithDefaults = _chunk7JHBQL6Hjs.mergeWithDefaults; exports.multiselect = _chunk7JHBQL6Hjs.multiselect; exports.multiselectConfigSchema = _chunk3WTK7ESHjs.multiselectConfigSchema; exports.neq = _chunk7JHBQL6Hjs.neq; exports.normalizePhoneNumber = _chunk3WTK7ESHjs.normalizePhoneNumber; exports.number = _chunk7JHBQL6Hjs.number; exports.numberConfigSchema = _chunk3WTK7ESHjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunk7JHBQL6Hjs.object; exports.or = _chunk7JHBQL6Hjs.or; exports.parseAttributeConfig = _chunk3WTK7ESHjs.parseAttributeConfig; exports.parsePath = _chunk7JHBQL6Hjs.parsePath; exports.parseRawPhoneInput = _chunk3WTK7ESHjs.parseRawPhoneInput; exports.pathHasManyCardinality = _chunk7JHBQL6Hjs.pathHasManyCardinality; exports.phone = _chunk7JHBQL6Hjs.phone; exports.phoneConfigSchema = _chunk3WTK7ESHjs.phoneConfigSchema; exports.rating = _chunk7JHBQL6Hjs.rating; exports.ratingConfigSchema = _chunk3WTK7ESHjs.ratingConfigSchema; exports.recalculateParentRollups = _chunk7JHBQL6Hjs.recalculateParentRollups; exports.registry = _chunk7JHBQL6Hjs.registry; exports.relation = _chunk7JHBQL6Hjs.relation; exports.relationConfigSchema = _chunk3WTK7ESHjs.relationConfigSchema; exports.relationGroup = _chunk7JHBQL6Hjs.relationGroup; exports.renderLabelExpression = _chunk7JHBQL6Hjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunk7JHBQL6Hjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk7JHBQL6Hjs.resolveSingleValue; exports.richtext = _chunk7JHBQL6Hjs.richtext; exports.richtextConfigSchema = _chunk3WTK7ESHjs.richtextConfigSchema; exports.rollup = _chunk7JHBQL6Hjs.rollup; exports.rollupConfigSchema = _chunk3WTK7ESHjs.rollupConfigSchema; exports.runWithContext = _chunk7JHBQL6Hjs.runWithContext; exports.runWithFeatureFlags = _chunk7JHBQL6Hjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk7JHBQL6Hjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk7JHBQL6Hjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunk3WTK7ESHjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunk7JHBQL6Hjs.seedRegistryViews; exports.select = _chunk7JHBQL6Hjs.select; exports.selectConfigSchema = _chunk3WTK7ESHjs.selectConfigSchema; exports.setContextValue = _chunk7JHBQL6Hjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunk7JHBQL6Hjs.status; exports.statusConfigSchema = _chunk3WTK7ESHjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunk7JHBQL6Hjs.success; exports.syncAll = _chunk7JHBQL6Hjs.syncAll; exports.syncNativeObjects = _chunk7JHBQL6Hjs.syncNativeObjects; exports.syncNativeViews = _chunk7JHBQL6Hjs.syncNativeViews; exports.text = _chunk7JHBQL6Hjs.text; exports.textConfigSchema = _chunk3WTK7ESHjs.textConfigSchema; exports.textarea = _chunk7JHBQL6Hjs.textarea; exports.textareaConfigSchema = _chunk3WTK7ESHjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunk7JHBQL6Hjs.toUndefinedIfEmpty; exports.traversePath = _chunk7JHBQL6Hjs.traversePath; exports.tryGetFeatureValue = _chunk7JHBQL6Hjs.tryGetFeatureValue; exports.user = _chunk7JHBQL6Hjs.user; exports.userConfigSchema = _chunk3WTK7ESHjs.userConfigSchema; exports.validateAttribute = _chunk3WTK7ESHjs.validateAttribute; exports.validateAttributeConfig = _chunk3WTK7ESHjs.validateAttributeConfig; exports.validateDraft = _chunk3WTK7ESHjs.validateDraft; exports.validateDraftOrThrow = _chunk3WTK7ESHjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunk7JHBQL6Hjs.validateFormulaExpression; exports.validateObject = _chunk3WTK7ESHjs.validateObject; exports.validateObjectOrThrow = _chunk3WTK7ESHjs.validateObjectOrThrow; exports.validatePath = _chunk7JHBQL6Hjs.validatePath; exports.validatePhoneNumber = _chunk3WTK7ESHjs.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunk7JHBQL6Hjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk7JHBQL6Hjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk7JHBQL6Hjs.verifyRegistryViewsSeeded; exports.view = _chunk7JHBQL6Hjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunk7JHBQL6Hjs.wait; exports.withFeatureFlags = _chunk7JHBQL6Hjs.withFeatureFlags; exports.withTenantContext = _chunk7JHBQL6Hjs.withTenantContext; exports.workflow = _chunk7JHBQL6Hjs.workflow;
package/dist/index.mjs CHANGED
@@ -333,7 +333,7 @@ import {
333
333
  withFeatureFlags,
334
334
  withTenantContext,
335
335
  workflow
336
- } from "./chunk-JEOP4TFZ.mjs";
336
+ } from "./chunk-XF46EJU7.mjs";
337
337
  import {
338
338
  asTenantId,
339
339
  asUserId,
@@ -5256,6 +5256,12 @@ interface ObjectsRepository {
5256
5256
  * Tenant ID is automatically set from context.
5257
5257
  */
5258
5258
  upsert(data: UpsertDBObject): Promise<DBObject>;
5259
+ /**
5260
+ * Delete system objects not in the exclude list (for sync cleanup).
5261
+ * Only deletes objects where system=true, preserving user-created objects.
5262
+ * Returns the number of deleted objects.
5263
+ */
5264
+ deleteSystemNotInNames(excludeNames: string[]): Promise<number>;
5259
5265
  }
5260
5266
  /**
5261
5267
  * Repository for attributes table (metadata)
@@ -12702,6 +12708,7 @@ declare const getViewSyncPreview: typeof getViewSeedPreview;
12702
12708
  interface SyncResult {
12703
12709
  success: boolean;
12704
12710
  objectsSynced: number;
12711
+ objectsDeleted: number;
12705
12712
  attributesSynced: number;
12706
12713
  objectsCreated: number;
12707
12714
  objectsUpdated: number;
@@ -5256,6 +5256,12 @@ interface ObjectsRepository {
5256
5256
  * Tenant ID is automatically set from context.
5257
5257
  */
5258
5258
  upsert(data: UpsertDBObject): Promise<DBObject>;
5259
+ /**
5260
+ * Delete system objects not in the exclude list (for sync cleanup).
5261
+ * Only deletes objects where system=true, preserving user-created objects.
5262
+ * Returns the number of deleted objects.
5263
+ */
5264
+ deleteSystemNotInNames(excludeNames: string[]): Promise<number>;
5259
5265
  }
5260
5266
  /**
5261
5267
  * Repository for attributes table (metadata)
@@ -12702,6 +12708,7 @@ declare const getViewSyncPreview: typeof getViewSeedPreview;
12702
12708
  interface SyncResult {
12703
12709
  success: boolean;
12704
12710
  objectsSynced: number;
12711
+ objectsDeleted: number;
12705
12712
  attributesSynced: number;
12706
12713
  objectsCreated: number;
12707
12714
  objectsUpdated: number;
@@ -1,4 +1,4 @@
1
- export { gd as AIConversationsRepository, ge as AIUsageMetricsRepository, gf as AIUserMemoryRepository, gD as AddAttributeInput, g2 as AttributeChange, gg as AttributesRepository, gh as AuditRepository, hT as AuditService, gz as BaseRepository, gy as BaseService, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, fv as ConditionExecutor, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, hx as CreateGrantResult, iS as CreateObjectRecord, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ih as CreateViewInput, hK as CreateWorkflowInput, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, ej as DatabaseAdapter, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, gl as DocumentSlotsRepository, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, fx as EndExecutor, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, go as FilesRepository, fy as FormExecutor, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, eB as InsertOptions, fQ as InvalidPathError, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, fp as NodeExecutor, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, i5 as RecordDocumentsResult, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, gP as RelationValidationError, gO as RelationValidationResult, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, eF as ShortcutOperator, iq as SignedUrlOptions, gY as SingleRelationValue, fz as StartExecutor, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, fg as TenantContext, eU as TenantContextError, hv as TokenRevokedError, g0 as TraversalOptions, g1 as TraversalResult, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, gE as UpdateObjectInput, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, hQ as UserService, hP as UserValidationError, hO as UserValidationResult, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, en as WorkflowAccessPayload, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, gx as WorkflowsRepository, f2 as addSchemaToContext, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, g9 as createMockAdapter, eM as createQueryBuilder, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, fa as getContext, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, eZ as isFeatureEnabled, iD as isLabelExpression, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-Cv41_Suf.mjs';
1
+ export { gd as AIConversationsRepository, ge as AIUsageMetricsRepository, gf as AIUserMemoryRepository, gD as AddAttributeInput, g2 as AttributeChange, gg as AttributesRepository, gh as AuditRepository, hT as AuditService, gz as BaseRepository, gy as BaseService, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, fv as ConditionExecutor, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, hx as CreateGrantResult, iS as CreateObjectRecord, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ih as CreateViewInput, hK as CreateWorkflowInput, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, ej as DatabaseAdapter, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, gl as DocumentSlotsRepository, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, fx as EndExecutor, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, go as FilesRepository, fy as FormExecutor, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, eB as InsertOptions, fQ as InvalidPathError, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, fp as NodeExecutor, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, i5 as RecordDocumentsResult, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, gP as RelationValidationError, gO as RelationValidationResult, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, eF as ShortcutOperator, iq as SignedUrlOptions, gY as SingleRelationValue, fz as StartExecutor, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, fg as TenantContext, eU as TenantContextError, hv as TokenRevokedError, g0 as TraversalOptions, g1 as TraversalResult, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, gE as UpdateObjectInput, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, hQ as UserService, hP as UserValidationError, hO as UserValidationResult, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, en as WorkflowAccessPayload, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, gx as WorkflowsRepository, f2 as addSchemaToContext, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, g9 as createMockAdapter, eM as createQueryBuilder, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, fa as getContext, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, eZ as isFeatureEnabled, iD as isLabelExpression, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-kH9dOaQt.mjs';
2
2
  export { a8 as CompletionStatus } from './validators-DUB0tEzp.mjs';
3
3
  import '@stndrds/constants';
4
4
  import './utils.mjs';
package/dist/runtime.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { gd as AIConversationsRepository, ge as AIUsageMetricsRepository, gf as AIUserMemoryRepository, gD as AddAttributeInput, g2 as AttributeChange, gg as AttributesRepository, gh as AuditRepository, hT as AuditService, gz as BaseRepository, gy as BaseService, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, fv as ConditionExecutor, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, hx as CreateGrantResult, iS as CreateObjectRecord, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ih as CreateViewInput, hK as CreateWorkflowInput, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, ej as DatabaseAdapter, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, gl as DocumentSlotsRepository, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, fx as EndExecutor, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, go as FilesRepository, fy as FormExecutor, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, eB as InsertOptions, fQ as InvalidPathError, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, fp as NodeExecutor, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, i5 as RecordDocumentsResult, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, gP as RelationValidationError, gO as RelationValidationResult, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, eF as ShortcutOperator, iq as SignedUrlOptions, gY as SingleRelationValue, fz as StartExecutor, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, fg as TenantContext, eU as TenantContextError, hv as TokenRevokedError, g0 as TraversalOptions, g1 as TraversalResult, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, gE as UpdateObjectInput, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, hQ as UserService, hP as UserValidationError, hO as UserValidationResult, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, en as WorkflowAccessPayload, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, gx as WorkflowsRepository, f2 as addSchemaToContext, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, g9 as createMockAdapter, eM as createQueryBuilder, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, fa as getContext, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, eZ as isFeatureEnabled, iD as isLabelExpression, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-VuCTBbS6.js';
1
+ export { gd as AIConversationsRepository, ge as AIUsageMetricsRepository, gf as AIUserMemoryRepository, gD as AddAttributeInput, g2 as AttributeChange, gg as AttributesRepository, gh as AuditRepository, hT as AuditService, gz as BaseRepository, gy as BaseService, es as CacheAdapter, eq as CacheKeyType, et as CacheOptions, fv as ConditionExecutor, gC as CreateCustomObjectInput, iP as CreateDBAttribute, iL as CreateDBObject, i$ as CreateDBView, j3 as CreateDBViewOverlay, j6 as CreateDBWorkflow, jf as CreateDBWorkflowAccessGrant, j9 as CreateDBWorkflowInstance, jc as CreateDBWorkflowInvitation, hx as CreateGrantResult, iS as CreateObjectRecord, i6 as CreateRecordDocumentInput, i7 as CreateRecordDocumentResult, ih as CreateViewInput, hK as CreateWorkflowInput, iO as DBAttribute, iK as DBObject, i_ as DBView, j2 as DBViewOverlay, j5 as DBWorkflow, je as DBWorkflowAccessGrant, j8 as DBWorkflowInstance, jb as DBWorkflowInvitation, iB as DEFAULT_LABEL_FALLBACK, ej as DatabaseAdapter, fw as DocumentExecutor, hW as DocumentGenerationNotConfiguredError, hX as DocumentGenerationService, gi as DocumentGenerationTemplateListOptions, hV as DocumentGenerationTemplateNotFoundError, gj as DocumentGenerationTemplatesRepository, gk as DocumentJobsRepository, hY as DocumentProcessingConfig, hr as DocumentProcessingHook, hq as DocumentProcessingHookOptions, hZ as DocumentProcessingService, i1 as DocumentRenderError, h$ as DocumentRendererOptions, i3 as DocumentRendererService, i9 as DocumentService, i8 as DocumentServiceOptions, gl as DocumentSlotsRepository, i4 as DocumentTemplateService, gn as DocumentTemplatesRepository, gm as DocumentsRepository, fx as EndExecutor, eP as EvaluationResult, eQ as EvaluationTrace, fj as ExecutorCompleteResult, fk as ExecutorContext, fl as ExecutorErrorResult, fs as ExecutorRegistry, fm as ExecutorResult, fn as ExecutorSuccessResult, fo as ExecutorWaitResult, f1 as FeatureFlagsContext, eV as FeatureFlagsContextError, ey as FetchResult, im as FileContent, iZ as FileListOptions, ib as FileService, ia as FileServiceOptions, go as FilesRepository, fy as FormExecutor, ez as FormattedRecord, h2 as FormulaResolverService, h1 as FormulaResolverServiceOptions, fM as FormulaResult, iz as FullSyncOptions, iy as FullSyncResult, bH as GeocodingAdapter, bE as GeocodingAutocompleteParams, bG as GeocodingParams, ic as GeocodingService, bD as GeocodingSuggestion, gS as GetRelationOptionsParams, ik as GetViewOptions, ij as GetViewsOptions, iW as GlobalSearchGroupedOptions, iY as GlobalSearchGroupedResult, iV as GlobalSearchOptions, iX as GlobalSearchResultItem, id as GlobalSearchService, ht as GrantExpiredError, hs as GrantNotFoundError, hu as GrantRevokedError, hw as GrantServiceConfig, eA as GroupedFetchResult, g3 as HookContext, g4 as HookDefinition, g5 as HookHandler, g8 as HookRegistry, g6 as HookType, gZ as HybridRelationValue, eB as InsertOptions, fQ as InvalidPathError, hG as InvitationAlreadyAcceptedError, hF as InvitationExpiredError, hE as InvitationNotFoundError, hH as InvitationRevokedError, hD as InvitationServiceConfig, el as JwtVerificationResult, hh as LabelResolver, iT as ListOptions, em as MagicLinkPayload, fR as MaxDepthExceededError, ga as MockStores, gX as MultiRelationValue, fp as NodeExecutor, ex as NoopCacheAdapter, bI as NoopGeocodingAdapter, g7 as NoopHookRegistry, gp as ObjectRecordsRepository, gG as ObjectSchemaService, gF as ObjectSchemaServiceOptions, gq as ObjectsRepository, jh as OperationResult, fV as PathCardinality, fW as PathSegment, fX as PathSegmentType, ig as PermissionService, ie as PermissionServiceOptions, gr as PermissionsRepository, cl as PolicyContext, gc as PolicyRegistry, cn as PolicyViolationError, eN as QueryBuilder, eO as QueryBuilderOptions, eC as QueryBuilderState, eJ as QueryMultipleResultsError, eK as QueryNoResultError, gK as QueryOptions, gM as QueryResult, i5 as RecordDocumentsResult, cm as RecordPolicy, gN as RecordQueryService, gJ as RecordQueryServiceOptions, g$ as RecordResolverService, gI as RecordService, gH as RecordServiceOptions, eD as RegistryMap, eE as RegistryObjectNames, ee as RelationAttributeInput, ef as RelationAttributeRow, eg as RelationAttributesRepository, iI as RelationLabelResolver, gQ as RelationOption, gR as RelationOptionsResponse, g_ as RelationPropertiesService, gW as RelationService, gT as RelationServiceOptions, gP as RelationValidationError, gO as RelationValidationResult, h_ as RenderDocumentInput, i0 as RenderDocumentResult, gU as ResolveIdsBatchRequest, gV as ResolveIdsBatchResponse, h0 as ResolvedRelations, hA as ResumeWorkflowInput, bF as ReverseGeocodingParams, hp as RollupCascadeContext, h3 as RollupResult, h7 as RollupScheduler, h6 as RollupSchedulerOptions, h5 as RollupService, h4 as RollupServiceOptions, eL as SHORTCUT_TO_FILTER_OPERATOR, eh as SORTABLE_ATTRIBUTE_TYPES, f9 as SchemaContext, gA as SchemaContextAware, gB as SchemaContextAwareRepository, fY as SchemaResolver, ei as SearchAdapter, iU as SearchOptions, gL as SearchQueryOptions, eF as ShortcutOperator, iq as SignedUrlOptions, gY as SingleRelationValue, fz as StartExecutor, hz as StartWorkflowInput, ir as StorageAdapter, i2 as StorageDownloadNotSupportedError, io as StorageUploadInput, ip as StorageUploadResult, iu as SyncOptions, it as SyncResult, fg as TenantContext, eU as TenantContextError, hv as TokenRevokedError, g0 as TraversalOptions, g1 as TraversalResult, iQ as UpdateDBAttribute, iM as UpdateDBObject, j0 as UpdateDBView, j4 as UpdateDBViewOverlay, j7 as UpdateDBWorkflow, jg as UpdateDBWorkflowAccessGrant, ja as UpdateDBWorkflowInstance, jd as UpdateDBWorkflowInvitation, gE as UpdateObjectInput, ii as UpdateViewInput, hL as UpdateWorkflowInput, is as UploadFileInput, iR as UpsertDBAttribute, iN as UpsertDBObject, j1 as UpsertDBView, hS as UserProfileService, hR as UserProfileServiceOptions, gs as UserProfilesRepository, hQ as UserService, hP as UserValidationError, hO as UserValidationResult, ed as ViewOverlaysRepository, il as ViewService, jj as ViewSyncLogger, jk as ViewSyncOptions, ji as ViewSyncResult, gt as ViewsRepository, hy as WorkflowAccessGrantService, gu as WorkflowAccessGrantsRepository, en as WorkflowAccessPayload, hC as WorkflowInstanceService, hB as WorkflowInstanceServiceOptions, gv as WorkflowInstancesRepository, hI as WorkflowInvitationService, gw as WorkflowInvitationsRepository, eo as WorkflowJwtConfig, ep as WorkflowJwtPayload, ek as WorkflowJwtService, hJ as WorkflowRelationService, hN as WorkflowService, hM as WorkflowServiceOptions, gx as WorkflowsRepository, f2 as addSchemaToContext, h8 as applyDefaultValues, hU as buildAuditChanges, hb as buildPolicyContext, eu as cacheKeys, ev as cacheTtl, h9 as checkPermission, hc as checkRecordAccess, he as checkRecordDeleteOrThrow, hd as checkRecordModifyOrThrow, hf as checkSharedObjectWriteAccess, fq as complete, hg as computeLabel, iJ as computeLabelWithRelations, hk as createContextForCreate, hm as createContextForDelete, hn as createContextForRestore, hl as createContextForUpdate, fh as createDefaultExecutorRegistry, eG as createDefaultState, g9 as createMockAdapter, eM as createQueryBuilder, gb as defaultPolicyRegistry, ew as defaultTtl, hj as enrichRecordsWithFormulas, iF as enrichValuesForDisplay, iG as enrichValuesWithSelectLabels, hi as enrichWithFormulas, fr as error, eS as evaluate, eR as evaluateCondition, fA as evaluateFormula, fB as evaluateFormulaAttribute, fC as evaluateFormulaAttributeWithRelations, fD as evaluateFormulaWithRelations, fE as evaluateFormulaWithResult, eT as evaluateWithTrace, iE as extractAttributeNames, fF as extractFormulaVariables, iH as extractRelationIds, fG as extractRelationNames, fH as extractRelationReferences, fI as flattenRelationsForEval, fJ as formatFormulaResult, eH as formatRecord, eI as formatRecords, fa as getContext, fi as getDefaultExecutorRegistry, eW as getFeatureFlags, eX as getFeatureValue, fN as getPathDepth, ha as getPolicy, fO as getRelationPath, f3 as getSchemaByNameFromContext, f4 as getSchemaContext, f5 as getSchemaFromContext, ix as getSyncPreview, fP as getTargetAttributeName, fb as getTenantId, fc as getUserId, jp as getViewSeedPreview, jq as getViewSyncPreview, fd as hasContext, eY as hasFeatureFlagsContext, fK as hasRelationReferences, f6 as hasSchemaContext, er as hashOptions, eZ as isFeatureEnabled, iD as isLabelExpression, fS as parsePath, fT as pathHasManyCardinality, ho as recalculateParentRollups, iC as renderLabelExpression, fZ as resolveMultiplePaths, f_ as resolveSingleValue, fe as runWithContext, e_ as runWithFeatureFlags, f7 as runWithMergedSchemaContext, f8 as runWithSchemaContext, jl as seedRegistryViews, ft as success, iA as syncAll, iv as syncNativeObjects, jm as syncNativeViews, f$ as traversePath, e$ as tryGetFeatureValue, fL as validateFormulaExpression, fU as validatePath, iw as verifyNativeObjectsSync, jo as verifyNativeViewsSync, jn as verifyRegistryViewsSeeded, fu as wait, f0 as withFeatureFlags, ff as withTenantContext } from './runtime-DE2X2kPp.js';
2
2
  export { a8 as CompletionStatus } from './validators-BxPuQ2GT.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 _chunk27O7E2WMjs = require('./chunk-27O7E2WM.js');
161
+ var _chunk7JHBQL6Hjs = require('./chunk-7JHBQL6H.js');
162
162
  require('./chunk-NEVERCM3.js');
163
163
  require('./chunk-3WTK7ESH.js');
164
164
  require('./chunk-JZO52C3F.js');
@@ -323,4 +323,4 @@ require('./chunk-3RG5ZIWI.js');
323
323
 
324
324
 
325
325
 
326
- exports.AuditService = _chunk27O7E2WMjs.AuditService; exports.BaseRepository = _chunk27O7E2WMjs.BaseRepository; exports.BaseService = _chunk27O7E2WMjs.BaseService; exports.ConditionExecutor = _chunk27O7E2WMjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunk27O7E2WMjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunk27O7E2WMjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk27O7E2WMjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk27O7E2WMjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk27O7E2WMjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunk27O7E2WMjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk27O7E2WMjs.DocumentProcessingService; exports.DocumentRenderError = _chunk27O7E2WMjs.DocumentRenderError; exports.DocumentRendererService = _chunk27O7E2WMjs.DocumentRendererService; exports.DocumentService = _chunk27O7E2WMjs.DocumentService; exports.DocumentTemplateService = _chunk27O7E2WMjs.DocumentTemplateService; exports.EndExecutor = _chunk27O7E2WMjs.EndExecutor; exports.ExecutorRegistry = _chunk27O7E2WMjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunk27O7E2WMjs.FeatureFlagsContextError; exports.FileService = _chunk27O7E2WMjs.FileService; exports.FormExecutor = _chunk27O7E2WMjs.FormExecutor; exports.FormulaResolverService = _chunk27O7E2WMjs.FormulaResolverService; exports.GeocodingService = _chunk27O7E2WMjs.GeocodingService; exports.GlobalSearchService = _chunk27O7E2WMjs.GlobalSearchService; exports.GrantExpiredError = _chunk27O7E2WMjs.GrantExpiredError; exports.GrantNotFoundError = _chunk27O7E2WMjs.GrantNotFoundError; exports.GrantRevokedError = _chunk27O7E2WMjs.GrantRevokedError; exports.InvalidPathError = _chunk27O7E2WMjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk27O7E2WMjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk27O7E2WMjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk27O7E2WMjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk27O7E2WMjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunk27O7E2WMjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunk27O7E2WMjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk27O7E2WMjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk27O7E2WMjs.NoopHookRegistry; exports.ObjectSchemaService = _chunk27O7E2WMjs.ObjectSchemaService; exports.PermissionService = _chunk27O7E2WMjs.PermissionService; exports.PolicyRegistry = _chunk27O7E2WMjs.PolicyRegistry; exports.PolicyViolationError = _chunk27O7E2WMjs.PolicyViolationError; exports.QueryBuilder = _chunk27O7E2WMjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk27O7E2WMjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk27O7E2WMjs.QueryNoResultError; exports.RecordQueryService = _chunk27O7E2WMjs.RecordQueryService; exports.RecordResolverService = _chunk27O7E2WMjs.RecordResolverService; exports.RecordService = _chunk27O7E2WMjs.RecordService; exports.RelationPropertiesService = _chunk27O7E2WMjs.RelationPropertiesService; exports.RelationService = _chunk27O7E2WMjs.RelationService; exports.RollupScheduler = _chunk27O7E2WMjs.RollupScheduler; exports.RollupService = _chunk27O7E2WMjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk27O7E2WMjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SORTABLE_ATTRIBUTE_TYPES = _chunk27O7E2WMjs.SORTABLE_ATTRIBUTE_TYPES; exports.SchemaContextAwareRepository = _chunk27O7E2WMjs.SchemaContextAwareRepository; exports.StartExecutor = _chunk27O7E2WMjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunk27O7E2WMjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunk27O7E2WMjs.TenantContextError; exports.TokenRevokedError = _chunk27O7E2WMjs.TokenRevokedError; exports.UserProfileService = _chunk27O7E2WMjs.UserProfileService; exports.UserService = _chunk27O7E2WMjs.UserService; exports.ViewService = _chunk27O7E2WMjs.ViewService; exports.WorkflowAccessGrantService = _chunk27O7E2WMjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunk27O7E2WMjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk27O7E2WMjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk27O7E2WMjs.WorkflowJwtService; exports.WorkflowRelationService = _chunk27O7E2WMjs.WorkflowRelationService; exports.WorkflowService = _chunk27O7E2WMjs.WorkflowService; exports.addSchemaToContext = _chunk27O7E2WMjs.addSchemaToContext; exports.applyDefaultValues = _chunk27O7E2WMjs.applyDefaultValues; exports.buildAuditChanges = _chunk27O7E2WMjs.buildAuditChanges; exports.buildPolicyContext = _chunk27O7E2WMjs.buildPolicyContext; exports.cacheKeys = _chunk27O7E2WMjs.cacheKeys; exports.cacheTtl = _chunk27O7E2WMjs.cacheTtl; exports.checkPermission = _chunk27O7E2WMjs.checkPermission; exports.checkRecordAccess = _chunk27O7E2WMjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk27O7E2WMjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk27O7E2WMjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk27O7E2WMjs.checkSharedObjectWriteAccess; exports.complete = _chunk27O7E2WMjs.complete; exports.computeLabel = _chunk27O7E2WMjs.computeLabel; exports.computeLabelWithRelations = _chunk27O7E2WMjs.computeLabelWithRelations; exports.createContextForCreate = _chunk27O7E2WMjs.createContextForCreate; exports.createContextForDelete = _chunk27O7E2WMjs.createContextForDelete; exports.createContextForRestore = _chunk27O7E2WMjs.createContextForRestore; exports.createContextForUpdate = _chunk27O7E2WMjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunk27O7E2WMjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk27O7E2WMjs.createDefaultState; exports.createMockAdapter = _chunk27O7E2WMjs.createMockAdapter; exports.createQueryBuilder = _chunk27O7E2WMjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunk27O7E2WMjs.defaultPolicyRegistry; exports.defaultTtl = _chunk27O7E2WMjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunk27O7E2WMjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk27O7E2WMjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk27O7E2WMjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk27O7E2WMjs.enrichWithFormulas; exports.error = _chunk27O7E2WMjs.error; exports.evaluate = _chunk27O7E2WMjs.evaluate; exports.evaluateCondition = _chunk27O7E2WMjs.evaluateCondition; exports.evaluateFormula = _chunk27O7E2WMjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk27O7E2WMjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk27O7E2WMjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk27O7E2WMjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk27O7E2WMjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk27O7E2WMjs.evaluateWithTrace; exports.extractAttributeNames = _chunk27O7E2WMjs.extractAttributeNames; exports.extractFormulaVariables = _chunk27O7E2WMjs.extractFormulaVariables; exports.extractRelationIds = _chunk27O7E2WMjs.extractRelationIds; exports.extractRelationNames = _chunk27O7E2WMjs.extractRelationNames; exports.extractRelationReferences = _chunk27O7E2WMjs.extractRelationReferences; exports.flattenRelationsForEval = _chunk27O7E2WMjs.flattenRelationsForEval; exports.formatFormulaResult = _chunk27O7E2WMjs.formatFormulaResult; exports.formatRecord = _chunk27O7E2WMjs.formatRecord; exports.formatRecords = _chunk27O7E2WMjs.formatRecords; exports.getContext = _chunk27O7E2WMjs.getContext; exports.getDefaultExecutorRegistry = _chunk27O7E2WMjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunk27O7E2WMjs.getFeatureFlags; exports.getFeatureValue = _chunk27O7E2WMjs.getFeatureValue; exports.getPathDepth = _chunk27O7E2WMjs.getPathDepth; exports.getPolicy = _chunk27O7E2WMjs.getPolicy; exports.getRelationPath = _chunk27O7E2WMjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk27O7E2WMjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk27O7E2WMjs.getSchemaContext; exports.getSchemaFromContext = _chunk27O7E2WMjs.getSchemaFromContext; exports.getSyncPreview = _chunk27O7E2WMjs.getSyncPreview; exports.getTargetAttributeName = _chunk27O7E2WMjs.getTargetAttributeName; exports.getTenantId = _chunk27O7E2WMjs.getTenantId; exports.getUserId = _chunk27O7E2WMjs.getUserId; exports.getViewSeedPreview = _chunk27O7E2WMjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk27O7E2WMjs.getViewSyncPreview; exports.hasContext = _chunk27O7E2WMjs.hasContext; exports.hasFeatureFlagsContext = _chunk27O7E2WMjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunk27O7E2WMjs.hasRelationReferences; exports.hasSchemaContext = _chunk27O7E2WMjs.hasSchemaContext; exports.hashOptions = _chunk27O7E2WMjs.hashOptions; exports.isFeatureEnabled = _chunk27O7E2WMjs.isFeatureEnabled; exports.isLabelExpression = _chunk27O7E2WMjs.isLabelExpression; exports.parsePath = _chunk27O7E2WMjs.parsePath; exports.pathHasManyCardinality = _chunk27O7E2WMjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunk27O7E2WMjs.recalculateParentRollups; exports.renderLabelExpression = _chunk27O7E2WMjs.renderLabelExpression; exports.resolveMultiplePaths = _chunk27O7E2WMjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk27O7E2WMjs.resolveSingleValue; exports.runWithContext = _chunk27O7E2WMjs.runWithContext; exports.runWithFeatureFlags = _chunk27O7E2WMjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk27O7E2WMjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk27O7E2WMjs.runWithSchemaContext; exports.seedRegistryViews = _chunk27O7E2WMjs.seedRegistryViews; exports.success = _chunk27O7E2WMjs.success; exports.syncAll = _chunk27O7E2WMjs.syncAll; exports.syncNativeObjects = _chunk27O7E2WMjs.syncNativeObjects; exports.syncNativeViews = _chunk27O7E2WMjs.syncNativeViews; exports.traversePath = _chunk27O7E2WMjs.traversePath; exports.tryGetFeatureValue = _chunk27O7E2WMjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunk27O7E2WMjs.validateFormulaExpression; exports.validatePath = _chunk27O7E2WMjs.validatePath; exports.verifyNativeObjectsSync = _chunk27O7E2WMjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk27O7E2WMjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk27O7E2WMjs.verifyRegistryViewsSeeded; exports.wait = _chunk27O7E2WMjs.wait; exports.withFeatureFlags = _chunk27O7E2WMjs.withFeatureFlags; exports.withTenantContext = _chunk27O7E2WMjs.withTenantContext;
326
+ exports.AuditService = _chunk7JHBQL6Hjs.AuditService; exports.BaseRepository = _chunk7JHBQL6Hjs.BaseRepository; exports.BaseService = _chunk7JHBQL6Hjs.BaseService; exports.ConditionExecutor = _chunk7JHBQL6Hjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunk7JHBQL6Hjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunk7JHBQL6Hjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk7JHBQL6Hjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk7JHBQL6Hjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk7JHBQL6Hjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunk7JHBQL6Hjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk7JHBQL6Hjs.DocumentProcessingService; exports.DocumentRenderError = _chunk7JHBQL6Hjs.DocumentRenderError; exports.DocumentRendererService = _chunk7JHBQL6Hjs.DocumentRendererService; exports.DocumentService = _chunk7JHBQL6Hjs.DocumentService; exports.DocumentTemplateService = _chunk7JHBQL6Hjs.DocumentTemplateService; exports.EndExecutor = _chunk7JHBQL6Hjs.EndExecutor; exports.ExecutorRegistry = _chunk7JHBQL6Hjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunk7JHBQL6Hjs.FeatureFlagsContextError; exports.FileService = _chunk7JHBQL6Hjs.FileService; exports.FormExecutor = _chunk7JHBQL6Hjs.FormExecutor; exports.FormulaResolverService = _chunk7JHBQL6Hjs.FormulaResolverService; exports.GeocodingService = _chunk7JHBQL6Hjs.GeocodingService; exports.GlobalSearchService = _chunk7JHBQL6Hjs.GlobalSearchService; exports.GrantExpiredError = _chunk7JHBQL6Hjs.GrantExpiredError; exports.GrantNotFoundError = _chunk7JHBQL6Hjs.GrantNotFoundError; exports.GrantRevokedError = _chunk7JHBQL6Hjs.GrantRevokedError; exports.InvalidPathError = _chunk7JHBQL6Hjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk7JHBQL6Hjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk7JHBQL6Hjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk7JHBQL6Hjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk7JHBQL6Hjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunk7JHBQL6Hjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunk7JHBQL6Hjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk7JHBQL6Hjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk7JHBQL6Hjs.NoopHookRegistry; exports.ObjectSchemaService = _chunk7JHBQL6Hjs.ObjectSchemaService; exports.PermissionService = _chunk7JHBQL6Hjs.PermissionService; exports.PolicyRegistry = _chunk7JHBQL6Hjs.PolicyRegistry; exports.PolicyViolationError = _chunk7JHBQL6Hjs.PolicyViolationError; exports.QueryBuilder = _chunk7JHBQL6Hjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk7JHBQL6Hjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk7JHBQL6Hjs.QueryNoResultError; exports.RecordQueryService = _chunk7JHBQL6Hjs.RecordQueryService; exports.RecordResolverService = _chunk7JHBQL6Hjs.RecordResolverService; exports.RecordService = _chunk7JHBQL6Hjs.RecordService; exports.RelationPropertiesService = _chunk7JHBQL6Hjs.RelationPropertiesService; exports.RelationService = _chunk7JHBQL6Hjs.RelationService; exports.RollupScheduler = _chunk7JHBQL6Hjs.RollupScheduler; exports.RollupService = _chunk7JHBQL6Hjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk7JHBQL6Hjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SORTABLE_ATTRIBUTE_TYPES = _chunk7JHBQL6Hjs.SORTABLE_ATTRIBUTE_TYPES; exports.SchemaContextAwareRepository = _chunk7JHBQL6Hjs.SchemaContextAwareRepository; exports.StartExecutor = _chunk7JHBQL6Hjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunk7JHBQL6Hjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunk7JHBQL6Hjs.TenantContextError; exports.TokenRevokedError = _chunk7JHBQL6Hjs.TokenRevokedError; exports.UserProfileService = _chunk7JHBQL6Hjs.UserProfileService; exports.UserService = _chunk7JHBQL6Hjs.UserService; exports.ViewService = _chunk7JHBQL6Hjs.ViewService; exports.WorkflowAccessGrantService = _chunk7JHBQL6Hjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunk7JHBQL6Hjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk7JHBQL6Hjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk7JHBQL6Hjs.WorkflowJwtService; exports.WorkflowRelationService = _chunk7JHBQL6Hjs.WorkflowRelationService; exports.WorkflowService = _chunk7JHBQL6Hjs.WorkflowService; exports.addSchemaToContext = _chunk7JHBQL6Hjs.addSchemaToContext; exports.applyDefaultValues = _chunk7JHBQL6Hjs.applyDefaultValues; exports.buildAuditChanges = _chunk7JHBQL6Hjs.buildAuditChanges; exports.buildPolicyContext = _chunk7JHBQL6Hjs.buildPolicyContext; exports.cacheKeys = _chunk7JHBQL6Hjs.cacheKeys; exports.cacheTtl = _chunk7JHBQL6Hjs.cacheTtl; exports.checkPermission = _chunk7JHBQL6Hjs.checkPermission; exports.checkRecordAccess = _chunk7JHBQL6Hjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk7JHBQL6Hjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk7JHBQL6Hjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk7JHBQL6Hjs.checkSharedObjectWriteAccess; exports.complete = _chunk7JHBQL6Hjs.complete; exports.computeLabel = _chunk7JHBQL6Hjs.computeLabel; exports.computeLabelWithRelations = _chunk7JHBQL6Hjs.computeLabelWithRelations; exports.createContextForCreate = _chunk7JHBQL6Hjs.createContextForCreate; exports.createContextForDelete = _chunk7JHBQL6Hjs.createContextForDelete; exports.createContextForRestore = _chunk7JHBQL6Hjs.createContextForRestore; exports.createContextForUpdate = _chunk7JHBQL6Hjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunk7JHBQL6Hjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk7JHBQL6Hjs.createDefaultState; exports.createMockAdapter = _chunk7JHBQL6Hjs.createMockAdapter; exports.createQueryBuilder = _chunk7JHBQL6Hjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunk7JHBQL6Hjs.defaultPolicyRegistry; exports.defaultTtl = _chunk7JHBQL6Hjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunk7JHBQL6Hjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk7JHBQL6Hjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk7JHBQL6Hjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk7JHBQL6Hjs.enrichWithFormulas; exports.error = _chunk7JHBQL6Hjs.error; exports.evaluate = _chunk7JHBQL6Hjs.evaluate; exports.evaluateCondition = _chunk7JHBQL6Hjs.evaluateCondition; exports.evaluateFormula = _chunk7JHBQL6Hjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk7JHBQL6Hjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk7JHBQL6Hjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk7JHBQL6Hjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk7JHBQL6Hjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk7JHBQL6Hjs.evaluateWithTrace; exports.extractAttributeNames = _chunk7JHBQL6Hjs.extractAttributeNames; exports.extractFormulaVariables = _chunk7JHBQL6Hjs.extractFormulaVariables; exports.extractRelationIds = _chunk7JHBQL6Hjs.extractRelationIds; exports.extractRelationNames = _chunk7JHBQL6Hjs.extractRelationNames; exports.extractRelationReferences = _chunk7JHBQL6Hjs.extractRelationReferences; exports.flattenRelationsForEval = _chunk7JHBQL6Hjs.flattenRelationsForEval; exports.formatFormulaResult = _chunk7JHBQL6Hjs.formatFormulaResult; exports.formatRecord = _chunk7JHBQL6Hjs.formatRecord; exports.formatRecords = _chunk7JHBQL6Hjs.formatRecords; exports.getContext = _chunk7JHBQL6Hjs.getContext; exports.getDefaultExecutorRegistry = _chunk7JHBQL6Hjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunk7JHBQL6Hjs.getFeatureFlags; exports.getFeatureValue = _chunk7JHBQL6Hjs.getFeatureValue; exports.getPathDepth = _chunk7JHBQL6Hjs.getPathDepth; exports.getPolicy = _chunk7JHBQL6Hjs.getPolicy; exports.getRelationPath = _chunk7JHBQL6Hjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk7JHBQL6Hjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk7JHBQL6Hjs.getSchemaContext; exports.getSchemaFromContext = _chunk7JHBQL6Hjs.getSchemaFromContext; exports.getSyncPreview = _chunk7JHBQL6Hjs.getSyncPreview; exports.getTargetAttributeName = _chunk7JHBQL6Hjs.getTargetAttributeName; exports.getTenantId = _chunk7JHBQL6Hjs.getTenantId; exports.getUserId = _chunk7JHBQL6Hjs.getUserId; exports.getViewSeedPreview = _chunk7JHBQL6Hjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk7JHBQL6Hjs.getViewSyncPreview; exports.hasContext = _chunk7JHBQL6Hjs.hasContext; exports.hasFeatureFlagsContext = _chunk7JHBQL6Hjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunk7JHBQL6Hjs.hasRelationReferences; exports.hasSchemaContext = _chunk7JHBQL6Hjs.hasSchemaContext; exports.hashOptions = _chunk7JHBQL6Hjs.hashOptions; exports.isFeatureEnabled = _chunk7JHBQL6Hjs.isFeatureEnabled; exports.isLabelExpression = _chunk7JHBQL6Hjs.isLabelExpression; exports.parsePath = _chunk7JHBQL6Hjs.parsePath; exports.pathHasManyCardinality = _chunk7JHBQL6Hjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunk7JHBQL6Hjs.recalculateParentRollups; exports.renderLabelExpression = _chunk7JHBQL6Hjs.renderLabelExpression; exports.resolveMultiplePaths = _chunk7JHBQL6Hjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk7JHBQL6Hjs.resolveSingleValue; exports.runWithContext = _chunk7JHBQL6Hjs.runWithContext; exports.runWithFeatureFlags = _chunk7JHBQL6Hjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk7JHBQL6Hjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk7JHBQL6Hjs.runWithSchemaContext; exports.seedRegistryViews = _chunk7JHBQL6Hjs.seedRegistryViews; exports.success = _chunk7JHBQL6Hjs.success; exports.syncAll = _chunk7JHBQL6Hjs.syncAll; exports.syncNativeObjects = _chunk7JHBQL6Hjs.syncNativeObjects; exports.syncNativeViews = _chunk7JHBQL6Hjs.syncNativeViews; exports.traversePath = _chunk7JHBQL6Hjs.traversePath; exports.tryGetFeatureValue = _chunk7JHBQL6Hjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunk7JHBQL6Hjs.validateFormulaExpression; exports.validatePath = _chunk7JHBQL6Hjs.validatePath; exports.verifyNativeObjectsSync = _chunk7JHBQL6Hjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk7JHBQL6Hjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk7JHBQL6Hjs.verifyRegistryViewsSeeded; exports.wait = _chunk7JHBQL6Hjs.wait; exports.withFeatureFlags = _chunk7JHBQL6Hjs.withFeatureFlags; exports.withTenantContext = _chunk7JHBQL6Hjs.withTenantContext;
package/dist/runtime.mjs CHANGED
@@ -158,7 +158,7 @@ import {
158
158
  wait,
159
159
  withFeatureFlags,
160
160
  withTenantContext
161
- } from "./chunk-JEOP4TFZ.mjs";
161
+ } from "./chunk-XF46EJU7.mjs";
162
162
  import "./chunk-V2RPPE2Y.mjs";
163
163
  import "./chunk-5SZ5OISG.mjs";
164
164
  import "./chunk-6P3NPTYV.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/schema",
3
- "version": "1.0.0-alpha.76",
3
+ "version": "1.0.0-alpha.77",
4
4
  "description": "Standard schema definitions and utilities",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -36,7 +36,7 @@
36
36
  "libphonenumber-js": "^1.12.31",
37
37
  "pdf-lib": "^1.17.1",
38
38
  "zod": "^4.2.1",
39
- "@stndrds/constants": "1.0.0-alpha.76"
39
+ "@stndrds/constants": "1.0.0-alpha.77"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^25.0.3",