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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -333,7 +333,13 @@
333
333
 
334
334
 
335
335
 
336
- var _chunkKGEV5PITjs = require('./chunk-KGEV5PIT.js');
336
+
337
+
338
+
339
+
340
+
341
+
342
+ var _chunkY4FDI32Gjs = require('./chunk-Y4FDI32G.js');
337
343
 
338
344
 
339
345
 
@@ -511,17 +517,6 @@ function getRollupFilterOperators(attr) {
511
517
  return OPERATORS_BY_TYPE.number;
512
518
  }
513
519
 
514
- // src/types/flows.ts
515
- function isFlowDefinition(obj) {
516
- return typeof obj === "object" && obj !== null && "slots" in obj && "pages" in obj && "relations" in obj && "status" in obj;
517
- }
518
- function isFlowPublished(flow) {
519
- return flow.status === "published";
520
- }
521
- function isSystemFlow(flow) {
522
- return flow.system === true;
523
- }
524
-
525
520
  // src/types/permissions.ts
526
521
  var ALL_ACTIONS = ["read", "create", "update", "delete"];
527
522
  function actionsToAccessLevel(actions) {
@@ -606,14 +601,14 @@ function applyRelationProps(label, props, propertyDefs) {
606
601
  if (value == null) continue;
607
602
  const def = defMap.get(key);
608
603
  if (def) {
609
- const formatted = _chunkKGEV5PITjs.formatAttributeValue.call(void 0, value, def);
610
- formattedProps[key] = formatted === _chunkKGEV5PITjs.EMPTY_VALUE_PLACEHOLDER ? "" : formatted;
604
+ const formatted = _chunkY4FDI32Gjs.formatAttributeValue.call(void 0, value, def);
605
+ formattedProps[key] = formatted === _chunkY4FDI32Gjs.EMPTY_VALUE_PLACEHOLDER ? "" : formatted;
611
606
  } else {
612
607
  formattedProps[key] = value;
613
608
  }
614
609
  }
615
610
  }
616
- const result = _chunkKGEV5PITjs.renderLabelExpression.call(void 0, label, { props: formattedProps }, "");
611
+ const result = _chunkY4FDI32Gjs.renderLabelExpression.call(void 0, label, { props: formattedProps }, "");
617
612
  return result.replace(/\(\s*\)/g, "").replace(/\[\s*\]/g, "").replace(/\s*[-\u2014|:]\s*$/g, "").replace(/\s{2,}/g, " ").trim();
618
613
  }
619
614
 
@@ -972,7 +967,7 @@ var FlagService = class {
972
967
  for (const name of this.staticDefaults.keys()) {
973
968
  flagNames.add(name);
974
969
  }
975
- const overrides = this.repository ? await this.getAllOverrides(context) : { global: [], tenant: [], user: [] };
970
+ const overrides = this.repository && flagNames.size > 0 ? await this.getAllOverrides(context, [...flagNames]) : { global: [], tenant: [], user: [] };
976
971
  for (const name of flagNames) {
977
972
  const value = this.resolveValue(name, overrides, context);
978
973
  resolved.set(name, value);
@@ -987,7 +982,7 @@ var FlagService = class {
987
982
  * @returns Resolved flag with source information
988
983
  */
989
984
  async resolve(flagName, context = {}) {
990
- const overrides = this.repository ? await this.getAllOverrides(context) : { global: [], tenant: [], user: [] };
985
+ const overrides = this.repository ? await this.getAllOverrides(context, [flagName]) : { global: [], tenant: [], user: [] };
991
986
  return this.resolveWithSource(flagName, overrides, context);
992
987
  }
993
988
  /**
@@ -1061,16 +1056,16 @@ var FlagService = class {
1061
1056
  // PRIVATE HELPERS
1062
1057
  // ============================================================================
1063
1058
  /**
1064
- * Get all overrides organized by level.
1059
+ * Get all overrides organized by level, optionally filtered to specific flag names.
1065
1060
  */
1066
- async getAllOverrides(context) {
1061
+ async getAllOverrides(context, flagNames) {
1067
1062
  if (!this.repository) {
1068
1063
  return { global: [], tenant: [], user: [] };
1069
1064
  }
1070
1065
  const [globalOverrides, tenantOverrides, userOverrides] = await Promise.all([
1071
- this.repository.getOverrides({ level: "global" }),
1072
- context.tenantId ? this.repository.getOverrides({ level: "tenant", targetId: context.tenantId }) : Promise.resolve([]),
1073
- context.userId ? this.repository.getOverrides({ level: "user", targetId: context.userId }) : Promise.resolve([])
1066
+ this.repository.getOverrides({ level: "global", flagNames }),
1067
+ context.tenantId ? this.repository.getOverrides({ level: "tenant", targetId: context.tenantId, flagNames }) : Promise.resolve([]),
1068
+ context.userId ? this.repository.getOverrides({ level: "user", targetId: context.userId, flagNames }) : Promise.resolve([])
1074
1069
  ]);
1075
1070
  return {
1076
1071
  global: globalOverrides,
@@ -2064,4 +2059,7 @@ function isViewCustomized(view2, object2) {
2064
2059
 
2065
2060
 
2066
2061
 
2067
- exports.ALL_ACTIONS = ALL_ACTIONS; exports.ALL_SYSTEM_RESOURCES = _chunk7WT53FJ4js.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkKGEV5PITjs.ActivityTabConfig; exports.AttributeInUseError = _chunkKGEV5PITjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkKGEV5PITjs.AttributeNotFoundError; exports.AuditService = _chunkKGEV5PITjs.AuditService; exports.AuthMethodSchema = _chunkKGEV5PITjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkKGEV5PITjs.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunkKGEV5PITjs.BaseRepository; exports.BaseService = _chunkKGEV5PITjs.BaseService; exports.ConcurrentModificationError = _chunkKGEV5PITjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkKGEV5PITjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkKGEV5PITjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkKGEV5PITjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkKGEV5PITjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkKGEV5PITjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkKGEV5PITjs.CreateShareInputSchema; exports.CustomTabConfig = _chunkKGEV5PITjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkKGEV5PITjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk7WT53FJ4js.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk7WT53FJ4js.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_FOR_NEW_USERS = _chunk7WT53FJ4js.DEFAULT_ROLE_FOR_NEW_USERS; exports.DEFAULT_ROLE_LABELS = _chunk7WT53FJ4js.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk7WT53FJ4js.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkKGEV5PITjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunk3WTK7ESHjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkKGEV5PITjs.DRIVING_LICENSE; exports.DetailViewBuilder = _chunkKGEV5PITjs.DetailViewBuilder; exports.DocumentExecutor = _chunkKGEV5PITjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkKGEV5PITjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkKGEV5PITjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkKGEV5PITjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkKGEV5PITjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkKGEV5PITjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkKGEV5PITjs.DocumentProcessingService; exports.DocumentRenderError = _chunkKGEV5PITjs.DocumentRenderError; exports.DocumentRendererService = _chunkKGEV5PITjs.DocumentRendererService; exports.DocumentService = _chunkKGEV5PITjs.DocumentService; exports.DocumentTemplateService = _chunkKGEV5PITjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkKGEV5PITjs.DocumentsTabConfig; exports.DuplicateError = _chunkKGEV5PITjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkKGEV5PITjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkKGEV5PITjs.EndExecutor; exports.EndNodeSchema = _chunkKGEV5PITjs.EndNodeSchema; exports.ExecutorRegistry = _chunkKGEV5PITjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkKGEV5PITjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkKGEV5PITjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkKGEV5PITjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkKGEV5PITjs.FileNotFoundError; exports.FileService = _chunkKGEV5PITjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkKGEV5PITjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkKGEV5PITjs.FlowRowSchema; exports.FlowsTabConfig = _chunkKGEV5PITjs.FlowsTabConfig; exports.ForbiddenError = _chunkKGEV5PITjs.ForbiddenError; exports.FormExecutor = _chunkKGEV5PITjs.FormExecutor; exports.FormFieldRefSchema = _chunkKGEV5PITjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkKGEV5PITjs.FormNodeSchema; exports.FormulaResolverService = _chunkKGEV5PITjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkKGEV5PITjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkKGEV5PITjs.GeocodingService; exports.GlobalSearchService = _chunkKGEV5PITjs.GlobalSearchService; exports.GrantExpiredError = _chunkKGEV5PITjs.GrantExpiredError; exports.GrantNotFoundError = _chunkKGEV5PITjs.GrantNotFoundError; exports.GrantRevokedError = _chunkKGEV5PITjs.GrantRevokedError; exports.GroupBuilder = _chunkKGEV5PITjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkKGEV5PITjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkKGEV5PITjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkKGEV5PITjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkKGEV5PITjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkKGEV5PITjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkKGEV5PITjs.InvitationRevokedError; exports.ListViewBuilder = _chunkKGEV5PITjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkKGEV5PITjs.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunkKGEV5PITjs.MaxDepthExceededError; exports.NON_SORTABLE_TYPES = _chunkKGEV5PITjs.NON_SORTABLE_TYPES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkKGEV5PITjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkKGEV5PITjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkKGEV5PITjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkKGEV5PITjs.NoopHookRegistry; exports.NotFoundError = _chunkKGEV5PITjs.NotFoundError; exports.NotSystemObjectError = _chunkKGEV5PITjs.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkKGEV5PITjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkKGEV5PITjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkKGEV5PITjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkKGEV5PITjs.ObjectSchemaService; exports.PASSPORT = _chunkKGEV5PITjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkKGEV5PITjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkKGEV5PITjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkKGEV5PITjs.PermissionService; exports.PolicyRegistry = _chunkKGEV5PITjs.PolicyRegistry; exports.PolicyViolationError = _chunkKGEV5PITjs.PolicyViolationError; exports.ProtectedResourceError = _chunkKGEV5PITjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkKGEV5PITjs.ProtectedRoleError; exports.QueryBuilder = _chunkKGEV5PITjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkKGEV5PITjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkKGEV5PITjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkKGEV5PITjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkKGEV5PITjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkKGEV5PITjs.RecordNotFoundError; exports.RecordQueryService = _chunkKGEV5PITjs.RecordQueryService; exports.RecordReferencedError = _chunkKGEV5PITjs.RecordReferencedError; exports.RecordResolverService = _chunkKGEV5PITjs.RecordResolverService; exports.RecordService = _chunkKGEV5PITjs.RecordService; exports.RelationGroupBuilder = _chunkKGEV5PITjs.RelationGroupBuilder; exports.RelationPropertiesService = _chunkKGEV5PITjs.RelationPropertiesService; exports.RelationService = _chunkKGEV5PITjs.RelationService; exports.RichtextTabConfig = _chunkKGEV5PITjs.RichtextTabConfig; exports.RoleNotFoundError = _chunkKGEV5PITjs.RoleNotFoundError; exports.RollupScheduler = _chunkKGEV5PITjs.RollupScheduler; exports.RollupService = _chunkKGEV5PITjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkKGEV5PITjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkKGEV5PITjs.SIGNABLE_CONTRACT; exports.SORTABLE_ATTRIBUTE_TYPES = _chunkKGEV5PITjs.SORTABLE_ATTRIBUTE_TYPES; exports.SYSTEM_ATTRIBUTES = _chunkKGEV5PITjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkKGEV5PITjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk7WT53FJ4js.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk7WT53FJ4js.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkKGEV5PITjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkKGEV5PITjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkKGEV5PITjs.SchemaContextAwareRepository; exports.SchemaError = _chunkKGEV5PITjs.SchemaError; exports.SchemaErrorCode = _chunkKGEV5PITjs.SchemaErrorCode; exports.ShareStatusSchema = _chunkKGEV5PITjs.ShareStatusSchema; exports.SlotModeSchema = _chunkKGEV5PITjs.SlotModeSchema; exports.StartExecutor = _chunkKGEV5PITjs.StartExecutor; exports.StartNodeSchema = _chunkKGEV5PITjs.StartNodeSchema; exports.StorageDownloadNotSupportedError = _chunkKGEV5PITjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkKGEV5PITjs.SyncError; exports.TabBuilder = _chunkKGEV5PITjs.TabBuilder; exports.TableTabConfig = _chunkKGEV5PITjs.TableTabConfig; exports.TenantContextError = _chunkKGEV5PITjs.TenantContextError; exports.ThemeColorsSchema = _chunkKGEV5PITjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkKGEV5PITjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkKGEV5PITjs.TokenRevokedError; exports.USER_STATUSES = USER_STATUSES; exports.UserProfileNotFoundError = _chunkKGEV5PITjs.UserProfileNotFoundError; exports.UserProfileService = _chunkKGEV5PITjs.UserProfileService; exports.UserService = _chunkKGEV5PITjs.UserService; exports.ValidationError = _chunkKGEV5PITjs.ValidationError; exports.ViewBuilder = _chunkKGEV5PITjs.ViewBuilder; exports.ViewService = _chunkKGEV5PITjs.ViewService; exports.ViewportSchema = _chunkKGEV5PITjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkKGEV5PITjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkKGEV5PITjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkKGEV5PITjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkKGEV5PITjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkKGEV5PITjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkKGEV5PITjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkKGEV5PITjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkKGEV5PITjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkKGEV5PITjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkKGEV5PITjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkKGEV5PITjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkKGEV5PITjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkKGEV5PITjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkKGEV5PITjs.WorkflowRelationService; exports.WorkflowService = _chunkKGEV5PITjs.WorkflowService; exports.WorkflowShareSchema = _chunkKGEV5PITjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkKGEV5PITjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkKGEV5PITjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkKGEV5PITjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkKGEV5PITjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkKGEV5PITjs.WorkflowThemeSchema; exports.accessLevelToActions = accessLevelToActions; exports.actionsToAccessLevel = actionsToAccessLevel; exports.addSchemaToContext = _chunkKGEV5PITjs.addSchemaToContext; exports.and = _chunkKGEV5PITjs.and; exports.applyDefaultValues = _chunkKGEV5PITjs.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunk3WTK7ESHjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkKGEV5PITjs.buildAuditChanges; exports.buildPolicyContext = _chunkKGEV5PITjs.buildPolicyContext; exports.cacheKeys = _chunkKGEV5PITjs.cacheKeys; exports.cacheTtl = _chunkKGEV5PITjs.cacheTtl; exports.canAccessNode = _chunkKGEV5PITjs.canAccessNode; exports.canResumeInstance = _chunkKGEV5PITjs.canResumeInstance; exports.checkPermission = _chunkKGEV5PITjs.checkPermission; exports.checkRecordAccess = _chunkKGEV5PITjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkKGEV5PITjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkKGEV5PITjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkKGEV5PITjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkKGEV5PITjs.checkbox; exports.checkboxConfigSchema = _chunk3WTK7ESHjs.checkboxConfigSchema; exports.complete = _chunkKGEV5PITjs.complete; exports.computeLabel = _chunkKGEV5PITjs.computeLabel; exports.computeLabelWithRelations = _chunkKGEV5PITjs.computeLabelWithRelations; exports.computeRecordStatus = _chunk3WTK7ESHjs.computeRecordStatus; exports.createAttributeValidator = _chunk3WTK7ESHjs.createAttributeValidator; exports.createCheckboxValidator = _chunk3WTK7ESHjs.createCheckboxValidator; exports.createContextForCreate = _chunkKGEV5PITjs.createContextForCreate; exports.createContextForDelete = _chunkKGEV5PITjs.createContextForDelete; exports.createContextForRestore = _chunkKGEV5PITjs.createContextForRestore; exports.createContextForUpdate = _chunkKGEV5PITjs.createContextForUpdate; exports.createCurrencyValidator = _chunk3WTK7ESHjs.createCurrencyValidator; exports.createDateValidator = _chunk3WTK7ESHjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkKGEV5PITjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkKGEV5PITjs.createDefaultState; exports.createDraftValidator = _chunk3WTK7ESHjs.createDraftValidator; exports.createEmptyContext = _chunkKGEV5PITjs.createEmptyContext; exports.createFileValidator = _chunk3WTK7ESHjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunk3WTK7ESHjs.createFormAttributeValidator; exports.createFormulaValidator = _chunk3WTK7ESHjs.createFormulaValidator; exports.createLocationValidator = _chunk3WTK7ESHjs.createLocationValidator; exports.createMockAdapter = _chunkKGEV5PITjs.createMockAdapter; exports.createMultiRelationValidator = _chunk3WTK7ESHjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk3WTK7ESHjs.createMultiselectValidator; exports.createNumberValidator = _chunk3WTK7ESHjs.createNumberValidator; exports.createObjectValidator = _chunk3WTK7ESHjs.createObjectValidator; exports.createPhoneValidator = _chunk3WTK7ESHjs.createPhoneValidator; exports.createQueryBuilder = _chunkKGEV5PITjs.createQueryBuilder; exports.createRatingValidator = _chunk3WTK7ESHjs.createRatingValidator; exports.createRelationValidator = _chunk3WTK7ESHjs.createRelationValidator; exports.createRichtextValidator = _chunk3WTK7ESHjs.createRichtextValidator; exports.createRollupValidator = _chunk3WTK7ESHjs.createRollupValidator; exports.createSelectValidator = _chunk3WTK7ESHjs.createSelectValidator; exports.createSingleRelationValidator = _chunk3WTK7ESHjs.createSingleRelationValidator; exports.createStartTransition = _chunkKGEV5PITjs.createStartTransition; exports.createStatusValidator = _chunk3WTK7ESHjs.createStatusValidator; exports.createTextAreaValidator = _chunk3WTK7ESHjs.createTextAreaValidator; exports.createTextValidator = _chunk3WTK7ESHjs.createTextValidator; exports.createUserValidator = _chunk3WTK7ESHjs.createUserValidator; exports.currency = _chunkKGEV5PITjs.currency; exports.currencyConfigSchema = _chunk3WTK7ESHjs.currencyConfigSchema; exports.date = _chunkKGEV5PITjs.date; exports.dateConfigSchema = _chunk3WTK7ESHjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkKGEV5PITjs.defaultPolicyRegistry; exports.defaultTtl = _chunkKGEV5PITjs.defaultTtl; exports.detailView = _chunkKGEV5PITjs.detailView; exports.document = _chunkKGEV5PITjs.document; exports.documentConfigSchema = _chunk3WTK7ESHjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkKGEV5PITjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkKGEV5PITjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkKGEV5PITjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkKGEV5PITjs.enrichWithFormulas; exports.eq = _chunkKGEV5PITjs.eq; exports.error = _chunkKGEV5PITjs.error; exports.evaluate = _chunkKGEV5PITjs.evaluate; exports.evaluateCondition = _chunkKGEV5PITjs.evaluateCondition; exports.evaluateFormula = _chunkKGEV5PITjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkKGEV5PITjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkKGEV5PITjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkKGEV5PITjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkKGEV5PITjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkKGEV5PITjs.evaluateWithTrace; exports.extractAttributeNames = _chunkKGEV5PITjs.extractAttributeNames; exports.extractFormulaVariables = _chunkKGEV5PITjs.extractFormulaVariables; exports.extractRelationIds = _chunkKGEV5PITjs.extractRelationIds; exports.extractRelationNames = _chunkKGEV5PITjs.extractRelationNames; exports.extractRelationReferences = _chunkKGEV5PITjs.extractRelationReferences; exports.file = _chunkKGEV5PITjs.file; exports.fileConfigSchema = _chunk3WTK7ESHjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkKGEV5PITjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkKGEV5PITjs.formatAttributeValue; exports.formatFormulaResult = _chunkKGEV5PITjs.formatFormulaResult; exports.formatPhoneForDisplay = _chunk3WTK7ESHjs.formatPhoneForDisplay; exports.formatRecord = _chunkKGEV5PITjs.formatRecord; exports.formatRecords = _chunkKGEV5PITjs.formatRecords; exports.formatZodErrors = _chunk3WTK7ESHjs.formatZodErrors; exports.formula = _chunkKGEV5PITjs.formula; exports.formulaConfigSchema = _chunk3WTK7ESHjs.formulaConfigSchema; exports.generateCssVariables = _chunkKGEV5PITjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getActiveTab = getActiveTab; exports.getAttributeConfigSchema = _chunk3WTK7ESHjs.getAttributeConfigSchema; exports.getContext = _chunkKGEV5PITjs.getContext; exports.getContextValue = _chunkKGEV5PITjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkKGEV5PITjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkKGEV5PITjs.getErrorMessage; exports.getFeatureFlags = _chunkKGEV5PITjs.getFeatureFlags; exports.getFeatureValue = _chunkKGEV5PITjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunk3WTK7ESHjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkKGEV5PITjs.getNodeOutputs; exports.getPathDepth = _chunkKGEV5PITjs.getPathDepth; exports.getPolicy = _chunkKGEV5PITjs.getPolicy; exports.getRelationPath = _chunkKGEV5PITjs.getRelationPath; exports.getRollupFilterOperators = getRollupFilterOperators; exports.getSchemaByNameFromContext = _chunkKGEV5PITjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkKGEV5PITjs.getSchemaContext; exports.getSchemaFromContext = _chunkKGEV5PITjs.getSchemaFromContext; exports.getSyncPreview = _chunkKGEV5PITjs.getSyncPreview; exports.getSystemAttributeList = _chunkKGEV5PITjs.getSystemAttributeList; exports.getSystemTemplate = _chunkKGEV5PITjs.getSystemTemplate; exports.getTargetAttributeName = _chunkKGEV5PITjs.getTargetAttributeName; exports.getTenantId = _chunkKGEV5PITjs.getTenantId; exports.getUserId = _chunkKGEV5PITjs.getUserId; exports.getViewSeedPreview = _chunkKGEV5PITjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkKGEV5PITjs.getViewSyncPreview; exports.group = _chunkKGEV5PITjs.group; exports.hasContext = _chunkKGEV5PITjs.hasContext; exports.hasFeatureFlagsContext = _chunkKGEV5PITjs.hasFeatureFlagsContext; exports.hasProperties = _chunkKGEV5PITjs.hasProperties; exports.hasRelationReferences = _chunkKGEV5PITjs.hasRelationReferences; exports.hasSchemaContext = _chunkKGEV5PITjs.hasSchemaContext; exports.hashOptions = _chunkKGEV5PITjs.hashOptions; exports.inValues = _chunkKGEV5PITjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.inferInverseCardinality = _chunkKGEV5PITjs.inferInverseCardinality; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkKGEV5PITjs.isAdvancedFormNode; exports.isAttributeSortable = _chunkKGEV5PITjs.isAttributeSortable; exports.isBehaviorProperty = _chunkKGEV5PITjs.isBehaviorProperty; exports.isBilateralRelation = _chunkKGEV5PITjs.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkKGEV5PITjs.isConditionGroup; exports.isConditionNode = _chunkKGEV5PITjs.isConditionNode; exports.isConditionRule = _chunkKGEV5PITjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk7WT53FJ4js.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentNode = _chunkKGEV5PITjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkKGEV5PITjs.isEmpty; exports.isEndNode = _chunkKGEV5PITjs.isEndNode; exports.isFeatureEnabled = _chunkKGEV5PITjs.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkKGEV5PITjs.isForbiddenError; exports.isFormNode = _chunkKGEV5PITjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkKGEV5PITjs.isGrantExpired; exports.isGrantRevoked = _chunkKGEV5PITjs.isGrantRevoked; exports.isGrantValid = _chunkKGEV5PITjs.isGrantValid; exports.isIdentityProperty = _chunkKGEV5PITjs.isIdentityProperty; exports.isInstanceEvent = _chunkKGEV5PITjs.isInstanceEvent; exports.isInstanceTerminal = _chunkKGEV5PITjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkKGEV5PITjs.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunkKGEV5PITjs.isInvitationAccepted; exports.isInvitationExpired = _chunkKGEV5PITjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkKGEV5PITjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkKGEV5PITjs.isInvitationValid; exports.isLabelExpression = _chunkKGEV5PITjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkKGEV5PITjs.isNodeEvent; exports.isNotEmpty = _chunkKGEV5PITjs.isNotEmpty; exports.isNotFoundError = _chunkKGEV5PITjs.isNotFoundError; exports.isPresentationProperty = _chunkKGEV5PITjs.isPresentationProperty; exports.isProtectedResourceError = _chunkKGEV5PITjs.isProtectedResourceError; exports.isRecordComplete = _chunk3WTK7ESHjs.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunkKGEV5PITjs.isSchemaError; exports.isSimpleFormNode = _chunkKGEV5PITjs.isSimpleFormNode; exports.isStartNode = _chunkKGEV5PITjs.isStartNode; exports.isSystemAttribute = _chunkKGEV5PITjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkKGEV5PITjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkKGEV5PITjs.isSystemTemplate; exports.isSystemWorkflow = _chunkKGEV5PITjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkKGEV5PITjs.isTokenRevoked; exports.isUniversalRelation = _chunkKGEV5PITjs.isUniversalRelation; exports.isValidationError = _chunkKGEV5PITjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkKGEV5PITjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkKGEV5PITjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkKGEV5PITjs.listView; exports.location = _chunkKGEV5PITjs.location; exports.locationConfigSchema = _chunk3WTK7ESHjs.locationConfigSchema; exports.mergeWithDefaults = _chunkKGEV5PITjs.mergeWithDefaults; exports.multiselect = _chunkKGEV5PITjs.multiselect; exports.multiselectConfigSchema = _chunk3WTK7ESHjs.multiselectConfigSchema; exports.neq = _chunkKGEV5PITjs.neq; exports.normalizePhoneNumber = _chunk3WTK7ESHjs.normalizePhoneNumber; exports.number = _chunkKGEV5PITjs.number; exports.numberConfigSchema = _chunk3WTK7ESHjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkKGEV5PITjs.object; exports.or = _chunkKGEV5PITjs.or; exports.parseAttributeConfig = _chunk3WTK7ESHjs.parseAttributeConfig; exports.parsePath = _chunkKGEV5PITjs.parsePath; exports.parseRawPhoneInput = _chunk3WTK7ESHjs.parseRawPhoneInput; exports.pathHasManyCardinality = _chunkKGEV5PITjs.pathHasManyCardinality; exports.phone = _chunkKGEV5PITjs.phone; exports.phoneConfigSchema = _chunk3WTK7ESHjs.phoneConfigSchema; exports.rating = _chunkKGEV5PITjs.rating; exports.ratingConfigSchema = _chunk3WTK7ESHjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkKGEV5PITjs.recalculateParentRollups; exports.registry = _chunkKGEV5PITjs.registry; exports.relation = _chunkKGEV5PITjs.relation; exports.relationConfigSchema = _chunk3WTK7ESHjs.relationConfigSchema; exports.relationGroup = _chunkKGEV5PITjs.relationGroup; exports.renderLabelExpression = _chunkKGEV5PITjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkKGEV5PITjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkKGEV5PITjs.resolveSingleValue; exports.richtext = _chunkKGEV5PITjs.richtext; exports.richtextConfigSchema = _chunk3WTK7ESHjs.richtextConfigSchema; exports.rollup = _chunkKGEV5PITjs.rollup; exports.rollupConfigSchema = _chunk3WTK7ESHjs.rollupConfigSchema; exports.runWithContext = _chunkKGEV5PITjs.runWithContext; exports.runWithFeatureFlags = _chunkKGEV5PITjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkKGEV5PITjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkKGEV5PITjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunk3WTK7ESHjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkKGEV5PITjs.seedRegistryViews; exports.select = _chunkKGEV5PITjs.select; exports.selectConfigSchema = _chunk3WTK7ESHjs.selectConfigSchema; exports.setContextValue = _chunkKGEV5PITjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkKGEV5PITjs.status; exports.statusConfigSchema = _chunk3WTK7ESHjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkKGEV5PITjs.success; exports.syncAll = _chunkKGEV5PITjs.syncAll; exports.syncNativeObjects = _chunkKGEV5PITjs.syncNativeObjects; exports.syncNativeViews = _chunkKGEV5PITjs.syncNativeViews; exports.text = _chunkKGEV5PITjs.text; exports.textConfigSchema = _chunk3WTK7ESHjs.textConfigSchema; exports.textarea = _chunkKGEV5PITjs.textarea; exports.textareaConfigSchema = _chunk3WTK7ESHjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkKGEV5PITjs.toUndefinedIfEmpty; exports.traversePath = _chunkKGEV5PITjs.traversePath; exports.tryGetFeatureValue = _chunkKGEV5PITjs.tryGetFeatureValue; exports.user = _chunkKGEV5PITjs.user; exports.userConfigSchema = _chunk3WTK7ESHjs.userConfigSchema; exports.validateAttribute = _chunk3WTK7ESHjs.validateAttribute; exports.validateAttributeConfig = _chunk3WTK7ESHjs.validateAttributeConfig; exports.validateDraft = _chunk3WTK7ESHjs.validateDraft; exports.validateDraftOrThrow = _chunk3WTK7ESHjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkKGEV5PITjs.validateFormulaExpression; exports.validateObject = _chunk3WTK7ESHjs.validateObject; exports.validateObjectOrThrow = _chunk3WTK7ESHjs.validateObjectOrThrow; exports.validatePath = _chunkKGEV5PITjs.validatePath; exports.validatePhoneNumber = _chunk3WTK7ESHjs.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunkKGEV5PITjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkKGEV5PITjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkKGEV5PITjs.verifyRegistryViewsSeeded; exports.view = _chunkKGEV5PITjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkKGEV5PITjs.wait; exports.withFeatureFlags = _chunkKGEV5PITjs.withFeatureFlags; exports.withTenantContext = _chunkKGEV5PITjs.withTenantContext; exports.workflow = _chunkKGEV5PITjs.workflow;
2062
+
2063
+
2064
+
2065
+ exports.ALL_ACTIONS = ALL_ACTIONS; exports.ALL_SYSTEM_RESOURCES = _chunk7WT53FJ4js.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkY4FDI32Gjs.ActivityTabConfig; exports.AttributeInUseError = _chunkY4FDI32Gjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkY4FDI32Gjs.AttributeNotFoundError; exports.AuditService = _chunkY4FDI32Gjs.AuditService; exports.AuthMethodSchema = _chunkY4FDI32Gjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkY4FDI32Gjs.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunkY4FDI32Gjs.BaseRepository; exports.BaseService = _chunkY4FDI32Gjs.BaseService; exports.ConcurrentModificationError = _chunkY4FDI32Gjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkY4FDI32Gjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkY4FDI32Gjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkY4FDI32Gjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkY4FDI32Gjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkY4FDI32Gjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkY4FDI32Gjs.CreateShareInputSchema; exports.CustomTabConfig = _chunkY4FDI32Gjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkY4FDI32Gjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk7WT53FJ4js.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk7WT53FJ4js.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_FOR_NEW_USERS = _chunk7WT53FJ4js.DEFAULT_ROLE_FOR_NEW_USERS; exports.DEFAULT_ROLE_LABELS = _chunk7WT53FJ4js.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk7WT53FJ4js.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkY4FDI32Gjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunk3WTK7ESHjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkY4FDI32Gjs.DRIVING_LICENSE; exports.DetailViewBuilder = _chunkY4FDI32Gjs.DetailViewBuilder; exports.DocumentExecutor = _chunkY4FDI32Gjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkY4FDI32Gjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkY4FDI32Gjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkY4FDI32Gjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkY4FDI32Gjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkY4FDI32Gjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkY4FDI32Gjs.DocumentProcessingService; exports.DocumentRenderError = _chunkY4FDI32Gjs.DocumentRenderError; exports.DocumentRendererService = _chunkY4FDI32Gjs.DocumentRendererService; exports.DocumentService = _chunkY4FDI32Gjs.DocumentService; exports.DocumentTemplateService = _chunkY4FDI32Gjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkY4FDI32Gjs.DocumentsTabConfig; exports.DuplicateError = _chunkY4FDI32Gjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkY4FDI32Gjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkY4FDI32Gjs.EndExecutor; exports.EndNodeSchema = _chunkY4FDI32Gjs.EndNodeSchema; exports.ExecutorRegistry = _chunkY4FDI32Gjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkY4FDI32Gjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkY4FDI32Gjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkY4FDI32Gjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkY4FDI32Gjs.FileNotFoundError; exports.FileService = _chunkY4FDI32Gjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkY4FDI32Gjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkY4FDI32Gjs.FlowRowSchema; exports.FlowsTabConfig = _chunkY4FDI32Gjs.FlowsTabConfig; exports.ForbiddenError = _chunkY4FDI32Gjs.ForbiddenError; exports.FormExecutor = _chunkY4FDI32Gjs.FormExecutor; exports.FormFieldRefSchema = _chunkY4FDI32Gjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkY4FDI32Gjs.FormNodeSchema; exports.FormulaResolverService = _chunkY4FDI32Gjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkY4FDI32Gjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkY4FDI32Gjs.GeocodingService; exports.GlobalSearchService = _chunkY4FDI32Gjs.GlobalSearchService; exports.GrantExpiredError = _chunkY4FDI32Gjs.GrantExpiredError; exports.GrantNotFoundError = _chunkY4FDI32Gjs.GrantNotFoundError; exports.GrantRevokedError = _chunkY4FDI32Gjs.GrantRevokedError; exports.GroupBuilder = _chunkY4FDI32Gjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkY4FDI32Gjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkY4FDI32Gjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkY4FDI32Gjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkY4FDI32Gjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkY4FDI32Gjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkY4FDI32Gjs.InvitationRevokedError; exports.ListViewBuilder = _chunkY4FDI32Gjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkY4FDI32Gjs.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunkY4FDI32Gjs.MaxDepthExceededError; exports.NON_SORTABLE_TYPES = _chunkY4FDI32Gjs.NON_SORTABLE_TYPES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkY4FDI32Gjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkY4FDI32Gjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkY4FDI32Gjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkY4FDI32Gjs.NoopHookRegistry; exports.NotFoundError = _chunkY4FDI32Gjs.NotFoundError; exports.NotSystemObjectError = _chunkY4FDI32Gjs.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkY4FDI32Gjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkY4FDI32Gjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkY4FDI32Gjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkY4FDI32Gjs.ObjectSchemaService; exports.PASSPORT = _chunkY4FDI32Gjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkY4FDI32Gjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkY4FDI32Gjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkY4FDI32Gjs.PermissionService; exports.PolicyRegistry = _chunkY4FDI32Gjs.PolicyRegistry; exports.PolicyViolationError = _chunkY4FDI32Gjs.PolicyViolationError; exports.ProtectedResourceError = _chunkY4FDI32Gjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkY4FDI32Gjs.ProtectedRoleError; exports.QueryBuilder = _chunkY4FDI32Gjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkY4FDI32Gjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkY4FDI32Gjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkY4FDI32Gjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkY4FDI32Gjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkY4FDI32Gjs.RecordNotFoundError; exports.RecordQueryService = _chunkY4FDI32Gjs.RecordQueryService; exports.RecordReferencedError = _chunkY4FDI32Gjs.RecordReferencedError; exports.RecordResolverService = _chunkY4FDI32Gjs.RecordResolverService; exports.RecordService = _chunkY4FDI32Gjs.RecordService; exports.RelationGroupBuilder = _chunkY4FDI32Gjs.RelationGroupBuilder; exports.RelationPropertiesService = _chunkY4FDI32Gjs.RelationPropertiesService; exports.RelationService = _chunkY4FDI32Gjs.RelationService; exports.RichtextTabConfig = _chunkY4FDI32Gjs.RichtextTabConfig; exports.RoleNotFoundError = _chunkY4FDI32Gjs.RoleNotFoundError; exports.RollupScheduler = _chunkY4FDI32Gjs.RollupScheduler; exports.RollupService = _chunkY4FDI32Gjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkY4FDI32Gjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkY4FDI32Gjs.SIGNABLE_CONTRACT; exports.SORTABLE_ATTRIBUTE_TYPES = _chunkY4FDI32Gjs.SORTABLE_ATTRIBUTE_TYPES; exports.SYSTEM_ATTRIBUTES = _chunkY4FDI32Gjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkY4FDI32Gjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk7WT53FJ4js.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk7WT53FJ4js.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkY4FDI32Gjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkY4FDI32Gjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkY4FDI32Gjs.SchemaContextAwareRepository; exports.SchemaError = _chunkY4FDI32Gjs.SchemaError; exports.SchemaErrorCode = _chunkY4FDI32Gjs.SchemaErrorCode; exports.ShareStatusSchema = _chunkY4FDI32Gjs.ShareStatusSchema; exports.SlotModeSchema = _chunkY4FDI32Gjs.SlotModeSchema; exports.StartExecutor = _chunkY4FDI32Gjs.StartExecutor; exports.StartNodeSchema = _chunkY4FDI32Gjs.StartNodeSchema; exports.StorageDownloadNotSupportedError = _chunkY4FDI32Gjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkY4FDI32Gjs.SyncError; exports.TabBuilder = _chunkY4FDI32Gjs.TabBuilder; exports.TableTabConfig = _chunkY4FDI32Gjs.TableTabConfig; exports.TenantContextError = _chunkY4FDI32Gjs.TenantContextError; exports.ThemeColorsSchema = _chunkY4FDI32Gjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkY4FDI32Gjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkY4FDI32Gjs.TokenRevokedError; exports.USER_STATUSES = USER_STATUSES; exports.UserProfileNotFoundError = _chunkY4FDI32Gjs.UserProfileNotFoundError; exports.UserProfileService = _chunkY4FDI32Gjs.UserProfileService; exports.UserService = _chunkY4FDI32Gjs.UserService; exports.ValidationError = _chunkY4FDI32Gjs.ValidationError; exports.ViewBuilder = _chunkY4FDI32Gjs.ViewBuilder; exports.ViewService = _chunkY4FDI32Gjs.ViewService; exports.ViewportSchema = _chunkY4FDI32Gjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkY4FDI32Gjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkY4FDI32Gjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkY4FDI32Gjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkY4FDI32Gjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkY4FDI32Gjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkY4FDI32Gjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkY4FDI32Gjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkY4FDI32Gjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkY4FDI32Gjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkY4FDI32Gjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkY4FDI32Gjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkY4FDI32Gjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkY4FDI32Gjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkY4FDI32Gjs.WorkflowRelationService; exports.WorkflowService = _chunkY4FDI32Gjs.WorkflowService; exports.WorkflowShareSchema = _chunkY4FDI32Gjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkY4FDI32Gjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkY4FDI32Gjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkY4FDI32Gjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkY4FDI32Gjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkY4FDI32Gjs.WorkflowThemeSchema; exports.accessLevelToActions = accessLevelToActions; exports.actionsToAccessLevel = actionsToAccessLevel; exports.addSchemaToContext = _chunkY4FDI32Gjs.addSchemaToContext; exports.and = _chunkY4FDI32Gjs.and; exports.applyDefaultValues = _chunkY4FDI32Gjs.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunk3WTK7ESHjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkY4FDI32Gjs.buildAuditChanges; exports.buildPolicyContext = _chunkY4FDI32Gjs.buildPolicyContext; exports.cacheKeys = _chunkY4FDI32Gjs.cacheKeys; exports.cacheTtl = _chunkY4FDI32Gjs.cacheTtl; exports.canAccessNode = _chunkY4FDI32Gjs.canAccessNode; exports.canResumeInstance = _chunkY4FDI32Gjs.canResumeInstance; exports.checkPermission = _chunkY4FDI32Gjs.checkPermission; exports.checkRecordAccess = _chunkY4FDI32Gjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkY4FDI32Gjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkY4FDI32Gjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkY4FDI32Gjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkY4FDI32Gjs.checkbox; exports.checkboxConfigSchema = _chunk3WTK7ESHjs.checkboxConfigSchema; exports.complete = _chunkY4FDI32Gjs.complete; exports.computeLabel = _chunkY4FDI32Gjs.computeLabel; exports.computeLabelWithRelations = _chunkY4FDI32Gjs.computeLabelWithRelations; exports.computeRecordStatus = _chunk3WTK7ESHjs.computeRecordStatus; exports.createAttributeValidator = _chunk3WTK7ESHjs.createAttributeValidator; exports.createCheckboxValidator = _chunk3WTK7ESHjs.createCheckboxValidator; exports.createContextForCreate = _chunkY4FDI32Gjs.createContextForCreate; exports.createContextForDelete = _chunkY4FDI32Gjs.createContextForDelete; exports.createContextForRestore = _chunkY4FDI32Gjs.createContextForRestore; exports.createContextForUpdate = _chunkY4FDI32Gjs.createContextForUpdate; exports.createCurrencyValidator = _chunk3WTK7ESHjs.createCurrencyValidator; exports.createDateValidator = _chunk3WTK7ESHjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkY4FDI32Gjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkY4FDI32Gjs.createDefaultState; exports.createDraftValidator = _chunk3WTK7ESHjs.createDraftValidator; exports.createEmptyContext = _chunkY4FDI32Gjs.createEmptyContext; exports.createFileValidator = _chunk3WTK7ESHjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunk3WTK7ESHjs.createFormAttributeValidator; exports.createFormulaValidator = _chunk3WTK7ESHjs.createFormulaValidator; exports.createLocationValidator = _chunk3WTK7ESHjs.createLocationValidator; exports.createMockAdapter = _chunkY4FDI32Gjs.createMockAdapter; exports.createMultiRelationValidator = _chunk3WTK7ESHjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk3WTK7ESHjs.createMultiselectValidator; exports.createNumberValidator = _chunk3WTK7ESHjs.createNumberValidator; exports.createObjectValidator = _chunk3WTK7ESHjs.createObjectValidator; exports.createPhoneValidator = _chunk3WTK7ESHjs.createPhoneValidator; exports.createQueryBuilder = _chunkY4FDI32Gjs.createQueryBuilder; exports.createRatingValidator = _chunk3WTK7ESHjs.createRatingValidator; exports.createRelationValidator = _chunk3WTK7ESHjs.createRelationValidator; exports.createRichtextValidator = _chunk3WTK7ESHjs.createRichtextValidator; exports.createRollupValidator = _chunk3WTK7ESHjs.createRollupValidator; exports.createSelectValidator = _chunk3WTK7ESHjs.createSelectValidator; exports.createSingleRelationValidator = _chunk3WTK7ESHjs.createSingleRelationValidator; exports.createStartTransition = _chunkY4FDI32Gjs.createStartTransition; exports.createStatusValidator = _chunk3WTK7ESHjs.createStatusValidator; exports.createTextAreaValidator = _chunk3WTK7ESHjs.createTextAreaValidator; exports.createTextValidator = _chunk3WTK7ESHjs.createTextValidator; exports.createUserValidator = _chunk3WTK7ESHjs.createUserValidator; exports.currency = _chunkY4FDI32Gjs.currency; exports.currencyConfigSchema = _chunk3WTK7ESHjs.currencyConfigSchema; exports.date = _chunkY4FDI32Gjs.date; exports.dateConfigSchema = _chunk3WTK7ESHjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkY4FDI32Gjs.defaultPolicyRegistry; exports.defaultTtl = _chunkY4FDI32Gjs.defaultTtl; exports.detailView = _chunkY4FDI32Gjs.detailView; exports.document = _chunkY4FDI32Gjs.document; exports.documentConfigSchema = _chunk3WTK7ESHjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkY4FDI32Gjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkY4FDI32Gjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkY4FDI32Gjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkY4FDI32Gjs.enrichWithFormulas; exports.eq = _chunkY4FDI32Gjs.eq; exports.error = _chunkY4FDI32Gjs.error; exports.evaluate = _chunkY4FDI32Gjs.evaluate; exports.evaluateCondition = _chunkY4FDI32Gjs.evaluateCondition; exports.evaluateFormula = _chunkY4FDI32Gjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkY4FDI32Gjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkY4FDI32Gjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkY4FDI32Gjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkY4FDI32Gjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkY4FDI32Gjs.evaluateWithTrace; exports.extractAttributeNames = _chunkY4FDI32Gjs.extractAttributeNames; exports.extractFormulaVariables = _chunkY4FDI32Gjs.extractFormulaVariables; exports.extractRelationIds = _chunkY4FDI32Gjs.extractRelationIds; exports.extractRelationNames = _chunkY4FDI32Gjs.extractRelationNames; exports.extractRelationReferences = _chunkY4FDI32Gjs.extractRelationReferences; exports.file = _chunkY4FDI32Gjs.file; exports.fileConfigSchema = _chunk3WTK7ESHjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkY4FDI32Gjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkY4FDI32Gjs.formatAttributeValue; exports.formatFormulaResult = _chunkY4FDI32Gjs.formatFormulaResult; exports.formatPhoneForDisplay = _chunk3WTK7ESHjs.formatPhoneForDisplay; exports.formatRecord = _chunkY4FDI32Gjs.formatRecord; exports.formatRecords = _chunkY4FDI32Gjs.formatRecords; exports.formatZodErrors = _chunk3WTK7ESHjs.formatZodErrors; exports.formula = _chunkY4FDI32Gjs.formula; exports.formulaConfigSchema = _chunk3WTK7ESHjs.formulaConfigSchema; exports.generateCssVariables = _chunkY4FDI32Gjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getActiveTab = getActiveTab; exports.getAttributeConfigSchema = _chunk3WTK7ESHjs.getAttributeConfigSchema; exports.getContext = _chunkY4FDI32Gjs.getContext; exports.getContextValue = _chunkY4FDI32Gjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkY4FDI32Gjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkY4FDI32Gjs.getErrorMessage; exports.getFeatureFlags = _chunkY4FDI32Gjs.getFeatureFlags; exports.getFeatureValue = _chunkY4FDI32Gjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunk3WTK7ESHjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkY4FDI32Gjs.getNodeOutputs; exports.getPathDepth = _chunkY4FDI32Gjs.getPathDepth; exports.getPolicy = _chunkY4FDI32Gjs.getPolicy; exports.getRelationPath = _chunkY4FDI32Gjs.getRelationPath; exports.getRollupFilterOperators = getRollupFilterOperators; exports.getSchemaByNameFromContext = _chunkY4FDI32Gjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkY4FDI32Gjs.getSchemaContext; exports.getSchemaFromContext = _chunkY4FDI32Gjs.getSchemaFromContext; exports.getSyncPreview = _chunkY4FDI32Gjs.getSyncPreview; exports.getSystemAttributeList = _chunkY4FDI32Gjs.getSystemAttributeList; exports.getSystemTemplate = _chunkY4FDI32Gjs.getSystemTemplate; exports.getTargetAttributeName = _chunkY4FDI32Gjs.getTargetAttributeName; exports.getTenantId = _chunkY4FDI32Gjs.getTenantId; exports.getUserId = _chunkY4FDI32Gjs.getUserId; exports.getViewSeedPreview = _chunkY4FDI32Gjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkY4FDI32Gjs.getViewSyncPreview; exports.group = _chunkY4FDI32Gjs.group; exports.hasContext = _chunkY4FDI32Gjs.hasContext; exports.hasFeatureFlagsContext = _chunkY4FDI32Gjs.hasFeatureFlagsContext; exports.hasProperties = _chunkY4FDI32Gjs.hasProperties; exports.hasRelationReferences = _chunkY4FDI32Gjs.hasRelationReferences; exports.hasSchemaContext = _chunkY4FDI32Gjs.hasSchemaContext; exports.hashOptions = _chunkY4FDI32Gjs.hashOptions; exports.inValues = _chunkY4FDI32Gjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.inferInverseCardinality = _chunkY4FDI32Gjs.inferInverseCardinality; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkY4FDI32Gjs.isAdvancedFormNode; exports.isAttributeSortable = _chunkY4FDI32Gjs.isAttributeSortable; exports.isBehaviorProperty = _chunkY4FDI32Gjs.isBehaviorProperty; exports.isBilateralRelation = _chunkY4FDI32Gjs.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkY4FDI32Gjs.isConditionGroup; exports.isConditionNode = _chunkY4FDI32Gjs.isConditionNode; exports.isConditionRule = _chunkY4FDI32Gjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk7WT53FJ4js.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentNode = _chunkY4FDI32Gjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkY4FDI32Gjs.isEmpty; exports.isEndNode = _chunkY4FDI32Gjs.isEndNode; exports.isFeatureEnabled = _chunkY4FDI32Gjs.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = _chunkY4FDI32Gjs.isFlowDefinition; exports.isFlowFieldsRow = _chunkY4FDI32Gjs.isFlowFieldsRow; exports.isFlowPublished = _chunkY4FDI32Gjs.isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkY4FDI32Gjs.isForbiddenError; exports.isFormFieldsRow = _chunkY4FDI32Gjs.isFormFieldsRow; exports.isFormNode = _chunkY4FDI32Gjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkY4FDI32Gjs.isGrantExpired; exports.isGrantRevoked = _chunkY4FDI32Gjs.isGrantRevoked; exports.isGrantValid = _chunkY4FDI32Gjs.isGrantValid; exports.isIdentityProperty = _chunkY4FDI32Gjs.isIdentityProperty; exports.isInstanceEvent = _chunkY4FDI32Gjs.isInstanceEvent; exports.isInstanceTerminal = _chunkY4FDI32Gjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkY4FDI32Gjs.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunkY4FDI32Gjs.isInvitationAccepted; exports.isInvitationExpired = _chunkY4FDI32Gjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkY4FDI32Gjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkY4FDI32Gjs.isInvitationValid; exports.isLabelExpression = _chunkY4FDI32Gjs.isLabelExpression; exports.isLayoutRow = _chunkY4FDI32Gjs.isLayoutRow; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkY4FDI32Gjs.isNodeEvent; exports.isNotEmpty = _chunkY4FDI32Gjs.isNotEmpty; exports.isNotFoundError = _chunkY4FDI32Gjs.isNotFoundError; exports.isPresentationProperty = _chunkY4FDI32Gjs.isPresentationProperty; exports.isProtectedResourceError = _chunkY4FDI32Gjs.isProtectedResourceError; exports.isRecordComplete = _chunk3WTK7ESHjs.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunkY4FDI32Gjs.isSchemaError; exports.isSimpleFormNode = _chunkY4FDI32Gjs.isSimpleFormNode; exports.isStartNode = _chunkY4FDI32Gjs.isStartNode; exports.isSystemAttribute = _chunkY4FDI32Gjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkY4FDI32Gjs.isSystemAttributeObject; exports.isSystemFlow = _chunkY4FDI32Gjs.isSystemFlow; exports.isSystemTemplate = _chunkY4FDI32Gjs.isSystemTemplate; exports.isSystemWorkflow = _chunkY4FDI32Gjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkY4FDI32Gjs.isTokenRevoked; exports.isUniversalRelation = _chunkY4FDI32Gjs.isUniversalRelation; exports.isValidationError = _chunkY4FDI32Gjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkY4FDI32Gjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkY4FDI32Gjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkY4FDI32Gjs.listView; exports.location = _chunkY4FDI32Gjs.location; exports.locationConfigSchema = _chunk3WTK7ESHjs.locationConfigSchema; exports.mergeWithDefaults = _chunkY4FDI32Gjs.mergeWithDefaults; exports.multiselect = _chunkY4FDI32Gjs.multiselect; exports.multiselectConfigSchema = _chunk3WTK7ESHjs.multiselectConfigSchema; exports.neq = _chunkY4FDI32Gjs.neq; exports.normalizePhoneNumber = _chunk3WTK7ESHjs.normalizePhoneNumber; exports.number = _chunkY4FDI32Gjs.number; exports.numberConfigSchema = _chunk3WTK7ESHjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkY4FDI32Gjs.object; exports.or = _chunkY4FDI32Gjs.or; exports.parseAttributeConfig = _chunk3WTK7ESHjs.parseAttributeConfig; exports.parsePath = _chunkY4FDI32Gjs.parsePath; exports.parseRawPhoneInput = _chunk3WTK7ESHjs.parseRawPhoneInput; exports.pathHasManyCardinality = _chunkY4FDI32Gjs.pathHasManyCardinality; exports.phone = _chunkY4FDI32Gjs.phone; exports.phoneConfigSchema = _chunk3WTK7ESHjs.phoneConfigSchema; exports.rating = _chunkY4FDI32Gjs.rating; exports.ratingConfigSchema = _chunk3WTK7ESHjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkY4FDI32Gjs.recalculateParentRollups; exports.registry = _chunkY4FDI32Gjs.registry; exports.relation = _chunkY4FDI32Gjs.relation; exports.relationConfigSchema = _chunk3WTK7ESHjs.relationConfigSchema; exports.relationGroup = _chunkY4FDI32Gjs.relationGroup; exports.renderLabelExpression = _chunkY4FDI32Gjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkY4FDI32Gjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkY4FDI32Gjs.resolveSingleValue; exports.richtext = _chunkY4FDI32Gjs.richtext; exports.richtextConfigSchema = _chunk3WTK7ESHjs.richtextConfigSchema; exports.rollup = _chunkY4FDI32Gjs.rollup; exports.rollupConfigSchema = _chunk3WTK7ESHjs.rollupConfigSchema; exports.runWithContext = _chunkY4FDI32Gjs.runWithContext; exports.runWithFeatureFlags = _chunkY4FDI32Gjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkY4FDI32Gjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkY4FDI32Gjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunk3WTK7ESHjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkY4FDI32Gjs.seedRegistryViews; exports.select = _chunkY4FDI32Gjs.select; exports.selectConfigSchema = _chunk3WTK7ESHjs.selectConfigSchema; exports.setContextValue = _chunkY4FDI32Gjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkY4FDI32Gjs.status; exports.statusConfigSchema = _chunk3WTK7ESHjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkY4FDI32Gjs.success; exports.syncAll = _chunkY4FDI32Gjs.syncAll; exports.syncNativeObjects = _chunkY4FDI32Gjs.syncNativeObjects; exports.syncNativeViews = _chunkY4FDI32Gjs.syncNativeViews; exports.text = _chunkY4FDI32Gjs.text; exports.textConfigSchema = _chunk3WTK7ESHjs.textConfigSchema; exports.textarea = _chunkY4FDI32Gjs.textarea; exports.textareaConfigSchema = _chunk3WTK7ESHjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkY4FDI32Gjs.toUndefinedIfEmpty; exports.traversePath = _chunkY4FDI32Gjs.traversePath; exports.tryGetFeatureValue = _chunkY4FDI32Gjs.tryGetFeatureValue; exports.user = _chunkY4FDI32Gjs.user; exports.userConfigSchema = _chunk3WTK7ESHjs.userConfigSchema; exports.validateAttribute = _chunk3WTK7ESHjs.validateAttribute; exports.validateAttributeConfig = _chunk3WTK7ESHjs.validateAttributeConfig; exports.validateDraft = _chunk3WTK7ESHjs.validateDraft; exports.validateDraftOrThrow = _chunk3WTK7ESHjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkY4FDI32Gjs.validateFormulaExpression; exports.validateObject = _chunk3WTK7ESHjs.validateObject; exports.validateObjectOrThrow = _chunk3WTK7ESHjs.validateObjectOrThrow; exports.validatePath = _chunkY4FDI32Gjs.validatePath; exports.validatePhoneNumber = _chunk3WTK7ESHjs.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunkY4FDI32Gjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkY4FDI32Gjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkY4FDI32Gjs.verifyRegistryViewsSeeded; exports.view = _chunkY4FDI32Gjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkY4FDI32Gjs.wait; exports.withFeatureFlags = _chunkY4FDI32Gjs.withFeatureFlags; exports.withTenantContext = _chunkY4FDI32Gjs.withTenantContext; exports.workflow = _chunkY4FDI32Gjs.workflow;
package/dist/index.mjs CHANGED
@@ -253,7 +253,11 @@ import {
253
253
  isEmpty,
254
254
  isEndNode,
255
255
  isFeatureEnabled,
256
+ isFlowDefinition,
257
+ isFlowFieldsRow,
258
+ isFlowPublished,
256
259
  isForbiddenError,
260
+ isFormFieldsRow,
257
261
  isFormNode,
258
262
  isGrantExpired,
259
263
  isGrantRevoked,
@@ -267,6 +271,7 @@ import {
267
271
  isInvitationOrGrantEvent,
268
272
  isInvitationValid,
269
273
  isLabelExpression,
274
+ isLayoutRow,
270
275
  isNodeEvent,
271
276
  isNotEmpty,
272
277
  isNotFoundError,
@@ -277,6 +282,7 @@ import {
277
282
  isStartNode,
278
283
  isSystemAttribute,
279
284
  isSystemAttributeObject,
285
+ isSystemFlow,
280
286
  isSystemTemplate,
281
287
  isSystemWorkflow,
282
288
  isTokenRevoked,
@@ -333,7 +339,7 @@ import {
333
339
  withFeatureFlags,
334
340
  withTenantContext,
335
341
  workflow
336
- } from "./chunk-JYXUFVUD.mjs";
342
+ } from "./chunk-K5MARJCD.mjs";
337
343
  import {
338
344
  asTenantId,
339
345
  asUserId,
@@ -511,17 +517,6 @@ function getRollupFilterOperators(attr) {
511
517
  return OPERATORS_BY_TYPE.number;
512
518
  }
513
519
 
514
- // src/types/flows.ts
515
- function isFlowDefinition(obj) {
516
- return typeof obj === "object" && obj !== null && "slots" in obj && "pages" in obj && "relations" in obj && "status" in obj;
517
- }
518
- function isFlowPublished(flow) {
519
- return flow.status === "published";
520
- }
521
- function isSystemFlow(flow) {
522
- return flow.system === true;
523
- }
524
-
525
520
  // src/types/permissions.ts
526
521
  var ALL_ACTIONS = ["read", "create", "update", "delete"];
527
522
  function actionsToAccessLevel(actions) {
@@ -972,7 +967,7 @@ var FlagService = class {
972
967
  for (const name of this.staticDefaults.keys()) {
973
968
  flagNames.add(name);
974
969
  }
975
- const overrides = this.repository ? await this.getAllOverrides(context) : { global: [], tenant: [], user: [] };
970
+ const overrides = this.repository && flagNames.size > 0 ? await this.getAllOverrides(context, [...flagNames]) : { global: [], tenant: [], user: [] };
976
971
  for (const name of flagNames) {
977
972
  const value = this.resolveValue(name, overrides, context);
978
973
  resolved.set(name, value);
@@ -987,7 +982,7 @@ var FlagService = class {
987
982
  * @returns Resolved flag with source information
988
983
  */
989
984
  async resolve(flagName, context = {}) {
990
- const overrides = this.repository ? await this.getAllOverrides(context) : { global: [], tenant: [], user: [] };
985
+ const overrides = this.repository ? await this.getAllOverrides(context, [flagName]) : { global: [], tenant: [], user: [] };
991
986
  return this.resolveWithSource(flagName, overrides, context);
992
987
  }
993
988
  /**
@@ -1061,16 +1056,16 @@ var FlagService = class {
1061
1056
  // PRIVATE HELPERS
1062
1057
  // ============================================================================
1063
1058
  /**
1064
- * Get all overrides organized by level.
1059
+ * Get all overrides organized by level, optionally filtered to specific flag names.
1065
1060
  */
1066
- async getAllOverrides(context) {
1061
+ async getAllOverrides(context, flagNames) {
1067
1062
  if (!this.repository) {
1068
1063
  return { global: [], tenant: [], user: [] };
1069
1064
  }
1070
1065
  const [globalOverrides, tenantOverrides, userOverrides] = await Promise.all([
1071
- this.repository.getOverrides({ level: "global" }),
1072
- context.tenantId ? this.repository.getOverrides({ level: "tenant", targetId: context.tenantId }) : Promise.resolve([]),
1073
- context.userId ? this.repository.getOverrides({ level: "user", targetId: context.userId }) : Promise.resolve([])
1066
+ this.repository.getOverrides({ level: "global", flagNames }),
1067
+ context.tenantId ? this.repository.getOverrides({ level: "tenant", targetId: context.tenantId, flagNames }) : Promise.resolve([]),
1068
+ context.userId ? this.repository.getOverrides({ level: "user", targetId: context.userId, flagNames }) : Promise.resolve([])
1074
1069
  ]);
1075
1070
  return {
1076
1071
  global: globalOverrides,
@@ -1939,9 +1934,11 @@ export {
1939
1934
  isFeatureEnabled,
1940
1935
  isFieldGroup,
1941
1936
  isFlowDefinition,
1937
+ isFlowFieldsRow,
1942
1938
  isFlowPublished,
1943
1939
  isFlowsTab,
1944
1940
  isForbiddenError,
1941
+ isFormFieldsRow,
1945
1942
  isFormNode,
1946
1943
  isFormTab,
1947
1944
  isGalleryView,
@@ -1958,6 +1955,7 @@ export {
1958
1955
  isInvitationOrGrantEvent,
1959
1956
  isInvitationValid,
1960
1957
  isLabelExpression,
1958
+ isLayoutRow,
1961
1959
  isListView,
1962
1960
  isNoValueOperator,
1963
1961
  isNodeEvent,
@@ -1,4 +1,4 @@
1
- import { a5 as Timestamps, A as Attribute, q as AttributeType, o as RollupAttribute, K as Location, Q as LocationGranularity, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, P as Phone, J as Currency, m as FormulaAttribute, a8 as CompletionStatus, a6 as SharingMode, a9 as ObjectRecord, r as ObjectDefinition, v as FeatureFlagsRepository, b1 as ValidationResult, ae as PropertySchema, i as RelationAttribute, n as FormulaReturnType } from './validators-DUB0tEzp.mjs';
1
+ import { a5 as Timestamps, A as Attribute, q as AttributeType, o as RollupAttribute, K as Location, Q as LocationGranularity, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, P as Phone, J as Currency, m as FormulaAttribute, a8 as CompletionStatus, a6 as SharingMode, a9 as ObjectRecord, r as ObjectDefinition, v as FeatureFlagsRepository, b1 as ValidationResult, ae as PropertySchema, i as RelationAttribute, n as FormulaReturnType } from './validators-DVfMzWfY.mjs';
2
2
  import { IconName, MimeType, ColorId, CountryIso3 } from '@stndrds/constants';
3
3
  import { Uuid, TenantId, UserId } from './utils.mjs';
4
4
  import { JWTPayload } from 'jose';
@@ -266,6 +266,20 @@ type AIMessageRole = "user" | "assistant";
266
266
  * Level of "thinking" or reasoning depth
267
267
  */
268
268
  type AIThinkingLevel = "none" | "light" | "deep" | "maximum";
269
+ /**
270
+ * An AI model available for selection by the user.
271
+ * Configured on the backend and exposed via GET /agent/models.
272
+ */
273
+ interface AIAvailableModel {
274
+ /** Model identifier (e.g. "claude-sonnet-4-6") */
275
+ id: string;
276
+ /** Provider name (e.g. "anthropic", "google") */
277
+ provider: string;
278
+ /** Display label (e.g. "Claude 4.6 Sonnet") */
279
+ label: string;
280
+ /** Whether this is the default model */
281
+ isDefault?: boolean;
282
+ }
269
283
  /**
270
284
  * Tool call status during execution
271
285
  */
@@ -1476,20 +1490,71 @@ interface FlowRowField {
1476
1490
  attribute: string;
1477
1491
  /** Override label for this flow */
1478
1492
  label?: string;
1493
+ /** Override tooltip/description for this flow */
1494
+ tooltip?: string;
1479
1495
  /** Override required */
1480
1496
  required?: boolean;
1481
1497
  }
1482
1498
  /**
1483
- * Row containing fields that auto-distribute their width
1499
+ * Row type discriminator.
1500
+ * - "fields" (or undefined): standard row with data fields
1501
+ * - "heading": section heading
1502
+ * - "separator": visual divider
1503
+ * - "text": static descriptive text
1504
+ */
1505
+ type FlowRowType = "fields" | "heading" | "separator" | "text";
1506
+ /**
1507
+ * Standard row containing data fields
1484
1508
  */
1485
- interface FlowRow {
1509
+ interface FlowFieldsRow {
1486
1510
  /** Unique row ID */
1487
1511
  id: string;
1488
1512
  /** Display order within the page */
1489
1513
  order: number;
1514
+ /** Row type (optional for backward compat — defaults to "fields") */
1515
+ type?: "fields";
1490
1516
  /** Fields in this row (auto-distribute width) */
1491
1517
  fields: FlowRowField[];
1492
1518
  }
1519
+ /**
1520
+ * Heading row — renders a section title in the form
1521
+ */
1522
+ interface FlowHeadingRow {
1523
+ id: string;
1524
+ order: number;
1525
+ type: "heading";
1526
+ /** Heading text */
1527
+ content: string;
1528
+ /** Heading level (1 = large, 2 = medium, 3 = small) */
1529
+ level?: 1 | 2 | 3;
1530
+ }
1531
+ /**
1532
+ * Separator row — renders a visual divider
1533
+ */
1534
+ interface FlowSeparatorRow {
1535
+ id: string;
1536
+ order: number;
1537
+ type: "separator";
1538
+ }
1539
+ /**
1540
+ * Static text row — renders descriptive/instructional text
1541
+ */
1542
+ interface FlowTextRow {
1543
+ id: string;
1544
+ order: number;
1545
+ type: "text";
1546
+ /** Text content (supports basic markdown) */
1547
+ content: string;
1548
+ }
1549
+ /**
1550
+ * Union of all row types.
1551
+ * Use `isFlowFieldsRow()` / `isLayoutRow()` type guards for narrowing.
1552
+ */
1553
+ type FlowRow = FlowFieldsRow | FlowHeadingRow | FlowSeparatorRow | FlowTextRow;
1554
+ /** Check if a row is a standard fields row */
1555
+ declare function isFlowFieldsRow(row: FlowRow): row is FlowFieldsRow;
1556
+ /** Check if a row is a layout row (heading, separator, or text) */
1557
+ declare function isLayoutRow(row: FlowRow): row is FlowHeadingRow | FlowSeparatorRow | FlowTextRow;
1493
1558
  /**
1494
1559
  * Page/step in a flow
1495
1560
  */
@@ -3789,17 +3854,30 @@ interface FormFieldContext {
3789
3854
  readOnly: boolean;
3790
3855
  /** Reason for read-only (if applicable) */
3791
3856
  readOnlyReason?: ReadOnlyReason;
3857
+ /** Override label (from FlowRowField.label) */
3858
+ labelOverride?: string;
3859
+ /** Override tooltip/description (from FlowRowField.tooltip) */
3860
+ tooltipOverride?: string;
3792
3861
  }
3793
3862
  /**
3794
- * A row of form fields.
3795
- * Preserves the row structure defined in the workflow form node.
3863
+ * Standard row of form fields
3796
3864
  */
3797
- interface FormFieldRow {
3865
+ interface FormFieldsRow {
3798
3866
  /** Row ID from the workflow definition */
3799
3867
  id: string;
3868
+ /** Row type (optional for backward compat) */
3869
+ type?: "fields";
3800
3870
  /** Fields in this row */
3801
3871
  fields: FormFieldContext[];
3802
3872
  }
3873
+ /**
3874
+ * Union of all form row types.
3875
+ * Backward-compatible: rows without `type` are treated as field rows.
3876
+ * Layout rows (heading, separator, text) are shared with FlowRow types.
3877
+ */
3878
+ type FormFieldRow = FormFieldsRow | FlowHeadingRow | FlowSeparatorRow | FlowTextRow;
3879
+ /** Check if a form row contains fields */
3880
+ declare function isFormFieldsRow(row: FormFieldRow): row is FormFieldsRow;
3803
3881
  /**
3804
3882
  * Form node information
3805
3883
  */
@@ -12866,4 +12944,4 @@ interface FullSyncOptions extends SyncOptions, ViewSyncOptions {
12866
12944
  */
12867
12945
  declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof registry, nativeViewRegistry: typeof viewRegistry, options?: FullSyncOptions): Promise<FullSyncResult>;
12868
12946
 
12869
- export { type AIToolCallStatus as $, type Action as A, type BoundingBox as B, type CreateMode as C, type DetailViewLayout as D, type SignerRequest as E, type Field as F, type Group as G, type SignaturePosition as H, type InferAttributeValue as I, type SignatureRequestResult as J, type SignatureStatusResult as K, type ListViewDefinition as L, type SignerStatus as M, type SignatureStatus as N, type OcrAdapter as O, type IdentityVerificationAdapter as P, type VerifyInput as Q, type RelationGroup as R, type SystemResource as S, type Tab as T, type VerificationResult as U, type ViewType as V, type WorkflowTheme as W, type DocumentData as X, type VerificationCheck as Y, type AIMessageRole as Z, type AIThinkingLevel as _, type AttributeGroupField as a, type UpdateProcessingJob as a$, type AIToolCall as a0, type AIChatMessagePartType as a1, type TextPartData as a2, type ToolPartData as a3, type ThinkingPartData as a4, type ReasoningPartData as a5, type AIChatMessagePart as a6, type AIChatMessage as a7, type AIQuestionType as a8, type AIQuestionOption as a9, type AuditListOptions as aA, type AuditServiceOptions as aB, type VariableMapping as aC, type PdfTemplateField as aD, type TemplateSource as aE, type DocumentGenerationTemplate as aF, type CreateDocumentGenerationTemplate as aG, type UpdateDocumentGenerationTemplate as aH, type PendingDocumentRequest as aI, type DocumentSlotDefinition as aJ, type DocumentAutoProcessing as aK, type ExtractionMapping as aL, type ExtractionField as aM, type Document as aN, type DocumentStatus as aO, type DocumentSlot as aP, type SlotStatus as aQ, type ProcessingJob as aR, type ProcessingJobType as aS, type ProcessingJobStatus as aT, type CreateDocument as aU, type UpdateDocument as aV, type CreateDocumentTemplate as aW, type UpdateDocumentTemplate as aX, type CreateDocumentSlot as aY, type UpdateDocumentSlot as aZ, type CreateProcessingJob as a_, type AIQuestion as aa, type AIQuestionAnswer as ab, type AIBatchQuestionOption as ac, type AIBatchQuestion as ad, type AIBatchQuestionAnswer as ae, type AITodoStatus as af, type AITodoItem as ag, type AITodoList as ah, type AIMessageAttachment as ai, type AIConversation as aj, type AIMessage as ak, type AIToolCallRecord as al, type AIUserMemory as am, type AIUsageMetrics as an, type AIProviderMetrics as ao, type CreateAIMessageInput as ap, type AIMemoryType as aq, type AIMemoryEntry as ar, type AITenantPersona as as, type AICompactionSummary as at, type AuditResourceType as au, type AuditAction as av, type AuditActorType as aw, type AuditChange as ax, type AuditLogEntry as ay, type CreateAuditLogInput as az, type FieldGroup as b, type ExtractRecordUpdate as b$, type DocumentListOptions as b0, type DocumentTemplateListOptions as b1, type StorageProvider as b2, type FileVisibility as b3, type File as b4, type CreateFile as b5, type UpdateFile as b6, type TextFilterOperator as b7, type NumberFilterOperator as b8, type CheckboxFilterOperator as b9, type FlowDefinition as bA, isFlowDefinition as bB, isFlowPublished as bC, isSystemFlow as bD, type GeocodingSuggestion as bE, type GeocodingAutocompleteParams as bF, type ReverseGeocodingParams as bG, type GeocodingParams as bH, type GeocodingAdapter as bI, NoopGeocodingAdapter as bJ, type AttributeSchema as bK, type InferRecordFromSchema as bL, type InferRecordWithRequirements as bM, type TypedAttribute as bN, type AttributeMap as bO, type AddAttribute as bP, type InferRecord as bQ, type InferRecordInput as bR, type InferRecordUpdate as bS, type CustomAttributeValue as bT, type WithCustomAttributes as bU, type RecordMetadata as bV, type SystemFields as bW, type ExtractRecord as bX, type ExtractRecordStrict as bY, type ExtractRecordInput as bZ, type ExtractRecordInputStrict as b_, type DateFilterOperator as ba, type SelectFilterOperator as bb, type MultiselectFilterOperator as bc, type RelationFilterOperator as bd, type FilterOperator as be, type RelativeDateValue as bf, type CurrencyFilterValue as bg, type PhoneFilterValue as bh, type FilterValue as bi, type FilterRule as bj, type ExtendedFilterRule as bk, type FilterCombinator as bl, type FilterGroup as bm, type AdvancedFilterState as bn, type SortDirection as bo, type QueryState as bp, OPERATORS_BY_TYPE as bq, type NoValueOperator as br, NO_VALUE_OPERATORS as bs, isNoValueOperator as bt, getRollupFilterOperators as bu, type FlowSlot as bv, type FlowRowField as bw, type FlowPage as bx, type FlowRelation as by, type FlowStatus as bz, type SidePanelConfig as c, isActivityTab as c$, type ExtractRecordUpdateStrict as c0, type ExtractAttributes as c1, type TypedObjectRecord as c2, type ExtractObjectRecord as c3, type ExtractObjectRecordWithCustom as c4, type PermissionScope as c5, type AccessLevel as c6, ALL_ACTIONS as c7, actionsToAccessLevel as c8, accessLevelToActions as c9, type ActivityTab as cA, type RichtextTab as cB, type FlowsTab as cC, type DocumentsTab as cD, type ListViewLayout as cE, type DetailViewConfig as cF, type CalendarViewConfig as cG, type TimelineViewConfig as cH, type GalleryViewConfig as cI, type ViewConfig as cJ, type CalendarViewDefinition as cK, type TimelineViewDefinition as cL, type GalleryViewDefinition as cM, type ConfigOverrides as cN, type ViewOverlay as cO, isDetailView as cP, isListView as cQ, isCalendarView as cR, isTimelineView as cS, isGalleryView as cT, isFieldGroup as cU, isRelationGroup as cV, isFormTab as cW, isTableTab as cX, isRelationSourceTab as cY, isInverseSourceTab as cZ, isCustomTab as c_, type Role as ca, type Permission as cb, type UserRoleAssignment as cc, type EffectivePermissions as cd, type ObjectPermissions as ce, type SystemPermissions as cf, type CreateRoleInput as cg, type UpdateRoleInput as ch, type CreatePermissionInput as ci, type AssignRoleInput as cj, type PolicyContext as ck, type RecordPolicy as cl, PolicyViolationError as cm, type UserStatus as cn, USER_STATUSES as co, type UserProfile as cp, type CreateUserProfile as cq, type UpdateUserProfile as cr, type InviteUserInput as cs, type TabType as ct, type FormDensity as cu, type FormTab as cv, type RelationSource as cw, type InverseSource as cx, type TableSource as cy, type CustomTab as cz, type DetailViewDefinition as d, type FormFieldContext as d$, isRichtextTab as d0, isFlowsTab as d1, isDocumentsTab as d2, type ConditionNode as d3, type DocumentNode as d4, type EndNode as d5, type FormFieldRef as d6, type FormNode as d7, type StartNode as d8, type WorkflowNodeType as d9, type WorkflowError as dA, type WorkflowInstance as dB, type WorkflowTransition as dC, canResumeInstance as dD, createStartTransition as dE, isInstanceTerminal as dF, isInstanceWaiting as dG, type CreateInvitationInput as dH, type CreateInvitationResult as dI, type InvitationStatus as dJ, type WorkflowInvitation as dK, isInvitationAccepted as dL, isInvitationExpired as dM, isInvitationValid as dN, type CreateGrantInput as dO, type WorkflowAccessGrant as dP, canAccessNode as dQ, isGrantExpired as dR, isGrantRevoked as dS, isGrantValid as dT, isTokenRevoked as dU, type GeneratedDocument as dV, type WorkflowExecutionContext as dW, createEmptyContext as dX, getContextValue as dY, setContextValue as dZ, type FormContextResponse as d_, getNodeOutputs as da, isAdvancedFormNode as db, isConditionNode as dc, isDocumentNode as dd, isEndNode as de, isFormNode as df, isSimpleFormNode as dg, isStartNode as dh, type ConditionOperator as di, and as dj, eq as dk, inValues as dl, isConditionGroup as dm, isConditionRule as dn, neq as dp, or as dq, type CanvasViewport as dr, type NodePosition as ds, type WorkflowLayout as dt, type WorkflowSlot as du, type WorkflowStatus as dv, isSystemWorkflow as dw, isWorkflowDefinition as dx, isWorkflowPublished as dy, type PendingAction as dz, type InstanceStatus as e, withFeatureFlags as e$, type FormFieldRow as e0, type FormNodeInfo as e1, type ReadOnlyReason as e2, type WorkflowAccessMode as e3, type ThemeColors as e4, type ThemeLogo as e5, type ThemeTypography as e6, DEFAULT_THEME as e7, generateCssVariables as e8, mergeWithDefaults as e9, type InsertOptions as eA, type QueryBuilderState as eB, type RegistryMap as eC, type RegistryObjectNames as eD, type ShortcutOperator as eE, createDefaultState as eF, formatRecord as eG, formatRecords as eH, QueryMultipleResultsError as eI, QueryNoResultError as eJ, SHORTCUT_TO_FILTER_OPERATOR as eK, createQueryBuilder as eL, QueryBuilder as eM, type QueryBuilderOptions as eN, type EvaluationResult as eO, type EvaluationTrace as eP, evaluateCondition as eQ, evaluate as eR, evaluateWithTrace as eS, TenantContextError as eT, FeatureFlagsContextError as eU, getFeatureFlags as eV, getFeatureValue as eW, hasFeatureFlagsContext as eX, isFeatureEnabled as eY, runWithFeatureFlags as eZ, tryGetFeatureValue as e_, registry as ea, viewRegistry as eb, type ViewOverlaysRepository as ec, type RelationAttributeInput as ed, type RelationAttributeRow as ee, type RelationAttributesRepository as ef, SORTABLE_ATTRIBUTE_TYPES as eg, type SearchAdapter as eh, type DatabaseAdapter as ei, WorkflowJwtService as ej, type JwtVerificationResult as ek, type MagicLinkPayload as el, type WorkflowAccessPayload as em, type WorkflowJwtConfig as en, type WorkflowJwtPayload as eo, type CacheKeyType as ep, hashOptions as eq, type CacheAdapter as er, type CacheOptions as es, cacheKeys as et, cacheTtl as eu, defaultTtl as ev, NoopCacheAdapter as ew, type FetchResult as ex, type FormattedRecord as ey, type GroupedFetchResult as ez, type TableTab as f, type TraversalOptions as f$, type FeatureFlagsContext as f0, addSchemaToContext as f1, getSchemaByNameFromContext as f2, getSchemaContext as f3, getSchemaFromContext as f4, hasSchemaContext as f5, runWithMergedSchemaContext as f6, runWithSchemaContext as f7, type SchemaContext as f8, getContext as f9, evaluateFormulaAttribute as fA, evaluateFormulaAttributeWithRelations as fB, evaluateFormulaWithRelations as fC, evaluateFormulaWithResult as fD, extractFormulaVariables as fE, extractRelationNames as fF, extractRelationReferences as fG, flattenRelationsForEval as fH, formatFormulaResult as fI, hasRelationReferences as fJ, validateFormulaExpression as fK, type FormulaResult as fL, getPathDepth as fM, getRelationPath as fN, getTargetAttributeName as fO, InvalidPathError as fP, MaxDepthExceededError as fQ, parsePath as fR, pathHasManyCardinality as fS, validatePath as fT, type PathCardinality as fU, type PathSegment as fV, type PathSegmentType as fW, type SchemaResolver as fX, resolveMultiplePaths as fY, resolveSingleValue as fZ, traversePath as f_, getTenantId as fa, getUserId as fb, hasContext as fc, runWithContext as fd, withTenantContext as fe, type TenantContext as ff, createDefaultExecutorRegistry as fg, getDefaultExecutorRegistry as fh, type ExecutorCompleteResult as fi, type ExecutorContext as fj, type ExecutorErrorResult as fk, type ExecutorResult as fl, type ExecutorSuccessResult as fm, type ExecutorWaitResult as fn, type NodeExecutor as fo, complete as fp, error as fq, ExecutorRegistry as fr, success as fs, wait as ft, ConditionExecutor as fu, DocumentExecutor as fv, EndExecutor as fw, FormExecutor as fx, StartExecutor as fy, evaluateFormula as fz, type FilterState as g, type ResolvedRelations as g$, type TraversalResult as g0, type AttributeChange as g1, type HookContext as g2, type HookDefinition as g3, type HookHandler as g4, type HookType as g5, NoopHookRegistry as g6, type HookRegistry as g7, createMockAdapter as g8, type MockStores as g9, SchemaContextAwareRepository as gA, type CreateCustomObjectInput as gB, type AddAttributeInput as gC, type UpdateObjectInput as gD, type ObjectSchemaServiceOptions as gE, ObjectSchemaService as gF, type RecordServiceOptions as gG, RecordService as gH, type RecordQueryServiceOptions as gI, type QueryOptions as gJ, type SearchQueryOptions as gK, type QueryResult as gL, RecordQueryService as gM, type RelationValidationResult as gN, type RelationValidationError as gO, type RelationOption as gP, type RelationOptionsResponse as gQ, type GetRelationOptionsParams as gR, type RelationServiceOptions as gS, type ResolveIdsBatchRequest as gT, type ResolveIdsBatchResponse as gU, RelationService as gV, type MultiRelationValue as gW, type SingleRelationValue as gX, type HybridRelationValue as gY, RelationPropertiesService as gZ, RecordResolverService as g_, defaultPolicyRegistry as ga, PolicyRegistry as gb, type AIConversationsRepository as gc, type AIUsageMetricsRepository as gd, type AIUserMemoryRepository as ge, type AttributesRepository as gf, type AuditRepository as gg, type DocumentGenerationTemplateListOptions as gh, type DocumentGenerationTemplatesRepository as gi, type DocumentJobsRepository as gj, type DocumentSlotsRepository as gk, type DocumentsRepository as gl, type DocumentTemplatesRepository as gm, type FilesRepository as gn, type ObjectRecordsRepository as go, type ObjectsRepository as gp, type PermissionsRepository as gq, type UserProfilesRepository as gr, type ViewsRepository as gs, type WorkflowAccessGrantsRepository as gt, type WorkflowInstancesRepository as gu, type WorkflowInvitationsRepository as gv, type WorkflowsRepository as gw, BaseService as gx, BaseRepository as gy, type SchemaContextAware as gz, type SortRule as h, type RenderDocumentResult as h$, type FormulaResolverServiceOptions as h0, FormulaResolverService as h1, type RollupResult as h2, type RollupServiceOptions as h3, RollupService as h4, type RollupSchedulerOptions as h5, RollupScheduler as h6, applyDefaultValues as h7, checkPermission as h8, getPolicy as h9, type WorkflowInstanceServiceOptions as hA, WorkflowInstanceService as hB, type InvitationServiceConfig as hC, InvitationNotFoundError as hD, InvitationExpiredError as hE, InvitationAlreadyAcceptedError as hF, InvitationRevokedError as hG, WorkflowInvitationService as hH, WorkflowRelationService as hI, type CreateWorkflowInput as hJ, type UpdateWorkflowInput as hK, type WorkflowServiceOptions as hL, WorkflowService as hM, type UserValidationResult as hN, type UserValidationError as hO, UserService as hP, type UserProfileServiceOptions as hQ, UserProfileService as hR, AuditService as hS, buildAuditChanges as hT, DocumentGenerationTemplateNotFoundError as hU, DocumentGenerationNotConfiguredError as hV, DocumentGenerationService as hW, type DocumentProcessingConfig as hX, DocumentProcessingService as hY, type RenderDocumentInput as hZ, type DocumentRendererOptions as h_, buildPolicyContext as ha, checkRecordAccess as hb, checkRecordModifyOrThrow as hc, checkRecordDeleteOrThrow as hd, checkSharedObjectWriteAccess as he, computeLabel as hf, type LabelResolver as hg, enrichWithFormulas as hh, enrichRecordsWithFormulas as hi, createContextForCreate as hj, createContextForUpdate as hk, createContextForDelete as hl, createContextForRestore as hm, recalculateParentRollups as hn, type RollupCascadeContext as ho, type DocumentProcessingHookOptions as hp, DocumentProcessingHook as hq, GrantNotFoundError as hr, GrantExpiredError as hs, GrantRevokedError as ht, TokenRevokedError as hu, type GrantServiceConfig as hv, type CreateGrantResult as hw, WorkflowAccessGrantService as hx, type StartWorkflowInput as hy, type ResumeWorkflowInput as hz, type WorkflowConfig as i, type UpdateDBView as i$, DocumentRenderError as i0, StorageDownloadNotSupportedError as i1, DocumentRendererService as i2, DocumentTemplateService as i3, type RecordDocumentsResult as i4, type CreateRecordDocumentInput as i5, type CreateRecordDocumentResult as i6, type DocumentServiceOptions as i7, DocumentService as i8, type FileServiceOptions as i9, DEFAULT_LABEL_FALLBACK as iA, renderLabelExpression as iB, isLabelExpression as iC, extractAttributeNames as iD, enrichValuesForDisplay as iE, enrichValuesWithSelectLabels as iF, extractRelationIds as iG, type RelationLabelResolver as iH, computeLabelWithRelations as iI, type DBObject as iJ, type CreateDBObject as iK, type UpdateDBObject as iL, type UpsertDBObject as iM, type DBAttribute as iN, type CreateDBAttribute as iO, type UpdateDBAttribute as iP, type UpsertDBAttribute as iQ, type CreateObjectRecord as iR, type ListOptions as iS, type SearchOptions as iT, type GlobalSearchOptions as iU, type GlobalSearchGroupedOptions as iV, type GlobalSearchResultItem as iW, type GlobalSearchGroupedResult as iX, type FileListOptions as iY, type DBView as iZ, type CreateDBView as i_, FileService as ia, GeocodingService as ib, GlobalSearchService as ic, type PermissionServiceOptions as id, PermissionService as ie, type CreateViewInput as ig, type UpdateViewInput as ih, type GetViewsOptions as ii, type GetViewOptions as ij, ViewService as ik, type FileContent as il, type StorageUploadInput as im, type StorageUploadResult as io, type SignedUrlOptions as ip, type StorageAdapter as iq, type UploadFileInput as ir, type SyncResult as is, type SyncOptions as it, syncNativeObjects as iu, verifyNativeObjectsSync as iv, getSyncPreview as iw, type FullSyncResult as ix, type FullSyncOptions as iy, syncAll as iz, type SlotMode as j, type UpsertDBView as j0, type DBViewOverlay as j1, type CreateDBViewOverlay as j2, type UpdateDBViewOverlay as j3, type DBWorkflow as j4, type CreateDBWorkflow as j5, type UpdateDBWorkflow as j6, type DBWorkflowInstance as j7, type CreateDBWorkflowInstance as j8, type UpdateDBWorkflowInstance as j9, type DBWorkflowInvitation as ja, type CreateDBWorkflowInvitation as jb, type UpdateDBWorkflowInvitation as jc, type DBWorkflowAccessGrant as jd, type CreateDBWorkflowAccessGrant as je, type UpdateDBWorkflowAccessGrant as jf, type OperationResult as jg, type ViewSyncResult as jh, type ViewSyncLogger as ji, type ViewSyncOptions as jj, seedRegistryViews as jk, syncNativeViews as jl, verifyRegistryViewsSeeded as jm, verifyNativeViewsSync as jn, getViewSeedPreview as jo, getViewSyncPreview as jp, type ConditionGroup as k, type ConditionRule as l, type WorkflowNode as m, type WorkflowDefinition as n, type FlowRow as o, type ListViewConfig as p, type ListViewTab as q, type ViewDefinition as r, type DocumentTemplate as s, type OcrInput as t, type OcrOptions as u, type OcrResult as v, type OcrPage as w, type OcrTextBlock as x, type SignatureAdapter as y, type CreateSignatureInput as z };
12947
+ export { type AIAvailableModel as $, type Action as A, type BoundingBox as B, type CreateMode as C, type DetailViewLayout as D, type SignerRequest as E, type Field as F, type Group as G, type SignaturePosition as H, type InferAttributeValue as I, type SignatureRequestResult as J, type SignatureStatusResult as K, type ListViewDefinition as L, type SignerStatus as M, type SignatureStatus as N, type OcrAdapter as O, type IdentityVerificationAdapter as P, type VerifyInput as Q, type RelationGroup as R, type SystemResource as S, type Tab as T, type VerificationResult as U, type ViewType as V, type WorkflowTheme as W, type DocumentData as X, type VerificationCheck as Y, type AIMessageRole as Z, type AIThinkingLevel as _, type AttributeGroupField as a, type CreateProcessingJob as a$, type AIToolCallStatus as a0, type AIToolCall as a1, type AIChatMessagePartType as a2, type TextPartData as a3, type ToolPartData as a4, type ThinkingPartData as a5, type ReasoningPartData as a6, type AIChatMessagePart as a7, type AIChatMessage as a8, type AIQuestionType as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type VariableMapping as aD, type PdfTemplateField as aE, type TemplateSource as aF, type DocumentGenerationTemplate as aG, type CreateDocumentGenerationTemplate as aH, type UpdateDocumentGenerationTemplate as aI, type PendingDocumentRequest as aJ, type DocumentSlotDefinition as aK, type DocumentAutoProcessing as aL, type ExtractionMapping as aM, type ExtractionField as aN, type Document as aO, type DocumentStatus as aP, type DocumentSlot as aQ, type SlotStatus as aR, type ProcessingJob as aS, type ProcessingJobType as aT, type ProcessingJobStatus as aU, type CreateDocument as aV, type UpdateDocument as aW, type CreateDocumentTemplate as aX, type UpdateDocumentTemplate as aY, type CreateDocumentSlot as aZ, type UpdateDocumentSlot as a_, type AIQuestionOption as aa, type AIQuestion as ab, type AIQuestionAnswer as ac, type AIBatchQuestionOption as ad, type AIBatchQuestion as ae, type AIBatchQuestionAnswer as af, type AITodoStatus as ag, type AITodoItem as ah, type AITodoList as ai, type AIMessageAttachment as aj, type AIConversation as ak, type AIMessage as al, type AIToolCallRecord as am, type AIUserMemory as an, type AIUsageMetrics as ao, type AIProviderMetrics as ap, type CreateAIMessageInput as aq, type AIMemoryType as ar, type AIMemoryEntry as as, type AITenantPersona as at, type AICompactionSummary as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type FieldGroup as b, type CustomAttributeValue as b$, type UpdateProcessingJob as b0, type DocumentListOptions as b1, type DocumentTemplateListOptions as b2, type StorageProvider as b3, type FileVisibility as b4, type File as b5, type CreateFile as b6, type UpdateFile as b7, type TextFilterOperator as b8, type NumberFilterOperator as b9, type FlowSeparatorRow as bA, type FlowTextRow as bB, type FlowRow as bC, isFlowFieldsRow as bD, isLayoutRow as bE, type FlowPage as bF, type FlowRelation as bG, type FlowStatus as bH, type FlowDefinition as bI, isFlowDefinition as bJ, isFlowPublished as bK, isSystemFlow as bL, type GeocodingSuggestion as bM, type GeocodingAutocompleteParams as bN, type ReverseGeocodingParams as bO, type GeocodingParams as bP, type GeocodingAdapter as bQ, NoopGeocodingAdapter as bR, type AttributeSchema as bS, type InferRecordFromSchema as bT, type InferRecordWithRequirements as bU, type TypedAttribute as bV, type AttributeMap as bW, type AddAttribute as bX, type InferRecord as bY, type InferRecordInput as bZ, type InferRecordUpdate as b_, type CheckboxFilterOperator as ba, type DateFilterOperator as bb, type SelectFilterOperator as bc, type MultiselectFilterOperator as bd, type RelationFilterOperator as be, type FilterOperator as bf, type RelativeDateValue as bg, type CurrencyFilterValue as bh, type PhoneFilterValue as bi, type FilterValue as bj, type FilterRule as bk, type ExtendedFilterRule as bl, type FilterCombinator as bm, type FilterGroup as bn, type AdvancedFilterState as bo, type SortDirection as bp, type QueryState as bq, OPERATORS_BY_TYPE as br, type NoValueOperator as bs, NO_VALUE_OPERATORS as bt, isNoValueOperator as bu, getRollupFilterOperators as bv, type FlowSlot as bw, type FlowRowField as bx, type FlowRowType as by, type FlowHeadingRow as bz, type SidePanelConfig as c, isGalleryView as c$, type WithCustomAttributes as c0, type RecordMetadata as c1, type SystemFields as c2, type ExtractRecord as c3, type ExtractRecordStrict as c4, type ExtractRecordInput as c5, type ExtractRecordInputStrict as c6, type ExtractRecordUpdate as c7, type ExtractRecordUpdateStrict as c8, type ExtractAttributes as c9, type InviteUserInput as cA, type TabType as cB, type FormDensity as cC, type FormTab as cD, type RelationSource as cE, type InverseSource as cF, type TableSource as cG, type CustomTab as cH, type ActivityTab as cI, type RichtextTab as cJ, type FlowsTab as cK, type DocumentsTab as cL, type ListViewLayout as cM, type DetailViewConfig as cN, type CalendarViewConfig as cO, type TimelineViewConfig as cP, type GalleryViewConfig as cQ, type ViewConfig as cR, type CalendarViewDefinition as cS, type TimelineViewDefinition as cT, type GalleryViewDefinition as cU, type ConfigOverrides as cV, type ViewOverlay as cW, isDetailView as cX, isListView as cY, isCalendarView as cZ, isTimelineView as c_, type TypedObjectRecord as ca, type ExtractObjectRecord as cb, type ExtractObjectRecordWithCustom as cc, type PermissionScope as cd, type AccessLevel as ce, ALL_ACTIONS as cf, actionsToAccessLevel as cg, accessLevelToActions as ch, type Role as ci, type Permission as cj, type UserRoleAssignment as ck, type EffectivePermissions as cl, type ObjectPermissions as cm, type SystemPermissions as cn, type CreateRoleInput as co, type UpdateRoleInput as cp, type CreatePermissionInput as cq, type AssignRoleInput as cr, type PolicyContext as cs, type RecordPolicy as ct, PolicyViolationError as cu, type UserStatus as cv, USER_STATUSES as cw, type UserProfile as cx, type CreateUserProfile as cy, type UpdateUserProfile as cz, type DetailViewDefinition as d, isGrantValid as d$, isFieldGroup as d0, isRelationGroup as d1, isFormTab as d2, isTableTab as d3, isRelationSourceTab as d4, isInverseSourceTab as d5, isCustomTab as d6, isActivityTab as d7, isRichtextTab as d8, isFlowsTab as d9, type NodePosition as dA, type WorkflowLayout as dB, type WorkflowSlot as dC, type WorkflowStatus as dD, isSystemWorkflow as dE, isWorkflowDefinition as dF, isWorkflowPublished as dG, type PendingAction as dH, type WorkflowError as dI, type WorkflowInstance as dJ, type WorkflowTransition as dK, canResumeInstance as dL, createStartTransition as dM, isInstanceTerminal as dN, isInstanceWaiting as dO, type CreateInvitationInput as dP, type CreateInvitationResult as dQ, type InvitationStatus as dR, type WorkflowInvitation as dS, isInvitationAccepted as dT, isInvitationExpired as dU, isInvitationValid as dV, type CreateGrantInput as dW, type WorkflowAccessGrant as dX, canAccessNode as dY, isGrantExpired as dZ, isGrantRevoked as d_, isDocumentsTab as da, type ConditionNode as db, type DocumentNode as dc, type EndNode as dd, type FormFieldRef as de, type FormNode as df, type StartNode as dg, type WorkflowNodeType as dh, getNodeOutputs as di, isAdvancedFormNode as dj, isConditionNode as dk, isDocumentNode as dl, isEndNode as dm, isFormNode as dn, isSimpleFormNode as dp, isStartNode as dq, type ConditionOperator as dr, and as ds, eq as dt, inValues as du, isConditionGroup as dv, isConditionRule as dw, neq as dx, or as dy, type CanvasViewport as dz, type InstanceStatus as e, evaluate as e$, isTokenRevoked as e0, type GeneratedDocument as e1, type WorkflowExecutionContext as e2, createEmptyContext as e3, getContextValue as e4, setContextValue as e5, type FormContextResponse as e6, type FormFieldContext as e7, type FormFieldRow as e8, type FormFieldsRow as e9, hashOptions as eA, type CacheAdapter as eB, type CacheOptions as eC, cacheKeys as eD, cacheTtl as eE, defaultTtl as eF, NoopCacheAdapter as eG, type FetchResult as eH, type FormattedRecord as eI, type GroupedFetchResult as eJ, type InsertOptions as eK, type QueryBuilderState as eL, type RegistryMap as eM, type RegistryObjectNames as eN, type ShortcutOperator as eO, createDefaultState as eP, formatRecord as eQ, formatRecords as eR, QueryMultipleResultsError as eS, QueryNoResultError as eT, SHORTCUT_TO_FILTER_OPERATOR as eU, createQueryBuilder as eV, QueryBuilder as eW, type QueryBuilderOptions as eX, type EvaluationResult as eY, type EvaluationTrace as eZ, evaluateCondition as e_, type FormNodeInfo as ea, type ReadOnlyReason as eb, type WorkflowAccessMode as ec, isFormFieldsRow as ed, type ThemeColors as ee, type ThemeLogo as ef, type ThemeTypography as eg, DEFAULT_THEME as eh, generateCssVariables as ei, mergeWithDefaults as ej, registry as ek, viewRegistry as el, type ViewOverlaysRepository as em, type RelationAttributeInput as en, type RelationAttributeRow as eo, type RelationAttributesRepository as ep, SORTABLE_ATTRIBUTE_TYPES as eq, type SearchAdapter as er, type DatabaseAdapter as es, WorkflowJwtService as et, type JwtVerificationResult as eu, type MagicLinkPayload as ev, type WorkflowAccessPayload as ew, type WorkflowJwtConfig as ex, type WorkflowJwtPayload as ey, type CacheKeyType as ez, type TableTab as f, parsePath as f$, evaluateWithTrace as f0, TenantContextError as f1, FeatureFlagsContextError as f2, getFeatureFlags as f3, getFeatureValue as f4, hasFeatureFlagsContext as f5, isFeatureEnabled as f6, runWithFeatureFlags as f7, tryGetFeatureValue as f8, withFeatureFlags as f9, error as fA, ExecutorRegistry as fB, success as fC, wait as fD, ConditionExecutor as fE, DocumentExecutor as fF, EndExecutor as fG, FormExecutor as fH, StartExecutor as fI, evaluateFormula as fJ, evaluateFormulaAttribute as fK, evaluateFormulaAttributeWithRelations as fL, evaluateFormulaWithRelations as fM, evaluateFormulaWithResult as fN, extractFormulaVariables as fO, extractRelationNames as fP, extractRelationReferences as fQ, flattenRelationsForEval as fR, formatFormulaResult as fS, hasRelationReferences as fT, validateFormulaExpression as fU, type FormulaResult as fV, getPathDepth as fW, getRelationPath as fX, getTargetAttributeName as fY, InvalidPathError as fZ, MaxDepthExceededError as f_, type FeatureFlagsContext as fa, addSchemaToContext as fb, getSchemaByNameFromContext as fc, getSchemaContext as fd, getSchemaFromContext as fe, hasSchemaContext as ff, runWithMergedSchemaContext as fg, runWithSchemaContext as fh, type SchemaContext as fi, getContext as fj, getTenantId as fk, getUserId as fl, hasContext as fm, runWithContext as fn, withTenantContext as fo, type TenantContext as fp, createDefaultExecutorRegistry as fq, getDefaultExecutorRegistry as fr, type ExecutorCompleteResult as fs, type ExecutorContext as ft, type ExecutorErrorResult as fu, type ExecutorResult as fv, type ExecutorSuccessResult as fw, type ExecutorWaitResult as fx, type NodeExecutor as fy, complete as fz, type FilterState as g, type GetRelationOptionsParams as g$, pathHasManyCardinality as g0, validatePath as g1, type PathCardinality as g2, type PathSegment as g3, type PathSegmentType as g4, type SchemaResolver as g5, resolveMultiplePaths as g6, resolveSingleValue as g7, traversePath as g8, type TraversalOptions as g9, type PermissionsRepository as gA, type UserProfilesRepository as gB, type ViewsRepository as gC, type WorkflowAccessGrantsRepository as gD, type WorkflowInstancesRepository as gE, type WorkflowInvitationsRepository as gF, type WorkflowsRepository as gG, BaseService as gH, BaseRepository as gI, type SchemaContextAware as gJ, SchemaContextAwareRepository as gK, type CreateCustomObjectInput as gL, type AddAttributeInput as gM, type UpdateObjectInput as gN, type ObjectSchemaServiceOptions as gO, ObjectSchemaService as gP, type RecordServiceOptions as gQ, RecordService as gR, type RecordQueryServiceOptions as gS, type QueryOptions as gT, type SearchQueryOptions as gU, type QueryResult as gV, RecordQueryService as gW, type RelationValidationResult as gX, type RelationValidationError as gY, type RelationOption as gZ, type RelationOptionsResponse as g_, type TraversalResult as ga, type AttributeChange as gb, type HookContext as gc, type HookDefinition as gd, type HookHandler as ge, type HookType as gf, NoopHookRegistry as gg, type HookRegistry as gh, createMockAdapter as gi, type MockStores as gj, defaultPolicyRegistry as gk, PolicyRegistry as gl, type AIConversationsRepository as gm, type AIUsageMetricsRepository as gn, type AIUserMemoryRepository as go, type AttributesRepository as gp, type AuditRepository as gq, type DocumentGenerationTemplateListOptions as gr, type DocumentGenerationTemplatesRepository as gs, type DocumentJobsRepository as gt, type DocumentSlotsRepository as gu, type DocumentsRepository as gv, type DocumentTemplatesRepository as gw, type FilesRepository as gx, type ObjectRecordsRepository as gy, type ObjectsRepository as gz, type SortRule as h, UserProfileService as h$, type RelationServiceOptions as h0, type ResolveIdsBatchRequest as h1, type ResolveIdsBatchResponse as h2, RelationService as h3, type MultiRelationValue as h4, type SingleRelationValue as h5, type HybridRelationValue as h6, RelationPropertiesService as h7, RecordResolverService as h8, type ResolvedRelations as h9, DocumentProcessingHook as hA, GrantNotFoundError as hB, GrantExpiredError as hC, GrantRevokedError as hD, TokenRevokedError as hE, type GrantServiceConfig as hF, type CreateGrantResult as hG, WorkflowAccessGrantService as hH, type StartWorkflowInput as hI, type ResumeWorkflowInput as hJ, type WorkflowInstanceServiceOptions as hK, WorkflowInstanceService as hL, type InvitationServiceConfig as hM, InvitationNotFoundError as hN, InvitationExpiredError as hO, InvitationAlreadyAcceptedError as hP, InvitationRevokedError as hQ, WorkflowInvitationService as hR, WorkflowRelationService as hS, type CreateWorkflowInput as hT, type UpdateWorkflowInput as hU, type WorkflowServiceOptions as hV, WorkflowService as hW, type UserValidationResult as hX, type UserValidationError as hY, UserService as hZ, type UserProfileServiceOptions as h_, type FormulaResolverServiceOptions as ha, FormulaResolverService as hb, type RollupResult as hc, type RollupServiceOptions as hd, RollupService as he, type RollupSchedulerOptions as hf, RollupScheduler as hg, applyDefaultValues as hh, checkPermission as hi, getPolicy as hj, buildPolicyContext as hk, checkRecordAccess as hl, checkRecordModifyOrThrow as hm, checkRecordDeleteOrThrow as hn, checkSharedObjectWriteAccess as ho, computeLabel as hp, type LabelResolver as hq, enrichWithFormulas as hr, enrichRecordsWithFormulas as hs, createContextForCreate as ht, createContextForUpdate as hu, createContextForDelete as hv, createContextForRestore as hw, recalculateParentRollups as hx, type RollupCascadeContext as hy, type DocumentProcessingHookOptions as hz, type WorkflowConfig as i, type CreateObjectRecord as i$, AuditService as i0, buildAuditChanges as i1, DocumentGenerationTemplateNotFoundError as i2, DocumentGenerationNotConfiguredError as i3, DocumentGenerationService as i4, type DocumentProcessingConfig as i5, DocumentProcessingService as i6, type RenderDocumentInput as i7, type DocumentRendererOptions as i8, type RenderDocumentResult as i9, type StorageAdapter as iA, type UploadFileInput as iB, type SyncResult as iC, type SyncOptions as iD, syncNativeObjects as iE, verifyNativeObjectsSync as iF, getSyncPreview as iG, type FullSyncResult as iH, type FullSyncOptions as iI, syncAll as iJ, DEFAULT_LABEL_FALLBACK as iK, renderLabelExpression as iL, isLabelExpression as iM, extractAttributeNames as iN, enrichValuesForDisplay as iO, enrichValuesWithSelectLabels as iP, extractRelationIds as iQ, type RelationLabelResolver as iR, computeLabelWithRelations as iS, type DBObject as iT, type CreateDBObject as iU, type UpdateDBObject as iV, type UpsertDBObject as iW, type DBAttribute as iX, type CreateDBAttribute as iY, type UpdateDBAttribute as iZ, type UpsertDBAttribute as i_, DocumentRenderError as ia, StorageDownloadNotSupportedError as ib, DocumentRendererService as ic, DocumentTemplateService as id, type RecordDocumentsResult as ie, type CreateRecordDocumentInput as ig, type CreateRecordDocumentResult as ih, type DocumentServiceOptions as ii, DocumentService as ij, type FileServiceOptions as ik, FileService as il, GeocodingService as im, GlobalSearchService as io, type PermissionServiceOptions as ip, PermissionService as iq, type CreateViewInput as ir, type UpdateViewInput as is, type GetViewsOptions as it, type GetViewOptions as iu, ViewService as iv, type FileContent as iw, type StorageUploadInput as ix, type StorageUploadResult as iy, type SignedUrlOptions as iz, type SlotMode as j, type ListOptions as j0, type SearchOptions as j1, type GlobalSearchOptions as j2, type GlobalSearchGroupedOptions as j3, type GlobalSearchResultItem as j4, type GlobalSearchGroupedResult as j5, type FileListOptions as j6, type DBView as j7, type CreateDBView as j8, type UpdateDBView as j9, type UpsertDBView as ja, type DBViewOverlay as jb, type CreateDBViewOverlay as jc, type UpdateDBViewOverlay as jd, type DBWorkflow as je, type CreateDBWorkflow as jf, type UpdateDBWorkflow as jg, type DBWorkflowInstance as jh, type CreateDBWorkflowInstance as ji, type UpdateDBWorkflowInstance as jj, type DBWorkflowInvitation as jk, type CreateDBWorkflowInvitation as jl, type UpdateDBWorkflowInvitation as jm, type DBWorkflowAccessGrant as jn, type CreateDBWorkflowAccessGrant as jo, type UpdateDBWorkflowAccessGrant as jp, type OperationResult as jq, type ViewSyncResult as jr, type ViewSyncLogger as js, type ViewSyncOptions as jt, seedRegistryViews as ju, syncNativeViews as jv, verifyRegistryViewsSeeded as jw, verifyNativeViewsSync as jx, getViewSeedPreview as jy, getViewSyncPreview as jz, type ConditionGroup as k, type ConditionRule as l, type WorkflowNode as m, type WorkflowDefinition as n, type FlowFieldsRow as o, type ListViewConfig as p, type ListViewTab as q, type ViewDefinition as r, type DocumentTemplate as s, type OcrInput as t, type OcrOptions as u, type OcrResult as v, type OcrPage as w, type OcrTextBlock as x, type SignatureAdapter as y, type CreateSignatureInput as z };