@stndrds/schema 1.0.0-alpha.71 → 1.0.0-alpha.73
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/chunk-6P3NPTYV.mjs +58 -0
- package/dist/{chunk-INXFKM4S.mjs → chunk-ABOLTRIR.mjs} +87 -55
- package/dist/{chunk-4GHZ6AUF.js → chunk-EWDCS5EE.js} +237 -205
- package/dist/chunk-JZO52C3F.js +58 -0
- package/dist/default-roles-76HUWY6T.js +23 -0
- package/dist/{default-roles-42X3TJI5.mjs → default-roles-OAMHLOCS.mjs} +3 -1
- package/dist/index.d.mts +18 -25
- package/dist/index.d.ts +18 -25
- package/dist/index.js +31 -6
- package/dist/index.mjs +27 -2
- package/dist/{runtime-BV9XBP1p.d.ts → runtime-CJVwSgr6.d.ts} +55 -104
- package/dist/{runtime-DzpQ5gRG.d.mts → runtime-Ca41jw8q.d.mts} +55 -104
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +3 -2
- package/dist/runtime.mjs +2 -1
- package/package.json +2 -2
- package/dist/chunk-36UBIXJN.js +0 -82
- package/dist/chunk-V5QXU2OK.mjs +0 -82
- package/dist/default-roles-C3FYDYMN.js +0 -21
package/dist/index.js
CHANGED
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
|
|
331
331
|
|
|
332
332
|
|
|
333
|
-
var
|
|
333
|
+
var _chunkEWDCS5EEjs = require('./chunk-EWDCS5EE.js');
|
|
334
334
|
|
|
335
335
|
|
|
336
336
|
|
|
@@ -413,7 +413,8 @@ var _chunk3WTK7ESHjs = require('./chunk-3WTK7ESH.js');
|
|
|
413
413
|
|
|
414
414
|
|
|
415
415
|
|
|
416
|
-
|
|
416
|
+
|
|
417
|
+
var _chunkJZO52C3Fjs = require('./chunk-JZO52C3F.js');
|
|
417
418
|
require('./chunk-3RG5ZIWI.js');
|
|
418
419
|
|
|
419
420
|
// src/types/filters.ts
|
|
@@ -503,6 +504,26 @@ function isSystemFlow(flow) {
|
|
|
503
504
|
return flow.system === true;
|
|
504
505
|
}
|
|
505
506
|
|
|
507
|
+
// src/types/permissions.ts
|
|
508
|
+
var ALL_ACTIONS = ["read", "create", "update", "delete"];
|
|
509
|
+
function actionsToAccessLevel(actions) {
|
|
510
|
+
if (actions.length === 0) return "none";
|
|
511
|
+
if (actions.length === 1 && actions[0] === "read") return "read-only";
|
|
512
|
+
if (actions.length === ALL_ACTIONS.length && ALL_ACTIONS.every((a) => actions.includes(a)))
|
|
513
|
+
return "full";
|
|
514
|
+
return "custom";
|
|
515
|
+
}
|
|
516
|
+
function accessLevelToActions(level) {
|
|
517
|
+
switch (level) {
|
|
518
|
+
case "full":
|
|
519
|
+
return [...ALL_ACTIONS];
|
|
520
|
+
case "read-only":
|
|
521
|
+
return ["read"];
|
|
522
|
+
case "none":
|
|
523
|
+
return [];
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
|
|
506
527
|
// src/types/views.ts
|
|
507
528
|
function isDetailView(view2) {
|
|
508
529
|
return view2.type === "detail";
|
|
@@ -564,14 +585,14 @@ function applyRelationProps(label, props, propertyDefs) {
|
|
|
564
585
|
if (value == null) continue;
|
|
565
586
|
const def = defMap.get(key);
|
|
566
587
|
if (def) {
|
|
567
|
-
const formatted =
|
|
568
|
-
formattedProps[key] = formatted ===
|
|
588
|
+
const formatted = _chunkEWDCS5EEjs.formatAttributeValue.call(void 0, value, def);
|
|
589
|
+
formattedProps[key] = formatted === _chunkEWDCS5EEjs.EMPTY_VALUE_PLACEHOLDER ? "" : formatted;
|
|
569
590
|
} else {
|
|
570
591
|
formattedProps[key] = value;
|
|
571
592
|
}
|
|
572
593
|
}
|
|
573
594
|
}
|
|
574
|
-
const result =
|
|
595
|
+
const result = _chunkEWDCS5EEjs.renderLabelExpression.call(void 0, label, { props: formattedProps }, "");
|
|
575
596
|
return result.replace(/\(\s*\)/g, "").replace(/\[\s*\]/g, "").replace(/\s*[-\u2014|:]\s*$/g, "").replace(/\s{2,}/g, " ").trim();
|
|
576
597
|
}
|
|
577
598
|
|
|
@@ -1990,4 +2011,8 @@ function isViewCustomized(view2, object2) {
|
|
|
1990
2011
|
|
|
1991
2012
|
|
|
1992
2013
|
|
|
1993
|
-
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunk4GHZ6AUFjs.ActivityTabConfig; exports.AttributeInUseError = _chunk4GHZ6AUFjs.AttributeInUseError; exports.AttributeNotFoundError = _chunk4GHZ6AUFjs.AttributeNotFoundError; exports.AuditService = _chunk4GHZ6AUFjs.AuditService; exports.AuthMethodSchema = _chunk4GHZ6AUFjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunk4GHZ6AUFjs.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunk4GHZ6AUFjs.BaseRepository; exports.BaseService = _chunk4GHZ6AUFjs.BaseService; exports.ConcurrentModificationError = _chunk4GHZ6AUFjs.ConcurrentModificationError; exports.ConditionExecutor = _chunk4GHZ6AUFjs.ConditionExecutor; exports.ConditionGroupSchema = _chunk4GHZ6AUFjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunk4GHZ6AUFjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunk4GHZ6AUFjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunk4GHZ6AUFjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunk4GHZ6AUFjs.CreateShareInputSchema; exports.CustomTabConfig = _chunk4GHZ6AUFjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunk4GHZ6AUFjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk36UBIXJNjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunk36UBIXJNjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunk4GHZ6AUFjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunk3WTK7ESHjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunk4GHZ6AUFjs.DRIVING_LICENSE; exports.DetailViewBuilder = _chunk4GHZ6AUFjs.DetailViewBuilder; exports.DocumentExecutor = _chunk4GHZ6AUFjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk4GHZ6AUFjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk4GHZ6AUFjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk4GHZ6AUFjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunk4GHZ6AUFjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunk4GHZ6AUFjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk4GHZ6AUFjs.DocumentProcessingService; exports.DocumentRenderError = _chunk4GHZ6AUFjs.DocumentRenderError; exports.DocumentRendererService = _chunk4GHZ6AUFjs.DocumentRendererService; exports.DocumentService = _chunk4GHZ6AUFjs.DocumentService; exports.DocumentTemplateService = _chunk4GHZ6AUFjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunk4GHZ6AUFjs.DocumentsTabConfig; exports.DuplicateError = _chunk4GHZ6AUFjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunk4GHZ6AUFjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunk4GHZ6AUFjs.EndExecutor; exports.EndNodeSchema = _chunk4GHZ6AUFjs.EndNodeSchema; exports.ExecutorRegistry = _chunk4GHZ6AUFjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunk4GHZ6AUFjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunk4GHZ6AUFjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunk4GHZ6AUFjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunk4GHZ6AUFjs.FileNotFoundError; exports.FileService = _chunk4GHZ6AUFjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunk4GHZ6AUFjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunk4GHZ6AUFjs.FlowRowSchema; exports.FlowsTabConfig = _chunk4GHZ6AUFjs.FlowsTabConfig; exports.ForbiddenError = _chunk4GHZ6AUFjs.ForbiddenError; exports.FormExecutor = _chunk4GHZ6AUFjs.FormExecutor; exports.FormFieldRefSchema = _chunk4GHZ6AUFjs.FormFieldRefSchema; exports.FormNodeSchema = _chunk4GHZ6AUFjs.FormNodeSchema; exports.FormulaResolverService = _chunk4GHZ6AUFjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunk4GHZ6AUFjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunk4GHZ6AUFjs.GeocodingService; exports.GlobalSearchService = _chunk4GHZ6AUFjs.GlobalSearchService; exports.GrantExpiredError = _chunk4GHZ6AUFjs.GrantExpiredError; exports.GrantNotFoundError = _chunk4GHZ6AUFjs.GrantNotFoundError; exports.GrantRevokedError = _chunk4GHZ6AUFjs.GrantRevokedError; exports.GroupBuilder = _chunk4GHZ6AUFjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunk4GHZ6AUFjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunk4GHZ6AUFjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk4GHZ6AUFjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk4GHZ6AUFjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk4GHZ6AUFjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk4GHZ6AUFjs.InvitationRevokedError; exports.ListViewBuilder = _chunk4GHZ6AUFjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunk4GHZ6AUFjs.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunk4GHZ6AUFjs.MaxDepthExceededError; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunk4GHZ6AUFjs.NodePositionSchema; exports.NoopCacheAdapter = _chunk4GHZ6AUFjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk4GHZ6AUFjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk4GHZ6AUFjs.NoopHookRegistry; exports.NotFoundError = _chunk4GHZ6AUFjs.NotFoundError; exports.NotSystemObjectError = _chunk4GHZ6AUFjs.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunk4GHZ6AUFjs.ObjectBuilder; exports.ObjectNotFoundError = _chunk4GHZ6AUFjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunk4GHZ6AUFjs.ObjectReferencedError; exports.ObjectSchemaService = _chunk4GHZ6AUFjs.ObjectSchemaService; exports.PASSPORT = _chunk4GHZ6AUFjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunk4GHZ6AUFjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunk4GHZ6AUFjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunk4GHZ6AUFjs.PermissionService; exports.PolicyRegistry = _chunk4GHZ6AUFjs.PolicyRegistry; exports.PolicyViolationError = _chunk4GHZ6AUFjs.PolicyViolationError; exports.ProtectedResourceError = _chunk4GHZ6AUFjs.ProtectedResourceError; exports.ProtectedRoleError = _chunk4GHZ6AUFjs.ProtectedRoleError; exports.QueryBuilder = _chunk4GHZ6AUFjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk4GHZ6AUFjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk4GHZ6AUFjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunk4GHZ6AUFjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunk4GHZ6AUFjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunk4GHZ6AUFjs.RecordNotFoundError; exports.RecordQueryService = _chunk4GHZ6AUFjs.RecordQueryService; exports.RecordReferencedError = _chunk4GHZ6AUFjs.RecordReferencedError; exports.RecordResolverService = _chunk4GHZ6AUFjs.RecordResolverService; exports.RecordService = _chunk4GHZ6AUFjs.RecordService; exports.RelationGroupBuilder = _chunk4GHZ6AUFjs.RelationGroupBuilder; exports.RelationPropertiesService = _chunk4GHZ6AUFjs.RelationPropertiesService; exports.RelationService = _chunk4GHZ6AUFjs.RelationService; exports.RichtextTabConfig = _chunk4GHZ6AUFjs.RichtextTabConfig; exports.RoleNotFoundError = _chunk4GHZ6AUFjs.RoleNotFoundError; exports.RollupScheduler = _chunk4GHZ6AUFjs.RollupScheduler; exports.RollupService = _chunk4GHZ6AUFjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk4GHZ6AUFjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunk4GHZ6AUFjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunk4GHZ6AUFjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunk4GHZ6AUFjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunk4GHZ6AUFjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunk4GHZ6AUFjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunk4GHZ6AUFjs.SchemaContextAwareRepository; exports.SchemaError = _chunk4GHZ6AUFjs.SchemaError; exports.SchemaErrorCode = _chunk4GHZ6AUFjs.SchemaErrorCode; exports.ShareStatusSchema = _chunk4GHZ6AUFjs.ShareStatusSchema; exports.SlotModeSchema = _chunk4GHZ6AUFjs.SlotModeSchema; exports.StartExecutor = _chunk4GHZ6AUFjs.StartExecutor; exports.StartNodeSchema = _chunk4GHZ6AUFjs.StartNodeSchema; exports.StorageDownloadNotSupportedError = _chunk4GHZ6AUFjs.StorageDownloadNotSupportedError; exports.SyncError = _chunk4GHZ6AUFjs.SyncError; exports.TabBuilder = _chunk4GHZ6AUFjs.TabBuilder; exports.TableTabConfig = _chunk4GHZ6AUFjs.TableTabConfig; exports.TenantContextError = _chunk4GHZ6AUFjs.TenantContextError; exports.ThemeColorsSchema = _chunk4GHZ6AUFjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunk4GHZ6AUFjs.ThemeLogoSchema; exports.TokenRevokedError = _chunk4GHZ6AUFjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunk4GHZ6AUFjs.UserProfileNotFoundError; exports.UserProfileService = _chunk4GHZ6AUFjs.UserProfileService; exports.UserService = _chunk4GHZ6AUFjs.UserService; exports.ValidationError = _chunk4GHZ6AUFjs.ValidationError; exports.ViewBuilder = _chunk4GHZ6AUFjs.ViewBuilder; exports.ViewService = _chunk4GHZ6AUFjs.ViewService; exports.ViewportSchema = _chunk4GHZ6AUFjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunk4GHZ6AUFjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunk4GHZ6AUFjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunk4GHZ6AUFjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunk4GHZ6AUFjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunk4GHZ6AUFjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunk4GHZ6AUFjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunk4GHZ6AUFjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunk4GHZ6AUFjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunk4GHZ6AUFjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk4GHZ6AUFjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk4GHZ6AUFjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunk4GHZ6AUFjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunk4GHZ6AUFjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunk4GHZ6AUFjs.WorkflowRelationService; exports.WorkflowService = _chunk4GHZ6AUFjs.WorkflowService; exports.WorkflowShareSchema = _chunk4GHZ6AUFjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunk4GHZ6AUFjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunk4GHZ6AUFjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunk4GHZ6AUFjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunk4GHZ6AUFjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunk4GHZ6AUFjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunk4GHZ6AUFjs.addSchemaToContext; exports.and = _chunk4GHZ6AUFjs.and; exports.applyDefaultValues = _chunk4GHZ6AUFjs.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunk3WTK7ESHjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunk4GHZ6AUFjs.buildAuditChanges; exports.buildPolicyContext = _chunk4GHZ6AUFjs.buildPolicyContext; exports.cacheKeys = _chunk4GHZ6AUFjs.cacheKeys; exports.cacheTtl = _chunk4GHZ6AUFjs.cacheTtl; exports.canAccessNode = _chunk4GHZ6AUFjs.canAccessNode; exports.canResumeInstance = _chunk4GHZ6AUFjs.canResumeInstance; exports.checkPermission = _chunk4GHZ6AUFjs.checkPermission; exports.checkRecordAccess = _chunk4GHZ6AUFjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk4GHZ6AUFjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk4GHZ6AUFjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk4GHZ6AUFjs.checkSharedObjectWriteAccess; exports.checkbox = _chunk4GHZ6AUFjs.checkbox; exports.checkboxConfigSchema = _chunk3WTK7ESHjs.checkboxConfigSchema; exports.complete = _chunk4GHZ6AUFjs.complete; exports.computeLabel = _chunk4GHZ6AUFjs.computeLabel; exports.computeLabelWithRelations = _chunk4GHZ6AUFjs.computeLabelWithRelations; exports.computeRecordStatus = _chunk3WTK7ESHjs.computeRecordStatus; exports.createAttributeValidator = _chunk3WTK7ESHjs.createAttributeValidator; exports.createCheckboxValidator = _chunk3WTK7ESHjs.createCheckboxValidator; exports.createContextForCreate = _chunk4GHZ6AUFjs.createContextForCreate; exports.createContextForDelete = _chunk4GHZ6AUFjs.createContextForDelete; exports.createContextForRestore = _chunk4GHZ6AUFjs.createContextForRestore; exports.createContextForUpdate = _chunk4GHZ6AUFjs.createContextForUpdate; exports.createCurrencyValidator = _chunk3WTK7ESHjs.createCurrencyValidator; exports.createDateValidator = _chunk3WTK7ESHjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunk4GHZ6AUFjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk4GHZ6AUFjs.createDefaultState; exports.createDraftValidator = _chunk3WTK7ESHjs.createDraftValidator; exports.createEmptyContext = _chunk4GHZ6AUFjs.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 = _chunk4GHZ6AUFjs.createMockAdapter; exports.createMultiRelationValidator = _chunk3WTK7ESHjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk3WTK7ESHjs.createMultiselectValidator; exports.createNumberValidator = _chunk3WTK7ESHjs.createNumberValidator; exports.createObjectValidator = _chunk3WTK7ESHjs.createObjectValidator; exports.createPhoneValidator = _chunk3WTK7ESHjs.createPhoneValidator; exports.createQueryBuilder = _chunk4GHZ6AUFjs.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 = _chunk4GHZ6AUFjs.createStartTransition; exports.createStatusValidator = _chunk3WTK7ESHjs.createStatusValidator; exports.createTextAreaValidator = _chunk3WTK7ESHjs.createTextAreaValidator; exports.createTextValidator = _chunk3WTK7ESHjs.createTextValidator; exports.createUserValidator = _chunk3WTK7ESHjs.createUserValidator; exports.currency = _chunk4GHZ6AUFjs.currency; exports.currencyConfigSchema = _chunk3WTK7ESHjs.currencyConfigSchema; exports.date = _chunk4GHZ6AUFjs.date; exports.dateConfigSchema = _chunk3WTK7ESHjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunk4GHZ6AUFjs.defaultPolicyRegistry; exports.defaultTtl = _chunk4GHZ6AUFjs.defaultTtl; exports.detailView = _chunk4GHZ6AUFjs.detailView; exports.document = _chunk4GHZ6AUFjs.document; exports.documentConfigSchema = _chunk3WTK7ESHjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunk4GHZ6AUFjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk4GHZ6AUFjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk4GHZ6AUFjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk4GHZ6AUFjs.enrichWithFormulas; exports.eq = _chunk4GHZ6AUFjs.eq; exports.error = _chunk4GHZ6AUFjs.error; exports.evaluate = _chunk4GHZ6AUFjs.evaluate; exports.evaluateCondition = _chunk4GHZ6AUFjs.evaluateCondition; exports.evaluateFormula = _chunk4GHZ6AUFjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk4GHZ6AUFjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk4GHZ6AUFjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk4GHZ6AUFjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk4GHZ6AUFjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk4GHZ6AUFjs.evaluateWithTrace; exports.extractAttributeNames = _chunk4GHZ6AUFjs.extractAttributeNames; exports.extractFormulaVariables = _chunk4GHZ6AUFjs.extractFormulaVariables; exports.extractRelationIds = _chunk4GHZ6AUFjs.extractRelationIds; exports.extractRelationNames = _chunk4GHZ6AUFjs.extractRelationNames; exports.extractRelationReferences = _chunk4GHZ6AUFjs.extractRelationReferences; exports.file = _chunk4GHZ6AUFjs.file; exports.fileConfigSchema = _chunk3WTK7ESHjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunk4GHZ6AUFjs.flattenRelationsForEval; exports.formatAttributeValue = _chunk4GHZ6AUFjs.formatAttributeValue; exports.formatFormulaResult = _chunk4GHZ6AUFjs.formatFormulaResult; exports.formatPhoneForDisplay = _chunk3WTK7ESHjs.formatPhoneForDisplay; exports.formatRecord = _chunk4GHZ6AUFjs.formatRecord; exports.formatRecords = _chunk4GHZ6AUFjs.formatRecords; exports.formatZodErrors = _chunk3WTK7ESHjs.formatZodErrors; exports.formula = _chunk4GHZ6AUFjs.formula; exports.formulaConfigSchema = _chunk3WTK7ESHjs.formulaConfigSchema; exports.generateCssVariables = _chunk4GHZ6AUFjs.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 = _chunk4GHZ6AUFjs.getContext; exports.getContextValue = _chunk4GHZ6AUFjs.getContextValue; exports.getDefaultExecutorRegistry = _chunk4GHZ6AUFjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunk4GHZ6AUFjs.getErrorMessage; exports.getFeatureFlags = _chunk4GHZ6AUFjs.getFeatureFlags; exports.getFeatureValue = _chunk4GHZ6AUFjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunk3WTK7ESHjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunk4GHZ6AUFjs.getNodeOutputs; exports.getPathDepth = _chunk4GHZ6AUFjs.getPathDepth; exports.getPolicy = _chunk4GHZ6AUFjs.getPolicy; exports.getRelationPath = _chunk4GHZ6AUFjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk4GHZ6AUFjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk4GHZ6AUFjs.getSchemaContext; exports.getSchemaFromContext = _chunk4GHZ6AUFjs.getSchemaFromContext; exports.getSyncPreview = _chunk4GHZ6AUFjs.getSyncPreview; exports.getSystemAttributeList = _chunk4GHZ6AUFjs.getSystemAttributeList; exports.getSystemTemplate = _chunk4GHZ6AUFjs.getSystemTemplate; exports.getTargetAttributeName = _chunk4GHZ6AUFjs.getTargetAttributeName; exports.getTenantId = _chunk4GHZ6AUFjs.getTenantId; exports.getUserId = _chunk4GHZ6AUFjs.getUserId; exports.getViewSeedPreview = _chunk4GHZ6AUFjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk4GHZ6AUFjs.getViewSyncPreview; exports.group = _chunk4GHZ6AUFjs.group; exports.hasContext = _chunk4GHZ6AUFjs.hasContext; exports.hasFeatureFlagsContext = _chunk4GHZ6AUFjs.hasFeatureFlagsContext; exports.hasProperties = _chunk4GHZ6AUFjs.hasProperties; exports.hasRelationReferences = _chunk4GHZ6AUFjs.hasRelationReferences; exports.hasSchemaContext = _chunk4GHZ6AUFjs.hasSchemaContext; exports.hashOptions = _chunk4GHZ6AUFjs.hashOptions; exports.inValues = _chunk4GHZ6AUFjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.inferInverseCardinality = _chunk4GHZ6AUFjs.inferInverseCardinality; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunk4GHZ6AUFjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunk4GHZ6AUFjs.isBehaviorProperty; exports.isBilateralRelation = _chunk4GHZ6AUFjs.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunk4GHZ6AUFjs.isConditionGroup; exports.isConditionNode = _chunk4GHZ6AUFjs.isConditionNode; exports.isConditionRule = _chunk4GHZ6AUFjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentNode = _chunk4GHZ6AUFjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunk4GHZ6AUFjs.isEmpty; exports.isEndNode = _chunk4GHZ6AUFjs.isEndNode; exports.isFeatureEnabled = _chunk4GHZ6AUFjs.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunk4GHZ6AUFjs.isForbiddenError; exports.isFormNode = _chunk4GHZ6AUFjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunk4GHZ6AUFjs.isGrantExpired; exports.isGrantRevoked = _chunk4GHZ6AUFjs.isGrantRevoked; exports.isGrantValid = _chunk4GHZ6AUFjs.isGrantValid; exports.isIdentityProperty = _chunk4GHZ6AUFjs.isIdentityProperty; exports.isInstanceEvent = _chunk4GHZ6AUFjs.isInstanceEvent; exports.isInstanceTerminal = _chunk4GHZ6AUFjs.isInstanceTerminal; exports.isInstanceWaiting = _chunk4GHZ6AUFjs.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunk4GHZ6AUFjs.isInvitationAccepted; exports.isInvitationExpired = _chunk4GHZ6AUFjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunk4GHZ6AUFjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunk4GHZ6AUFjs.isInvitationValid; exports.isLabelExpression = _chunk4GHZ6AUFjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunk4GHZ6AUFjs.isNodeEvent; exports.isNotEmpty = _chunk4GHZ6AUFjs.isNotEmpty; exports.isNotFoundError = _chunk4GHZ6AUFjs.isNotFoundError; exports.isPresentationProperty = _chunk4GHZ6AUFjs.isPresentationProperty; exports.isProtectedResourceError = _chunk4GHZ6AUFjs.isProtectedResourceError; exports.isRecordComplete = _chunk3WTK7ESHjs.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunk4GHZ6AUFjs.isSchemaError; exports.isSimpleFormNode = _chunk4GHZ6AUFjs.isSimpleFormNode; exports.isStartNode = _chunk4GHZ6AUFjs.isStartNode; exports.isSystemAttribute = _chunk4GHZ6AUFjs.isSystemAttribute; exports.isSystemAttributeObject = _chunk4GHZ6AUFjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunk4GHZ6AUFjs.isSystemTemplate; exports.isSystemWorkflow = _chunk4GHZ6AUFjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunk4GHZ6AUFjs.isTokenRevoked; exports.isUniversalRelation = _chunk4GHZ6AUFjs.isUniversalRelation; exports.isValidationError = _chunk4GHZ6AUFjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunk4GHZ6AUFjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunk4GHZ6AUFjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunk4GHZ6AUFjs.listView; exports.location = _chunk4GHZ6AUFjs.location; exports.locationConfigSchema = _chunk3WTK7ESHjs.locationConfigSchema; exports.mergeWithDefaults = _chunk4GHZ6AUFjs.mergeWithDefaults; exports.multiselect = _chunk4GHZ6AUFjs.multiselect; exports.multiselectConfigSchema = _chunk3WTK7ESHjs.multiselectConfigSchema; exports.neq = _chunk4GHZ6AUFjs.neq; exports.normalizePhoneNumber = _chunk3WTK7ESHjs.normalizePhoneNumber; exports.number = _chunk4GHZ6AUFjs.number; exports.numberConfigSchema = _chunk3WTK7ESHjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunk4GHZ6AUFjs.object; exports.or = _chunk4GHZ6AUFjs.or; exports.parseAttributeConfig = _chunk3WTK7ESHjs.parseAttributeConfig; exports.parsePath = _chunk4GHZ6AUFjs.parsePath; exports.parseRawPhoneInput = _chunk3WTK7ESHjs.parseRawPhoneInput; exports.pathHasManyCardinality = _chunk4GHZ6AUFjs.pathHasManyCardinality; exports.phone = _chunk4GHZ6AUFjs.phone; exports.phoneConfigSchema = _chunk3WTK7ESHjs.phoneConfigSchema; exports.rating = _chunk4GHZ6AUFjs.rating; exports.ratingConfigSchema = _chunk3WTK7ESHjs.ratingConfigSchema; exports.recalculateParentRollups = _chunk4GHZ6AUFjs.recalculateParentRollups; exports.registry = _chunk4GHZ6AUFjs.registry; exports.relation = _chunk4GHZ6AUFjs.relation; exports.relationConfigSchema = _chunk3WTK7ESHjs.relationConfigSchema; exports.relationGroup = _chunk4GHZ6AUFjs.relationGroup; exports.renderLabelExpression = _chunk4GHZ6AUFjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunk4GHZ6AUFjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk4GHZ6AUFjs.resolveSingleValue; exports.richtext = _chunk4GHZ6AUFjs.richtext; exports.richtextConfigSchema = _chunk3WTK7ESHjs.richtextConfigSchema; exports.rollup = _chunk4GHZ6AUFjs.rollup; exports.rollupConfigSchema = _chunk3WTK7ESHjs.rollupConfigSchema; exports.runWithContext = _chunk4GHZ6AUFjs.runWithContext; exports.runWithFeatureFlags = _chunk4GHZ6AUFjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk4GHZ6AUFjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk4GHZ6AUFjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunk3WTK7ESHjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunk4GHZ6AUFjs.seedRegistryViews; exports.select = _chunk4GHZ6AUFjs.select; exports.selectConfigSchema = _chunk3WTK7ESHjs.selectConfigSchema; exports.setContextValue = _chunk4GHZ6AUFjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunk4GHZ6AUFjs.status; exports.statusConfigSchema = _chunk3WTK7ESHjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunk4GHZ6AUFjs.success; exports.syncAll = _chunk4GHZ6AUFjs.syncAll; exports.syncNativeObjects = _chunk4GHZ6AUFjs.syncNativeObjects; exports.syncNativeViews = _chunk4GHZ6AUFjs.syncNativeViews; exports.text = _chunk4GHZ6AUFjs.text; exports.textConfigSchema = _chunk3WTK7ESHjs.textConfigSchema; exports.textarea = _chunk4GHZ6AUFjs.textarea; exports.textareaConfigSchema = _chunk3WTK7ESHjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunk4GHZ6AUFjs.toUndefinedIfEmpty; exports.traversePath = _chunk4GHZ6AUFjs.traversePath; exports.tryGetFeatureValue = _chunk4GHZ6AUFjs.tryGetFeatureValue; exports.user = _chunk4GHZ6AUFjs.user; exports.userConfigSchema = _chunk3WTK7ESHjs.userConfigSchema; exports.validateAttribute = _chunk3WTK7ESHjs.validateAttribute; exports.validateAttributeConfig = _chunk3WTK7ESHjs.validateAttributeConfig; exports.validateDraft = _chunk3WTK7ESHjs.validateDraft; exports.validateDraftOrThrow = _chunk3WTK7ESHjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunk4GHZ6AUFjs.validateFormulaExpression; exports.validateObject = _chunk3WTK7ESHjs.validateObject; exports.validateObjectOrThrow = _chunk3WTK7ESHjs.validateObjectOrThrow; exports.validatePath = _chunk4GHZ6AUFjs.validatePath; exports.validatePhoneNumber = _chunk3WTK7ESHjs.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunk4GHZ6AUFjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk4GHZ6AUFjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk4GHZ6AUFjs.verifyRegistryViewsSeeded; exports.view = _chunk4GHZ6AUFjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunk4GHZ6AUFjs.wait; exports.withFeatureFlags = _chunk4GHZ6AUFjs.withFeatureFlags; exports.withTenantContext = _chunk4GHZ6AUFjs.withTenantContext; exports.workflow = _chunk4GHZ6AUFjs.workflow;
|
|
2014
|
+
|
|
2015
|
+
|
|
2016
|
+
|
|
2017
|
+
|
|
2018
|
+
exports.ALL_ACTIONS = ALL_ACTIONS; exports.ALL_SYSTEM_RESOURCES = _chunkJZO52C3Fjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkEWDCS5EEjs.ActivityTabConfig; exports.AttributeInUseError = _chunkEWDCS5EEjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkEWDCS5EEjs.AttributeNotFoundError; exports.AuditService = _chunkEWDCS5EEjs.AuditService; exports.AuthMethodSchema = _chunkEWDCS5EEjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkEWDCS5EEjs.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunkEWDCS5EEjs.BaseRepository; exports.BaseService = _chunkEWDCS5EEjs.BaseService; exports.ConcurrentModificationError = _chunkEWDCS5EEjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkEWDCS5EEjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkEWDCS5EEjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkEWDCS5EEjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkEWDCS5EEjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkEWDCS5EEjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkEWDCS5EEjs.CreateShareInputSchema; exports.CustomTabConfig = _chunkEWDCS5EEjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkEWDCS5EEjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunkJZO52C3Fjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunkJZO52C3Fjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunkJZO52C3Fjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunkJZO52C3Fjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkEWDCS5EEjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunk3WTK7ESHjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkEWDCS5EEjs.DRIVING_LICENSE; exports.DetailViewBuilder = _chunkEWDCS5EEjs.DetailViewBuilder; exports.DocumentExecutor = _chunkEWDCS5EEjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkEWDCS5EEjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkEWDCS5EEjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkEWDCS5EEjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkEWDCS5EEjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkEWDCS5EEjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkEWDCS5EEjs.DocumentProcessingService; exports.DocumentRenderError = _chunkEWDCS5EEjs.DocumentRenderError; exports.DocumentRendererService = _chunkEWDCS5EEjs.DocumentRendererService; exports.DocumentService = _chunkEWDCS5EEjs.DocumentService; exports.DocumentTemplateService = _chunkEWDCS5EEjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkEWDCS5EEjs.DocumentsTabConfig; exports.DuplicateError = _chunkEWDCS5EEjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkEWDCS5EEjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkEWDCS5EEjs.EndExecutor; exports.EndNodeSchema = _chunkEWDCS5EEjs.EndNodeSchema; exports.ExecutorRegistry = _chunkEWDCS5EEjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkEWDCS5EEjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkEWDCS5EEjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkEWDCS5EEjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkEWDCS5EEjs.FileNotFoundError; exports.FileService = _chunkEWDCS5EEjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkEWDCS5EEjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkEWDCS5EEjs.FlowRowSchema; exports.FlowsTabConfig = _chunkEWDCS5EEjs.FlowsTabConfig; exports.ForbiddenError = _chunkEWDCS5EEjs.ForbiddenError; exports.FormExecutor = _chunkEWDCS5EEjs.FormExecutor; exports.FormFieldRefSchema = _chunkEWDCS5EEjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkEWDCS5EEjs.FormNodeSchema; exports.FormulaResolverService = _chunkEWDCS5EEjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkEWDCS5EEjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkEWDCS5EEjs.GeocodingService; exports.GlobalSearchService = _chunkEWDCS5EEjs.GlobalSearchService; exports.GrantExpiredError = _chunkEWDCS5EEjs.GrantExpiredError; exports.GrantNotFoundError = _chunkEWDCS5EEjs.GrantNotFoundError; exports.GrantRevokedError = _chunkEWDCS5EEjs.GrantRevokedError; exports.GroupBuilder = _chunkEWDCS5EEjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkEWDCS5EEjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkEWDCS5EEjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkEWDCS5EEjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkEWDCS5EEjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkEWDCS5EEjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkEWDCS5EEjs.InvitationRevokedError; exports.ListViewBuilder = _chunkEWDCS5EEjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkEWDCS5EEjs.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunkEWDCS5EEjs.MaxDepthExceededError; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkEWDCS5EEjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkEWDCS5EEjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkEWDCS5EEjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkEWDCS5EEjs.NoopHookRegistry; exports.NotFoundError = _chunkEWDCS5EEjs.NotFoundError; exports.NotSystemObjectError = _chunkEWDCS5EEjs.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkEWDCS5EEjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkEWDCS5EEjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkEWDCS5EEjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkEWDCS5EEjs.ObjectSchemaService; exports.PASSPORT = _chunkEWDCS5EEjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkEWDCS5EEjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkEWDCS5EEjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkEWDCS5EEjs.PermissionService; exports.PolicyRegistry = _chunkEWDCS5EEjs.PolicyRegistry; exports.PolicyViolationError = _chunkEWDCS5EEjs.PolicyViolationError; exports.ProtectedResourceError = _chunkEWDCS5EEjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkEWDCS5EEjs.ProtectedRoleError; exports.QueryBuilder = _chunkEWDCS5EEjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkEWDCS5EEjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkEWDCS5EEjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkEWDCS5EEjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkEWDCS5EEjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkEWDCS5EEjs.RecordNotFoundError; exports.RecordQueryService = _chunkEWDCS5EEjs.RecordQueryService; exports.RecordReferencedError = _chunkEWDCS5EEjs.RecordReferencedError; exports.RecordResolverService = _chunkEWDCS5EEjs.RecordResolverService; exports.RecordService = _chunkEWDCS5EEjs.RecordService; exports.RelationGroupBuilder = _chunkEWDCS5EEjs.RelationGroupBuilder; exports.RelationPropertiesService = _chunkEWDCS5EEjs.RelationPropertiesService; exports.RelationService = _chunkEWDCS5EEjs.RelationService; exports.RichtextTabConfig = _chunkEWDCS5EEjs.RichtextTabConfig; exports.RoleNotFoundError = _chunkEWDCS5EEjs.RoleNotFoundError; exports.RollupScheduler = _chunkEWDCS5EEjs.RollupScheduler; exports.RollupService = _chunkEWDCS5EEjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkEWDCS5EEjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkEWDCS5EEjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkEWDCS5EEjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkEWDCS5EEjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunkJZO52C3Fjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunkJZO52C3Fjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkEWDCS5EEjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkEWDCS5EEjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkEWDCS5EEjs.SchemaContextAwareRepository; exports.SchemaError = _chunkEWDCS5EEjs.SchemaError; exports.SchemaErrorCode = _chunkEWDCS5EEjs.SchemaErrorCode; exports.ShareStatusSchema = _chunkEWDCS5EEjs.ShareStatusSchema; exports.SlotModeSchema = _chunkEWDCS5EEjs.SlotModeSchema; exports.StartExecutor = _chunkEWDCS5EEjs.StartExecutor; exports.StartNodeSchema = _chunkEWDCS5EEjs.StartNodeSchema; exports.StorageDownloadNotSupportedError = _chunkEWDCS5EEjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkEWDCS5EEjs.SyncError; exports.TabBuilder = _chunkEWDCS5EEjs.TabBuilder; exports.TableTabConfig = _chunkEWDCS5EEjs.TableTabConfig; exports.TenantContextError = _chunkEWDCS5EEjs.TenantContextError; exports.ThemeColorsSchema = _chunkEWDCS5EEjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkEWDCS5EEjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkEWDCS5EEjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunkEWDCS5EEjs.UserProfileNotFoundError; exports.UserProfileService = _chunkEWDCS5EEjs.UserProfileService; exports.UserService = _chunkEWDCS5EEjs.UserService; exports.ValidationError = _chunkEWDCS5EEjs.ValidationError; exports.ViewBuilder = _chunkEWDCS5EEjs.ViewBuilder; exports.ViewService = _chunkEWDCS5EEjs.ViewService; exports.ViewportSchema = _chunkEWDCS5EEjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkEWDCS5EEjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkEWDCS5EEjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkEWDCS5EEjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkEWDCS5EEjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkEWDCS5EEjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkEWDCS5EEjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkEWDCS5EEjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkEWDCS5EEjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkEWDCS5EEjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkEWDCS5EEjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkEWDCS5EEjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkEWDCS5EEjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkEWDCS5EEjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkEWDCS5EEjs.WorkflowRelationService; exports.WorkflowService = _chunkEWDCS5EEjs.WorkflowService; exports.WorkflowShareSchema = _chunkEWDCS5EEjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkEWDCS5EEjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkEWDCS5EEjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkEWDCS5EEjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkEWDCS5EEjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkEWDCS5EEjs.WorkflowThemeSchema; exports.accessLevelToActions = accessLevelToActions; exports.actionsToAccessLevel = actionsToAccessLevel; exports.addSchemaToContext = _chunkEWDCS5EEjs.addSchemaToContext; exports.and = _chunkEWDCS5EEjs.and; exports.applyDefaultValues = _chunkEWDCS5EEjs.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunk3WTK7ESHjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkEWDCS5EEjs.buildAuditChanges; exports.buildPolicyContext = _chunkEWDCS5EEjs.buildPolicyContext; exports.cacheKeys = _chunkEWDCS5EEjs.cacheKeys; exports.cacheTtl = _chunkEWDCS5EEjs.cacheTtl; exports.canAccessNode = _chunkEWDCS5EEjs.canAccessNode; exports.canResumeInstance = _chunkEWDCS5EEjs.canResumeInstance; exports.checkPermission = _chunkEWDCS5EEjs.checkPermission; exports.checkRecordAccess = _chunkEWDCS5EEjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkEWDCS5EEjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkEWDCS5EEjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkEWDCS5EEjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkEWDCS5EEjs.checkbox; exports.checkboxConfigSchema = _chunk3WTK7ESHjs.checkboxConfigSchema; exports.complete = _chunkEWDCS5EEjs.complete; exports.computeLabel = _chunkEWDCS5EEjs.computeLabel; exports.computeLabelWithRelations = _chunkEWDCS5EEjs.computeLabelWithRelations; exports.computeRecordStatus = _chunk3WTK7ESHjs.computeRecordStatus; exports.createAttributeValidator = _chunk3WTK7ESHjs.createAttributeValidator; exports.createCheckboxValidator = _chunk3WTK7ESHjs.createCheckboxValidator; exports.createContextForCreate = _chunkEWDCS5EEjs.createContextForCreate; exports.createContextForDelete = _chunkEWDCS5EEjs.createContextForDelete; exports.createContextForRestore = _chunkEWDCS5EEjs.createContextForRestore; exports.createContextForUpdate = _chunkEWDCS5EEjs.createContextForUpdate; exports.createCurrencyValidator = _chunk3WTK7ESHjs.createCurrencyValidator; exports.createDateValidator = _chunk3WTK7ESHjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkEWDCS5EEjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkEWDCS5EEjs.createDefaultState; exports.createDraftValidator = _chunk3WTK7ESHjs.createDraftValidator; exports.createEmptyContext = _chunkEWDCS5EEjs.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 = _chunkEWDCS5EEjs.createMockAdapter; exports.createMultiRelationValidator = _chunk3WTK7ESHjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk3WTK7ESHjs.createMultiselectValidator; exports.createNumberValidator = _chunk3WTK7ESHjs.createNumberValidator; exports.createObjectValidator = _chunk3WTK7ESHjs.createObjectValidator; exports.createPhoneValidator = _chunk3WTK7ESHjs.createPhoneValidator; exports.createQueryBuilder = _chunkEWDCS5EEjs.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 = _chunkEWDCS5EEjs.createStartTransition; exports.createStatusValidator = _chunk3WTK7ESHjs.createStatusValidator; exports.createTextAreaValidator = _chunk3WTK7ESHjs.createTextAreaValidator; exports.createTextValidator = _chunk3WTK7ESHjs.createTextValidator; exports.createUserValidator = _chunk3WTK7ESHjs.createUserValidator; exports.currency = _chunkEWDCS5EEjs.currency; exports.currencyConfigSchema = _chunk3WTK7ESHjs.currencyConfigSchema; exports.date = _chunkEWDCS5EEjs.date; exports.dateConfigSchema = _chunk3WTK7ESHjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkEWDCS5EEjs.defaultPolicyRegistry; exports.defaultTtl = _chunkEWDCS5EEjs.defaultTtl; exports.detailView = _chunkEWDCS5EEjs.detailView; exports.document = _chunkEWDCS5EEjs.document; exports.documentConfigSchema = _chunk3WTK7ESHjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkEWDCS5EEjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkEWDCS5EEjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkEWDCS5EEjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkEWDCS5EEjs.enrichWithFormulas; exports.eq = _chunkEWDCS5EEjs.eq; exports.error = _chunkEWDCS5EEjs.error; exports.evaluate = _chunkEWDCS5EEjs.evaluate; exports.evaluateCondition = _chunkEWDCS5EEjs.evaluateCondition; exports.evaluateFormula = _chunkEWDCS5EEjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkEWDCS5EEjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkEWDCS5EEjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkEWDCS5EEjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkEWDCS5EEjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkEWDCS5EEjs.evaluateWithTrace; exports.extractAttributeNames = _chunkEWDCS5EEjs.extractAttributeNames; exports.extractFormulaVariables = _chunkEWDCS5EEjs.extractFormulaVariables; exports.extractRelationIds = _chunkEWDCS5EEjs.extractRelationIds; exports.extractRelationNames = _chunkEWDCS5EEjs.extractRelationNames; exports.extractRelationReferences = _chunkEWDCS5EEjs.extractRelationReferences; exports.file = _chunkEWDCS5EEjs.file; exports.fileConfigSchema = _chunk3WTK7ESHjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkEWDCS5EEjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkEWDCS5EEjs.formatAttributeValue; exports.formatFormulaResult = _chunkEWDCS5EEjs.formatFormulaResult; exports.formatPhoneForDisplay = _chunk3WTK7ESHjs.formatPhoneForDisplay; exports.formatRecord = _chunkEWDCS5EEjs.formatRecord; exports.formatRecords = _chunkEWDCS5EEjs.formatRecords; exports.formatZodErrors = _chunk3WTK7ESHjs.formatZodErrors; exports.formula = _chunkEWDCS5EEjs.formula; exports.formulaConfigSchema = _chunk3WTK7ESHjs.formulaConfigSchema; exports.generateCssVariables = _chunkEWDCS5EEjs.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 = _chunkEWDCS5EEjs.getContext; exports.getContextValue = _chunkEWDCS5EEjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkEWDCS5EEjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkEWDCS5EEjs.getErrorMessage; exports.getFeatureFlags = _chunkEWDCS5EEjs.getFeatureFlags; exports.getFeatureValue = _chunkEWDCS5EEjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunk3WTK7ESHjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkEWDCS5EEjs.getNodeOutputs; exports.getPathDepth = _chunkEWDCS5EEjs.getPathDepth; exports.getPolicy = _chunkEWDCS5EEjs.getPolicy; exports.getRelationPath = _chunkEWDCS5EEjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkEWDCS5EEjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkEWDCS5EEjs.getSchemaContext; exports.getSchemaFromContext = _chunkEWDCS5EEjs.getSchemaFromContext; exports.getSyncPreview = _chunkEWDCS5EEjs.getSyncPreview; exports.getSystemAttributeList = _chunkEWDCS5EEjs.getSystemAttributeList; exports.getSystemTemplate = _chunkEWDCS5EEjs.getSystemTemplate; exports.getTargetAttributeName = _chunkEWDCS5EEjs.getTargetAttributeName; exports.getTenantId = _chunkEWDCS5EEjs.getTenantId; exports.getUserId = _chunkEWDCS5EEjs.getUserId; exports.getViewSeedPreview = _chunkEWDCS5EEjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkEWDCS5EEjs.getViewSyncPreview; exports.group = _chunkEWDCS5EEjs.group; exports.hasContext = _chunkEWDCS5EEjs.hasContext; exports.hasFeatureFlagsContext = _chunkEWDCS5EEjs.hasFeatureFlagsContext; exports.hasProperties = _chunkEWDCS5EEjs.hasProperties; exports.hasRelationReferences = _chunkEWDCS5EEjs.hasRelationReferences; exports.hasSchemaContext = _chunkEWDCS5EEjs.hasSchemaContext; exports.hashOptions = _chunkEWDCS5EEjs.hashOptions; exports.inValues = _chunkEWDCS5EEjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.inferInverseCardinality = _chunkEWDCS5EEjs.inferInverseCardinality; exports.isActivityTab = isActivityTab; exports.isAdminRole = _chunkJZO52C3Fjs.isAdminRole; exports.isAdvancedFormNode = _chunkEWDCS5EEjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunkEWDCS5EEjs.isBehaviorProperty; exports.isBilateralRelation = _chunkEWDCS5EEjs.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkEWDCS5EEjs.isConditionGroup; exports.isConditionNode = _chunkEWDCS5EEjs.isConditionNode; exports.isConditionRule = _chunkEWDCS5EEjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunkJZO52C3Fjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentNode = _chunkEWDCS5EEjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkEWDCS5EEjs.isEmpty; exports.isEndNode = _chunkEWDCS5EEjs.isEndNode; exports.isFeatureEnabled = _chunkEWDCS5EEjs.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkEWDCS5EEjs.isForbiddenError; exports.isFormNode = _chunkEWDCS5EEjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkEWDCS5EEjs.isGrantExpired; exports.isGrantRevoked = _chunkEWDCS5EEjs.isGrantRevoked; exports.isGrantValid = _chunkEWDCS5EEjs.isGrantValid; exports.isIdentityProperty = _chunkEWDCS5EEjs.isIdentityProperty; exports.isInstanceEvent = _chunkEWDCS5EEjs.isInstanceEvent; exports.isInstanceTerminal = _chunkEWDCS5EEjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkEWDCS5EEjs.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunkEWDCS5EEjs.isInvitationAccepted; exports.isInvitationExpired = _chunkEWDCS5EEjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkEWDCS5EEjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkEWDCS5EEjs.isInvitationValid; exports.isLabelExpression = _chunkEWDCS5EEjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkEWDCS5EEjs.isNodeEvent; exports.isNotEmpty = _chunkEWDCS5EEjs.isNotEmpty; exports.isNotFoundError = _chunkEWDCS5EEjs.isNotFoundError; exports.isPresentationProperty = _chunkEWDCS5EEjs.isPresentationProperty; exports.isProtectedResourceError = _chunkEWDCS5EEjs.isProtectedResourceError; exports.isRecordComplete = _chunk3WTK7ESHjs.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunkEWDCS5EEjs.isSchemaError; exports.isSimpleFormNode = _chunkEWDCS5EEjs.isSimpleFormNode; exports.isStartNode = _chunkEWDCS5EEjs.isStartNode; exports.isSystemAttribute = _chunkEWDCS5EEjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkEWDCS5EEjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkEWDCS5EEjs.isSystemTemplate; exports.isSystemWorkflow = _chunkEWDCS5EEjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkEWDCS5EEjs.isTokenRevoked; exports.isUniversalRelation = _chunkEWDCS5EEjs.isUniversalRelation; exports.isValidationError = _chunkEWDCS5EEjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkEWDCS5EEjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkEWDCS5EEjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkEWDCS5EEjs.listView; exports.location = _chunkEWDCS5EEjs.location; exports.locationConfigSchema = _chunk3WTK7ESHjs.locationConfigSchema; exports.mergeWithDefaults = _chunkEWDCS5EEjs.mergeWithDefaults; exports.multiselect = _chunkEWDCS5EEjs.multiselect; exports.multiselectConfigSchema = _chunk3WTK7ESHjs.multiselectConfigSchema; exports.neq = _chunkEWDCS5EEjs.neq; exports.normalizePhoneNumber = _chunk3WTK7ESHjs.normalizePhoneNumber; exports.number = _chunkEWDCS5EEjs.number; exports.numberConfigSchema = _chunk3WTK7ESHjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkEWDCS5EEjs.object; exports.or = _chunkEWDCS5EEjs.or; exports.parseAttributeConfig = _chunk3WTK7ESHjs.parseAttributeConfig; exports.parsePath = _chunkEWDCS5EEjs.parsePath; exports.parseRawPhoneInput = _chunk3WTK7ESHjs.parseRawPhoneInput; exports.pathHasManyCardinality = _chunkEWDCS5EEjs.pathHasManyCardinality; exports.phone = _chunkEWDCS5EEjs.phone; exports.phoneConfigSchema = _chunk3WTK7ESHjs.phoneConfigSchema; exports.rating = _chunkEWDCS5EEjs.rating; exports.ratingConfigSchema = _chunk3WTK7ESHjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkEWDCS5EEjs.recalculateParentRollups; exports.registry = _chunkEWDCS5EEjs.registry; exports.relation = _chunkEWDCS5EEjs.relation; exports.relationConfigSchema = _chunk3WTK7ESHjs.relationConfigSchema; exports.relationGroup = _chunkEWDCS5EEjs.relationGroup; exports.renderLabelExpression = _chunkEWDCS5EEjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkEWDCS5EEjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkEWDCS5EEjs.resolveSingleValue; exports.richtext = _chunkEWDCS5EEjs.richtext; exports.richtextConfigSchema = _chunk3WTK7ESHjs.richtextConfigSchema; exports.rollup = _chunkEWDCS5EEjs.rollup; exports.rollupConfigSchema = _chunk3WTK7ESHjs.rollupConfigSchema; exports.runWithContext = _chunkEWDCS5EEjs.runWithContext; exports.runWithFeatureFlags = _chunkEWDCS5EEjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkEWDCS5EEjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkEWDCS5EEjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunk3WTK7ESHjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkEWDCS5EEjs.seedRegistryViews; exports.select = _chunkEWDCS5EEjs.select; exports.selectConfigSchema = _chunk3WTK7ESHjs.selectConfigSchema; exports.setContextValue = _chunkEWDCS5EEjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkEWDCS5EEjs.status; exports.statusConfigSchema = _chunk3WTK7ESHjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkEWDCS5EEjs.success; exports.syncAll = _chunkEWDCS5EEjs.syncAll; exports.syncNativeObjects = _chunkEWDCS5EEjs.syncNativeObjects; exports.syncNativeViews = _chunkEWDCS5EEjs.syncNativeViews; exports.text = _chunkEWDCS5EEjs.text; exports.textConfigSchema = _chunk3WTK7ESHjs.textConfigSchema; exports.textarea = _chunkEWDCS5EEjs.textarea; exports.textareaConfigSchema = _chunk3WTK7ESHjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkEWDCS5EEjs.toUndefinedIfEmpty; exports.traversePath = _chunkEWDCS5EEjs.traversePath; exports.tryGetFeatureValue = _chunkEWDCS5EEjs.tryGetFeatureValue; exports.user = _chunkEWDCS5EEjs.user; exports.userConfigSchema = _chunk3WTK7ESHjs.userConfigSchema; exports.validateAttribute = _chunk3WTK7ESHjs.validateAttribute; exports.validateAttributeConfig = _chunk3WTK7ESHjs.validateAttributeConfig; exports.validateDraft = _chunk3WTK7ESHjs.validateDraft; exports.validateDraftOrThrow = _chunk3WTK7ESHjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkEWDCS5EEjs.validateFormulaExpression; exports.validateObject = _chunk3WTK7ESHjs.validateObject; exports.validateObjectOrThrow = _chunk3WTK7ESHjs.validateObjectOrThrow; exports.validatePath = _chunkEWDCS5EEjs.validatePath; exports.validatePhoneNumber = _chunk3WTK7ESHjs.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunkEWDCS5EEjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkEWDCS5EEjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkEWDCS5EEjs.verifyRegistryViewsSeeded; exports.view = _chunkEWDCS5EEjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkEWDCS5EEjs.wait; exports.withFeatureFlags = _chunkEWDCS5EEjs.withFeatureFlags; exports.withTenantContext = _chunkEWDCS5EEjs.withTenantContext; exports.workflow = _chunkEWDCS5EEjs.workflow;
|
package/dist/index.mjs
CHANGED
|
@@ -330,7 +330,7 @@ import {
|
|
|
330
330
|
withFeatureFlags,
|
|
331
331
|
withTenantContext,
|
|
332
332
|
workflow
|
|
333
|
-
} from "./chunk-
|
|
333
|
+
} from "./chunk-ABOLTRIR.mjs";
|
|
334
334
|
import {
|
|
335
335
|
asTenantId,
|
|
336
336
|
asUserId,
|
|
@@ -412,8 +412,9 @@ import {
|
|
|
412
412
|
DEFAULT_ROLE_PERMISSIONS,
|
|
413
413
|
SYSTEM_RESOURCES,
|
|
414
414
|
SYSTEM_RESOURCE_LABELS,
|
|
415
|
+
isAdminRole,
|
|
415
416
|
isDefaultRole
|
|
416
|
-
} from "./chunk-
|
|
417
|
+
} from "./chunk-6P3NPTYV.mjs";
|
|
417
418
|
import "./chunk-Y6FXYEAI.mjs";
|
|
418
419
|
|
|
419
420
|
// src/types/filters.ts
|
|
@@ -503,6 +504,26 @@ function isSystemFlow(flow) {
|
|
|
503
504
|
return flow.system === true;
|
|
504
505
|
}
|
|
505
506
|
|
|
507
|
+
// src/types/permissions.ts
|
|
508
|
+
var ALL_ACTIONS = ["read", "create", "update", "delete"];
|
|
509
|
+
function actionsToAccessLevel(actions) {
|
|
510
|
+
if (actions.length === 0) return "none";
|
|
511
|
+
if (actions.length === 1 && actions[0] === "read") return "read-only";
|
|
512
|
+
if (actions.length === ALL_ACTIONS.length && ALL_ACTIONS.every((a) => actions.includes(a)))
|
|
513
|
+
return "full";
|
|
514
|
+
return "custom";
|
|
515
|
+
}
|
|
516
|
+
function accessLevelToActions(level) {
|
|
517
|
+
switch (level) {
|
|
518
|
+
case "full":
|
|
519
|
+
return [...ALL_ACTIONS];
|
|
520
|
+
case "read-only":
|
|
521
|
+
return ["read"];
|
|
522
|
+
case "none":
|
|
523
|
+
return [];
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
|
|
506
527
|
// src/types/views.ts
|
|
507
528
|
function isDetailView(view2) {
|
|
508
529
|
return view2.type === "detail";
|
|
@@ -1543,6 +1564,7 @@ function isViewCustomized(view2, object2) {
|
|
|
1543
1564
|
return true;
|
|
1544
1565
|
}
|
|
1545
1566
|
export {
|
|
1567
|
+
ALL_ACTIONS,
|
|
1546
1568
|
ALL_SYSTEM_RESOURCES,
|
|
1547
1569
|
ActivityTabConfig,
|
|
1548
1570
|
AttributeInUseError,
|
|
@@ -1705,6 +1727,8 @@ export {
|
|
|
1705
1727
|
WorkflowStartBuilder,
|
|
1706
1728
|
WorkflowStatusSchema,
|
|
1707
1729
|
WorkflowThemeSchema,
|
|
1730
|
+
accessLevelToActions,
|
|
1731
|
+
actionsToAccessLevel,
|
|
1708
1732
|
addSchemaToContext,
|
|
1709
1733
|
and,
|
|
1710
1734
|
applyDefaultValues,
|
|
@@ -1848,6 +1872,7 @@ export {
|
|
|
1848
1872
|
indexBy,
|
|
1849
1873
|
inferInverseCardinality,
|
|
1850
1874
|
isActivityTab,
|
|
1875
|
+
isAdminRole,
|
|
1851
1876
|
isAdvancedFormNode,
|
|
1852
1877
|
isBehaviorProperty,
|
|
1853
1878
|
isBilateralRelation,
|