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

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.
@@ -307,8 +307,8 @@ var cacheKeys = {
307
307
  searchResults: (tenantId, objectId, hash) => `search:${tenantId}:${objectId}:${hash}`,
308
308
  /** All search results for an object (for invalidation) */
309
309
  allSearchResults: (tenantId, objectId) => `search:${tenantId}:${objectId}:*`,
310
- /** Global search results */
311
- globalSearch: (tenantId, hash) => `gsearch:${tenantId}:${hash}`,
310
+ /** Global search results (3-param signature to match cachedList pattern) */
311
+ globalSearch: (tenantId, _id, hash) => `gsearch:${tenantId}:${hash}`,
312
312
  /** All global search results for tenant (for invalidation) */
313
313
  allGlobalSearch: (tenantId) => `gsearch:${tenantId}:*`,
314
314
  // -------------------------------------------------------------------------
@@ -3949,7 +3949,6 @@ function createMockObjectRecordsRepository(stores) {
3949
3949
  objectLabel: obj?.label ?? "Unknown",
3950
3950
  label: renderLabelExpression(labelExpression, enrichedValues),
3951
3951
  recordId: r.id,
3952
- values: r.values,
3953
3952
  completionStatus: r.completionStatus,
3954
3953
  createdAt: r.createdAt,
3955
3954
  updatedAt: r.updatedAt
@@ -3957,6 +3956,36 @@ function createMockObjectRecordsRepository(stores) {
3957
3956
  });
3958
3957
  return Promise.resolve({ results, total });
3959
3958
  },
3959
+ globalSearchGrouped(query, options) {
3960
+ const limitPerGroup = options?.limitPerGroup ?? 5;
3961
+ return this.globalSearch(query, {
3962
+ objectNames: options?.objectNames,
3963
+ limit: 500,
3964
+ offset: 0
3965
+ }).then(({ results }) => {
3966
+ const groupMap = /* @__PURE__ */ new Map();
3967
+ for (const result of results) {
3968
+ let group2 = groupMap.get(result.objectName);
3969
+ if (!group2) {
3970
+ group2 = {
3971
+ objectName: result.objectName,
3972
+ objectLabel: result.objectLabel,
3973
+ results: [],
3974
+ totalInGroup: 0
3975
+ };
3976
+ groupMap.set(result.objectName, group2);
3977
+ }
3978
+ group2.totalInGroup++;
3979
+ if (group2.results.length < limitPerGroup) {
3980
+ group2.results.push(result);
3981
+ }
3982
+ }
3983
+ const groups = Array.from(groupMap.values());
3984
+ groups.sort((a, b) => b.totalInGroup - a.totalInGroup);
3985
+ const total = groups.reduce((sum, g) => sum + g.totalInGroup, 0);
3986
+ return { groups, total };
3987
+ });
3988
+ },
3960
3989
  // -------------------------------------------------------------------------
3961
3990
  // Schema Integrity Methods
3962
3991
  // -------------------------------------------------------------------------
@@ -16517,23 +16546,6 @@ var GlobalSearchService = class extends BaseService {
16517
16546
  * @param query - Search query string
16518
16547
  * @param options - Search options (pagination, object filters)
16519
16548
  * @returns Matching records with object metadata and total count
16520
- *
16521
- * @example
16522
- * ```typescript
16523
- * // Basic search
16524
- * const { results, total } = await service.search("nike air");
16525
- *
16526
- * // With pagination
16527
- * const { results, total } = await service.search("nike", {
16528
- * limit: 10,
16529
- * offset: 20
16530
- * });
16531
- *
16532
- * // Filter by object types
16533
- * const { results, total } = await service.search("nike", {
16534
- * objectNames: ["products", "orders"]
16535
- * });
16536
- * ```
16537
16549
  */
16538
16550
  async search(query, options) {
16539
16551
  if (!query || query.trim().length === 0) {
@@ -16541,58 +16553,36 @@ var GlobalSearchService = class extends BaseService {
16541
16553
  }
16542
16554
  return this.cachedList(
16543
16555
  "globalSearch",
16544
- "global",
16556
+ "search",
16545
16557
  { query: query.trim(), ...options },
16546
- () => this.executeSearch(query.trim(), options)
16558
+ () => this.adapter.objectRecords.globalSearch(query.trim(), {
16559
+ limit: options?.limit ?? 20,
16560
+ offset: options?.offset ?? 0,
16561
+ objectNames: options?.objectNames
16562
+ })
16547
16563
  );
16548
16564
  }
16549
16565
  /**
16550
- * Internal search execution (extracted for caching)
16551
- */
16552
- async executeSearch(query, options) {
16553
- return await this.adapter.objectRecords.globalSearch(query, {
16554
- limit: options?.limit ?? 20,
16555
- offset: options?.offset ?? 0,
16556
- objectNames: options?.objectNames,
16557
- includeObjectInfo: options?.includeObjectInfo ?? true
16558
- });
16559
- }
16560
- /**
16561
- * Search and group results by object type
16566
+ * Search and group results by object type.
16567
+ * Delegates grouping to the database for accurate per-group counts.
16562
16568
  *
16563
16569
  * @param query - Search query string
16564
- * @param options - Search options
16565
- * @returns Results grouped by object name
16570
+ * @param options - Search options (object filters, limit per group)
16571
+ * @returns Results grouped by object name with per-group totals
16566
16572
  */
16567
16573
  async searchGrouped(query, options) {
16568
- const limitPerGroup = options?.limitPerGroup ?? 5;
16569
- const estimatedGroupCount = 10;
16570
- const fetchLimit = Math.min(limitPerGroup * estimatedGroupCount, 100);
16571
- const { results, total } = await this.search(query, {
16572
- ...options,
16573
- limit: fetchLimit,
16574
- offset: 0
16575
- });
16576
- const groupMap = /* @__PURE__ */ new Map();
16577
- for (const result of results) {
16578
- const existing = groupMap.get(result.objectName);
16579
- if (existing) {
16580
- existing.results.push(result);
16581
- } else {
16582
- groupMap.set(result.objectName, {
16583
- objectName: result.objectName,
16584
- objectLabel: result.objectLabel,
16585
- results: [result]
16586
- });
16587
- }
16574
+ if (!query || query.trim().length === 0) {
16575
+ return { groups: [], total: 0 };
16588
16576
  }
16589
- const groups = Array.from(groupMap.values()).map((g) => ({
16590
- ...g,
16591
- results: g.results.slice(0, limitPerGroup),
16592
- count: g.results.length
16593
- }));
16594
- groups.sort((a, b) => b.count - a.count);
16595
- return { groups, total };
16577
+ return this.cachedList(
16578
+ "globalSearch",
16579
+ "grouped",
16580
+ { query: query.trim(), ...options },
16581
+ () => this.adapter.objectRecords.globalSearchGrouped(query.trim(), {
16582
+ objectNames: options?.objectNames,
16583
+ limitPerGroup: options?.limitPerGroup ?? 5
16584
+ })
16585
+ );
16596
16586
  }
16597
16587
  };
16598
16588
 
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField, G as Group, T as TableTab, D as DetailViewLayout, b as InverseTableTab, c as DetailViewDefinition, d as InstanceStatus, e as Tab, f as FilterState, g as SortRule, h as DirectTableTab, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, C as ConditionGroup, k as ConditionRule, l as WorkflowNode, m as WorkflowDefinition, n as FlowRow, V as ViewType, o as ViewDefinition, p as DocumentTemplate } from './runtime-Chz-bTNq.mjs';
2
- export { aa as AIBatchQuestion, ab as AIBatchQuestionAnswer, a9 as AIBatchQuestionOption, a4 as AIChatMessage, a3 as AIChatMessagePart, _ as AIChatMessagePartType, ag as AIConversation, fY as AIConversationsRepository, ah as AIMessage, af as AIMessageAttachment, U as AIMessageRole, al as AIProviderMetrics, a7 as AIQuestion, a8 as AIQuestionAnswer, a6 as AIQuestionOption, a5 as AIQuestionType, X as AIThinkingLevel, ad as AITodoItem, ae as AITodoList, ac as AITodoStatus, Z as AIToolCall, ai as AIToolCallRecord, Y as AIToolCallStatus, ak as AIUsageMetrics, fZ as AIUsageMetricsRepository, aj as AIUserMemory, f_ as AIUserMemoryRepository, ck as ActivityTab, bH as AddAttribute, gm as AddAttributeInput, bg as AdvancedFilterState, c7 as AssignRoleInput, fM as AttributeChange, bG as AttributeMap, bC as AttributeSchema, f$ as AttributesRepository, ao as AuditAction, ap as AuditActorType, aq as AuditChange, at as AuditListOptions, ar as AuditLogEntry, g0 as AuditRepository, an as AuditResourceType, hC as AuditService, au as AuditServiceOptions, gi as BaseRepository, gh as BaseService, B as BoundingBox, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, ct as CalendarViewConfig, cx as CalendarViewDefinition, db as CanvasViewport, b2 as CheckboxFilterOperator, fd as ConditionExecutor, cQ as ConditionNode, d3 as ConditionOperator, cA as ConfigOverrides, am as CreateAIMessageInput, as as CreateAuditLogInput, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iI as CreateDBView, iM as CreateDBViewOverlay, iP as CreateDBWorkflow, iY as CreateDBWorkflowAccessGrant, iS as CreateDBWorkflowInstance, iV as CreateDBWorkflowInvitation, aN as CreateDocument, az as CreateDocumentGenerationTemplate, aR as CreateDocumentSlot, aP as CreateDocumentTemplate, a_ as CreateFile, dz as CreateGrantInput, hg as CreateGrantResult, ds as CreateInvitationInput, dt as CreateInvitationResult, iB as CreateObjectRecord, c6 as CreatePermissionInput, aT as CreateProcessingJob, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, c4 as CreateRoleInput, x as CreateSignatureInput, ce as CreateUserProfile, h$ as CreateViewInput, ht as CreateWorkflowInput, b9 as CurrencyFilterValue, bL as CustomAttributeValue, cj as CustomTab, ix as DBAttribute, it as DBObject, iH as DBView, iL as DBViewOverlay, iO as DBWorkflow, iX as DBWorkflowAccessGrant, iR as DBWorkflowInstance, iU as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, dU as DEFAULT_THEME, e1 as DatabaseAdapter, b3 as DateFilterOperator, cr as DetailViewConfig, aG as Document, aD as DocumentAutoProcessing, Q as DocumentData, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, ay as DocumentGenerationTemplate, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, aV as DocumentListOptions, cR as DocumentNode, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, aI as DocumentSlot, aC as DocumentSlotDefinition, g4 as DocumentSlotsRepository, aH as DocumentStatus, aW as DocumentTemplateListOptions, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, cn as DocumentsTab, c1 as EffectivePermissions, ff as EndExecutor, cS as EndNode, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, bd as ExtendedFilterRule, bV as ExtractAttributes, bX as ExtractObjectRecord, bY as ExtractObjectRecordWithCustom, bP as ExtractRecord, bR as ExtractRecordInput, bS as ExtractRecordInputStrict, bQ as ExtractRecordStrict, bT as ExtractRecordUpdate, bU as ExtractRecordUpdateStrict, aF as ExtractionField, aE as ExtractionMapping, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, aZ as File, i4 as FileContent, iG as FileListOptions, hW as FileService, hV as FileServiceOptions, aY as FileVisibility, g7 as FilesRepository, be as FilterCombinator, bf as FilterGroup, b7 as FilterOperator, bc as FilterRule, bb as FilterValue, bs as FlowDefinition, bp as FlowPage, bq as FlowRelation, bo as FlowRowField, bn as FlowSlot, br as FlowStatus, cm as FlowsTab, dL as FormContextResponse, fg as FormExecutor, dM as FormFieldContext, cT as FormFieldRef, dN as FormFieldRow, cU as FormNode, dO as FormNodeInfo, ci as FormTab, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, cv as GalleryViewConfig, cz as GalleryViewDefinition, dG as GeneratedDocument, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iE as GlobalSearchOptions, iF as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, M as IdentityVerificationAdapter, bI as InferRecord, bD as InferRecordFromSchema, bJ as InferRecordInput, bK as InferRecordUpdate, bE as InferRecordWithRequirements, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, du as InvitationStatus, cg as InviteUserInput, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, cs as ListViewConfig, co as ListViewLayout, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, b5 as MultiselectFilterOperator, bl as NO_VALUE_OPERATORS, bk as NoValueOperator, f7 as NodeExecutor, dc as NodePosition, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, cl as NotesTab, b1 as NumberFilterOperator, bj as OPERATORS_BY_TYPE, c2 as ObjectPermissions, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, q as OcrAdapter, r as OcrInput, s as OcrOptions, u as OcrPage, t as OcrResult, v as OcrTextBlock, i_ as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, aw as PdfTemplateField, dj as PendingAction, aB as PendingDocumentRequest, b$ as Permission, bZ as PermissionScope, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, ba as PhoneFilterValue, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, aK as ProcessingJob, aM as ProcessingJobStatus, aL as ProcessingJobType, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, bi as QueryState, dP as ReadOnlyReason, a2 as ReasoningPartData, hQ as RecordDocumentsResult, bN as RecordMetadata, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, b6 as RelationFilterOperator, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, b8 as RelativeDateValue, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, b_ as Role, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, b4 as SelectFilterOperator, en as ShortcutOperator, w as SignatureAdapter, z as SignaturePosition, E as SignatureRequestResult, K as SignatureStatus, H as SignatureStatusResult, i7 as SignedUrlOptions, y as SignerRequest, J as SignerStatus, gH as SingleRelationValue, aJ as SlotStatus, bh as SortDirection, fh as StartExecutor, cV as StartNode, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, aX as StorageProvider, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, bO as SystemFields, c3 as SystemPermissions, ch as TabType, ax as TemplateSource, e_ as TenantContext, eC as TenantContextError, b0 as TextFilterOperator, $ as TextPartData, dR as ThemeColors, dS as ThemeLogo, dT as ThemeTypography, a1 as ThinkingPartData, cu as TimelineViewConfig, cy as TimelineViewDefinition, he as TokenRevokedError, a0 as ToolPartData, fK as TraversalOptions, fL as TraversalResult, bF as TypedAttribute, bW as TypedObjectRecord, iz as UpdateDBAttribute, iv as UpdateDBObject, iJ as UpdateDBView, iN as UpdateDBViewOverlay, iQ as UpdateDBWorkflow, iZ as UpdateDBWorkflowAccessGrant, iT as UpdateDBWorkflowInstance, iW as UpdateDBWorkflowInvitation, aO as UpdateDocument, aA as UpdateDocumentGenerationTemplate, aS as UpdateDocumentSlot, aQ as UpdateDocumentTemplate, a$ as UpdateFile, gn as UpdateObjectInput, aU as UpdateProcessingJob, c5 as UpdateRoleInput, cf as UpdateUserProfile, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iK as UpsertDBView, cd as UserProfile, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, cb as UserRole, c0 as UserRoleAssignment, hz as UserService, cc as UserStatus, hy as UserValidationError, hx as UserValidationResult, av as VariableMapping, R as VerificationCheck, P as VerificationResult, N as VerifyInput, cw as ViewConfig, cp as ViewLayout, cB as ViewOverlay, dZ as ViewOverlaysRepository, i3 as ViewService, j0 as ViewSyncLogger, j1 as ViewSyncOptions, i$ as ViewSyncResult, cq as ViewTab, gc as ViewsRepository, bM as WithCustomAttributes, dA as WorkflowAccessGrant, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, dQ as WorkflowAccessMode, e5 as WorkflowAccessPayload, dk as WorkflowError, dH as WorkflowExecutionContext, dl as WorkflowInstance, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, dv as WorkflowInvitation, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, dd as WorkflowLayout, cW as WorkflowNodeType, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, de as WorkflowSlot, df as WorkflowStatus, dm as WorkflowTransition, gg as WorkflowsRepository, eM as addSchemaToContext, d4 as and, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, dB as canAccessNode, dn as canResumeInstance, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, dI as createEmptyContext, fT as createMockAdapter, eu as createQueryBuilder, dp as createStartTransition, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, d5 as eq, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, dV as generateCssVariables, eU as getContext, dJ as getContextValue, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, cX as getNodeOutputs, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j6 as getViewSeedPreview, j7 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, d6 as inValues, cM as isActivityTab, cY as isAdvancedFormNode, cE as isCalendarView, d7 as isConditionGroup, cZ as isConditionNode, d8 as isConditionRule, cL as isCustomTab, cC as isDetailView, cJ as isDirectTableTab, c_ as isDocumentNode, cP as isDocumentsTab, c$ as isEndNode, eH as isFeatureEnabled, bt as isFlowDefinition, bu as isFlowPublished, cO as isFlowsTab, d0 as isFormNode, cH as isFormTab, cG as isGalleryView, dC as isGrantExpired, dD as isGrantRevoked, dE as isGrantValid, dq as isInstanceTerminal, dr as isInstanceWaiting, cK as isInverseTableTab, dw as isInvitationAccepted, dx as isInvitationExpired, dy as isInvitationValid, il as isLabelExpression, cD as isListView, bm as isNoValueOperator, cN as isNotesTab, d1 as isSimpleFormNode, d2 as isStartNode, bv as isSystemFlow, dg as isSystemWorkflow, cI as isTableTab, cF as isTimelineView, dF as isTokenRevoked, dh as isWorkflowDefinition, di as isWorkflowPublished, dW as mergeWithDefaults, d9 as neq, fX as notesPolicy, da as or, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, dX as registry, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j2 as seedRegistryViews, dK as setContextValue, fb as success, ii as syncAll, ic as syncNativeObjects, j3 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j5 as verifyNativeViewsSync, j4 as verifyRegistryViewsSeeded, dY as viewRegistry, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-Chz-bTNq.mjs';
1
+ import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField, G as Group, T as TableTab, D as DetailViewLayout, b as InverseTableTab, c as DetailViewDefinition, d as InstanceStatus, e as Tab, f as FilterState, g as SortRule, h as DirectTableTab, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, C as ConditionGroup, k as ConditionRule, l as WorkflowNode, m as WorkflowDefinition, n as FlowRow, V as ViewType, o as ViewDefinition, p as DocumentTemplate } from './runtime-D0XMDY1D.mjs';
2
+ export { aa as AIBatchQuestion, ab as AIBatchQuestionAnswer, a9 as AIBatchQuestionOption, a4 as AIChatMessage, a3 as AIChatMessagePart, _ as AIChatMessagePartType, ag as AIConversation, fY as AIConversationsRepository, ah as AIMessage, af as AIMessageAttachment, U as AIMessageRole, al as AIProviderMetrics, a7 as AIQuestion, a8 as AIQuestionAnswer, a6 as AIQuestionOption, a5 as AIQuestionType, X as AIThinkingLevel, ad as AITodoItem, ae as AITodoList, ac as AITodoStatus, Z as AIToolCall, ai as AIToolCallRecord, Y as AIToolCallStatus, ak as AIUsageMetrics, fZ as AIUsageMetricsRepository, aj as AIUserMemory, f_ as AIUserMemoryRepository, ck as ActivityTab, bH as AddAttribute, gm as AddAttributeInput, bg as AdvancedFilterState, c7 as AssignRoleInput, fM as AttributeChange, bG as AttributeMap, bC as AttributeSchema, f$ as AttributesRepository, ao as AuditAction, ap as AuditActorType, aq as AuditChange, at as AuditListOptions, ar as AuditLogEntry, g0 as AuditRepository, an as AuditResourceType, hC as AuditService, au as AuditServiceOptions, gi as BaseRepository, gh as BaseService, B as BoundingBox, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, ct as CalendarViewConfig, cx as CalendarViewDefinition, db as CanvasViewport, b2 as CheckboxFilterOperator, fd as ConditionExecutor, cQ as ConditionNode, d3 as ConditionOperator, cA as ConfigOverrides, am as CreateAIMessageInput, as as CreateAuditLogInput, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iK as CreateDBView, iO as CreateDBViewOverlay, iR as CreateDBWorkflow, i_ as CreateDBWorkflowAccessGrant, iU as CreateDBWorkflowInstance, iX as CreateDBWorkflowInvitation, aN as CreateDocument, az as CreateDocumentGenerationTemplate, aR as CreateDocumentSlot, aP as CreateDocumentTemplate, a_ as CreateFile, dz as CreateGrantInput, hg as CreateGrantResult, ds as CreateInvitationInput, dt as CreateInvitationResult, iB as CreateObjectRecord, c6 as CreatePermissionInput, aT as CreateProcessingJob, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, c4 as CreateRoleInput, x as CreateSignatureInput, ce as CreateUserProfile, h$ as CreateViewInput, ht as CreateWorkflowInput, b9 as CurrencyFilterValue, bL as CustomAttributeValue, cj as CustomTab, ix as DBAttribute, it as DBObject, iJ as DBView, iN as DBViewOverlay, iQ as DBWorkflow, iZ as DBWorkflowAccessGrant, iT as DBWorkflowInstance, iW as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, dU as DEFAULT_THEME, e1 as DatabaseAdapter, b3 as DateFilterOperator, cr as DetailViewConfig, aG as Document, aD as DocumentAutoProcessing, Q as DocumentData, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, ay as DocumentGenerationTemplate, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, aV as DocumentListOptions, cR as DocumentNode, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, aI as DocumentSlot, aC as DocumentSlotDefinition, g4 as DocumentSlotsRepository, aH as DocumentStatus, aW as DocumentTemplateListOptions, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, cn as DocumentsTab, c1 as EffectivePermissions, ff as EndExecutor, cS as EndNode, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, bd as ExtendedFilterRule, bV as ExtractAttributes, bX as ExtractObjectRecord, bY as ExtractObjectRecordWithCustom, bP as ExtractRecord, bR as ExtractRecordInput, bS as ExtractRecordInputStrict, bQ as ExtractRecordStrict, bT as ExtractRecordUpdate, bU as ExtractRecordUpdateStrict, aF as ExtractionField, aE as ExtractionMapping, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, aZ as File, i4 as FileContent, iI as FileListOptions, hW as FileService, hV as FileServiceOptions, aY as FileVisibility, g7 as FilesRepository, be as FilterCombinator, bf as FilterGroup, b7 as FilterOperator, bc as FilterRule, bb as FilterValue, bs as FlowDefinition, bp as FlowPage, bq as FlowRelation, bo as FlowRowField, bn as FlowSlot, br as FlowStatus, cm as FlowsTab, dL as FormContextResponse, fg as FormExecutor, dM as FormFieldContext, cT as FormFieldRef, dN as FormFieldRow, cU as FormNode, dO as FormNodeInfo, ci as FormTab, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, cv as GalleryViewConfig, cz as GalleryViewDefinition, dG as GeneratedDocument, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iF as GlobalSearchGroupedOptions, iH as GlobalSearchGroupedResult, iE as GlobalSearchOptions, iG as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, M as IdentityVerificationAdapter, bI as InferRecord, bD as InferRecordFromSchema, bJ as InferRecordInput, bK as InferRecordUpdate, bE as InferRecordWithRequirements, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, du as InvitationStatus, cg as InviteUserInput, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, cs as ListViewConfig, co as ListViewLayout, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, b5 as MultiselectFilterOperator, bl as NO_VALUE_OPERATORS, bk as NoValueOperator, f7 as NodeExecutor, dc as NodePosition, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, cl as NotesTab, b1 as NumberFilterOperator, bj as OPERATORS_BY_TYPE, c2 as ObjectPermissions, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, q as OcrAdapter, r as OcrInput, s as OcrOptions, u as OcrPage, t as OcrResult, v as OcrTextBlock, j0 as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, aw as PdfTemplateField, dj as PendingAction, aB as PendingDocumentRequest, b$ as Permission, bZ as PermissionScope, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, ba as PhoneFilterValue, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, aK as ProcessingJob, aM as ProcessingJobStatus, aL as ProcessingJobType, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, bi as QueryState, dP as ReadOnlyReason, a2 as ReasoningPartData, hQ as RecordDocumentsResult, bN as RecordMetadata, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, b6 as RelationFilterOperator, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, b8 as RelativeDateValue, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, b_ as Role, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, b4 as SelectFilterOperator, en as ShortcutOperator, w as SignatureAdapter, z as SignaturePosition, E as SignatureRequestResult, K as SignatureStatus, H as SignatureStatusResult, i7 as SignedUrlOptions, y as SignerRequest, J as SignerStatus, gH as SingleRelationValue, aJ as SlotStatus, bh as SortDirection, fh as StartExecutor, cV as StartNode, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, aX as StorageProvider, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, bO as SystemFields, c3 as SystemPermissions, ch as TabType, ax as TemplateSource, e_ as TenantContext, eC as TenantContextError, b0 as TextFilterOperator, $ as TextPartData, dR as ThemeColors, dS as ThemeLogo, dT as ThemeTypography, a1 as ThinkingPartData, cu as TimelineViewConfig, cy as TimelineViewDefinition, he as TokenRevokedError, a0 as ToolPartData, fK as TraversalOptions, fL as TraversalResult, bF as TypedAttribute, bW as TypedObjectRecord, iz as UpdateDBAttribute, iv as UpdateDBObject, iL as UpdateDBView, iP as UpdateDBViewOverlay, iS as UpdateDBWorkflow, i$ as UpdateDBWorkflowAccessGrant, iV as UpdateDBWorkflowInstance, iY as UpdateDBWorkflowInvitation, aO as UpdateDocument, aA as UpdateDocumentGenerationTemplate, aS as UpdateDocumentSlot, aQ as UpdateDocumentTemplate, a$ as UpdateFile, gn as UpdateObjectInput, aU as UpdateProcessingJob, c5 as UpdateRoleInput, cf as UpdateUserProfile, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iM as UpsertDBView, cd as UserProfile, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, cb as UserRole, c0 as UserRoleAssignment, hz as UserService, cc as UserStatus, hy as UserValidationError, hx as UserValidationResult, av as VariableMapping, R as VerificationCheck, P as VerificationResult, N as VerifyInput, cw as ViewConfig, cp as ViewLayout, cB as ViewOverlay, dZ as ViewOverlaysRepository, i3 as ViewService, j2 as ViewSyncLogger, j3 as ViewSyncOptions, j1 as ViewSyncResult, cq as ViewTab, gc as ViewsRepository, bM as WithCustomAttributes, dA as WorkflowAccessGrant, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, dQ as WorkflowAccessMode, e5 as WorkflowAccessPayload, dk as WorkflowError, dH as WorkflowExecutionContext, dl as WorkflowInstance, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, dv as WorkflowInvitation, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, dd as WorkflowLayout, cW as WorkflowNodeType, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, de as WorkflowSlot, df as WorkflowStatus, dm as WorkflowTransition, gg as WorkflowsRepository, eM as addSchemaToContext, d4 as and, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, dB as canAccessNode, dn as canResumeInstance, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, dI as createEmptyContext, fT as createMockAdapter, eu as createQueryBuilder, dp as createStartTransition, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, d5 as eq, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, dV as generateCssVariables, eU as getContext, dJ as getContextValue, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, cX as getNodeOutputs, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j8 as getViewSeedPreview, j9 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, d6 as inValues, cM as isActivityTab, cY as isAdvancedFormNode, cE as isCalendarView, d7 as isConditionGroup, cZ as isConditionNode, d8 as isConditionRule, cL as isCustomTab, cC as isDetailView, cJ as isDirectTableTab, c_ as isDocumentNode, cP as isDocumentsTab, c$ as isEndNode, eH as isFeatureEnabled, bt as isFlowDefinition, bu as isFlowPublished, cO as isFlowsTab, d0 as isFormNode, cH as isFormTab, cG as isGalleryView, dC as isGrantExpired, dD as isGrantRevoked, dE as isGrantValid, dq as isInstanceTerminal, dr as isInstanceWaiting, cK as isInverseTableTab, dw as isInvitationAccepted, dx as isInvitationExpired, dy as isInvitationValid, il as isLabelExpression, cD as isListView, bm as isNoValueOperator, cN as isNotesTab, d1 as isSimpleFormNode, d2 as isStartNode, bv as isSystemFlow, dg as isSystemWorkflow, cI as isTableTab, cF as isTimelineView, dF as isTokenRevoked, dh as isWorkflowDefinition, di as isWorkflowPublished, dW as mergeWithDefaults, d9 as neq, fX as notesPolicy, da as or, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, dX as registry, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j4 as seedRegistryViews, dK as setContextValue, fb as success, ii as syncAll, ic as syncNativeObjects, j5 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j7 as verifyNativeViewsSync, j6 as verifyRegistryViewsSeeded, dY as viewRegistry, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-D0XMDY1D.mjs';
3
3
  import { D as DateAttribute, U as UserAttribute, a as DocumentAttribute, A as Attribute, P as PropertyDefinition, T as TextPropertyDefinition, b as TextareaPropertyDefinition, N as NumberPropertyDefinition, C as CheckboxPropertyDefinition, c as DatePropertyDefinition, d as PhonePropertyDefinition, e as CurrencyPropertyDefinition, S as StatusPropertyDefinition, O as Option, f as StatusGroup, g as SelectPropertyDefinition, M as MultiselectPropertyDefinition, R as RatingPropertyDefinition, L as LocationPropertyDefinition, h as PropertySchema, F as FeatureGate, i as TextAttribute, j as TextAreaAttribute, k as RichtextAttribute, l as RichtextFeature, m as NumberAttribute, n as CheckboxAttribute, o as PhoneAttribute, p as CurrencyAttribute, q as StatusAttribute, r as SelectAttribute, s as MultiselectAttribute, t as LocationAttribute, u as FileAttribute, v as SingleRelationAttribute, w as MultiRelationAttribute, x as RelationTarget, y as RatingAttribute, z as FormulaAttribute, B as FormulaReturnType, E as RollupAttribute, G as RollupFunction, H as AttributeType, I as ObjectDefinition, J as FlagValueType, K as FeatureFlagDefinition, Q as FlagLevel, V as FeatureFlagsRepository, W as StaticFlagDefault, X as ResolvedFlag } from './validators-BIAmz0CD.mjs';
4
4
  export { Y as AttributeGroup, Z as BaseAttribute, ah as CompletionStatus, a2 as Currency, ao as DEFAULT_VALIDATION_MESSAGES, $ as DateFormat, a0 as DateValue, ak as FORBIDDEN_PROPERTY_TYPES, a9 as FeatureFlagsConfig, a8 as FlagOverride, al as ForbiddenPropertyType, a3 as Location, a4 as LocationGranularity, _ as NumberUnit, ag as ObjectAttribute, ai as ObjectRecord, a1 as Phone, aj as PropertyType, a5 as RELATION_TARGET_ANY, aa as RESERVED_ATTRIBUTE_NAMES, a6 as RelationAttribute, ac as ReservedAttributeName, ab as SYSTEM_FIELD_NAMES, af as SharingMode, ad as SystemFieldName, ae as Timestamps, an as ValidationMessages, b8 as ValidationResult, aI as attributeConfigSchemas, at as checkboxConfigSchema, bh as computeRecordStatus, b5 as createAttributeValidator, aP as createCheckboxValidator, aS as createCurrencyValidator, aQ as createDateValidator, bc as createDraftValidator, aX as createFileValidator, b6 as createFormAttributeValidator, b1 as createFormulaValidator, aW as createLocationValidator, a_ as createMultiRelationValidator, aV as createMultiselectValidator, aO as createNumberValidator, b7 as createObjectValidator, aR as createPhoneValidator, b0 as createRatingValidator, a$ as createRelationValidator, b4 as createRichtextValidator, b2 as createRollupValidator, aU as createSelectValidator, aZ as createSingleRelationValidator, aT as createStatusValidator, b3 as createTextAreaValidator, aN as createTextValidator, aY as createUserValidator, aw as currencyConfigSchema, au as dateConfigSchema, aH as documentConfigSchema, aB as fileConfigSchema, am as formatZodErrors, aF as formulaConfigSchema, aJ as getAttributeConfigSchema, bf as getMissingRequiredAttributes, bg as isRecordComplete, a7 as isUniversalRelation, ay as locationConfigSchema, aA as multiselectConfigSchema, as as numberConfigSchema, aL as parseAttributeConfig, av as phoneConfigSchema, aE as ratingConfigSchema, aD as relationConfigSchema, ar as richtextConfigSchema, aG as rollupConfigSchema, aM as safeParseAttributeConfig, az as selectConfigSchema, ax as statusConfigSchema, ap as textConfigSchema, aq as textareaConfigSchema, aC as userConfigSchema, b9 as validateAttribute, aK as validateAttributeConfig, bd as validateDraft, be as validateDraftOrThrow, ba as validateObject, bb as validateObjectOrThrow } from './validators-BIAmz0CD.mjs';
5
5
  import { z } from 'zod';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField, G as Group, T as TableTab, D as DetailViewLayout, b as InverseTableTab, c as DetailViewDefinition, d as InstanceStatus, e as Tab, f as FilterState, g as SortRule, h as DirectTableTab, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, C as ConditionGroup, k as ConditionRule, l as WorkflowNode, m as WorkflowDefinition, n as FlowRow, V as ViewType, o as ViewDefinition, p as DocumentTemplate } from './runtime-BRkoIwsC.js';
2
- export { aa as AIBatchQuestion, ab as AIBatchQuestionAnswer, a9 as AIBatchQuestionOption, a4 as AIChatMessage, a3 as AIChatMessagePart, _ as AIChatMessagePartType, ag as AIConversation, fY as AIConversationsRepository, ah as AIMessage, af as AIMessageAttachment, U as AIMessageRole, al as AIProviderMetrics, a7 as AIQuestion, a8 as AIQuestionAnswer, a6 as AIQuestionOption, a5 as AIQuestionType, X as AIThinkingLevel, ad as AITodoItem, ae as AITodoList, ac as AITodoStatus, Z as AIToolCall, ai as AIToolCallRecord, Y as AIToolCallStatus, ak as AIUsageMetrics, fZ as AIUsageMetricsRepository, aj as AIUserMemory, f_ as AIUserMemoryRepository, ck as ActivityTab, bH as AddAttribute, gm as AddAttributeInput, bg as AdvancedFilterState, c7 as AssignRoleInput, fM as AttributeChange, bG as AttributeMap, bC as AttributeSchema, f$ as AttributesRepository, ao as AuditAction, ap as AuditActorType, aq as AuditChange, at as AuditListOptions, ar as AuditLogEntry, g0 as AuditRepository, an as AuditResourceType, hC as AuditService, au as AuditServiceOptions, gi as BaseRepository, gh as BaseService, B as BoundingBox, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, ct as CalendarViewConfig, cx as CalendarViewDefinition, db as CanvasViewport, b2 as CheckboxFilterOperator, fd as ConditionExecutor, cQ as ConditionNode, d3 as ConditionOperator, cA as ConfigOverrides, am as CreateAIMessageInput, as as CreateAuditLogInput, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iI as CreateDBView, iM as CreateDBViewOverlay, iP as CreateDBWorkflow, iY as CreateDBWorkflowAccessGrant, iS as CreateDBWorkflowInstance, iV as CreateDBWorkflowInvitation, aN as CreateDocument, az as CreateDocumentGenerationTemplate, aR as CreateDocumentSlot, aP as CreateDocumentTemplate, a_ as CreateFile, dz as CreateGrantInput, hg as CreateGrantResult, ds as CreateInvitationInput, dt as CreateInvitationResult, iB as CreateObjectRecord, c6 as CreatePermissionInput, aT as CreateProcessingJob, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, c4 as CreateRoleInput, x as CreateSignatureInput, ce as CreateUserProfile, h$ as CreateViewInput, ht as CreateWorkflowInput, b9 as CurrencyFilterValue, bL as CustomAttributeValue, cj as CustomTab, ix as DBAttribute, it as DBObject, iH as DBView, iL as DBViewOverlay, iO as DBWorkflow, iX as DBWorkflowAccessGrant, iR as DBWorkflowInstance, iU as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, dU as DEFAULT_THEME, e1 as DatabaseAdapter, b3 as DateFilterOperator, cr as DetailViewConfig, aG as Document, aD as DocumentAutoProcessing, Q as DocumentData, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, ay as DocumentGenerationTemplate, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, aV as DocumentListOptions, cR as DocumentNode, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, aI as DocumentSlot, aC as DocumentSlotDefinition, g4 as DocumentSlotsRepository, aH as DocumentStatus, aW as DocumentTemplateListOptions, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, cn as DocumentsTab, c1 as EffectivePermissions, ff as EndExecutor, cS as EndNode, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, bd as ExtendedFilterRule, bV as ExtractAttributes, bX as ExtractObjectRecord, bY as ExtractObjectRecordWithCustom, bP as ExtractRecord, bR as ExtractRecordInput, bS as ExtractRecordInputStrict, bQ as ExtractRecordStrict, bT as ExtractRecordUpdate, bU as ExtractRecordUpdateStrict, aF as ExtractionField, aE as ExtractionMapping, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, aZ as File, i4 as FileContent, iG as FileListOptions, hW as FileService, hV as FileServiceOptions, aY as FileVisibility, g7 as FilesRepository, be as FilterCombinator, bf as FilterGroup, b7 as FilterOperator, bc as FilterRule, bb as FilterValue, bs as FlowDefinition, bp as FlowPage, bq as FlowRelation, bo as FlowRowField, bn as FlowSlot, br as FlowStatus, cm as FlowsTab, dL as FormContextResponse, fg as FormExecutor, dM as FormFieldContext, cT as FormFieldRef, dN as FormFieldRow, cU as FormNode, dO as FormNodeInfo, ci as FormTab, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, cv as GalleryViewConfig, cz as GalleryViewDefinition, dG as GeneratedDocument, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iE as GlobalSearchOptions, iF as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, M as IdentityVerificationAdapter, bI as InferRecord, bD as InferRecordFromSchema, bJ as InferRecordInput, bK as InferRecordUpdate, bE as InferRecordWithRequirements, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, du as InvitationStatus, cg as InviteUserInput, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, cs as ListViewConfig, co as ListViewLayout, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, b5 as MultiselectFilterOperator, bl as NO_VALUE_OPERATORS, bk as NoValueOperator, f7 as NodeExecutor, dc as NodePosition, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, cl as NotesTab, b1 as NumberFilterOperator, bj as OPERATORS_BY_TYPE, c2 as ObjectPermissions, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, q as OcrAdapter, r as OcrInput, s as OcrOptions, u as OcrPage, t as OcrResult, v as OcrTextBlock, i_ as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, aw as PdfTemplateField, dj as PendingAction, aB as PendingDocumentRequest, b$ as Permission, bZ as PermissionScope, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, ba as PhoneFilterValue, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, aK as ProcessingJob, aM as ProcessingJobStatus, aL as ProcessingJobType, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, bi as QueryState, dP as ReadOnlyReason, a2 as ReasoningPartData, hQ as RecordDocumentsResult, bN as RecordMetadata, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, b6 as RelationFilterOperator, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, b8 as RelativeDateValue, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, b_ as Role, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, b4 as SelectFilterOperator, en as ShortcutOperator, w as SignatureAdapter, z as SignaturePosition, E as SignatureRequestResult, K as SignatureStatus, H as SignatureStatusResult, i7 as SignedUrlOptions, y as SignerRequest, J as SignerStatus, gH as SingleRelationValue, aJ as SlotStatus, bh as SortDirection, fh as StartExecutor, cV as StartNode, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, aX as StorageProvider, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, bO as SystemFields, c3 as SystemPermissions, ch as TabType, ax as TemplateSource, e_ as TenantContext, eC as TenantContextError, b0 as TextFilterOperator, $ as TextPartData, dR as ThemeColors, dS as ThemeLogo, dT as ThemeTypography, a1 as ThinkingPartData, cu as TimelineViewConfig, cy as TimelineViewDefinition, he as TokenRevokedError, a0 as ToolPartData, fK as TraversalOptions, fL as TraversalResult, bF as TypedAttribute, bW as TypedObjectRecord, iz as UpdateDBAttribute, iv as UpdateDBObject, iJ as UpdateDBView, iN as UpdateDBViewOverlay, iQ as UpdateDBWorkflow, iZ as UpdateDBWorkflowAccessGrant, iT as UpdateDBWorkflowInstance, iW as UpdateDBWorkflowInvitation, aO as UpdateDocument, aA as UpdateDocumentGenerationTemplate, aS as UpdateDocumentSlot, aQ as UpdateDocumentTemplate, a$ as UpdateFile, gn as UpdateObjectInput, aU as UpdateProcessingJob, c5 as UpdateRoleInput, cf as UpdateUserProfile, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iK as UpsertDBView, cd as UserProfile, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, cb as UserRole, c0 as UserRoleAssignment, hz as UserService, cc as UserStatus, hy as UserValidationError, hx as UserValidationResult, av as VariableMapping, R as VerificationCheck, P as VerificationResult, N as VerifyInput, cw as ViewConfig, cp as ViewLayout, cB as ViewOverlay, dZ as ViewOverlaysRepository, i3 as ViewService, j0 as ViewSyncLogger, j1 as ViewSyncOptions, i$ as ViewSyncResult, cq as ViewTab, gc as ViewsRepository, bM as WithCustomAttributes, dA as WorkflowAccessGrant, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, dQ as WorkflowAccessMode, e5 as WorkflowAccessPayload, dk as WorkflowError, dH as WorkflowExecutionContext, dl as WorkflowInstance, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, dv as WorkflowInvitation, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, dd as WorkflowLayout, cW as WorkflowNodeType, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, de as WorkflowSlot, df as WorkflowStatus, dm as WorkflowTransition, gg as WorkflowsRepository, eM as addSchemaToContext, d4 as and, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, dB as canAccessNode, dn as canResumeInstance, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, dI as createEmptyContext, fT as createMockAdapter, eu as createQueryBuilder, dp as createStartTransition, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, d5 as eq, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, dV as generateCssVariables, eU as getContext, dJ as getContextValue, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, cX as getNodeOutputs, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j6 as getViewSeedPreview, j7 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, d6 as inValues, cM as isActivityTab, cY as isAdvancedFormNode, cE as isCalendarView, d7 as isConditionGroup, cZ as isConditionNode, d8 as isConditionRule, cL as isCustomTab, cC as isDetailView, cJ as isDirectTableTab, c_ as isDocumentNode, cP as isDocumentsTab, c$ as isEndNode, eH as isFeatureEnabled, bt as isFlowDefinition, bu as isFlowPublished, cO as isFlowsTab, d0 as isFormNode, cH as isFormTab, cG as isGalleryView, dC as isGrantExpired, dD as isGrantRevoked, dE as isGrantValid, dq as isInstanceTerminal, dr as isInstanceWaiting, cK as isInverseTableTab, dw as isInvitationAccepted, dx as isInvitationExpired, dy as isInvitationValid, il as isLabelExpression, cD as isListView, bm as isNoValueOperator, cN as isNotesTab, d1 as isSimpleFormNode, d2 as isStartNode, bv as isSystemFlow, dg as isSystemWorkflow, cI as isTableTab, cF as isTimelineView, dF as isTokenRevoked, dh as isWorkflowDefinition, di as isWorkflowPublished, dW as mergeWithDefaults, d9 as neq, fX as notesPolicy, da as or, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, dX as registry, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j2 as seedRegistryViews, dK as setContextValue, fb as success, ii as syncAll, ic as syncNativeObjects, j3 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j5 as verifyNativeViewsSync, j4 as verifyRegistryViewsSeeded, dY as viewRegistry, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-BRkoIwsC.js';
1
+ import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField, G as Group, T as TableTab, D as DetailViewLayout, b as InverseTableTab, c as DetailViewDefinition, d as InstanceStatus, e as Tab, f as FilterState, g as SortRule, h as DirectTableTab, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, C as ConditionGroup, k as ConditionRule, l as WorkflowNode, m as WorkflowDefinition, n as FlowRow, V as ViewType, o as ViewDefinition, p as DocumentTemplate } from './runtime-Cx6QJ4QV.js';
2
+ export { aa as AIBatchQuestion, ab as AIBatchQuestionAnswer, a9 as AIBatchQuestionOption, a4 as AIChatMessage, a3 as AIChatMessagePart, _ as AIChatMessagePartType, ag as AIConversation, fY as AIConversationsRepository, ah as AIMessage, af as AIMessageAttachment, U as AIMessageRole, al as AIProviderMetrics, a7 as AIQuestion, a8 as AIQuestionAnswer, a6 as AIQuestionOption, a5 as AIQuestionType, X as AIThinkingLevel, ad as AITodoItem, ae as AITodoList, ac as AITodoStatus, Z as AIToolCall, ai as AIToolCallRecord, Y as AIToolCallStatus, ak as AIUsageMetrics, fZ as AIUsageMetricsRepository, aj as AIUserMemory, f_ as AIUserMemoryRepository, ck as ActivityTab, bH as AddAttribute, gm as AddAttributeInput, bg as AdvancedFilterState, c7 as AssignRoleInput, fM as AttributeChange, bG as AttributeMap, bC as AttributeSchema, f$ as AttributesRepository, ao as AuditAction, ap as AuditActorType, aq as AuditChange, at as AuditListOptions, ar as AuditLogEntry, g0 as AuditRepository, an as AuditResourceType, hC as AuditService, au as AuditServiceOptions, gi as BaseRepository, gh as BaseService, B as BoundingBox, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, ct as CalendarViewConfig, cx as CalendarViewDefinition, db as CanvasViewport, b2 as CheckboxFilterOperator, fd as ConditionExecutor, cQ as ConditionNode, d3 as ConditionOperator, cA as ConfigOverrides, am as CreateAIMessageInput, as as CreateAuditLogInput, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iK as CreateDBView, iO as CreateDBViewOverlay, iR as CreateDBWorkflow, i_ as CreateDBWorkflowAccessGrant, iU as CreateDBWorkflowInstance, iX as CreateDBWorkflowInvitation, aN as CreateDocument, az as CreateDocumentGenerationTemplate, aR as CreateDocumentSlot, aP as CreateDocumentTemplate, a_ as CreateFile, dz as CreateGrantInput, hg as CreateGrantResult, ds as CreateInvitationInput, dt as CreateInvitationResult, iB as CreateObjectRecord, c6 as CreatePermissionInput, aT as CreateProcessingJob, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, c4 as CreateRoleInput, x as CreateSignatureInput, ce as CreateUserProfile, h$ as CreateViewInput, ht as CreateWorkflowInput, b9 as CurrencyFilterValue, bL as CustomAttributeValue, cj as CustomTab, ix as DBAttribute, it as DBObject, iJ as DBView, iN as DBViewOverlay, iQ as DBWorkflow, iZ as DBWorkflowAccessGrant, iT as DBWorkflowInstance, iW as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, dU as DEFAULT_THEME, e1 as DatabaseAdapter, b3 as DateFilterOperator, cr as DetailViewConfig, aG as Document, aD as DocumentAutoProcessing, Q as DocumentData, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, ay as DocumentGenerationTemplate, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, aV as DocumentListOptions, cR as DocumentNode, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, aI as DocumentSlot, aC as DocumentSlotDefinition, g4 as DocumentSlotsRepository, aH as DocumentStatus, aW as DocumentTemplateListOptions, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, cn as DocumentsTab, c1 as EffectivePermissions, ff as EndExecutor, cS as EndNode, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, bd as ExtendedFilterRule, bV as ExtractAttributes, bX as ExtractObjectRecord, bY as ExtractObjectRecordWithCustom, bP as ExtractRecord, bR as ExtractRecordInput, bS as ExtractRecordInputStrict, bQ as ExtractRecordStrict, bT as ExtractRecordUpdate, bU as ExtractRecordUpdateStrict, aF as ExtractionField, aE as ExtractionMapping, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, aZ as File, i4 as FileContent, iI as FileListOptions, hW as FileService, hV as FileServiceOptions, aY as FileVisibility, g7 as FilesRepository, be as FilterCombinator, bf as FilterGroup, b7 as FilterOperator, bc as FilterRule, bb as FilterValue, bs as FlowDefinition, bp as FlowPage, bq as FlowRelation, bo as FlowRowField, bn as FlowSlot, br as FlowStatus, cm as FlowsTab, dL as FormContextResponse, fg as FormExecutor, dM as FormFieldContext, cT as FormFieldRef, dN as FormFieldRow, cU as FormNode, dO as FormNodeInfo, ci as FormTab, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, cv as GalleryViewConfig, cz as GalleryViewDefinition, dG as GeneratedDocument, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iF as GlobalSearchGroupedOptions, iH as GlobalSearchGroupedResult, iE as GlobalSearchOptions, iG as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, M as IdentityVerificationAdapter, bI as InferRecord, bD as InferRecordFromSchema, bJ as InferRecordInput, bK as InferRecordUpdate, bE as InferRecordWithRequirements, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, du as InvitationStatus, cg as InviteUserInput, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, cs as ListViewConfig, co as ListViewLayout, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, b5 as MultiselectFilterOperator, bl as NO_VALUE_OPERATORS, bk as NoValueOperator, f7 as NodeExecutor, dc as NodePosition, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, cl as NotesTab, b1 as NumberFilterOperator, bj as OPERATORS_BY_TYPE, c2 as ObjectPermissions, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, q as OcrAdapter, r as OcrInput, s as OcrOptions, u as OcrPage, t as OcrResult, v as OcrTextBlock, j0 as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, aw as PdfTemplateField, dj as PendingAction, aB as PendingDocumentRequest, b$ as Permission, bZ as PermissionScope, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, ba as PhoneFilterValue, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, aK as ProcessingJob, aM as ProcessingJobStatus, aL as ProcessingJobType, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, bi as QueryState, dP as ReadOnlyReason, a2 as ReasoningPartData, hQ as RecordDocumentsResult, bN as RecordMetadata, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, b6 as RelationFilterOperator, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, b8 as RelativeDateValue, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, b_ as Role, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, b4 as SelectFilterOperator, en as ShortcutOperator, w as SignatureAdapter, z as SignaturePosition, E as SignatureRequestResult, K as SignatureStatus, H as SignatureStatusResult, i7 as SignedUrlOptions, y as SignerRequest, J as SignerStatus, gH as SingleRelationValue, aJ as SlotStatus, bh as SortDirection, fh as StartExecutor, cV as StartNode, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, aX as StorageProvider, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, bO as SystemFields, c3 as SystemPermissions, ch as TabType, ax as TemplateSource, e_ as TenantContext, eC as TenantContextError, b0 as TextFilterOperator, $ as TextPartData, dR as ThemeColors, dS as ThemeLogo, dT as ThemeTypography, a1 as ThinkingPartData, cu as TimelineViewConfig, cy as TimelineViewDefinition, he as TokenRevokedError, a0 as ToolPartData, fK as TraversalOptions, fL as TraversalResult, bF as TypedAttribute, bW as TypedObjectRecord, iz as UpdateDBAttribute, iv as UpdateDBObject, iL as UpdateDBView, iP as UpdateDBViewOverlay, iS as UpdateDBWorkflow, i$ as UpdateDBWorkflowAccessGrant, iV as UpdateDBWorkflowInstance, iY as UpdateDBWorkflowInvitation, aO as UpdateDocument, aA as UpdateDocumentGenerationTemplate, aS as UpdateDocumentSlot, aQ as UpdateDocumentTemplate, a$ as UpdateFile, gn as UpdateObjectInput, aU as UpdateProcessingJob, c5 as UpdateRoleInput, cf as UpdateUserProfile, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iM as UpsertDBView, cd as UserProfile, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, cb as UserRole, c0 as UserRoleAssignment, hz as UserService, cc as UserStatus, hy as UserValidationError, hx as UserValidationResult, av as VariableMapping, R as VerificationCheck, P as VerificationResult, N as VerifyInput, cw as ViewConfig, cp as ViewLayout, cB as ViewOverlay, dZ as ViewOverlaysRepository, i3 as ViewService, j2 as ViewSyncLogger, j3 as ViewSyncOptions, j1 as ViewSyncResult, cq as ViewTab, gc as ViewsRepository, bM as WithCustomAttributes, dA as WorkflowAccessGrant, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, dQ as WorkflowAccessMode, e5 as WorkflowAccessPayload, dk as WorkflowError, dH as WorkflowExecutionContext, dl as WorkflowInstance, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, dv as WorkflowInvitation, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, dd as WorkflowLayout, cW as WorkflowNodeType, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, de as WorkflowSlot, df as WorkflowStatus, dm as WorkflowTransition, gg as WorkflowsRepository, eM as addSchemaToContext, d4 as and, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, dB as canAccessNode, dn as canResumeInstance, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, dI as createEmptyContext, fT as createMockAdapter, eu as createQueryBuilder, dp as createStartTransition, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, d5 as eq, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, dV as generateCssVariables, eU as getContext, dJ as getContextValue, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, cX as getNodeOutputs, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j8 as getViewSeedPreview, j9 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, d6 as inValues, cM as isActivityTab, cY as isAdvancedFormNode, cE as isCalendarView, d7 as isConditionGroup, cZ as isConditionNode, d8 as isConditionRule, cL as isCustomTab, cC as isDetailView, cJ as isDirectTableTab, c_ as isDocumentNode, cP as isDocumentsTab, c$ as isEndNode, eH as isFeatureEnabled, bt as isFlowDefinition, bu as isFlowPublished, cO as isFlowsTab, d0 as isFormNode, cH as isFormTab, cG as isGalleryView, dC as isGrantExpired, dD as isGrantRevoked, dE as isGrantValid, dq as isInstanceTerminal, dr as isInstanceWaiting, cK as isInverseTableTab, dw as isInvitationAccepted, dx as isInvitationExpired, dy as isInvitationValid, il as isLabelExpression, cD as isListView, bm as isNoValueOperator, cN as isNotesTab, d1 as isSimpleFormNode, d2 as isStartNode, bv as isSystemFlow, dg as isSystemWorkflow, cI as isTableTab, cF as isTimelineView, dF as isTokenRevoked, dh as isWorkflowDefinition, di as isWorkflowPublished, dW as mergeWithDefaults, d9 as neq, fX as notesPolicy, da as or, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, dX as registry, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j4 as seedRegistryViews, dK as setContextValue, fb as success, ii as syncAll, ic as syncNativeObjects, j5 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j7 as verifyNativeViewsSync, j6 as verifyRegistryViewsSeeded, dY as viewRegistry, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-Cx6QJ4QV.js';
3
3
  import { D as DateAttribute, U as UserAttribute, a as DocumentAttribute, A as Attribute, P as PropertyDefinition, T as TextPropertyDefinition, b as TextareaPropertyDefinition, N as NumberPropertyDefinition, C as CheckboxPropertyDefinition, c as DatePropertyDefinition, d as PhonePropertyDefinition, e as CurrencyPropertyDefinition, S as StatusPropertyDefinition, O as Option, f as StatusGroup, g as SelectPropertyDefinition, M as MultiselectPropertyDefinition, R as RatingPropertyDefinition, L as LocationPropertyDefinition, h as PropertySchema, F as FeatureGate, i as TextAttribute, j as TextAreaAttribute, k as RichtextAttribute, l as RichtextFeature, m as NumberAttribute, n as CheckboxAttribute, o as PhoneAttribute, p as CurrencyAttribute, q as StatusAttribute, r as SelectAttribute, s as MultiselectAttribute, t as LocationAttribute, u as FileAttribute, v as SingleRelationAttribute, w as MultiRelationAttribute, x as RelationTarget, y as RatingAttribute, z as FormulaAttribute, B as FormulaReturnType, E as RollupAttribute, G as RollupFunction, H as AttributeType, I as ObjectDefinition, J as FlagValueType, K as FeatureFlagDefinition, Q as FlagLevel, V as FeatureFlagsRepository, W as StaticFlagDefault, X as ResolvedFlag } from './validators-BPIB7Miq.js';
4
4
  export { Y as AttributeGroup, Z as BaseAttribute, ah as CompletionStatus, a2 as Currency, ao as DEFAULT_VALIDATION_MESSAGES, $ as DateFormat, a0 as DateValue, ak as FORBIDDEN_PROPERTY_TYPES, a9 as FeatureFlagsConfig, a8 as FlagOverride, al as ForbiddenPropertyType, a3 as Location, a4 as LocationGranularity, _ as NumberUnit, ag as ObjectAttribute, ai as ObjectRecord, a1 as Phone, aj as PropertyType, a5 as RELATION_TARGET_ANY, aa as RESERVED_ATTRIBUTE_NAMES, a6 as RelationAttribute, ac as ReservedAttributeName, ab as SYSTEM_FIELD_NAMES, af as SharingMode, ad as SystemFieldName, ae as Timestamps, an as ValidationMessages, b8 as ValidationResult, aI as attributeConfigSchemas, at as checkboxConfigSchema, bh as computeRecordStatus, b5 as createAttributeValidator, aP as createCheckboxValidator, aS as createCurrencyValidator, aQ as createDateValidator, bc as createDraftValidator, aX as createFileValidator, b6 as createFormAttributeValidator, b1 as createFormulaValidator, aW as createLocationValidator, a_ as createMultiRelationValidator, aV as createMultiselectValidator, aO as createNumberValidator, b7 as createObjectValidator, aR as createPhoneValidator, b0 as createRatingValidator, a$ as createRelationValidator, b4 as createRichtextValidator, b2 as createRollupValidator, aU as createSelectValidator, aZ as createSingleRelationValidator, aT as createStatusValidator, b3 as createTextAreaValidator, aN as createTextValidator, aY as createUserValidator, aw as currencyConfigSchema, au as dateConfigSchema, aH as documentConfigSchema, aB as fileConfigSchema, am as formatZodErrors, aF as formulaConfigSchema, aJ as getAttributeConfigSchema, bf as getMissingRequiredAttributes, bg as isRecordComplete, a7 as isUniversalRelation, ay as locationConfigSchema, aA as multiselectConfigSchema, as as numberConfigSchema, aL as parseAttributeConfig, av as phoneConfigSchema, aE as ratingConfigSchema, aD as relationConfigSchema, ar as richtextConfigSchema, aG as rollupConfigSchema, aM as safeParseAttributeConfig, az as selectConfigSchema, ax as statusConfigSchema, ap as textConfigSchema, aq as textareaConfigSchema, aC as userConfigSchema, b9 as validateAttribute, aK as validateAttributeConfig, bd as validateDraft, be as validateDraftOrThrow, ba as validateObject, bb as validateObjectOrThrow } from './validators-BPIB7Miq.js';
5
5
  import { z } from 'zod';
package/dist/index.js CHANGED
@@ -343,7 +343,7 @@
343
343
 
344
344
 
345
345
 
346
- var _chunkDCTLP3ZDjs = require('./chunk-DCTLP3ZD.js');
346
+ var _chunkKN6UXXVUjs = require('./chunk-KN6UXXVU.js');
347
347
 
348
348
 
349
349
 
@@ -1074,13 +1074,13 @@ function createFlagService(options) {
1074
1074
  }
1075
1075
 
1076
1076
  // src/native/notes.ts
1077
- var NOTES = _chunkDCTLP3ZDjs.object.call(void 0, { name: "notes", label: "Note" }).pluralLabel("Notes").icon("file-text").description("Notes that can be linked to any record or used globally").system().labelExpression("{{ title }}").attribute(_chunkDCTLP3ZDjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkDCTLP3ZDjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
1078
- _chunkDCTLP3ZDjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
1077
+ var NOTES = _chunkKN6UXXVUjs.object.call(void 0, { name: "notes", label: "Note" }).pluralLabel("Notes").icon("file-text").description("Notes that can be linked to any record or used globally").system().labelExpression("{{ title }}").attribute(_chunkKN6UXXVUjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkKN6UXXVUjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
1078
+ _chunkKN6UXXVUjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
1079
1079
  { id: "private", label: "Private", value: "private", icon: "lock" },
1080
1080
  { id: "shared", label: "Shared", value: "shared", icon: "users" }
1081
1081
  ]).defaultValue("private").required()
1082
- ).attribute(_chunkDCTLP3ZDjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
1083
- _chunkDCTLP3ZDjs.registry.register(NOTES);
1082
+ ).attribute(_chunkKN6UXXVUjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
1083
+ _chunkKN6UXXVUjs.registry.register(NOTES);
1084
1084
 
1085
1085
  // src/views/registry.ts
1086
1086
  var ViewRegistry = class {
@@ -1964,4 +1964,4 @@ function isViewCustomized(view2, object2) {
1964
1964
 
1965
1965
 
1966
1966
 
1967
- exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkDCTLP3ZDjs.ActivityTabConfig; exports.AttributeInUseError = _chunkDCTLP3ZDjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkDCTLP3ZDjs.AttributeNotFoundError; exports.AuditService = _chunkDCTLP3ZDjs.AuditService; exports.AuthMethodSchema = _chunkDCTLP3ZDjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkDCTLP3ZDjs.BEHAVIOR_PROPERTIES; exports.BasePropertyBuilder = _chunkDCTLP3ZDjs.BasePropertyBuilder; exports.BaseRepository = _chunkDCTLP3ZDjs.BaseRepository; exports.BaseService = _chunkDCTLP3ZDjs.BaseService; exports.CheckboxPropertyBuilder = _chunkDCTLP3ZDjs.CheckboxPropertyBuilder; exports.ConcurrentModificationError = _chunkDCTLP3ZDjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkDCTLP3ZDjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkDCTLP3ZDjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkDCTLP3ZDjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkDCTLP3ZDjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkDCTLP3ZDjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkDCTLP3ZDjs.CreateShareInputSchema; exports.CurrencyPropertyBuilder = _chunkDCTLP3ZDjs.CurrencyPropertyBuilder; exports.CustomTabConfig = _chunkDCTLP3ZDjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkDCTLP3ZDjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk36UBIXJNjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunk36UBIXJNjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkDCTLP3ZDjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkU4AB53AMjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkDCTLP3ZDjs.DRIVING_LICENSE; exports.DatePropertyBuilder = _chunkDCTLP3ZDjs.DatePropertyBuilder; exports.DetailViewBuilder = _chunkDCTLP3ZDjs.DetailViewBuilder; exports.DirectTableTabConfig = _chunkDCTLP3ZDjs.DirectTableTabConfig; exports.DocumentExecutor = _chunkDCTLP3ZDjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkDCTLP3ZDjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkDCTLP3ZDjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkDCTLP3ZDjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkDCTLP3ZDjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkDCTLP3ZDjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkDCTLP3ZDjs.DocumentProcessingService; exports.DocumentRenderError = _chunkDCTLP3ZDjs.DocumentRenderError; exports.DocumentRendererService = _chunkDCTLP3ZDjs.DocumentRendererService; exports.DocumentService = _chunkDCTLP3ZDjs.DocumentService; exports.DocumentTemplateService = _chunkDCTLP3ZDjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkDCTLP3ZDjs.DocumentsTabConfig; exports.DuplicateError = _chunkDCTLP3ZDjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkDCTLP3ZDjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkDCTLP3ZDjs.EndExecutor; exports.EndNodeSchema = _chunkDCTLP3ZDjs.EndNodeSchema; exports.ExecutorRegistry = _chunkDCTLP3ZDjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkDCTLP3ZDjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkDCTLP3ZDjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkDCTLP3ZDjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkDCTLP3ZDjs.FileNotFoundError; exports.FileService = _chunkDCTLP3ZDjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkDCTLP3ZDjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkDCTLP3ZDjs.FlowRowSchema; exports.FlowsTabConfig = _chunkDCTLP3ZDjs.FlowsTabConfig; exports.ForbiddenError = _chunkDCTLP3ZDjs.ForbiddenError; exports.FormExecutor = _chunkDCTLP3ZDjs.FormExecutor; exports.FormFieldRefSchema = _chunkDCTLP3ZDjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkDCTLP3ZDjs.FormNodeSchema; exports.FormulaResolverService = _chunkDCTLP3ZDjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkDCTLP3ZDjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkDCTLP3ZDjs.GeocodingService; exports.GlobalSearchService = _chunkDCTLP3ZDjs.GlobalSearchService; exports.GrantExpiredError = _chunkDCTLP3ZDjs.GrantExpiredError; exports.GrantNotFoundError = _chunkDCTLP3ZDjs.GrantNotFoundError; exports.GrantRevokedError = _chunkDCTLP3ZDjs.GrantRevokedError; exports.GroupBuilder = _chunkDCTLP3ZDjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkDCTLP3ZDjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkDCTLP3ZDjs.InvalidPathError; exports.InverseTableTabConfig = _chunkDCTLP3ZDjs.InverseTableTabConfig; exports.InvitationAlreadyAcceptedError = _chunkDCTLP3ZDjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkDCTLP3ZDjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkDCTLP3ZDjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkDCTLP3ZDjs.InvitationRevokedError; exports.ListViewBuilder = _chunkDCTLP3ZDjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkDCTLP3ZDjs.ListViewTabConfigBuilder; exports.LocationPropertyBuilder = _chunkDCTLP3ZDjs.LocationPropertyBuilder; exports.MaxDepthExceededError = _chunkDCTLP3ZDjs.MaxDepthExceededError; exports.MultiselectPropertyBuilder = _chunkDCTLP3ZDjs.MultiselectPropertyBuilder; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkDCTLP3ZDjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkDCTLP3ZDjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkDCTLP3ZDjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkDCTLP3ZDjs.NoopHookRegistry; exports.NotFoundError = _chunkDCTLP3ZDjs.NotFoundError; exports.NotSystemObjectError = _chunkDCTLP3ZDjs.NotSystemObjectError; exports.NotesTabConfig = _chunkDCTLP3ZDjs.NotesTabConfig; exports.NumberPropertyBuilder = _chunkDCTLP3ZDjs.NumberPropertyBuilder; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkDCTLP3ZDjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkDCTLP3ZDjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkDCTLP3ZDjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkDCTLP3ZDjs.ObjectSchemaService; exports.PASSPORT = _chunkDCTLP3ZDjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkDCTLP3ZDjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkDCTLP3ZDjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkDCTLP3ZDjs.PermissionService; exports.PhonePropertyBuilder = _chunkDCTLP3ZDjs.PhonePropertyBuilder; exports.PolicyRegistry = _chunkDCTLP3ZDjs.PolicyRegistry; exports.PolicyViolationError = _chunkDCTLP3ZDjs.PolicyViolationError; exports.PropertySchemaBuilder = _chunkDCTLP3ZDjs.PropertySchemaBuilder; exports.PropertyTypeBuilder = _chunkDCTLP3ZDjs.PropertyTypeBuilder; exports.ProtectedResourceError = _chunkDCTLP3ZDjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkDCTLP3ZDjs.ProtectedRoleError; exports.QueryBuilder = _chunkDCTLP3ZDjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkDCTLP3ZDjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkDCTLP3ZDjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkDCTLP3ZDjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkDCTLP3ZDjs.RESERVED_ATTRIBUTE_NAMES; exports.RatingPropertyBuilder = _chunkDCTLP3ZDjs.RatingPropertyBuilder; exports.RecordNotFoundError = _chunkDCTLP3ZDjs.RecordNotFoundError; exports.RecordQueryService = _chunkDCTLP3ZDjs.RecordQueryService; exports.RecordReferencedError = _chunkDCTLP3ZDjs.RecordReferencedError; exports.RecordResolverService = _chunkDCTLP3ZDjs.RecordResolverService; exports.RecordService = _chunkDCTLP3ZDjs.RecordService; exports.RelationPropertiesService = _chunkDCTLP3ZDjs.RelationPropertiesService; exports.RelationService = _chunkDCTLP3ZDjs.RelationService; exports.RoleNotFoundError = _chunkDCTLP3ZDjs.RoleNotFoundError; exports.RollupScheduler = _chunkDCTLP3ZDjs.RollupScheduler; exports.RollupService = _chunkDCTLP3ZDjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkDCTLP3ZDjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkDCTLP3ZDjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkDCTLP3ZDjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkDCTLP3ZDjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkDCTLP3ZDjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkDCTLP3ZDjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkDCTLP3ZDjs.SchemaContextAwareRepository; exports.SchemaError = _chunkDCTLP3ZDjs.SchemaError; exports.SchemaErrorCode = _chunkDCTLP3ZDjs.SchemaErrorCode; exports.SelectPropertyBuilder = _chunkDCTLP3ZDjs.SelectPropertyBuilder; exports.ShareStatusSchema = _chunkDCTLP3ZDjs.ShareStatusSchema; exports.SlotModeSchema = _chunkDCTLP3ZDjs.SlotModeSchema; exports.StartExecutor = _chunkDCTLP3ZDjs.StartExecutor; exports.StartNodeSchema = _chunkDCTLP3ZDjs.StartNodeSchema; exports.StatusPropertyBuilder = _chunkDCTLP3ZDjs.StatusPropertyBuilder; exports.StorageDownloadNotSupportedError = _chunkDCTLP3ZDjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkDCTLP3ZDjs.SyncError; exports.TabBuilder = _chunkDCTLP3ZDjs.TabBuilder; exports.TenantContextError = _chunkDCTLP3ZDjs.TenantContextError; exports.TextPropertyBuilder = _chunkDCTLP3ZDjs.TextPropertyBuilder; exports.TextareaPropertyBuilder = _chunkDCTLP3ZDjs.TextareaPropertyBuilder; exports.ThemeColorsSchema = _chunkDCTLP3ZDjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkDCTLP3ZDjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkDCTLP3ZDjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunkDCTLP3ZDjs.UserProfileNotFoundError; exports.UserProfileService = _chunkDCTLP3ZDjs.UserProfileService; exports.UserService = _chunkDCTLP3ZDjs.UserService; exports.ValidationError = _chunkDCTLP3ZDjs.ValidationError; exports.ViewBuilder = _chunkDCTLP3ZDjs.ViewBuilder; exports.ViewService = _chunkDCTLP3ZDjs.ViewService; exports.ViewportSchema = _chunkDCTLP3ZDjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkDCTLP3ZDjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkDCTLP3ZDjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkDCTLP3ZDjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkDCTLP3ZDjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkDCTLP3ZDjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkDCTLP3ZDjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkDCTLP3ZDjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkDCTLP3ZDjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkDCTLP3ZDjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkDCTLP3ZDjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkDCTLP3ZDjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkDCTLP3ZDjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkDCTLP3ZDjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkDCTLP3ZDjs.WorkflowRelationService; exports.WorkflowService = _chunkDCTLP3ZDjs.WorkflowService; exports.WorkflowShareSchema = _chunkDCTLP3ZDjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkDCTLP3ZDjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkDCTLP3ZDjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkDCTLP3ZDjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkDCTLP3ZDjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkDCTLP3ZDjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunkDCTLP3ZDjs.addSchemaToContext; exports.and = _chunkDCTLP3ZDjs.and; exports.applyDefaultValues = _chunkDCTLP3ZDjs.applyDefaultValues; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunkU4AB53AMjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkDCTLP3ZDjs.buildAuditChanges; exports.buildPolicyContext = _chunkDCTLP3ZDjs.buildPolicyContext; exports.cacheKeys = _chunkDCTLP3ZDjs.cacheKeys; exports.cacheTtl = _chunkDCTLP3ZDjs.cacheTtl; exports.canAccessNode = _chunkDCTLP3ZDjs.canAccessNode; exports.canResumeInstance = _chunkDCTLP3ZDjs.canResumeInstance; exports.checkPermission = _chunkDCTLP3ZDjs.checkPermission; exports.checkRecordAccess = _chunkDCTLP3ZDjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkDCTLP3ZDjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkDCTLP3ZDjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkDCTLP3ZDjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkDCTLP3ZDjs.checkbox; exports.checkboxConfigSchema = _chunkU4AB53AMjs.checkboxConfigSchema; exports.complete = _chunkDCTLP3ZDjs.complete; exports.computeLabel = _chunkDCTLP3ZDjs.computeLabel; exports.computeLabelWithRelations = _chunkDCTLP3ZDjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkU4AB53AMjs.computeRecordStatus; exports.createAttributeValidator = _chunkU4AB53AMjs.createAttributeValidator; exports.createCheckboxValidator = _chunkU4AB53AMjs.createCheckboxValidator; exports.createContextForCreate = _chunkDCTLP3ZDjs.createContextForCreate; exports.createContextForDelete = _chunkDCTLP3ZDjs.createContextForDelete; exports.createContextForRestore = _chunkDCTLP3ZDjs.createContextForRestore; exports.createContextForUpdate = _chunkDCTLP3ZDjs.createContextForUpdate; exports.createCurrencyValidator = _chunkU4AB53AMjs.createCurrencyValidator; exports.createDateValidator = _chunkU4AB53AMjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkDCTLP3ZDjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkDCTLP3ZDjs.createDefaultState; exports.createDraftValidator = _chunkU4AB53AMjs.createDraftValidator; exports.createEmptyContext = _chunkDCTLP3ZDjs.createEmptyContext; exports.createFileValidator = _chunkU4AB53AMjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkU4AB53AMjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkU4AB53AMjs.createFormulaValidator; exports.createLocationValidator = _chunkU4AB53AMjs.createLocationValidator; exports.createMockAdapter = _chunkDCTLP3ZDjs.createMockAdapter; exports.createMultiRelationValidator = _chunkU4AB53AMjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkU4AB53AMjs.createMultiselectValidator; exports.createNumberValidator = _chunkU4AB53AMjs.createNumberValidator; exports.createObjectValidator = _chunkU4AB53AMjs.createObjectValidator; exports.createPhoneValidator = _chunkU4AB53AMjs.createPhoneValidator; exports.createQueryBuilder = _chunkDCTLP3ZDjs.createQueryBuilder; exports.createRatingValidator = _chunkU4AB53AMjs.createRatingValidator; exports.createRelationValidator = _chunkU4AB53AMjs.createRelationValidator; exports.createRichtextValidator = _chunkU4AB53AMjs.createRichtextValidator; exports.createRollupValidator = _chunkU4AB53AMjs.createRollupValidator; exports.createSelectValidator = _chunkU4AB53AMjs.createSelectValidator; exports.createSingleRelationValidator = _chunkU4AB53AMjs.createSingleRelationValidator; exports.createStartTransition = _chunkDCTLP3ZDjs.createStartTransition; exports.createStatusValidator = _chunkU4AB53AMjs.createStatusValidator; exports.createTextAreaValidator = _chunkU4AB53AMjs.createTextAreaValidator; exports.createTextValidator = _chunkU4AB53AMjs.createTextValidator; exports.createUserValidator = _chunkU4AB53AMjs.createUserValidator; exports.currency = _chunkDCTLP3ZDjs.currency; exports.currencyConfigSchema = _chunkU4AB53AMjs.currencyConfigSchema; exports.date = _chunkDCTLP3ZDjs.date; exports.dateConfigSchema = _chunkU4AB53AMjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkDCTLP3ZDjs.defaultPolicyRegistry; exports.defaultTtl = _chunkDCTLP3ZDjs.defaultTtl; exports.detailView = _chunkDCTLP3ZDjs.detailView; exports.document = _chunkDCTLP3ZDjs.document; exports.documentConfigSchema = _chunkU4AB53AMjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkDCTLP3ZDjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkDCTLP3ZDjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkDCTLP3ZDjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkDCTLP3ZDjs.enrichWithFormulas; exports.eq = _chunkDCTLP3ZDjs.eq; exports.error = _chunkDCTLP3ZDjs.error; exports.evaluate = _chunkDCTLP3ZDjs.evaluate; exports.evaluateCondition = _chunkDCTLP3ZDjs.evaluateCondition; exports.evaluateFormula = _chunkDCTLP3ZDjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkDCTLP3ZDjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkDCTLP3ZDjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkDCTLP3ZDjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkDCTLP3ZDjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkDCTLP3ZDjs.evaluateWithTrace; exports.extractAttributeNames = _chunkDCTLP3ZDjs.extractAttributeNames; exports.extractFormulaVariables = _chunkDCTLP3ZDjs.extractFormulaVariables; exports.extractRelationIds = _chunkDCTLP3ZDjs.extractRelationIds; exports.extractRelationNames = _chunkDCTLP3ZDjs.extractRelationNames; exports.extractRelationReferences = _chunkDCTLP3ZDjs.extractRelationReferences; exports.file = _chunkDCTLP3ZDjs.file; exports.fileConfigSchema = _chunkU4AB53AMjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkDCTLP3ZDjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkDCTLP3ZDjs.formatAttributeValue; exports.formatFormulaResult = _chunkDCTLP3ZDjs.formatFormulaResult; exports.formatRecord = _chunkDCTLP3ZDjs.formatRecord; exports.formatRecords = _chunkDCTLP3ZDjs.formatRecords; exports.formatZodErrors = _chunkU4AB53AMjs.formatZodErrors; exports.formula = _chunkDCTLP3ZDjs.formula; exports.formulaConfigSchema = _chunkU4AB53AMjs.formulaConfigSchema; exports.generateCssVariables = _chunkDCTLP3ZDjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getAttributeConfigSchema = _chunkU4AB53AMjs.getAttributeConfigSchema; exports.getContext = _chunkDCTLP3ZDjs.getContext; exports.getContextValue = _chunkDCTLP3ZDjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkDCTLP3ZDjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkDCTLP3ZDjs.getFeatureFlags; exports.getFeatureValue = _chunkDCTLP3ZDjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunkU4AB53AMjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkDCTLP3ZDjs.getNodeOutputs; exports.getPathDepth = _chunkDCTLP3ZDjs.getPathDepth; exports.getPolicy = _chunkDCTLP3ZDjs.getPolicy; exports.getRelationPath = _chunkDCTLP3ZDjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkDCTLP3ZDjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkDCTLP3ZDjs.getSchemaContext; exports.getSchemaFromContext = _chunkDCTLP3ZDjs.getSchemaFromContext; exports.getSyncPreview = _chunkDCTLP3ZDjs.getSyncPreview; exports.getSystemAttributeList = _chunkDCTLP3ZDjs.getSystemAttributeList; exports.getSystemTemplate = _chunkDCTLP3ZDjs.getSystemTemplate; exports.getTargetAttributeName = _chunkDCTLP3ZDjs.getTargetAttributeName; exports.getTenantId = _chunkDCTLP3ZDjs.getTenantId; exports.getUserId = _chunkDCTLP3ZDjs.getUserId; exports.getViewSeedPreview = _chunkDCTLP3ZDjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkDCTLP3ZDjs.getViewSyncPreview; exports.group = _chunkDCTLP3ZDjs.group; exports.hasContext = _chunkDCTLP3ZDjs.hasContext; exports.hasFeatureFlagsContext = _chunkDCTLP3ZDjs.hasFeatureFlagsContext; exports.hasProperties = _chunkDCTLP3ZDjs.hasProperties; exports.hasRelationReferences = _chunkDCTLP3ZDjs.hasRelationReferences; exports.hasSchemaContext = _chunkDCTLP3ZDjs.hasSchemaContext; exports.hashOptions = _chunkDCTLP3ZDjs.hashOptions; exports.inValues = _chunkDCTLP3ZDjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkDCTLP3ZDjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunkDCTLP3ZDjs.isBehaviorProperty; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkDCTLP3ZDjs.isConditionGroup; exports.isConditionNode = _chunkDCTLP3ZDjs.isConditionNode; exports.isConditionRule = _chunkDCTLP3ZDjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDirectTableTab = isDirectTableTab; exports.isDocumentNode = _chunkDCTLP3ZDjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkDCTLP3ZDjs.isEmpty; exports.isEndNode = _chunkDCTLP3ZDjs.isEndNode; exports.isFeatureEnabled = _chunkDCTLP3ZDjs.isFeatureEnabled; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkDCTLP3ZDjs.isForbiddenError; exports.isFormNode = _chunkDCTLP3ZDjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkDCTLP3ZDjs.isGrantExpired; exports.isGrantRevoked = _chunkDCTLP3ZDjs.isGrantRevoked; exports.isGrantValid = _chunkDCTLP3ZDjs.isGrantValid; exports.isIdentityProperty = _chunkDCTLP3ZDjs.isIdentityProperty; exports.isInstanceEvent = _chunkDCTLP3ZDjs.isInstanceEvent; exports.isInstanceTerminal = _chunkDCTLP3ZDjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkDCTLP3ZDjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isInvitationAccepted = _chunkDCTLP3ZDjs.isInvitationAccepted; exports.isInvitationExpired = _chunkDCTLP3ZDjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkDCTLP3ZDjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkDCTLP3ZDjs.isInvitationValid; exports.isLabelExpression = _chunkDCTLP3ZDjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkDCTLP3ZDjs.isNodeEvent; exports.isNotEmpty = _chunkDCTLP3ZDjs.isNotEmpty; exports.isNotFoundError = _chunkDCTLP3ZDjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isPresentationProperty = _chunkDCTLP3ZDjs.isPresentationProperty; exports.isProtectedResourceError = _chunkDCTLP3ZDjs.isProtectedResourceError; exports.isRecordComplete = _chunkU4AB53AMjs.isRecordComplete; exports.isSchemaError = _chunkDCTLP3ZDjs.isSchemaError; exports.isSimpleFormNode = _chunkDCTLP3ZDjs.isSimpleFormNode; exports.isStartNode = _chunkDCTLP3ZDjs.isStartNode; exports.isSystemAttribute = _chunkDCTLP3ZDjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkDCTLP3ZDjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkDCTLP3ZDjs.isSystemTemplate; exports.isSystemWorkflow = _chunkDCTLP3ZDjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkDCTLP3ZDjs.isTokenRevoked; exports.isUniversalRelation = _chunkDCTLP3ZDjs.isUniversalRelation; exports.isValidationError = _chunkDCTLP3ZDjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkDCTLP3ZDjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkDCTLP3ZDjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkDCTLP3ZDjs.listView; exports.location = _chunkDCTLP3ZDjs.location; exports.locationConfigSchema = _chunkU4AB53AMjs.locationConfigSchema; exports.mergeWithDefaults = _chunkDCTLP3ZDjs.mergeWithDefaults; exports.multiselect = _chunkDCTLP3ZDjs.multiselect; exports.multiselectConfigSchema = _chunkU4AB53AMjs.multiselectConfigSchema; exports.neq = _chunkDCTLP3ZDjs.neq; exports.notesPolicy = _chunkDCTLP3ZDjs.notesPolicy; exports.number = _chunkDCTLP3ZDjs.number; exports.numberConfigSchema = _chunkU4AB53AMjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkDCTLP3ZDjs.object; exports.or = _chunkDCTLP3ZDjs.or; exports.parseAttributeConfig = _chunkU4AB53AMjs.parseAttributeConfig; exports.parsePath = _chunkDCTLP3ZDjs.parsePath; exports.pathHasManyCardinality = _chunkDCTLP3ZDjs.pathHasManyCardinality; exports.phone = _chunkDCTLP3ZDjs.phone; exports.phoneConfigSchema = _chunkU4AB53AMjs.phoneConfigSchema; exports.rating = _chunkDCTLP3ZDjs.rating; exports.ratingConfigSchema = _chunkU4AB53AMjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkDCTLP3ZDjs.recalculateParentRollups; exports.registry = _chunkDCTLP3ZDjs.registry; exports.relation = _chunkDCTLP3ZDjs.relation; exports.relationConfigSchema = _chunkU4AB53AMjs.relationConfigSchema; exports.renderLabelExpression = _chunkDCTLP3ZDjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkDCTLP3ZDjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkDCTLP3ZDjs.resolveSingleValue; exports.richtext = _chunkDCTLP3ZDjs.richtext; exports.richtextConfigSchema = _chunkU4AB53AMjs.richtextConfigSchema; exports.rollup = _chunkDCTLP3ZDjs.rollup; exports.rollupConfigSchema = _chunkU4AB53AMjs.rollupConfigSchema; exports.runWithContext = _chunkDCTLP3ZDjs.runWithContext; exports.runWithFeatureFlags = _chunkDCTLP3ZDjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkDCTLP3ZDjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkDCTLP3ZDjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkU4AB53AMjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkDCTLP3ZDjs.seedRegistryViews; exports.select = _chunkDCTLP3ZDjs.select; exports.selectConfigSchema = _chunkU4AB53AMjs.selectConfigSchema; exports.setContextValue = _chunkDCTLP3ZDjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkDCTLP3ZDjs.status; exports.statusConfigSchema = _chunkU4AB53AMjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkDCTLP3ZDjs.success; exports.syncAll = _chunkDCTLP3ZDjs.syncAll; exports.syncNativeObjects = _chunkDCTLP3ZDjs.syncNativeObjects; exports.syncNativeViews = _chunkDCTLP3ZDjs.syncNativeViews; exports.text = _chunkDCTLP3ZDjs.text; exports.textConfigSchema = _chunkU4AB53AMjs.textConfigSchema; exports.textarea = _chunkDCTLP3ZDjs.textarea; exports.textareaConfigSchema = _chunkU4AB53AMjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkDCTLP3ZDjs.toUndefinedIfEmpty; exports.traversePath = _chunkDCTLP3ZDjs.traversePath; exports.tryGetFeatureValue = _chunkDCTLP3ZDjs.tryGetFeatureValue; exports.user = _chunkDCTLP3ZDjs.user; exports.userConfigSchema = _chunkU4AB53AMjs.userConfigSchema; exports.validateAttribute = _chunkU4AB53AMjs.validateAttribute; exports.validateAttributeConfig = _chunkU4AB53AMjs.validateAttributeConfig; exports.validateDraft = _chunkU4AB53AMjs.validateDraft; exports.validateDraftOrThrow = _chunkU4AB53AMjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkDCTLP3ZDjs.validateFormulaExpression; exports.validateObject = _chunkU4AB53AMjs.validateObject; exports.validateObjectOrThrow = _chunkU4AB53AMjs.validateObjectOrThrow; exports.validatePath = _chunkDCTLP3ZDjs.validatePath; exports.validatePropertyType = _chunkDCTLP3ZDjs.validatePropertyType; exports.verifyNativeObjectsSync = _chunkDCTLP3ZDjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkDCTLP3ZDjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkDCTLP3ZDjs.verifyRegistryViewsSeeded; exports.view = _chunkDCTLP3ZDjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkDCTLP3ZDjs.wait; exports.withFeatureFlags = _chunkDCTLP3ZDjs.withFeatureFlags; exports.withTenantContext = _chunkDCTLP3ZDjs.withTenantContext; exports.workflow = _chunkDCTLP3ZDjs.workflow;
1967
+ exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkKN6UXXVUjs.ActivityTabConfig; exports.AttributeInUseError = _chunkKN6UXXVUjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkKN6UXXVUjs.AttributeNotFoundError; exports.AuditService = _chunkKN6UXXVUjs.AuditService; exports.AuthMethodSchema = _chunkKN6UXXVUjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkKN6UXXVUjs.BEHAVIOR_PROPERTIES; exports.BasePropertyBuilder = _chunkKN6UXXVUjs.BasePropertyBuilder; exports.BaseRepository = _chunkKN6UXXVUjs.BaseRepository; exports.BaseService = _chunkKN6UXXVUjs.BaseService; exports.CheckboxPropertyBuilder = _chunkKN6UXXVUjs.CheckboxPropertyBuilder; exports.ConcurrentModificationError = _chunkKN6UXXVUjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkKN6UXXVUjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkKN6UXXVUjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkKN6UXXVUjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkKN6UXXVUjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkKN6UXXVUjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkKN6UXXVUjs.CreateShareInputSchema; exports.CurrencyPropertyBuilder = _chunkKN6UXXVUjs.CurrencyPropertyBuilder; exports.CustomTabConfig = _chunkKN6UXXVUjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkKN6UXXVUjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk36UBIXJNjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunk36UBIXJNjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkKN6UXXVUjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkU4AB53AMjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkKN6UXXVUjs.DRIVING_LICENSE; exports.DatePropertyBuilder = _chunkKN6UXXVUjs.DatePropertyBuilder; exports.DetailViewBuilder = _chunkKN6UXXVUjs.DetailViewBuilder; exports.DirectTableTabConfig = _chunkKN6UXXVUjs.DirectTableTabConfig; exports.DocumentExecutor = _chunkKN6UXXVUjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkKN6UXXVUjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkKN6UXXVUjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkKN6UXXVUjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkKN6UXXVUjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkKN6UXXVUjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkKN6UXXVUjs.DocumentProcessingService; exports.DocumentRenderError = _chunkKN6UXXVUjs.DocumentRenderError; exports.DocumentRendererService = _chunkKN6UXXVUjs.DocumentRendererService; exports.DocumentService = _chunkKN6UXXVUjs.DocumentService; exports.DocumentTemplateService = _chunkKN6UXXVUjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkKN6UXXVUjs.DocumentsTabConfig; exports.DuplicateError = _chunkKN6UXXVUjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkKN6UXXVUjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkKN6UXXVUjs.EndExecutor; exports.EndNodeSchema = _chunkKN6UXXVUjs.EndNodeSchema; exports.ExecutorRegistry = _chunkKN6UXXVUjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkKN6UXXVUjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkKN6UXXVUjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkKN6UXXVUjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkKN6UXXVUjs.FileNotFoundError; exports.FileService = _chunkKN6UXXVUjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkKN6UXXVUjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkKN6UXXVUjs.FlowRowSchema; exports.FlowsTabConfig = _chunkKN6UXXVUjs.FlowsTabConfig; exports.ForbiddenError = _chunkKN6UXXVUjs.ForbiddenError; exports.FormExecutor = _chunkKN6UXXVUjs.FormExecutor; exports.FormFieldRefSchema = _chunkKN6UXXVUjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkKN6UXXVUjs.FormNodeSchema; exports.FormulaResolverService = _chunkKN6UXXVUjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkKN6UXXVUjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkKN6UXXVUjs.GeocodingService; exports.GlobalSearchService = _chunkKN6UXXVUjs.GlobalSearchService; exports.GrantExpiredError = _chunkKN6UXXVUjs.GrantExpiredError; exports.GrantNotFoundError = _chunkKN6UXXVUjs.GrantNotFoundError; exports.GrantRevokedError = _chunkKN6UXXVUjs.GrantRevokedError; exports.GroupBuilder = _chunkKN6UXXVUjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkKN6UXXVUjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkKN6UXXVUjs.InvalidPathError; exports.InverseTableTabConfig = _chunkKN6UXXVUjs.InverseTableTabConfig; exports.InvitationAlreadyAcceptedError = _chunkKN6UXXVUjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkKN6UXXVUjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkKN6UXXVUjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkKN6UXXVUjs.InvitationRevokedError; exports.ListViewBuilder = _chunkKN6UXXVUjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkKN6UXXVUjs.ListViewTabConfigBuilder; exports.LocationPropertyBuilder = _chunkKN6UXXVUjs.LocationPropertyBuilder; exports.MaxDepthExceededError = _chunkKN6UXXVUjs.MaxDepthExceededError; exports.MultiselectPropertyBuilder = _chunkKN6UXXVUjs.MultiselectPropertyBuilder; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkKN6UXXVUjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkKN6UXXVUjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkKN6UXXVUjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkKN6UXXVUjs.NoopHookRegistry; exports.NotFoundError = _chunkKN6UXXVUjs.NotFoundError; exports.NotSystemObjectError = _chunkKN6UXXVUjs.NotSystemObjectError; exports.NotesTabConfig = _chunkKN6UXXVUjs.NotesTabConfig; exports.NumberPropertyBuilder = _chunkKN6UXXVUjs.NumberPropertyBuilder; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkKN6UXXVUjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkKN6UXXVUjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkKN6UXXVUjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkKN6UXXVUjs.ObjectSchemaService; exports.PASSPORT = _chunkKN6UXXVUjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkKN6UXXVUjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkKN6UXXVUjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkKN6UXXVUjs.PermissionService; exports.PhonePropertyBuilder = _chunkKN6UXXVUjs.PhonePropertyBuilder; exports.PolicyRegistry = _chunkKN6UXXVUjs.PolicyRegistry; exports.PolicyViolationError = _chunkKN6UXXVUjs.PolicyViolationError; exports.PropertySchemaBuilder = _chunkKN6UXXVUjs.PropertySchemaBuilder; exports.PropertyTypeBuilder = _chunkKN6UXXVUjs.PropertyTypeBuilder; exports.ProtectedResourceError = _chunkKN6UXXVUjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkKN6UXXVUjs.ProtectedRoleError; exports.QueryBuilder = _chunkKN6UXXVUjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkKN6UXXVUjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkKN6UXXVUjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkKN6UXXVUjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkKN6UXXVUjs.RESERVED_ATTRIBUTE_NAMES; exports.RatingPropertyBuilder = _chunkKN6UXXVUjs.RatingPropertyBuilder; exports.RecordNotFoundError = _chunkKN6UXXVUjs.RecordNotFoundError; exports.RecordQueryService = _chunkKN6UXXVUjs.RecordQueryService; exports.RecordReferencedError = _chunkKN6UXXVUjs.RecordReferencedError; exports.RecordResolverService = _chunkKN6UXXVUjs.RecordResolverService; exports.RecordService = _chunkKN6UXXVUjs.RecordService; exports.RelationPropertiesService = _chunkKN6UXXVUjs.RelationPropertiesService; exports.RelationService = _chunkKN6UXXVUjs.RelationService; exports.RoleNotFoundError = _chunkKN6UXXVUjs.RoleNotFoundError; exports.RollupScheduler = _chunkKN6UXXVUjs.RollupScheduler; exports.RollupService = _chunkKN6UXXVUjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkKN6UXXVUjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkKN6UXXVUjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkKN6UXXVUjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkKN6UXXVUjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkKN6UXXVUjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkKN6UXXVUjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkKN6UXXVUjs.SchemaContextAwareRepository; exports.SchemaError = _chunkKN6UXXVUjs.SchemaError; exports.SchemaErrorCode = _chunkKN6UXXVUjs.SchemaErrorCode; exports.SelectPropertyBuilder = _chunkKN6UXXVUjs.SelectPropertyBuilder; exports.ShareStatusSchema = _chunkKN6UXXVUjs.ShareStatusSchema; exports.SlotModeSchema = _chunkKN6UXXVUjs.SlotModeSchema; exports.StartExecutor = _chunkKN6UXXVUjs.StartExecutor; exports.StartNodeSchema = _chunkKN6UXXVUjs.StartNodeSchema; exports.StatusPropertyBuilder = _chunkKN6UXXVUjs.StatusPropertyBuilder; exports.StorageDownloadNotSupportedError = _chunkKN6UXXVUjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkKN6UXXVUjs.SyncError; exports.TabBuilder = _chunkKN6UXXVUjs.TabBuilder; exports.TenantContextError = _chunkKN6UXXVUjs.TenantContextError; exports.TextPropertyBuilder = _chunkKN6UXXVUjs.TextPropertyBuilder; exports.TextareaPropertyBuilder = _chunkKN6UXXVUjs.TextareaPropertyBuilder; exports.ThemeColorsSchema = _chunkKN6UXXVUjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkKN6UXXVUjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkKN6UXXVUjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunkKN6UXXVUjs.UserProfileNotFoundError; exports.UserProfileService = _chunkKN6UXXVUjs.UserProfileService; exports.UserService = _chunkKN6UXXVUjs.UserService; exports.ValidationError = _chunkKN6UXXVUjs.ValidationError; exports.ViewBuilder = _chunkKN6UXXVUjs.ViewBuilder; exports.ViewService = _chunkKN6UXXVUjs.ViewService; exports.ViewportSchema = _chunkKN6UXXVUjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkKN6UXXVUjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkKN6UXXVUjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkKN6UXXVUjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkKN6UXXVUjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkKN6UXXVUjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkKN6UXXVUjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkKN6UXXVUjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkKN6UXXVUjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkKN6UXXVUjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkKN6UXXVUjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkKN6UXXVUjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkKN6UXXVUjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkKN6UXXVUjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkKN6UXXVUjs.WorkflowRelationService; exports.WorkflowService = _chunkKN6UXXVUjs.WorkflowService; exports.WorkflowShareSchema = _chunkKN6UXXVUjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkKN6UXXVUjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkKN6UXXVUjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkKN6UXXVUjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkKN6UXXVUjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkKN6UXXVUjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunkKN6UXXVUjs.addSchemaToContext; exports.and = _chunkKN6UXXVUjs.and; exports.applyDefaultValues = _chunkKN6UXXVUjs.applyDefaultValues; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunkU4AB53AMjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkKN6UXXVUjs.buildAuditChanges; exports.buildPolicyContext = _chunkKN6UXXVUjs.buildPolicyContext; exports.cacheKeys = _chunkKN6UXXVUjs.cacheKeys; exports.cacheTtl = _chunkKN6UXXVUjs.cacheTtl; exports.canAccessNode = _chunkKN6UXXVUjs.canAccessNode; exports.canResumeInstance = _chunkKN6UXXVUjs.canResumeInstance; exports.checkPermission = _chunkKN6UXXVUjs.checkPermission; exports.checkRecordAccess = _chunkKN6UXXVUjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkKN6UXXVUjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkKN6UXXVUjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkKN6UXXVUjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkKN6UXXVUjs.checkbox; exports.checkboxConfigSchema = _chunkU4AB53AMjs.checkboxConfigSchema; exports.complete = _chunkKN6UXXVUjs.complete; exports.computeLabel = _chunkKN6UXXVUjs.computeLabel; exports.computeLabelWithRelations = _chunkKN6UXXVUjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkU4AB53AMjs.computeRecordStatus; exports.createAttributeValidator = _chunkU4AB53AMjs.createAttributeValidator; exports.createCheckboxValidator = _chunkU4AB53AMjs.createCheckboxValidator; exports.createContextForCreate = _chunkKN6UXXVUjs.createContextForCreate; exports.createContextForDelete = _chunkKN6UXXVUjs.createContextForDelete; exports.createContextForRestore = _chunkKN6UXXVUjs.createContextForRestore; exports.createContextForUpdate = _chunkKN6UXXVUjs.createContextForUpdate; exports.createCurrencyValidator = _chunkU4AB53AMjs.createCurrencyValidator; exports.createDateValidator = _chunkU4AB53AMjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkKN6UXXVUjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkKN6UXXVUjs.createDefaultState; exports.createDraftValidator = _chunkU4AB53AMjs.createDraftValidator; exports.createEmptyContext = _chunkKN6UXXVUjs.createEmptyContext; exports.createFileValidator = _chunkU4AB53AMjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkU4AB53AMjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkU4AB53AMjs.createFormulaValidator; exports.createLocationValidator = _chunkU4AB53AMjs.createLocationValidator; exports.createMockAdapter = _chunkKN6UXXVUjs.createMockAdapter; exports.createMultiRelationValidator = _chunkU4AB53AMjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkU4AB53AMjs.createMultiselectValidator; exports.createNumberValidator = _chunkU4AB53AMjs.createNumberValidator; exports.createObjectValidator = _chunkU4AB53AMjs.createObjectValidator; exports.createPhoneValidator = _chunkU4AB53AMjs.createPhoneValidator; exports.createQueryBuilder = _chunkKN6UXXVUjs.createQueryBuilder; exports.createRatingValidator = _chunkU4AB53AMjs.createRatingValidator; exports.createRelationValidator = _chunkU4AB53AMjs.createRelationValidator; exports.createRichtextValidator = _chunkU4AB53AMjs.createRichtextValidator; exports.createRollupValidator = _chunkU4AB53AMjs.createRollupValidator; exports.createSelectValidator = _chunkU4AB53AMjs.createSelectValidator; exports.createSingleRelationValidator = _chunkU4AB53AMjs.createSingleRelationValidator; exports.createStartTransition = _chunkKN6UXXVUjs.createStartTransition; exports.createStatusValidator = _chunkU4AB53AMjs.createStatusValidator; exports.createTextAreaValidator = _chunkU4AB53AMjs.createTextAreaValidator; exports.createTextValidator = _chunkU4AB53AMjs.createTextValidator; exports.createUserValidator = _chunkU4AB53AMjs.createUserValidator; exports.currency = _chunkKN6UXXVUjs.currency; exports.currencyConfigSchema = _chunkU4AB53AMjs.currencyConfigSchema; exports.date = _chunkKN6UXXVUjs.date; exports.dateConfigSchema = _chunkU4AB53AMjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkKN6UXXVUjs.defaultPolicyRegistry; exports.defaultTtl = _chunkKN6UXXVUjs.defaultTtl; exports.detailView = _chunkKN6UXXVUjs.detailView; exports.document = _chunkKN6UXXVUjs.document; exports.documentConfigSchema = _chunkU4AB53AMjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkKN6UXXVUjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkKN6UXXVUjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkKN6UXXVUjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkKN6UXXVUjs.enrichWithFormulas; exports.eq = _chunkKN6UXXVUjs.eq; exports.error = _chunkKN6UXXVUjs.error; exports.evaluate = _chunkKN6UXXVUjs.evaluate; exports.evaluateCondition = _chunkKN6UXXVUjs.evaluateCondition; exports.evaluateFormula = _chunkKN6UXXVUjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkKN6UXXVUjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkKN6UXXVUjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkKN6UXXVUjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkKN6UXXVUjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkKN6UXXVUjs.evaluateWithTrace; exports.extractAttributeNames = _chunkKN6UXXVUjs.extractAttributeNames; exports.extractFormulaVariables = _chunkKN6UXXVUjs.extractFormulaVariables; exports.extractRelationIds = _chunkKN6UXXVUjs.extractRelationIds; exports.extractRelationNames = _chunkKN6UXXVUjs.extractRelationNames; exports.extractRelationReferences = _chunkKN6UXXVUjs.extractRelationReferences; exports.file = _chunkKN6UXXVUjs.file; exports.fileConfigSchema = _chunkU4AB53AMjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkKN6UXXVUjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkKN6UXXVUjs.formatAttributeValue; exports.formatFormulaResult = _chunkKN6UXXVUjs.formatFormulaResult; exports.formatRecord = _chunkKN6UXXVUjs.formatRecord; exports.formatRecords = _chunkKN6UXXVUjs.formatRecords; exports.formatZodErrors = _chunkU4AB53AMjs.formatZodErrors; exports.formula = _chunkKN6UXXVUjs.formula; exports.formulaConfigSchema = _chunkU4AB53AMjs.formulaConfigSchema; exports.generateCssVariables = _chunkKN6UXXVUjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getAttributeConfigSchema = _chunkU4AB53AMjs.getAttributeConfigSchema; exports.getContext = _chunkKN6UXXVUjs.getContext; exports.getContextValue = _chunkKN6UXXVUjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkKN6UXXVUjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkKN6UXXVUjs.getFeatureFlags; exports.getFeatureValue = _chunkKN6UXXVUjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunkU4AB53AMjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkKN6UXXVUjs.getNodeOutputs; exports.getPathDepth = _chunkKN6UXXVUjs.getPathDepth; exports.getPolicy = _chunkKN6UXXVUjs.getPolicy; exports.getRelationPath = _chunkKN6UXXVUjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkKN6UXXVUjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkKN6UXXVUjs.getSchemaContext; exports.getSchemaFromContext = _chunkKN6UXXVUjs.getSchemaFromContext; exports.getSyncPreview = _chunkKN6UXXVUjs.getSyncPreview; exports.getSystemAttributeList = _chunkKN6UXXVUjs.getSystemAttributeList; exports.getSystemTemplate = _chunkKN6UXXVUjs.getSystemTemplate; exports.getTargetAttributeName = _chunkKN6UXXVUjs.getTargetAttributeName; exports.getTenantId = _chunkKN6UXXVUjs.getTenantId; exports.getUserId = _chunkKN6UXXVUjs.getUserId; exports.getViewSeedPreview = _chunkKN6UXXVUjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkKN6UXXVUjs.getViewSyncPreview; exports.group = _chunkKN6UXXVUjs.group; exports.hasContext = _chunkKN6UXXVUjs.hasContext; exports.hasFeatureFlagsContext = _chunkKN6UXXVUjs.hasFeatureFlagsContext; exports.hasProperties = _chunkKN6UXXVUjs.hasProperties; exports.hasRelationReferences = _chunkKN6UXXVUjs.hasRelationReferences; exports.hasSchemaContext = _chunkKN6UXXVUjs.hasSchemaContext; exports.hashOptions = _chunkKN6UXXVUjs.hashOptions; exports.inValues = _chunkKN6UXXVUjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkKN6UXXVUjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunkKN6UXXVUjs.isBehaviorProperty; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkKN6UXXVUjs.isConditionGroup; exports.isConditionNode = _chunkKN6UXXVUjs.isConditionNode; exports.isConditionRule = _chunkKN6UXXVUjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDirectTableTab = isDirectTableTab; exports.isDocumentNode = _chunkKN6UXXVUjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkKN6UXXVUjs.isEmpty; exports.isEndNode = _chunkKN6UXXVUjs.isEndNode; exports.isFeatureEnabled = _chunkKN6UXXVUjs.isFeatureEnabled; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkKN6UXXVUjs.isForbiddenError; exports.isFormNode = _chunkKN6UXXVUjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkKN6UXXVUjs.isGrantExpired; exports.isGrantRevoked = _chunkKN6UXXVUjs.isGrantRevoked; exports.isGrantValid = _chunkKN6UXXVUjs.isGrantValid; exports.isIdentityProperty = _chunkKN6UXXVUjs.isIdentityProperty; exports.isInstanceEvent = _chunkKN6UXXVUjs.isInstanceEvent; exports.isInstanceTerminal = _chunkKN6UXXVUjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkKN6UXXVUjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isInvitationAccepted = _chunkKN6UXXVUjs.isInvitationAccepted; exports.isInvitationExpired = _chunkKN6UXXVUjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkKN6UXXVUjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkKN6UXXVUjs.isInvitationValid; exports.isLabelExpression = _chunkKN6UXXVUjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkKN6UXXVUjs.isNodeEvent; exports.isNotEmpty = _chunkKN6UXXVUjs.isNotEmpty; exports.isNotFoundError = _chunkKN6UXXVUjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isPresentationProperty = _chunkKN6UXXVUjs.isPresentationProperty; exports.isProtectedResourceError = _chunkKN6UXXVUjs.isProtectedResourceError; exports.isRecordComplete = _chunkU4AB53AMjs.isRecordComplete; exports.isSchemaError = _chunkKN6UXXVUjs.isSchemaError; exports.isSimpleFormNode = _chunkKN6UXXVUjs.isSimpleFormNode; exports.isStartNode = _chunkKN6UXXVUjs.isStartNode; exports.isSystemAttribute = _chunkKN6UXXVUjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkKN6UXXVUjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkKN6UXXVUjs.isSystemTemplate; exports.isSystemWorkflow = _chunkKN6UXXVUjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkKN6UXXVUjs.isTokenRevoked; exports.isUniversalRelation = _chunkKN6UXXVUjs.isUniversalRelation; exports.isValidationError = _chunkKN6UXXVUjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkKN6UXXVUjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkKN6UXXVUjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkKN6UXXVUjs.listView; exports.location = _chunkKN6UXXVUjs.location; exports.locationConfigSchema = _chunkU4AB53AMjs.locationConfigSchema; exports.mergeWithDefaults = _chunkKN6UXXVUjs.mergeWithDefaults; exports.multiselect = _chunkKN6UXXVUjs.multiselect; exports.multiselectConfigSchema = _chunkU4AB53AMjs.multiselectConfigSchema; exports.neq = _chunkKN6UXXVUjs.neq; exports.notesPolicy = _chunkKN6UXXVUjs.notesPolicy; exports.number = _chunkKN6UXXVUjs.number; exports.numberConfigSchema = _chunkU4AB53AMjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkKN6UXXVUjs.object; exports.or = _chunkKN6UXXVUjs.or; exports.parseAttributeConfig = _chunkU4AB53AMjs.parseAttributeConfig; exports.parsePath = _chunkKN6UXXVUjs.parsePath; exports.pathHasManyCardinality = _chunkKN6UXXVUjs.pathHasManyCardinality; exports.phone = _chunkKN6UXXVUjs.phone; exports.phoneConfigSchema = _chunkU4AB53AMjs.phoneConfigSchema; exports.rating = _chunkKN6UXXVUjs.rating; exports.ratingConfigSchema = _chunkU4AB53AMjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkKN6UXXVUjs.recalculateParentRollups; exports.registry = _chunkKN6UXXVUjs.registry; exports.relation = _chunkKN6UXXVUjs.relation; exports.relationConfigSchema = _chunkU4AB53AMjs.relationConfigSchema; exports.renderLabelExpression = _chunkKN6UXXVUjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkKN6UXXVUjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkKN6UXXVUjs.resolveSingleValue; exports.richtext = _chunkKN6UXXVUjs.richtext; exports.richtextConfigSchema = _chunkU4AB53AMjs.richtextConfigSchema; exports.rollup = _chunkKN6UXXVUjs.rollup; exports.rollupConfigSchema = _chunkU4AB53AMjs.rollupConfigSchema; exports.runWithContext = _chunkKN6UXXVUjs.runWithContext; exports.runWithFeatureFlags = _chunkKN6UXXVUjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkKN6UXXVUjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkKN6UXXVUjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkU4AB53AMjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkKN6UXXVUjs.seedRegistryViews; exports.select = _chunkKN6UXXVUjs.select; exports.selectConfigSchema = _chunkU4AB53AMjs.selectConfigSchema; exports.setContextValue = _chunkKN6UXXVUjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkKN6UXXVUjs.status; exports.statusConfigSchema = _chunkU4AB53AMjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkKN6UXXVUjs.success; exports.syncAll = _chunkKN6UXXVUjs.syncAll; exports.syncNativeObjects = _chunkKN6UXXVUjs.syncNativeObjects; exports.syncNativeViews = _chunkKN6UXXVUjs.syncNativeViews; exports.text = _chunkKN6UXXVUjs.text; exports.textConfigSchema = _chunkU4AB53AMjs.textConfigSchema; exports.textarea = _chunkKN6UXXVUjs.textarea; exports.textareaConfigSchema = _chunkU4AB53AMjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkKN6UXXVUjs.toUndefinedIfEmpty; exports.traversePath = _chunkKN6UXXVUjs.traversePath; exports.tryGetFeatureValue = _chunkKN6UXXVUjs.tryGetFeatureValue; exports.user = _chunkKN6UXXVUjs.user; exports.userConfigSchema = _chunkU4AB53AMjs.userConfigSchema; exports.validateAttribute = _chunkU4AB53AMjs.validateAttribute; exports.validateAttributeConfig = _chunkU4AB53AMjs.validateAttributeConfig; exports.validateDraft = _chunkU4AB53AMjs.validateDraft; exports.validateDraftOrThrow = _chunkU4AB53AMjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkKN6UXXVUjs.validateFormulaExpression; exports.validateObject = _chunkU4AB53AMjs.validateObject; exports.validateObjectOrThrow = _chunkU4AB53AMjs.validateObjectOrThrow; exports.validatePath = _chunkKN6UXXVUjs.validatePath; exports.validatePropertyType = _chunkKN6UXXVUjs.validatePropertyType; exports.verifyNativeObjectsSync = _chunkKN6UXXVUjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkKN6UXXVUjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkKN6UXXVUjs.verifyRegistryViewsSeeded; exports.view = _chunkKN6UXXVUjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkKN6UXXVUjs.wait; exports.withFeatureFlags = _chunkKN6UXXVUjs.withFeatureFlags; exports.withTenantContext = _chunkKN6UXXVUjs.withTenantContext; exports.workflow = _chunkKN6UXXVUjs.workflow;
package/dist/index.mjs CHANGED
@@ -343,7 +343,7 @@ import {
343
343
  withFeatureFlags,
344
344
  withTenantContext,
345
345
  workflow
346
- } from "./chunk-O7FGYLYG.mjs";
346
+ } from "./chunk-RRCPZUSK.mjs";
347
347
  import {
348
348
  asTenantId,
349
349
  asUserId,