@stndrds/schema 0.1.0-alpha.61 → 0.1.0-alpha.63
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-W7A7AQUF.js → chunk-KMAKDHCL.js} +158 -93
- package/dist/{chunk-533TTNPT.mjs → chunk-MUJVBSBL.mjs} +158 -93
- package/dist/index.d.mts +147 -95
- package/dist/index.d.ts +147 -95
- package/dist/index.js +43 -14
- package/dist/index.mjs +38 -9
- package/dist/{runtime-Cx6QJ4QV.d.ts → runtime-7G9tZJYC.d.ts} +72 -37
- package/dist/{runtime-D0XMDY1D.d.mts → runtime-C4U2ppAk.d.mts} +72 -37
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +2 -2
- package/dist/runtime.mjs +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -344,7 +344,7 @@
|
|
|
344
344
|
|
|
345
345
|
|
|
346
346
|
|
|
347
|
-
var
|
|
347
|
+
var _chunkKMAKDHCLjs = require('./chunk-KMAKDHCL.js');
|
|
348
348
|
|
|
349
349
|
|
|
350
350
|
|
|
@@ -1075,13 +1075,13 @@ function createFlagService(options) {
|
|
|
1075
1075
|
}
|
|
1076
1076
|
|
|
1077
1077
|
// src/native/notes.ts
|
|
1078
|
-
var NOTES =
|
|
1079
|
-
|
|
1078
|
+
var NOTES = _chunkKMAKDHCLjs.object.call(void 0, { name: "notes", label: "Note" }).pluralLabel("Notes").icon("file-text").description("Notes that can be linked to any record or used globally").system().labelExpression("{{ title }}").attribute(_chunkKMAKDHCLjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkKMAKDHCLjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
|
|
1079
|
+
_chunkKMAKDHCLjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
|
|
1080
1080
|
{ id: "private", label: "Private", value: "private", icon: "lock" },
|
|
1081
1081
|
{ id: "shared", label: "Shared", value: "shared", icon: "users" }
|
|
1082
1082
|
]).defaultValue("private").required()
|
|
1083
|
-
).attribute(
|
|
1084
|
-
|
|
1083
|
+
).attribute(_chunkKMAKDHCLjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
|
|
1084
|
+
_chunkKMAKDHCLjs.registry.register(NOTES);
|
|
1085
1085
|
|
|
1086
1086
|
// src/views/registry.ts
|
|
1087
1087
|
var ViewRegistry = class {
|
|
@@ -1234,6 +1234,15 @@ Available views: ${availableNames}`
|
|
|
1234
1234
|
};
|
|
1235
1235
|
var viewRegistry = new ViewRegistry();
|
|
1236
1236
|
|
|
1237
|
+
// src/views/helpers.ts
|
|
1238
|
+
function getActiveTab(config, tabId) {
|
|
1239
|
+
if (tabId) {
|
|
1240
|
+
const tab = config.tabs.find((t) => t.id === tabId);
|
|
1241
|
+
if (tab) return tab;
|
|
1242
|
+
}
|
|
1243
|
+
return _nullishCoalesce(config.tabs.find((t) => t.default), () => ( config.tabs[0]));
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1237
1246
|
// src/views/auto-generator.ts
|
|
1238
1247
|
function getVisibleAttributes(attributes, excludeNames = []) {
|
|
1239
1248
|
return attributes.filter(
|
|
@@ -1355,8 +1364,15 @@ function generateDefaultListView(object2, options = {}) {
|
|
|
1355
1364
|
const sortedAttrs = sortAttributes(visibleAttrs);
|
|
1356
1365
|
const columns = sortedAttrs.slice(0, maxListColumns).map((attr) => attr.name);
|
|
1357
1366
|
const config = {
|
|
1358
|
-
|
|
1359
|
-
|
|
1367
|
+
tabs: [
|
|
1368
|
+
{
|
|
1369
|
+
id: "all",
|
|
1370
|
+
label: "All",
|
|
1371
|
+
default: true,
|
|
1372
|
+
layout: "table",
|
|
1373
|
+
columns
|
|
1374
|
+
}
|
|
1375
|
+
]
|
|
1360
1376
|
};
|
|
1361
1377
|
return {
|
|
1362
1378
|
name: "default",
|
|
@@ -1489,16 +1505,28 @@ function isDetailViewCustomized(view2, object2) {
|
|
|
1489
1505
|
}
|
|
1490
1506
|
function isListViewCustomized(view2, object2) {
|
|
1491
1507
|
const defaultView = generateDefaultListView(object2);
|
|
1492
|
-
|
|
1508
|
+
const viewTabs = view2.config.tabs;
|
|
1509
|
+
const defaultTabs = defaultView.config.tabs;
|
|
1510
|
+
if (viewTabs.length !== defaultTabs.length) {
|
|
1493
1511
|
return true;
|
|
1494
1512
|
}
|
|
1495
|
-
for (let i = 0; i <
|
|
1496
|
-
|
|
1513
|
+
for (let i = 0; i < viewTabs.length; i++) {
|
|
1514
|
+
const viewTab = viewTabs[i];
|
|
1515
|
+
const defaultTab = defaultTabs[i];
|
|
1516
|
+
if (viewTab.id !== defaultTab.id) {
|
|
1497
1517
|
return true;
|
|
1498
1518
|
}
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1519
|
+
if (viewTab.layout !== defaultTab.layout) {
|
|
1520
|
+
return true;
|
|
1521
|
+
}
|
|
1522
|
+
if (viewTab.columns.length !== defaultTab.columns.length) {
|
|
1523
|
+
return true;
|
|
1524
|
+
}
|
|
1525
|
+
for (let j = 0; j < viewTab.columns.length; j++) {
|
|
1526
|
+
if (viewTab.columns[j] !== defaultTab.columns[j]) {
|
|
1527
|
+
return true;
|
|
1528
|
+
}
|
|
1529
|
+
}
|
|
1502
1530
|
}
|
|
1503
1531
|
return false;
|
|
1504
1532
|
}
|
|
@@ -1966,4 +1994,5 @@ function isViewCustomized(view2, object2) {
|
|
|
1966
1994
|
|
|
1967
1995
|
|
|
1968
1996
|
|
|
1969
|
-
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkW7A7AQUFjs.ActivityTabConfig; exports.AttributeInUseError = _chunkW7A7AQUFjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkW7A7AQUFjs.AttributeNotFoundError; exports.AuditService = _chunkW7A7AQUFjs.AuditService; exports.AuthMethodSchema = _chunkW7A7AQUFjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkW7A7AQUFjs.BEHAVIOR_PROPERTIES; exports.BasePropertyBuilder = _chunkW7A7AQUFjs.BasePropertyBuilder; exports.BaseRepository = _chunkW7A7AQUFjs.BaseRepository; exports.BaseService = _chunkW7A7AQUFjs.BaseService; exports.CheckboxPropertyBuilder = _chunkW7A7AQUFjs.CheckboxPropertyBuilder; exports.ConcurrentModificationError = _chunkW7A7AQUFjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkW7A7AQUFjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkW7A7AQUFjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkW7A7AQUFjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkW7A7AQUFjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkW7A7AQUFjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkW7A7AQUFjs.CreateShareInputSchema; exports.CurrencyPropertyBuilder = _chunkW7A7AQUFjs.CurrencyPropertyBuilder; exports.CustomTabConfig = _chunkW7A7AQUFjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkW7A7AQUFjs.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 = _chunkW7A7AQUFjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkU4AB53AMjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkW7A7AQUFjs.DRIVING_LICENSE; exports.DatePropertyBuilder = _chunkW7A7AQUFjs.DatePropertyBuilder; exports.DetailViewBuilder = _chunkW7A7AQUFjs.DetailViewBuilder; exports.DirectTableTabConfig = _chunkW7A7AQUFjs.DirectTableTabConfig; exports.DocumentExecutor = _chunkW7A7AQUFjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkW7A7AQUFjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkW7A7AQUFjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkW7A7AQUFjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkW7A7AQUFjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkW7A7AQUFjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkW7A7AQUFjs.DocumentProcessingService; exports.DocumentRenderError = _chunkW7A7AQUFjs.DocumentRenderError; exports.DocumentRendererService = _chunkW7A7AQUFjs.DocumentRendererService; exports.DocumentService = _chunkW7A7AQUFjs.DocumentService; exports.DocumentTemplateService = _chunkW7A7AQUFjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkW7A7AQUFjs.DocumentsTabConfig; exports.DuplicateError = _chunkW7A7AQUFjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkW7A7AQUFjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkW7A7AQUFjs.EndExecutor; exports.EndNodeSchema = _chunkW7A7AQUFjs.EndNodeSchema; exports.ExecutorRegistry = _chunkW7A7AQUFjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkW7A7AQUFjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkW7A7AQUFjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkW7A7AQUFjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkW7A7AQUFjs.FileNotFoundError; exports.FileService = _chunkW7A7AQUFjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkW7A7AQUFjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkW7A7AQUFjs.FlowRowSchema; exports.FlowsTabConfig = _chunkW7A7AQUFjs.FlowsTabConfig; exports.ForbiddenError = _chunkW7A7AQUFjs.ForbiddenError; exports.FormExecutor = _chunkW7A7AQUFjs.FormExecutor; exports.FormFieldRefSchema = _chunkW7A7AQUFjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkW7A7AQUFjs.FormNodeSchema; exports.FormulaResolverService = _chunkW7A7AQUFjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkW7A7AQUFjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkW7A7AQUFjs.GeocodingService; exports.GlobalSearchService = _chunkW7A7AQUFjs.GlobalSearchService; exports.GrantExpiredError = _chunkW7A7AQUFjs.GrantExpiredError; exports.GrantNotFoundError = _chunkW7A7AQUFjs.GrantNotFoundError; exports.GrantRevokedError = _chunkW7A7AQUFjs.GrantRevokedError; exports.GroupBuilder = _chunkW7A7AQUFjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkW7A7AQUFjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkW7A7AQUFjs.InvalidPathError; exports.InverseTableTabConfig = _chunkW7A7AQUFjs.InverseTableTabConfig; exports.InvitationAlreadyAcceptedError = _chunkW7A7AQUFjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkW7A7AQUFjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkW7A7AQUFjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkW7A7AQUFjs.InvitationRevokedError; exports.ListViewBuilder = _chunkW7A7AQUFjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkW7A7AQUFjs.ListViewTabConfigBuilder; exports.LocationPropertyBuilder = _chunkW7A7AQUFjs.LocationPropertyBuilder; exports.MaxDepthExceededError = _chunkW7A7AQUFjs.MaxDepthExceededError; exports.MultiselectPropertyBuilder = _chunkW7A7AQUFjs.MultiselectPropertyBuilder; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkW7A7AQUFjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkW7A7AQUFjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkW7A7AQUFjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkW7A7AQUFjs.NoopHookRegistry; exports.NotFoundError = _chunkW7A7AQUFjs.NotFoundError; exports.NotSystemObjectError = _chunkW7A7AQUFjs.NotSystemObjectError; exports.NotesTabConfig = _chunkW7A7AQUFjs.NotesTabConfig; exports.NumberPropertyBuilder = _chunkW7A7AQUFjs.NumberPropertyBuilder; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkW7A7AQUFjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkW7A7AQUFjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkW7A7AQUFjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkW7A7AQUFjs.ObjectSchemaService; exports.PASSPORT = _chunkW7A7AQUFjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkW7A7AQUFjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkW7A7AQUFjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkW7A7AQUFjs.PermissionService; exports.PhonePropertyBuilder = _chunkW7A7AQUFjs.PhonePropertyBuilder; exports.PolicyRegistry = _chunkW7A7AQUFjs.PolicyRegistry; exports.PolicyViolationError = _chunkW7A7AQUFjs.PolicyViolationError; exports.PropertySchemaBuilder = _chunkW7A7AQUFjs.PropertySchemaBuilder; exports.PropertyTypeBuilder = _chunkW7A7AQUFjs.PropertyTypeBuilder; exports.ProtectedResourceError = _chunkW7A7AQUFjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkW7A7AQUFjs.ProtectedRoleError; exports.QueryBuilder = _chunkW7A7AQUFjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkW7A7AQUFjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkW7A7AQUFjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkW7A7AQUFjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkW7A7AQUFjs.RESERVED_ATTRIBUTE_NAMES; exports.RatingPropertyBuilder = _chunkW7A7AQUFjs.RatingPropertyBuilder; exports.RecordNotFoundError = _chunkW7A7AQUFjs.RecordNotFoundError; exports.RecordQueryService = _chunkW7A7AQUFjs.RecordQueryService; exports.RecordReferencedError = _chunkW7A7AQUFjs.RecordReferencedError; exports.RecordResolverService = _chunkW7A7AQUFjs.RecordResolverService; exports.RecordService = _chunkW7A7AQUFjs.RecordService; exports.RelationPropertiesService = _chunkW7A7AQUFjs.RelationPropertiesService; exports.RelationService = _chunkW7A7AQUFjs.RelationService; exports.RoleNotFoundError = _chunkW7A7AQUFjs.RoleNotFoundError; exports.RollupScheduler = _chunkW7A7AQUFjs.RollupScheduler; exports.RollupService = _chunkW7A7AQUFjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkW7A7AQUFjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkW7A7AQUFjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkW7A7AQUFjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkW7A7AQUFjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkW7A7AQUFjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkW7A7AQUFjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkW7A7AQUFjs.SchemaContextAwareRepository; exports.SchemaError = _chunkW7A7AQUFjs.SchemaError; exports.SchemaErrorCode = _chunkW7A7AQUFjs.SchemaErrorCode; exports.SelectPropertyBuilder = _chunkW7A7AQUFjs.SelectPropertyBuilder; exports.ShareStatusSchema = _chunkW7A7AQUFjs.ShareStatusSchema; exports.SlotModeSchema = _chunkW7A7AQUFjs.SlotModeSchema; exports.StartExecutor = _chunkW7A7AQUFjs.StartExecutor; exports.StartNodeSchema = _chunkW7A7AQUFjs.StartNodeSchema; exports.StatusPropertyBuilder = _chunkW7A7AQUFjs.StatusPropertyBuilder; exports.StorageDownloadNotSupportedError = _chunkW7A7AQUFjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkW7A7AQUFjs.SyncError; exports.TabBuilder = _chunkW7A7AQUFjs.TabBuilder; exports.TenantContextError = _chunkW7A7AQUFjs.TenantContextError; exports.TextPropertyBuilder = _chunkW7A7AQUFjs.TextPropertyBuilder; exports.TextareaPropertyBuilder = _chunkW7A7AQUFjs.TextareaPropertyBuilder; exports.ThemeColorsSchema = _chunkW7A7AQUFjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkW7A7AQUFjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkW7A7AQUFjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunkW7A7AQUFjs.UserProfileNotFoundError; exports.UserProfileService = _chunkW7A7AQUFjs.UserProfileService; exports.UserService = _chunkW7A7AQUFjs.UserService; exports.ValidationError = _chunkW7A7AQUFjs.ValidationError; exports.ViewBuilder = _chunkW7A7AQUFjs.ViewBuilder; exports.ViewService = _chunkW7A7AQUFjs.ViewService; exports.ViewportSchema = _chunkW7A7AQUFjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkW7A7AQUFjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkW7A7AQUFjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkW7A7AQUFjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkW7A7AQUFjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkW7A7AQUFjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkW7A7AQUFjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkW7A7AQUFjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkW7A7AQUFjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkW7A7AQUFjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkW7A7AQUFjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkW7A7AQUFjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkW7A7AQUFjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkW7A7AQUFjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkW7A7AQUFjs.WorkflowRelationService; exports.WorkflowService = _chunkW7A7AQUFjs.WorkflowService; exports.WorkflowShareSchema = _chunkW7A7AQUFjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkW7A7AQUFjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkW7A7AQUFjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkW7A7AQUFjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkW7A7AQUFjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkW7A7AQUFjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunkW7A7AQUFjs.addSchemaToContext; exports.and = _chunkW7A7AQUFjs.and; exports.applyDefaultValues = _chunkW7A7AQUFjs.applyDefaultValues; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunkU4AB53AMjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkW7A7AQUFjs.buildAuditChanges; exports.buildPolicyContext = _chunkW7A7AQUFjs.buildPolicyContext; exports.cacheKeys = _chunkW7A7AQUFjs.cacheKeys; exports.cacheTtl = _chunkW7A7AQUFjs.cacheTtl; exports.canAccessNode = _chunkW7A7AQUFjs.canAccessNode; exports.canResumeInstance = _chunkW7A7AQUFjs.canResumeInstance; exports.checkPermission = _chunkW7A7AQUFjs.checkPermission; exports.checkRecordAccess = _chunkW7A7AQUFjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkW7A7AQUFjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkW7A7AQUFjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkW7A7AQUFjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkW7A7AQUFjs.checkbox; exports.checkboxConfigSchema = _chunkU4AB53AMjs.checkboxConfigSchema; exports.complete = _chunkW7A7AQUFjs.complete; exports.computeLabel = _chunkW7A7AQUFjs.computeLabel; exports.computeLabelWithRelations = _chunkW7A7AQUFjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkU4AB53AMjs.computeRecordStatus; exports.createAttributeValidator = _chunkU4AB53AMjs.createAttributeValidator; exports.createCheckboxValidator = _chunkU4AB53AMjs.createCheckboxValidator; exports.createContextForCreate = _chunkW7A7AQUFjs.createContextForCreate; exports.createContextForDelete = _chunkW7A7AQUFjs.createContextForDelete; exports.createContextForRestore = _chunkW7A7AQUFjs.createContextForRestore; exports.createContextForUpdate = _chunkW7A7AQUFjs.createContextForUpdate; exports.createCurrencyValidator = _chunkU4AB53AMjs.createCurrencyValidator; exports.createDateValidator = _chunkU4AB53AMjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkW7A7AQUFjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkW7A7AQUFjs.createDefaultState; exports.createDraftValidator = _chunkU4AB53AMjs.createDraftValidator; exports.createEmptyContext = _chunkW7A7AQUFjs.createEmptyContext; exports.createFileValidator = _chunkU4AB53AMjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkU4AB53AMjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkU4AB53AMjs.createFormulaValidator; exports.createLocationValidator = _chunkU4AB53AMjs.createLocationValidator; exports.createMockAdapter = _chunkW7A7AQUFjs.createMockAdapter; exports.createMultiRelationValidator = _chunkU4AB53AMjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkU4AB53AMjs.createMultiselectValidator; exports.createNumberValidator = _chunkU4AB53AMjs.createNumberValidator; exports.createObjectValidator = _chunkU4AB53AMjs.createObjectValidator; exports.createPhoneValidator = _chunkU4AB53AMjs.createPhoneValidator; exports.createQueryBuilder = _chunkW7A7AQUFjs.createQueryBuilder; exports.createRatingValidator = _chunkU4AB53AMjs.createRatingValidator; exports.createRelationValidator = _chunkU4AB53AMjs.createRelationValidator; exports.createRichtextValidator = _chunkU4AB53AMjs.createRichtextValidator; exports.createRollupValidator = _chunkU4AB53AMjs.createRollupValidator; exports.createSelectValidator = _chunkU4AB53AMjs.createSelectValidator; exports.createSingleRelationValidator = _chunkU4AB53AMjs.createSingleRelationValidator; exports.createStartTransition = _chunkW7A7AQUFjs.createStartTransition; exports.createStatusValidator = _chunkU4AB53AMjs.createStatusValidator; exports.createTextAreaValidator = _chunkU4AB53AMjs.createTextAreaValidator; exports.createTextValidator = _chunkU4AB53AMjs.createTextValidator; exports.createUserValidator = _chunkU4AB53AMjs.createUserValidator; exports.currency = _chunkW7A7AQUFjs.currency; exports.currencyConfigSchema = _chunkU4AB53AMjs.currencyConfigSchema; exports.date = _chunkW7A7AQUFjs.date; exports.dateConfigSchema = _chunkU4AB53AMjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkW7A7AQUFjs.defaultPolicyRegistry; exports.defaultTtl = _chunkW7A7AQUFjs.defaultTtl; exports.detailView = _chunkW7A7AQUFjs.detailView; exports.document = _chunkW7A7AQUFjs.document; exports.documentConfigSchema = _chunkU4AB53AMjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkW7A7AQUFjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkW7A7AQUFjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkW7A7AQUFjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkW7A7AQUFjs.enrichWithFormulas; exports.eq = _chunkW7A7AQUFjs.eq; exports.error = _chunkW7A7AQUFjs.error; exports.evaluate = _chunkW7A7AQUFjs.evaluate; exports.evaluateCondition = _chunkW7A7AQUFjs.evaluateCondition; exports.evaluateFormula = _chunkW7A7AQUFjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkW7A7AQUFjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkW7A7AQUFjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkW7A7AQUFjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkW7A7AQUFjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkW7A7AQUFjs.evaluateWithTrace; exports.extractAttributeNames = _chunkW7A7AQUFjs.extractAttributeNames; exports.extractFormulaVariables = _chunkW7A7AQUFjs.extractFormulaVariables; exports.extractRelationIds = _chunkW7A7AQUFjs.extractRelationIds; exports.extractRelationNames = _chunkW7A7AQUFjs.extractRelationNames; exports.extractRelationReferences = _chunkW7A7AQUFjs.extractRelationReferences; exports.file = _chunkW7A7AQUFjs.file; exports.fileConfigSchema = _chunkU4AB53AMjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkW7A7AQUFjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkW7A7AQUFjs.formatAttributeValue; exports.formatFormulaResult = _chunkW7A7AQUFjs.formatFormulaResult; exports.formatRecord = _chunkW7A7AQUFjs.formatRecord; exports.formatRecords = _chunkW7A7AQUFjs.formatRecords; exports.formatZodErrors = _chunkU4AB53AMjs.formatZodErrors; exports.formula = _chunkW7A7AQUFjs.formula; exports.formulaConfigSchema = _chunkU4AB53AMjs.formulaConfigSchema; exports.generateCssVariables = _chunkW7A7AQUFjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getAttributeConfigSchema = _chunkU4AB53AMjs.getAttributeConfigSchema; exports.getContext = _chunkW7A7AQUFjs.getContext; exports.getContextValue = _chunkW7A7AQUFjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkW7A7AQUFjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkW7A7AQUFjs.getErrorMessage; exports.getFeatureFlags = _chunkW7A7AQUFjs.getFeatureFlags; exports.getFeatureValue = _chunkW7A7AQUFjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunkU4AB53AMjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkW7A7AQUFjs.getNodeOutputs; exports.getPathDepth = _chunkW7A7AQUFjs.getPathDepth; exports.getPolicy = _chunkW7A7AQUFjs.getPolicy; exports.getRelationPath = _chunkW7A7AQUFjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkW7A7AQUFjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkW7A7AQUFjs.getSchemaContext; exports.getSchemaFromContext = _chunkW7A7AQUFjs.getSchemaFromContext; exports.getSyncPreview = _chunkW7A7AQUFjs.getSyncPreview; exports.getSystemAttributeList = _chunkW7A7AQUFjs.getSystemAttributeList; exports.getSystemTemplate = _chunkW7A7AQUFjs.getSystemTemplate; exports.getTargetAttributeName = _chunkW7A7AQUFjs.getTargetAttributeName; exports.getTenantId = _chunkW7A7AQUFjs.getTenantId; exports.getUserId = _chunkW7A7AQUFjs.getUserId; exports.getViewSeedPreview = _chunkW7A7AQUFjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkW7A7AQUFjs.getViewSyncPreview; exports.group = _chunkW7A7AQUFjs.group; exports.hasContext = _chunkW7A7AQUFjs.hasContext; exports.hasFeatureFlagsContext = _chunkW7A7AQUFjs.hasFeatureFlagsContext; exports.hasProperties = _chunkW7A7AQUFjs.hasProperties; exports.hasRelationReferences = _chunkW7A7AQUFjs.hasRelationReferences; exports.hasSchemaContext = _chunkW7A7AQUFjs.hasSchemaContext; exports.hashOptions = _chunkW7A7AQUFjs.hashOptions; exports.inValues = _chunkW7A7AQUFjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkW7A7AQUFjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunkW7A7AQUFjs.isBehaviorProperty; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkW7A7AQUFjs.isConditionGroup; exports.isConditionNode = _chunkW7A7AQUFjs.isConditionNode; exports.isConditionRule = _chunkW7A7AQUFjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDirectTableTab = isDirectTableTab; exports.isDocumentNode = _chunkW7A7AQUFjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkW7A7AQUFjs.isEmpty; exports.isEndNode = _chunkW7A7AQUFjs.isEndNode; exports.isFeatureEnabled = _chunkW7A7AQUFjs.isFeatureEnabled; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkW7A7AQUFjs.isForbiddenError; exports.isFormNode = _chunkW7A7AQUFjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkW7A7AQUFjs.isGrantExpired; exports.isGrantRevoked = _chunkW7A7AQUFjs.isGrantRevoked; exports.isGrantValid = _chunkW7A7AQUFjs.isGrantValid; exports.isIdentityProperty = _chunkW7A7AQUFjs.isIdentityProperty; exports.isInstanceEvent = _chunkW7A7AQUFjs.isInstanceEvent; exports.isInstanceTerminal = _chunkW7A7AQUFjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkW7A7AQUFjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isInvitationAccepted = _chunkW7A7AQUFjs.isInvitationAccepted; exports.isInvitationExpired = _chunkW7A7AQUFjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkW7A7AQUFjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkW7A7AQUFjs.isInvitationValid; exports.isLabelExpression = _chunkW7A7AQUFjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkW7A7AQUFjs.isNodeEvent; exports.isNotEmpty = _chunkW7A7AQUFjs.isNotEmpty; exports.isNotFoundError = _chunkW7A7AQUFjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isPresentationProperty = _chunkW7A7AQUFjs.isPresentationProperty; exports.isProtectedResourceError = _chunkW7A7AQUFjs.isProtectedResourceError; exports.isRecordComplete = _chunkU4AB53AMjs.isRecordComplete; exports.isSchemaError = _chunkW7A7AQUFjs.isSchemaError; exports.isSimpleFormNode = _chunkW7A7AQUFjs.isSimpleFormNode; exports.isStartNode = _chunkW7A7AQUFjs.isStartNode; exports.isSystemAttribute = _chunkW7A7AQUFjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkW7A7AQUFjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkW7A7AQUFjs.isSystemTemplate; exports.isSystemWorkflow = _chunkW7A7AQUFjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkW7A7AQUFjs.isTokenRevoked; exports.isUniversalRelation = _chunkW7A7AQUFjs.isUniversalRelation; exports.isValidationError = _chunkW7A7AQUFjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkW7A7AQUFjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkW7A7AQUFjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkW7A7AQUFjs.listView; exports.location = _chunkW7A7AQUFjs.location; exports.locationConfigSchema = _chunkU4AB53AMjs.locationConfigSchema; exports.mergeWithDefaults = _chunkW7A7AQUFjs.mergeWithDefaults; exports.multiselect = _chunkW7A7AQUFjs.multiselect; exports.multiselectConfigSchema = _chunkU4AB53AMjs.multiselectConfigSchema; exports.neq = _chunkW7A7AQUFjs.neq; exports.notesPolicy = _chunkW7A7AQUFjs.notesPolicy; exports.number = _chunkW7A7AQUFjs.number; exports.numberConfigSchema = _chunkU4AB53AMjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkW7A7AQUFjs.object; exports.or = _chunkW7A7AQUFjs.or; exports.parseAttributeConfig = _chunkU4AB53AMjs.parseAttributeConfig; exports.parsePath = _chunkW7A7AQUFjs.parsePath; exports.pathHasManyCardinality = _chunkW7A7AQUFjs.pathHasManyCardinality; exports.phone = _chunkW7A7AQUFjs.phone; exports.phoneConfigSchema = _chunkU4AB53AMjs.phoneConfigSchema; exports.rating = _chunkW7A7AQUFjs.rating; exports.ratingConfigSchema = _chunkU4AB53AMjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkW7A7AQUFjs.recalculateParentRollups; exports.registry = _chunkW7A7AQUFjs.registry; exports.relation = _chunkW7A7AQUFjs.relation; exports.relationConfigSchema = _chunkU4AB53AMjs.relationConfigSchema; exports.renderLabelExpression = _chunkW7A7AQUFjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkW7A7AQUFjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkW7A7AQUFjs.resolveSingleValue; exports.richtext = _chunkW7A7AQUFjs.richtext; exports.richtextConfigSchema = _chunkU4AB53AMjs.richtextConfigSchema; exports.rollup = _chunkW7A7AQUFjs.rollup; exports.rollupConfigSchema = _chunkU4AB53AMjs.rollupConfigSchema; exports.runWithContext = _chunkW7A7AQUFjs.runWithContext; exports.runWithFeatureFlags = _chunkW7A7AQUFjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkW7A7AQUFjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkW7A7AQUFjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkU4AB53AMjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkW7A7AQUFjs.seedRegistryViews; exports.select = _chunkW7A7AQUFjs.select; exports.selectConfigSchema = _chunkU4AB53AMjs.selectConfigSchema; exports.setContextValue = _chunkW7A7AQUFjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkW7A7AQUFjs.status; exports.statusConfigSchema = _chunkU4AB53AMjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkW7A7AQUFjs.success; exports.syncAll = _chunkW7A7AQUFjs.syncAll; exports.syncNativeObjects = _chunkW7A7AQUFjs.syncNativeObjects; exports.syncNativeViews = _chunkW7A7AQUFjs.syncNativeViews; exports.text = _chunkW7A7AQUFjs.text; exports.textConfigSchema = _chunkU4AB53AMjs.textConfigSchema; exports.textarea = _chunkW7A7AQUFjs.textarea; exports.textareaConfigSchema = _chunkU4AB53AMjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkW7A7AQUFjs.toUndefinedIfEmpty; exports.traversePath = _chunkW7A7AQUFjs.traversePath; exports.tryGetFeatureValue = _chunkW7A7AQUFjs.tryGetFeatureValue; exports.user = _chunkW7A7AQUFjs.user; exports.userConfigSchema = _chunkU4AB53AMjs.userConfigSchema; exports.validateAttribute = _chunkU4AB53AMjs.validateAttribute; exports.validateAttributeConfig = _chunkU4AB53AMjs.validateAttributeConfig; exports.validateDraft = _chunkU4AB53AMjs.validateDraft; exports.validateDraftOrThrow = _chunkU4AB53AMjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkW7A7AQUFjs.validateFormulaExpression; exports.validateObject = _chunkU4AB53AMjs.validateObject; exports.validateObjectOrThrow = _chunkU4AB53AMjs.validateObjectOrThrow; exports.validatePath = _chunkW7A7AQUFjs.validatePath; exports.validatePropertyType = _chunkW7A7AQUFjs.validatePropertyType; exports.verifyNativeObjectsSync = _chunkW7A7AQUFjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkW7A7AQUFjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkW7A7AQUFjs.verifyRegistryViewsSeeded; exports.view = _chunkW7A7AQUFjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkW7A7AQUFjs.wait; exports.withFeatureFlags = _chunkW7A7AQUFjs.withFeatureFlags; exports.withTenantContext = _chunkW7A7AQUFjs.withTenantContext; exports.workflow = _chunkW7A7AQUFjs.workflow;
|
|
1997
|
+
|
|
1998
|
+
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkKMAKDHCLjs.ActivityTabConfig; exports.AttributeInUseError = _chunkKMAKDHCLjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkKMAKDHCLjs.AttributeNotFoundError; exports.AuditService = _chunkKMAKDHCLjs.AuditService; exports.AuthMethodSchema = _chunkKMAKDHCLjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkKMAKDHCLjs.BEHAVIOR_PROPERTIES; exports.BasePropertyBuilder = _chunkKMAKDHCLjs.BasePropertyBuilder; exports.BaseRepository = _chunkKMAKDHCLjs.BaseRepository; exports.BaseService = _chunkKMAKDHCLjs.BaseService; exports.CheckboxPropertyBuilder = _chunkKMAKDHCLjs.CheckboxPropertyBuilder; exports.ConcurrentModificationError = _chunkKMAKDHCLjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkKMAKDHCLjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkKMAKDHCLjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkKMAKDHCLjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkKMAKDHCLjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkKMAKDHCLjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkKMAKDHCLjs.CreateShareInputSchema; exports.CurrencyPropertyBuilder = _chunkKMAKDHCLjs.CurrencyPropertyBuilder; exports.CustomTabConfig = _chunkKMAKDHCLjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkKMAKDHCLjs.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 = _chunkKMAKDHCLjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkU4AB53AMjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkKMAKDHCLjs.DRIVING_LICENSE; exports.DatePropertyBuilder = _chunkKMAKDHCLjs.DatePropertyBuilder; exports.DetailViewBuilder = _chunkKMAKDHCLjs.DetailViewBuilder; exports.DirectTableTabConfig = _chunkKMAKDHCLjs.DirectTableTabConfig; exports.DocumentExecutor = _chunkKMAKDHCLjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkKMAKDHCLjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkKMAKDHCLjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkKMAKDHCLjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkKMAKDHCLjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkKMAKDHCLjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkKMAKDHCLjs.DocumentProcessingService; exports.DocumentRenderError = _chunkKMAKDHCLjs.DocumentRenderError; exports.DocumentRendererService = _chunkKMAKDHCLjs.DocumentRendererService; exports.DocumentService = _chunkKMAKDHCLjs.DocumentService; exports.DocumentTemplateService = _chunkKMAKDHCLjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkKMAKDHCLjs.DocumentsTabConfig; exports.DuplicateError = _chunkKMAKDHCLjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkKMAKDHCLjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkKMAKDHCLjs.EndExecutor; exports.EndNodeSchema = _chunkKMAKDHCLjs.EndNodeSchema; exports.ExecutorRegistry = _chunkKMAKDHCLjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkKMAKDHCLjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkKMAKDHCLjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkKMAKDHCLjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkKMAKDHCLjs.FileNotFoundError; exports.FileService = _chunkKMAKDHCLjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkKMAKDHCLjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkKMAKDHCLjs.FlowRowSchema; exports.FlowsTabConfig = _chunkKMAKDHCLjs.FlowsTabConfig; exports.ForbiddenError = _chunkKMAKDHCLjs.ForbiddenError; exports.FormExecutor = _chunkKMAKDHCLjs.FormExecutor; exports.FormFieldRefSchema = _chunkKMAKDHCLjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkKMAKDHCLjs.FormNodeSchema; exports.FormulaResolverService = _chunkKMAKDHCLjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkKMAKDHCLjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkKMAKDHCLjs.GeocodingService; exports.GlobalSearchService = _chunkKMAKDHCLjs.GlobalSearchService; exports.GrantExpiredError = _chunkKMAKDHCLjs.GrantExpiredError; exports.GrantNotFoundError = _chunkKMAKDHCLjs.GrantNotFoundError; exports.GrantRevokedError = _chunkKMAKDHCLjs.GrantRevokedError; exports.GroupBuilder = _chunkKMAKDHCLjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkKMAKDHCLjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkKMAKDHCLjs.InvalidPathError; exports.InverseTableTabConfig = _chunkKMAKDHCLjs.InverseTableTabConfig; exports.InvitationAlreadyAcceptedError = _chunkKMAKDHCLjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkKMAKDHCLjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkKMAKDHCLjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkKMAKDHCLjs.InvitationRevokedError; exports.ListViewBuilder = _chunkKMAKDHCLjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkKMAKDHCLjs.ListViewTabConfigBuilder; exports.LocationPropertyBuilder = _chunkKMAKDHCLjs.LocationPropertyBuilder; exports.MaxDepthExceededError = _chunkKMAKDHCLjs.MaxDepthExceededError; exports.MultiselectPropertyBuilder = _chunkKMAKDHCLjs.MultiselectPropertyBuilder; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkKMAKDHCLjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkKMAKDHCLjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkKMAKDHCLjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkKMAKDHCLjs.NoopHookRegistry; exports.NotFoundError = _chunkKMAKDHCLjs.NotFoundError; exports.NotSystemObjectError = _chunkKMAKDHCLjs.NotSystemObjectError; exports.NotesTabConfig = _chunkKMAKDHCLjs.NotesTabConfig; exports.NumberPropertyBuilder = _chunkKMAKDHCLjs.NumberPropertyBuilder; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkKMAKDHCLjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkKMAKDHCLjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkKMAKDHCLjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkKMAKDHCLjs.ObjectSchemaService; exports.PASSPORT = _chunkKMAKDHCLjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkKMAKDHCLjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkKMAKDHCLjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkKMAKDHCLjs.PermissionService; exports.PhonePropertyBuilder = _chunkKMAKDHCLjs.PhonePropertyBuilder; exports.PolicyRegistry = _chunkKMAKDHCLjs.PolicyRegistry; exports.PolicyViolationError = _chunkKMAKDHCLjs.PolicyViolationError; exports.PropertySchemaBuilder = _chunkKMAKDHCLjs.PropertySchemaBuilder; exports.PropertyTypeBuilder = _chunkKMAKDHCLjs.PropertyTypeBuilder; exports.ProtectedResourceError = _chunkKMAKDHCLjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkKMAKDHCLjs.ProtectedRoleError; exports.QueryBuilder = _chunkKMAKDHCLjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkKMAKDHCLjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkKMAKDHCLjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkKMAKDHCLjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkKMAKDHCLjs.RESERVED_ATTRIBUTE_NAMES; exports.RatingPropertyBuilder = _chunkKMAKDHCLjs.RatingPropertyBuilder; exports.RecordNotFoundError = _chunkKMAKDHCLjs.RecordNotFoundError; exports.RecordQueryService = _chunkKMAKDHCLjs.RecordQueryService; exports.RecordReferencedError = _chunkKMAKDHCLjs.RecordReferencedError; exports.RecordResolverService = _chunkKMAKDHCLjs.RecordResolverService; exports.RecordService = _chunkKMAKDHCLjs.RecordService; exports.RelationPropertiesService = _chunkKMAKDHCLjs.RelationPropertiesService; exports.RelationService = _chunkKMAKDHCLjs.RelationService; exports.RoleNotFoundError = _chunkKMAKDHCLjs.RoleNotFoundError; exports.RollupScheduler = _chunkKMAKDHCLjs.RollupScheduler; exports.RollupService = _chunkKMAKDHCLjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkKMAKDHCLjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkKMAKDHCLjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkKMAKDHCLjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkKMAKDHCLjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkKMAKDHCLjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkKMAKDHCLjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkKMAKDHCLjs.SchemaContextAwareRepository; exports.SchemaError = _chunkKMAKDHCLjs.SchemaError; exports.SchemaErrorCode = _chunkKMAKDHCLjs.SchemaErrorCode; exports.SelectPropertyBuilder = _chunkKMAKDHCLjs.SelectPropertyBuilder; exports.ShareStatusSchema = _chunkKMAKDHCLjs.ShareStatusSchema; exports.SlotModeSchema = _chunkKMAKDHCLjs.SlotModeSchema; exports.StartExecutor = _chunkKMAKDHCLjs.StartExecutor; exports.StartNodeSchema = _chunkKMAKDHCLjs.StartNodeSchema; exports.StatusPropertyBuilder = _chunkKMAKDHCLjs.StatusPropertyBuilder; exports.StorageDownloadNotSupportedError = _chunkKMAKDHCLjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkKMAKDHCLjs.SyncError; exports.TabBuilder = _chunkKMAKDHCLjs.TabBuilder; exports.TenantContextError = _chunkKMAKDHCLjs.TenantContextError; exports.TextPropertyBuilder = _chunkKMAKDHCLjs.TextPropertyBuilder; exports.TextareaPropertyBuilder = _chunkKMAKDHCLjs.TextareaPropertyBuilder; exports.ThemeColorsSchema = _chunkKMAKDHCLjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkKMAKDHCLjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkKMAKDHCLjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunkKMAKDHCLjs.UserProfileNotFoundError; exports.UserProfileService = _chunkKMAKDHCLjs.UserProfileService; exports.UserService = _chunkKMAKDHCLjs.UserService; exports.ValidationError = _chunkKMAKDHCLjs.ValidationError; exports.ViewBuilder = _chunkKMAKDHCLjs.ViewBuilder; exports.ViewService = _chunkKMAKDHCLjs.ViewService; exports.ViewportSchema = _chunkKMAKDHCLjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkKMAKDHCLjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkKMAKDHCLjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkKMAKDHCLjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkKMAKDHCLjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkKMAKDHCLjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkKMAKDHCLjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkKMAKDHCLjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkKMAKDHCLjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkKMAKDHCLjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkKMAKDHCLjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkKMAKDHCLjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkKMAKDHCLjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkKMAKDHCLjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkKMAKDHCLjs.WorkflowRelationService; exports.WorkflowService = _chunkKMAKDHCLjs.WorkflowService; exports.WorkflowShareSchema = _chunkKMAKDHCLjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkKMAKDHCLjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkKMAKDHCLjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkKMAKDHCLjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkKMAKDHCLjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkKMAKDHCLjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunkKMAKDHCLjs.addSchemaToContext; exports.and = _chunkKMAKDHCLjs.and; exports.applyDefaultValues = _chunkKMAKDHCLjs.applyDefaultValues; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunkU4AB53AMjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkKMAKDHCLjs.buildAuditChanges; exports.buildPolicyContext = _chunkKMAKDHCLjs.buildPolicyContext; exports.cacheKeys = _chunkKMAKDHCLjs.cacheKeys; exports.cacheTtl = _chunkKMAKDHCLjs.cacheTtl; exports.canAccessNode = _chunkKMAKDHCLjs.canAccessNode; exports.canResumeInstance = _chunkKMAKDHCLjs.canResumeInstance; exports.checkPermission = _chunkKMAKDHCLjs.checkPermission; exports.checkRecordAccess = _chunkKMAKDHCLjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkKMAKDHCLjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkKMAKDHCLjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkKMAKDHCLjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkKMAKDHCLjs.checkbox; exports.checkboxConfigSchema = _chunkU4AB53AMjs.checkboxConfigSchema; exports.complete = _chunkKMAKDHCLjs.complete; exports.computeLabel = _chunkKMAKDHCLjs.computeLabel; exports.computeLabelWithRelations = _chunkKMAKDHCLjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkU4AB53AMjs.computeRecordStatus; exports.createAttributeValidator = _chunkU4AB53AMjs.createAttributeValidator; exports.createCheckboxValidator = _chunkU4AB53AMjs.createCheckboxValidator; exports.createContextForCreate = _chunkKMAKDHCLjs.createContextForCreate; exports.createContextForDelete = _chunkKMAKDHCLjs.createContextForDelete; exports.createContextForRestore = _chunkKMAKDHCLjs.createContextForRestore; exports.createContextForUpdate = _chunkKMAKDHCLjs.createContextForUpdate; exports.createCurrencyValidator = _chunkU4AB53AMjs.createCurrencyValidator; exports.createDateValidator = _chunkU4AB53AMjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkKMAKDHCLjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkKMAKDHCLjs.createDefaultState; exports.createDraftValidator = _chunkU4AB53AMjs.createDraftValidator; exports.createEmptyContext = _chunkKMAKDHCLjs.createEmptyContext; exports.createFileValidator = _chunkU4AB53AMjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkU4AB53AMjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkU4AB53AMjs.createFormulaValidator; exports.createLocationValidator = _chunkU4AB53AMjs.createLocationValidator; exports.createMockAdapter = _chunkKMAKDHCLjs.createMockAdapter; exports.createMultiRelationValidator = _chunkU4AB53AMjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkU4AB53AMjs.createMultiselectValidator; exports.createNumberValidator = _chunkU4AB53AMjs.createNumberValidator; exports.createObjectValidator = _chunkU4AB53AMjs.createObjectValidator; exports.createPhoneValidator = _chunkU4AB53AMjs.createPhoneValidator; exports.createQueryBuilder = _chunkKMAKDHCLjs.createQueryBuilder; exports.createRatingValidator = _chunkU4AB53AMjs.createRatingValidator; exports.createRelationValidator = _chunkU4AB53AMjs.createRelationValidator; exports.createRichtextValidator = _chunkU4AB53AMjs.createRichtextValidator; exports.createRollupValidator = _chunkU4AB53AMjs.createRollupValidator; exports.createSelectValidator = _chunkU4AB53AMjs.createSelectValidator; exports.createSingleRelationValidator = _chunkU4AB53AMjs.createSingleRelationValidator; exports.createStartTransition = _chunkKMAKDHCLjs.createStartTransition; exports.createStatusValidator = _chunkU4AB53AMjs.createStatusValidator; exports.createTextAreaValidator = _chunkU4AB53AMjs.createTextAreaValidator; exports.createTextValidator = _chunkU4AB53AMjs.createTextValidator; exports.createUserValidator = _chunkU4AB53AMjs.createUserValidator; exports.currency = _chunkKMAKDHCLjs.currency; exports.currencyConfigSchema = _chunkU4AB53AMjs.currencyConfigSchema; exports.date = _chunkKMAKDHCLjs.date; exports.dateConfigSchema = _chunkU4AB53AMjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkKMAKDHCLjs.defaultPolicyRegistry; exports.defaultTtl = _chunkKMAKDHCLjs.defaultTtl; exports.detailView = _chunkKMAKDHCLjs.detailView; exports.document = _chunkKMAKDHCLjs.document; exports.documentConfigSchema = _chunkU4AB53AMjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkKMAKDHCLjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkKMAKDHCLjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkKMAKDHCLjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkKMAKDHCLjs.enrichWithFormulas; exports.eq = _chunkKMAKDHCLjs.eq; exports.error = _chunkKMAKDHCLjs.error; exports.evaluate = _chunkKMAKDHCLjs.evaluate; exports.evaluateCondition = _chunkKMAKDHCLjs.evaluateCondition; exports.evaluateFormula = _chunkKMAKDHCLjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkKMAKDHCLjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkKMAKDHCLjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkKMAKDHCLjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkKMAKDHCLjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkKMAKDHCLjs.evaluateWithTrace; exports.extractAttributeNames = _chunkKMAKDHCLjs.extractAttributeNames; exports.extractFormulaVariables = _chunkKMAKDHCLjs.extractFormulaVariables; exports.extractRelationIds = _chunkKMAKDHCLjs.extractRelationIds; exports.extractRelationNames = _chunkKMAKDHCLjs.extractRelationNames; exports.extractRelationReferences = _chunkKMAKDHCLjs.extractRelationReferences; exports.file = _chunkKMAKDHCLjs.file; exports.fileConfigSchema = _chunkU4AB53AMjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkKMAKDHCLjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkKMAKDHCLjs.formatAttributeValue; exports.formatFormulaResult = _chunkKMAKDHCLjs.formatFormulaResult; exports.formatRecord = _chunkKMAKDHCLjs.formatRecord; exports.formatRecords = _chunkKMAKDHCLjs.formatRecords; exports.formatZodErrors = _chunkU4AB53AMjs.formatZodErrors; exports.formula = _chunkKMAKDHCLjs.formula; exports.formulaConfigSchema = _chunkU4AB53AMjs.formulaConfigSchema; exports.generateCssVariables = _chunkKMAKDHCLjs.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 = _chunkU4AB53AMjs.getAttributeConfigSchema; exports.getContext = _chunkKMAKDHCLjs.getContext; exports.getContextValue = _chunkKMAKDHCLjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkKMAKDHCLjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkKMAKDHCLjs.getErrorMessage; exports.getFeatureFlags = _chunkKMAKDHCLjs.getFeatureFlags; exports.getFeatureValue = _chunkKMAKDHCLjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunkU4AB53AMjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkKMAKDHCLjs.getNodeOutputs; exports.getPathDepth = _chunkKMAKDHCLjs.getPathDepth; exports.getPolicy = _chunkKMAKDHCLjs.getPolicy; exports.getRelationPath = _chunkKMAKDHCLjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkKMAKDHCLjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkKMAKDHCLjs.getSchemaContext; exports.getSchemaFromContext = _chunkKMAKDHCLjs.getSchemaFromContext; exports.getSyncPreview = _chunkKMAKDHCLjs.getSyncPreview; exports.getSystemAttributeList = _chunkKMAKDHCLjs.getSystemAttributeList; exports.getSystemTemplate = _chunkKMAKDHCLjs.getSystemTemplate; exports.getTargetAttributeName = _chunkKMAKDHCLjs.getTargetAttributeName; exports.getTenantId = _chunkKMAKDHCLjs.getTenantId; exports.getUserId = _chunkKMAKDHCLjs.getUserId; exports.getViewSeedPreview = _chunkKMAKDHCLjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkKMAKDHCLjs.getViewSyncPreview; exports.group = _chunkKMAKDHCLjs.group; exports.hasContext = _chunkKMAKDHCLjs.hasContext; exports.hasFeatureFlagsContext = _chunkKMAKDHCLjs.hasFeatureFlagsContext; exports.hasProperties = _chunkKMAKDHCLjs.hasProperties; exports.hasRelationReferences = _chunkKMAKDHCLjs.hasRelationReferences; exports.hasSchemaContext = _chunkKMAKDHCLjs.hasSchemaContext; exports.hashOptions = _chunkKMAKDHCLjs.hashOptions; exports.inValues = _chunkKMAKDHCLjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkKMAKDHCLjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunkKMAKDHCLjs.isBehaviorProperty; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkKMAKDHCLjs.isConditionGroup; exports.isConditionNode = _chunkKMAKDHCLjs.isConditionNode; exports.isConditionRule = _chunkKMAKDHCLjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDirectTableTab = isDirectTableTab; exports.isDocumentNode = _chunkKMAKDHCLjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkKMAKDHCLjs.isEmpty; exports.isEndNode = _chunkKMAKDHCLjs.isEndNode; exports.isFeatureEnabled = _chunkKMAKDHCLjs.isFeatureEnabled; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkKMAKDHCLjs.isForbiddenError; exports.isFormNode = _chunkKMAKDHCLjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkKMAKDHCLjs.isGrantExpired; exports.isGrantRevoked = _chunkKMAKDHCLjs.isGrantRevoked; exports.isGrantValid = _chunkKMAKDHCLjs.isGrantValid; exports.isIdentityProperty = _chunkKMAKDHCLjs.isIdentityProperty; exports.isInstanceEvent = _chunkKMAKDHCLjs.isInstanceEvent; exports.isInstanceTerminal = _chunkKMAKDHCLjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkKMAKDHCLjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isInvitationAccepted = _chunkKMAKDHCLjs.isInvitationAccepted; exports.isInvitationExpired = _chunkKMAKDHCLjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkKMAKDHCLjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkKMAKDHCLjs.isInvitationValid; exports.isLabelExpression = _chunkKMAKDHCLjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkKMAKDHCLjs.isNodeEvent; exports.isNotEmpty = _chunkKMAKDHCLjs.isNotEmpty; exports.isNotFoundError = _chunkKMAKDHCLjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isPresentationProperty = _chunkKMAKDHCLjs.isPresentationProperty; exports.isProtectedResourceError = _chunkKMAKDHCLjs.isProtectedResourceError; exports.isRecordComplete = _chunkU4AB53AMjs.isRecordComplete; exports.isSchemaError = _chunkKMAKDHCLjs.isSchemaError; exports.isSimpleFormNode = _chunkKMAKDHCLjs.isSimpleFormNode; exports.isStartNode = _chunkKMAKDHCLjs.isStartNode; exports.isSystemAttribute = _chunkKMAKDHCLjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkKMAKDHCLjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkKMAKDHCLjs.isSystemTemplate; exports.isSystemWorkflow = _chunkKMAKDHCLjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkKMAKDHCLjs.isTokenRevoked; exports.isUniversalRelation = _chunkKMAKDHCLjs.isUniversalRelation; exports.isValidationError = _chunkKMAKDHCLjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkKMAKDHCLjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkKMAKDHCLjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkKMAKDHCLjs.listView; exports.location = _chunkKMAKDHCLjs.location; exports.locationConfigSchema = _chunkU4AB53AMjs.locationConfigSchema; exports.mergeWithDefaults = _chunkKMAKDHCLjs.mergeWithDefaults; exports.multiselect = _chunkKMAKDHCLjs.multiselect; exports.multiselectConfigSchema = _chunkU4AB53AMjs.multiselectConfigSchema; exports.neq = _chunkKMAKDHCLjs.neq; exports.notesPolicy = _chunkKMAKDHCLjs.notesPolicy; exports.number = _chunkKMAKDHCLjs.number; exports.numberConfigSchema = _chunkU4AB53AMjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkKMAKDHCLjs.object; exports.or = _chunkKMAKDHCLjs.or; exports.parseAttributeConfig = _chunkU4AB53AMjs.parseAttributeConfig; exports.parsePath = _chunkKMAKDHCLjs.parsePath; exports.pathHasManyCardinality = _chunkKMAKDHCLjs.pathHasManyCardinality; exports.phone = _chunkKMAKDHCLjs.phone; exports.phoneConfigSchema = _chunkU4AB53AMjs.phoneConfigSchema; exports.rating = _chunkKMAKDHCLjs.rating; exports.ratingConfigSchema = _chunkU4AB53AMjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkKMAKDHCLjs.recalculateParentRollups; exports.registry = _chunkKMAKDHCLjs.registry; exports.relation = _chunkKMAKDHCLjs.relation; exports.relationConfigSchema = _chunkU4AB53AMjs.relationConfigSchema; exports.renderLabelExpression = _chunkKMAKDHCLjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkKMAKDHCLjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkKMAKDHCLjs.resolveSingleValue; exports.richtext = _chunkKMAKDHCLjs.richtext; exports.richtextConfigSchema = _chunkU4AB53AMjs.richtextConfigSchema; exports.rollup = _chunkKMAKDHCLjs.rollup; exports.rollupConfigSchema = _chunkU4AB53AMjs.rollupConfigSchema; exports.runWithContext = _chunkKMAKDHCLjs.runWithContext; exports.runWithFeatureFlags = _chunkKMAKDHCLjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkKMAKDHCLjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkKMAKDHCLjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkU4AB53AMjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkKMAKDHCLjs.seedRegistryViews; exports.select = _chunkKMAKDHCLjs.select; exports.selectConfigSchema = _chunkU4AB53AMjs.selectConfigSchema; exports.setContextValue = _chunkKMAKDHCLjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkKMAKDHCLjs.status; exports.statusConfigSchema = _chunkU4AB53AMjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkKMAKDHCLjs.success; exports.syncAll = _chunkKMAKDHCLjs.syncAll; exports.syncNativeObjects = _chunkKMAKDHCLjs.syncNativeObjects; exports.syncNativeViews = _chunkKMAKDHCLjs.syncNativeViews; exports.text = _chunkKMAKDHCLjs.text; exports.textConfigSchema = _chunkU4AB53AMjs.textConfigSchema; exports.textarea = _chunkKMAKDHCLjs.textarea; exports.textareaConfigSchema = _chunkU4AB53AMjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkKMAKDHCLjs.toUndefinedIfEmpty; exports.traversePath = _chunkKMAKDHCLjs.traversePath; exports.tryGetFeatureValue = _chunkKMAKDHCLjs.tryGetFeatureValue; exports.user = _chunkKMAKDHCLjs.user; exports.userConfigSchema = _chunkU4AB53AMjs.userConfigSchema; exports.validateAttribute = _chunkU4AB53AMjs.validateAttribute; exports.validateAttributeConfig = _chunkU4AB53AMjs.validateAttributeConfig; exports.validateDraft = _chunkU4AB53AMjs.validateDraft; exports.validateDraftOrThrow = _chunkU4AB53AMjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkKMAKDHCLjs.validateFormulaExpression; exports.validateObject = _chunkU4AB53AMjs.validateObject; exports.validateObjectOrThrow = _chunkU4AB53AMjs.validateObjectOrThrow; exports.validatePath = _chunkKMAKDHCLjs.validatePath; exports.validatePropertyType = _chunkKMAKDHCLjs.validatePropertyType; exports.verifyNativeObjectsSync = _chunkKMAKDHCLjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkKMAKDHCLjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkKMAKDHCLjs.verifyRegistryViewsSeeded; exports.view = _chunkKMAKDHCLjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkKMAKDHCLjs.wait; exports.withFeatureFlags = _chunkKMAKDHCLjs.withFeatureFlags; exports.withTenantContext = _chunkKMAKDHCLjs.withTenantContext; exports.workflow = _chunkKMAKDHCLjs.workflow;
|
package/dist/index.mjs
CHANGED
|
@@ -344,7 +344,7 @@ import {
|
|
|
344
344
|
withFeatureFlags,
|
|
345
345
|
withTenantContext,
|
|
346
346
|
workflow
|
|
347
|
-
} from "./chunk-
|
|
347
|
+
} from "./chunk-MUJVBSBL.mjs";
|
|
348
348
|
import {
|
|
349
349
|
asTenantId,
|
|
350
350
|
asUserId,
|
|
@@ -1234,6 +1234,15 @@ Available views: ${availableNames}`
|
|
|
1234
1234
|
};
|
|
1235
1235
|
var viewRegistry = new ViewRegistry();
|
|
1236
1236
|
|
|
1237
|
+
// src/views/helpers.ts
|
|
1238
|
+
function getActiveTab(config, tabId) {
|
|
1239
|
+
if (tabId) {
|
|
1240
|
+
const tab = config.tabs.find((t) => t.id === tabId);
|
|
1241
|
+
if (tab) return tab;
|
|
1242
|
+
}
|
|
1243
|
+
return config.tabs.find((t) => t.default) ?? config.tabs[0];
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1237
1246
|
// src/views/auto-generator.ts
|
|
1238
1247
|
function getVisibleAttributes(attributes, excludeNames = []) {
|
|
1239
1248
|
return attributes.filter(
|
|
@@ -1355,8 +1364,15 @@ function generateDefaultListView(object2, options = {}) {
|
|
|
1355
1364
|
const sortedAttrs = sortAttributes(visibleAttrs);
|
|
1356
1365
|
const columns = sortedAttrs.slice(0, maxListColumns).map((attr) => attr.name);
|
|
1357
1366
|
const config = {
|
|
1358
|
-
|
|
1359
|
-
|
|
1367
|
+
tabs: [
|
|
1368
|
+
{
|
|
1369
|
+
id: "all",
|
|
1370
|
+
label: "All",
|
|
1371
|
+
default: true,
|
|
1372
|
+
layout: "table",
|
|
1373
|
+
columns
|
|
1374
|
+
}
|
|
1375
|
+
]
|
|
1360
1376
|
};
|
|
1361
1377
|
return {
|
|
1362
1378
|
name: "default",
|
|
@@ -1489,16 +1505,28 @@ function isDetailViewCustomized(view2, object2) {
|
|
|
1489
1505
|
}
|
|
1490
1506
|
function isListViewCustomized(view2, object2) {
|
|
1491
1507
|
const defaultView = generateDefaultListView(object2);
|
|
1492
|
-
|
|
1508
|
+
const viewTabs = view2.config.tabs;
|
|
1509
|
+
const defaultTabs = defaultView.config.tabs;
|
|
1510
|
+
if (viewTabs.length !== defaultTabs.length) {
|
|
1493
1511
|
return true;
|
|
1494
1512
|
}
|
|
1495
|
-
for (let i = 0; i <
|
|
1496
|
-
|
|
1513
|
+
for (let i = 0; i < viewTabs.length; i++) {
|
|
1514
|
+
const viewTab = viewTabs[i];
|
|
1515
|
+
const defaultTab = defaultTabs[i];
|
|
1516
|
+
if (viewTab.id !== defaultTab.id) {
|
|
1497
1517
|
return true;
|
|
1498
1518
|
}
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1519
|
+
if (viewTab.layout !== defaultTab.layout) {
|
|
1520
|
+
return true;
|
|
1521
|
+
}
|
|
1522
|
+
if (viewTab.columns.length !== defaultTab.columns.length) {
|
|
1523
|
+
return true;
|
|
1524
|
+
}
|
|
1525
|
+
for (let j = 0; j < viewTab.columns.length; j++) {
|
|
1526
|
+
if (viewTab.columns[j] !== defaultTab.columns[j]) {
|
|
1527
|
+
return true;
|
|
1528
|
+
}
|
|
1529
|
+
}
|
|
1502
1530
|
}
|
|
1503
1531
|
return false;
|
|
1504
1532
|
}
|
|
@@ -1796,6 +1824,7 @@ export {
|
|
|
1796
1824
|
generateId,
|
|
1797
1825
|
generatePrefixedId,
|
|
1798
1826
|
generateTemplateName,
|
|
1827
|
+
getActiveTab,
|
|
1799
1828
|
getAttributeConfigSchema,
|
|
1800
1829
|
getContext,
|
|
1801
1830
|
getContextValue,
|
|
@@ -3021,6 +3021,13 @@ declare function createStartTransition(startNodeId: string, startedBy: string):
|
|
|
3021
3021
|
* Type of view - determines the config structure
|
|
3022
3022
|
*/
|
|
3023
3023
|
type ViewType = "detail" | "list" | "calendar" | "timeline" | "gallery";
|
|
3024
|
+
/**
|
|
3025
|
+
* Creation behavior when clicking the "+" button
|
|
3026
|
+
* - `redirect`: Create the record then navigate to its detail page
|
|
3027
|
+
* - `inline`: Insert an empty row in the table (no navigation)
|
|
3028
|
+
* - `modal`: Open a stacked modal for creation
|
|
3029
|
+
*/
|
|
3030
|
+
type CreateMode = "redirect" | "inline" | "modal";
|
|
3024
3031
|
/**
|
|
3025
3032
|
* Inline attribute group configuration
|
|
3026
3033
|
* Groups multiple attributes into a single composite field with dropdown editing
|
|
@@ -3080,12 +3087,20 @@ interface BaseTab {
|
|
|
3080
3087
|
icon?: IconName;
|
|
3081
3088
|
order?: number;
|
|
3082
3089
|
}
|
|
3090
|
+
/**
|
|
3091
|
+
* Form layout density
|
|
3092
|
+
*/
|
|
3093
|
+
type FormDensity = "compact" | "comfortable" | "spacious";
|
|
3083
3094
|
/**
|
|
3084
3095
|
* Form tab - displays attributes organized in groups
|
|
3085
3096
|
*/
|
|
3086
3097
|
interface FormTab extends BaseTab {
|
|
3087
3098
|
type: "form";
|
|
3088
3099
|
groups: Group[];
|
|
3100
|
+
/** Number of grid columns (1, 2, or 3). Default: 2 */
|
|
3101
|
+
formColumns?: 1 | 2 | 3;
|
|
3102
|
+
/** Layout density. Default: "comfortable" */
|
|
3103
|
+
density?: FormDensity;
|
|
3089
3104
|
}
|
|
3090
3105
|
/**
|
|
3091
3106
|
* Shared properties for table tabs
|
|
@@ -3096,6 +3111,8 @@ interface TableTabBase extends BaseTab {
|
|
|
3096
3111
|
columns: string[];
|
|
3097
3112
|
/** Allow creating new records */
|
|
3098
3113
|
allowCreate?: boolean;
|
|
3114
|
+
/** Creation behavior when allowCreate is true. Default: "redirect" */
|
|
3115
|
+
createMode?: CreateMode;
|
|
3099
3116
|
/** Allow inline editing */
|
|
3100
3117
|
allowEdit?: boolean;
|
|
3101
3118
|
/** Allow deleting records */
|
|
@@ -3146,7 +3163,6 @@ interface CustomTab extends BaseTab {
|
|
|
3146
3163
|
*/
|
|
3147
3164
|
interface ActivityTab extends BaseTab {
|
|
3148
3165
|
type: "activity";
|
|
3149
|
-
/** Maximum number of activities to display (optional) */
|
|
3150
3166
|
limit?: number;
|
|
3151
3167
|
}
|
|
3152
3168
|
/**
|
|
@@ -3154,23 +3170,17 @@ interface ActivityTab extends BaseTab {
|
|
|
3154
3170
|
*/
|
|
3155
3171
|
interface NotesTab extends BaseTab {
|
|
3156
3172
|
type: "notes";
|
|
3157
|
-
/** Show only private notes of the current user */
|
|
3158
|
-
privateOnly?: boolean;
|
|
3159
|
-
/** Allow creating new notes from this tab */
|
|
3160
3173
|
allowCreate?: boolean;
|
|
3174
|
+
privateOnly?: boolean;
|
|
3161
3175
|
}
|
|
3162
3176
|
/**
|
|
3163
3177
|
* Flows tab - displays workflow instances linked to the current record
|
|
3164
3178
|
*/
|
|
3165
3179
|
interface FlowsTab extends BaseTab {
|
|
3166
3180
|
type: "flows";
|
|
3167
|
-
/** Show only instances with specific statuses */
|
|
3168
|
-
statusFilter?: InstanceStatus[];
|
|
3169
|
-
/** Allow starting new workflow instances */
|
|
3170
3181
|
allowStart?: boolean;
|
|
3171
|
-
/** Allow canceling running instances */
|
|
3172
3182
|
allowCancel?: boolean;
|
|
3173
|
-
|
|
3183
|
+
statusFilter?: InstanceStatus[];
|
|
3174
3184
|
columns?: ("workflow" | "status" | "startedBy" | "createdAt" | "updatedAt")[];
|
|
3175
3185
|
}
|
|
3176
3186
|
/**
|
|
@@ -3178,15 +3188,10 @@ interface FlowsTab extends BaseTab {
|
|
|
3178
3188
|
*/
|
|
3179
3189
|
interface DocumentsTab extends BaseTab {
|
|
3180
3190
|
type: "documents";
|
|
3181
|
-
/** Allow uploading new documents (default: true) */
|
|
3182
3191
|
allowUpload?: boolean;
|
|
3183
|
-
/** Allow removing documents (default: true) */
|
|
3184
3192
|
allowRemove?: boolean;
|
|
3185
|
-
/** Show processing actions (OCR, verify, sign) (default: true) */
|
|
3186
3193
|
showProcessing?: boolean;
|
|
3187
|
-
/** Highlight empty required document attributes (default: true) */
|
|
3188
3194
|
showRequiredWarnings?: boolean;
|
|
3189
|
-
/** Hide system attachments section (default: false) */
|
|
3190
3195
|
hideAttachments?: boolean;
|
|
3191
3196
|
}
|
|
3192
3197
|
/**
|
|
@@ -3208,29 +3213,49 @@ type ListViewLayout = "table" | "kanban";
|
|
|
3208
3213
|
/** @deprecated Use DetailViewLayout instead */
|
|
3209
3214
|
type ViewLayout = DetailViewLayout;
|
|
3210
3215
|
/**
|
|
3211
|
-
*
|
|
3216
|
+
* Tab within a list view — each tab carries its own full display configuration.
|
|
3212
3217
|
*
|
|
3213
3218
|
* @example
|
|
3214
3219
|
* ```typescript
|
|
3215
|
-
* const tabs:
|
|
3216
|
-
* { id: "all", label: "All Contacts", default: true },
|
|
3217
|
-
* { id: "active", label: "Active",
|
|
3218
|
-
* { id: "
|
|
3220
|
+
* const tabs: ListViewTab[] = [
|
|
3221
|
+
* { id: "all", label: "All Contacts", default: true, layout: "table", columns: ["name", "email", "status"] },
|
|
3222
|
+
* { id: "active", label: "Active", layout: "table", columns: ["name", "email"], filters: activeFilter },
|
|
3223
|
+
* { id: "pipeline", label: "Pipeline", layout: "kanban", columns: ["name", "amount"], groupByAttribute: "stage" },
|
|
3219
3224
|
* ];
|
|
3220
3225
|
* ```
|
|
3221
3226
|
*/
|
|
3222
|
-
interface
|
|
3227
|
+
interface ListViewTab {
|
|
3223
3228
|
/** Unique identifier */
|
|
3224
3229
|
id: string;
|
|
3225
3230
|
/** Display label */
|
|
3226
3231
|
label: string;
|
|
3227
3232
|
/** Icon */
|
|
3228
3233
|
icon?: IconName;
|
|
3229
|
-
/** Filter preset for this tab */
|
|
3230
|
-
filters?: FilterGroup;
|
|
3231
3234
|
/** Default tab (shown on load) */
|
|
3232
3235
|
default?: boolean;
|
|
3236
|
+
/** Layout mode */
|
|
3237
|
+
layout: ListViewLayout;
|
|
3238
|
+
/** Attribute names to display as columns */
|
|
3239
|
+
columns: string[];
|
|
3240
|
+
/** Column widths in pixels */
|
|
3241
|
+
columnSizing?: Record<string, number>;
|
|
3242
|
+
/** Filters applied to this tab */
|
|
3243
|
+
filters?: FilterGroup;
|
|
3244
|
+
/** Sort rules for this tab */
|
|
3245
|
+
sorts?: SortRule[];
|
|
3246
|
+
/** Attribute to group by (required when layout is "kanban") */
|
|
3247
|
+
groupByAttribute?: string;
|
|
3248
|
+
/** When true, the tab is read-only: no cell editing, no create, no delete */
|
|
3249
|
+
readOnly?: boolean;
|
|
3250
|
+
/** Creation behavior when clicking "+". Default: "redirect" */
|
|
3251
|
+
createMode?: CreateMode;
|
|
3252
|
+
/** User attribute to display on kanban cards (bottom-left) */
|
|
3253
|
+
cardUserAttribute?: string;
|
|
3254
|
+
/** Date attribute to display on kanban cards (bottom-right) */
|
|
3255
|
+
cardDateAttribute?: string;
|
|
3233
3256
|
}
|
|
3257
|
+
/** @deprecated Use ListViewTab instead */
|
|
3258
|
+
type ViewTab = ListViewTab;
|
|
3234
3259
|
/**
|
|
3235
3260
|
* Configuration for detail views (RecordEditView)
|
|
3236
3261
|
*/
|
|
@@ -3242,22 +3267,15 @@ interface DetailViewConfig {
|
|
|
3242
3267
|
}
|
|
3243
3268
|
/**
|
|
3244
3269
|
* Configuration for list views (RecordsView)
|
|
3270
|
+
*
|
|
3271
|
+
* Each tab carries its own full config (layout, columns, filters, sorts, groupBy).
|
|
3272
|
+
* The view only holds shared base filters applied to ALL tabs.
|
|
3245
3273
|
*/
|
|
3246
3274
|
interface ListViewConfig {
|
|
3247
|
-
/**
|
|
3248
|
-
layout: ListViewLayout;
|
|
3249
|
-
/** Attribute names to display as columns */
|
|
3250
|
-
columns: string[];
|
|
3251
|
-
/** Column widths in pixels */
|
|
3252
|
-
columnSizing?: Record<string, number>;
|
|
3253
|
-
/** Default filters applied to the view */
|
|
3275
|
+
/** Base filters applied to ALL tabs (scoping, tenant, etc.) */
|
|
3254
3276
|
defaultFilters?: FilterGroup;
|
|
3255
|
-
/**
|
|
3256
|
-
|
|
3257
|
-
/** Attribute to group by (for kanban layout) */
|
|
3258
|
-
groupByAttribute?: string;
|
|
3259
|
-
/** Internal tabs (filter presets) */
|
|
3260
|
-
tabs?: ViewTab[];
|
|
3277
|
+
/** Tabs — at least one required. Each carries its own full config. */
|
|
3278
|
+
tabs: ListViewTab[];
|
|
3261
3279
|
}
|
|
3262
3280
|
/**
|
|
3263
3281
|
* Configuration for calendar views (future)
|
|
@@ -3361,7 +3379,7 @@ type ViewDefinition = DetailViewDefinition | ListViewDefinition | CalendarViewDe
|
|
|
3361
3379
|
* Only stores the delta from the source view
|
|
3362
3380
|
*/
|
|
3363
3381
|
interface ConfigOverrides {
|
|
3364
|
-
tabs?:
|
|
3382
|
+
tabs?: ListViewTab[];
|
|
3365
3383
|
hiddenTabIds?: string[];
|
|
3366
3384
|
detailTabs?: Tab[];
|
|
3367
3385
|
hiddenDetailTabIds?: string[];
|
|
@@ -7647,6 +7665,23 @@ declare class RecordService extends BaseService {
|
|
|
7647
7665
|
skipReferenceCheck?: boolean;
|
|
7648
7666
|
hookMetadata?: Record<string, unknown>;
|
|
7649
7667
|
}): Promise<void>;
|
|
7668
|
+
/**
|
|
7669
|
+
* Delete multiple records (soft delete).
|
|
7670
|
+
* Each record goes through the full deleteRecord pipeline (permissions, policies, hooks, audit).
|
|
7671
|
+
*
|
|
7672
|
+
* @returns Summary with successfully deleted IDs and any errors encountered
|
|
7673
|
+
*/
|
|
7674
|
+
bulkDeleteRecords(recordIds: string[], options?: {
|
|
7675
|
+
skipHooks?: boolean;
|
|
7676
|
+
skipReferenceCheck?: boolean;
|
|
7677
|
+
hookMetadata?: Record<string, unknown>;
|
|
7678
|
+
}): Promise<{
|
|
7679
|
+
deleted: string[];
|
|
7680
|
+
errors: Array<{
|
|
7681
|
+
id: string;
|
|
7682
|
+
error: string;
|
|
7683
|
+
}>;
|
|
7684
|
+
}>;
|
|
7650
7685
|
/**
|
|
7651
7686
|
* Permanently delete a record (hard delete)
|
|
7652
7687
|
*/
|
|
@@ -12575,4 +12610,4 @@ interface FullSyncOptions extends SyncOptions, ViewSyncOptions {
|
|
|
12575
12610
|
*/
|
|
12576
12611
|
declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof registry, nativeViewRegistry: typeof viewRegistry, options?: FullSyncOptions): Promise<FullSyncResult>;
|
|
12577
12612
|
|
|
12578
|
-
export { type TextPartData as $, type AttributeGroupField as A, type BoundingBox as B, type ConditionGroup as C, type DetailViewLayout as D, type SignatureRequestResult as E, type Field as F, type Group as G, type SignatureStatusResult as H, type InferAttributeValue as I, type SignerStatus as J, type SignatureStatus as K, type ListViewDefinition as L, type IdentityVerificationAdapter as M, type VerifyInput as N, type ObjectAction as O, type VerificationResult as P, type DocumentData as Q, type VerificationCheck as R, type SystemResource as S, type TableTab as T, type AIMessageRole as U, type ViewType as V, type WorkflowTheme as W, type AIThinkingLevel as X, type AIToolCallStatus as Y, type AIToolCall as Z, type AIChatMessagePartType as _, type SystemAction as a, type UpdateFile as a$, type ToolPartData as a0, type ThinkingPartData as a1, type ReasoningPartData as a2, type AIChatMessagePart as a3, type AIChatMessage as a4, type AIQuestionType as a5, type AIQuestionOption as a6, type AIQuestion as a7, type AIQuestionAnswer as a8, type AIBatchQuestionOption as a9, type UpdateDocumentGenerationTemplate as aA, type PendingDocumentRequest as aB, type DocumentSlotDefinition as aC, type DocumentAutoProcessing as aD, type ExtractionMapping as aE, type ExtractionField as aF, type Document as aG, type DocumentStatus as aH, type DocumentSlot as aI, type SlotStatus as aJ, type ProcessingJob as aK, type ProcessingJobType as aL, type ProcessingJobStatus as aM, type CreateDocument as aN, type UpdateDocument as aO, type CreateDocumentTemplate as aP, type UpdateDocumentTemplate as aQ, type CreateDocumentSlot as aR, type UpdateDocumentSlot as aS, type CreateProcessingJob as aT, type UpdateProcessingJob as aU, type DocumentListOptions as aV, type DocumentTemplateListOptions as aW, type StorageProvider as aX, type FileVisibility as aY, type File as aZ, type CreateFile as a_, type AIBatchQuestion as aa, type AIBatchQuestionAnswer as ab, type AITodoStatus as ac, type AITodoItem as ad, type AITodoList as ae, type AIMessageAttachment as af, type AIConversation as ag, type AIMessage as ah, type AIToolCallRecord as ai, type AIUserMemory as aj, type AIUsageMetrics as ak, type AIProviderMetrics as al, type CreateAIMessageInput as am, type AuditResourceType as an, type AuditAction as ao, type AuditActorType as ap, type AuditChange as aq, type AuditLogEntry as ar, type CreateAuditLogInput as as, type AuditListOptions as at, type AuditServiceOptions as au, type VariableMapping as av, type PdfTemplateField as aw, type TemplateSource as ax, type DocumentGenerationTemplate as ay, type CreateDocumentGenerationTemplate as az, type InverseTableTab as b, type Permission as b$, type TextFilterOperator as b0, type NumberFilterOperator as b1, type CheckboxFilterOperator as b2, type DateFilterOperator as b3, type SelectFilterOperator as b4, type MultiselectFilterOperator as b5, type RelationFilterOperator as b6, type FilterOperator as b7, type RelativeDateValue as b8, type CurrencyFilterValue as b9, type GeocodingAdapter as bA, NoopGeocodingAdapter as bB, type AttributeSchema as bC, type InferRecordFromSchema as bD, type InferRecordWithRequirements as bE, type TypedAttribute as bF, type AttributeMap as bG, type AddAttribute as bH, type InferRecord as bI, type InferRecordInput as bJ, type InferRecordUpdate as bK, type CustomAttributeValue as bL, type WithCustomAttributes as bM, type RecordMetadata as bN, type SystemFields as bO, type ExtractRecord as bP, type ExtractRecordStrict as bQ, type ExtractRecordInput as bR, type ExtractRecordInputStrict as bS, type ExtractRecordUpdate as bT, type ExtractRecordUpdateStrict as bU, type ExtractAttributes as bV, type TypedObjectRecord as bW, type ExtractObjectRecord as bX, type ExtractObjectRecordWithCustom as bY, type PermissionScope as bZ, type Role as b_, type PhoneFilterValue as ba, type FilterValue as bb, type FilterRule as bc, type ExtendedFilterRule as bd, type FilterCombinator as be, type FilterGroup as bf, type AdvancedFilterState as bg, type SortDirection as bh, type QueryState as bi, OPERATORS_BY_TYPE as bj, type NoValueOperator as bk, NO_VALUE_OPERATORS as bl, isNoValueOperator as bm, type FlowSlot as bn, type FlowRowField as bo, type FlowPage as bp, type FlowRelation as bq, type FlowStatus as br, type FlowDefinition as bs, isFlowDefinition as bt, isFlowPublished as bu, isSystemFlow as bv, type GeocodingSuggestion as bw, type GeocodingAutocompleteParams as bx, type ReverseGeocodingParams as by, type GeocodingParams as bz, type DetailViewDefinition as c, isEndNode as c$, type UserRoleAssignment as c0, type EffectivePermissions as c1, type ObjectPermissions as c2, type SystemPermissions as c3, type CreateRoleInput as c4, type UpdateRoleInput as c5, type CreatePermissionInput as c6, type AssignRoleInput as c7, type PolicyContext as c8, type RecordPolicy as c9, type ConfigOverrides as cA, type ViewOverlay as cB, isDetailView as cC, isListView as cD, isCalendarView as cE, isTimelineView as cF, isGalleryView as cG, isFormTab as cH, isTableTab as cI, isDirectTableTab as cJ, isInverseTableTab as cK, isCustomTab as cL, isActivityTab as cM, isNotesTab as cN, isFlowsTab as cO, isDocumentsTab as cP, type ConditionNode as cQ, type DocumentNode as cR, type EndNode as cS, type FormFieldRef as cT, type FormNode as cU, type StartNode as cV, type WorkflowNodeType as cW, getNodeOutputs as cX, isAdvancedFormNode as cY, isConditionNode as cZ, isDocumentNode as c_, PolicyViolationError as ca, type UserRole as cb, type UserStatus as cc, type UserProfile as cd, type CreateUserProfile as ce, type UpdateUserProfile as cf, type InviteUserInput as cg, type TabType as ch, type FormTab as ci, type CustomTab as cj, type ActivityTab as ck, type NotesTab as cl, type FlowsTab as cm, type DocumentsTab as cn, type ListViewLayout as co, type ViewLayout as cp, type ViewTab as cq, type DetailViewConfig as cr, type ListViewConfig as cs, type CalendarViewConfig as ct, type TimelineViewConfig as cu, type GalleryViewConfig as cv, type ViewConfig as cw, type CalendarViewDefinition as cx, type TimelineViewDefinition as cy, type GalleryViewDefinition as cz, type InstanceStatus as d, type RelationAttributeRow as d$, isFormNode as d0, isSimpleFormNode as d1, isStartNode as d2, type ConditionOperator as d3, and as d4, eq as d5, inValues as d6, isConditionGroup as d7, isConditionRule as d8, neq as d9, type WorkflowAccessGrant as dA, canAccessNode as dB, isGrantExpired as dC, isGrantRevoked as dD, isGrantValid as dE, isTokenRevoked as dF, type GeneratedDocument as dG, type WorkflowExecutionContext as dH, createEmptyContext as dI, getContextValue as dJ, setContextValue as dK, type FormContextResponse as dL, type FormFieldContext as dM, type FormFieldRow as dN, type FormNodeInfo as dO, type ReadOnlyReason as dP, type WorkflowAccessMode as dQ, type ThemeColors as dR, type ThemeLogo as dS, type ThemeTypography as dT, DEFAULT_THEME as dU, generateCssVariables as dV, mergeWithDefaults as dW, registry as dX, viewRegistry as dY, type ViewOverlaysRepository as dZ, type RelationAttributeInput as d_, or as da, type CanvasViewport as db, type NodePosition as dc, type WorkflowLayout as dd, type WorkflowSlot as de, type WorkflowStatus as df, isSystemWorkflow as dg, isWorkflowDefinition as dh, isWorkflowPublished as di, type PendingAction as dj, type WorkflowError as dk, type WorkflowInstance as dl, type WorkflowTransition as dm, canResumeInstance as dn, createStartTransition as dp, isInstanceTerminal as dq, isInstanceWaiting as dr, type CreateInvitationInput as ds, type CreateInvitationResult as dt, type InvitationStatus as du, type WorkflowInvitation as dv, isInvitationAccepted as dw, isInvitationExpired as dx, isInvitationValid as dy, type CreateGrantInput as dz, type Tab as e, createDefaultExecutorRegistry as e$, type RelationAttributesRepository as e0, type DatabaseAdapter as e1, WorkflowJwtService as e2, type JwtVerificationResult as e3, type MagicLinkPayload as e4, type WorkflowAccessPayload as e5, type WorkflowJwtConfig as e6, type WorkflowJwtPayload as e7, type CacheKeyType as e8, hashOptions as e9, evaluate as eA, evaluateWithTrace as eB, TenantContextError as eC, FeatureFlagsContextError as eD, getFeatureFlags as eE, getFeatureValue as eF, hasFeatureFlagsContext as eG, isFeatureEnabled as eH, runWithFeatureFlags as eI, tryGetFeatureValue as eJ, withFeatureFlags as eK, type FeatureFlagsContext as eL, addSchemaToContext as eM, getSchemaByNameFromContext as eN, getSchemaContext as eO, getSchemaFromContext as eP, hasSchemaContext as eQ, runWithMergedSchemaContext as eR, runWithSchemaContext as eS, type SchemaContext as eT, getContext as eU, getTenantId as eV, getUserId as eW, hasContext as eX, runWithContext as eY, withTenantContext as eZ, type TenantContext as e_, type CacheAdapter as ea, type CacheOptions as eb, cacheKeys as ec, cacheTtl as ed, defaultTtl as ee, NoopCacheAdapter as ef, type FetchResult as eg, type FormattedRecord as eh, type GroupedFetchResult as ei, type InsertOptions as ej, type QueryBuilderState as ek, type RegistryMap as el, type RegistryObjectNames as em, type ShortcutOperator as en, createDefaultState as eo, formatRecord as ep, formatRecords as eq, QueryMultipleResultsError as er, QueryNoResultError as es, SHORTCUT_TO_FILTER_OPERATOR as et, createQueryBuilder as eu, QueryBuilder as ev, type QueryBuilderOptions as ew, type EvaluationResult as ex, type EvaluationTrace as ey, evaluateCondition as ez, type FilterState as f, type AttributesRepository as f$, getDefaultExecutorRegistry as f0, type ExecutorCompleteResult as f1, type ExecutorContext as f2, type ExecutorErrorResult as f3, type ExecutorResult as f4, type ExecutorSuccessResult as f5, type ExecutorWaitResult as f6, type NodeExecutor as f7, complete as f8, error as f9, parsePath as fA, pathHasManyCardinality as fB, validatePath as fC, type PathCardinality as fD, type PathSegment as fE, type PathSegmentType as fF, type SchemaResolver as fG, resolveMultiplePaths as fH, resolveSingleValue as fI, traversePath as fJ, type TraversalOptions as fK, type TraversalResult as fL, type AttributeChange as fM, type HookContext as fN, type HookDefinition as fO, type HookHandler as fP, type HookType as fQ, NoopHookRegistry as fR, type HookRegistry as fS, createMockAdapter as fT, type MockStores as fU, defaultPolicyRegistry as fV, PolicyRegistry as fW, notesPolicy as fX, type AIConversationsRepository as fY, type AIUsageMetricsRepository as fZ, type AIUserMemoryRepository as f_, ExecutorRegistry as fa, success as fb, wait as fc, ConditionExecutor as fd, DocumentExecutor as fe, EndExecutor as ff, FormExecutor as fg, StartExecutor as fh, evaluateFormula as fi, evaluateFormulaAttribute as fj, evaluateFormulaAttributeWithRelations as fk, evaluateFormulaWithRelations as fl, evaluateFormulaWithResult as fm, extractFormulaVariables as fn, extractRelationNames as fo, extractRelationReferences as fp, flattenRelationsForEval as fq, formatFormulaResult as fr, hasRelationReferences as fs, validateFormulaExpression as ft, type FormulaResult as fu, getPathDepth as fv, getRelationPath as fw, getTargetAttributeName as fx, InvalidPathError as fy, MaxDepthExceededError as fz, type SortRule as g, computeLabel as g$, type AuditRepository as g0, type DocumentGenerationTemplateListOptions as g1, type DocumentGenerationTemplatesRepository as g2, type DocumentJobsRepository as g3, type DocumentSlotsRepository as g4, type DocumentsRepository as g5, type DocumentTemplatesRepository as g6, type FilesRepository as g7, type ObjectRecordsRepository as g8, type ObjectsRepository as g9, type RelationOptionsResponse as gA, type GetRelationOptionsParams as gB, type RelationServiceOptions as gC, type ResolveIdsBatchRequest as gD, type ResolveIdsBatchResponse as gE, RelationService as gF, type MultiRelationValue as gG, type SingleRelationValue as gH, type HybridRelationValue as gI, RelationPropertiesService as gJ, RecordResolverService as gK, type ResolvedRelations as gL, type FormulaResolverServiceOptions as gM, FormulaResolverService as gN, type RollupResult as gO, type RollupServiceOptions as gP, RollupService as gQ, type RollupSchedulerOptions as gR, RollupScheduler as gS, applyDefaultValues as gT, checkPermission as gU, getPolicy as gV, buildPolicyContext as gW, checkRecordAccess as gX, checkRecordModifyOrThrow as gY, checkRecordDeleteOrThrow as gZ, checkSharedObjectWriteAccess as g_, type PermissionsRepository as ga, type UserProfilesRepository as gb, type ViewsRepository as gc, type WorkflowAccessGrantsRepository as gd, type WorkflowInstancesRepository as ge, type WorkflowInvitationsRepository as gf, type WorkflowsRepository as gg, BaseService as gh, BaseRepository as gi, type SchemaContextAware as gj, SchemaContextAwareRepository as gk, type CreateCustomObjectInput as gl, type AddAttributeInput as gm, type UpdateObjectInput as gn, type ObjectSchemaServiceOptions as go, ObjectSchemaService as gp, type RecordServiceOptions as gq, RecordService as gr, type RecordQueryServiceOptions as gs, type QueryOptions as gt, type SearchQueryOptions as gu, type QueryResult as gv, RecordQueryService as gw, type RelationValidationResult as gx, type RelationValidationError as gy, type RelationOption as gz, type DirectTableTab as h, type CreateViewInput as h$, type LabelResolver as h0, enrichWithFormulas as h1, enrichRecordsWithFormulas as h2, createContextForCreate as h3, createContextForUpdate as h4, createContextForDelete as h5, createContextForRestore as h6, recalculateParentRollups as h7, type RollupCascadeContext as h8, type DocumentProcessingHookOptions as h9, type UserProfileServiceOptions as hA, UserProfileService as hB, AuditService as hC, buildAuditChanges as hD, DocumentGenerationTemplateNotFoundError as hE, DocumentGenerationNotConfiguredError as hF, DocumentGenerationService as hG, type DocumentProcessingConfig as hH, DocumentProcessingService as hI, type RenderDocumentInput as hJ, type DocumentRendererOptions as hK, type RenderDocumentResult as hL, DocumentRenderError as hM, StorageDownloadNotSupportedError as hN, DocumentRendererService as hO, DocumentTemplateService as hP, type RecordDocumentsResult as hQ, type CreateRecordDocumentInput as hR, type CreateRecordDocumentResult as hS, type DocumentServiceOptions as hT, DocumentService as hU, type FileServiceOptions as hV, FileService as hW, GeocodingService as hX, GlobalSearchService as hY, type PermissionServiceOptions as hZ, PermissionService as h_, DocumentProcessingHook as ha, GrantNotFoundError as hb, GrantExpiredError as hc, GrantRevokedError as hd, TokenRevokedError as he, type GrantServiceConfig as hf, type CreateGrantResult as hg, WorkflowAccessGrantService as hh, type StartWorkflowInput as hi, type ResumeWorkflowInput as hj, type WorkflowInstanceServiceOptions as hk, WorkflowInstanceService as hl, type InvitationServiceConfig as hm, InvitationNotFoundError as hn, InvitationExpiredError as ho, InvitationAlreadyAcceptedError as hp, InvitationRevokedError as hq, WorkflowInvitationService as hr, WorkflowRelationService as hs, type CreateWorkflowInput as ht, type UpdateWorkflowInput as hu, type WorkflowServiceOptions as hv, WorkflowService as hw, type UserValidationResult as hx, type UserValidationError as hy, UserService as hz, type WorkflowConfig as i, type UpdateDBWorkflowAccessGrant as i$, type UpdateViewInput as i0, type GetViewsOptions as i1, type GetViewOptions as i2, ViewService as i3, type FileContent as i4, type StorageUploadInput as i5, type StorageUploadResult as i6, type SignedUrlOptions as i7, type StorageAdapter as i8, type UploadFileInput as i9, type UpsertDBAttribute as iA, type CreateObjectRecord as iB, type ListOptions as iC, type SearchOptions as iD, type GlobalSearchOptions as iE, type GlobalSearchGroupedOptions as iF, type GlobalSearchResultItem as iG, type GlobalSearchGroupedResult as iH, type FileListOptions as iI, type DBView as iJ, type CreateDBView as iK, type UpdateDBView as iL, type UpsertDBView as iM, type DBViewOverlay as iN, type CreateDBViewOverlay as iO, type UpdateDBViewOverlay as iP, type DBWorkflow as iQ, type CreateDBWorkflow as iR, type UpdateDBWorkflow as iS, type DBWorkflowInstance as iT, type CreateDBWorkflowInstance as iU, type UpdateDBWorkflowInstance as iV, type DBWorkflowInvitation as iW, type CreateDBWorkflowInvitation as iX, type UpdateDBWorkflowInvitation as iY, type DBWorkflowAccessGrant as iZ, type CreateDBWorkflowAccessGrant as i_, type SyncResult as ia, type SyncOptions as ib, syncNativeObjects as ic, verifyNativeObjectsSync as id, getSyncPreview as ie, type FullSyncResult as ig, type FullSyncOptions as ih, syncAll as ii, DEFAULT_LABEL_FALLBACK as ij, renderLabelExpression as ik, isLabelExpression as il, extractAttributeNames as im, enrichValuesForDisplay as io, enrichValuesWithSelectLabels as ip, extractRelationIds as iq, type RelationLabelResolver as ir, computeLabelWithRelations as is, type DBObject as it, type CreateDBObject as iu, type UpdateDBObject as iv, type UpsertDBObject as iw, type DBAttribute as ix, type CreateDBAttribute as iy, type UpdateDBAttribute as iz, type SlotMode as j, type OperationResult as j0, type ViewSyncResult as j1, type ViewSyncLogger as j2, type ViewSyncOptions as j3, seedRegistryViews as j4, syncNativeViews as j5, verifyRegistryViewsSeeded as j6, verifyNativeViewsSync as j7, getViewSeedPreview as j8, getViewSyncPreview as j9, type ConditionRule as k, type WorkflowNode as l, type WorkflowDefinition as m, type FlowRow as n, type ViewDefinition as o, type DocumentTemplate as p, type OcrAdapter as q, type OcrInput as r, type OcrOptions as s, type OcrResult as t, type OcrPage as u, type OcrTextBlock as v, type SignatureAdapter as w, type CreateSignatureInput as x, type SignerRequest as y, type SignaturePosition as z };
|
|
12613
|
+
export { type AIToolCallStatus as $, type AttributeGroupField as A, type BoundingBox as B, type CreateMode as C, type DetailViewLayout as D, type CreateSignatureInput as E, type Field as F, type Group as G, type SignerRequest as H, type InferAttributeValue as I, type SignaturePosition as J, type SignatureRequestResult as K, type ListViewDefinition as L, type SignatureStatusResult as M, type SignerStatus as N, type ObjectAction as O, type SignatureStatus as P, type IdentityVerificationAdapter as Q, type VerifyInput as R, type SystemResource as S, type TableTab as T, type VerificationResult as U, type ViewType as V, type WorkflowTheme as W, type DocumentData as X, type VerificationCheck as Y, type AIMessageRole as Z, type AIThinkingLevel as _, type SystemAction as a, type FileVisibility as a$, type AIToolCall as a0, type AIChatMessagePartType as a1, type TextPartData as a2, type ToolPartData as a3, type ThinkingPartData as a4, type ReasoningPartData as a5, type AIChatMessagePart as a6, type AIChatMessage as a7, type AIQuestionType as a8, type AIQuestionOption as a9, type TemplateSource as aA, type DocumentGenerationTemplate as aB, type CreateDocumentGenerationTemplate as aC, type UpdateDocumentGenerationTemplate as aD, type PendingDocumentRequest as aE, type DocumentSlotDefinition as aF, type DocumentAutoProcessing as aG, type ExtractionMapping as aH, type ExtractionField as aI, type Document as aJ, type DocumentStatus as aK, type DocumentSlot as aL, type SlotStatus as aM, type ProcessingJob as aN, type ProcessingJobType as aO, type ProcessingJobStatus as aP, type CreateDocument as aQ, type UpdateDocument as aR, type CreateDocumentTemplate as aS, type UpdateDocumentTemplate as aT, type CreateDocumentSlot as aU, type UpdateDocumentSlot as aV, type CreateProcessingJob as aW, type UpdateProcessingJob as aX, type DocumentListOptions as aY, type DocumentTemplateListOptions as aZ, type StorageProvider as a_, type AIQuestion as aa, type AIQuestionAnswer as ab, type AIBatchQuestionOption as ac, type AIBatchQuestion as ad, type AIBatchQuestionAnswer as ae, type AITodoStatus as af, type AITodoItem as ag, type AITodoList as ah, type AIMessageAttachment as ai, type AIConversation as aj, type AIMessage as ak, type AIToolCallRecord as al, type AIUserMemory as am, type AIUsageMetrics as an, type AIProviderMetrics as ao, type CreateAIMessageInput as ap, type AuditResourceType as aq, type AuditAction as ar, type AuditActorType as as, type AuditChange as at, type AuditLogEntry as au, type CreateAuditLogInput as av, type AuditListOptions as aw, type AuditServiceOptions as ax, type VariableMapping as ay, type PdfTemplateField as az, type InverseTableTab as b, type ExtractObjectRecordWithCustom as b$, type File as b0, type CreateFile as b1, type UpdateFile as b2, type TextFilterOperator as b3, type NumberFilterOperator as b4, type CheckboxFilterOperator as b5, type DateFilterOperator as b6, type SelectFilterOperator as b7, type MultiselectFilterOperator as b8, type RelationFilterOperator as b9, type GeocodingAutocompleteParams as bA, type ReverseGeocodingParams as bB, type GeocodingParams as bC, type GeocodingAdapter as bD, NoopGeocodingAdapter as bE, type AttributeSchema as bF, type InferRecordFromSchema as bG, type InferRecordWithRequirements as bH, type TypedAttribute as bI, type AttributeMap as bJ, type AddAttribute as bK, type InferRecord as bL, type InferRecordInput as bM, type InferRecordUpdate as bN, type CustomAttributeValue as bO, type WithCustomAttributes as bP, type RecordMetadata as bQ, type SystemFields as bR, type ExtractRecord as bS, type ExtractRecordStrict as bT, type ExtractRecordInput as bU, type ExtractRecordInputStrict as bV, type ExtractRecordUpdate as bW, type ExtractRecordUpdateStrict as bX, type ExtractAttributes as bY, type TypedObjectRecord as bZ, type ExtractObjectRecord as b_, type FilterOperator as ba, type RelativeDateValue as bb, type CurrencyFilterValue as bc, type PhoneFilterValue as bd, type FilterValue as be, type FilterRule as bf, type ExtendedFilterRule as bg, type FilterCombinator as bh, type FilterGroup as bi, type AdvancedFilterState as bj, type SortDirection as bk, type QueryState as bl, OPERATORS_BY_TYPE as bm, type NoValueOperator as bn, NO_VALUE_OPERATORS as bo, isNoValueOperator as bp, type FlowSlot as bq, type FlowRowField as br, type FlowPage as bs, type FlowRelation as bt, type FlowStatus as bu, type FlowDefinition as bv, isFlowDefinition as bw, isFlowPublished as bx, isSystemFlow as by, type GeocodingSuggestion as bz, type DetailViewDefinition as c, isAdvancedFormNode as c$, type PermissionScope as c0, type Role as c1, type Permission as c2, type UserRoleAssignment as c3, type EffectivePermissions as c4, type ObjectPermissions as c5, type SystemPermissions as c6, type CreateRoleInput as c7, type UpdateRoleInput as c8, type CreatePermissionInput as c9, type CalendarViewDefinition as cA, type TimelineViewDefinition as cB, type GalleryViewDefinition as cC, type ConfigOverrides as cD, type ViewOverlay as cE, isDetailView as cF, isListView as cG, isCalendarView as cH, isTimelineView as cI, isGalleryView as cJ, isFormTab as cK, isTableTab as cL, isDirectTableTab as cM, isInverseTableTab as cN, isCustomTab as cO, isActivityTab as cP, isNotesTab as cQ, isFlowsTab as cR, isDocumentsTab as cS, type ConditionNode as cT, type DocumentNode as cU, type EndNode as cV, type FormFieldRef as cW, type FormNode as cX, type StartNode as cY, type WorkflowNodeType as cZ, getNodeOutputs as c_, type AssignRoleInput as ca, type PolicyContext as cb, type RecordPolicy as cc, PolicyViolationError as cd, type UserRole as ce, type UserStatus as cf, type UserProfile as cg, type CreateUserProfile as ch, type UpdateUserProfile as ci, type InviteUserInput as cj, type TabType as ck, type FormDensity as cl, type FormTab as cm, type CustomTab as cn, type ActivityTab as co, type NotesTab as cp, type FlowsTab as cq, type DocumentsTab as cr, type ListViewLayout as cs, type ViewLayout as ct, type ViewTab as cu, type DetailViewConfig as cv, type CalendarViewConfig as cw, type TimelineViewConfig as cx, type GalleryViewConfig as cy, type ViewConfig as cz, type InstanceStatus as d, viewRegistry as d$, isConditionNode as d0, isDocumentNode as d1, isEndNode as d2, isFormNode as d3, isSimpleFormNode as d4, isStartNode as d5, type ConditionOperator as d6, and as d7, eq as d8, inValues as d9, isInvitationExpired as dA, isInvitationValid as dB, type CreateGrantInput as dC, type WorkflowAccessGrant as dD, canAccessNode as dE, isGrantExpired as dF, isGrantRevoked as dG, isGrantValid as dH, isTokenRevoked as dI, type GeneratedDocument as dJ, type WorkflowExecutionContext as dK, createEmptyContext as dL, getContextValue as dM, setContextValue as dN, type FormContextResponse as dO, type FormFieldContext as dP, type FormFieldRow as dQ, type FormNodeInfo as dR, type ReadOnlyReason as dS, type WorkflowAccessMode as dT, type ThemeColors as dU, type ThemeLogo as dV, type ThemeTypography as dW, DEFAULT_THEME as dX, generateCssVariables as dY, mergeWithDefaults as dZ, registry as d_, isConditionGroup as da, isConditionRule as db, neq as dc, or as dd, type CanvasViewport as de, type NodePosition as df, type WorkflowLayout as dg, type WorkflowSlot as dh, type WorkflowStatus as di, isSystemWorkflow as dj, isWorkflowDefinition as dk, isWorkflowPublished as dl, type PendingAction as dm, type WorkflowError as dn, type WorkflowInstance as dp, type WorkflowTransition as dq, canResumeInstance as dr, createStartTransition as ds, isInstanceTerminal as dt, isInstanceWaiting as du, type CreateInvitationInput as dv, type CreateInvitationResult as dw, type InvitationStatus as dx, type WorkflowInvitation as dy, isInvitationAccepted as dz, type Tab as e, runWithContext as e$, type ViewOverlaysRepository as e0, type RelationAttributeInput as e1, type RelationAttributeRow as e2, type RelationAttributesRepository as e3, type DatabaseAdapter as e4, WorkflowJwtService as e5, type JwtVerificationResult as e6, type MagicLinkPayload as e7, type WorkflowAccessPayload as e8, type WorkflowJwtConfig as e9, type EvaluationResult as eA, type EvaluationTrace as eB, evaluateCondition as eC, evaluate as eD, evaluateWithTrace as eE, TenantContextError as eF, FeatureFlagsContextError as eG, getFeatureFlags as eH, getFeatureValue as eI, hasFeatureFlagsContext as eJ, isFeatureEnabled as eK, runWithFeatureFlags as eL, tryGetFeatureValue as eM, withFeatureFlags as eN, type FeatureFlagsContext as eO, addSchemaToContext as eP, getSchemaByNameFromContext as eQ, getSchemaContext as eR, getSchemaFromContext as eS, hasSchemaContext as eT, runWithMergedSchemaContext as eU, runWithSchemaContext as eV, type SchemaContext as eW, getContext as eX, getTenantId as eY, getUserId as eZ, hasContext as e_, type WorkflowJwtPayload as ea, type CacheKeyType as eb, hashOptions as ec, type CacheAdapter as ed, type CacheOptions as ee, cacheKeys as ef, cacheTtl as eg, defaultTtl as eh, NoopCacheAdapter as ei, type FetchResult as ej, type FormattedRecord as ek, type GroupedFetchResult as el, type InsertOptions as em, type QueryBuilderState as en, type RegistryMap as eo, type RegistryObjectNames as ep, type ShortcutOperator as eq, createDefaultState as er, formatRecord as es, formatRecords as et, QueryMultipleResultsError as eu, QueryNoResultError as ev, SHORTCUT_TO_FILTER_OPERATOR as ew, createQueryBuilder as ex, QueryBuilder as ey, type QueryBuilderOptions as ez, type FilterState as f, type AIConversationsRepository as f$, withTenantContext as f0, type TenantContext as f1, createDefaultExecutorRegistry as f2, getDefaultExecutorRegistry as f3, type ExecutorCompleteResult as f4, type ExecutorContext as f5, type ExecutorErrorResult as f6, type ExecutorResult as f7, type ExecutorSuccessResult as f8, type ExecutorWaitResult as f9, getTargetAttributeName as fA, InvalidPathError as fB, MaxDepthExceededError as fC, parsePath as fD, pathHasManyCardinality as fE, validatePath as fF, type PathCardinality as fG, type PathSegment as fH, type PathSegmentType as fI, type SchemaResolver as fJ, resolveMultiplePaths as fK, resolveSingleValue as fL, traversePath as fM, type TraversalOptions as fN, type TraversalResult as fO, type AttributeChange as fP, type HookContext as fQ, type HookDefinition as fR, type HookHandler as fS, type HookType as fT, NoopHookRegistry as fU, type HookRegistry as fV, createMockAdapter as fW, type MockStores as fX, defaultPolicyRegistry as fY, PolicyRegistry as fZ, notesPolicy as f_, type NodeExecutor as fa, complete as fb, error as fc, ExecutorRegistry as fd, success as fe, wait as ff, ConditionExecutor as fg, DocumentExecutor as fh, EndExecutor as fi, FormExecutor as fj, StartExecutor as fk, evaluateFormula as fl, evaluateFormulaAttribute as fm, evaluateFormulaAttributeWithRelations as fn, evaluateFormulaWithRelations as fo, evaluateFormulaWithResult as fp, extractFormulaVariables as fq, extractRelationNames as fr, extractRelationReferences as fs, flattenRelationsForEval as ft, formatFormulaResult as fu, hasRelationReferences as fv, validateFormulaExpression as fw, type FormulaResult as fx, getPathDepth as fy, getRelationPath as fz, type SortRule as g, checkRecordModifyOrThrow as g$, type AIUsageMetricsRepository as g0, type AIUserMemoryRepository as g1, type AttributesRepository as g2, type AuditRepository as g3, type DocumentGenerationTemplateListOptions as g4, type DocumentGenerationTemplatesRepository as g5, type DocumentJobsRepository as g6, type DocumentSlotsRepository as g7, type DocumentsRepository as g8, type DocumentTemplatesRepository as g9, type RelationValidationResult as gA, type RelationValidationError as gB, type RelationOption as gC, type RelationOptionsResponse as gD, type GetRelationOptionsParams as gE, type RelationServiceOptions as gF, type ResolveIdsBatchRequest as gG, type ResolveIdsBatchResponse as gH, RelationService as gI, type MultiRelationValue as gJ, type SingleRelationValue as gK, type HybridRelationValue as gL, RelationPropertiesService as gM, RecordResolverService as gN, type ResolvedRelations as gO, type FormulaResolverServiceOptions as gP, FormulaResolverService as gQ, type RollupResult as gR, type RollupServiceOptions as gS, RollupService as gT, type RollupSchedulerOptions as gU, RollupScheduler as gV, applyDefaultValues as gW, checkPermission as gX, getPolicy as gY, buildPolicyContext as gZ, checkRecordAccess as g_, type FilesRepository as ga, type ObjectRecordsRepository as gb, type ObjectsRepository as gc, type PermissionsRepository as gd, type UserProfilesRepository as ge, type ViewsRepository as gf, type WorkflowAccessGrantsRepository as gg, type WorkflowInstancesRepository as gh, type WorkflowInvitationsRepository as gi, type WorkflowsRepository as gj, BaseService as gk, BaseRepository as gl, type SchemaContextAware as gm, SchemaContextAwareRepository as gn, type CreateCustomObjectInput as go, type AddAttributeInput as gp, type UpdateObjectInput as gq, type ObjectSchemaServiceOptions as gr, ObjectSchemaService as gs, type RecordServiceOptions as gt, RecordService as gu, type RecordQueryServiceOptions as gv, type QueryOptions as gw, type SearchQueryOptions as gx, type QueryResult as gy, RecordQueryService as gz, type DirectTableTab as h, GlobalSearchService as h$, checkRecordDeleteOrThrow as h0, checkSharedObjectWriteAccess as h1, computeLabel as h2, type LabelResolver as h3, enrichWithFormulas as h4, enrichRecordsWithFormulas as h5, createContextForCreate as h6, createContextForUpdate as h7, createContextForDelete as h8, createContextForRestore as h9, type UserValidationResult as hA, type UserValidationError as hB, UserService as hC, type UserProfileServiceOptions as hD, UserProfileService as hE, AuditService as hF, buildAuditChanges as hG, DocumentGenerationTemplateNotFoundError as hH, DocumentGenerationNotConfiguredError as hI, DocumentGenerationService as hJ, type DocumentProcessingConfig as hK, DocumentProcessingService as hL, type RenderDocumentInput as hM, type DocumentRendererOptions as hN, type RenderDocumentResult as hO, DocumentRenderError as hP, StorageDownloadNotSupportedError as hQ, DocumentRendererService as hR, DocumentTemplateService as hS, type RecordDocumentsResult as hT, type CreateRecordDocumentInput as hU, type CreateRecordDocumentResult as hV, type DocumentServiceOptions as hW, DocumentService as hX, type FileServiceOptions as hY, FileService as hZ, GeocodingService as h_, recalculateParentRollups as ha, type RollupCascadeContext as hb, type DocumentProcessingHookOptions as hc, DocumentProcessingHook as hd, GrantNotFoundError as he, GrantExpiredError as hf, GrantRevokedError as hg, TokenRevokedError as hh, type GrantServiceConfig as hi, type CreateGrantResult as hj, WorkflowAccessGrantService as hk, type StartWorkflowInput as hl, type ResumeWorkflowInput as hm, type WorkflowInstanceServiceOptions as hn, WorkflowInstanceService as ho, type InvitationServiceConfig as hp, InvitationNotFoundError as hq, InvitationExpiredError as hr, InvitationAlreadyAcceptedError as hs, InvitationRevokedError as ht, WorkflowInvitationService as hu, WorkflowRelationService as hv, type CreateWorkflowInput as hw, type UpdateWorkflowInput as hx, type WorkflowServiceOptions as hy, WorkflowService as hz, type WorkflowConfig as i, type UpdateDBWorkflowInvitation as i$, type PermissionServiceOptions as i0, PermissionService as i1, type CreateViewInput as i2, type UpdateViewInput as i3, type GetViewsOptions as i4, type GetViewOptions as i5, ViewService as i6, type FileContent as i7, type StorageUploadInput as i8, type StorageUploadResult as i9, type DBAttribute as iA, type CreateDBAttribute as iB, type UpdateDBAttribute as iC, type UpsertDBAttribute as iD, type CreateObjectRecord as iE, type ListOptions as iF, type SearchOptions as iG, type GlobalSearchOptions as iH, type GlobalSearchGroupedOptions as iI, type GlobalSearchResultItem as iJ, type GlobalSearchGroupedResult as iK, type FileListOptions as iL, type DBView as iM, type CreateDBView as iN, type UpdateDBView as iO, type UpsertDBView as iP, type DBViewOverlay as iQ, type CreateDBViewOverlay as iR, type UpdateDBViewOverlay as iS, type DBWorkflow as iT, type CreateDBWorkflow as iU, type UpdateDBWorkflow as iV, type DBWorkflowInstance as iW, type CreateDBWorkflowInstance as iX, type UpdateDBWorkflowInstance as iY, type DBWorkflowInvitation as iZ, type CreateDBWorkflowInvitation as i_, type SignedUrlOptions as ia, type StorageAdapter as ib, type UploadFileInput as ic, type SyncResult as id, type SyncOptions as ie, syncNativeObjects as ig, verifyNativeObjectsSync as ih, getSyncPreview as ii, type FullSyncResult as ij, type FullSyncOptions as ik, syncAll as il, DEFAULT_LABEL_FALLBACK as im, renderLabelExpression as io, isLabelExpression as ip, extractAttributeNames as iq, enrichValuesForDisplay as ir, enrichValuesWithSelectLabels as is, extractRelationIds as it, type RelationLabelResolver as iu, computeLabelWithRelations as iv, type DBObject as iw, type CreateDBObject as ix, type UpdateDBObject as iy, type UpsertDBObject as iz, type SlotMode as j, type DBWorkflowAccessGrant as j0, type CreateDBWorkflowAccessGrant as j1, type UpdateDBWorkflowAccessGrant as j2, type OperationResult as j3, type ViewSyncResult as j4, type ViewSyncLogger as j5, type ViewSyncOptions as j6, seedRegistryViews as j7, syncNativeViews as j8, verifyRegistryViewsSeeded as j9, verifyNativeViewsSync as ja, getViewSeedPreview as jb, getViewSyncPreview as jc, type ConditionGroup as k, type ConditionRule as l, type WorkflowNode as m, type WorkflowDefinition as n, type FlowRow as o, type ListViewConfig as p, type ListViewTab as q, type ViewDefinition as r, type DocumentTemplate as s, type OcrAdapter as t, type OcrInput as u, type OcrOptions as v, type OcrResult as w, type OcrPage as x, type OcrTextBlock as y, type SignatureAdapter as z };
|