@stndrds/schema 1.0.0-alpha.87 → 1.0.0-alpha.89

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.
@@ -2570,6 +2570,13 @@ var FormExecutor = class {
2570
2570
  continue;
2571
2571
  }
2572
2572
  if (slot.mode === "select") continue;
2573
+ if (slot.mode === "optional") {
2574
+ const slotInput2 = input[fieldRef.slotId];
2575
+ const hasAnyValue = slotInput2 && Object.values(slotInput2).some(
2576
+ (v) => v !== void 0 && v !== null && v !== "" && !(Array.isArray(v) && v.length === 0)
2577
+ );
2578
+ if (!hasAnyValue) continue;
2579
+ }
2573
2580
  const object2 = objects.find((o) => o.name === slot.objectName);
2574
2581
  if (!object2) {
2575
2582
  console.warn(
@@ -14571,9 +14578,10 @@ var WorkflowInstanceService = class extends BaseService {
14571
14578
  // ============================================================================
14572
14579
  /**
14573
14580
  * Persist all slots as records in the database using a saga pattern.
14574
- * - Slots with mode "create" create new records
14581
+ * - Slots with mode "create" always create new records
14575
14582
  * - Slots with mode "select" or "optional" with existing ID update the record
14576
14583
  * - Slots with mode "optional" without ID create new records
14584
+ * - Slots with mode "create_if_not_empty" create new records only if data is not empty after cleaning
14577
14585
  *
14578
14586
  * If any slot fails to persist, all previously persisted slots in this batch
14579
14587
  * are rolled back (best-effort): created records are deleted, updated records
@@ -14654,6 +14662,22 @@ var WorkflowInstanceService = class extends BaseService {
14654
14662
  operation: "create"
14655
14663
  });
14656
14664
  }
14665
+ } else if (slot.mode === "create_if_not_empty") {
14666
+ if (Object.keys(dataToSave).length > 0) {
14667
+ const record = await this.recordService.createRecord(objectId, dataToSave, {
14668
+ allowDraft: true,
14669
+ metadata: {
14670
+ createdByWorkflow: instance.id,
14671
+ workflowSlot: slot.id
14672
+ }
14673
+ });
14674
+ createdRecordIds[slot.id] = record.id;
14675
+ completedOperations.push({
14676
+ slotId: slot.id,
14677
+ recordId: record.id,
14678
+ operation: "create"
14679
+ });
14680
+ }
14657
14681
  }
14658
14682
  } catch (error2) {
14659
14683
  const rolledBackSlots = await this.rollbackSlotOperations(completedOperations);
@@ -2570,6 +2570,13 @@ var FormExecutor = class {
2570
2570
  continue;
2571
2571
  }
2572
2572
  if (slot.mode === "select") continue;
2573
+ if (slot.mode === "optional") {
2574
+ const slotInput2 = input[fieldRef.slotId];
2575
+ const hasAnyValue = slotInput2 && Object.values(slotInput2).some(
2576
+ (v) => v !== void 0 && v !== null && v !== "" && !(Array.isArray(v) && v.length === 0)
2577
+ );
2578
+ if (!hasAnyValue) continue;
2579
+ }
2573
2580
  const object2 = objects.find((o) => o.name === slot.objectName);
2574
2581
  if (!object2) {
2575
2582
  console.warn(
@@ -14571,9 +14578,10 @@ var WorkflowInstanceService = class extends BaseService {
14571
14578
  // ============================================================================
14572
14579
  /**
14573
14580
  * Persist all slots as records in the database using a saga pattern.
14574
- * - Slots with mode "create" create new records
14581
+ * - Slots with mode "create" always create new records
14575
14582
  * - Slots with mode "select" or "optional" with existing ID update the record
14576
14583
  * - Slots with mode "optional" without ID create new records
14584
+ * - Slots with mode "create_if_not_empty" create new records only if data is not empty after cleaning
14577
14585
  *
14578
14586
  * If any slot fails to persist, all previously persisted slots in this batch
14579
14587
  * are rolled back (best-effort): created records are deleted, updated records
@@ -14654,6 +14662,22 @@ var WorkflowInstanceService = class extends BaseService {
14654
14662
  operation: "create"
14655
14663
  });
14656
14664
  }
14665
+ } else if (slot.mode === "create_if_not_empty") {
14666
+ if (Object.keys(dataToSave).length > 0) {
14667
+ const record = await this.recordService.createRecord(objectId, dataToSave, {
14668
+ allowDraft: true,
14669
+ metadata: {
14670
+ createdByWorkflow: instance.id,
14671
+ workflowSlot: slot.id
14672
+ }
14673
+ });
14674
+ createdRecordIds[slot.id] = record.id;
14675
+ completedOperations.push({
14676
+ slotId: slot.id,
14677
+ recordId: record.id,
14678
+ operation: "create"
14679
+ });
14680
+ }
14657
14681
  }
14658
14682
  } catch (error2) {
14659
14683
  const rolledBackSlots = await this.rollbackSlotOperations(completedOperations);
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { F as FormNode, W as WorkflowNode, a as WorkflowNodeType, S as SystemResource, A as Action, I as InferAttributeValue, b as Field, c as AttributeGroupField, d as FieldGroup, R as RelationGroup, D as DetailViewLayout, e as SidePanelConfig, G as Group, f as DetailViewDefinition, g as InstanceStatus, T as Tab, h as TableTab, C as CreateMode, i as FilterState, j as SortRule, L as ListViewDefinition, k as WorkflowTheme, l as WorkflowConfig, m as SlotMode, n as ConditionGroup, o as ConditionRule, p as WorkflowDefinition, q as FlowFieldsRow, r as ListViewConfig, s as ListViewTab, V as ViewType, t as ViewDefinition } from './runtime-Dz1JEYu7.mjs';
2
- export { d4 as AIActionConfig, fL as AIActionHandler, fS as AIActionRegistry, fJ as AIActionRegistryDeps, fM as AIActionResult, d5 as AIActionType, a0 as AIAvailableModel, af as AIBatchQuestion, ag as AIBatchQuestionAnswer, ae as AIBatchQuestionOption, a9 as AIChatMessage, a8 as AIChatMessagePart, a3 as AIChatMessagePartType, at as AICompactionSummary, al as AIConversation, gy as AIConversationsRepository, fH as AIExecutor, as as AIMemoryEntry, ar as AIMemoryType, am as AIMessage, ak as AIMessageAttachment, _ as AIMessageRole, d6 as AINode, ap as AIProviderMetrics, ac as AIQuestion, ad as AIQuestionAnswer, ab as AIQuestionOption, aa as AIQuestionType, $ as AIThinkingLevel, ai as AITodoItem, aj as AITodoList, ah as AITodoStatus, a2 as AIToolCall, an as AIToolCallRecord, a1 as AIToolCallStatus, ao as AIUsageMetrics, gz as AIUsageMetricsRepository, c1 as ALL_ACTIONS, c0 as AccessLevel, cB as ActivityTab, bJ as AddAttribute, gU as AddAttributeInput, b9 as AdvancedFilterState, fN as AgentExecutionInput, fO as AgentExecutionOutput, fG as AssignExecutor, d9 as AssignNode, cd as AssignRoleInput, d7 as AssignmentMapping, d8 as AssignmentSource, gn as AttributeChange, bI as AttributeMap, bE as AttributeSchema, gA as AttributesRepository, av as AuditAction, aw as AuditActorType, ax as AuditChange, aA as AuditListOptions, ay as AuditLogEntry, gB as AuditRepository, au as AuditResourceType, i6 as AuditService, aB as AuditServiceOptions, gQ as BaseRepository, gP as BaseService, B as BoundingBox, eA as CacheAdapter, ey as CacheKeyType, eB as CacheOptions, cH as CalendarViewConfig, cL as CalendarViewDefinition, dx as CanvasViewport, aX as CheckboxFilterOperator, da as CodeExecutionAction, fU as CodeExecutionHandler, fP as CodeExecutionInput, fQ as CodeExecutionOutput, fD as ConditionExecutor, db as ConditionNode, dp as ConditionOperator, cO as ConfigOverrides, aq as CreateAIMessageInput, az as CreateAuditLogInput, gT as CreateCustomObjectInput, iU as CreateDBAttribute, iQ as CreateDBObject, j4 as CreateDBView, j8 as CreateDBViewOverlay, jb as CreateDBWorkflow, jk as CreateDBWorkflowAccessGrant, je as CreateDBWorkflowInstance, jh as CreateDBWorkflowInvitation, aJ as CreateDocument, aL as CreateDocumentSlot, aT as CreateFile, dU as CreateGrantInput, hM as CreateGrantResult, dN as CreateInvitationInput, dO as CreateInvitationResult, iX as CreateObjectRecord, cc as CreatePermissionInput, aN as CreateProcessingJob, ib as CreateRecordDocumentInput, ic as CreateRecordDocumentResult, ca as CreateRoleInput, cn as CreateSandboxExecution, E as CreateSignatureInput, cr as CreateUserProfile, im as CreateViewInput, hZ as CreateWorkflowInput, b2 as CurrencyFilterValue, bN as CustomAttributeValue, cA as CustomTab, iT as DBAttribute, iP as DBObject, j3 as DBView, j7 as DBViewOverlay, ja as DBWorkflow, jj as DBWorkflowAccessGrant, jd as DBWorkflowInstance, jg as DBWorkflowInvitation, iG as DEFAULT_LABEL_FALLBACK, ef as DEFAULT_THEME, er as DatabaseAdapter, aY as DateFilterOperator, cG as DetailViewConfig, aC as Document, Y as DocumentData, dc as DocumentGenerationAction, fT as DocumentGenerationHandler, gC as DocumentJobsRepository, aP as DocumentListOptions, i8 as DocumentProcessingConfig, i9 as DocumentProcessingService, ie as DocumentService, id as DocumentServiceOptions, aE as DocumentSlot, gD as DocumentSlotsRepository, aD as DocumentStatus, gE as DocumentsRepository, cE as DocumentsTab, c7 as EffectivePermissions, fE as EndExecutor, dd as EndNode, eX as EvaluationResult, eY as EvaluationTrace, fr as ExecutorCompleteResult, fs as ExecutorContext, ft as ExecutorErrorResult, fA as ExecutorRegistry, fu as ExecutorResult, fv as ExecutorSuccessResult, fw as ExecutorWaitResult, b6 as ExtendedFilterRule, bX as ExtractAttributes, bZ as ExtractObjectRecord, b_ as ExtractObjectRecordWithCustom, bR as ExtractRecord, bT as ExtractRecordInput, bU as ExtractRecordInputStrict, bS as ExtractRecordStrict, bV as ExtractRecordUpdate, bW as ExtractRecordUpdateStrict, f9 as FeatureFlagsContext, f1 as FeatureFlagsContextError, eG as FetchResult, aS as File, is as FileContent, j2 as FileListOptions, ih as FileService, ig as FileServiceOptions, aR as FileVisibility, gF as FilesRepository, b7 as FilterCombinator, b8 as FilterGroup, b0 as FilterOperator, b5 as FilterRule, b4 as FilterValue, bu as FlowDefinition, bl as FlowHeadingRow, br as FlowPage, bs as FlowRelation, bo as FlowRow, bj as FlowRowField, bk as FlowRowType, bm as FlowSeparatorRow, bh as FlowSlot, bt as FlowStatus, bn as FlowTextRow, cD as FlowsTab, e4 as FormContextResponse, cv as FormDensity, fF as FormExecutor, e5 as FormFieldContext, de as FormFieldRef, e6 as FormFieldRow, e7 as FormFieldsRow, e8 as FormNodeInfo, cw as FormTab, eH as FormattedRecord, hj as FormulaResolverService, hi as FormulaResolverServiceOptions, g5 as FormulaResult, iE as FullSyncOptions, iD as FullSyncResult, cJ as GalleryViewConfig, cN as GalleryViewDefinition, d$ as GeneratedDocument, bC as GeocodingAdapter, bz as GeocodingAutocompleteParams, bB as GeocodingParams, ii as GeocodingService, by as GeocodingSuggestion, h7 as GetRelationOptionsParams, iq as GetViewOptions, ip as GetViewsOptions, i$ as GlobalSearchGroupedOptions, j1 as GlobalSearchGroupedResult, i_ as GlobalSearchOptions, j0 as GlobalSearchResultItem, ij as GlobalSearchService, hI as GrantExpiredError, hH as GrantNotFoundError, hJ as GrantRevokedError, hL as GrantServiceConfig, eI as GroupedFetchResult, go as HookContext, gp as HookDefinition, gq as HookHandler, gt as HookRegistry, gr as HookType, he as HybridRelationValue, Q as IdentityVerificationAdapter, bK as InferRecord, bF as InferRecordFromSchema, bL as InferRecordInput, bM as InferRecordUpdate, bG as InferRecordWithRequirements, eJ as InsertOptions, g9 as InvalidPathError, cy as InverseSource, hV as InvitationAlreadyAcceptedError, hU as InvitationExpiredError, hT as InvitationNotFoundError, hW as InvitationRevokedError, hS as InvitationServiceConfig, dP as InvitationStatus, ct as InviteUserInput, et as JwtVerificationResult, hy as LabelResolver, iY as ListOptions, cF as ListViewLayout, eu as MagicLinkPayload, ga as MaxDepthExceededError, gv as MockStores, hc as MultiRelationValue, a_ as MultiselectFilterOperator, be as NO_VALUE_OPERATORS, bd as NoValueOperator, fx as NodeExecutor, dy as NodePosition, eF as NoopCacheAdapter, bD as NoopGeocodingAdapter, gs as NoopHookRegistry, aW as NumberFilterOperator, bc as OPERATORS_BY_TYPE, c8 as ObjectPermissions, gG as ObjectRecordsRepository, gX as ObjectSchemaService, gW as ObjectSchemaServiceOptions, gH as ObjectsRepository, O as OcrAdapter, u as OcrInput, v as OcrOptions, x as OcrPage, w as OcrResult, y as OcrTextBlock, jm as OperationResult, ge as PathCardinality, gf as PathSegment, gg as PathSegmentType, dF as PendingAction, c5 as Permission, b$ as PermissionScope, il as PermissionService, ik as PermissionServiceOptions, gI as PermissionsRepository, b3 as PhoneFilterValue, ce as PolicyContext, gx as PolicyRegistry, cg as PolicyViolationError, aG as ProcessingJob, aI as ProcessingJobStatus, aH as ProcessingJobType, eV as QueryBuilder, eW as QueryBuilderOptions, eK as QueryBuilderState, eR as QueryMultipleResultsError, eS as QueryNoResultError, g$ as QueryOptions, h1 as QueryResult, bb as QueryState, e9 as ReadOnlyReason, a7 as ReasoningPartData, ia as RecordDocumentsResult, bP as RecordMetadata, cf as RecordPolicy, h2 as RecordQueryService, g_ as RecordQueryServiceOptions, hg as RecordResolverService, gZ as RecordService, gY as RecordServiceOptions, eL as RegistryMap, eM as RegistryObjectNames, el as RelationAttributeInput, em as RelationAttributeRow, en as RelationAttributesRepository, bi as RelationFieldConfig, a$ as RelationFilterOperator, iN as RelationLabelResolver, h5 as RelationOption, h6 as RelationOptionsResponse, hf as RelationPropertiesService, hb as RelationService, h8 as RelationServiceOptions, cx as RelationSource, h4 as RelationValidationError, h3 as RelationValidationResult, b1 as RelativeDateValue, h9 as ResolveIdsBatchRequest, ha as ResolveIdsBatchResponse, hh as ResolvedRelations, hP as ResumeWorkflowInput, bA as ReverseGeocodingParams, cC as RichtextTab, c4 as Role, hG as RollupCascadeContext, hk as RollupResult, ho as RollupScheduler, hn as RollupSchedulerOptions, hm as RollupService, hl as RollupServiceOptions, eT as SHORTCUT_TO_FILTER_OPERATOR, ep as SORTABLE_ATTRIBUTE_TYPES, cm as SandboxExecution, ck as SandboxExecutionInput, cl as SandboxExecutionResult, ci as SandboxExecutionStatus, eo as SandboxExecutionsRepository, fR as SandboxExecutor, ch as SandboxMode, cj as SandboxTrigger, fh as SchemaContext, gR as SchemaContextAware, gS as SchemaContextAwareRepository, gh as SchemaResolver, eq as SearchAdapter, iZ as SearchOptions, h0 as SearchQueryOptions, aZ as SelectFilterOperator, eN as ShortcutOperator, z as SignatureAdapter, J as SignaturePosition, K as SignatureRequestResult, P as SignatureStatus, M as SignatureStatusResult, iv as SignedUrlOptions, H as SignerRequest, N as SignerStatus, hd as SingleRelationValue, aF as SlotStatus, ba as SortDirection, fI as StartExecutor, df as StartNode, hO as StartWorkflowInput, iw as StorageAdapter, aQ as StorageProvider, it as StorageUploadInput, iu as StorageUploadResult, iz as SyncOptions, iy as SyncResult, bQ as SystemFields, c9 as SystemPermissions, cu as TabType, cz as TableSource, fo as TenantContext, f0 as TenantContextError, aV as TextFilterOperator, a4 as TextPartData, ec as ThemeColors, ed as ThemeLogo, ee as ThemeTypography, a6 as ThinkingPartData, cI as TimelineViewConfig, cM as TimelineViewDefinition, hK as TokenRevokedError, a5 as ToolPartData, gl as TraversalOptions, gm as TraversalResult, bH as TypedAttribute, bY as TypedObjectRecord, cp as USER_STATUSES, iV as UpdateDBAttribute, iR as UpdateDBObject, j5 as UpdateDBView, j9 as UpdateDBViewOverlay, jc as UpdateDBWorkflow, jl as UpdateDBWorkflowAccessGrant, jf as UpdateDBWorkflowInstance, ji as UpdateDBWorkflowInvitation, aK as UpdateDocument, aM as UpdateDocumentSlot, aU as UpdateFile, gV as UpdateObjectInput, aO as UpdateProcessingJob, cb as UpdateRoleInput, cs as UpdateUserProfile, io as UpdateViewInput, h_ as UpdateWorkflowInput, ix as UploadFileInput, iW as UpsertDBAttribute, iS as UpsertDBObject, j6 as UpsertDBView, cq as UserProfile, i5 as UserProfileService, i4 as UserProfileServiceOptions, gJ as UserProfilesRepository, c6 as UserRoleAssignment, i3 as UserService, co as UserStatus, i2 as UserValidationError, i1 as UserValidationResult, Z as VerificationCheck, X as VerificationResult, U as VerifyInput, cK as ViewConfig, cP as ViewOverlay, ek as ViewOverlaysRepository, ir as ViewService, jo as ViewSyncLogger, jp as ViewSyncOptions, jn as ViewSyncResult, gK as ViewsRepository, bO as WithCustomAttributes, dV as WorkflowAccessGrant, hN as WorkflowAccessGrantService, gL as WorkflowAccessGrantsRepository, ea as WorkflowAccessMode, ev as WorkflowAccessPayload, dG as WorkflowError, e0 as WorkflowExecutionContext, dH as WorkflowInstance, hR as WorkflowInstanceService, hQ as WorkflowInstanceServiceOptions, gM as WorkflowInstancesRepository, dQ as WorkflowInvitation, hX as WorkflowInvitationService, gN as WorkflowInvitationsRepository, ew as WorkflowJwtConfig, ex as WorkflowJwtPayload, es as WorkflowJwtService, dz as WorkflowLayout, hY as WorkflowRelationService, i0 as WorkflowService, h$ as WorkflowServiceOptions, dA as WorkflowSlot, dB as WorkflowStatus, dI as WorkflowTransition, gO as WorkflowsRepository, c3 as accessLevelToActions, c2 as actionsToAccessLevel, fa as addSchemaToContext, dq as and, hp as applyDefaultValues, i7 as buildAuditChanges, hs as buildPolicyContext, eC as cacheKeys, eD as cacheTtl, dW as canAccessNode, dJ as canResumeInstance, hq as checkPermission, ht as checkRecordAccess, hv as checkRecordDeleteOrThrow, hu as checkRecordModifyOrThrow, hw as checkSharedObjectWriteAccess, fy as complete, hx as computeLabel, iO as computeLabelWithRelations, hB as createContextForCreate, hD as createContextForDelete, hE as createContextForRestore, hC as createContextForUpdate, fK as createDefaultAIActionRegistry, fp as createDefaultExecutorRegistry, eO as createDefaultState, e1 as createEmptyContext, gu as createMockAdapter, eU as createQueryBuilder, dK as createStartTransition, gw as defaultPolicyRegistry, eE as defaultTtl, hA as enrichRecordsWithFormulas, iK as enrichValuesForDisplay, iL as enrichValuesWithSelectLabels, hz as enrichWithFormulas, dr as eq, fz as error, e_ as evaluate, eZ as evaluateCondition, fV as evaluateFormula, fW as evaluateFormulaAttribute, fX as evaluateFormulaAttributeWithRelations, fY as evaluateFormulaWithRelations, fZ as evaluateFormulaWithResult, e$ as evaluateWithTrace, iJ as extractAttributeNames, f_ as extractFormulaVariables, iM as extractRelationIds, f$ as extractRelationNames, g0 as extractRelationReferences, g1 as flattenRelationsForEval, g2 as formatFormulaResult, eP as formatRecord, eQ as formatRecords, eg as generateCssVariables, fi as getContext, e2 as getContextValue, fq as getDefaultExecutorRegistry, f2 as getFeatureFlags, f3 as getFeatureValue, g6 as getPathDepth, hr as getPolicy, g7 as getRelationPath, bg as getRollupFilterOperators, fb as getSchemaByNameFromContext, fc as getSchemaContext, fd as getSchemaFromContext, iC as getSyncPreview, g8 as getTargetAttributeName, fj as getTenantId, fk as getUserId, ju as getViewSeedPreview, jv as getViewSyncPreview, fl as hasContext, f4 as hasFeatureFlagsContext, g3 as hasRelationReferences, fe as hasSchemaContext, ez as hashOptions, ds as inValues, dh as isAINode, d0 as isActivityTab, dg as isAdvancedFormNode, di as isAssignNode, cS as isCalendarView, dt as isConditionGroup, dj as isConditionNode, du as isConditionRule, c$ as isCustomTab, cQ as isDetailView, d3 as isDocumentsTab, dk as isEndNode, f5 as isFeatureEnabled, cV as isFieldGroup, bv as isFlowDefinition, bp as isFlowFieldsRow, bw as isFlowPublished, d2 as isFlowsTab, eb as isFormFieldsRow, dl as isFormNode, cX as isFormTab, cU as isGalleryView, dX as isGrantExpired, dY as isGrantRevoked, dZ as isGrantValid, dL as isInstanceTerminal, dM as isInstanceWaiting, c_ as isInverseSourceTab, dR as isInvitationAccepted, dS as isInvitationExpired, dT as isInvitationValid, iI as isLabelExpression, bq as isLayoutRow, cR as isListView, bf as isNoValueOperator, cW as isRelationGroup, cZ as isRelationSourceTab, d1 as isRichtextTab, dm as isSimpleFormNode, dn as isStartNode, bx as isSystemFlow, dC as isSystemWorkflow, cY as isTableTab, cT as isTimelineView, d_ as isTokenRevoked, dD as isWorkflowDefinition, dE as isWorkflowPublished, eh as mergeWithDefaults, dv as neq, dw as or, gb as parsePath, gc as pathHasManyCardinality, hF as recalculateParentRollups, ei as registry, iH as renderLabelExpression, gi as resolveMultiplePaths, gj as resolveSingleValue, fm as runWithContext, f6 as runWithFeatureFlags, ff as runWithMergedSchemaContext, fg as runWithSchemaContext, jq as seedRegistryViews, e3 as setContextValue, fB as success, iF as syncAll, iA as syncNativeObjects, jr as syncNativeViews, gk as traversePath, f7 as tryGetFeatureValue, g4 as validateFormulaExpression, gd as validatePath, iB as verifyNativeObjectsSync, jt as verifyNativeViewsSync, js as verifyRegistryViewsSeeded, ej as viewRegistry, fC as wait, f8 as withFeatureFlags, fn as withTenantContext } from './runtime-Dz1JEYu7.mjs';
1
+ import { F as FormNode, W as WorkflowNode, a as WorkflowNodeType, S as SystemResource, A as Action, I as InferAttributeValue, b as Field, c as AttributeGroupField, d as FieldGroup, R as RelationGroup, D as DetailViewLayout, e as SidePanelConfig, G as Group, f as DetailViewDefinition, g as InstanceStatus, T as Tab, h as TableTab, C as CreateMode, i as FilterState, j as SortRule, L as ListViewDefinition, k as WorkflowTheme, l as WorkflowConfig, m as SlotMode, n as ConditionGroup, o as ConditionRule, p as WorkflowDefinition, q as FlowFieldsRow, r as ListViewConfig, s as ListViewTab, V as ViewType, t as ViewDefinition } from './runtime-D7zd4qmo.mjs';
2
+ export { d4 as AIActionConfig, fL as AIActionHandler, fS as AIActionRegistry, fJ as AIActionRegistryDeps, fM as AIActionResult, d5 as AIActionType, a0 as AIAvailableModel, af as AIBatchQuestion, ag as AIBatchQuestionAnswer, ae as AIBatchQuestionOption, a9 as AIChatMessage, a8 as AIChatMessagePart, a3 as AIChatMessagePartType, at as AICompactionSummary, al as AIConversation, gy as AIConversationsRepository, fH as AIExecutor, as as AIMemoryEntry, ar as AIMemoryType, am as AIMessage, ak as AIMessageAttachment, _ as AIMessageRole, d6 as AINode, ap as AIProviderMetrics, ac as AIQuestion, ad as AIQuestionAnswer, ab as AIQuestionOption, aa as AIQuestionType, $ as AIThinkingLevel, ai as AITodoItem, aj as AITodoList, ah as AITodoStatus, a2 as AIToolCall, an as AIToolCallRecord, a1 as AIToolCallStatus, ao as AIUsageMetrics, gz as AIUsageMetricsRepository, c1 as ALL_ACTIONS, c0 as AccessLevel, cB as ActivityTab, bJ as AddAttribute, gU as AddAttributeInput, b9 as AdvancedFilterState, fN as AgentExecutionInput, fO as AgentExecutionOutput, fG as AssignExecutor, d9 as AssignNode, cd as AssignRoleInput, d7 as AssignmentMapping, d8 as AssignmentSource, gn as AttributeChange, bI as AttributeMap, bE as AttributeSchema, gA as AttributesRepository, av as AuditAction, aw as AuditActorType, ax as AuditChange, aA as AuditListOptions, ay as AuditLogEntry, gB as AuditRepository, au as AuditResourceType, i6 as AuditService, aB as AuditServiceOptions, gQ as BaseRepository, gP as BaseService, B as BoundingBox, eA as CacheAdapter, ey as CacheKeyType, eB as CacheOptions, cH as CalendarViewConfig, cL as CalendarViewDefinition, dx as CanvasViewport, aX as CheckboxFilterOperator, da as CodeExecutionAction, fU as CodeExecutionHandler, fP as CodeExecutionInput, fQ as CodeExecutionOutput, fD as ConditionExecutor, db as ConditionNode, dp as ConditionOperator, cO as ConfigOverrides, aq as CreateAIMessageInput, az as CreateAuditLogInput, gT as CreateCustomObjectInput, iU as CreateDBAttribute, iQ as CreateDBObject, j4 as CreateDBView, j8 as CreateDBViewOverlay, jb as CreateDBWorkflow, jk as CreateDBWorkflowAccessGrant, je as CreateDBWorkflowInstance, jh as CreateDBWorkflowInvitation, aJ as CreateDocument, aL as CreateDocumentSlot, aT as CreateFile, dU as CreateGrantInput, hM as CreateGrantResult, dN as CreateInvitationInput, dO as CreateInvitationResult, iX as CreateObjectRecord, cc as CreatePermissionInput, aN as CreateProcessingJob, ib as CreateRecordDocumentInput, ic as CreateRecordDocumentResult, ca as CreateRoleInput, cn as CreateSandboxExecution, E as CreateSignatureInput, cr as CreateUserProfile, im as CreateViewInput, hZ as CreateWorkflowInput, b2 as CurrencyFilterValue, bN as CustomAttributeValue, cA as CustomTab, iT as DBAttribute, iP as DBObject, j3 as DBView, j7 as DBViewOverlay, ja as DBWorkflow, jj as DBWorkflowAccessGrant, jd as DBWorkflowInstance, jg as DBWorkflowInvitation, iG as DEFAULT_LABEL_FALLBACK, ef as DEFAULT_THEME, er as DatabaseAdapter, aY as DateFilterOperator, cG as DetailViewConfig, aC as Document, Y as DocumentData, dc as DocumentGenerationAction, fT as DocumentGenerationHandler, gC as DocumentJobsRepository, aP as DocumentListOptions, i8 as DocumentProcessingConfig, i9 as DocumentProcessingService, ie as DocumentService, id as DocumentServiceOptions, aE as DocumentSlot, gD as DocumentSlotsRepository, aD as DocumentStatus, gE as DocumentsRepository, cE as DocumentsTab, c7 as EffectivePermissions, fE as EndExecutor, dd as EndNode, eX as EvaluationResult, eY as EvaluationTrace, fr as ExecutorCompleteResult, fs as ExecutorContext, ft as ExecutorErrorResult, fA as ExecutorRegistry, fu as ExecutorResult, fv as ExecutorSuccessResult, fw as ExecutorWaitResult, b6 as ExtendedFilterRule, bX as ExtractAttributes, bZ as ExtractObjectRecord, b_ as ExtractObjectRecordWithCustom, bR as ExtractRecord, bT as ExtractRecordInput, bU as ExtractRecordInputStrict, bS as ExtractRecordStrict, bV as ExtractRecordUpdate, bW as ExtractRecordUpdateStrict, f9 as FeatureFlagsContext, f1 as FeatureFlagsContextError, eG as FetchResult, aS as File, is as FileContent, j2 as FileListOptions, ih as FileService, ig as FileServiceOptions, aR as FileVisibility, gF as FilesRepository, b7 as FilterCombinator, b8 as FilterGroup, b0 as FilterOperator, b5 as FilterRule, b4 as FilterValue, bu as FlowDefinition, bl as FlowHeadingRow, br as FlowPage, bs as FlowRelation, bo as FlowRow, bj as FlowRowField, bk as FlowRowType, bm as FlowSeparatorRow, bh as FlowSlot, bt as FlowStatus, bn as FlowTextRow, cD as FlowsTab, e4 as FormContextResponse, cv as FormDensity, fF as FormExecutor, e5 as FormFieldContext, de as FormFieldRef, e6 as FormFieldRow, e7 as FormFieldsRow, e8 as FormNodeInfo, cw as FormTab, eH as FormattedRecord, hj as FormulaResolverService, hi as FormulaResolverServiceOptions, g5 as FormulaResult, iE as FullSyncOptions, iD as FullSyncResult, cJ as GalleryViewConfig, cN as GalleryViewDefinition, d$ as GeneratedDocument, bC as GeocodingAdapter, bz as GeocodingAutocompleteParams, bB as GeocodingParams, ii as GeocodingService, by as GeocodingSuggestion, h7 as GetRelationOptionsParams, iq as GetViewOptions, ip as GetViewsOptions, i$ as GlobalSearchGroupedOptions, j1 as GlobalSearchGroupedResult, i_ as GlobalSearchOptions, j0 as GlobalSearchResultItem, ij as GlobalSearchService, hI as GrantExpiredError, hH as GrantNotFoundError, hJ as GrantRevokedError, hL as GrantServiceConfig, eI as GroupedFetchResult, go as HookContext, gp as HookDefinition, gq as HookHandler, gt as HookRegistry, gr as HookType, he as HybridRelationValue, Q as IdentityVerificationAdapter, bK as InferRecord, bF as InferRecordFromSchema, bL as InferRecordInput, bM as InferRecordUpdate, bG as InferRecordWithRequirements, eJ as InsertOptions, g9 as InvalidPathError, cy as InverseSource, hV as InvitationAlreadyAcceptedError, hU as InvitationExpiredError, hT as InvitationNotFoundError, hW as InvitationRevokedError, hS as InvitationServiceConfig, dP as InvitationStatus, ct as InviteUserInput, et as JwtVerificationResult, hy as LabelResolver, iY as ListOptions, cF as ListViewLayout, eu as MagicLinkPayload, ga as MaxDepthExceededError, gv as MockStores, hc as MultiRelationValue, a_ as MultiselectFilterOperator, be as NO_VALUE_OPERATORS, bd as NoValueOperator, fx as NodeExecutor, dy as NodePosition, eF as NoopCacheAdapter, bD as NoopGeocodingAdapter, gs as NoopHookRegistry, aW as NumberFilterOperator, bc as OPERATORS_BY_TYPE, c8 as ObjectPermissions, gG as ObjectRecordsRepository, gX as ObjectSchemaService, gW as ObjectSchemaServiceOptions, gH as ObjectsRepository, O as OcrAdapter, u as OcrInput, v as OcrOptions, x as OcrPage, w as OcrResult, y as OcrTextBlock, jm as OperationResult, ge as PathCardinality, gf as PathSegment, gg as PathSegmentType, dF as PendingAction, c5 as Permission, b$ as PermissionScope, il as PermissionService, ik as PermissionServiceOptions, gI as PermissionsRepository, b3 as PhoneFilterValue, ce as PolicyContext, gx as PolicyRegistry, cg as PolicyViolationError, aG as ProcessingJob, aI as ProcessingJobStatus, aH as ProcessingJobType, eV as QueryBuilder, eW as QueryBuilderOptions, eK as QueryBuilderState, eR as QueryMultipleResultsError, eS as QueryNoResultError, g$ as QueryOptions, h1 as QueryResult, bb as QueryState, e9 as ReadOnlyReason, a7 as ReasoningPartData, ia as RecordDocumentsResult, bP as RecordMetadata, cf as RecordPolicy, h2 as RecordQueryService, g_ as RecordQueryServiceOptions, hg as RecordResolverService, gZ as RecordService, gY as RecordServiceOptions, eL as RegistryMap, eM as RegistryObjectNames, el as RelationAttributeInput, em as RelationAttributeRow, en as RelationAttributesRepository, bi as RelationFieldConfig, a$ as RelationFilterOperator, iN as RelationLabelResolver, h5 as RelationOption, h6 as RelationOptionsResponse, hf as RelationPropertiesService, hb as RelationService, h8 as RelationServiceOptions, cx as RelationSource, h4 as RelationValidationError, h3 as RelationValidationResult, b1 as RelativeDateValue, h9 as ResolveIdsBatchRequest, ha as ResolveIdsBatchResponse, hh as ResolvedRelations, hP as ResumeWorkflowInput, bA as ReverseGeocodingParams, cC as RichtextTab, c4 as Role, hG as RollupCascadeContext, hk as RollupResult, ho as RollupScheduler, hn as RollupSchedulerOptions, hm as RollupService, hl as RollupServiceOptions, eT as SHORTCUT_TO_FILTER_OPERATOR, ep as SORTABLE_ATTRIBUTE_TYPES, cm as SandboxExecution, ck as SandboxExecutionInput, cl as SandboxExecutionResult, ci as SandboxExecutionStatus, eo as SandboxExecutionsRepository, fR as SandboxExecutor, ch as SandboxMode, cj as SandboxTrigger, fh as SchemaContext, gR as SchemaContextAware, gS as SchemaContextAwareRepository, gh as SchemaResolver, eq as SearchAdapter, iZ as SearchOptions, h0 as SearchQueryOptions, aZ as SelectFilterOperator, eN as ShortcutOperator, z as SignatureAdapter, J as SignaturePosition, K as SignatureRequestResult, P as SignatureStatus, M as SignatureStatusResult, iv as SignedUrlOptions, H as SignerRequest, N as SignerStatus, hd as SingleRelationValue, aF as SlotStatus, ba as SortDirection, fI as StartExecutor, df as StartNode, hO as StartWorkflowInput, iw as StorageAdapter, aQ as StorageProvider, it as StorageUploadInput, iu as StorageUploadResult, iz as SyncOptions, iy as SyncResult, bQ as SystemFields, c9 as SystemPermissions, cu as TabType, cz as TableSource, fo as TenantContext, f0 as TenantContextError, aV as TextFilterOperator, a4 as TextPartData, ec as ThemeColors, ed as ThemeLogo, ee as ThemeTypography, a6 as ThinkingPartData, cI as TimelineViewConfig, cM as TimelineViewDefinition, hK as TokenRevokedError, a5 as ToolPartData, gl as TraversalOptions, gm as TraversalResult, bH as TypedAttribute, bY as TypedObjectRecord, cp as USER_STATUSES, iV as UpdateDBAttribute, iR as UpdateDBObject, j5 as UpdateDBView, j9 as UpdateDBViewOverlay, jc as UpdateDBWorkflow, jl as UpdateDBWorkflowAccessGrant, jf as UpdateDBWorkflowInstance, ji as UpdateDBWorkflowInvitation, aK as UpdateDocument, aM as UpdateDocumentSlot, aU as UpdateFile, gV as UpdateObjectInput, aO as UpdateProcessingJob, cb as UpdateRoleInput, cs as UpdateUserProfile, io as UpdateViewInput, h_ as UpdateWorkflowInput, ix as UploadFileInput, iW as UpsertDBAttribute, iS as UpsertDBObject, j6 as UpsertDBView, cq as UserProfile, i5 as UserProfileService, i4 as UserProfileServiceOptions, gJ as UserProfilesRepository, c6 as UserRoleAssignment, i3 as UserService, co as UserStatus, i2 as UserValidationError, i1 as UserValidationResult, Z as VerificationCheck, X as VerificationResult, U as VerifyInput, cK as ViewConfig, cP as ViewOverlay, ek as ViewOverlaysRepository, ir as ViewService, jo as ViewSyncLogger, jp as ViewSyncOptions, jn as ViewSyncResult, gK as ViewsRepository, bO as WithCustomAttributes, dV as WorkflowAccessGrant, hN as WorkflowAccessGrantService, gL as WorkflowAccessGrantsRepository, ea as WorkflowAccessMode, ev as WorkflowAccessPayload, dG as WorkflowError, e0 as WorkflowExecutionContext, dH as WorkflowInstance, hR as WorkflowInstanceService, hQ as WorkflowInstanceServiceOptions, gM as WorkflowInstancesRepository, dQ as WorkflowInvitation, hX as WorkflowInvitationService, gN as WorkflowInvitationsRepository, ew as WorkflowJwtConfig, ex as WorkflowJwtPayload, es as WorkflowJwtService, dz as WorkflowLayout, hY as WorkflowRelationService, i0 as WorkflowService, h$ as WorkflowServiceOptions, dA as WorkflowSlot, dB as WorkflowStatus, dI as WorkflowTransition, gO as WorkflowsRepository, c3 as accessLevelToActions, c2 as actionsToAccessLevel, fa as addSchemaToContext, dq as and, hp as applyDefaultValues, i7 as buildAuditChanges, hs as buildPolicyContext, eC as cacheKeys, eD as cacheTtl, dW as canAccessNode, dJ as canResumeInstance, hq as checkPermission, ht as checkRecordAccess, hv as checkRecordDeleteOrThrow, hu as checkRecordModifyOrThrow, hw as checkSharedObjectWriteAccess, fy as complete, hx as computeLabel, iO as computeLabelWithRelations, hB as createContextForCreate, hD as createContextForDelete, hE as createContextForRestore, hC as createContextForUpdate, fK as createDefaultAIActionRegistry, fp as createDefaultExecutorRegistry, eO as createDefaultState, e1 as createEmptyContext, gu as createMockAdapter, eU as createQueryBuilder, dK as createStartTransition, gw as defaultPolicyRegistry, eE as defaultTtl, hA as enrichRecordsWithFormulas, iK as enrichValuesForDisplay, iL as enrichValuesWithSelectLabels, hz as enrichWithFormulas, dr as eq, fz as error, e_ as evaluate, eZ as evaluateCondition, fV as evaluateFormula, fW as evaluateFormulaAttribute, fX as evaluateFormulaAttributeWithRelations, fY as evaluateFormulaWithRelations, fZ as evaluateFormulaWithResult, e$ as evaluateWithTrace, iJ as extractAttributeNames, f_ as extractFormulaVariables, iM as extractRelationIds, f$ as extractRelationNames, g0 as extractRelationReferences, g1 as flattenRelationsForEval, g2 as formatFormulaResult, eP as formatRecord, eQ as formatRecords, eg as generateCssVariables, fi as getContext, e2 as getContextValue, fq as getDefaultExecutorRegistry, f2 as getFeatureFlags, f3 as getFeatureValue, g6 as getPathDepth, hr as getPolicy, g7 as getRelationPath, bg as getRollupFilterOperators, fb as getSchemaByNameFromContext, fc as getSchemaContext, fd as getSchemaFromContext, iC as getSyncPreview, g8 as getTargetAttributeName, fj as getTenantId, fk as getUserId, ju as getViewSeedPreview, jv as getViewSyncPreview, fl as hasContext, f4 as hasFeatureFlagsContext, g3 as hasRelationReferences, fe as hasSchemaContext, ez as hashOptions, ds as inValues, dh as isAINode, d0 as isActivityTab, dg as isAdvancedFormNode, di as isAssignNode, cS as isCalendarView, dt as isConditionGroup, dj as isConditionNode, du as isConditionRule, c$ as isCustomTab, cQ as isDetailView, d3 as isDocumentsTab, dk as isEndNode, f5 as isFeatureEnabled, cV as isFieldGroup, bv as isFlowDefinition, bp as isFlowFieldsRow, bw as isFlowPublished, d2 as isFlowsTab, eb as isFormFieldsRow, dl as isFormNode, cX as isFormTab, cU as isGalleryView, dX as isGrantExpired, dY as isGrantRevoked, dZ as isGrantValid, dL as isInstanceTerminal, dM as isInstanceWaiting, c_ as isInverseSourceTab, dR as isInvitationAccepted, dS as isInvitationExpired, dT as isInvitationValid, iI as isLabelExpression, bq as isLayoutRow, cR as isListView, bf as isNoValueOperator, cW as isRelationGroup, cZ as isRelationSourceTab, d1 as isRichtextTab, dm as isSimpleFormNode, dn as isStartNode, bx as isSystemFlow, dC as isSystemWorkflow, cY as isTableTab, cT as isTimelineView, d_ as isTokenRevoked, dD as isWorkflowDefinition, dE as isWorkflowPublished, eh as mergeWithDefaults, dv as neq, dw as or, gb as parsePath, gc as pathHasManyCardinality, hF as recalculateParentRollups, ei as registry, iH as renderLabelExpression, gi as resolveMultiplePaths, gj as resolveSingleValue, fm as runWithContext, f6 as runWithFeatureFlags, ff as runWithMergedSchemaContext, fg as runWithSchemaContext, jq as seedRegistryViews, e3 as setContextValue, fB as success, iF as syncAll, iA as syncNativeObjects, jr as syncNativeViews, gk as traversePath, f7 as tryGetFeatureValue, g4 as validateFormulaExpression, gd as validatePath, iB as verifyNativeObjectsSync, jt as verifyNativeViewsSync, js as verifyRegistryViewsSeeded, ej as viewRegistry, fC as wait, f8 as withFeatureFlags, fn as withTenantContext } from './runtime-D7zd4qmo.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-CJmtOk1a.mjs';
4
4
  export { z as AttributeGroup, E as BaseAttribute, a8 as CompletionStatus, J as Currency, aj 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, af as OptionPropertyAttribute, 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, ai as ValidationMessages, b3 as ValidationResult, aD as attributeConfigSchemas, ao as checkboxConfigSchema, bc as computeRecordStatus, b0 as createAttributeValidator, aK as createCheckboxValidator, aN as createCurrencyValidator, aL as createDateValidator, b7 as createDraftValidator, aS as createFileValidator, b1 as createFormAttributeValidator, aY as createFormulaValidator, aR as createLocationValidator, aV as createMultiRelationValidator, aQ as createMultiselectValidator, aJ as createNumberValidator, b2 as createObjectValidator, aM as createPhoneValidator, aX as createRatingValidator, aW as createRelationValidator, a$ as createRichtextValidator, aZ as createRollupValidator, aP as createSelectValidator, aU as createSingleRelationValidator, aO as createStatusValidator, a_ as createTextAreaValidator, aI as createTextValidator, aT as createUserValidator, ar as currencyConfigSchema, ap as dateConfigSchema, aC as documentConfigSchema, aw as fileConfigSchema, ah as formatZodErrors, aA as formulaConfigSchema, aE as getAttributeConfigSchema, ba as getMissingRequiredAttributes, ag as hasOptions, Y as inferInverseCardinality, _ as isAttributeSortable, X as isBilateralRelation, bb as isRecordComplete, W as isUniversalRelation, at as locationConfigSchema, av as multiselectConfigSchema, an as numberConfigSchema, aG as parseAttributeConfig, aq as phoneConfigSchema, az as ratingConfigSchema, ay as relationConfigSchema, am as richtextConfigSchema, aB as rollupConfigSchema, aH as safeParseAttributeConfig, au as selectConfigSchema, as as statusConfigSchema, ak as textConfigSchema, al as textareaConfigSchema, ax as userConfigSchema, b4 as validateAttribute, aF as validateAttributeConfig, b8 as validateDraft, b9 as validateDraftOrThrow, b5 as validateObject, b6 as validateObjectOrThrow } from './validators-CJmtOk1a.mjs';
5
5
  import { z } from 'zod';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { F as FormNode, W as WorkflowNode, a as WorkflowNodeType, S as SystemResource, A as Action, I as InferAttributeValue, b as Field, c as AttributeGroupField, d as FieldGroup, R as RelationGroup, D as DetailViewLayout, e as SidePanelConfig, G as Group, f as DetailViewDefinition, g as InstanceStatus, T as Tab, h as TableTab, C as CreateMode, i as FilterState, j as SortRule, L as ListViewDefinition, k as WorkflowTheme, l as WorkflowConfig, m as SlotMode, n as ConditionGroup, o as ConditionRule, p as WorkflowDefinition, q as FlowFieldsRow, r as ListViewConfig, s as ListViewTab, V as ViewType, t as ViewDefinition } from './runtime-Cg0Rwnwx.js';
2
- export { d4 as AIActionConfig, fL as AIActionHandler, fS as AIActionRegistry, fJ as AIActionRegistryDeps, fM as AIActionResult, d5 as AIActionType, a0 as AIAvailableModel, af as AIBatchQuestion, ag as AIBatchQuestionAnswer, ae as AIBatchQuestionOption, a9 as AIChatMessage, a8 as AIChatMessagePart, a3 as AIChatMessagePartType, at as AICompactionSummary, al as AIConversation, gy as AIConversationsRepository, fH as AIExecutor, as as AIMemoryEntry, ar as AIMemoryType, am as AIMessage, ak as AIMessageAttachment, _ as AIMessageRole, d6 as AINode, ap as AIProviderMetrics, ac as AIQuestion, ad as AIQuestionAnswer, ab as AIQuestionOption, aa as AIQuestionType, $ as AIThinkingLevel, ai as AITodoItem, aj as AITodoList, ah as AITodoStatus, a2 as AIToolCall, an as AIToolCallRecord, a1 as AIToolCallStatus, ao as AIUsageMetrics, gz as AIUsageMetricsRepository, c1 as ALL_ACTIONS, c0 as AccessLevel, cB as ActivityTab, bJ as AddAttribute, gU as AddAttributeInput, b9 as AdvancedFilterState, fN as AgentExecutionInput, fO as AgentExecutionOutput, fG as AssignExecutor, d9 as AssignNode, cd as AssignRoleInput, d7 as AssignmentMapping, d8 as AssignmentSource, gn as AttributeChange, bI as AttributeMap, bE as AttributeSchema, gA as AttributesRepository, av as AuditAction, aw as AuditActorType, ax as AuditChange, aA as AuditListOptions, ay as AuditLogEntry, gB as AuditRepository, au as AuditResourceType, i6 as AuditService, aB as AuditServiceOptions, gQ as BaseRepository, gP as BaseService, B as BoundingBox, eA as CacheAdapter, ey as CacheKeyType, eB as CacheOptions, cH as CalendarViewConfig, cL as CalendarViewDefinition, dx as CanvasViewport, aX as CheckboxFilterOperator, da as CodeExecutionAction, fU as CodeExecutionHandler, fP as CodeExecutionInput, fQ as CodeExecutionOutput, fD as ConditionExecutor, db as ConditionNode, dp as ConditionOperator, cO as ConfigOverrides, aq as CreateAIMessageInput, az as CreateAuditLogInput, gT as CreateCustomObjectInput, iU as CreateDBAttribute, iQ as CreateDBObject, j4 as CreateDBView, j8 as CreateDBViewOverlay, jb as CreateDBWorkflow, jk as CreateDBWorkflowAccessGrant, je as CreateDBWorkflowInstance, jh as CreateDBWorkflowInvitation, aJ as CreateDocument, aL as CreateDocumentSlot, aT as CreateFile, dU as CreateGrantInput, hM as CreateGrantResult, dN as CreateInvitationInput, dO as CreateInvitationResult, iX as CreateObjectRecord, cc as CreatePermissionInput, aN as CreateProcessingJob, ib as CreateRecordDocumentInput, ic as CreateRecordDocumentResult, ca as CreateRoleInput, cn as CreateSandboxExecution, E as CreateSignatureInput, cr as CreateUserProfile, im as CreateViewInput, hZ as CreateWorkflowInput, b2 as CurrencyFilterValue, bN as CustomAttributeValue, cA as CustomTab, iT as DBAttribute, iP as DBObject, j3 as DBView, j7 as DBViewOverlay, ja as DBWorkflow, jj as DBWorkflowAccessGrant, jd as DBWorkflowInstance, jg as DBWorkflowInvitation, iG as DEFAULT_LABEL_FALLBACK, ef as DEFAULT_THEME, er as DatabaseAdapter, aY as DateFilterOperator, cG as DetailViewConfig, aC as Document, Y as DocumentData, dc as DocumentGenerationAction, fT as DocumentGenerationHandler, gC as DocumentJobsRepository, aP as DocumentListOptions, i8 as DocumentProcessingConfig, i9 as DocumentProcessingService, ie as DocumentService, id as DocumentServiceOptions, aE as DocumentSlot, gD as DocumentSlotsRepository, aD as DocumentStatus, gE as DocumentsRepository, cE as DocumentsTab, c7 as EffectivePermissions, fE as EndExecutor, dd as EndNode, eX as EvaluationResult, eY as EvaluationTrace, fr as ExecutorCompleteResult, fs as ExecutorContext, ft as ExecutorErrorResult, fA as ExecutorRegistry, fu as ExecutorResult, fv as ExecutorSuccessResult, fw as ExecutorWaitResult, b6 as ExtendedFilterRule, bX as ExtractAttributes, bZ as ExtractObjectRecord, b_ as ExtractObjectRecordWithCustom, bR as ExtractRecord, bT as ExtractRecordInput, bU as ExtractRecordInputStrict, bS as ExtractRecordStrict, bV as ExtractRecordUpdate, bW as ExtractRecordUpdateStrict, f9 as FeatureFlagsContext, f1 as FeatureFlagsContextError, eG as FetchResult, aS as File, is as FileContent, j2 as FileListOptions, ih as FileService, ig as FileServiceOptions, aR as FileVisibility, gF as FilesRepository, b7 as FilterCombinator, b8 as FilterGroup, b0 as FilterOperator, b5 as FilterRule, b4 as FilterValue, bu as FlowDefinition, bl as FlowHeadingRow, br as FlowPage, bs as FlowRelation, bo as FlowRow, bj as FlowRowField, bk as FlowRowType, bm as FlowSeparatorRow, bh as FlowSlot, bt as FlowStatus, bn as FlowTextRow, cD as FlowsTab, e4 as FormContextResponse, cv as FormDensity, fF as FormExecutor, e5 as FormFieldContext, de as FormFieldRef, e6 as FormFieldRow, e7 as FormFieldsRow, e8 as FormNodeInfo, cw as FormTab, eH as FormattedRecord, hj as FormulaResolverService, hi as FormulaResolverServiceOptions, g5 as FormulaResult, iE as FullSyncOptions, iD as FullSyncResult, cJ as GalleryViewConfig, cN as GalleryViewDefinition, d$ as GeneratedDocument, bC as GeocodingAdapter, bz as GeocodingAutocompleteParams, bB as GeocodingParams, ii as GeocodingService, by as GeocodingSuggestion, h7 as GetRelationOptionsParams, iq as GetViewOptions, ip as GetViewsOptions, i$ as GlobalSearchGroupedOptions, j1 as GlobalSearchGroupedResult, i_ as GlobalSearchOptions, j0 as GlobalSearchResultItem, ij as GlobalSearchService, hI as GrantExpiredError, hH as GrantNotFoundError, hJ as GrantRevokedError, hL as GrantServiceConfig, eI as GroupedFetchResult, go as HookContext, gp as HookDefinition, gq as HookHandler, gt as HookRegistry, gr as HookType, he as HybridRelationValue, Q as IdentityVerificationAdapter, bK as InferRecord, bF as InferRecordFromSchema, bL as InferRecordInput, bM as InferRecordUpdate, bG as InferRecordWithRequirements, eJ as InsertOptions, g9 as InvalidPathError, cy as InverseSource, hV as InvitationAlreadyAcceptedError, hU as InvitationExpiredError, hT as InvitationNotFoundError, hW as InvitationRevokedError, hS as InvitationServiceConfig, dP as InvitationStatus, ct as InviteUserInput, et as JwtVerificationResult, hy as LabelResolver, iY as ListOptions, cF as ListViewLayout, eu as MagicLinkPayload, ga as MaxDepthExceededError, gv as MockStores, hc as MultiRelationValue, a_ as MultiselectFilterOperator, be as NO_VALUE_OPERATORS, bd as NoValueOperator, fx as NodeExecutor, dy as NodePosition, eF as NoopCacheAdapter, bD as NoopGeocodingAdapter, gs as NoopHookRegistry, aW as NumberFilterOperator, bc as OPERATORS_BY_TYPE, c8 as ObjectPermissions, gG as ObjectRecordsRepository, gX as ObjectSchemaService, gW as ObjectSchemaServiceOptions, gH as ObjectsRepository, O as OcrAdapter, u as OcrInput, v as OcrOptions, x as OcrPage, w as OcrResult, y as OcrTextBlock, jm as OperationResult, ge as PathCardinality, gf as PathSegment, gg as PathSegmentType, dF as PendingAction, c5 as Permission, b$ as PermissionScope, il as PermissionService, ik as PermissionServiceOptions, gI as PermissionsRepository, b3 as PhoneFilterValue, ce as PolicyContext, gx as PolicyRegistry, cg as PolicyViolationError, aG as ProcessingJob, aI as ProcessingJobStatus, aH as ProcessingJobType, eV as QueryBuilder, eW as QueryBuilderOptions, eK as QueryBuilderState, eR as QueryMultipleResultsError, eS as QueryNoResultError, g$ as QueryOptions, h1 as QueryResult, bb as QueryState, e9 as ReadOnlyReason, a7 as ReasoningPartData, ia as RecordDocumentsResult, bP as RecordMetadata, cf as RecordPolicy, h2 as RecordQueryService, g_ as RecordQueryServiceOptions, hg as RecordResolverService, gZ as RecordService, gY as RecordServiceOptions, eL as RegistryMap, eM as RegistryObjectNames, el as RelationAttributeInput, em as RelationAttributeRow, en as RelationAttributesRepository, bi as RelationFieldConfig, a$ as RelationFilterOperator, iN as RelationLabelResolver, h5 as RelationOption, h6 as RelationOptionsResponse, hf as RelationPropertiesService, hb as RelationService, h8 as RelationServiceOptions, cx as RelationSource, h4 as RelationValidationError, h3 as RelationValidationResult, b1 as RelativeDateValue, h9 as ResolveIdsBatchRequest, ha as ResolveIdsBatchResponse, hh as ResolvedRelations, hP as ResumeWorkflowInput, bA as ReverseGeocodingParams, cC as RichtextTab, c4 as Role, hG as RollupCascadeContext, hk as RollupResult, ho as RollupScheduler, hn as RollupSchedulerOptions, hm as RollupService, hl as RollupServiceOptions, eT as SHORTCUT_TO_FILTER_OPERATOR, ep as SORTABLE_ATTRIBUTE_TYPES, cm as SandboxExecution, ck as SandboxExecutionInput, cl as SandboxExecutionResult, ci as SandboxExecutionStatus, eo as SandboxExecutionsRepository, fR as SandboxExecutor, ch as SandboxMode, cj as SandboxTrigger, fh as SchemaContext, gR as SchemaContextAware, gS as SchemaContextAwareRepository, gh as SchemaResolver, eq as SearchAdapter, iZ as SearchOptions, h0 as SearchQueryOptions, aZ as SelectFilterOperator, eN as ShortcutOperator, z as SignatureAdapter, J as SignaturePosition, K as SignatureRequestResult, P as SignatureStatus, M as SignatureStatusResult, iv as SignedUrlOptions, H as SignerRequest, N as SignerStatus, hd as SingleRelationValue, aF as SlotStatus, ba as SortDirection, fI as StartExecutor, df as StartNode, hO as StartWorkflowInput, iw as StorageAdapter, aQ as StorageProvider, it as StorageUploadInput, iu as StorageUploadResult, iz as SyncOptions, iy as SyncResult, bQ as SystemFields, c9 as SystemPermissions, cu as TabType, cz as TableSource, fo as TenantContext, f0 as TenantContextError, aV as TextFilterOperator, a4 as TextPartData, ec as ThemeColors, ed as ThemeLogo, ee as ThemeTypography, a6 as ThinkingPartData, cI as TimelineViewConfig, cM as TimelineViewDefinition, hK as TokenRevokedError, a5 as ToolPartData, gl as TraversalOptions, gm as TraversalResult, bH as TypedAttribute, bY as TypedObjectRecord, cp as USER_STATUSES, iV as UpdateDBAttribute, iR as UpdateDBObject, j5 as UpdateDBView, j9 as UpdateDBViewOverlay, jc as UpdateDBWorkflow, jl as UpdateDBWorkflowAccessGrant, jf as UpdateDBWorkflowInstance, ji as UpdateDBWorkflowInvitation, aK as UpdateDocument, aM as UpdateDocumentSlot, aU as UpdateFile, gV as UpdateObjectInput, aO as UpdateProcessingJob, cb as UpdateRoleInput, cs as UpdateUserProfile, io as UpdateViewInput, h_ as UpdateWorkflowInput, ix as UploadFileInput, iW as UpsertDBAttribute, iS as UpsertDBObject, j6 as UpsertDBView, cq as UserProfile, i5 as UserProfileService, i4 as UserProfileServiceOptions, gJ as UserProfilesRepository, c6 as UserRoleAssignment, i3 as UserService, co as UserStatus, i2 as UserValidationError, i1 as UserValidationResult, Z as VerificationCheck, X as VerificationResult, U as VerifyInput, cK as ViewConfig, cP as ViewOverlay, ek as ViewOverlaysRepository, ir as ViewService, jo as ViewSyncLogger, jp as ViewSyncOptions, jn as ViewSyncResult, gK as ViewsRepository, bO as WithCustomAttributes, dV as WorkflowAccessGrant, hN as WorkflowAccessGrantService, gL as WorkflowAccessGrantsRepository, ea as WorkflowAccessMode, ev as WorkflowAccessPayload, dG as WorkflowError, e0 as WorkflowExecutionContext, dH as WorkflowInstance, hR as WorkflowInstanceService, hQ as WorkflowInstanceServiceOptions, gM as WorkflowInstancesRepository, dQ as WorkflowInvitation, hX as WorkflowInvitationService, gN as WorkflowInvitationsRepository, ew as WorkflowJwtConfig, ex as WorkflowJwtPayload, es as WorkflowJwtService, dz as WorkflowLayout, hY as WorkflowRelationService, i0 as WorkflowService, h$ as WorkflowServiceOptions, dA as WorkflowSlot, dB as WorkflowStatus, dI as WorkflowTransition, gO as WorkflowsRepository, c3 as accessLevelToActions, c2 as actionsToAccessLevel, fa as addSchemaToContext, dq as and, hp as applyDefaultValues, i7 as buildAuditChanges, hs as buildPolicyContext, eC as cacheKeys, eD as cacheTtl, dW as canAccessNode, dJ as canResumeInstance, hq as checkPermission, ht as checkRecordAccess, hv as checkRecordDeleteOrThrow, hu as checkRecordModifyOrThrow, hw as checkSharedObjectWriteAccess, fy as complete, hx as computeLabel, iO as computeLabelWithRelations, hB as createContextForCreate, hD as createContextForDelete, hE as createContextForRestore, hC as createContextForUpdate, fK as createDefaultAIActionRegistry, fp as createDefaultExecutorRegistry, eO as createDefaultState, e1 as createEmptyContext, gu as createMockAdapter, eU as createQueryBuilder, dK as createStartTransition, gw as defaultPolicyRegistry, eE as defaultTtl, hA as enrichRecordsWithFormulas, iK as enrichValuesForDisplay, iL as enrichValuesWithSelectLabels, hz as enrichWithFormulas, dr as eq, fz as error, e_ as evaluate, eZ as evaluateCondition, fV as evaluateFormula, fW as evaluateFormulaAttribute, fX as evaluateFormulaAttributeWithRelations, fY as evaluateFormulaWithRelations, fZ as evaluateFormulaWithResult, e$ as evaluateWithTrace, iJ as extractAttributeNames, f_ as extractFormulaVariables, iM as extractRelationIds, f$ as extractRelationNames, g0 as extractRelationReferences, g1 as flattenRelationsForEval, g2 as formatFormulaResult, eP as formatRecord, eQ as formatRecords, eg as generateCssVariables, fi as getContext, e2 as getContextValue, fq as getDefaultExecutorRegistry, f2 as getFeatureFlags, f3 as getFeatureValue, g6 as getPathDepth, hr as getPolicy, g7 as getRelationPath, bg as getRollupFilterOperators, fb as getSchemaByNameFromContext, fc as getSchemaContext, fd as getSchemaFromContext, iC as getSyncPreview, g8 as getTargetAttributeName, fj as getTenantId, fk as getUserId, ju as getViewSeedPreview, jv as getViewSyncPreview, fl as hasContext, f4 as hasFeatureFlagsContext, g3 as hasRelationReferences, fe as hasSchemaContext, ez as hashOptions, ds as inValues, dh as isAINode, d0 as isActivityTab, dg as isAdvancedFormNode, di as isAssignNode, cS as isCalendarView, dt as isConditionGroup, dj as isConditionNode, du as isConditionRule, c$ as isCustomTab, cQ as isDetailView, d3 as isDocumentsTab, dk as isEndNode, f5 as isFeatureEnabled, cV as isFieldGroup, bv as isFlowDefinition, bp as isFlowFieldsRow, bw as isFlowPublished, d2 as isFlowsTab, eb as isFormFieldsRow, dl as isFormNode, cX as isFormTab, cU as isGalleryView, dX as isGrantExpired, dY as isGrantRevoked, dZ as isGrantValid, dL as isInstanceTerminal, dM as isInstanceWaiting, c_ as isInverseSourceTab, dR as isInvitationAccepted, dS as isInvitationExpired, dT as isInvitationValid, iI as isLabelExpression, bq as isLayoutRow, cR as isListView, bf as isNoValueOperator, cW as isRelationGroup, cZ as isRelationSourceTab, d1 as isRichtextTab, dm as isSimpleFormNode, dn as isStartNode, bx as isSystemFlow, dC as isSystemWorkflow, cY as isTableTab, cT as isTimelineView, d_ as isTokenRevoked, dD as isWorkflowDefinition, dE as isWorkflowPublished, eh as mergeWithDefaults, dv as neq, dw as or, gb as parsePath, gc as pathHasManyCardinality, hF as recalculateParentRollups, ei as registry, iH as renderLabelExpression, gi as resolveMultiplePaths, gj as resolveSingleValue, fm as runWithContext, f6 as runWithFeatureFlags, ff as runWithMergedSchemaContext, fg as runWithSchemaContext, jq as seedRegistryViews, e3 as setContextValue, fB as success, iF as syncAll, iA as syncNativeObjects, jr as syncNativeViews, gk as traversePath, f7 as tryGetFeatureValue, g4 as validateFormulaExpression, gd as validatePath, iB as verifyNativeObjectsSync, jt as verifyNativeViewsSync, js as verifyRegistryViewsSeeded, ej as viewRegistry, fC as wait, f8 as withFeatureFlags, fn as withTenantContext } from './runtime-Cg0Rwnwx.js';
1
+ import { F as FormNode, W as WorkflowNode, a as WorkflowNodeType, S as SystemResource, A as Action, I as InferAttributeValue, b as Field, c as AttributeGroupField, d as FieldGroup, R as RelationGroup, D as DetailViewLayout, e as SidePanelConfig, G as Group, f as DetailViewDefinition, g as InstanceStatus, T as Tab, h as TableTab, C as CreateMode, i as FilterState, j as SortRule, L as ListViewDefinition, k as WorkflowTheme, l as WorkflowConfig, m as SlotMode, n as ConditionGroup, o as ConditionRule, p as WorkflowDefinition, q as FlowFieldsRow, r as ListViewConfig, s as ListViewTab, V as ViewType, t as ViewDefinition } from './runtime-Di0FfOKV.js';
2
+ export { d4 as AIActionConfig, fL as AIActionHandler, fS as AIActionRegistry, fJ as AIActionRegistryDeps, fM as AIActionResult, d5 as AIActionType, a0 as AIAvailableModel, af as AIBatchQuestion, ag as AIBatchQuestionAnswer, ae as AIBatchQuestionOption, a9 as AIChatMessage, a8 as AIChatMessagePart, a3 as AIChatMessagePartType, at as AICompactionSummary, al as AIConversation, gy as AIConversationsRepository, fH as AIExecutor, as as AIMemoryEntry, ar as AIMemoryType, am as AIMessage, ak as AIMessageAttachment, _ as AIMessageRole, d6 as AINode, ap as AIProviderMetrics, ac as AIQuestion, ad as AIQuestionAnswer, ab as AIQuestionOption, aa as AIQuestionType, $ as AIThinkingLevel, ai as AITodoItem, aj as AITodoList, ah as AITodoStatus, a2 as AIToolCall, an as AIToolCallRecord, a1 as AIToolCallStatus, ao as AIUsageMetrics, gz as AIUsageMetricsRepository, c1 as ALL_ACTIONS, c0 as AccessLevel, cB as ActivityTab, bJ as AddAttribute, gU as AddAttributeInput, b9 as AdvancedFilterState, fN as AgentExecutionInput, fO as AgentExecutionOutput, fG as AssignExecutor, d9 as AssignNode, cd as AssignRoleInput, d7 as AssignmentMapping, d8 as AssignmentSource, gn as AttributeChange, bI as AttributeMap, bE as AttributeSchema, gA as AttributesRepository, av as AuditAction, aw as AuditActorType, ax as AuditChange, aA as AuditListOptions, ay as AuditLogEntry, gB as AuditRepository, au as AuditResourceType, i6 as AuditService, aB as AuditServiceOptions, gQ as BaseRepository, gP as BaseService, B as BoundingBox, eA as CacheAdapter, ey as CacheKeyType, eB as CacheOptions, cH as CalendarViewConfig, cL as CalendarViewDefinition, dx as CanvasViewport, aX as CheckboxFilterOperator, da as CodeExecutionAction, fU as CodeExecutionHandler, fP as CodeExecutionInput, fQ as CodeExecutionOutput, fD as ConditionExecutor, db as ConditionNode, dp as ConditionOperator, cO as ConfigOverrides, aq as CreateAIMessageInput, az as CreateAuditLogInput, gT as CreateCustomObjectInput, iU as CreateDBAttribute, iQ as CreateDBObject, j4 as CreateDBView, j8 as CreateDBViewOverlay, jb as CreateDBWorkflow, jk as CreateDBWorkflowAccessGrant, je as CreateDBWorkflowInstance, jh as CreateDBWorkflowInvitation, aJ as CreateDocument, aL as CreateDocumentSlot, aT as CreateFile, dU as CreateGrantInput, hM as CreateGrantResult, dN as CreateInvitationInput, dO as CreateInvitationResult, iX as CreateObjectRecord, cc as CreatePermissionInput, aN as CreateProcessingJob, ib as CreateRecordDocumentInput, ic as CreateRecordDocumentResult, ca as CreateRoleInput, cn as CreateSandboxExecution, E as CreateSignatureInput, cr as CreateUserProfile, im as CreateViewInput, hZ as CreateWorkflowInput, b2 as CurrencyFilterValue, bN as CustomAttributeValue, cA as CustomTab, iT as DBAttribute, iP as DBObject, j3 as DBView, j7 as DBViewOverlay, ja as DBWorkflow, jj as DBWorkflowAccessGrant, jd as DBWorkflowInstance, jg as DBWorkflowInvitation, iG as DEFAULT_LABEL_FALLBACK, ef as DEFAULT_THEME, er as DatabaseAdapter, aY as DateFilterOperator, cG as DetailViewConfig, aC as Document, Y as DocumentData, dc as DocumentGenerationAction, fT as DocumentGenerationHandler, gC as DocumentJobsRepository, aP as DocumentListOptions, i8 as DocumentProcessingConfig, i9 as DocumentProcessingService, ie as DocumentService, id as DocumentServiceOptions, aE as DocumentSlot, gD as DocumentSlotsRepository, aD as DocumentStatus, gE as DocumentsRepository, cE as DocumentsTab, c7 as EffectivePermissions, fE as EndExecutor, dd as EndNode, eX as EvaluationResult, eY as EvaluationTrace, fr as ExecutorCompleteResult, fs as ExecutorContext, ft as ExecutorErrorResult, fA as ExecutorRegistry, fu as ExecutorResult, fv as ExecutorSuccessResult, fw as ExecutorWaitResult, b6 as ExtendedFilterRule, bX as ExtractAttributes, bZ as ExtractObjectRecord, b_ as ExtractObjectRecordWithCustom, bR as ExtractRecord, bT as ExtractRecordInput, bU as ExtractRecordInputStrict, bS as ExtractRecordStrict, bV as ExtractRecordUpdate, bW as ExtractRecordUpdateStrict, f9 as FeatureFlagsContext, f1 as FeatureFlagsContextError, eG as FetchResult, aS as File, is as FileContent, j2 as FileListOptions, ih as FileService, ig as FileServiceOptions, aR as FileVisibility, gF as FilesRepository, b7 as FilterCombinator, b8 as FilterGroup, b0 as FilterOperator, b5 as FilterRule, b4 as FilterValue, bu as FlowDefinition, bl as FlowHeadingRow, br as FlowPage, bs as FlowRelation, bo as FlowRow, bj as FlowRowField, bk as FlowRowType, bm as FlowSeparatorRow, bh as FlowSlot, bt as FlowStatus, bn as FlowTextRow, cD as FlowsTab, e4 as FormContextResponse, cv as FormDensity, fF as FormExecutor, e5 as FormFieldContext, de as FormFieldRef, e6 as FormFieldRow, e7 as FormFieldsRow, e8 as FormNodeInfo, cw as FormTab, eH as FormattedRecord, hj as FormulaResolverService, hi as FormulaResolverServiceOptions, g5 as FormulaResult, iE as FullSyncOptions, iD as FullSyncResult, cJ as GalleryViewConfig, cN as GalleryViewDefinition, d$ as GeneratedDocument, bC as GeocodingAdapter, bz as GeocodingAutocompleteParams, bB as GeocodingParams, ii as GeocodingService, by as GeocodingSuggestion, h7 as GetRelationOptionsParams, iq as GetViewOptions, ip as GetViewsOptions, i$ as GlobalSearchGroupedOptions, j1 as GlobalSearchGroupedResult, i_ as GlobalSearchOptions, j0 as GlobalSearchResultItem, ij as GlobalSearchService, hI as GrantExpiredError, hH as GrantNotFoundError, hJ as GrantRevokedError, hL as GrantServiceConfig, eI as GroupedFetchResult, go as HookContext, gp as HookDefinition, gq as HookHandler, gt as HookRegistry, gr as HookType, he as HybridRelationValue, Q as IdentityVerificationAdapter, bK as InferRecord, bF as InferRecordFromSchema, bL as InferRecordInput, bM as InferRecordUpdate, bG as InferRecordWithRequirements, eJ as InsertOptions, g9 as InvalidPathError, cy as InverseSource, hV as InvitationAlreadyAcceptedError, hU as InvitationExpiredError, hT as InvitationNotFoundError, hW as InvitationRevokedError, hS as InvitationServiceConfig, dP as InvitationStatus, ct as InviteUserInput, et as JwtVerificationResult, hy as LabelResolver, iY as ListOptions, cF as ListViewLayout, eu as MagicLinkPayload, ga as MaxDepthExceededError, gv as MockStores, hc as MultiRelationValue, a_ as MultiselectFilterOperator, be as NO_VALUE_OPERATORS, bd as NoValueOperator, fx as NodeExecutor, dy as NodePosition, eF as NoopCacheAdapter, bD as NoopGeocodingAdapter, gs as NoopHookRegistry, aW as NumberFilterOperator, bc as OPERATORS_BY_TYPE, c8 as ObjectPermissions, gG as ObjectRecordsRepository, gX as ObjectSchemaService, gW as ObjectSchemaServiceOptions, gH as ObjectsRepository, O as OcrAdapter, u as OcrInput, v as OcrOptions, x as OcrPage, w as OcrResult, y as OcrTextBlock, jm as OperationResult, ge as PathCardinality, gf as PathSegment, gg as PathSegmentType, dF as PendingAction, c5 as Permission, b$ as PermissionScope, il as PermissionService, ik as PermissionServiceOptions, gI as PermissionsRepository, b3 as PhoneFilterValue, ce as PolicyContext, gx as PolicyRegistry, cg as PolicyViolationError, aG as ProcessingJob, aI as ProcessingJobStatus, aH as ProcessingJobType, eV as QueryBuilder, eW as QueryBuilderOptions, eK as QueryBuilderState, eR as QueryMultipleResultsError, eS as QueryNoResultError, g$ as QueryOptions, h1 as QueryResult, bb as QueryState, e9 as ReadOnlyReason, a7 as ReasoningPartData, ia as RecordDocumentsResult, bP as RecordMetadata, cf as RecordPolicy, h2 as RecordQueryService, g_ as RecordQueryServiceOptions, hg as RecordResolverService, gZ as RecordService, gY as RecordServiceOptions, eL as RegistryMap, eM as RegistryObjectNames, el as RelationAttributeInput, em as RelationAttributeRow, en as RelationAttributesRepository, bi as RelationFieldConfig, a$ as RelationFilterOperator, iN as RelationLabelResolver, h5 as RelationOption, h6 as RelationOptionsResponse, hf as RelationPropertiesService, hb as RelationService, h8 as RelationServiceOptions, cx as RelationSource, h4 as RelationValidationError, h3 as RelationValidationResult, b1 as RelativeDateValue, h9 as ResolveIdsBatchRequest, ha as ResolveIdsBatchResponse, hh as ResolvedRelations, hP as ResumeWorkflowInput, bA as ReverseGeocodingParams, cC as RichtextTab, c4 as Role, hG as RollupCascadeContext, hk as RollupResult, ho as RollupScheduler, hn as RollupSchedulerOptions, hm as RollupService, hl as RollupServiceOptions, eT as SHORTCUT_TO_FILTER_OPERATOR, ep as SORTABLE_ATTRIBUTE_TYPES, cm as SandboxExecution, ck as SandboxExecutionInput, cl as SandboxExecutionResult, ci as SandboxExecutionStatus, eo as SandboxExecutionsRepository, fR as SandboxExecutor, ch as SandboxMode, cj as SandboxTrigger, fh as SchemaContext, gR as SchemaContextAware, gS as SchemaContextAwareRepository, gh as SchemaResolver, eq as SearchAdapter, iZ as SearchOptions, h0 as SearchQueryOptions, aZ as SelectFilterOperator, eN as ShortcutOperator, z as SignatureAdapter, J as SignaturePosition, K as SignatureRequestResult, P as SignatureStatus, M as SignatureStatusResult, iv as SignedUrlOptions, H as SignerRequest, N as SignerStatus, hd as SingleRelationValue, aF as SlotStatus, ba as SortDirection, fI as StartExecutor, df as StartNode, hO as StartWorkflowInput, iw as StorageAdapter, aQ as StorageProvider, it as StorageUploadInput, iu as StorageUploadResult, iz as SyncOptions, iy as SyncResult, bQ as SystemFields, c9 as SystemPermissions, cu as TabType, cz as TableSource, fo as TenantContext, f0 as TenantContextError, aV as TextFilterOperator, a4 as TextPartData, ec as ThemeColors, ed as ThemeLogo, ee as ThemeTypography, a6 as ThinkingPartData, cI as TimelineViewConfig, cM as TimelineViewDefinition, hK as TokenRevokedError, a5 as ToolPartData, gl as TraversalOptions, gm as TraversalResult, bH as TypedAttribute, bY as TypedObjectRecord, cp as USER_STATUSES, iV as UpdateDBAttribute, iR as UpdateDBObject, j5 as UpdateDBView, j9 as UpdateDBViewOverlay, jc as UpdateDBWorkflow, jl as UpdateDBWorkflowAccessGrant, jf as UpdateDBWorkflowInstance, ji as UpdateDBWorkflowInvitation, aK as UpdateDocument, aM as UpdateDocumentSlot, aU as UpdateFile, gV as UpdateObjectInput, aO as UpdateProcessingJob, cb as UpdateRoleInput, cs as UpdateUserProfile, io as UpdateViewInput, h_ as UpdateWorkflowInput, ix as UploadFileInput, iW as UpsertDBAttribute, iS as UpsertDBObject, j6 as UpsertDBView, cq as UserProfile, i5 as UserProfileService, i4 as UserProfileServiceOptions, gJ as UserProfilesRepository, c6 as UserRoleAssignment, i3 as UserService, co as UserStatus, i2 as UserValidationError, i1 as UserValidationResult, Z as VerificationCheck, X as VerificationResult, U as VerifyInput, cK as ViewConfig, cP as ViewOverlay, ek as ViewOverlaysRepository, ir as ViewService, jo as ViewSyncLogger, jp as ViewSyncOptions, jn as ViewSyncResult, gK as ViewsRepository, bO as WithCustomAttributes, dV as WorkflowAccessGrant, hN as WorkflowAccessGrantService, gL as WorkflowAccessGrantsRepository, ea as WorkflowAccessMode, ev as WorkflowAccessPayload, dG as WorkflowError, e0 as WorkflowExecutionContext, dH as WorkflowInstance, hR as WorkflowInstanceService, hQ as WorkflowInstanceServiceOptions, gM as WorkflowInstancesRepository, dQ as WorkflowInvitation, hX as WorkflowInvitationService, gN as WorkflowInvitationsRepository, ew as WorkflowJwtConfig, ex as WorkflowJwtPayload, es as WorkflowJwtService, dz as WorkflowLayout, hY as WorkflowRelationService, i0 as WorkflowService, h$ as WorkflowServiceOptions, dA as WorkflowSlot, dB as WorkflowStatus, dI as WorkflowTransition, gO as WorkflowsRepository, c3 as accessLevelToActions, c2 as actionsToAccessLevel, fa as addSchemaToContext, dq as and, hp as applyDefaultValues, i7 as buildAuditChanges, hs as buildPolicyContext, eC as cacheKeys, eD as cacheTtl, dW as canAccessNode, dJ as canResumeInstance, hq as checkPermission, ht as checkRecordAccess, hv as checkRecordDeleteOrThrow, hu as checkRecordModifyOrThrow, hw as checkSharedObjectWriteAccess, fy as complete, hx as computeLabel, iO as computeLabelWithRelations, hB as createContextForCreate, hD as createContextForDelete, hE as createContextForRestore, hC as createContextForUpdate, fK as createDefaultAIActionRegistry, fp as createDefaultExecutorRegistry, eO as createDefaultState, e1 as createEmptyContext, gu as createMockAdapter, eU as createQueryBuilder, dK as createStartTransition, gw as defaultPolicyRegistry, eE as defaultTtl, hA as enrichRecordsWithFormulas, iK as enrichValuesForDisplay, iL as enrichValuesWithSelectLabels, hz as enrichWithFormulas, dr as eq, fz as error, e_ as evaluate, eZ as evaluateCondition, fV as evaluateFormula, fW as evaluateFormulaAttribute, fX as evaluateFormulaAttributeWithRelations, fY as evaluateFormulaWithRelations, fZ as evaluateFormulaWithResult, e$ as evaluateWithTrace, iJ as extractAttributeNames, f_ as extractFormulaVariables, iM as extractRelationIds, f$ as extractRelationNames, g0 as extractRelationReferences, g1 as flattenRelationsForEval, g2 as formatFormulaResult, eP as formatRecord, eQ as formatRecords, eg as generateCssVariables, fi as getContext, e2 as getContextValue, fq as getDefaultExecutorRegistry, f2 as getFeatureFlags, f3 as getFeatureValue, g6 as getPathDepth, hr as getPolicy, g7 as getRelationPath, bg as getRollupFilterOperators, fb as getSchemaByNameFromContext, fc as getSchemaContext, fd as getSchemaFromContext, iC as getSyncPreview, g8 as getTargetAttributeName, fj as getTenantId, fk as getUserId, ju as getViewSeedPreview, jv as getViewSyncPreview, fl as hasContext, f4 as hasFeatureFlagsContext, g3 as hasRelationReferences, fe as hasSchemaContext, ez as hashOptions, ds as inValues, dh as isAINode, d0 as isActivityTab, dg as isAdvancedFormNode, di as isAssignNode, cS as isCalendarView, dt as isConditionGroup, dj as isConditionNode, du as isConditionRule, c$ as isCustomTab, cQ as isDetailView, d3 as isDocumentsTab, dk as isEndNode, f5 as isFeatureEnabled, cV as isFieldGroup, bv as isFlowDefinition, bp as isFlowFieldsRow, bw as isFlowPublished, d2 as isFlowsTab, eb as isFormFieldsRow, dl as isFormNode, cX as isFormTab, cU as isGalleryView, dX as isGrantExpired, dY as isGrantRevoked, dZ as isGrantValid, dL as isInstanceTerminal, dM as isInstanceWaiting, c_ as isInverseSourceTab, dR as isInvitationAccepted, dS as isInvitationExpired, dT as isInvitationValid, iI as isLabelExpression, bq as isLayoutRow, cR as isListView, bf as isNoValueOperator, cW as isRelationGroup, cZ as isRelationSourceTab, d1 as isRichtextTab, dm as isSimpleFormNode, dn as isStartNode, bx as isSystemFlow, dC as isSystemWorkflow, cY as isTableTab, cT as isTimelineView, d_ as isTokenRevoked, dD as isWorkflowDefinition, dE as isWorkflowPublished, eh as mergeWithDefaults, dv as neq, dw as or, gb as parsePath, gc as pathHasManyCardinality, hF as recalculateParentRollups, ei as registry, iH as renderLabelExpression, gi as resolveMultiplePaths, gj as resolveSingleValue, fm as runWithContext, f6 as runWithFeatureFlags, ff as runWithMergedSchemaContext, fg as runWithSchemaContext, jq as seedRegistryViews, e3 as setContextValue, fB as success, iF as syncAll, iA as syncNativeObjects, jr as syncNativeViews, gk as traversePath, f7 as tryGetFeatureValue, g4 as validateFormulaExpression, gd as validatePath, iB as verifyNativeObjectsSync, jt as verifyNativeViewsSync, js as verifyRegistryViewsSeeded, ej as viewRegistry, fC as wait, f8 as withFeatureFlags, fn as withTenantContext } from './runtime-Di0FfOKV.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-pv_b6bI_.js';
4
4
  export { z as AttributeGroup, E as BaseAttribute, a8 as CompletionStatus, J as Currency, aj 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, af as OptionPropertyAttribute, 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, ai as ValidationMessages, b3 as ValidationResult, aD as attributeConfigSchemas, ao as checkboxConfigSchema, bc as computeRecordStatus, b0 as createAttributeValidator, aK as createCheckboxValidator, aN as createCurrencyValidator, aL as createDateValidator, b7 as createDraftValidator, aS as createFileValidator, b1 as createFormAttributeValidator, aY as createFormulaValidator, aR as createLocationValidator, aV as createMultiRelationValidator, aQ as createMultiselectValidator, aJ as createNumberValidator, b2 as createObjectValidator, aM as createPhoneValidator, aX as createRatingValidator, aW as createRelationValidator, a$ as createRichtextValidator, aZ as createRollupValidator, aP as createSelectValidator, aU as createSingleRelationValidator, aO as createStatusValidator, a_ as createTextAreaValidator, aI as createTextValidator, aT as createUserValidator, ar as currencyConfigSchema, ap as dateConfigSchema, aC as documentConfigSchema, aw as fileConfigSchema, ah as formatZodErrors, aA as formulaConfigSchema, aE as getAttributeConfigSchema, ba as getMissingRequiredAttributes, ag as hasOptions, Y as inferInverseCardinality, _ as isAttributeSortable, X as isBilateralRelation, bb as isRecordComplete, W as isUniversalRelation, at as locationConfigSchema, av as multiselectConfigSchema, an as numberConfigSchema, aG as parseAttributeConfig, aq as phoneConfigSchema, az as ratingConfigSchema, ay as relationConfigSchema, am as richtextConfigSchema, aB as rollupConfigSchema, aH as safeParseAttributeConfig, au as selectConfigSchema, as as statusConfigSchema, ak as textConfigSchema, al as textareaConfigSchema, ax as userConfigSchema, b4 as validateAttribute, aF as validateAttributeConfig, b8 as validateDraft, b9 as validateDraftOrThrow, b5 as validateObject, b6 as validateObjectOrThrow } from './validators-pv_b6bI_.js';
5
5
  import { z } from 'zod';
package/dist/index.js CHANGED
@@ -346,7 +346,7 @@
346
346
 
347
347
 
348
348
 
349
- var _chunkB23XC4L2js = require('./chunk-B23XC4L2.js');
349
+ var _chunkUVAA77R4js = require('./chunk-UVAA77R4.js');
350
350
 
351
351
 
352
352
 
@@ -608,14 +608,14 @@ function applyRelationProps(label, props, propertyDefs) {
608
608
  if (value == null) continue;
609
609
  const def = defMap.get(key);
610
610
  if (def) {
611
- const formatted = _chunkB23XC4L2js.formatAttributeValue.call(void 0, value, def);
612
- formattedProps[key] = formatted === _chunkB23XC4L2js.EMPTY_VALUE_PLACEHOLDER ? "" : formatted;
611
+ const formatted = _chunkUVAA77R4js.formatAttributeValue.call(void 0, value, def);
612
+ formattedProps[key] = formatted === _chunkUVAA77R4js.EMPTY_VALUE_PLACEHOLDER ? "" : formatted;
613
613
  } else {
614
614
  formattedProps[key] = value;
615
615
  }
616
616
  }
617
617
  }
618
- const result = _chunkB23XC4L2js.renderLabelExpression.call(void 0, label, { props: formattedProps }, "");
618
+ const result = _chunkUVAA77R4js.renderLabelExpression.call(void 0, label, { props: formattedProps }, "");
619
619
  return result.replace(/\(\s*\)/g, "").replace(/\[\s*\]/g, "").replace(/\s*[-\u2014|:]\s*$/g, "").replace(/\s{2,}/g, " ").trim();
620
620
  }
621
621
 
@@ -2076,4 +2076,4 @@ function isViewCustomized(view2, object2) {
2076
2076
 
2077
2077
 
2078
2078
 
2079
- exports.AIActionConfigSchema = _chunkB23XC4L2js.AIActionConfigSchema; exports.AIActionRegistry = _chunkB23XC4L2js.AIActionRegistry; exports.AIExecutor = _chunkB23XC4L2js.AIExecutor; exports.AINodeSchema = _chunkB23XC4L2js.AINodeSchema; exports.ALL_ACTIONS = ALL_ACTIONS; exports.ALL_SYSTEM_RESOURCES = _chunk7WT53FJ4js.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkB23XC4L2js.ActivityTabConfig; exports.AssignExecutor = _chunkB23XC4L2js.AssignExecutor; exports.AssignNodeSchema = _chunkB23XC4L2js.AssignNodeSchema; exports.AssignmentMappingSchema = _chunkB23XC4L2js.AssignmentMappingSchema; exports.AssignmentSourceSchema = _chunkB23XC4L2js.AssignmentSourceSchema; exports.AttributeInUseError = _chunkB23XC4L2js.AttributeInUseError; exports.AttributeNotFoundError = _chunkB23XC4L2js.AttributeNotFoundError; exports.AuditService = _chunkB23XC4L2js.AuditService; exports.AuthMethodSchema = _chunkB23XC4L2js.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkB23XC4L2js.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunkB23XC4L2js.BaseRepository; exports.BaseService = _chunkB23XC4L2js.BaseService; exports.CodeExecutionActionSchema = _chunkB23XC4L2js.CodeExecutionActionSchema; exports.CodeExecutionHandler = _chunkB23XC4L2js.CodeExecutionHandler; exports.ConcurrentModificationError = _chunkB23XC4L2js.ConcurrentModificationError; exports.ConditionExecutor = _chunkB23XC4L2js.ConditionExecutor; exports.ConditionGroupSchema = _chunkB23XC4L2js.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkB23XC4L2js.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkB23XC4L2js.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkB23XC4L2js.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkB23XC4L2js.CreateShareInputSchema; exports.CustomTabConfig = _chunkB23XC4L2js.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkB23XC4L2js.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk7WT53FJ4js.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk7WT53FJ4js.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_FOR_NEW_USERS = _chunk7WT53FJ4js.DEFAULT_ROLE_FOR_NEW_USERS; exports.DEFAULT_ROLE_LABELS = _chunk7WT53FJ4js.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk7WT53FJ4js.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkB23XC4L2js.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkZW4N6FV7js.DEFAULT_VALIDATION_MESSAGES; exports.DetailViewBuilder = _chunkB23XC4L2js.DetailViewBuilder; exports.DocumentGenerationActionSchema = _chunkB23XC4L2js.DocumentGenerationActionSchema; exports.DocumentGenerationHandler = _chunkB23XC4L2js.DocumentGenerationHandler; exports.DocumentProcessingService = _chunkB23XC4L2js.DocumentProcessingService; exports.DocumentService = _chunkB23XC4L2js.DocumentService; exports.DocumentsTabConfig = _chunkB23XC4L2js.DocumentsTabConfig; exports.DuplicateError = _chunkB23XC4L2js.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkB23XC4L2js.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkB23XC4L2js.EndExecutor; exports.EndNodeSchema = _chunkB23XC4L2js.EndNodeSchema; exports.ExecutorRegistry = _chunkB23XC4L2js.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkB23XC4L2js.FORBIDDEN_PROPERTY_TYPES; exports.FeatureFlagsContextError = _chunkB23XC4L2js.FeatureFlagsContextError; exports.FileNotFoundError = _chunkB23XC4L2js.FileNotFoundError; exports.FileService = _chunkB23XC4L2js.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkB23XC4L2js.FlowRowFieldSchema; exports.FlowRowSchema = _chunkB23XC4L2js.FlowRowSchema; exports.FlowsTabConfig = _chunkB23XC4L2js.FlowsTabConfig; exports.ForbiddenError = _chunkB23XC4L2js.ForbiddenError; exports.FormExecutor = _chunkB23XC4L2js.FormExecutor; exports.FormFieldRefSchema = _chunkB23XC4L2js.FormFieldRefSchema; exports.FormNodeSchema = _chunkB23XC4L2js.FormNodeSchema; exports.FormulaResolverService = _chunkB23XC4L2js.FormulaResolverService; exports.GeocodingService = _chunkB23XC4L2js.GeocodingService; exports.GlobalSearchService = _chunkB23XC4L2js.GlobalSearchService; exports.GrantExpiredError = _chunkB23XC4L2js.GrantExpiredError; exports.GrantNotFoundError = _chunkB23XC4L2js.GrantNotFoundError; exports.GrantRevokedError = _chunkB23XC4L2js.GrantRevokedError; exports.GroupBuilder = _chunkB23XC4L2js.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkB23XC4L2js.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkB23XC4L2js.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkB23XC4L2js.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkB23XC4L2js.InvitationExpiredError; exports.InvitationNotFoundError = _chunkB23XC4L2js.InvitationNotFoundError; exports.InvitationRevokedError = _chunkB23XC4L2js.InvitationRevokedError; exports.ListViewBuilder = _chunkB23XC4L2js.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkB23XC4L2js.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunkB23XC4L2js.MaxDepthExceededError; exports.NON_SORTABLE_TYPES = _chunkB23XC4L2js.NON_SORTABLE_TYPES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkB23XC4L2js.NodePositionSchema; exports.NoopCacheAdapter = _chunkB23XC4L2js.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkB23XC4L2js.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkB23XC4L2js.NoopHookRegistry; exports.NotFoundError = _chunkB23XC4L2js.NotFoundError; exports.NotSystemObjectError = _chunkB23XC4L2js.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkB23XC4L2js.ObjectBuilder; exports.ObjectNotFoundError = _chunkB23XC4L2js.ObjectNotFoundError; exports.ObjectReferencedError = _chunkB23XC4L2js.ObjectReferencedError; exports.ObjectSchemaService = _chunkB23XC4L2js.ObjectSchemaService; exports.PRESENTATION_PROPERTIES = _chunkB23XC4L2js.PRESENTATION_PROPERTIES; exports.PermissionService = _chunkB23XC4L2js.PermissionService; exports.PolicyRegistry = _chunkB23XC4L2js.PolicyRegistry; exports.PolicyViolationError = _chunkB23XC4L2js.PolicyViolationError; exports.ProtectedResourceError = _chunkB23XC4L2js.ProtectedResourceError; exports.ProtectedRoleError = _chunkB23XC4L2js.ProtectedRoleError; exports.QueryBuilder = _chunkB23XC4L2js.QueryBuilder; exports.QueryMultipleResultsError = _chunkB23XC4L2js.QueryMultipleResultsError; exports.QueryNoResultError = _chunkB23XC4L2js.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkB23XC4L2js.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkB23XC4L2js.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkB23XC4L2js.RecordNotFoundError; exports.RecordQueryService = _chunkB23XC4L2js.RecordQueryService; exports.RecordReferencedError = _chunkB23XC4L2js.RecordReferencedError; exports.RecordResolverService = _chunkB23XC4L2js.RecordResolverService; exports.RecordService = _chunkB23XC4L2js.RecordService; exports.RelationGroupBuilder = _chunkB23XC4L2js.RelationGroupBuilder; exports.RelationPropertiesService = _chunkB23XC4L2js.RelationPropertiesService; exports.RelationService = _chunkB23XC4L2js.RelationService; exports.RichtextTabConfig = _chunkB23XC4L2js.RichtextTabConfig; exports.RoleNotFoundError = _chunkB23XC4L2js.RoleNotFoundError; exports.RollupScheduler = _chunkB23XC4L2js.RollupScheduler; exports.RollupService = _chunkB23XC4L2js.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkB23XC4L2js.SHORTCUT_TO_FILTER_OPERATOR; exports.SORTABLE_ATTRIBUTE_TYPES = _chunkB23XC4L2js.SORTABLE_ATTRIBUTE_TYPES; exports.SYSTEM_ATTRIBUTES = _chunkB23XC4L2js.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkB23XC4L2js.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk7WT53FJ4js.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk7WT53FJ4js.SYSTEM_RESOURCE_LABELS; exports.SchemaContextAwareRepository = _chunkB23XC4L2js.SchemaContextAwareRepository; exports.SchemaError = _chunkB23XC4L2js.SchemaError; exports.SchemaErrorCode = _chunkB23XC4L2js.SchemaErrorCode; exports.ShareStatusSchema = _chunkB23XC4L2js.ShareStatusSchema; exports.SlotModeSchema = _chunkB23XC4L2js.SlotModeSchema; exports.StartExecutor = _chunkB23XC4L2js.StartExecutor; exports.StartNodeSchema = _chunkB23XC4L2js.StartNodeSchema; exports.SyncError = _chunkB23XC4L2js.SyncError; exports.TabBuilder = _chunkB23XC4L2js.TabBuilder; exports.TableTabConfig = _chunkB23XC4L2js.TableTabConfig; exports.TenantContextError = _chunkB23XC4L2js.TenantContextError; exports.ThemeColorsSchema = _chunkB23XC4L2js.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkB23XC4L2js.ThemeLogoSchema; exports.TokenRevokedError = _chunkB23XC4L2js.TokenRevokedError; exports.USER_STATUSES = USER_STATUSES; exports.UserProfileNotFoundError = _chunkB23XC4L2js.UserProfileNotFoundError; exports.UserProfileService = _chunkB23XC4L2js.UserProfileService; exports.UserService = _chunkB23XC4L2js.UserService; exports.ValidationError = _chunkB23XC4L2js.ValidationError; exports.ViewBuilder = _chunkB23XC4L2js.ViewBuilder; exports.ViewService = _chunkB23XC4L2js.ViewService; exports.ViewportSchema = _chunkB23XC4L2js.ViewportSchema; exports.WorkflowAIBuilder = _chunkB23XC4L2js.WorkflowAIBuilder; exports.WorkflowAccessGrantService = _chunkB23XC4L2js.WorkflowAccessGrantService; exports.WorkflowAssignBuilder = _chunkB23XC4L2js.WorkflowAssignBuilder; exports.WorkflowBuilder = _chunkB23XC4L2js.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkB23XC4L2js.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkB23XC4L2js.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkB23XC4L2js.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkB23XC4L2js.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkB23XC4L2js.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkB23XC4L2js.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkB23XC4L2js.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkB23XC4L2js.WorkflowInvitationService; exports.WorkflowJwtService = _chunkB23XC4L2js.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkB23XC4L2js.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkB23XC4L2js.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkB23XC4L2js.WorkflowRelationService; exports.WorkflowService = _chunkB23XC4L2js.WorkflowService; exports.WorkflowShareSchema = _chunkB23XC4L2js.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkB23XC4L2js.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkB23XC4L2js.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkB23XC4L2js.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkB23XC4L2js.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkB23XC4L2js.WorkflowThemeSchema; exports.ZONE_CONFIG = _chunkB23XC4L2js.ZONE_CONFIG; exports.ZONE_ORDER = _chunkB23XC4L2js.ZONE_ORDER; exports.accessLevelToActions = accessLevelToActions; exports.actionsToAccessLevel = actionsToAccessLevel; exports.addSchemaToContext = _chunkB23XC4L2js.addSchemaToContext; exports.and = _chunkB23XC4L2js.and; exports.applyDefaultValues = _chunkB23XC4L2js.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkE6XO2STSjs.asTenantId; exports.asUserId = _chunkE6XO2STSjs.asUserId; exports.assignNodeZones = _chunkB23XC4L2js.assignNodeZones; exports.attributeConfigSchemas = _chunkZW4N6FV7js.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkB23XC4L2js.buildAuditChanges; exports.buildPolicyContext = _chunkB23XC4L2js.buildPolicyContext; exports.cacheKeys = _chunkB23XC4L2js.cacheKeys; exports.cacheTtl = _chunkB23XC4L2js.cacheTtl; exports.canAccessNode = _chunkB23XC4L2js.canAccessNode; exports.canResumeInstance = _chunkB23XC4L2js.canResumeInstance; exports.checkPermission = _chunkB23XC4L2js.checkPermission; exports.checkRecordAccess = _chunkB23XC4L2js.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkB23XC4L2js.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkB23XC4L2js.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkB23XC4L2js.checkSharedObjectWriteAccess; exports.checkbox = _chunkB23XC4L2js.checkbox; exports.checkboxConfigSchema = _chunkZW4N6FV7js.checkboxConfigSchema; exports.complete = _chunkB23XC4L2js.complete; exports.computeLabel = _chunkB23XC4L2js.computeLabel; exports.computeLabelWithRelations = _chunkB23XC4L2js.computeLabelWithRelations; exports.computeRecordStatus = _chunkZW4N6FV7js.computeRecordStatus; exports.createAttributeValidator = _chunkZW4N6FV7js.createAttributeValidator; exports.createCheckboxValidator = _chunkZW4N6FV7js.createCheckboxValidator; exports.createContextForCreate = _chunkB23XC4L2js.createContextForCreate; exports.createContextForDelete = _chunkB23XC4L2js.createContextForDelete; exports.createContextForRestore = _chunkB23XC4L2js.createContextForRestore; exports.createContextForUpdate = _chunkB23XC4L2js.createContextForUpdate; exports.createCurrencyValidator = _chunkZW4N6FV7js.createCurrencyValidator; exports.createDateValidator = _chunkZW4N6FV7js.createDateValidator; exports.createDefaultAIActionRegistry = _chunkB23XC4L2js.createDefaultAIActionRegistry; exports.createDefaultExecutorRegistry = _chunkB23XC4L2js.createDefaultExecutorRegistry; exports.createDefaultState = _chunkB23XC4L2js.createDefaultState; exports.createDraftValidator = _chunkZW4N6FV7js.createDraftValidator; exports.createEmptyContext = _chunkB23XC4L2js.createEmptyContext; exports.createFileValidator = _chunkZW4N6FV7js.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkZW4N6FV7js.createFormAttributeValidator; exports.createFormulaValidator = _chunkZW4N6FV7js.createFormulaValidator; exports.createLocationValidator = _chunkZW4N6FV7js.createLocationValidator; exports.createMockAdapter = _chunkB23XC4L2js.createMockAdapter; exports.createMultiRelationValidator = _chunkZW4N6FV7js.createMultiRelationValidator; exports.createMultiselectValidator = _chunkZW4N6FV7js.createMultiselectValidator; exports.createNumberValidator = _chunkZW4N6FV7js.createNumberValidator; exports.createObjectValidator = _chunkZW4N6FV7js.createObjectValidator; exports.createPhoneValidator = _chunkZW4N6FV7js.createPhoneValidator; exports.createQueryBuilder = _chunkB23XC4L2js.createQueryBuilder; exports.createRatingValidator = _chunkZW4N6FV7js.createRatingValidator; exports.createRelationValidator = _chunkZW4N6FV7js.createRelationValidator; exports.createRichtextValidator = _chunkZW4N6FV7js.createRichtextValidator; exports.createRollupValidator = _chunkZW4N6FV7js.createRollupValidator; exports.createSelectValidator = _chunkZW4N6FV7js.createSelectValidator; exports.createSingleRelationValidator = _chunkZW4N6FV7js.createSingleRelationValidator; exports.createStartTransition = _chunkB23XC4L2js.createStartTransition; exports.createStatusValidator = _chunkZW4N6FV7js.createStatusValidator; exports.createTextAreaValidator = _chunkZW4N6FV7js.createTextAreaValidator; exports.createTextValidator = _chunkZW4N6FV7js.createTextValidator; exports.createUserValidator = _chunkZW4N6FV7js.createUserValidator; exports.currency = _chunkB23XC4L2js.currency; exports.currencyConfigSchema = _chunkZW4N6FV7js.currencyConfigSchema; exports.date = _chunkB23XC4L2js.date; exports.dateConfigSchema = _chunkZW4N6FV7js.dateConfigSchema; exports.defaultPolicyRegistry = _chunkB23XC4L2js.defaultPolicyRegistry; exports.defaultTtl = _chunkB23XC4L2js.defaultTtl; exports.detailView = _chunkB23XC4L2js.detailView; exports.document = _chunkB23XC4L2js.document; exports.documentConfigSchema = _chunkZW4N6FV7js.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkB23XC4L2js.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkB23XC4L2js.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkB23XC4L2js.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkB23XC4L2js.enrichWithFormulas; exports.eq = _chunkB23XC4L2js.eq; exports.error = _chunkB23XC4L2js.error; exports.evaluate = _chunkB23XC4L2js.evaluate; exports.evaluateCondition = _chunkB23XC4L2js.evaluateCondition; exports.evaluateFormula = _chunkB23XC4L2js.evaluateFormula; exports.evaluateFormulaAttribute = _chunkB23XC4L2js.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkB23XC4L2js.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkB23XC4L2js.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkB23XC4L2js.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkB23XC4L2js.evaluateWithTrace; exports.extractAttributeNames = _chunkB23XC4L2js.extractAttributeNames; exports.extractFormulaVariables = _chunkB23XC4L2js.extractFormulaVariables; exports.extractRelationIds = _chunkB23XC4L2js.extractRelationIds; exports.extractRelationNames = _chunkB23XC4L2js.extractRelationNames; exports.extractRelationReferences = _chunkB23XC4L2js.extractRelationReferences; exports.file = _chunkB23XC4L2js.file; exports.fileConfigSchema = _chunkZW4N6FV7js.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkB23XC4L2js.flattenRelationsForEval; exports.formatAttributeValue = _chunkB23XC4L2js.formatAttributeValue; exports.formatFormulaResult = _chunkB23XC4L2js.formatFormulaResult; exports.formatPhoneForDisplay = _chunkZW4N6FV7js.formatPhoneForDisplay; exports.formatRecord = _chunkB23XC4L2js.formatRecord; exports.formatRecords = _chunkB23XC4L2js.formatRecords; exports.formatZodErrors = _chunkZW4N6FV7js.formatZodErrors; exports.formula = _chunkB23XC4L2js.formula; exports.formulaConfigSchema = _chunkZW4N6FV7js.formulaConfigSchema; exports.generateCssVariables = _chunkB23XC4L2js.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkE6XO2STSjs.generateId; exports.generatePrefixedId = _chunkE6XO2STSjs.generatePrefixedId; exports.generateTemplateName = _chunkE6XO2STSjs.generateTemplateName; exports.getActiveTab = getActiveTab; exports.getAttributeConfigSchema = _chunkZW4N6FV7js.getAttributeConfigSchema; exports.getContext = _chunkB23XC4L2js.getContext; exports.getContextValue = _chunkB23XC4L2js.getContextValue; exports.getDefaultExecutorRegistry = _chunkB23XC4L2js.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkB23XC4L2js.getErrorMessage; exports.getFeatureFlags = _chunkB23XC4L2js.getFeatureFlags; exports.getFeatureValue = _chunkB23XC4L2js.getFeatureValue; exports.getFormFieldRefs = _chunkB23XC4L2js.getFormFieldRefs; exports.getMissingRequiredAttributes = _chunkZW4N6FV7js.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkB23XC4L2js.getNodeOutputs; exports.getNodeSlotIds = _chunkB23XC4L2js.getNodeSlotIds; exports.getPathDepth = _chunkB23XC4L2js.getPathDepth; exports.getPolicy = _chunkB23XC4L2js.getPolicy; exports.getRelationPath = _chunkB23XC4L2js.getRelationPath; exports.getRollupFilterOperators = getRollupFilterOperators; exports.getSchemaByNameFromContext = _chunkB23XC4L2js.getSchemaByNameFromContext; exports.getSchemaContext = _chunkB23XC4L2js.getSchemaContext; exports.getSchemaFromContext = _chunkB23XC4L2js.getSchemaFromContext; exports.getSyncPreview = _chunkB23XC4L2js.getSyncPreview; exports.getSystemAttributeList = _chunkB23XC4L2js.getSystemAttributeList; exports.getTargetAttributeName = _chunkB23XC4L2js.getTargetAttributeName; exports.getTenantId = _chunkB23XC4L2js.getTenantId; exports.getUserId = _chunkB23XC4L2js.getUserId; exports.getViewSeedPreview = _chunkB23XC4L2js.getViewSeedPreview; exports.getViewSyncPreview = _chunkB23XC4L2js.getViewSyncPreview; exports.getZoneAllowedTypes = _chunkB23XC4L2js.getZoneAllowedTypes; exports.group = _chunkB23XC4L2js.group; exports.groupNodesByZone = _chunkB23XC4L2js.groupNodesByZone; exports.hasContext = _chunkB23XC4L2js.hasContext; exports.hasFeatureFlagsContext = _chunkB23XC4L2js.hasFeatureFlagsContext; exports.hasOptions = _chunkB23XC4L2js.hasOptions; exports.hasProperties = _chunkB23XC4L2js.hasProperties; exports.hasRelationReferences = _chunkB23XC4L2js.hasRelationReferences; exports.hasSchemaContext = _chunkB23XC4L2js.hasSchemaContext; exports.hashOptions = _chunkB23XC4L2js.hashOptions; exports.inValues = _chunkB23XC4L2js.inValues; exports.indexBy = _chunkE6XO2STSjs.indexBy; exports.inferInverseCardinality = _chunkB23XC4L2js.inferInverseCardinality; exports.isAINode = _chunkB23XC4L2js.isAINode; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkB23XC4L2js.isAdvancedFormNode; exports.isAssignNode = _chunkB23XC4L2js.isAssignNode; exports.isAttributeSortable = _chunkB23XC4L2js.isAttributeSortable; exports.isBehaviorProperty = _chunkB23XC4L2js.isBehaviorProperty; exports.isBilateralRelation = _chunkB23XC4L2js.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkB23XC4L2js.isConditionGroup; exports.isConditionNode = _chunkB23XC4L2js.isConditionNode; exports.isConditionRule = _chunkB23XC4L2js.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk7WT53FJ4js.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkB23XC4L2js.isEmpty; exports.isEndNode = _chunkB23XC4L2js.isEndNode; exports.isFeatureEnabled = _chunkB23XC4L2js.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = _chunkB23XC4L2js.isFlowDefinition; exports.isFlowFieldsRow = _chunkB23XC4L2js.isFlowFieldsRow; exports.isFlowPublished = _chunkB23XC4L2js.isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkB23XC4L2js.isForbiddenError; exports.isFormFieldsRow = _chunkB23XC4L2js.isFormFieldsRow; exports.isFormNode = _chunkB23XC4L2js.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkB23XC4L2js.isGrantExpired; exports.isGrantRevoked = _chunkB23XC4L2js.isGrantRevoked; exports.isGrantValid = _chunkB23XC4L2js.isGrantValid; exports.isIdentityProperty = _chunkB23XC4L2js.isIdentityProperty; exports.isInstanceEvent = _chunkB23XC4L2js.isInstanceEvent; exports.isInstanceTerminal = _chunkB23XC4L2js.isInstanceTerminal; exports.isInstanceWaiting = _chunkB23XC4L2js.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunkB23XC4L2js.isInvitationAccepted; exports.isInvitationExpired = _chunkB23XC4L2js.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkB23XC4L2js.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkB23XC4L2js.isInvitationValid; exports.isLabelExpression = _chunkB23XC4L2js.isLabelExpression; exports.isLayoutRow = _chunkB23XC4L2js.isLayoutRow; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkB23XC4L2js.isNodeEvent; exports.isNotEmpty = _chunkB23XC4L2js.isNotEmpty; exports.isNotFoundError = _chunkB23XC4L2js.isNotFoundError; exports.isPresentationProperty = _chunkB23XC4L2js.isPresentationProperty; exports.isProtectedResourceError = _chunkB23XC4L2js.isProtectedResourceError; exports.isRecordComplete = _chunkZW4N6FV7js.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunkB23XC4L2js.isSchemaError; exports.isSimpleFormNode = _chunkB23XC4L2js.isSimpleFormNode; exports.isStartNode = _chunkB23XC4L2js.isStartNode; exports.isSystemAttribute = _chunkB23XC4L2js.isSystemAttribute; exports.isSystemAttributeObject = _chunkB23XC4L2js.isSystemAttributeObject; exports.isSystemFlow = _chunkB23XC4L2js.isSystemFlow; exports.isSystemWorkflow = _chunkB23XC4L2js.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkB23XC4L2js.isTokenRevoked; exports.isUniversalRelation = _chunkB23XC4L2js.isUniversalRelation; exports.isValidationError = _chunkB23XC4L2js.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkB23XC4L2js.isWorkflowDefinition; exports.isWorkflowPublished = _chunkB23XC4L2js.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkB23XC4L2js.listView; exports.location = _chunkB23XC4L2js.location; exports.locationConfigSchema = _chunkZW4N6FV7js.locationConfigSchema; exports.mergeWithDefaults = _chunkB23XC4L2js.mergeWithDefaults; exports.multiselect = _chunkB23XC4L2js.multiselect; exports.multiselectConfigSchema = _chunkZW4N6FV7js.multiselectConfigSchema; exports.neq = _chunkB23XC4L2js.neq; exports.nodeTypeRegistry = _chunkB23XC4L2js.nodeTypeRegistry; exports.normalizePhoneNumber = _chunkZW4N6FV7js.normalizePhoneNumber; exports.number = _chunkB23XC4L2js.number; exports.numberConfigSchema = _chunkZW4N6FV7js.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkB23XC4L2js.object; exports.or = _chunkB23XC4L2js.or; exports.parseAttributeConfig = _chunkZW4N6FV7js.parseAttributeConfig; exports.parsePath = _chunkB23XC4L2js.parsePath; exports.parseRawPhoneInput = _chunkZW4N6FV7js.parseRawPhoneInput; exports.pathHasManyCardinality = _chunkB23XC4L2js.pathHasManyCardinality; exports.phone = _chunkB23XC4L2js.phone; exports.phoneConfigSchema = _chunkZW4N6FV7js.phoneConfigSchema; exports.rating = _chunkB23XC4L2js.rating; exports.ratingConfigSchema = _chunkZW4N6FV7js.ratingConfigSchema; exports.recalculateParentRollups = _chunkB23XC4L2js.recalculateParentRollups; exports.registry = _chunkB23XC4L2js.registry; exports.relation = _chunkB23XC4L2js.relation; exports.relationConfigSchema = _chunkZW4N6FV7js.relationConfigSchema; exports.relationGroup = _chunkB23XC4L2js.relationGroup; exports.renderLabelExpression = _chunkB23XC4L2js.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkB23XC4L2js.resolveMultiplePaths; exports.resolveSingleValue = _chunkB23XC4L2js.resolveSingleValue; exports.richtext = _chunkB23XC4L2js.richtext; exports.richtextConfigSchema = _chunkZW4N6FV7js.richtextConfigSchema; exports.rollup = _chunkB23XC4L2js.rollup; exports.rollupConfigSchema = _chunkZW4N6FV7js.rollupConfigSchema; exports.runWithContext = _chunkB23XC4L2js.runWithContext; exports.runWithFeatureFlags = _chunkB23XC4L2js.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkB23XC4L2js.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkB23XC4L2js.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkZW4N6FV7js.safeParseAttributeConfig; exports.seedRegistryViews = _chunkB23XC4L2js.seedRegistryViews; exports.select = _chunkB23XC4L2js.select; exports.selectConfigSchema = _chunkZW4N6FV7js.selectConfigSchema; exports.setContextValue = _chunkB23XC4L2js.setContextValue; exports.setNodeNext = _chunkB23XC4L2js.setNodeNext; exports.slugify = _chunkE6XO2STSjs.slugify; exports.status = _chunkB23XC4L2js.status; exports.statusConfigSchema = _chunkZW4N6FV7js.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkB23XC4L2js.success; exports.syncAll = _chunkB23XC4L2js.syncAll; exports.syncNativeObjects = _chunkB23XC4L2js.syncNativeObjects; exports.syncNativeViews = _chunkB23XC4L2js.syncNativeViews; exports.text = _chunkB23XC4L2js.text; exports.textConfigSchema = _chunkZW4N6FV7js.textConfigSchema; exports.textarea = _chunkB23XC4L2js.textarea; exports.textareaConfigSchema = _chunkZW4N6FV7js.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkB23XC4L2js.toUndefinedIfEmpty; exports.traversePath = _chunkB23XC4L2js.traversePath; exports.tryGetFeatureValue = _chunkB23XC4L2js.tryGetFeatureValue; exports.user = _chunkB23XC4L2js.user; exports.userConfigSchema = _chunkZW4N6FV7js.userConfigSchema; exports.validateAttribute = _chunkZW4N6FV7js.validateAttribute; exports.validateAttributeConfig = _chunkZW4N6FV7js.validateAttributeConfig; exports.validateDraft = _chunkZW4N6FV7js.validateDraft; exports.validateDraftOrThrow = _chunkZW4N6FV7js.validateDraftOrThrow; exports.validateFormulaExpression = _chunkB23XC4L2js.validateFormulaExpression; exports.validateNode = _chunkB23XC4L2js.validateNode; exports.validateObject = _chunkZW4N6FV7js.validateObject; exports.validateObjectOrThrow = _chunkZW4N6FV7js.validateObjectOrThrow; exports.validatePath = _chunkB23XC4L2js.validatePath; exports.validatePhoneNumber = _chunkZW4N6FV7js.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunkB23XC4L2js.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkB23XC4L2js.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkB23XC4L2js.verifyRegistryViewsSeeded; exports.view = _chunkB23XC4L2js.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkB23XC4L2js.wait; exports.withFeatureFlags = _chunkB23XC4L2js.withFeatureFlags; exports.withTenantContext = _chunkB23XC4L2js.withTenantContext; exports.workflow = _chunkB23XC4L2js.workflow;
2079
+ exports.AIActionConfigSchema = _chunkUVAA77R4js.AIActionConfigSchema; exports.AIActionRegistry = _chunkUVAA77R4js.AIActionRegistry; exports.AIExecutor = _chunkUVAA77R4js.AIExecutor; exports.AINodeSchema = _chunkUVAA77R4js.AINodeSchema; exports.ALL_ACTIONS = ALL_ACTIONS; exports.ALL_SYSTEM_RESOURCES = _chunk7WT53FJ4js.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkUVAA77R4js.ActivityTabConfig; exports.AssignExecutor = _chunkUVAA77R4js.AssignExecutor; exports.AssignNodeSchema = _chunkUVAA77R4js.AssignNodeSchema; exports.AssignmentMappingSchema = _chunkUVAA77R4js.AssignmentMappingSchema; exports.AssignmentSourceSchema = _chunkUVAA77R4js.AssignmentSourceSchema; exports.AttributeInUseError = _chunkUVAA77R4js.AttributeInUseError; exports.AttributeNotFoundError = _chunkUVAA77R4js.AttributeNotFoundError; exports.AuditService = _chunkUVAA77R4js.AuditService; exports.AuthMethodSchema = _chunkUVAA77R4js.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkUVAA77R4js.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunkUVAA77R4js.BaseRepository; exports.BaseService = _chunkUVAA77R4js.BaseService; exports.CodeExecutionActionSchema = _chunkUVAA77R4js.CodeExecutionActionSchema; exports.CodeExecutionHandler = _chunkUVAA77R4js.CodeExecutionHandler; exports.ConcurrentModificationError = _chunkUVAA77R4js.ConcurrentModificationError; exports.ConditionExecutor = _chunkUVAA77R4js.ConditionExecutor; exports.ConditionGroupSchema = _chunkUVAA77R4js.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkUVAA77R4js.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkUVAA77R4js.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkUVAA77R4js.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkUVAA77R4js.CreateShareInputSchema; exports.CustomTabConfig = _chunkUVAA77R4js.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkUVAA77R4js.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk7WT53FJ4js.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk7WT53FJ4js.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_FOR_NEW_USERS = _chunk7WT53FJ4js.DEFAULT_ROLE_FOR_NEW_USERS; exports.DEFAULT_ROLE_LABELS = _chunk7WT53FJ4js.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk7WT53FJ4js.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkUVAA77R4js.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkZW4N6FV7js.DEFAULT_VALIDATION_MESSAGES; exports.DetailViewBuilder = _chunkUVAA77R4js.DetailViewBuilder; exports.DocumentGenerationActionSchema = _chunkUVAA77R4js.DocumentGenerationActionSchema; exports.DocumentGenerationHandler = _chunkUVAA77R4js.DocumentGenerationHandler; exports.DocumentProcessingService = _chunkUVAA77R4js.DocumentProcessingService; exports.DocumentService = _chunkUVAA77R4js.DocumentService; exports.DocumentsTabConfig = _chunkUVAA77R4js.DocumentsTabConfig; exports.DuplicateError = _chunkUVAA77R4js.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkUVAA77R4js.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkUVAA77R4js.EndExecutor; exports.EndNodeSchema = _chunkUVAA77R4js.EndNodeSchema; exports.ExecutorRegistry = _chunkUVAA77R4js.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkUVAA77R4js.FORBIDDEN_PROPERTY_TYPES; exports.FeatureFlagsContextError = _chunkUVAA77R4js.FeatureFlagsContextError; exports.FileNotFoundError = _chunkUVAA77R4js.FileNotFoundError; exports.FileService = _chunkUVAA77R4js.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkUVAA77R4js.FlowRowFieldSchema; exports.FlowRowSchema = _chunkUVAA77R4js.FlowRowSchema; exports.FlowsTabConfig = _chunkUVAA77R4js.FlowsTabConfig; exports.ForbiddenError = _chunkUVAA77R4js.ForbiddenError; exports.FormExecutor = _chunkUVAA77R4js.FormExecutor; exports.FormFieldRefSchema = _chunkUVAA77R4js.FormFieldRefSchema; exports.FormNodeSchema = _chunkUVAA77R4js.FormNodeSchema; exports.FormulaResolverService = _chunkUVAA77R4js.FormulaResolverService; exports.GeocodingService = _chunkUVAA77R4js.GeocodingService; exports.GlobalSearchService = _chunkUVAA77R4js.GlobalSearchService; exports.GrantExpiredError = _chunkUVAA77R4js.GrantExpiredError; exports.GrantNotFoundError = _chunkUVAA77R4js.GrantNotFoundError; exports.GrantRevokedError = _chunkUVAA77R4js.GrantRevokedError; exports.GroupBuilder = _chunkUVAA77R4js.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkUVAA77R4js.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkUVAA77R4js.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkUVAA77R4js.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkUVAA77R4js.InvitationExpiredError; exports.InvitationNotFoundError = _chunkUVAA77R4js.InvitationNotFoundError; exports.InvitationRevokedError = _chunkUVAA77R4js.InvitationRevokedError; exports.ListViewBuilder = _chunkUVAA77R4js.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkUVAA77R4js.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunkUVAA77R4js.MaxDepthExceededError; exports.NON_SORTABLE_TYPES = _chunkUVAA77R4js.NON_SORTABLE_TYPES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkUVAA77R4js.NodePositionSchema; exports.NoopCacheAdapter = _chunkUVAA77R4js.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkUVAA77R4js.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkUVAA77R4js.NoopHookRegistry; exports.NotFoundError = _chunkUVAA77R4js.NotFoundError; exports.NotSystemObjectError = _chunkUVAA77R4js.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkUVAA77R4js.ObjectBuilder; exports.ObjectNotFoundError = _chunkUVAA77R4js.ObjectNotFoundError; exports.ObjectReferencedError = _chunkUVAA77R4js.ObjectReferencedError; exports.ObjectSchemaService = _chunkUVAA77R4js.ObjectSchemaService; exports.PRESENTATION_PROPERTIES = _chunkUVAA77R4js.PRESENTATION_PROPERTIES; exports.PermissionService = _chunkUVAA77R4js.PermissionService; exports.PolicyRegistry = _chunkUVAA77R4js.PolicyRegistry; exports.PolicyViolationError = _chunkUVAA77R4js.PolicyViolationError; exports.ProtectedResourceError = _chunkUVAA77R4js.ProtectedResourceError; exports.ProtectedRoleError = _chunkUVAA77R4js.ProtectedRoleError; exports.QueryBuilder = _chunkUVAA77R4js.QueryBuilder; exports.QueryMultipleResultsError = _chunkUVAA77R4js.QueryMultipleResultsError; exports.QueryNoResultError = _chunkUVAA77R4js.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkUVAA77R4js.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkUVAA77R4js.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkUVAA77R4js.RecordNotFoundError; exports.RecordQueryService = _chunkUVAA77R4js.RecordQueryService; exports.RecordReferencedError = _chunkUVAA77R4js.RecordReferencedError; exports.RecordResolverService = _chunkUVAA77R4js.RecordResolverService; exports.RecordService = _chunkUVAA77R4js.RecordService; exports.RelationGroupBuilder = _chunkUVAA77R4js.RelationGroupBuilder; exports.RelationPropertiesService = _chunkUVAA77R4js.RelationPropertiesService; exports.RelationService = _chunkUVAA77R4js.RelationService; exports.RichtextTabConfig = _chunkUVAA77R4js.RichtextTabConfig; exports.RoleNotFoundError = _chunkUVAA77R4js.RoleNotFoundError; exports.RollupScheduler = _chunkUVAA77R4js.RollupScheduler; exports.RollupService = _chunkUVAA77R4js.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkUVAA77R4js.SHORTCUT_TO_FILTER_OPERATOR; exports.SORTABLE_ATTRIBUTE_TYPES = _chunkUVAA77R4js.SORTABLE_ATTRIBUTE_TYPES; exports.SYSTEM_ATTRIBUTES = _chunkUVAA77R4js.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkUVAA77R4js.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk7WT53FJ4js.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk7WT53FJ4js.SYSTEM_RESOURCE_LABELS; exports.SchemaContextAwareRepository = _chunkUVAA77R4js.SchemaContextAwareRepository; exports.SchemaError = _chunkUVAA77R4js.SchemaError; exports.SchemaErrorCode = _chunkUVAA77R4js.SchemaErrorCode; exports.ShareStatusSchema = _chunkUVAA77R4js.ShareStatusSchema; exports.SlotModeSchema = _chunkUVAA77R4js.SlotModeSchema; exports.StartExecutor = _chunkUVAA77R4js.StartExecutor; exports.StartNodeSchema = _chunkUVAA77R4js.StartNodeSchema; exports.SyncError = _chunkUVAA77R4js.SyncError; exports.TabBuilder = _chunkUVAA77R4js.TabBuilder; exports.TableTabConfig = _chunkUVAA77R4js.TableTabConfig; exports.TenantContextError = _chunkUVAA77R4js.TenantContextError; exports.ThemeColorsSchema = _chunkUVAA77R4js.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkUVAA77R4js.ThemeLogoSchema; exports.TokenRevokedError = _chunkUVAA77R4js.TokenRevokedError; exports.USER_STATUSES = USER_STATUSES; exports.UserProfileNotFoundError = _chunkUVAA77R4js.UserProfileNotFoundError; exports.UserProfileService = _chunkUVAA77R4js.UserProfileService; exports.UserService = _chunkUVAA77R4js.UserService; exports.ValidationError = _chunkUVAA77R4js.ValidationError; exports.ViewBuilder = _chunkUVAA77R4js.ViewBuilder; exports.ViewService = _chunkUVAA77R4js.ViewService; exports.ViewportSchema = _chunkUVAA77R4js.ViewportSchema; exports.WorkflowAIBuilder = _chunkUVAA77R4js.WorkflowAIBuilder; exports.WorkflowAccessGrantService = _chunkUVAA77R4js.WorkflowAccessGrantService; exports.WorkflowAssignBuilder = _chunkUVAA77R4js.WorkflowAssignBuilder; exports.WorkflowBuilder = _chunkUVAA77R4js.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkUVAA77R4js.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkUVAA77R4js.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkUVAA77R4js.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkUVAA77R4js.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkUVAA77R4js.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkUVAA77R4js.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkUVAA77R4js.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkUVAA77R4js.WorkflowInvitationService; exports.WorkflowJwtService = _chunkUVAA77R4js.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkUVAA77R4js.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkUVAA77R4js.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkUVAA77R4js.WorkflowRelationService; exports.WorkflowService = _chunkUVAA77R4js.WorkflowService; exports.WorkflowShareSchema = _chunkUVAA77R4js.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkUVAA77R4js.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkUVAA77R4js.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkUVAA77R4js.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkUVAA77R4js.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkUVAA77R4js.WorkflowThemeSchema; exports.ZONE_CONFIG = _chunkUVAA77R4js.ZONE_CONFIG; exports.ZONE_ORDER = _chunkUVAA77R4js.ZONE_ORDER; exports.accessLevelToActions = accessLevelToActions; exports.actionsToAccessLevel = actionsToAccessLevel; exports.addSchemaToContext = _chunkUVAA77R4js.addSchemaToContext; exports.and = _chunkUVAA77R4js.and; exports.applyDefaultValues = _chunkUVAA77R4js.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkE6XO2STSjs.asTenantId; exports.asUserId = _chunkE6XO2STSjs.asUserId; exports.assignNodeZones = _chunkUVAA77R4js.assignNodeZones; exports.attributeConfigSchemas = _chunkZW4N6FV7js.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkUVAA77R4js.buildAuditChanges; exports.buildPolicyContext = _chunkUVAA77R4js.buildPolicyContext; exports.cacheKeys = _chunkUVAA77R4js.cacheKeys; exports.cacheTtl = _chunkUVAA77R4js.cacheTtl; exports.canAccessNode = _chunkUVAA77R4js.canAccessNode; exports.canResumeInstance = _chunkUVAA77R4js.canResumeInstance; exports.checkPermission = _chunkUVAA77R4js.checkPermission; exports.checkRecordAccess = _chunkUVAA77R4js.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkUVAA77R4js.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkUVAA77R4js.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkUVAA77R4js.checkSharedObjectWriteAccess; exports.checkbox = _chunkUVAA77R4js.checkbox; exports.checkboxConfigSchema = _chunkZW4N6FV7js.checkboxConfigSchema; exports.complete = _chunkUVAA77R4js.complete; exports.computeLabel = _chunkUVAA77R4js.computeLabel; exports.computeLabelWithRelations = _chunkUVAA77R4js.computeLabelWithRelations; exports.computeRecordStatus = _chunkZW4N6FV7js.computeRecordStatus; exports.createAttributeValidator = _chunkZW4N6FV7js.createAttributeValidator; exports.createCheckboxValidator = _chunkZW4N6FV7js.createCheckboxValidator; exports.createContextForCreate = _chunkUVAA77R4js.createContextForCreate; exports.createContextForDelete = _chunkUVAA77R4js.createContextForDelete; exports.createContextForRestore = _chunkUVAA77R4js.createContextForRestore; exports.createContextForUpdate = _chunkUVAA77R4js.createContextForUpdate; exports.createCurrencyValidator = _chunkZW4N6FV7js.createCurrencyValidator; exports.createDateValidator = _chunkZW4N6FV7js.createDateValidator; exports.createDefaultAIActionRegistry = _chunkUVAA77R4js.createDefaultAIActionRegistry; exports.createDefaultExecutorRegistry = _chunkUVAA77R4js.createDefaultExecutorRegistry; exports.createDefaultState = _chunkUVAA77R4js.createDefaultState; exports.createDraftValidator = _chunkZW4N6FV7js.createDraftValidator; exports.createEmptyContext = _chunkUVAA77R4js.createEmptyContext; exports.createFileValidator = _chunkZW4N6FV7js.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkZW4N6FV7js.createFormAttributeValidator; exports.createFormulaValidator = _chunkZW4N6FV7js.createFormulaValidator; exports.createLocationValidator = _chunkZW4N6FV7js.createLocationValidator; exports.createMockAdapter = _chunkUVAA77R4js.createMockAdapter; exports.createMultiRelationValidator = _chunkZW4N6FV7js.createMultiRelationValidator; exports.createMultiselectValidator = _chunkZW4N6FV7js.createMultiselectValidator; exports.createNumberValidator = _chunkZW4N6FV7js.createNumberValidator; exports.createObjectValidator = _chunkZW4N6FV7js.createObjectValidator; exports.createPhoneValidator = _chunkZW4N6FV7js.createPhoneValidator; exports.createQueryBuilder = _chunkUVAA77R4js.createQueryBuilder; exports.createRatingValidator = _chunkZW4N6FV7js.createRatingValidator; exports.createRelationValidator = _chunkZW4N6FV7js.createRelationValidator; exports.createRichtextValidator = _chunkZW4N6FV7js.createRichtextValidator; exports.createRollupValidator = _chunkZW4N6FV7js.createRollupValidator; exports.createSelectValidator = _chunkZW4N6FV7js.createSelectValidator; exports.createSingleRelationValidator = _chunkZW4N6FV7js.createSingleRelationValidator; exports.createStartTransition = _chunkUVAA77R4js.createStartTransition; exports.createStatusValidator = _chunkZW4N6FV7js.createStatusValidator; exports.createTextAreaValidator = _chunkZW4N6FV7js.createTextAreaValidator; exports.createTextValidator = _chunkZW4N6FV7js.createTextValidator; exports.createUserValidator = _chunkZW4N6FV7js.createUserValidator; exports.currency = _chunkUVAA77R4js.currency; exports.currencyConfigSchema = _chunkZW4N6FV7js.currencyConfigSchema; exports.date = _chunkUVAA77R4js.date; exports.dateConfigSchema = _chunkZW4N6FV7js.dateConfigSchema; exports.defaultPolicyRegistry = _chunkUVAA77R4js.defaultPolicyRegistry; exports.defaultTtl = _chunkUVAA77R4js.defaultTtl; exports.detailView = _chunkUVAA77R4js.detailView; exports.document = _chunkUVAA77R4js.document; exports.documentConfigSchema = _chunkZW4N6FV7js.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkUVAA77R4js.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkUVAA77R4js.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkUVAA77R4js.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkUVAA77R4js.enrichWithFormulas; exports.eq = _chunkUVAA77R4js.eq; exports.error = _chunkUVAA77R4js.error; exports.evaluate = _chunkUVAA77R4js.evaluate; exports.evaluateCondition = _chunkUVAA77R4js.evaluateCondition; exports.evaluateFormula = _chunkUVAA77R4js.evaluateFormula; exports.evaluateFormulaAttribute = _chunkUVAA77R4js.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkUVAA77R4js.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkUVAA77R4js.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkUVAA77R4js.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkUVAA77R4js.evaluateWithTrace; exports.extractAttributeNames = _chunkUVAA77R4js.extractAttributeNames; exports.extractFormulaVariables = _chunkUVAA77R4js.extractFormulaVariables; exports.extractRelationIds = _chunkUVAA77R4js.extractRelationIds; exports.extractRelationNames = _chunkUVAA77R4js.extractRelationNames; exports.extractRelationReferences = _chunkUVAA77R4js.extractRelationReferences; exports.file = _chunkUVAA77R4js.file; exports.fileConfigSchema = _chunkZW4N6FV7js.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkUVAA77R4js.flattenRelationsForEval; exports.formatAttributeValue = _chunkUVAA77R4js.formatAttributeValue; exports.formatFormulaResult = _chunkUVAA77R4js.formatFormulaResult; exports.formatPhoneForDisplay = _chunkZW4N6FV7js.formatPhoneForDisplay; exports.formatRecord = _chunkUVAA77R4js.formatRecord; exports.formatRecords = _chunkUVAA77R4js.formatRecords; exports.formatZodErrors = _chunkZW4N6FV7js.formatZodErrors; exports.formula = _chunkUVAA77R4js.formula; exports.formulaConfigSchema = _chunkZW4N6FV7js.formulaConfigSchema; exports.generateCssVariables = _chunkUVAA77R4js.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkE6XO2STSjs.generateId; exports.generatePrefixedId = _chunkE6XO2STSjs.generatePrefixedId; exports.generateTemplateName = _chunkE6XO2STSjs.generateTemplateName; exports.getActiveTab = getActiveTab; exports.getAttributeConfigSchema = _chunkZW4N6FV7js.getAttributeConfigSchema; exports.getContext = _chunkUVAA77R4js.getContext; exports.getContextValue = _chunkUVAA77R4js.getContextValue; exports.getDefaultExecutorRegistry = _chunkUVAA77R4js.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkUVAA77R4js.getErrorMessage; exports.getFeatureFlags = _chunkUVAA77R4js.getFeatureFlags; exports.getFeatureValue = _chunkUVAA77R4js.getFeatureValue; exports.getFormFieldRefs = _chunkUVAA77R4js.getFormFieldRefs; exports.getMissingRequiredAttributes = _chunkZW4N6FV7js.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkUVAA77R4js.getNodeOutputs; exports.getNodeSlotIds = _chunkUVAA77R4js.getNodeSlotIds; exports.getPathDepth = _chunkUVAA77R4js.getPathDepth; exports.getPolicy = _chunkUVAA77R4js.getPolicy; exports.getRelationPath = _chunkUVAA77R4js.getRelationPath; exports.getRollupFilterOperators = getRollupFilterOperators; exports.getSchemaByNameFromContext = _chunkUVAA77R4js.getSchemaByNameFromContext; exports.getSchemaContext = _chunkUVAA77R4js.getSchemaContext; exports.getSchemaFromContext = _chunkUVAA77R4js.getSchemaFromContext; exports.getSyncPreview = _chunkUVAA77R4js.getSyncPreview; exports.getSystemAttributeList = _chunkUVAA77R4js.getSystemAttributeList; exports.getTargetAttributeName = _chunkUVAA77R4js.getTargetAttributeName; exports.getTenantId = _chunkUVAA77R4js.getTenantId; exports.getUserId = _chunkUVAA77R4js.getUserId; exports.getViewSeedPreview = _chunkUVAA77R4js.getViewSeedPreview; exports.getViewSyncPreview = _chunkUVAA77R4js.getViewSyncPreview; exports.getZoneAllowedTypes = _chunkUVAA77R4js.getZoneAllowedTypes; exports.group = _chunkUVAA77R4js.group; exports.groupNodesByZone = _chunkUVAA77R4js.groupNodesByZone; exports.hasContext = _chunkUVAA77R4js.hasContext; exports.hasFeatureFlagsContext = _chunkUVAA77R4js.hasFeatureFlagsContext; exports.hasOptions = _chunkUVAA77R4js.hasOptions; exports.hasProperties = _chunkUVAA77R4js.hasProperties; exports.hasRelationReferences = _chunkUVAA77R4js.hasRelationReferences; exports.hasSchemaContext = _chunkUVAA77R4js.hasSchemaContext; exports.hashOptions = _chunkUVAA77R4js.hashOptions; exports.inValues = _chunkUVAA77R4js.inValues; exports.indexBy = _chunkE6XO2STSjs.indexBy; exports.inferInverseCardinality = _chunkUVAA77R4js.inferInverseCardinality; exports.isAINode = _chunkUVAA77R4js.isAINode; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkUVAA77R4js.isAdvancedFormNode; exports.isAssignNode = _chunkUVAA77R4js.isAssignNode; exports.isAttributeSortable = _chunkUVAA77R4js.isAttributeSortable; exports.isBehaviorProperty = _chunkUVAA77R4js.isBehaviorProperty; exports.isBilateralRelation = _chunkUVAA77R4js.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkUVAA77R4js.isConditionGroup; exports.isConditionNode = _chunkUVAA77R4js.isConditionNode; exports.isConditionRule = _chunkUVAA77R4js.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk7WT53FJ4js.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkUVAA77R4js.isEmpty; exports.isEndNode = _chunkUVAA77R4js.isEndNode; exports.isFeatureEnabled = _chunkUVAA77R4js.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = _chunkUVAA77R4js.isFlowDefinition; exports.isFlowFieldsRow = _chunkUVAA77R4js.isFlowFieldsRow; exports.isFlowPublished = _chunkUVAA77R4js.isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkUVAA77R4js.isForbiddenError; exports.isFormFieldsRow = _chunkUVAA77R4js.isFormFieldsRow; exports.isFormNode = _chunkUVAA77R4js.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkUVAA77R4js.isGrantExpired; exports.isGrantRevoked = _chunkUVAA77R4js.isGrantRevoked; exports.isGrantValid = _chunkUVAA77R4js.isGrantValid; exports.isIdentityProperty = _chunkUVAA77R4js.isIdentityProperty; exports.isInstanceEvent = _chunkUVAA77R4js.isInstanceEvent; exports.isInstanceTerminal = _chunkUVAA77R4js.isInstanceTerminal; exports.isInstanceWaiting = _chunkUVAA77R4js.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunkUVAA77R4js.isInvitationAccepted; exports.isInvitationExpired = _chunkUVAA77R4js.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkUVAA77R4js.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkUVAA77R4js.isInvitationValid; exports.isLabelExpression = _chunkUVAA77R4js.isLabelExpression; exports.isLayoutRow = _chunkUVAA77R4js.isLayoutRow; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkUVAA77R4js.isNodeEvent; exports.isNotEmpty = _chunkUVAA77R4js.isNotEmpty; exports.isNotFoundError = _chunkUVAA77R4js.isNotFoundError; exports.isPresentationProperty = _chunkUVAA77R4js.isPresentationProperty; exports.isProtectedResourceError = _chunkUVAA77R4js.isProtectedResourceError; exports.isRecordComplete = _chunkZW4N6FV7js.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunkUVAA77R4js.isSchemaError; exports.isSimpleFormNode = _chunkUVAA77R4js.isSimpleFormNode; exports.isStartNode = _chunkUVAA77R4js.isStartNode; exports.isSystemAttribute = _chunkUVAA77R4js.isSystemAttribute; exports.isSystemAttributeObject = _chunkUVAA77R4js.isSystemAttributeObject; exports.isSystemFlow = _chunkUVAA77R4js.isSystemFlow; exports.isSystemWorkflow = _chunkUVAA77R4js.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkUVAA77R4js.isTokenRevoked; exports.isUniversalRelation = _chunkUVAA77R4js.isUniversalRelation; exports.isValidationError = _chunkUVAA77R4js.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkUVAA77R4js.isWorkflowDefinition; exports.isWorkflowPublished = _chunkUVAA77R4js.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkUVAA77R4js.listView; exports.location = _chunkUVAA77R4js.location; exports.locationConfigSchema = _chunkZW4N6FV7js.locationConfigSchema; exports.mergeWithDefaults = _chunkUVAA77R4js.mergeWithDefaults; exports.multiselect = _chunkUVAA77R4js.multiselect; exports.multiselectConfigSchema = _chunkZW4N6FV7js.multiselectConfigSchema; exports.neq = _chunkUVAA77R4js.neq; exports.nodeTypeRegistry = _chunkUVAA77R4js.nodeTypeRegistry; exports.normalizePhoneNumber = _chunkZW4N6FV7js.normalizePhoneNumber; exports.number = _chunkUVAA77R4js.number; exports.numberConfigSchema = _chunkZW4N6FV7js.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkUVAA77R4js.object; exports.or = _chunkUVAA77R4js.or; exports.parseAttributeConfig = _chunkZW4N6FV7js.parseAttributeConfig; exports.parsePath = _chunkUVAA77R4js.parsePath; exports.parseRawPhoneInput = _chunkZW4N6FV7js.parseRawPhoneInput; exports.pathHasManyCardinality = _chunkUVAA77R4js.pathHasManyCardinality; exports.phone = _chunkUVAA77R4js.phone; exports.phoneConfigSchema = _chunkZW4N6FV7js.phoneConfigSchema; exports.rating = _chunkUVAA77R4js.rating; exports.ratingConfigSchema = _chunkZW4N6FV7js.ratingConfigSchema; exports.recalculateParentRollups = _chunkUVAA77R4js.recalculateParentRollups; exports.registry = _chunkUVAA77R4js.registry; exports.relation = _chunkUVAA77R4js.relation; exports.relationConfigSchema = _chunkZW4N6FV7js.relationConfigSchema; exports.relationGroup = _chunkUVAA77R4js.relationGroup; exports.renderLabelExpression = _chunkUVAA77R4js.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkUVAA77R4js.resolveMultiplePaths; exports.resolveSingleValue = _chunkUVAA77R4js.resolveSingleValue; exports.richtext = _chunkUVAA77R4js.richtext; exports.richtextConfigSchema = _chunkZW4N6FV7js.richtextConfigSchema; exports.rollup = _chunkUVAA77R4js.rollup; exports.rollupConfigSchema = _chunkZW4N6FV7js.rollupConfigSchema; exports.runWithContext = _chunkUVAA77R4js.runWithContext; exports.runWithFeatureFlags = _chunkUVAA77R4js.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkUVAA77R4js.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkUVAA77R4js.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkZW4N6FV7js.safeParseAttributeConfig; exports.seedRegistryViews = _chunkUVAA77R4js.seedRegistryViews; exports.select = _chunkUVAA77R4js.select; exports.selectConfigSchema = _chunkZW4N6FV7js.selectConfigSchema; exports.setContextValue = _chunkUVAA77R4js.setContextValue; exports.setNodeNext = _chunkUVAA77R4js.setNodeNext; exports.slugify = _chunkE6XO2STSjs.slugify; exports.status = _chunkUVAA77R4js.status; exports.statusConfigSchema = _chunkZW4N6FV7js.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkUVAA77R4js.success; exports.syncAll = _chunkUVAA77R4js.syncAll; exports.syncNativeObjects = _chunkUVAA77R4js.syncNativeObjects; exports.syncNativeViews = _chunkUVAA77R4js.syncNativeViews; exports.text = _chunkUVAA77R4js.text; exports.textConfigSchema = _chunkZW4N6FV7js.textConfigSchema; exports.textarea = _chunkUVAA77R4js.textarea; exports.textareaConfigSchema = _chunkZW4N6FV7js.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkUVAA77R4js.toUndefinedIfEmpty; exports.traversePath = _chunkUVAA77R4js.traversePath; exports.tryGetFeatureValue = _chunkUVAA77R4js.tryGetFeatureValue; exports.user = _chunkUVAA77R4js.user; exports.userConfigSchema = _chunkZW4N6FV7js.userConfigSchema; exports.validateAttribute = _chunkZW4N6FV7js.validateAttribute; exports.validateAttributeConfig = _chunkZW4N6FV7js.validateAttributeConfig; exports.validateDraft = _chunkZW4N6FV7js.validateDraft; exports.validateDraftOrThrow = _chunkZW4N6FV7js.validateDraftOrThrow; exports.validateFormulaExpression = _chunkUVAA77R4js.validateFormulaExpression; exports.validateNode = _chunkUVAA77R4js.validateNode; exports.validateObject = _chunkZW4N6FV7js.validateObject; exports.validateObjectOrThrow = _chunkZW4N6FV7js.validateObjectOrThrow; exports.validatePath = _chunkUVAA77R4js.validatePath; exports.validatePhoneNumber = _chunkZW4N6FV7js.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunkUVAA77R4js.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkUVAA77R4js.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkUVAA77R4js.verifyRegistryViewsSeeded; exports.view = _chunkUVAA77R4js.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkUVAA77R4js.wait; exports.withFeatureFlags = _chunkUVAA77R4js.withFeatureFlags; exports.withTenantContext = _chunkUVAA77R4js.withTenantContext; exports.workflow = _chunkUVAA77R4js.workflow;
package/dist/index.mjs CHANGED
@@ -346,7 +346,7 @@ import {
346
346
  withFeatureFlags,
347
347
  withTenantContext,
348
348
  workflow
349
- } from "./chunk-IFJJT3JZ.mjs";
349
+ } from "./chunk-JBHONBEV.mjs";
350
350
  import {
351
351
  asTenantId,
352
352
  asUserId,
@@ -2658,7 +2658,7 @@ declare function generateCssVariables(colors?: ThemeColors): Record<string, stri
2658
2658
  /**
2659
2659
  * Mode for slot initialization when starting a workflow
2660
2660
  */
2661
- type SlotMode = "create" | "select" | "optional";
2661
+ type SlotMode = "create" | "select" | "optional" | "create_if_not_empty";
2662
2662
  /**
2663
2663
  * Represents a "slot" for an object in the workflow.
2664
2664
  * Slots define which objects are manipulated during workflow execution.
@@ -2688,6 +2688,8 @@ interface WorkflowSlot {
2688
2688
  color?: ColorId;
2689
2689
  /** Optional icon */
2690
2690
  icon?: IconName;
2691
+ /** Resolved object label (set by the backend in form context responses) */
2692
+ objectLabel?: string;
2691
2693
  }
2692
2694
  /**
2693
2695
  * Position of a node in the visual builder
@@ -11149,9 +11151,10 @@ declare class WorkflowInstanceService extends BaseService {
11149
11151
  private getNodeLabel;
11150
11152
  /**
11151
11153
  * Persist all slots as records in the database using a saga pattern.
11152
- * - Slots with mode "create" create new records
11154
+ * - Slots with mode "create" always create new records
11153
11155
  * - Slots with mode "select" or "optional" with existing ID update the record
11154
11156
  * - Slots with mode "optional" without ID create new records
11157
+ * - Slots with mode "create_if_not_empty" create new records only if data is not empty after cleaning
11155
11158
  *
11156
11159
  * If any slot fails to persist, all previously persisted slots in this batch
11157
11160
  * are rolled back (best-effort): created records are deleted, updated records
@@ -2658,7 +2658,7 @@ declare function generateCssVariables(colors?: ThemeColors): Record<string, stri
2658
2658
  /**
2659
2659
  * Mode for slot initialization when starting a workflow
2660
2660
  */
2661
- type SlotMode = "create" | "select" | "optional";
2661
+ type SlotMode = "create" | "select" | "optional" | "create_if_not_empty";
2662
2662
  /**
2663
2663
  * Represents a "slot" for an object in the workflow.
2664
2664
  * Slots define which objects are manipulated during workflow execution.
@@ -2688,6 +2688,8 @@ interface WorkflowSlot {
2688
2688
  color?: ColorId;
2689
2689
  /** Optional icon */
2690
2690
  icon?: IconName;
2691
+ /** Resolved object label (set by the backend in form context responses) */
2692
+ objectLabel?: string;
2691
2693
  }
2692
2694
  /**
2693
2695
  * Position of a node in the visual builder
@@ -11149,9 +11151,10 @@ declare class WorkflowInstanceService extends BaseService {
11149
11151
  private getNodeLabel;
11150
11152
  /**
11151
11153
  * Persist all slots as records in the database using a saga pattern.
11152
- * - Slots with mode "create" create new records
11154
+ * - Slots with mode "create" always create new records
11153
11155
  * - Slots with mode "select" or "optional" with existing ID update the record
11154
11156
  * - Slots with mode "optional" without ID create new records
11157
+ * - Slots with mode "create_if_not_empty" create new records only if data is not empty after cleaning
11155
11158
  *
11156
11159
  * If any slot fails to persist, all previously persisted slots in this batch
11157
11160
  * are rolled back (best-effort): created records are deleted, updated records
@@ -1,4 +1,4 @@
1
- export { fL as AIActionHandler, fS as AIActionRegistry, fJ as AIActionRegistryDeps, fM as AIActionResult, gy as AIConversationsRepository, fH as AIExecutor, gz as AIUsageMetricsRepository, gU as AddAttributeInput, fN as AgentExecutionInput, fO as AgentExecutionOutput, fG as AssignExecutor, gn as AttributeChange, gA as AttributesRepository, gB as AuditRepository, i6 as AuditService, gQ as BaseRepository, gP as BaseService, eA as CacheAdapter, ey as CacheKeyType, eB as CacheOptions, fU as CodeExecutionHandler, fP as CodeExecutionInput, fQ as CodeExecutionOutput, fD as ConditionExecutor, gT as CreateCustomObjectInput, iU as CreateDBAttribute, iQ as CreateDBObject, j4 as CreateDBView, j8 as CreateDBViewOverlay, jb as CreateDBWorkflow, jk as CreateDBWorkflowAccessGrant, je as CreateDBWorkflowInstance, jh as CreateDBWorkflowInvitation, hM as CreateGrantResult, iX as CreateObjectRecord, ib as CreateRecordDocumentInput, ic as CreateRecordDocumentResult, im as CreateViewInput, hZ as CreateWorkflowInput, iT as DBAttribute, iP as DBObject, j3 as DBView, j7 as DBViewOverlay, ja as DBWorkflow, jj as DBWorkflowAccessGrant, jd as DBWorkflowInstance, jg as DBWorkflowInvitation, iG as DEFAULT_LABEL_FALLBACK, er as DatabaseAdapter, fT as DocumentGenerationHandler, gC as DocumentJobsRepository, i8 as DocumentProcessingConfig, i9 as DocumentProcessingService, ie as DocumentService, id as DocumentServiceOptions, gD as DocumentSlotsRepository, gE as DocumentsRepository, fE as EndExecutor, eX as EvaluationResult, eY as EvaluationTrace, fr as ExecutorCompleteResult, fs as ExecutorContext, ft as ExecutorErrorResult, fA as ExecutorRegistry, fu as ExecutorResult, fv as ExecutorSuccessResult, fw as ExecutorWaitResult, f9 as FeatureFlagsContext, f1 as FeatureFlagsContextError, eG as FetchResult, is as FileContent, j2 as FileListOptions, ih as FileService, ig as FileServiceOptions, gF as FilesRepository, fF as FormExecutor, eH as FormattedRecord, hj as FormulaResolverService, hi as FormulaResolverServiceOptions, g5 as FormulaResult, iE as FullSyncOptions, iD as FullSyncResult, bC as GeocodingAdapter, bz as GeocodingAutocompleteParams, bB as GeocodingParams, ii as GeocodingService, by as GeocodingSuggestion, h7 as GetRelationOptionsParams, iq as GetViewOptions, ip as GetViewsOptions, i$ as GlobalSearchGroupedOptions, j1 as GlobalSearchGroupedResult, i_ as GlobalSearchOptions, j0 as GlobalSearchResultItem, ij as GlobalSearchService, hI as GrantExpiredError, hH as GrantNotFoundError, hJ as GrantRevokedError, hL as GrantServiceConfig, eI as GroupedFetchResult, go as HookContext, gp as HookDefinition, gq as HookHandler, gt as HookRegistry, gr as HookType, he as HybridRelationValue, eJ as InsertOptions, g9 as InvalidPathError, hV as InvitationAlreadyAcceptedError, hU as InvitationExpiredError, hT as InvitationNotFoundError, hW as InvitationRevokedError, hS as InvitationServiceConfig, et as JwtVerificationResult, hy as LabelResolver, iY as ListOptions, eu as MagicLinkPayload, ga as MaxDepthExceededError, gv as MockStores, hc as MultiRelationValue, fx as NodeExecutor, eF as NoopCacheAdapter, bD as NoopGeocodingAdapter, gs as NoopHookRegistry, gG as ObjectRecordsRepository, gX as ObjectSchemaService, gW as ObjectSchemaServiceOptions, gH as ObjectsRepository, jm as OperationResult, ge as PathCardinality, gf as PathSegment, gg as PathSegmentType, il as PermissionService, ik as PermissionServiceOptions, gI as PermissionsRepository, ce as PolicyContext, gx as PolicyRegistry, cg as PolicyViolationError, eV as QueryBuilder, eW as QueryBuilderOptions, eK as QueryBuilderState, eR as QueryMultipleResultsError, eS as QueryNoResultError, g$ as QueryOptions, h1 as QueryResult, ia as RecordDocumentsResult, cf as RecordPolicy, h2 as RecordQueryService, g_ as RecordQueryServiceOptions, hg as RecordResolverService, gZ as RecordService, gY as RecordServiceOptions, eL as RegistryMap, eM as RegistryObjectNames, el as RelationAttributeInput, em as RelationAttributeRow, en as RelationAttributesRepository, iN as RelationLabelResolver, h5 as RelationOption, h6 as RelationOptionsResponse, hf as RelationPropertiesService, hb as RelationService, h8 as RelationServiceOptions, h4 as RelationValidationError, h3 as RelationValidationResult, h9 as ResolveIdsBatchRequest, ha as ResolveIdsBatchResponse, hh as ResolvedRelations, hP as ResumeWorkflowInput, bA as ReverseGeocodingParams, hG as RollupCascadeContext, hk as RollupResult, ho as RollupScheduler, hn as RollupSchedulerOptions, hm as RollupService, hl as RollupServiceOptions, eT as SHORTCUT_TO_FILTER_OPERATOR, ep as SORTABLE_ATTRIBUTE_TYPES, eo as SandboxExecutionsRepository, fR as SandboxExecutor, fh as SchemaContext, gR as SchemaContextAware, gS as SchemaContextAwareRepository, gh as SchemaResolver, eq as SearchAdapter, iZ as SearchOptions, h0 as SearchQueryOptions, eN as ShortcutOperator, iv as SignedUrlOptions, hd as SingleRelationValue, fI as StartExecutor, hO as StartWorkflowInput, iw as StorageAdapter, it as StorageUploadInput, iu as StorageUploadResult, iz as SyncOptions, iy as SyncResult, fo as TenantContext, f0 as TenantContextError, hK as TokenRevokedError, gl as TraversalOptions, gm as TraversalResult, iV as UpdateDBAttribute, iR as UpdateDBObject, j5 as UpdateDBView, j9 as UpdateDBViewOverlay, jc as UpdateDBWorkflow, jl as UpdateDBWorkflowAccessGrant, jf as UpdateDBWorkflowInstance, ji as UpdateDBWorkflowInvitation, gV as UpdateObjectInput, io as UpdateViewInput, h_ as UpdateWorkflowInput, ix as UploadFileInput, iW as UpsertDBAttribute, iS as UpsertDBObject, j6 as UpsertDBView, i5 as UserProfileService, i4 as UserProfileServiceOptions, gJ as UserProfilesRepository, i3 as UserService, i2 as UserValidationError, i1 as UserValidationResult, ek as ViewOverlaysRepository, ir as ViewService, jo as ViewSyncLogger, jp as ViewSyncOptions, jn as ViewSyncResult, gK as ViewsRepository, hN as WorkflowAccessGrantService, gL as WorkflowAccessGrantsRepository, ev as WorkflowAccessPayload, hR as WorkflowInstanceService, hQ as WorkflowInstanceServiceOptions, gM as WorkflowInstancesRepository, hX as WorkflowInvitationService, gN as WorkflowInvitationsRepository, ew as WorkflowJwtConfig, ex as WorkflowJwtPayload, es as WorkflowJwtService, hY as WorkflowRelationService, i0 as WorkflowService, h$ as WorkflowServiceOptions, gO as WorkflowsRepository, fa as addSchemaToContext, hp as applyDefaultValues, i7 as buildAuditChanges, hs as buildPolicyContext, eC as cacheKeys, eD as cacheTtl, hq as checkPermission, ht as checkRecordAccess, hv as checkRecordDeleteOrThrow, hu as checkRecordModifyOrThrow, hw as checkSharedObjectWriteAccess, fy as complete, hx as computeLabel, iO as computeLabelWithRelations, hB as createContextForCreate, hD as createContextForDelete, hE as createContextForRestore, hC as createContextForUpdate, fK as createDefaultAIActionRegistry, fp as createDefaultExecutorRegistry, eO as createDefaultState, gu as createMockAdapter, eU as createQueryBuilder, gw as defaultPolicyRegistry, eE as defaultTtl, hA as enrichRecordsWithFormulas, iK as enrichValuesForDisplay, iL as enrichValuesWithSelectLabels, hz as enrichWithFormulas, fz as error, e_ as evaluate, eZ as evaluateCondition, fV as evaluateFormula, fW as evaluateFormulaAttribute, fX as evaluateFormulaAttributeWithRelations, fY as evaluateFormulaWithRelations, fZ as evaluateFormulaWithResult, e$ as evaluateWithTrace, iJ as extractAttributeNames, f_ as extractFormulaVariables, iM as extractRelationIds, f$ as extractRelationNames, g0 as extractRelationReferences, g1 as flattenRelationsForEval, g2 as formatFormulaResult, eP as formatRecord, eQ as formatRecords, fi as getContext, fq as getDefaultExecutorRegistry, f2 as getFeatureFlags, f3 as getFeatureValue, g6 as getPathDepth, hr as getPolicy, g7 as getRelationPath, fb as getSchemaByNameFromContext, fc as getSchemaContext, fd as getSchemaFromContext, iC as getSyncPreview, g8 as getTargetAttributeName, fj as getTenantId, fk as getUserId, ju as getViewSeedPreview, jv as getViewSyncPreview, fl as hasContext, f4 as hasFeatureFlagsContext, g3 as hasRelationReferences, fe as hasSchemaContext, ez as hashOptions, f5 as isFeatureEnabled, iI as isLabelExpression, gb as parsePath, gc as pathHasManyCardinality, hF as recalculateParentRollups, iH as renderLabelExpression, gi as resolveMultiplePaths, gj as resolveSingleValue, fm as runWithContext, f6 as runWithFeatureFlags, ff as runWithMergedSchemaContext, fg as runWithSchemaContext, jq as seedRegistryViews, fB as success, iF as syncAll, iA as syncNativeObjects, jr as syncNativeViews, gk as traversePath, f7 as tryGetFeatureValue, g4 as validateFormulaExpression, gd as validatePath, iB as verifyNativeObjectsSync, jt as verifyNativeViewsSync, js as verifyRegistryViewsSeeded, fC as wait, f8 as withFeatureFlags, fn as withTenantContext } from './runtime-Dz1JEYu7.mjs';
1
+ export { fL as AIActionHandler, fS as AIActionRegistry, fJ as AIActionRegistryDeps, fM as AIActionResult, gy as AIConversationsRepository, fH as AIExecutor, gz as AIUsageMetricsRepository, gU as AddAttributeInput, fN as AgentExecutionInput, fO as AgentExecutionOutput, fG as AssignExecutor, gn as AttributeChange, gA as AttributesRepository, gB as AuditRepository, i6 as AuditService, gQ as BaseRepository, gP as BaseService, eA as CacheAdapter, ey as CacheKeyType, eB as CacheOptions, fU as CodeExecutionHandler, fP as CodeExecutionInput, fQ as CodeExecutionOutput, fD as ConditionExecutor, gT as CreateCustomObjectInput, iU as CreateDBAttribute, iQ as CreateDBObject, j4 as CreateDBView, j8 as CreateDBViewOverlay, jb as CreateDBWorkflow, jk as CreateDBWorkflowAccessGrant, je as CreateDBWorkflowInstance, jh as CreateDBWorkflowInvitation, hM as CreateGrantResult, iX as CreateObjectRecord, ib as CreateRecordDocumentInput, ic as CreateRecordDocumentResult, im as CreateViewInput, hZ as CreateWorkflowInput, iT as DBAttribute, iP as DBObject, j3 as DBView, j7 as DBViewOverlay, ja as DBWorkflow, jj as DBWorkflowAccessGrant, jd as DBWorkflowInstance, jg as DBWorkflowInvitation, iG as DEFAULT_LABEL_FALLBACK, er as DatabaseAdapter, fT as DocumentGenerationHandler, gC as DocumentJobsRepository, i8 as DocumentProcessingConfig, i9 as DocumentProcessingService, ie as DocumentService, id as DocumentServiceOptions, gD as DocumentSlotsRepository, gE as DocumentsRepository, fE as EndExecutor, eX as EvaluationResult, eY as EvaluationTrace, fr as ExecutorCompleteResult, fs as ExecutorContext, ft as ExecutorErrorResult, fA as ExecutorRegistry, fu as ExecutorResult, fv as ExecutorSuccessResult, fw as ExecutorWaitResult, f9 as FeatureFlagsContext, f1 as FeatureFlagsContextError, eG as FetchResult, is as FileContent, j2 as FileListOptions, ih as FileService, ig as FileServiceOptions, gF as FilesRepository, fF as FormExecutor, eH as FormattedRecord, hj as FormulaResolverService, hi as FormulaResolverServiceOptions, g5 as FormulaResult, iE as FullSyncOptions, iD as FullSyncResult, bC as GeocodingAdapter, bz as GeocodingAutocompleteParams, bB as GeocodingParams, ii as GeocodingService, by as GeocodingSuggestion, h7 as GetRelationOptionsParams, iq as GetViewOptions, ip as GetViewsOptions, i$ as GlobalSearchGroupedOptions, j1 as GlobalSearchGroupedResult, i_ as GlobalSearchOptions, j0 as GlobalSearchResultItem, ij as GlobalSearchService, hI as GrantExpiredError, hH as GrantNotFoundError, hJ as GrantRevokedError, hL as GrantServiceConfig, eI as GroupedFetchResult, go as HookContext, gp as HookDefinition, gq as HookHandler, gt as HookRegistry, gr as HookType, he as HybridRelationValue, eJ as InsertOptions, g9 as InvalidPathError, hV as InvitationAlreadyAcceptedError, hU as InvitationExpiredError, hT as InvitationNotFoundError, hW as InvitationRevokedError, hS as InvitationServiceConfig, et as JwtVerificationResult, hy as LabelResolver, iY as ListOptions, eu as MagicLinkPayload, ga as MaxDepthExceededError, gv as MockStores, hc as MultiRelationValue, fx as NodeExecutor, eF as NoopCacheAdapter, bD as NoopGeocodingAdapter, gs as NoopHookRegistry, gG as ObjectRecordsRepository, gX as ObjectSchemaService, gW as ObjectSchemaServiceOptions, gH as ObjectsRepository, jm as OperationResult, ge as PathCardinality, gf as PathSegment, gg as PathSegmentType, il as PermissionService, ik as PermissionServiceOptions, gI as PermissionsRepository, ce as PolicyContext, gx as PolicyRegistry, cg as PolicyViolationError, eV as QueryBuilder, eW as QueryBuilderOptions, eK as QueryBuilderState, eR as QueryMultipleResultsError, eS as QueryNoResultError, g$ as QueryOptions, h1 as QueryResult, ia as RecordDocumentsResult, cf as RecordPolicy, h2 as RecordQueryService, g_ as RecordQueryServiceOptions, hg as RecordResolverService, gZ as RecordService, gY as RecordServiceOptions, eL as RegistryMap, eM as RegistryObjectNames, el as RelationAttributeInput, em as RelationAttributeRow, en as RelationAttributesRepository, iN as RelationLabelResolver, h5 as RelationOption, h6 as RelationOptionsResponse, hf as RelationPropertiesService, hb as RelationService, h8 as RelationServiceOptions, h4 as RelationValidationError, h3 as RelationValidationResult, h9 as ResolveIdsBatchRequest, ha as ResolveIdsBatchResponse, hh as ResolvedRelations, hP as ResumeWorkflowInput, bA as ReverseGeocodingParams, hG as RollupCascadeContext, hk as RollupResult, ho as RollupScheduler, hn as RollupSchedulerOptions, hm as RollupService, hl as RollupServiceOptions, eT as SHORTCUT_TO_FILTER_OPERATOR, ep as SORTABLE_ATTRIBUTE_TYPES, eo as SandboxExecutionsRepository, fR as SandboxExecutor, fh as SchemaContext, gR as SchemaContextAware, gS as SchemaContextAwareRepository, gh as SchemaResolver, eq as SearchAdapter, iZ as SearchOptions, h0 as SearchQueryOptions, eN as ShortcutOperator, iv as SignedUrlOptions, hd as SingleRelationValue, fI as StartExecutor, hO as StartWorkflowInput, iw as StorageAdapter, it as StorageUploadInput, iu as StorageUploadResult, iz as SyncOptions, iy as SyncResult, fo as TenantContext, f0 as TenantContextError, hK as TokenRevokedError, gl as TraversalOptions, gm as TraversalResult, iV as UpdateDBAttribute, iR as UpdateDBObject, j5 as UpdateDBView, j9 as UpdateDBViewOverlay, jc as UpdateDBWorkflow, jl as UpdateDBWorkflowAccessGrant, jf as UpdateDBWorkflowInstance, ji as UpdateDBWorkflowInvitation, gV as UpdateObjectInput, io as UpdateViewInput, h_ as UpdateWorkflowInput, ix as UploadFileInput, iW as UpsertDBAttribute, iS as UpsertDBObject, j6 as UpsertDBView, i5 as UserProfileService, i4 as UserProfileServiceOptions, gJ as UserProfilesRepository, i3 as UserService, i2 as UserValidationError, i1 as UserValidationResult, ek as ViewOverlaysRepository, ir as ViewService, jo as ViewSyncLogger, jp as ViewSyncOptions, jn as ViewSyncResult, gK as ViewsRepository, hN as WorkflowAccessGrantService, gL as WorkflowAccessGrantsRepository, ev as WorkflowAccessPayload, hR as WorkflowInstanceService, hQ as WorkflowInstanceServiceOptions, gM as WorkflowInstancesRepository, hX as WorkflowInvitationService, gN as WorkflowInvitationsRepository, ew as WorkflowJwtConfig, ex as WorkflowJwtPayload, es as WorkflowJwtService, hY as WorkflowRelationService, i0 as WorkflowService, h$ as WorkflowServiceOptions, gO as WorkflowsRepository, fa as addSchemaToContext, hp as applyDefaultValues, i7 as buildAuditChanges, hs as buildPolicyContext, eC as cacheKeys, eD as cacheTtl, hq as checkPermission, ht as checkRecordAccess, hv as checkRecordDeleteOrThrow, hu as checkRecordModifyOrThrow, hw as checkSharedObjectWriteAccess, fy as complete, hx as computeLabel, iO as computeLabelWithRelations, hB as createContextForCreate, hD as createContextForDelete, hE as createContextForRestore, hC as createContextForUpdate, fK as createDefaultAIActionRegistry, fp as createDefaultExecutorRegistry, eO as createDefaultState, gu as createMockAdapter, eU as createQueryBuilder, gw as defaultPolicyRegistry, eE as defaultTtl, hA as enrichRecordsWithFormulas, iK as enrichValuesForDisplay, iL as enrichValuesWithSelectLabels, hz as enrichWithFormulas, fz as error, e_ as evaluate, eZ as evaluateCondition, fV as evaluateFormula, fW as evaluateFormulaAttribute, fX as evaluateFormulaAttributeWithRelations, fY as evaluateFormulaWithRelations, fZ as evaluateFormulaWithResult, e$ as evaluateWithTrace, iJ as extractAttributeNames, f_ as extractFormulaVariables, iM as extractRelationIds, f$ as extractRelationNames, g0 as extractRelationReferences, g1 as flattenRelationsForEval, g2 as formatFormulaResult, eP as formatRecord, eQ as formatRecords, fi as getContext, fq as getDefaultExecutorRegistry, f2 as getFeatureFlags, f3 as getFeatureValue, g6 as getPathDepth, hr as getPolicy, g7 as getRelationPath, fb as getSchemaByNameFromContext, fc as getSchemaContext, fd as getSchemaFromContext, iC as getSyncPreview, g8 as getTargetAttributeName, fj as getTenantId, fk as getUserId, ju as getViewSeedPreview, jv as getViewSyncPreview, fl as hasContext, f4 as hasFeatureFlagsContext, g3 as hasRelationReferences, fe as hasSchemaContext, ez as hashOptions, f5 as isFeatureEnabled, iI as isLabelExpression, gb as parsePath, gc as pathHasManyCardinality, hF as recalculateParentRollups, iH as renderLabelExpression, gi as resolveMultiplePaths, gj as resolveSingleValue, fm as runWithContext, f6 as runWithFeatureFlags, ff as runWithMergedSchemaContext, fg as runWithSchemaContext, jq as seedRegistryViews, fB as success, iF as syncAll, iA as syncNativeObjects, jr as syncNativeViews, gk as traversePath, f7 as tryGetFeatureValue, g4 as validateFormulaExpression, gd as validatePath, iB as verifyNativeObjectsSync, jt as verifyNativeViewsSync, js as verifyRegistryViewsSeeded, fC as wait, f8 as withFeatureFlags, fn as withTenantContext } from './runtime-D7zd4qmo.mjs';
2
2
  export { a8 as CompletionStatus } from './validators-CJmtOk1a.mjs';
3
3
  import '@stndrds/constants';
4
4
  import './utils.mjs';
package/dist/runtime.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { fL as AIActionHandler, fS as AIActionRegistry, fJ as AIActionRegistryDeps, fM as AIActionResult, gy as AIConversationsRepository, fH as AIExecutor, gz as AIUsageMetricsRepository, gU as AddAttributeInput, fN as AgentExecutionInput, fO as AgentExecutionOutput, fG as AssignExecutor, gn as AttributeChange, gA as AttributesRepository, gB as AuditRepository, i6 as AuditService, gQ as BaseRepository, gP as BaseService, eA as CacheAdapter, ey as CacheKeyType, eB as CacheOptions, fU as CodeExecutionHandler, fP as CodeExecutionInput, fQ as CodeExecutionOutput, fD as ConditionExecutor, gT as CreateCustomObjectInput, iU as CreateDBAttribute, iQ as CreateDBObject, j4 as CreateDBView, j8 as CreateDBViewOverlay, jb as CreateDBWorkflow, jk as CreateDBWorkflowAccessGrant, je as CreateDBWorkflowInstance, jh as CreateDBWorkflowInvitation, hM as CreateGrantResult, iX as CreateObjectRecord, ib as CreateRecordDocumentInput, ic as CreateRecordDocumentResult, im as CreateViewInput, hZ as CreateWorkflowInput, iT as DBAttribute, iP as DBObject, j3 as DBView, j7 as DBViewOverlay, ja as DBWorkflow, jj as DBWorkflowAccessGrant, jd as DBWorkflowInstance, jg as DBWorkflowInvitation, iG as DEFAULT_LABEL_FALLBACK, er as DatabaseAdapter, fT as DocumentGenerationHandler, gC as DocumentJobsRepository, i8 as DocumentProcessingConfig, i9 as DocumentProcessingService, ie as DocumentService, id as DocumentServiceOptions, gD as DocumentSlotsRepository, gE as DocumentsRepository, fE as EndExecutor, eX as EvaluationResult, eY as EvaluationTrace, fr as ExecutorCompleteResult, fs as ExecutorContext, ft as ExecutorErrorResult, fA as ExecutorRegistry, fu as ExecutorResult, fv as ExecutorSuccessResult, fw as ExecutorWaitResult, f9 as FeatureFlagsContext, f1 as FeatureFlagsContextError, eG as FetchResult, is as FileContent, j2 as FileListOptions, ih as FileService, ig as FileServiceOptions, gF as FilesRepository, fF as FormExecutor, eH as FormattedRecord, hj as FormulaResolverService, hi as FormulaResolverServiceOptions, g5 as FormulaResult, iE as FullSyncOptions, iD as FullSyncResult, bC as GeocodingAdapter, bz as GeocodingAutocompleteParams, bB as GeocodingParams, ii as GeocodingService, by as GeocodingSuggestion, h7 as GetRelationOptionsParams, iq as GetViewOptions, ip as GetViewsOptions, i$ as GlobalSearchGroupedOptions, j1 as GlobalSearchGroupedResult, i_ as GlobalSearchOptions, j0 as GlobalSearchResultItem, ij as GlobalSearchService, hI as GrantExpiredError, hH as GrantNotFoundError, hJ as GrantRevokedError, hL as GrantServiceConfig, eI as GroupedFetchResult, go as HookContext, gp as HookDefinition, gq as HookHandler, gt as HookRegistry, gr as HookType, he as HybridRelationValue, eJ as InsertOptions, g9 as InvalidPathError, hV as InvitationAlreadyAcceptedError, hU as InvitationExpiredError, hT as InvitationNotFoundError, hW as InvitationRevokedError, hS as InvitationServiceConfig, et as JwtVerificationResult, hy as LabelResolver, iY as ListOptions, eu as MagicLinkPayload, ga as MaxDepthExceededError, gv as MockStores, hc as MultiRelationValue, fx as NodeExecutor, eF as NoopCacheAdapter, bD as NoopGeocodingAdapter, gs as NoopHookRegistry, gG as ObjectRecordsRepository, gX as ObjectSchemaService, gW as ObjectSchemaServiceOptions, gH as ObjectsRepository, jm as OperationResult, ge as PathCardinality, gf as PathSegment, gg as PathSegmentType, il as PermissionService, ik as PermissionServiceOptions, gI as PermissionsRepository, ce as PolicyContext, gx as PolicyRegistry, cg as PolicyViolationError, eV as QueryBuilder, eW as QueryBuilderOptions, eK as QueryBuilderState, eR as QueryMultipleResultsError, eS as QueryNoResultError, g$ as QueryOptions, h1 as QueryResult, ia as RecordDocumentsResult, cf as RecordPolicy, h2 as RecordQueryService, g_ as RecordQueryServiceOptions, hg as RecordResolverService, gZ as RecordService, gY as RecordServiceOptions, eL as RegistryMap, eM as RegistryObjectNames, el as RelationAttributeInput, em as RelationAttributeRow, en as RelationAttributesRepository, iN as RelationLabelResolver, h5 as RelationOption, h6 as RelationOptionsResponse, hf as RelationPropertiesService, hb as RelationService, h8 as RelationServiceOptions, h4 as RelationValidationError, h3 as RelationValidationResult, h9 as ResolveIdsBatchRequest, ha as ResolveIdsBatchResponse, hh as ResolvedRelations, hP as ResumeWorkflowInput, bA as ReverseGeocodingParams, hG as RollupCascadeContext, hk as RollupResult, ho as RollupScheduler, hn as RollupSchedulerOptions, hm as RollupService, hl as RollupServiceOptions, eT as SHORTCUT_TO_FILTER_OPERATOR, ep as SORTABLE_ATTRIBUTE_TYPES, eo as SandboxExecutionsRepository, fR as SandboxExecutor, fh as SchemaContext, gR as SchemaContextAware, gS as SchemaContextAwareRepository, gh as SchemaResolver, eq as SearchAdapter, iZ as SearchOptions, h0 as SearchQueryOptions, eN as ShortcutOperator, iv as SignedUrlOptions, hd as SingleRelationValue, fI as StartExecutor, hO as StartWorkflowInput, iw as StorageAdapter, it as StorageUploadInput, iu as StorageUploadResult, iz as SyncOptions, iy as SyncResult, fo as TenantContext, f0 as TenantContextError, hK as TokenRevokedError, gl as TraversalOptions, gm as TraversalResult, iV as UpdateDBAttribute, iR as UpdateDBObject, j5 as UpdateDBView, j9 as UpdateDBViewOverlay, jc as UpdateDBWorkflow, jl as UpdateDBWorkflowAccessGrant, jf as UpdateDBWorkflowInstance, ji as UpdateDBWorkflowInvitation, gV as UpdateObjectInput, io as UpdateViewInput, h_ as UpdateWorkflowInput, ix as UploadFileInput, iW as UpsertDBAttribute, iS as UpsertDBObject, j6 as UpsertDBView, i5 as UserProfileService, i4 as UserProfileServiceOptions, gJ as UserProfilesRepository, i3 as UserService, i2 as UserValidationError, i1 as UserValidationResult, ek as ViewOverlaysRepository, ir as ViewService, jo as ViewSyncLogger, jp as ViewSyncOptions, jn as ViewSyncResult, gK as ViewsRepository, hN as WorkflowAccessGrantService, gL as WorkflowAccessGrantsRepository, ev as WorkflowAccessPayload, hR as WorkflowInstanceService, hQ as WorkflowInstanceServiceOptions, gM as WorkflowInstancesRepository, hX as WorkflowInvitationService, gN as WorkflowInvitationsRepository, ew as WorkflowJwtConfig, ex as WorkflowJwtPayload, es as WorkflowJwtService, hY as WorkflowRelationService, i0 as WorkflowService, h$ as WorkflowServiceOptions, gO as WorkflowsRepository, fa as addSchemaToContext, hp as applyDefaultValues, i7 as buildAuditChanges, hs as buildPolicyContext, eC as cacheKeys, eD as cacheTtl, hq as checkPermission, ht as checkRecordAccess, hv as checkRecordDeleteOrThrow, hu as checkRecordModifyOrThrow, hw as checkSharedObjectWriteAccess, fy as complete, hx as computeLabel, iO as computeLabelWithRelations, hB as createContextForCreate, hD as createContextForDelete, hE as createContextForRestore, hC as createContextForUpdate, fK as createDefaultAIActionRegistry, fp as createDefaultExecutorRegistry, eO as createDefaultState, gu as createMockAdapter, eU as createQueryBuilder, gw as defaultPolicyRegistry, eE as defaultTtl, hA as enrichRecordsWithFormulas, iK as enrichValuesForDisplay, iL as enrichValuesWithSelectLabels, hz as enrichWithFormulas, fz as error, e_ as evaluate, eZ as evaluateCondition, fV as evaluateFormula, fW as evaluateFormulaAttribute, fX as evaluateFormulaAttributeWithRelations, fY as evaluateFormulaWithRelations, fZ as evaluateFormulaWithResult, e$ as evaluateWithTrace, iJ as extractAttributeNames, f_ as extractFormulaVariables, iM as extractRelationIds, f$ as extractRelationNames, g0 as extractRelationReferences, g1 as flattenRelationsForEval, g2 as formatFormulaResult, eP as formatRecord, eQ as formatRecords, fi as getContext, fq as getDefaultExecutorRegistry, f2 as getFeatureFlags, f3 as getFeatureValue, g6 as getPathDepth, hr as getPolicy, g7 as getRelationPath, fb as getSchemaByNameFromContext, fc as getSchemaContext, fd as getSchemaFromContext, iC as getSyncPreview, g8 as getTargetAttributeName, fj as getTenantId, fk as getUserId, ju as getViewSeedPreview, jv as getViewSyncPreview, fl as hasContext, f4 as hasFeatureFlagsContext, g3 as hasRelationReferences, fe as hasSchemaContext, ez as hashOptions, f5 as isFeatureEnabled, iI as isLabelExpression, gb as parsePath, gc as pathHasManyCardinality, hF as recalculateParentRollups, iH as renderLabelExpression, gi as resolveMultiplePaths, gj as resolveSingleValue, fm as runWithContext, f6 as runWithFeatureFlags, ff as runWithMergedSchemaContext, fg as runWithSchemaContext, jq as seedRegistryViews, fB as success, iF as syncAll, iA as syncNativeObjects, jr as syncNativeViews, gk as traversePath, f7 as tryGetFeatureValue, g4 as validateFormulaExpression, gd as validatePath, iB as verifyNativeObjectsSync, jt as verifyNativeViewsSync, js as verifyRegistryViewsSeeded, fC as wait, f8 as withFeatureFlags, fn as withTenantContext } from './runtime-Cg0Rwnwx.js';
1
+ export { fL as AIActionHandler, fS as AIActionRegistry, fJ as AIActionRegistryDeps, fM as AIActionResult, gy as AIConversationsRepository, fH as AIExecutor, gz as AIUsageMetricsRepository, gU as AddAttributeInput, fN as AgentExecutionInput, fO as AgentExecutionOutput, fG as AssignExecutor, gn as AttributeChange, gA as AttributesRepository, gB as AuditRepository, i6 as AuditService, gQ as BaseRepository, gP as BaseService, eA as CacheAdapter, ey as CacheKeyType, eB as CacheOptions, fU as CodeExecutionHandler, fP as CodeExecutionInput, fQ as CodeExecutionOutput, fD as ConditionExecutor, gT as CreateCustomObjectInput, iU as CreateDBAttribute, iQ as CreateDBObject, j4 as CreateDBView, j8 as CreateDBViewOverlay, jb as CreateDBWorkflow, jk as CreateDBWorkflowAccessGrant, je as CreateDBWorkflowInstance, jh as CreateDBWorkflowInvitation, hM as CreateGrantResult, iX as CreateObjectRecord, ib as CreateRecordDocumentInput, ic as CreateRecordDocumentResult, im as CreateViewInput, hZ as CreateWorkflowInput, iT as DBAttribute, iP as DBObject, j3 as DBView, j7 as DBViewOverlay, ja as DBWorkflow, jj as DBWorkflowAccessGrant, jd as DBWorkflowInstance, jg as DBWorkflowInvitation, iG as DEFAULT_LABEL_FALLBACK, er as DatabaseAdapter, fT as DocumentGenerationHandler, gC as DocumentJobsRepository, i8 as DocumentProcessingConfig, i9 as DocumentProcessingService, ie as DocumentService, id as DocumentServiceOptions, gD as DocumentSlotsRepository, gE as DocumentsRepository, fE as EndExecutor, eX as EvaluationResult, eY as EvaluationTrace, fr as ExecutorCompleteResult, fs as ExecutorContext, ft as ExecutorErrorResult, fA as ExecutorRegistry, fu as ExecutorResult, fv as ExecutorSuccessResult, fw as ExecutorWaitResult, f9 as FeatureFlagsContext, f1 as FeatureFlagsContextError, eG as FetchResult, is as FileContent, j2 as FileListOptions, ih as FileService, ig as FileServiceOptions, gF as FilesRepository, fF as FormExecutor, eH as FormattedRecord, hj as FormulaResolverService, hi as FormulaResolverServiceOptions, g5 as FormulaResult, iE as FullSyncOptions, iD as FullSyncResult, bC as GeocodingAdapter, bz as GeocodingAutocompleteParams, bB as GeocodingParams, ii as GeocodingService, by as GeocodingSuggestion, h7 as GetRelationOptionsParams, iq as GetViewOptions, ip as GetViewsOptions, i$ as GlobalSearchGroupedOptions, j1 as GlobalSearchGroupedResult, i_ as GlobalSearchOptions, j0 as GlobalSearchResultItem, ij as GlobalSearchService, hI as GrantExpiredError, hH as GrantNotFoundError, hJ as GrantRevokedError, hL as GrantServiceConfig, eI as GroupedFetchResult, go as HookContext, gp as HookDefinition, gq as HookHandler, gt as HookRegistry, gr as HookType, he as HybridRelationValue, eJ as InsertOptions, g9 as InvalidPathError, hV as InvitationAlreadyAcceptedError, hU as InvitationExpiredError, hT as InvitationNotFoundError, hW as InvitationRevokedError, hS as InvitationServiceConfig, et as JwtVerificationResult, hy as LabelResolver, iY as ListOptions, eu as MagicLinkPayload, ga as MaxDepthExceededError, gv as MockStores, hc as MultiRelationValue, fx as NodeExecutor, eF as NoopCacheAdapter, bD as NoopGeocodingAdapter, gs as NoopHookRegistry, gG as ObjectRecordsRepository, gX as ObjectSchemaService, gW as ObjectSchemaServiceOptions, gH as ObjectsRepository, jm as OperationResult, ge as PathCardinality, gf as PathSegment, gg as PathSegmentType, il as PermissionService, ik as PermissionServiceOptions, gI as PermissionsRepository, ce as PolicyContext, gx as PolicyRegistry, cg as PolicyViolationError, eV as QueryBuilder, eW as QueryBuilderOptions, eK as QueryBuilderState, eR as QueryMultipleResultsError, eS as QueryNoResultError, g$ as QueryOptions, h1 as QueryResult, ia as RecordDocumentsResult, cf as RecordPolicy, h2 as RecordQueryService, g_ as RecordQueryServiceOptions, hg as RecordResolverService, gZ as RecordService, gY as RecordServiceOptions, eL as RegistryMap, eM as RegistryObjectNames, el as RelationAttributeInput, em as RelationAttributeRow, en as RelationAttributesRepository, iN as RelationLabelResolver, h5 as RelationOption, h6 as RelationOptionsResponse, hf as RelationPropertiesService, hb as RelationService, h8 as RelationServiceOptions, h4 as RelationValidationError, h3 as RelationValidationResult, h9 as ResolveIdsBatchRequest, ha as ResolveIdsBatchResponse, hh as ResolvedRelations, hP as ResumeWorkflowInput, bA as ReverseGeocodingParams, hG as RollupCascadeContext, hk as RollupResult, ho as RollupScheduler, hn as RollupSchedulerOptions, hm as RollupService, hl as RollupServiceOptions, eT as SHORTCUT_TO_FILTER_OPERATOR, ep as SORTABLE_ATTRIBUTE_TYPES, eo as SandboxExecutionsRepository, fR as SandboxExecutor, fh as SchemaContext, gR as SchemaContextAware, gS as SchemaContextAwareRepository, gh as SchemaResolver, eq as SearchAdapter, iZ as SearchOptions, h0 as SearchQueryOptions, eN as ShortcutOperator, iv as SignedUrlOptions, hd as SingleRelationValue, fI as StartExecutor, hO as StartWorkflowInput, iw as StorageAdapter, it as StorageUploadInput, iu as StorageUploadResult, iz as SyncOptions, iy as SyncResult, fo as TenantContext, f0 as TenantContextError, hK as TokenRevokedError, gl as TraversalOptions, gm as TraversalResult, iV as UpdateDBAttribute, iR as UpdateDBObject, j5 as UpdateDBView, j9 as UpdateDBViewOverlay, jc as UpdateDBWorkflow, jl as UpdateDBWorkflowAccessGrant, jf as UpdateDBWorkflowInstance, ji as UpdateDBWorkflowInvitation, gV as UpdateObjectInput, io as UpdateViewInput, h_ as UpdateWorkflowInput, ix as UploadFileInput, iW as UpsertDBAttribute, iS as UpsertDBObject, j6 as UpsertDBView, i5 as UserProfileService, i4 as UserProfileServiceOptions, gJ as UserProfilesRepository, i3 as UserService, i2 as UserValidationError, i1 as UserValidationResult, ek as ViewOverlaysRepository, ir as ViewService, jo as ViewSyncLogger, jp as ViewSyncOptions, jn as ViewSyncResult, gK as ViewsRepository, hN as WorkflowAccessGrantService, gL as WorkflowAccessGrantsRepository, ev as WorkflowAccessPayload, hR as WorkflowInstanceService, hQ as WorkflowInstanceServiceOptions, gM as WorkflowInstancesRepository, hX as WorkflowInvitationService, gN as WorkflowInvitationsRepository, ew as WorkflowJwtConfig, ex as WorkflowJwtPayload, es as WorkflowJwtService, hY as WorkflowRelationService, i0 as WorkflowService, h$ as WorkflowServiceOptions, gO as WorkflowsRepository, fa as addSchemaToContext, hp as applyDefaultValues, i7 as buildAuditChanges, hs as buildPolicyContext, eC as cacheKeys, eD as cacheTtl, hq as checkPermission, ht as checkRecordAccess, hv as checkRecordDeleteOrThrow, hu as checkRecordModifyOrThrow, hw as checkSharedObjectWriteAccess, fy as complete, hx as computeLabel, iO as computeLabelWithRelations, hB as createContextForCreate, hD as createContextForDelete, hE as createContextForRestore, hC as createContextForUpdate, fK as createDefaultAIActionRegistry, fp as createDefaultExecutorRegistry, eO as createDefaultState, gu as createMockAdapter, eU as createQueryBuilder, gw as defaultPolicyRegistry, eE as defaultTtl, hA as enrichRecordsWithFormulas, iK as enrichValuesForDisplay, iL as enrichValuesWithSelectLabels, hz as enrichWithFormulas, fz as error, e_ as evaluate, eZ as evaluateCondition, fV as evaluateFormula, fW as evaluateFormulaAttribute, fX as evaluateFormulaAttributeWithRelations, fY as evaluateFormulaWithRelations, fZ as evaluateFormulaWithResult, e$ as evaluateWithTrace, iJ as extractAttributeNames, f_ as extractFormulaVariables, iM as extractRelationIds, f$ as extractRelationNames, g0 as extractRelationReferences, g1 as flattenRelationsForEval, g2 as formatFormulaResult, eP as formatRecord, eQ as formatRecords, fi as getContext, fq as getDefaultExecutorRegistry, f2 as getFeatureFlags, f3 as getFeatureValue, g6 as getPathDepth, hr as getPolicy, g7 as getRelationPath, fb as getSchemaByNameFromContext, fc as getSchemaContext, fd as getSchemaFromContext, iC as getSyncPreview, g8 as getTargetAttributeName, fj as getTenantId, fk as getUserId, ju as getViewSeedPreview, jv as getViewSyncPreview, fl as hasContext, f4 as hasFeatureFlagsContext, g3 as hasRelationReferences, fe as hasSchemaContext, ez as hashOptions, f5 as isFeatureEnabled, iI as isLabelExpression, gb as parsePath, gc as pathHasManyCardinality, hF as recalculateParentRollups, iH as renderLabelExpression, gi as resolveMultiplePaths, gj as resolveSingleValue, fm as runWithContext, f6 as runWithFeatureFlags, ff as runWithMergedSchemaContext, fg as runWithSchemaContext, jq as seedRegistryViews, fB as success, iF as syncAll, iA as syncNativeObjects, jr as syncNativeViews, gk as traversePath, f7 as tryGetFeatureValue, g4 as validateFormulaExpression, gd as validatePath, iB as verifyNativeObjectsSync, jt as verifyNativeViewsSync, js as verifyRegistryViewsSeeded, fC as wait, f8 as withFeatureFlags, fn as withTenantContext } from './runtime-Di0FfOKV.js';
2
2
  export { a8 as CompletionStatus } from './validators-pv_b6bI_.js';
3
3
  import '@stndrds/constants';
4
4
  import './utils.js';
package/dist/runtime.js CHANGED
@@ -155,7 +155,7 @@
155
155
 
156
156
 
157
157
 
158
- var _chunkB23XC4L2js = require('./chunk-B23XC4L2.js');
158
+ var _chunkUVAA77R4js = require('./chunk-UVAA77R4.js');
159
159
  require('./chunk-E6XO2STS.js');
160
160
  require('./chunk-ZW4N6FV7.js');
161
161
  require('./chunk-3RG5ZIWI.js');
@@ -316,4 +316,4 @@ require('./chunk-3RG5ZIWI.js');
316
316
 
317
317
 
318
318
 
319
- exports.AIActionRegistry = _chunkB23XC4L2js.AIActionRegistry; exports.AIExecutor = _chunkB23XC4L2js.AIExecutor; exports.AssignExecutor = _chunkB23XC4L2js.AssignExecutor; exports.AuditService = _chunkB23XC4L2js.AuditService; exports.BaseRepository = _chunkB23XC4L2js.BaseRepository; exports.BaseService = _chunkB23XC4L2js.BaseService; exports.CodeExecutionHandler = _chunkB23XC4L2js.CodeExecutionHandler; exports.ConditionExecutor = _chunkB23XC4L2js.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkB23XC4L2js.DEFAULT_LABEL_FALLBACK; exports.DocumentGenerationHandler = _chunkB23XC4L2js.DocumentGenerationHandler; exports.DocumentProcessingService = _chunkB23XC4L2js.DocumentProcessingService; exports.DocumentService = _chunkB23XC4L2js.DocumentService; exports.EndExecutor = _chunkB23XC4L2js.EndExecutor; exports.ExecutorRegistry = _chunkB23XC4L2js.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkB23XC4L2js.FeatureFlagsContextError; exports.FileService = _chunkB23XC4L2js.FileService; exports.FormExecutor = _chunkB23XC4L2js.FormExecutor; exports.FormulaResolverService = _chunkB23XC4L2js.FormulaResolverService; exports.GeocodingService = _chunkB23XC4L2js.GeocodingService; exports.GlobalSearchService = _chunkB23XC4L2js.GlobalSearchService; exports.GrantExpiredError = _chunkB23XC4L2js.GrantExpiredError; exports.GrantNotFoundError = _chunkB23XC4L2js.GrantNotFoundError; exports.GrantRevokedError = _chunkB23XC4L2js.GrantRevokedError; exports.InvalidPathError = _chunkB23XC4L2js.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkB23XC4L2js.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkB23XC4L2js.InvitationExpiredError; exports.InvitationNotFoundError = _chunkB23XC4L2js.InvitationNotFoundError; exports.InvitationRevokedError = _chunkB23XC4L2js.InvitationRevokedError; exports.MaxDepthExceededError = _chunkB23XC4L2js.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkB23XC4L2js.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkB23XC4L2js.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkB23XC4L2js.NoopHookRegistry; exports.ObjectSchemaService = _chunkB23XC4L2js.ObjectSchemaService; exports.PermissionService = _chunkB23XC4L2js.PermissionService; exports.PolicyRegistry = _chunkB23XC4L2js.PolicyRegistry; exports.PolicyViolationError = _chunkB23XC4L2js.PolicyViolationError; exports.QueryBuilder = _chunkB23XC4L2js.QueryBuilder; exports.QueryMultipleResultsError = _chunkB23XC4L2js.QueryMultipleResultsError; exports.QueryNoResultError = _chunkB23XC4L2js.QueryNoResultError; exports.RecordQueryService = _chunkB23XC4L2js.RecordQueryService; exports.RecordResolverService = _chunkB23XC4L2js.RecordResolverService; exports.RecordService = _chunkB23XC4L2js.RecordService; exports.RelationPropertiesService = _chunkB23XC4L2js.RelationPropertiesService; exports.RelationService = _chunkB23XC4L2js.RelationService; exports.RollupScheduler = _chunkB23XC4L2js.RollupScheduler; exports.RollupService = _chunkB23XC4L2js.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkB23XC4L2js.SHORTCUT_TO_FILTER_OPERATOR; exports.SORTABLE_ATTRIBUTE_TYPES = _chunkB23XC4L2js.SORTABLE_ATTRIBUTE_TYPES; exports.SchemaContextAwareRepository = _chunkB23XC4L2js.SchemaContextAwareRepository; exports.StartExecutor = _chunkB23XC4L2js.StartExecutor; exports.TenantContextError = _chunkB23XC4L2js.TenantContextError; exports.TokenRevokedError = _chunkB23XC4L2js.TokenRevokedError; exports.UserProfileService = _chunkB23XC4L2js.UserProfileService; exports.UserService = _chunkB23XC4L2js.UserService; exports.ViewService = _chunkB23XC4L2js.ViewService; exports.WorkflowAccessGrantService = _chunkB23XC4L2js.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkB23XC4L2js.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkB23XC4L2js.WorkflowInvitationService; exports.WorkflowJwtService = _chunkB23XC4L2js.WorkflowJwtService; exports.WorkflowRelationService = _chunkB23XC4L2js.WorkflowRelationService; exports.WorkflowService = _chunkB23XC4L2js.WorkflowService; exports.addSchemaToContext = _chunkB23XC4L2js.addSchemaToContext; exports.applyDefaultValues = _chunkB23XC4L2js.applyDefaultValues; exports.buildAuditChanges = _chunkB23XC4L2js.buildAuditChanges; exports.buildPolicyContext = _chunkB23XC4L2js.buildPolicyContext; exports.cacheKeys = _chunkB23XC4L2js.cacheKeys; exports.cacheTtl = _chunkB23XC4L2js.cacheTtl; exports.checkPermission = _chunkB23XC4L2js.checkPermission; exports.checkRecordAccess = _chunkB23XC4L2js.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkB23XC4L2js.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkB23XC4L2js.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkB23XC4L2js.checkSharedObjectWriteAccess; exports.complete = _chunkB23XC4L2js.complete; exports.computeLabel = _chunkB23XC4L2js.computeLabel; exports.computeLabelWithRelations = _chunkB23XC4L2js.computeLabelWithRelations; exports.createContextForCreate = _chunkB23XC4L2js.createContextForCreate; exports.createContextForDelete = _chunkB23XC4L2js.createContextForDelete; exports.createContextForRestore = _chunkB23XC4L2js.createContextForRestore; exports.createContextForUpdate = _chunkB23XC4L2js.createContextForUpdate; exports.createDefaultAIActionRegistry = _chunkB23XC4L2js.createDefaultAIActionRegistry; exports.createDefaultExecutorRegistry = _chunkB23XC4L2js.createDefaultExecutorRegistry; exports.createDefaultState = _chunkB23XC4L2js.createDefaultState; exports.createMockAdapter = _chunkB23XC4L2js.createMockAdapter; exports.createQueryBuilder = _chunkB23XC4L2js.createQueryBuilder; exports.defaultPolicyRegistry = _chunkB23XC4L2js.defaultPolicyRegistry; exports.defaultTtl = _chunkB23XC4L2js.defaultTtl; exports.enrichRecordsWithFormulas = _chunkB23XC4L2js.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkB23XC4L2js.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkB23XC4L2js.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkB23XC4L2js.enrichWithFormulas; exports.error = _chunkB23XC4L2js.error; exports.evaluate = _chunkB23XC4L2js.evaluate; exports.evaluateCondition = _chunkB23XC4L2js.evaluateCondition; exports.evaluateFormula = _chunkB23XC4L2js.evaluateFormula; exports.evaluateFormulaAttribute = _chunkB23XC4L2js.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkB23XC4L2js.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkB23XC4L2js.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkB23XC4L2js.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkB23XC4L2js.evaluateWithTrace; exports.extractAttributeNames = _chunkB23XC4L2js.extractAttributeNames; exports.extractFormulaVariables = _chunkB23XC4L2js.extractFormulaVariables; exports.extractRelationIds = _chunkB23XC4L2js.extractRelationIds; exports.extractRelationNames = _chunkB23XC4L2js.extractRelationNames; exports.extractRelationReferences = _chunkB23XC4L2js.extractRelationReferences; exports.flattenRelationsForEval = _chunkB23XC4L2js.flattenRelationsForEval; exports.formatFormulaResult = _chunkB23XC4L2js.formatFormulaResult; exports.formatRecord = _chunkB23XC4L2js.formatRecord; exports.formatRecords = _chunkB23XC4L2js.formatRecords; exports.getContext = _chunkB23XC4L2js.getContext; exports.getDefaultExecutorRegistry = _chunkB23XC4L2js.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkB23XC4L2js.getFeatureFlags; exports.getFeatureValue = _chunkB23XC4L2js.getFeatureValue; exports.getPathDepth = _chunkB23XC4L2js.getPathDepth; exports.getPolicy = _chunkB23XC4L2js.getPolicy; exports.getRelationPath = _chunkB23XC4L2js.getRelationPath; exports.getSchemaByNameFromContext = _chunkB23XC4L2js.getSchemaByNameFromContext; exports.getSchemaContext = _chunkB23XC4L2js.getSchemaContext; exports.getSchemaFromContext = _chunkB23XC4L2js.getSchemaFromContext; exports.getSyncPreview = _chunkB23XC4L2js.getSyncPreview; exports.getTargetAttributeName = _chunkB23XC4L2js.getTargetAttributeName; exports.getTenantId = _chunkB23XC4L2js.getTenantId; exports.getUserId = _chunkB23XC4L2js.getUserId; exports.getViewSeedPreview = _chunkB23XC4L2js.getViewSeedPreview; exports.getViewSyncPreview = _chunkB23XC4L2js.getViewSyncPreview; exports.hasContext = _chunkB23XC4L2js.hasContext; exports.hasFeatureFlagsContext = _chunkB23XC4L2js.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkB23XC4L2js.hasRelationReferences; exports.hasSchemaContext = _chunkB23XC4L2js.hasSchemaContext; exports.hashOptions = _chunkB23XC4L2js.hashOptions; exports.isFeatureEnabled = _chunkB23XC4L2js.isFeatureEnabled; exports.isLabelExpression = _chunkB23XC4L2js.isLabelExpression; exports.parsePath = _chunkB23XC4L2js.parsePath; exports.pathHasManyCardinality = _chunkB23XC4L2js.pathHasManyCardinality; exports.recalculateParentRollups = _chunkB23XC4L2js.recalculateParentRollups; exports.renderLabelExpression = _chunkB23XC4L2js.renderLabelExpression; exports.resolveMultiplePaths = _chunkB23XC4L2js.resolveMultiplePaths; exports.resolveSingleValue = _chunkB23XC4L2js.resolveSingleValue; exports.runWithContext = _chunkB23XC4L2js.runWithContext; exports.runWithFeatureFlags = _chunkB23XC4L2js.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkB23XC4L2js.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkB23XC4L2js.runWithSchemaContext; exports.seedRegistryViews = _chunkB23XC4L2js.seedRegistryViews; exports.success = _chunkB23XC4L2js.success; exports.syncAll = _chunkB23XC4L2js.syncAll; exports.syncNativeObjects = _chunkB23XC4L2js.syncNativeObjects; exports.syncNativeViews = _chunkB23XC4L2js.syncNativeViews; exports.traversePath = _chunkB23XC4L2js.traversePath; exports.tryGetFeatureValue = _chunkB23XC4L2js.tryGetFeatureValue; exports.validateFormulaExpression = _chunkB23XC4L2js.validateFormulaExpression; exports.validatePath = _chunkB23XC4L2js.validatePath; exports.verifyNativeObjectsSync = _chunkB23XC4L2js.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkB23XC4L2js.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkB23XC4L2js.verifyRegistryViewsSeeded; exports.wait = _chunkB23XC4L2js.wait; exports.withFeatureFlags = _chunkB23XC4L2js.withFeatureFlags; exports.withTenantContext = _chunkB23XC4L2js.withTenantContext;
319
+ exports.AIActionRegistry = _chunkUVAA77R4js.AIActionRegistry; exports.AIExecutor = _chunkUVAA77R4js.AIExecutor; exports.AssignExecutor = _chunkUVAA77R4js.AssignExecutor; exports.AuditService = _chunkUVAA77R4js.AuditService; exports.BaseRepository = _chunkUVAA77R4js.BaseRepository; exports.BaseService = _chunkUVAA77R4js.BaseService; exports.CodeExecutionHandler = _chunkUVAA77R4js.CodeExecutionHandler; exports.ConditionExecutor = _chunkUVAA77R4js.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkUVAA77R4js.DEFAULT_LABEL_FALLBACK; exports.DocumentGenerationHandler = _chunkUVAA77R4js.DocumentGenerationHandler; exports.DocumentProcessingService = _chunkUVAA77R4js.DocumentProcessingService; exports.DocumentService = _chunkUVAA77R4js.DocumentService; exports.EndExecutor = _chunkUVAA77R4js.EndExecutor; exports.ExecutorRegistry = _chunkUVAA77R4js.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkUVAA77R4js.FeatureFlagsContextError; exports.FileService = _chunkUVAA77R4js.FileService; exports.FormExecutor = _chunkUVAA77R4js.FormExecutor; exports.FormulaResolverService = _chunkUVAA77R4js.FormulaResolverService; exports.GeocodingService = _chunkUVAA77R4js.GeocodingService; exports.GlobalSearchService = _chunkUVAA77R4js.GlobalSearchService; exports.GrantExpiredError = _chunkUVAA77R4js.GrantExpiredError; exports.GrantNotFoundError = _chunkUVAA77R4js.GrantNotFoundError; exports.GrantRevokedError = _chunkUVAA77R4js.GrantRevokedError; exports.InvalidPathError = _chunkUVAA77R4js.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkUVAA77R4js.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkUVAA77R4js.InvitationExpiredError; exports.InvitationNotFoundError = _chunkUVAA77R4js.InvitationNotFoundError; exports.InvitationRevokedError = _chunkUVAA77R4js.InvitationRevokedError; exports.MaxDepthExceededError = _chunkUVAA77R4js.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkUVAA77R4js.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkUVAA77R4js.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkUVAA77R4js.NoopHookRegistry; exports.ObjectSchemaService = _chunkUVAA77R4js.ObjectSchemaService; exports.PermissionService = _chunkUVAA77R4js.PermissionService; exports.PolicyRegistry = _chunkUVAA77R4js.PolicyRegistry; exports.PolicyViolationError = _chunkUVAA77R4js.PolicyViolationError; exports.QueryBuilder = _chunkUVAA77R4js.QueryBuilder; exports.QueryMultipleResultsError = _chunkUVAA77R4js.QueryMultipleResultsError; exports.QueryNoResultError = _chunkUVAA77R4js.QueryNoResultError; exports.RecordQueryService = _chunkUVAA77R4js.RecordQueryService; exports.RecordResolverService = _chunkUVAA77R4js.RecordResolverService; exports.RecordService = _chunkUVAA77R4js.RecordService; exports.RelationPropertiesService = _chunkUVAA77R4js.RelationPropertiesService; exports.RelationService = _chunkUVAA77R4js.RelationService; exports.RollupScheduler = _chunkUVAA77R4js.RollupScheduler; exports.RollupService = _chunkUVAA77R4js.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkUVAA77R4js.SHORTCUT_TO_FILTER_OPERATOR; exports.SORTABLE_ATTRIBUTE_TYPES = _chunkUVAA77R4js.SORTABLE_ATTRIBUTE_TYPES; exports.SchemaContextAwareRepository = _chunkUVAA77R4js.SchemaContextAwareRepository; exports.StartExecutor = _chunkUVAA77R4js.StartExecutor; exports.TenantContextError = _chunkUVAA77R4js.TenantContextError; exports.TokenRevokedError = _chunkUVAA77R4js.TokenRevokedError; exports.UserProfileService = _chunkUVAA77R4js.UserProfileService; exports.UserService = _chunkUVAA77R4js.UserService; exports.ViewService = _chunkUVAA77R4js.ViewService; exports.WorkflowAccessGrantService = _chunkUVAA77R4js.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkUVAA77R4js.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkUVAA77R4js.WorkflowInvitationService; exports.WorkflowJwtService = _chunkUVAA77R4js.WorkflowJwtService; exports.WorkflowRelationService = _chunkUVAA77R4js.WorkflowRelationService; exports.WorkflowService = _chunkUVAA77R4js.WorkflowService; exports.addSchemaToContext = _chunkUVAA77R4js.addSchemaToContext; exports.applyDefaultValues = _chunkUVAA77R4js.applyDefaultValues; exports.buildAuditChanges = _chunkUVAA77R4js.buildAuditChanges; exports.buildPolicyContext = _chunkUVAA77R4js.buildPolicyContext; exports.cacheKeys = _chunkUVAA77R4js.cacheKeys; exports.cacheTtl = _chunkUVAA77R4js.cacheTtl; exports.checkPermission = _chunkUVAA77R4js.checkPermission; exports.checkRecordAccess = _chunkUVAA77R4js.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkUVAA77R4js.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkUVAA77R4js.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkUVAA77R4js.checkSharedObjectWriteAccess; exports.complete = _chunkUVAA77R4js.complete; exports.computeLabel = _chunkUVAA77R4js.computeLabel; exports.computeLabelWithRelations = _chunkUVAA77R4js.computeLabelWithRelations; exports.createContextForCreate = _chunkUVAA77R4js.createContextForCreate; exports.createContextForDelete = _chunkUVAA77R4js.createContextForDelete; exports.createContextForRestore = _chunkUVAA77R4js.createContextForRestore; exports.createContextForUpdate = _chunkUVAA77R4js.createContextForUpdate; exports.createDefaultAIActionRegistry = _chunkUVAA77R4js.createDefaultAIActionRegistry; exports.createDefaultExecutorRegistry = _chunkUVAA77R4js.createDefaultExecutorRegistry; exports.createDefaultState = _chunkUVAA77R4js.createDefaultState; exports.createMockAdapter = _chunkUVAA77R4js.createMockAdapter; exports.createQueryBuilder = _chunkUVAA77R4js.createQueryBuilder; exports.defaultPolicyRegistry = _chunkUVAA77R4js.defaultPolicyRegistry; exports.defaultTtl = _chunkUVAA77R4js.defaultTtl; exports.enrichRecordsWithFormulas = _chunkUVAA77R4js.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkUVAA77R4js.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkUVAA77R4js.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkUVAA77R4js.enrichWithFormulas; exports.error = _chunkUVAA77R4js.error; exports.evaluate = _chunkUVAA77R4js.evaluate; exports.evaluateCondition = _chunkUVAA77R4js.evaluateCondition; exports.evaluateFormula = _chunkUVAA77R4js.evaluateFormula; exports.evaluateFormulaAttribute = _chunkUVAA77R4js.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkUVAA77R4js.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkUVAA77R4js.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkUVAA77R4js.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkUVAA77R4js.evaluateWithTrace; exports.extractAttributeNames = _chunkUVAA77R4js.extractAttributeNames; exports.extractFormulaVariables = _chunkUVAA77R4js.extractFormulaVariables; exports.extractRelationIds = _chunkUVAA77R4js.extractRelationIds; exports.extractRelationNames = _chunkUVAA77R4js.extractRelationNames; exports.extractRelationReferences = _chunkUVAA77R4js.extractRelationReferences; exports.flattenRelationsForEval = _chunkUVAA77R4js.flattenRelationsForEval; exports.formatFormulaResult = _chunkUVAA77R4js.formatFormulaResult; exports.formatRecord = _chunkUVAA77R4js.formatRecord; exports.formatRecords = _chunkUVAA77R4js.formatRecords; exports.getContext = _chunkUVAA77R4js.getContext; exports.getDefaultExecutorRegistry = _chunkUVAA77R4js.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkUVAA77R4js.getFeatureFlags; exports.getFeatureValue = _chunkUVAA77R4js.getFeatureValue; exports.getPathDepth = _chunkUVAA77R4js.getPathDepth; exports.getPolicy = _chunkUVAA77R4js.getPolicy; exports.getRelationPath = _chunkUVAA77R4js.getRelationPath; exports.getSchemaByNameFromContext = _chunkUVAA77R4js.getSchemaByNameFromContext; exports.getSchemaContext = _chunkUVAA77R4js.getSchemaContext; exports.getSchemaFromContext = _chunkUVAA77R4js.getSchemaFromContext; exports.getSyncPreview = _chunkUVAA77R4js.getSyncPreview; exports.getTargetAttributeName = _chunkUVAA77R4js.getTargetAttributeName; exports.getTenantId = _chunkUVAA77R4js.getTenantId; exports.getUserId = _chunkUVAA77R4js.getUserId; exports.getViewSeedPreview = _chunkUVAA77R4js.getViewSeedPreview; exports.getViewSyncPreview = _chunkUVAA77R4js.getViewSyncPreview; exports.hasContext = _chunkUVAA77R4js.hasContext; exports.hasFeatureFlagsContext = _chunkUVAA77R4js.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkUVAA77R4js.hasRelationReferences; exports.hasSchemaContext = _chunkUVAA77R4js.hasSchemaContext; exports.hashOptions = _chunkUVAA77R4js.hashOptions; exports.isFeatureEnabled = _chunkUVAA77R4js.isFeatureEnabled; exports.isLabelExpression = _chunkUVAA77R4js.isLabelExpression; exports.parsePath = _chunkUVAA77R4js.parsePath; exports.pathHasManyCardinality = _chunkUVAA77R4js.pathHasManyCardinality; exports.recalculateParentRollups = _chunkUVAA77R4js.recalculateParentRollups; exports.renderLabelExpression = _chunkUVAA77R4js.renderLabelExpression; exports.resolveMultiplePaths = _chunkUVAA77R4js.resolveMultiplePaths; exports.resolveSingleValue = _chunkUVAA77R4js.resolveSingleValue; exports.runWithContext = _chunkUVAA77R4js.runWithContext; exports.runWithFeatureFlags = _chunkUVAA77R4js.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkUVAA77R4js.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkUVAA77R4js.runWithSchemaContext; exports.seedRegistryViews = _chunkUVAA77R4js.seedRegistryViews; exports.success = _chunkUVAA77R4js.success; exports.syncAll = _chunkUVAA77R4js.syncAll; exports.syncNativeObjects = _chunkUVAA77R4js.syncNativeObjects; exports.syncNativeViews = _chunkUVAA77R4js.syncNativeViews; exports.traversePath = _chunkUVAA77R4js.traversePath; exports.tryGetFeatureValue = _chunkUVAA77R4js.tryGetFeatureValue; exports.validateFormulaExpression = _chunkUVAA77R4js.validateFormulaExpression; exports.validatePath = _chunkUVAA77R4js.validatePath; exports.verifyNativeObjectsSync = _chunkUVAA77R4js.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkUVAA77R4js.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkUVAA77R4js.verifyRegistryViewsSeeded; exports.wait = _chunkUVAA77R4js.wait; exports.withFeatureFlags = _chunkUVAA77R4js.withFeatureFlags; exports.withTenantContext = _chunkUVAA77R4js.withTenantContext;
package/dist/runtime.mjs CHANGED
@@ -155,7 +155,7 @@ import {
155
155
  wait,
156
156
  withFeatureFlags,
157
157
  withTenantContext
158
- } from "./chunk-IFJJT3JZ.mjs";
158
+ } from "./chunk-JBHONBEV.mjs";
159
159
  import "./chunk-XAORXFAX.mjs";
160
160
  import "./chunk-JUVFK6XD.mjs";
161
161
  import "./chunk-Y6FXYEAI.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/schema",
3
- "version": "1.0.0-alpha.87",
3
+ "version": "1.0.0-alpha.89",
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.87"
39
+ "@stndrds/constants": "1.0.0-alpha.89"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^25.0.3",