@stndrds/schema 1.0.0-alpha.78 → 1.0.0-alpha.80
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-5SZ5OISG.mjs → chunk-7VNLLASJ.mjs} +0 -2
- package/dist/{chunk-3WTK7ESH.js → chunk-HUT6HYXJ.js} +0 -2
- package/dist/{chunk-JYXUFVUD.mjs → chunk-OR44EVWO.mjs} +1115 -1777
- package/dist/{chunk-KGEV5PIT.js → chunk-WHDJLJRK.js} +1356 -2018
- package/dist/index.d.mts +294 -107
- package/dist/index.d.ts +294 -107
- package/dist/index.js +14 -26
- package/dist/index.mjs +50 -62
- package/dist/{runtime-Df0uvz45.d.ts → runtime-B6Dt5_Gc.d.ts} +594 -1293
- package/dist/{runtime-ntcKC7g8.d.mts → runtime-Ttkdn9W7.d.mts} +594 -1293
- package/dist/runtime.d.mts +2 -2
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.js +3 -19
- package/dist/runtime.mjs +4 -20
- package/dist/validation/validators.d.mts +1 -1
- package/dist/validation/validators.d.ts +1 -1
- package/dist/validation/validators.js +2 -2
- package/dist/validation/validators.mjs +1 -1
- package/dist/{validators-DUB0tEzp.d.mts → validators-BeBrdQCB.d.mts} +3 -14
- package/dist/{validators-BxPuQ2GT.d.ts → validators-UuAMCPc6.d.ts} +3 -14
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -333,7 +333,8 @@
|
|
|
333
333
|
|
|
334
334
|
|
|
335
335
|
|
|
336
|
-
|
|
336
|
+
|
|
337
|
+
var _chunkWHDJLJRKjs = require('./chunk-WHDJLJRK.js');
|
|
337
338
|
|
|
338
339
|
|
|
339
340
|
|
|
@@ -406,7 +407,7 @@ var _chunkNEVERCM3js = require('./chunk-NEVERCM3.js');
|
|
|
406
407
|
|
|
407
408
|
|
|
408
409
|
|
|
409
|
-
var
|
|
410
|
+
var _chunkHUT6HYXJjs = require('./chunk-HUT6HYXJ.js');
|
|
410
411
|
|
|
411
412
|
|
|
412
413
|
|
|
@@ -511,17 +512,6 @@ function getRollupFilterOperators(attr) {
|
|
|
511
512
|
return OPERATORS_BY_TYPE.number;
|
|
512
513
|
}
|
|
513
514
|
|
|
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
515
|
// src/types/permissions.ts
|
|
526
516
|
var ALL_ACTIONS = ["read", "create", "update", "delete"];
|
|
527
517
|
function actionsToAccessLevel(actions) {
|
|
@@ -606,14 +596,14 @@ function applyRelationProps(label, props, propertyDefs) {
|
|
|
606
596
|
if (value == null) continue;
|
|
607
597
|
const def = defMap.get(key);
|
|
608
598
|
if (def) {
|
|
609
|
-
const formatted =
|
|
610
|
-
formattedProps[key] = formatted ===
|
|
599
|
+
const formatted = _chunkWHDJLJRKjs.formatAttributeValue.call(void 0, value, def);
|
|
600
|
+
formattedProps[key] = formatted === _chunkWHDJLJRKjs.EMPTY_VALUE_PLACEHOLDER ? "" : formatted;
|
|
611
601
|
} else {
|
|
612
602
|
formattedProps[key] = value;
|
|
613
603
|
}
|
|
614
604
|
}
|
|
615
605
|
}
|
|
616
|
-
const result =
|
|
606
|
+
const result = _chunkWHDJLJRKjs.renderLabelExpression.call(void 0, label, { props: formattedProps }, "");
|
|
617
607
|
return result.replace(/\(\s*\)/g, "").replace(/\[\s*\]/g, "").replace(/\s*[-\u2014|:]\s*$/g, "").replace(/\s{2,}/g, " ").trim();
|
|
618
608
|
}
|
|
619
609
|
|
|
@@ -972,7 +962,7 @@ var FlagService = class {
|
|
|
972
962
|
for (const name of this.staticDefaults.keys()) {
|
|
973
963
|
flagNames.add(name);
|
|
974
964
|
}
|
|
975
|
-
const overrides = this.repository ? await this.getAllOverrides(context) : { global: [], tenant: [], user: [] };
|
|
965
|
+
const overrides = this.repository && flagNames.size > 0 ? await this.getAllOverrides(context, [...flagNames]) : { global: [], tenant: [], user: [] };
|
|
976
966
|
for (const name of flagNames) {
|
|
977
967
|
const value = this.resolveValue(name, overrides, context);
|
|
978
968
|
resolved.set(name, value);
|
|
@@ -987,7 +977,7 @@ var FlagService = class {
|
|
|
987
977
|
* @returns Resolved flag with source information
|
|
988
978
|
*/
|
|
989
979
|
async resolve(flagName, context = {}) {
|
|
990
|
-
const overrides = this.repository ? await this.getAllOverrides(context) : { global: [], tenant: [], user: [] };
|
|
980
|
+
const overrides = this.repository ? await this.getAllOverrides(context, [flagName]) : { global: [], tenant: [], user: [] };
|
|
991
981
|
return this.resolveWithSource(flagName, overrides, context);
|
|
992
982
|
}
|
|
993
983
|
/**
|
|
@@ -1061,16 +1051,16 @@ var FlagService = class {
|
|
|
1061
1051
|
// PRIVATE HELPERS
|
|
1062
1052
|
// ============================================================================
|
|
1063
1053
|
/**
|
|
1064
|
-
* Get all overrides organized by level.
|
|
1054
|
+
* Get all overrides organized by level, optionally filtered to specific flag names.
|
|
1065
1055
|
*/
|
|
1066
|
-
async getAllOverrides(context) {
|
|
1056
|
+
async getAllOverrides(context, flagNames) {
|
|
1067
1057
|
if (!this.repository) {
|
|
1068
1058
|
return { global: [], tenant: [], user: [] };
|
|
1069
1059
|
}
|
|
1070
1060
|
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([])
|
|
1061
|
+
this.repository.getOverrides({ level: "global", flagNames }),
|
|
1062
|
+
context.tenantId ? this.repository.getOverrides({ level: "tenant", targetId: context.tenantId, flagNames }) : Promise.resolve([]),
|
|
1063
|
+
context.userId ? this.repository.getOverrides({ level: "user", targetId: context.userId, flagNames }) : Promise.resolve([])
|
|
1074
1064
|
]);
|
|
1075
1065
|
return {
|
|
1076
1066
|
global: globalOverrides,
|
|
@@ -2062,6 +2052,4 @@ function isViewCustomized(view2, object2) {
|
|
|
2062
2052
|
|
|
2063
2053
|
|
|
2064
2054
|
|
|
2065
|
-
|
|
2066
|
-
|
|
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;
|
|
2055
|
+
exports.ALL_ACTIONS = ALL_ACTIONS; exports.ALL_SYSTEM_RESOURCES = _chunk7WT53FJ4js.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkWHDJLJRKjs.ActivityTabConfig; exports.AssignExecutor = _chunkWHDJLJRKjs.AssignExecutor; exports.AssignNodeSchema = _chunkWHDJLJRKjs.AssignNodeSchema; exports.AssignmentMappingSchema = _chunkWHDJLJRKjs.AssignmentMappingSchema; exports.AssignmentSourceSchema = _chunkWHDJLJRKjs.AssignmentSourceSchema; exports.AttributeInUseError = _chunkWHDJLJRKjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkWHDJLJRKjs.AttributeNotFoundError; exports.AuditService = _chunkWHDJLJRKjs.AuditService; exports.AuthMethodSchema = _chunkWHDJLJRKjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkWHDJLJRKjs.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunkWHDJLJRKjs.BaseRepository; exports.BaseService = _chunkWHDJLJRKjs.BaseService; exports.ConcurrentModificationError = _chunkWHDJLJRKjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkWHDJLJRKjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkWHDJLJRKjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkWHDJLJRKjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkWHDJLJRKjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkWHDJLJRKjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkWHDJLJRKjs.CreateShareInputSchema; exports.CustomTabConfig = _chunkWHDJLJRKjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkWHDJLJRKjs.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 = _chunkWHDJLJRKjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkHUT6HYXJjs.DEFAULT_VALIDATION_MESSAGES; exports.DetailViewBuilder = _chunkWHDJLJRKjs.DetailViewBuilder; exports.DocumentProcessingService = _chunkWHDJLJRKjs.DocumentProcessingService; exports.DocumentService = _chunkWHDJLJRKjs.DocumentService; exports.DocumentsTabConfig = _chunkWHDJLJRKjs.DocumentsTabConfig; exports.DuplicateError = _chunkWHDJLJRKjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkWHDJLJRKjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkWHDJLJRKjs.EndExecutor; exports.EndNodeSchema = _chunkWHDJLJRKjs.EndNodeSchema; exports.ExecutorRegistry = _chunkWHDJLJRKjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkWHDJLJRKjs.FORBIDDEN_PROPERTY_TYPES; exports.FeatureFlagsContextError = _chunkWHDJLJRKjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkWHDJLJRKjs.FileNotFoundError; exports.FileService = _chunkWHDJLJRKjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkWHDJLJRKjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkWHDJLJRKjs.FlowRowSchema; exports.FlowsTabConfig = _chunkWHDJLJRKjs.FlowsTabConfig; exports.ForbiddenError = _chunkWHDJLJRKjs.ForbiddenError; exports.FormExecutor = _chunkWHDJLJRKjs.FormExecutor; exports.FormFieldRefSchema = _chunkWHDJLJRKjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkWHDJLJRKjs.FormNodeSchema; exports.FormulaResolverService = _chunkWHDJLJRKjs.FormulaResolverService; exports.GeocodingService = _chunkWHDJLJRKjs.GeocodingService; exports.GlobalSearchService = _chunkWHDJLJRKjs.GlobalSearchService; exports.GrantExpiredError = _chunkWHDJLJRKjs.GrantExpiredError; exports.GrantNotFoundError = _chunkWHDJLJRKjs.GrantNotFoundError; exports.GrantRevokedError = _chunkWHDJLJRKjs.GrantRevokedError; exports.GroupBuilder = _chunkWHDJLJRKjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkWHDJLJRKjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkWHDJLJRKjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkWHDJLJRKjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkWHDJLJRKjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkWHDJLJRKjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkWHDJLJRKjs.InvitationRevokedError; exports.ListViewBuilder = _chunkWHDJLJRKjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkWHDJLJRKjs.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunkWHDJLJRKjs.MaxDepthExceededError; exports.NON_SORTABLE_TYPES = _chunkWHDJLJRKjs.NON_SORTABLE_TYPES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkWHDJLJRKjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkWHDJLJRKjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkWHDJLJRKjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkWHDJLJRKjs.NoopHookRegistry; exports.NotFoundError = _chunkWHDJLJRKjs.NotFoundError; exports.NotSystemObjectError = _chunkWHDJLJRKjs.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkWHDJLJRKjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkWHDJLJRKjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkWHDJLJRKjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkWHDJLJRKjs.ObjectSchemaService; exports.PRESENTATION_PROPERTIES = _chunkWHDJLJRKjs.PRESENTATION_PROPERTIES; exports.PermissionService = _chunkWHDJLJRKjs.PermissionService; exports.PolicyRegistry = _chunkWHDJLJRKjs.PolicyRegistry; exports.PolicyViolationError = _chunkWHDJLJRKjs.PolicyViolationError; exports.ProtectedResourceError = _chunkWHDJLJRKjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkWHDJLJRKjs.ProtectedRoleError; exports.QueryBuilder = _chunkWHDJLJRKjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkWHDJLJRKjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkWHDJLJRKjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkWHDJLJRKjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkWHDJLJRKjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkWHDJLJRKjs.RecordNotFoundError; exports.RecordQueryService = _chunkWHDJLJRKjs.RecordQueryService; exports.RecordReferencedError = _chunkWHDJLJRKjs.RecordReferencedError; exports.RecordResolverService = _chunkWHDJLJRKjs.RecordResolverService; exports.RecordService = _chunkWHDJLJRKjs.RecordService; exports.RelationGroupBuilder = _chunkWHDJLJRKjs.RelationGroupBuilder; exports.RelationPropertiesService = _chunkWHDJLJRKjs.RelationPropertiesService; exports.RelationService = _chunkWHDJLJRKjs.RelationService; exports.RichtextTabConfig = _chunkWHDJLJRKjs.RichtextTabConfig; exports.RoleNotFoundError = _chunkWHDJLJRKjs.RoleNotFoundError; exports.RollupScheduler = _chunkWHDJLJRKjs.RollupScheduler; exports.RollupService = _chunkWHDJLJRKjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkWHDJLJRKjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SORTABLE_ATTRIBUTE_TYPES = _chunkWHDJLJRKjs.SORTABLE_ATTRIBUTE_TYPES; exports.SYSTEM_ATTRIBUTES = _chunkWHDJLJRKjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkWHDJLJRKjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk7WT53FJ4js.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk7WT53FJ4js.SYSTEM_RESOURCE_LABELS; exports.SchemaContextAwareRepository = _chunkWHDJLJRKjs.SchemaContextAwareRepository; exports.SchemaError = _chunkWHDJLJRKjs.SchemaError; exports.SchemaErrorCode = _chunkWHDJLJRKjs.SchemaErrorCode; exports.ShareStatusSchema = _chunkWHDJLJRKjs.ShareStatusSchema; exports.SlotModeSchema = _chunkWHDJLJRKjs.SlotModeSchema; exports.StartExecutor = _chunkWHDJLJRKjs.StartExecutor; exports.StartNodeSchema = _chunkWHDJLJRKjs.StartNodeSchema; exports.SyncError = _chunkWHDJLJRKjs.SyncError; exports.TabBuilder = _chunkWHDJLJRKjs.TabBuilder; exports.TableTabConfig = _chunkWHDJLJRKjs.TableTabConfig; exports.TenantContextError = _chunkWHDJLJRKjs.TenantContextError; exports.ThemeColorsSchema = _chunkWHDJLJRKjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkWHDJLJRKjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkWHDJLJRKjs.TokenRevokedError; exports.USER_STATUSES = USER_STATUSES; exports.UserProfileNotFoundError = _chunkWHDJLJRKjs.UserProfileNotFoundError; exports.UserProfileService = _chunkWHDJLJRKjs.UserProfileService; exports.UserService = _chunkWHDJLJRKjs.UserService; exports.ValidationError = _chunkWHDJLJRKjs.ValidationError; exports.ViewBuilder = _chunkWHDJLJRKjs.ViewBuilder; exports.ViewService = _chunkWHDJLJRKjs.ViewService; exports.ViewportSchema = _chunkWHDJLJRKjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkWHDJLJRKjs.WorkflowAccessGrantService; exports.WorkflowAssignBuilder = _chunkWHDJLJRKjs.WorkflowAssignBuilder; exports.WorkflowBuilder = _chunkWHDJLJRKjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkWHDJLJRKjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkWHDJLJRKjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkWHDJLJRKjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkWHDJLJRKjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkWHDJLJRKjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkWHDJLJRKjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkWHDJLJRKjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkWHDJLJRKjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkWHDJLJRKjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkWHDJLJRKjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkWHDJLJRKjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkWHDJLJRKjs.WorkflowRelationService; exports.WorkflowService = _chunkWHDJLJRKjs.WorkflowService; exports.WorkflowShareSchema = _chunkWHDJLJRKjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkWHDJLJRKjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkWHDJLJRKjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkWHDJLJRKjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkWHDJLJRKjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkWHDJLJRKjs.WorkflowThemeSchema; exports.ZONE_CONFIG = _chunkWHDJLJRKjs.ZONE_CONFIG; exports.ZONE_ORDER = _chunkWHDJLJRKjs.ZONE_ORDER; exports.accessLevelToActions = accessLevelToActions; exports.actionsToAccessLevel = actionsToAccessLevel; exports.addSchemaToContext = _chunkWHDJLJRKjs.addSchemaToContext; exports.and = _chunkWHDJLJRKjs.and; exports.applyDefaultValues = _chunkWHDJLJRKjs.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.assignNodeZones = _chunkWHDJLJRKjs.assignNodeZones; exports.attributeConfigSchemas = _chunkHUT6HYXJjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkWHDJLJRKjs.buildAuditChanges; exports.buildPolicyContext = _chunkWHDJLJRKjs.buildPolicyContext; exports.cacheKeys = _chunkWHDJLJRKjs.cacheKeys; exports.cacheTtl = _chunkWHDJLJRKjs.cacheTtl; exports.canAccessNode = _chunkWHDJLJRKjs.canAccessNode; exports.canResumeInstance = _chunkWHDJLJRKjs.canResumeInstance; exports.checkPermission = _chunkWHDJLJRKjs.checkPermission; exports.checkRecordAccess = _chunkWHDJLJRKjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkWHDJLJRKjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkWHDJLJRKjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkWHDJLJRKjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkWHDJLJRKjs.checkbox; exports.checkboxConfigSchema = _chunkHUT6HYXJjs.checkboxConfigSchema; exports.complete = _chunkWHDJLJRKjs.complete; exports.computeLabel = _chunkWHDJLJRKjs.computeLabel; exports.computeLabelWithRelations = _chunkWHDJLJRKjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkHUT6HYXJjs.computeRecordStatus; exports.createAttributeValidator = _chunkHUT6HYXJjs.createAttributeValidator; exports.createCheckboxValidator = _chunkHUT6HYXJjs.createCheckboxValidator; exports.createContextForCreate = _chunkWHDJLJRKjs.createContextForCreate; exports.createContextForDelete = _chunkWHDJLJRKjs.createContextForDelete; exports.createContextForRestore = _chunkWHDJLJRKjs.createContextForRestore; exports.createContextForUpdate = _chunkWHDJLJRKjs.createContextForUpdate; exports.createCurrencyValidator = _chunkHUT6HYXJjs.createCurrencyValidator; exports.createDateValidator = _chunkHUT6HYXJjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkWHDJLJRKjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkWHDJLJRKjs.createDefaultState; exports.createDraftValidator = _chunkHUT6HYXJjs.createDraftValidator; exports.createEmptyContext = _chunkWHDJLJRKjs.createEmptyContext; exports.createFileValidator = _chunkHUT6HYXJjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkHUT6HYXJjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkHUT6HYXJjs.createFormulaValidator; exports.createLocationValidator = _chunkHUT6HYXJjs.createLocationValidator; exports.createMockAdapter = _chunkWHDJLJRKjs.createMockAdapter; exports.createMultiRelationValidator = _chunkHUT6HYXJjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkHUT6HYXJjs.createMultiselectValidator; exports.createNumberValidator = _chunkHUT6HYXJjs.createNumberValidator; exports.createObjectValidator = _chunkHUT6HYXJjs.createObjectValidator; exports.createPhoneValidator = _chunkHUT6HYXJjs.createPhoneValidator; exports.createQueryBuilder = _chunkWHDJLJRKjs.createQueryBuilder; exports.createRatingValidator = _chunkHUT6HYXJjs.createRatingValidator; exports.createRelationValidator = _chunkHUT6HYXJjs.createRelationValidator; exports.createRichtextValidator = _chunkHUT6HYXJjs.createRichtextValidator; exports.createRollupValidator = _chunkHUT6HYXJjs.createRollupValidator; exports.createSelectValidator = _chunkHUT6HYXJjs.createSelectValidator; exports.createSingleRelationValidator = _chunkHUT6HYXJjs.createSingleRelationValidator; exports.createStartTransition = _chunkWHDJLJRKjs.createStartTransition; exports.createStatusValidator = _chunkHUT6HYXJjs.createStatusValidator; exports.createTextAreaValidator = _chunkHUT6HYXJjs.createTextAreaValidator; exports.createTextValidator = _chunkHUT6HYXJjs.createTextValidator; exports.createUserValidator = _chunkHUT6HYXJjs.createUserValidator; exports.currency = _chunkWHDJLJRKjs.currency; exports.currencyConfigSchema = _chunkHUT6HYXJjs.currencyConfigSchema; exports.date = _chunkWHDJLJRKjs.date; exports.dateConfigSchema = _chunkHUT6HYXJjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkWHDJLJRKjs.defaultPolicyRegistry; exports.defaultTtl = _chunkWHDJLJRKjs.defaultTtl; exports.detailView = _chunkWHDJLJRKjs.detailView; exports.document = _chunkWHDJLJRKjs.document; exports.documentConfigSchema = _chunkHUT6HYXJjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkWHDJLJRKjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkWHDJLJRKjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkWHDJLJRKjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkWHDJLJRKjs.enrichWithFormulas; exports.eq = _chunkWHDJLJRKjs.eq; exports.error = _chunkWHDJLJRKjs.error; exports.evaluate = _chunkWHDJLJRKjs.evaluate; exports.evaluateCondition = _chunkWHDJLJRKjs.evaluateCondition; exports.evaluateFormula = _chunkWHDJLJRKjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkWHDJLJRKjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkWHDJLJRKjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkWHDJLJRKjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkWHDJLJRKjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkWHDJLJRKjs.evaluateWithTrace; exports.extractAttributeNames = _chunkWHDJLJRKjs.extractAttributeNames; exports.extractFormulaVariables = _chunkWHDJLJRKjs.extractFormulaVariables; exports.extractRelationIds = _chunkWHDJLJRKjs.extractRelationIds; exports.extractRelationNames = _chunkWHDJLJRKjs.extractRelationNames; exports.extractRelationReferences = _chunkWHDJLJRKjs.extractRelationReferences; exports.file = _chunkWHDJLJRKjs.file; exports.fileConfigSchema = _chunkHUT6HYXJjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkWHDJLJRKjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkWHDJLJRKjs.formatAttributeValue; exports.formatFormulaResult = _chunkWHDJLJRKjs.formatFormulaResult; exports.formatPhoneForDisplay = _chunkHUT6HYXJjs.formatPhoneForDisplay; exports.formatRecord = _chunkWHDJLJRKjs.formatRecord; exports.formatRecords = _chunkWHDJLJRKjs.formatRecords; exports.formatZodErrors = _chunkHUT6HYXJjs.formatZodErrors; exports.formula = _chunkWHDJLJRKjs.formula; exports.formulaConfigSchema = _chunkHUT6HYXJjs.formulaConfigSchema; exports.generateCssVariables = _chunkWHDJLJRKjs.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 = _chunkHUT6HYXJjs.getAttributeConfigSchema; exports.getContext = _chunkWHDJLJRKjs.getContext; exports.getContextValue = _chunkWHDJLJRKjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkWHDJLJRKjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkWHDJLJRKjs.getErrorMessage; exports.getFeatureFlags = _chunkWHDJLJRKjs.getFeatureFlags; exports.getFeatureValue = _chunkWHDJLJRKjs.getFeatureValue; exports.getFormFieldRefs = _chunkWHDJLJRKjs.getFormFieldRefs; exports.getMissingRequiredAttributes = _chunkHUT6HYXJjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkWHDJLJRKjs.getNodeOutputs; exports.getNodeSlotIds = _chunkWHDJLJRKjs.getNodeSlotIds; exports.getPathDepth = _chunkWHDJLJRKjs.getPathDepth; exports.getPolicy = _chunkWHDJLJRKjs.getPolicy; exports.getRelationPath = _chunkWHDJLJRKjs.getRelationPath; exports.getRollupFilterOperators = getRollupFilterOperators; exports.getSchemaByNameFromContext = _chunkWHDJLJRKjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkWHDJLJRKjs.getSchemaContext; exports.getSchemaFromContext = _chunkWHDJLJRKjs.getSchemaFromContext; exports.getSyncPreview = _chunkWHDJLJRKjs.getSyncPreview; exports.getSystemAttributeList = _chunkWHDJLJRKjs.getSystemAttributeList; exports.getTargetAttributeName = _chunkWHDJLJRKjs.getTargetAttributeName; exports.getTenantId = _chunkWHDJLJRKjs.getTenantId; exports.getUserId = _chunkWHDJLJRKjs.getUserId; exports.getViewSeedPreview = _chunkWHDJLJRKjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkWHDJLJRKjs.getViewSyncPreview; exports.getZoneAllowedTypes = _chunkWHDJLJRKjs.getZoneAllowedTypes; exports.group = _chunkWHDJLJRKjs.group; exports.groupNodesByZone = _chunkWHDJLJRKjs.groupNodesByZone; exports.hasContext = _chunkWHDJLJRKjs.hasContext; exports.hasFeatureFlagsContext = _chunkWHDJLJRKjs.hasFeatureFlagsContext; exports.hasProperties = _chunkWHDJLJRKjs.hasProperties; exports.hasRelationReferences = _chunkWHDJLJRKjs.hasRelationReferences; exports.hasSchemaContext = _chunkWHDJLJRKjs.hasSchemaContext; exports.hashOptions = _chunkWHDJLJRKjs.hashOptions; exports.inValues = _chunkWHDJLJRKjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.inferInverseCardinality = _chunkWHDJLJRKjs.inferInverseCardinality; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkWHDJLJRKjs.isAdvancedFormNode; exports.isAssignNode = _chunkWHDJLJRKjs.isAssignNode; exports.isAttributeSortable = _chunkWHDJLJRKjs.isAttributeSortable; exports.isBehaviorProperty = _chunkWHDJLJRKjs.isBehaviorProperty; exports.isBilateralRelation = _chunkWHDJLJRKjs.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkWHDJLJRKjs.isConditionGroup; exports.isConditionNode = _chunkWHDJLJRKjs.isConditionNode; exports.isConditionRule = _chunkWHDJLJRKjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk7WT53FJ4js.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkWHDJLJRKjs.isEmpty; exports.isEndNode = _chunkWHDJLJRKjs.isEndNode; exports.isFeatureEnabled = _chunkWHDJLJRKjs.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = _chunkWHDJLJRKjs.isFlowDefinition; exports.isFlowFieldsRow = _chunkWHDJLJRKjs.isFlowFieldsRow; exports.isFlowPublished = _chunkWHDJLJRKjs.isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkWHDJLJRKjs.isForbiddenError; exports.isFormFieldsRow = _chunkWHDJLJRKjs.isFormFieldsRow; exports.isFormNode = _chunkWHDJLJRKjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkWHDJLJRKjs.isGrantExpired; exports.isGrantRevoked = _chunkWHDJLJRKjs.isGrantRevoked; exports.isGrantValid = _chunkWHDJLJRKjs.isGrantValid; exports.isIdentityProperty = _chunkWHDJLJRKjs.isIdentityProperty; exports.isInstanceEvent = _chunkWHDJLJRKjs.isInstanceEvent; exports.isInstanceTerminal = _chunkWHDJLJRKjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkWHDJLJRKjs.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunkWHDJLJRKjs.isInvitationAccepted; exports.isInvitationExpired = _chunkWHDJLJRKjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkWHDJLJRKjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkWHDJLJRKjs.isInvitationValid; exports.isLabelExpression = _chunkWHDJLJRKjs.isLabelExpression; exports.isLayoutRow = _chunkWHDJLJRKjs.isLayoutRow; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkWHDJLJRKjs.isNodeEvent; exports.isNotEmpty = _chunkWHDJLJRKjs.isNotEmpty; exports.isNotFoundError = _chunkWHDJLJRKjs.isNotFoundError; exports.isPresentationProperty = _chunkWHDJLJRKjs.isPresentationProperty; exports.isProtectedResourceError = _chunkWHDJLJRKjs.isProtectedResourceError; exports.isRecordComplete = _chunkHUT6HYXJjs.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunkWHDJLJRKjs.isSchemaError; exports.isSimpleFormNode = _chunkWHDJLJRKjs.isSimpleFormNode; exports.isStartNode = _chunkWHDJLJRKjs.isStartNode; exports.isSystemAttribute = _chunkWHDJLJRKjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkWHDJLJRKjs.isSystemAttributeObject; exports.isSystemFlow = _chunkWHDJLJRKjs.isSystemFlow; exports.isSystemWorkflow = _chunkWHDJLJRKjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkWHDJLJRKjs.isTokenRevoked; exports.isUniversalRelation = _chunkWHDJLJRKjs.isUniversalRelation; exports.isValidationError = _chunkWHDJLJRKjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkWHDJLJRKjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkWHDJLJRKjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkWHDJLJRKjs.listView; exports.location = _chunkWHDJLJRKjs.location; exports.locationConfigSchema = _chunkHUT6HYXJjs.locationConfigSchema; exports.mergeWithDefaults = _chunkWHDJLJRKjs.mergeWithDefaults; exports.multiselect = _chunkWHDJLJRKjs.multiselect; exports.multiselectConfigSchema = _chunkHUT6HYXJjs.multiselectConfigSchema; exports.neq = _chunkWHDJLJRKjs.neq; exports.nodeTypeRegistry = _chunkWHDJLJRKjs.nodeTypeRegistry; exports.normalizePhoneNumber = _chunkHUT6HYXJjs.normalizePhoneNumber; exports.number = _chunkWHDJLJRKjs.number; exports.numberConfigSchema = _chunkHUT6HYXJjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkWHDJLJRKjs.object; exports.or = _chunkWHDJLJRKjs.or; exports.parseAttributeConfig = _chunkHUT6HYXJjs.parseAttributeConfig; exports.parsePath = _chunkWHDJLJRKjs.parsePath; exports.parseRawPhoneInput = _chunkHUT6HYXJjs.parseRawPhoneInput; exports.pathHasManyCardinality = _chunkWHDJLJRKjs.pathHasManyCardinality; exports.phone = _chunkWHDJLJRKjs.phone; exports.phoneConfigSchema = _chunkHUT6HYXJjs.phoneConfigSchema; exports.rating = _chunkWHDJLJRKjs.rating; exports.ratingConfigSchema = _chunkHUT6HYXJjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkWHDJLJRKjs.recalculateParentRollups; exports.registry = _chunkWHDJLJRKjs.registry; exports.relation = _chunkWHDJLJRKjs.relation; exports.relationConfigSchema = _chunkHUT6HYXJjs.relationConfigSchema; exports.relationGroup = _chunkWHDJLJRKjs.relationGroup; exports.renderLabelExpression = _chunkWHDJLJRKjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkWHDJLJRKjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkWHDJLJRKjs.resolveSingleValue; exports.richtext = _chunkWHDJLJRKjs.richtext; exports.richtextConfigSchema = _chunkHUT6HYXJjs.richtextConfigSchema; exports.rollup = _chunkWHDJLJRKjs.rollup; exports.rollupConfigSchema = _chunkHUT6HYXJjs.rollupConfigSchema; exports.runWithContext = _chunkWHDJLJRKjs.runWithContext; exports.runWithFeatureFlags = _chunkWHDJLJRKjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkWHDJLJRKjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkWHDJLJRKjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkHUT6HYXJjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkWHDJLJRKjs.seedRegistryViews; exports.select = _chunkWHDJLJRKjs.select; exports.selectConfigSchema = _chunkHUT6HYXJjs.selectConfigSchema; exports.setContextValue = _chunkWHDJLJRKjs.setContextValue; exports.setNodeNext = _chunkWHDJLJRKjs.setNodeNext; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkWHDJLJRKjs.status; exports.statusConfigSchema = _chunkHUT6HYXJjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkWHDJLJRKjs.success; exports.syncAll = _chunkWHDJLJRKjs.syncAll; exports.syncNativeObjects = _chunkWHDJLJRKjs.syncNativeObjects; exports.syncNativeViews = _chunkWHDJLJRKjs.syncNativeViews; exports.text = _chunkWHDJLJRKjs.text; exports.textConfigSchema = _chunkHUT6HYXJjs.textConfigSchema; exports.textarea = _chunkWHDJLJRKjs.textarea; exports.textareaConfigSchema = _chunkHUT6HYXJjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkWHDJLJRKjs.toUndefinedIfEmpty; exports.traversePath = _chunkWHDJLJRKjs.traversePath; exports.tryGetFeatureValue = _chunkWHDJLJRKjs.tryGetFeatureValue; exports.user = _chunkWHDJLJRKjs.user; exports.userConfigSchema = _chunkHUT6HYXJjs.userConfigSchema; exports.validateAttribute = _chunkHUT6HYXJjs.validateAttribute; exports.validateAttributeConfig = _chunkHUT6HYXJjs.validateAttributeConfig; exports.validateDraft = _chunkHUT6HYXJjs.validateDraft; exports.validateDraftOrThrow = _chunkHUT6HYXJjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkWHDJLJRKjs.validateFormulaExpression; exports.validateNode = _chunkWHDJLJRKjs.validateNode; exports.validateObject = _chunkHUT6HYXJjs.validateObject; exports.validateObjectOrThrow = _chunkHUT6HYXJjs.validateObjectOrThrow; exports.validatePath = _chunkWHDJLJRKjs.validatePath; exports.validatePhoneNumber = _chunkHUT6HYXJjs.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunkWHDJLJRKjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkWHDJLJRKjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkWHDJLJRKjs.verifyRegistryViewsSeeded; exports.view = _chunkWHDJLJRKjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkWHDJLJRKjs.wait; exports.withFeatureFlags = _chunkWHDJLJRKjs.withFeatureFlags; exports.withTenantContext = _chunkWHDJLJRKjs.withTenantContext; exports.workflow = _chunkWHDJLJRKjs.workflow;
|
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ActivityTabConfig,
|
|
3
|
+
AssignExecutor,
|
|
4
|
+
AssignNodeSchema,
|
|
5
|
+
AssignmentMappingSchema,
|
|
6
|
+
AssignmentSourceSchema,
|
|
3
7
|
AttributeInUseError,
|
|
4
8
|
AttributeNotFoundError,
|
|
5
9
|
AuditService,
|
|
@@ -17,19 +21,9 @@ import {
|
|
|
17
21
|
CustomTabConfig,
|
|
18
22
|
DEFAULT_LABEL_FALLBACK,
|
|
19
23
|
DEFAULT_THEME,
|
|
20
|
-
DRIVING_LICENSE,
|
|
21
24
|
DetailViewBuilder,
|
|
22
|
-
DocumentExecutor,
|
|
23
|
-
DocumentGenerationNotConfiguredError,
|
|
24
|
-
DocumentGenerationService,
|
|
25
|
-
DocumentGenerationTemplateNotFoundError,
|
|
26
|
-
DocumentNodeSchema,
|
|
27
|
-
DocumentProcessingHook,
|
|
28
25
|
DocumentProcessingService,
|
|
29
|
-
DocumentRenderError,
|
|
30
|
-
DocumentRendererService,
|
|
31
26
|
DocumentService,
|
|
32
|
-
DocumentTemplateService,
|
|
33
27
|
DocumentsTabConfig,
|
|
34
28
|
DuplicateError,
|
|
35
29
|
EMPTY_VALUE_PLACEHOLDER,
|
|
@@ -37,7 +31,6 @@ import {
|
|
|
37
31
|
EndNodeSchema,
|
|
38
32
|
ExecutorRegistry,
|
|
39
33
|
FORBIDDEN_PROPERTY_TYPES,
|
|
40
|
-
FRENCH_ID_CARD,
|
|
41
34
|
FeatureFlagsContextError,
|
|
42
35
|
FileNotFoundError,
|
|
43
36
|
FileService,
|
|
@@ -49,7 +42,6 @@ import {
|
|
|
49
42
|
FormFieldRefSchema,
|
|
50
43
|
FormNodeSchema,
|
|
51
44
|
FormulaResolverService,
|
|
52
|
-
GENERIC_DOCUMENT,
|
|
53
45
|
GeocodingService,
|
|
54
46
|
GlobalSearchService,
|
|
55
47
|
GrantExpiredError,
|
|
@@ -76,9 +68,7 @@ import {
|
|
|
76
68
|
ObjectNotFoundError,
|
|
77
69
|
ObjectReferencedError,
|
|
78
70
|
ObjectSchemaService,
|
|
79
|
-
PASSPORT,
|
|
80
71
|
PRESENTATION_PROPERTIES,
|
|
81
|
-
PROOF_OF_ADDRESS,
|
|
82
72
|
PermissionService,
|
|
83
73
|
PolicyRegistry,
|
|
84
74
|
PolicyViolationError,
|
|
@@ -102,12 +92,9 @@ import {
|
|
|
102
92
|
RollupScheduler,
|
|
103
93
|
RollupService,
|
|
104
94
|
SHORTCUT_TO_FILTER_OPERATOR,
|
|
105
|
-
SIGNABLE_CONTRACT,
|
|
106
95
|
SORTABLE_ATTRIBUTE_TYPES,
|
|
107
96
|
SYSTEM_ATTRIBUTES,
|
|
108
97
|
SYSTEM_FIELD_NAMES,
|
|
109
|
-
SYSTEM_TEMPLATES,
|
|
110
|
-
SYSTEM_TEMPLATE_IDS,
|
|
111
98
|
SchemaContextAwareRepository,
|
|
112
99
|
SchemaError,
|
|
113
100
|
SchemaErrorCode,
|
|
@@ -115,7 +102,6 @@ import {
|
|
|
115
102
|
SlotModeSchema,
|
|
116
103
|
StartExecutor,
|
|
117
104
|
StartNodeSchema,
|
|
118
|
-
StorageDownloadNotSupportedError,
|
|
119
105
|
SyncError,
|
|
120
106
|
TabBuilder,
|
|
121
107
|
TableTabConfig,
|
|
@@ -131,6 +117,7 @@ import {
|
|
|
131
117
|
ViewService,
|
|
132
118
|
ViewportSchema,
|
|
133
119
|
WorkflowAccessGrantService,
|
|
120
|
+
WorkflowAssignBuilder,
|
|
134
121
|
WorkflowBuilder,
|
|
135
122
|
WorkflowConditionBuilder,
|
|
136
123
|
WorkflowConfigSchema,
|
|
@@ -151,9 +138,12 @@ import {
|
|
|
151
138
|
WorkflowStartBuilder,
|
|
152
139
|
WorkflowStatusSchema,
|
|
153
140
|
WorkflowThemeSchema,
|
|
141
|
+
ZONE_CONFIG,
|
|
142
|
+
ZONE_ORDER,
|
|
154
143
|
addSchemaToContext,
|
|
155
144
|
and,
|
|
156
145
|
applyDefaultValues,
|
|
146
|
+
assignNodeZones,
|
|
157
147
|
buildAuditChanges,
|
|
158
148
|
buildPolicyContext,
|
|
159
149
|
cacheKeys,
|
|
@@ -218,7 +208,9 @@ import {
|
|
|
218
208
|
getErrorMessage,
|
|
219
209
|
getFeatureFlags,
|
|
220
210
|
getFeatureValue,
|
|
211
|
+
getFormFieldRefs,
|
|
221
212
|
getNodeOutputs,
|
|
213
|
+
getNodeSlotIds,
|
|
222
214
|
getPathDepth,
|
|
223
215
|
getPolicy,
|
|
224
216
|
getRelationPath,
|
|
@@ -227,13 +219,14 @@ import {
|
|
|
227
219
|
getSchemaFromContext,
|
|
228
220
|
getSyncPreview,
|
|
229
221
|
getSystemAttributeList,
|
|
230
|
-
getSystemTemplate,
|
|
231
222
|
getTargetAttributeName,
|
|
232
223
|
getTenantId,
|
|
233
224
|
getUserId,
|
|
234
225
|
getViewSeedPreview,
|
|
235
226
|
getViewSyncPreview,
|
|
227
|
+
getZoneAllowedTypes,
|
|
236
228
|
group,
|
|
229
|
+
groupNodesByZone,
|
|
237
230
|
hasContext,
|
|
238
231
|
hasFeatureFlagsContext,
|
|
239
232
|
hasProperties,
|
|
@@ -243,17 +236,21 @@ import {
|
|
|
243
236
|
inValues,
|
|
244
237
|
inferInverseCardinality,
|
|
245
238
|
isAdvancedFormNode,
|
|
239
|
+
isAssignNode,
|
|
246
240
|
isAttributeSortable,
|
|
247
241
|
isBehaviorProperty,
|
|
248
242
|
isBilateralRelation,
|
|
249
243
|
isConditionGroup,
|
|
250
244
|
isConditionNode,
|
|
251
245
|
isConditionRule,
|
|
252
|
-
isDocumentNode,
|
|
253
246
|
isEmpty,
|
|
254
247
|
isEndNode,
|
|
255
248
|
isFeatureEnabled,
|
|
249
|
+
isFlowDefinition,
|
|
250
|
+
isFlowFieldsRow,
|
|
251
|
+
isFlowPublished,
|
|
256
252
|
isForbiddenError,
|
|
253
|
+
isFormFieldsRow,
|
|
257
254
|
isFormNode,
|
|
258
255
|
isGrantExpired,
|
|
259
256
|
isGrantRevoked,
|
|
@@ -267,6 +264,7 @@ import {
|
|
|
267
264
|
isInvitationOrGrantEvent,
|
|
268
265
|
isInvitationValid,
|
|
269
266
|
isLabelExpression,
|
|
267
|
+
isLayoutRow,
|
|
270
268
|
isNodeEvent,
|
|
271
269
|
isNotEmpty,
|
|
272
270
|
isNotFoundError,
|
|
@@ -277,7 +275,7 @@ import {
|
|
|
277
275
|
isStartNode,
|
|
278
276
|
isSystemAttribute,
|
|
279
277
|
isSystemAttributeObject,
|
|
280
|
-
|
|
278
|
+
isSystemFlow,
|
|
281
279
|
isSystemWorkflow,
|
|
282
280
|
isTokenRevoked,
|
|
283
281
|
isUniversalRelation,
|
|
@@ -289,6 +287,7 @@ import {
|
|
|
289
287
|
mergeWithDefaults,
|
|
290
288
|
multiselect,
|
|
291
289
|
neq,
|
|
290
|
+
nodeTypeRegistry,
|
|
292
291
|
number,
|
|
293
292
|
object,
|
|
294
293
|
or,
|
|
@@ -312,6 +311,7 @@ import {
|
|
|
312
311
|
seedRegistryViews,
|
|
313
312
|
select,
|
|
314
313
|
setContextValue,
|
|
314
|
+
setNodeNext,
|
|
315
315
|
status,
|
|
316
316
|
success,
|
|
317
317
|
syncAll,
|
|
@@ -324,6 +324,7 @@ import {
|
|
|
324
324
|
tryGetFeatureValue,
|
|
325
325
|
user,
|
|
326
326
|
validateFormulaExpression,
|
|
327
|
+
validateNode,
|
|
327
328
|
validatePath,
|
|
328
329
|
verifyNativeObjectsSync,
|
|
329
330
|
verifyNativeViewsSync,
|
|
@@ -333,7 +334,7 @@ import {
|
|
|
333
334
|
withFeatureFlags,
|
|
334
335
|
withTenantContext,
|
|
335
336
|
workflow
|
|
336
|
-
} from "./chunk-
|
|
337
|
+
} from "./chunk-OR44EVWO.mjs";
|
|
337
338
|
import {
|
|
338
339
|
asTenantId,
|
|
339
340
|
asUserId,
|
|
@@ -406,7 +407,7 @@ import {
|
|
|
406
407
|
validateObject,
|
|
407
408
|
validateObjectOrThrow,
|
|
408
409
|
validatePhoneNumber
|
|
409
|
-
} from "./chunk-
|
|
410
|
+
} from "./chunk-7VNLLASJ.mjs";
|
|
410
411
|
import {
|
|
411
412
|
ALL_SYSTEM_RESOURCES,
|
|
412
413
|
DEFAULT_ROLES,
|
|
@@ -511,17 +512,6 @@ function getRollupFilterOperators(attr) {
|
|
|
511
512
|
return OPERATORS_BY_TYPE.number;
|
|
512
513
|
}
|
|
513
514
|
|
|
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
515
|
// src/types/permissions.ts
|
|
526
516
|
var ALL_ACTIONS = ["read", "create", "update", "delete"];
|
|
527
517
|
function actionsToAccessLevel(actions) {
|
|
@@ -972,7 +962,7 @@ var FlagService = class {
|
|
|
972
962
|
for (const name of this.staticDefaults.keys()) {
|
|
973
963
|
flagNames.add(name);
|
|
974
964
|
}
|
|
975
|
-
const overrides = this.repository ? await this.getAllOverrides(context) : { global: [], tenant: [], user: [] };
|
|
965
|
+
const overrides = this.repository && flagNames.size > 0 ? await this.getAllOverrides(context, [...flagNames]) : { global: [], tenant: [], user: [] };
|
|
976
966
|
for (const name of flagNames) {
|
|
977
967
|
const value = this.resolveValue(name, overrides, context);
|
|
978
968
|
resolved.set(name, value);
|
|
@@ -987,7 +977,7 @@ var FlagService = class {
|
|
|
987
977
|
* @returns Resolved flag with source information
|
|
988
978
|
*/
|
|
989
979
|
async resolve(flagName, context = {}) {
|
|
990
|
-
const overrides = this.repository ? await this.getAllOverrides(context) : { global: [], tenant: [], user: [] };
|
|
980
|
+
const overrides = this.repository ? await this.getAllOverrides(context, [flagName]) : { global: [], tenant: [], user: [] };
|
|
991
981
|
return this.resolveWithSource(flagName, overrides, context);
|
|
992
982
|
}
|
|
993
983
|
/**
|
|
@@ -1061,16 +1051,16 @@ var FlagService = class {
|
|
|
1061
1051
|
// PRIVATE HELPERS
|
|
1062
1052
|
// ============================================================================
|
|
1063
1053
|
/**
|
|
1064
|
-
* Get all overrides organized by level.
|
|
1054
|
+
* Get all overrides organized by level, optionally filtered to specific flag names.
|
|
1065
1055
|
*/
|
|
1066
|
-
async getAllOverrides(context) {
|
|
1056
|
+
async getAllOverrides(context, flagNames) {
|
|
1067
1057
|
if (!this.repository) {
|
|
1068
1058
|
return { global: [], tenant: [], user: [] };
|
|
1069
1059
|
}
|
|
1070
1060
|
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([])
|
|
1061
|
+
this.repository.getOverrides({ level: "global", flagNames }),
|
|
1062
|
+
context.tenantId ? this.repository.getOverrides({ level: "tenant", targetId: context.tenantId, flagNames }) : Promise.resolve([]),
|
|
1063
|
+
context.userId ? this.repository.getOverrides({ level: "user", targetId: context.userId, flagNames }) : Promise.resolve([])
|
|
1074
1064
|
]);
|
|
1075
1065
|
return {
|
|
1076
1066
|
global: globalOverrides,
|
|
@@ -1611,6 +1601,10 @@ export {
|
|
|
1611
1601
|
ALL_ACTIONS,
|
|
1612
1602
|
ALL_SYSTEM_RESOURCES,
|
|
1613
1603
|
ActivityTabConfig,
|
|
1604
|
+
AssignExecutor,
|
|
1605
|
+
AssignNodeSchema,
|
|
1606
|
+
AssignmentMappingSchema,
|
|
1607
|
+
AssignmentSourceSchema,
|
|
1614
1608
|
AttributeInUseError,
|
|
1615
1609
|
AttributeNotFoundError,
|
|
1616
1610
|
AuditService,
|
|
@@ -1634,19 +1628,9 @@ export {
|
|
|
1634
1628
|
DEFAULT_ROLE_PERMISSIONS,
|
|
1635
1629
|
DEFAULT_THEME,
|
|
1636
1630
|
DEFAULT_VALIDATION_MESSAGES,
|
|
1637
|
-
DRIVING_LICENSE,
|
|
1638
1631
|
DetailViewBuilder,
|
|
1639
|
-
DocumentExecutor,
|
|
1640
|
-
DocumentGenerationNotConfiguredError,
|
|
1641
|
-
DocumentGenerationService,
|
|
1642
|
-
DocumentGenerationTemplateNotFoundError,
|
|
1643
|
-
DocumentNodeSchema,
|
|
1644
|
-
DocumentProcessingHook,
|
|
1645
1632
|
DocumentProcessingService,
|
|
1646
|
-
DocumentRenderError,
|
|
1647
|
-
DocumentRendererService,
|
|
1648
1633
|
DocumentService,
|
|
1649
|
-
DocumentTemplateService,
|
|
1650
1634
|
DocumentsTabConfig,
|
|
1651
1635
|
DuplicateError,
|
|
1652
1636
|
EMPTY_VALUE_PLACEHOLDER,
|
|
@@ -1654,7 +1638,6 @@ export {
|
|
|
1654
1638
|
EndNodeSchema,
|
|
1655
1639
|
ExecutorRegistry,
|
|
1656
1640
|
FORBIDDEN_PROPERTY_TYPES,
|
|
1657
|
-
FRENCH_ID_CARD,
|
|
1658
1641
|
FeatureFlagsContextError,
|
|
1659
1642
|
FileNotFoundError,
|
|
1660
1643
|
FileService,
|
|
@@ -1668,7 +1651,6 @@ export {
|
|
|
1668
1651
|
FormFieldRefSchema,
|
|
1669
1652
|
FormNodeSchema,
|
|
1670
1653
|
FormulaResolverService,
|
|
1671
|
-
GENERIC_DOCUMENT,
|
|
1672
1654
|
GeocodingService,
|
|
1673
1655
|
GlobalSearchService,
|
|
1674
1656
|
GrantExpiredError,
|
|
@@ -1697,9 +1679,7 @@ export {
|
|
|
1697
1679
|
ObjectNotFoundError,
|
|
1698
1680
|
ObjectReferencedError,
|
|
1699
1681
|
ObjectSchemaService,
|
|
1700
|
-
PASSPORT,
|
|
1701
1682
|
PRESENTATION_PROPERTIES,
|
|
1702
|
-
PROOF_OF_ADDRESS,
|
|
1703
1683
|
PermissionService,
|
|
1704
1684
|
PolicyRegistry,
|
|
1705
1685
|
PolicyViolationError,
|
|
@@ -1723,14 +1703,11 @@ export {
|
|
|
1723
1703
|
RollupScheduler,
|
|
1724
1704
|
RollupService,
|
|
1725
1705
|
SHORTCUT_TO_FILTER_OPERATOR,
|
|
1726
|
-
SIGNABLE_CONTRACT,
|
|
1727
1706
|
SORTABLE_ATTRIBUTE_TYPES,
|
|
1728
1707
|
SYSTEM_ATTRIBUTES,
|
|
1729
1708
|
SYSTEM_FIELD_NAMES,
|
|
1730
1709
|
SYSTEM_RESOURCES,
|
|
1731
1710
|
SYSTEM_RESOURCE_LABELS,
|
|
1732
|
-
SYSTEM_TEMPLATES,
|
|
1733
|
-
SYSTEM_TEMPLATE_IDS,
|
|
1734
1711
|
SchemaContextAwareRepository,
|
|
1735
1712
|
SchemaError,
|
|
1736
1713
|
SchemaErrorCode,
|
|
@@ -1738,7 +1715,6 @@ export {
|
|
|
1738
1715
|
SlotModeSchema,
|
|
1739
1716
|
StartExecutor,
|
|
1740
1717
|
StartNodeSchema,
|
|
1741
|
-
StorageDownloadNotSupportedError,
|
|
1742
1718
|
SyncError,
|
|
1743
1719
|
TabBuilder,
|
|
1744
1720
|
TableTabConfig,
|
|
@@ -1755,6 +1731,7 @@ export {
|
|
|
1755
1731
|
ViewService,
|
|
1756
1732
|
ViewportSchema,
|
|
1757
1733
|
WorkflowAccessGrantService,
|
|
1734
|
+
WorkflowAssignBuilder,
|
|
1758
1735
|
WorkflowBuilder,
|
|
1759
1736
|
WorkflowConditionBuilder,
|
|
1760
1737
|
WorkflowConfigSchema,
|
|
@@ -1775,6 +1752,8 @@ export {
|
|
|
1775
1752
|
WorkflowStartBuilder,
|
|
1776
1753
|
WorkflowStatusSchema,
|
|
1777
1754
|
WorkflowThemeSchema,
|
|
1755
|
+
ZONE_CONFIG,
|
|
1756
|
+
ZONE_ORDER,
|
|
1778
1757
|
accessLevelToActions,
|
|
1779
1758
|
actionsToAccessLevel,
|
|
1780
1759
|
addSchemaToContext,
|
|
@@ -1783,6 +1762,7 @@ export {
|
|
|
1783
1762
|
applyRelationProps,
|
|
1784
1763
|
asTenantId,
|
|
1785
1764
|
asUserId,
|
|
1765
|
+
assignNodeZones,
|
|
1786
1766
|
attributeConfigSchemas,
|
|
1787
1767
|
booleanFlag,
|
|
1788
1768
|
buildAuditChanges,
|
|
@@ -1893,8 +1873,10 @@ export {
|
|
|
1893
1873
|
getErrorMessage,
|
|
1894
1874
|
getFeatureFlags,
|
|
1895
1875
|
getFeatureValue,
|
|
1876
|
+
getFormFieldRefs,
|
|
1896
1877
|
getMissingRequiredAttributes,
|
|
1897
1878
|
getNodeOutputs,
|
|
1879
|
+
getNodeSlotIds,
|
|
1898
1880
|
getPathDepth,
|
|
1899
1881
|
getPolicy,
|
|
1900
1882
|
getRelationPath,
|
|
@@ -1904,13 +1886,14 @@ export {
|
|
|
1904
1886
|
getSchemaFromContext,
|
|
1905
1887
|
getSyncPreview,
|
|
1906
1888
|
getSystemAttributeList,
|
|
1907
|
-
getSystemTemplate,
|
|
1908
1889
|
getTargetAttributeName,
|
|
1909
1890
|
getTenantId,
|
|
1910
1891
|
getUserId,
|
|
1911
1892
|
getViewSeedPreview,
|
|
1912
1893
|
getViewSyncPreview,
|
|
1894
|
+
getZoneAllowedTypes,
|
|
1913
1895
|
group,
|
|
1896
|
+
groupNodesByZone,
|
|
1914
1897
|
hasContext,
|
|
1915
1898
|
hasFeatureFlagsContext,
|
|
1916
1899
|
hasProperties,
|
|
@@ -1922,6 +1905,7 @@ export {
|
|
|
1922
1905
|
inferInverseCardinality,
|
|
1923
1906
|
isActivityTab,
|
|
1924
1907
|
isAdvancedFormNode,
|
|
1908
|
+
isAssignNode,
|
|
1925
1909
|
isAttributeSortable,
|
|
1926
1910
|
isBehaviorProperty,
|
|
1927
1911
|
isBilateralRelation,
|
|
@@ -1932,16 +1916,17 @@ export {
|
|
|
1932
1916
|
isCustomTab,
|
|
1933
1917
|
isDefaultRole,
|
|
1934
1918
|
isDetailView,
|
|
1935
|
-
isDocumentNode,
|
|
1936
1919
|
isDocumentsTab,
|
|
1937
1920
|
isEmpty,
|
|
1938
1921
|
isEndNode,
|
|
1939
1922
|
isFeatureEnabled,
|
|
1940
1923
|
isFieldGroup,
|
|
1941
1924
|
isFlowDefinition,
|
|
1925
|
+
isFlowFieldsRow,
|
|
1942
1926
|
isFlowPublished,
|
|
1943
1927
|
isFlowsTab,
|
|
1944
1928
|
isForbiddenError,
|
|
1929
|
+
isFormFieldsRow,
|
|
1945
1930
|
isFormNode,
|
|
1946
1931
|
isFormTab,
|
|
1947
1932
|
isGalleryView,
|
|
@@ -1958,6 +1943,7 @@ export {
|
|
|
1958
1943
|
isInvitationOrGrantEvent,
|
|
1959
1944
|
isInvitationValid,
|
|
1960
1945
|
isLabelExpression,
|
|
1946
|
+
isLayoutRow,
|
|
1961
1947
|
isListView,
|
|
1962
1948
|
isNoValueOperator,
|
|
1963
1949
|
isNodeEvent,
|
|
@@ -1975,7 +1961,6 @@ export {
|
|
|
1975
1961
|
isSystemAttribute,
|
|
1976
1962
|
isSystemAttributeObject,
|
|
1977
1963
|
isSystemFlow,
|
|
1978
|
-
isSystemTemplate,
|
|
1979
1964
|
isSystemWorkflow,
|
|
1980
1965
|
isTableTab,
|
|
1981
1966
|
isTimelineView,
|
|
@@ -1993,6 +1978,7 @@ export {
|
|
|
1993
1978
|
multiselect,
|
|
1994
1979
|
multiselectConfigSchema,
|
|
1995
1980
|
neq,
|
|
1981
|
+
nodeTypeRegistry,
|
|
1996
1982
|
normalizePhoneNumber,
|
|
1997
1983
|
number,
|
|
1998
1984
|
numberConfigSchema,
|
|
@@ -2029,6 +2015,7 @@ export {
|
|
|
2029
2015
|
select,
|
|
2030
2016
|
selectConfigSchema,
|
|
2031
2017
|
setContextValue,
|
|
2018
|
+
setNodeNext,
|
|
2032
2019
|
slugify,
|
|
2033
2020
|
status,
|
|
2034
2021
|
statusConfigSchema,
|
|
@@ -2051,6 +2038,7 @@ export {
|
|
|
2051
2038
|
validateDraft,
|
|
2052
2039
|
validateDraftOrThrow,
|
|
2053
2040
|
validateFormulaExpression,
|
|
2041
|
+
validateNode,
|
|
2054
2042
|
validateObject,
|
|
2055
2043
|
validateObjectOrThrow,
|
|
2056
2044
|
validatePath,
|