@stndrds/schema 0.1.0-alpha.57 → 0.1.0-alpha.59
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-DPRLHGPO.js → chunk-DCTLP3ZD.js} +1144 -962
- package/dist/chunk-NEVERCM3.js +41 -0
- package/dist/{chunk-YVUSATKC.mjs → chunk-O7FGYLYG.mjs} +1017 -835
- package/dist/chunk-SV4BCGQU.mjs +617 -0
- package/dist/chunk-U4AB53AM.js +617 -0
- package/dist/chunk-V2RPPE2Y.mjs +41 -0
- package/dist/index.d.mts +223 -30
- package/dist/index.d.ts +223 -30
- package/dist/index.js +39 -93
- package/dist/index.mjs +112 -166
- package/dist/{runtime-BqJdmg_4.d.mts → runtime-BRkoIwsC.d.ts} +274 -1658
- package/dist/{runtime-BqJdmg_4.d.ts → runtime-Chz-bTNq.d.mts} +274 -1658
- package/dist/runtime.d.mts +3 -1
- package/dist/runtime.d.ts +3 -1
- package/dist/runtime.js +6 -2
- package/dist/runtime.mjs +5 -1
- package/dist/utils.d.mts +154 -0
- package/dist/utils.d.ts +154 -0
- package/dist/utils.js +19 -0
- package/dist/utils.mjs +19 -0
- package/dist/validation/validators.d.mts +4 -0
- package/dist/validation/validators.d.ts +4 -0
- package/dist/validation/validators.js +121 -0
- package/dist/validation/validators.mjs +121 -0
- package/dist/validators-BIAmz0CD.d.mts +1631 -0
- package/dist/validators-BPIB7Miq.d.ts +1631 -0
- package/package.json +12 -2
package/dist/index.js
CHANGED
|
@@ -343,6 +343,7 @@
|
|
|
343
343
|
|
|
344
344
|
|
|
345
345
|
|
|
346
|
+
var _chunkDCTLP3ZDjs = require('./chunk-DCTLP3ZD.js');
|
|
346
347
|
|
|
347
348
|
|
|
348
349
|
|
|
@@ -351,6 +352,7 @@
|
|
|
351
352
|
|
|
352
353
|
|
|
353
354
|
|
|
355
|
+
var _chunkNEVERCM3js = require('./chunk-NEVERCM3.js');
|
|
354
356
|
|
|
355
357
|
|
|
356
358
|
|
|
@@ -390,7 +392,27 @@
|
|
|
390
392
|
|
|
391
393
|
|
|
392
394
|
|
|
393
|
-
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
var _chunkU4AB53AMjs = require('./chunk-U4AB53AM.js');
|
|
394
416
|
|
|
395
417
|
|
|
396
418
|
|
|
@@ -403,43 +425,7 @@ var _chunkDPRLHGPOjs = require('./chunk-DPRLHGPO.js');
|
|
|
403
425
|
var _chunk36UBIXJNjs = require('./chunk-36UBIXJN.js');
|
|
404
426
|
require('./chunk-3RG5ZIWI.js');
|
|
405
427
|
|
|
406
|
-
// src/types/document-generation.ts
|
|
407
|
-
function isPdfTemplateSource(source) {
|
|
408
|
-
return source.type === "pdf";
|
|
409
|
-
}
|
|
410
|
-
function isDocxTemplateSource(source) {
|
|
411
|
-
return source.type === "docx";
|
|
412
|
-
}
|
|
413
|
-
|
|
414
428
|
// src/types/filters.ts
|
|
415
|
-
function isAdvancedFilterState(state) {
|
|
416
|
-
return "groups" in state;
|
|
417
|
-
}
|
|
418
|
-
function toAdvancedFilterState(state) {
|
|
419
|
-
if (state.rules.length === 0) {
|
|
420
|
-
return {
|
|
421
|
-
combinator: state.combinator,
|
|
422
|
-
groups: []
|
|
423
|
-
};
|
|
424
|
-
}
|
|
425
|
-
return {
|
|
426
|
-
combinator: "and",
|
|
427
|
-
groups: [
|
|
428
|
-
{
|
|
429
|
-
id: crypto.randomUUID(),
|
|
430
|
-
combinator: state.combinator,
|
|
431
|
-
rules: state.rules
|
|
432
|
-
}
|
|
433
|
-
]
|
|
434
|
-
};
|
|
435
|
-
}
|
|
436
|
-
function toSimpleFilterState(state) {
|
|
437
|
-
const allRules = state.groups.flatMap((group2) => group2.rules);
|
|
438
|
-
return {
|
|
439
|
-
combinator: state.combinator,
|
|
440
|
-
rules: allRules
|
|
441
|
-
};
|
|
442
|
-
}
|
|
443
429
|
var OPERATORS_BY_TYPE = {
|
|
444
430
|
text: [
|
|
445
431
|
"is",
|
|
@@ -1088,13 +1074,13 @@ function createFlagService(options) {
|
|
|
1088
1074
|
}
|
|
1089
1075
|
|
|
1090
1076
|
// src/native/notes.ts
|
|
1091
|
-
var NOTES =
|
|
1092
|
-
|
|
1077
|
+
var NOTES = _chunkDCTLP3ZDjs.object.call(void 0, { name: "notes", label: "Note" }).pluralLabel("Notes").icon("file-text").description("Notes that can be linked to any record or used globally").system().labelExpression("{{ title }}").attribute(_chunkDCTLP3ZDjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkDCTLP3ZDjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
|
|
1078
|
+
_chunkDCTLP3ZDjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
|
|
1093
1079
|
{ id: "private", label: "Private", value: "private", icon: "lock" },
|
|
1094
1080
|
{ id: "shared", label: "Shared", value: "shared", icon: "users" }
|
|
1095
1081
|
]).defaultValue("private").required()
|
|
1096
|
-
).attribute(
|
|
1097
|
-
|
|
1082
|
+
).attribute(_chunkDCTLP3ZDjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
|
|
1083
|
+
_chunkDCTLP3ZDjs.registry.register(NOTES);
|
|
1098
1084
|
|
|
1099
1085
|
// src/views/registry.ts
|
|
1100
1086
|
var ViewRegistry = class {
|
|
@@ -1390,57 +1376,6 @@ function generateFallbackView(object2, type, options = {}) {
|
|
|
1390
1376
|
throw new Error(`Fallback generation not supported for view type: ${type}`);
|
|
1391
1377
|
}
|
|
1392
1378
|
}
|
|
1393
|
-
function generateModalDetailView(object2, attributeNames) {
|
|
1394
|
-
const excludeAttributes = attributeNames ? object2.attributes.filter((attr) => !attributeNames.includes(attr.name)).map((attr) => attr.name) : [];
|
|
1395
|
-
const visibleAttrs = getVisibleAttributes(object2.attributes, excludeAttributes);
|
|
1396
|
-
const sortedAttrs = sortAttributes(visibleAttrs);
|
|
1397
|
-
const formTab = {
|
|
1398
|
-
id: "form",
|
|
1399
|
-
name: "form",
|
|
1400
|
-
label: "Details",
|
|
1401
|
-
type: "form",
|
|
1402
|
-
groups: [
|
|
1403
|
-
{
|
|
1404
|
-
id: "general",
|
|
1405
|
-
label: "General",
|
|
1406
|
-
fields: sortedAttrs.map(attributeToField),
|
|
1407
|
-
order: 0
|
|
1408
|
-
}
|
|
1409
|
-
],
|
|
1410
|
-
order: 0
|
|
1411
|
-
};
|
|
1412
|
-
const config = {
|
|
1413
|
-
layout: "modal",
|
|
1414
|
-
tabs: [formTab]
|
|
1415
|
-
};
|
|
1416
|
-
return {
|
|
1417
|
-
name: "default-modal",
|
|
1418
|
-
label: "Default Modal View",
|
|
1419
|
-
object: object2.name,
|
|
1420
|
-
type: "detail",
|
|
1421
|
-
config,
|
|
1422
|
-
default: true
|
|
1423
|
-
};
|
|
1424
|
-
}
|
|
1425
|
-
function generateKanbanListView(object2, groupByAttribute, options = {}) {
|
|
1426
|
-
const { excludeAttributes = [], maxListColumns = 5 } = options;
|
|
1427
|
-
const visibleAttrs = getVisibleAttributes(object2.attributes, excludeAttributes);
|
|
1428
|
-
const sortedAttrs = sortAttributes(visibleAttrs);
|
|
1429
|
-
const columns = sortedAttrs.filter((attr) => attr.name !== groupByAttribute).slice(0, maxListColumns).map((attr) => attr.name);
|
|
1430
|
-
const config = {
|
|
1431
|
-
layout: "kanban",
|
|
1432
|
-
columns,
|
|
1433
|
-
groupByAttribute
|
|
1434
|
-
};
|
|
1435
|
-
return {
|
|
1436
|
-
name: "kanban",
|
|
1437
|
-
label: "Kanban View",
|
|
1438
|
-
object: object2.name,
|
|
1439
|
-
type: "list",
|
|
1440
|
-
config,
|
|
1441
|
-
default: false
|
|
1442
|
-
};
|
|
1443
|
-
}
|
|
1444
1379
|
|
|
1445
1380
|
// src/views/view-reset.ts
|
|
1446
1381
|
function getPreservedDetailTabs(view2, options) {
|
|
@@ -2018,4 +1953,15 @@ function isViewCustomized(view2, object2) {
|
|
|
2018
1953
|
|
|
2019
1954
|
|
|
2020
1955
|
|
|
2021
|
-
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkDPRLHGPOjs.ActivityTabConfig; exports.AttributeInUseError = _chunkDPRLHGPOjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkDPRLHGPOjs.AttributeNotFoundError; exports.AuditService = _chunkDPRLHGPOjs.AuditService; exports.AuthMethodSchema = _chunkDPRLHGPOjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkDPRLHGPOjs.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunkDPRLHGPOjs.BaseRepository; exports.BaseService = _chunkDPRLHGPOjs.BaseService; exports.ConcurrentModificationError = _chunkDPRLHGPOjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkDPRLHGPOjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkDPRLHGPOjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkDPRLHGPOjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkDPRLHGPOjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkDPRLHGPOjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkDPRLHGPOjs.CreateShareInputSchema; exports.CustomTabConfig = _chunkDPRLHGPOjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkDPRLHGPOjs.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 = _chunkDPRLHGPOjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkDPRLHGPOjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkDPRLHGPOjs.DRIVING_LICENSE; exports.DetailViewBuilder = _chunkDPRLHGPOjs.DetailViewBuilder; exports.DirectTableTabConfig = _chunkDPRLHGPOjs.DirectTableTabConfig; exports.DocumentExecutor = _chunkDPRLHGPOjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkDPRLHGPOjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkDPRLHGPOjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkDPRLHGPOjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkDPRLHGPOjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkDPRLHGPOjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkDPRLHGPOjs.DocumentProcessingService; exports.DocumentRenderError = _chunkDPRLHGPOjs.DocumentRenderError; exports.DocumentRendererService = _chunkDPRLHGPOjs.DocumentRendererService; exports.DocumentService = _chunkDPRLHGPOjs.DocumentService; exports.DocumentTemplateService = _chunkDPRLHGPOjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkDPRLHGPOjs.DocumentsTabConfig; exports.DuplicateError = _chunkDPRLHGPOjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkDPRLHGPOjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkDPRLHGPOjs.EndExecutor; exports.EndNodeSchema = _chunkDPRLHGPOjs.EndNodeSchema; exports.ExecutorRegistry = _chunkDPRLHGPOjs.ExecutorRegistry; exports.FRENCH_ID_CARD = _chunkDPRLHGPOjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkDPRLHGPOjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkDPRLHGPOjs.FileNotFoundError; exports.FileService = _chunkDPRLHGPOjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkDPRLHGPOjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkDPRLHGPOjs.FlowRowSchema; exports.FlowsTabConfig = _chunkDPRLHGPOjs.FlowsTabConfig; exports.ForbiddenError = _chunkDPRLHGPOjs.ForbiddenError; exports.FormExecutor = _chunkDPRLHGPOjs.FormExecutor; exports.FormFieldRefSchema = _chunkDPRLHGPOjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkDPRLHGPOjs.FormNodeSchema; exports.FormulaResolverService = _chunkDPRLHGPOjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkDPRLHGPOjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkDPRLHGPOjs.GeocodingService; exports.GlobalSearchService = _chunkDPRLHGPOjs.GlobalSearchService; exports.GrantExpiredError = _chunkDPRLHGPOjs.GrantExpiredError; exports.GrantNotFoundError = _chunkDPRLHGPOjs.GrantNotFoundError; exports.GrantRevokedError = _chunkDPRLHGPOjs.GrantRevokedError; exports.GroupBuilder = _chunkDPRLHGPOjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkDPRLHGPOjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkDPRLHGPOjs.InvalidPathError; exports.InverseTableTabConfig = _chunkDPRLHGPOjs.InverseTableTabConfig; exports.InvitationAlreadyAcceptedError = _chunkDPRLHGPOjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkDPRLHGPOjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkDPRLHGPOjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkDPRLHGPOjs.InvitationRevokedError; exports.ListViewBuilder = _chunkDPRLHGPOjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkDPRLHGPOjs.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunkDPRLHGPOjs.MaxDepthExceededError; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkDPRLHGPOjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkDPRLHGPOjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkDPRLHGPOjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkDPRLHGPOjs.NoopHookRegistry; exports.NotFoundError = _chunkDPRLHGPOjs.NotFoundError; exports.NotSystemObjectError = _chunkDPRLHGPOjs.NotSystemObjectError; exports.NotesTabConfig = _chunkDPRLHGPOjs.NotesTabConfig; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkDPRLHGPOjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkDPRLHGPOjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkDPRLHGPOjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkDPRLHGPOjs.ObjectSchemaService; exports.PASSPORT = _chunkDPRLHGPOjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkDPRLHGPOjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkDPRLHGPOjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkDPRLHGPOjs.PermissionService; exports.PolicyRegistry = _chunkDPRLHGPOjs.PolicyRegistry; exports.PolicyViolationError = _chunkDPRLHGPOjs.PolicyViolationError; exports.ProtectedResourceError = _chunkDPRLHGPOjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkDPRLHGPOjs.ProtectedRoleError; exports.QueryBuilder = _chunkDPRLHGPOjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkDPRLHGPOjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkDPRLHGPOjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkDPRLHGPOjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkDPRLHGPOjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkDPRLHGPOjs.RecordNotFoundError; exports.RecordQueryService = _chunkDPRLHGPOjs.RecordQueryService; exports.RecordReferencedError = _chunkDPRLHGPOjs.RecordReferencedError; exports.RecordResolverService = _chunkDPRLHGPOjs.RecordResolverService; exports.RecordService = _chunkDPRLHGPOjs.RecordService; exports.RelationService = _chunkDPRLHGPOjs.RelationService; exports.RoleNotFoundError = _chunkDPRLHGPOjs.RoleNotFoundError; exports.RollupScheduler = _chunkDPRLHGPOjs.RollupScheduler; exports.RollupService = _chunkDPRLHGPOjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkDPRLHGPOjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkDPRLHGPOjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkDPRLHGPOjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkDPRLHGPOjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkDPRLHGPOjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkDPRLHGPOjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkDPRLHGPOjs.SchemaContextAwareRepository; exports.SchemaError = _chunkDPRLHGPOjs.SchemaError; exports.SchemaErrorCode = _chunkDPRLHGPOjs.SchemaErrorCode; exports.ShareStatusSchema = _chunkDPRLHGPOjs.ShareStatusSchema; exports.SlotModeSchema = _chunkDPRLHGPOjs.SlotModeSchema; exports.StartExecutor = _chunkDPRLHGPOjs.StartExecutor; exports.StartNodeSchema = _chunkDPRLHGPOjs.StartNodeSchema; exports.StorageDownloadNotSupportedError = _chunkDPRLHGPOjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkDPRLHGPOjs.SyncError; exports.TabBuilder = _chunkDPRLHGPOjs.TabBuilder; exports.TenantContextError = _chunkDPRLHGPOjs.TenantContextError; exports.ThemeColorsSchema = _chunkDPRLHGPOjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkDPRLHGPOjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkDPRLHGPOjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunkDPRLHGPOjs.UserProfileNotFoundError; exports.UserProfileService = _chunkDPRLHGPOjs.UserProfileService; exports.UserService = _chunkDPRLHGPOjs.UserService; exports.ValidationError = _chunkDPRLHGPOjs.ValidationError; exports.ViewBuilder = _chunkDPRLHGPOjs.ViewBuilder; exports.ViewService = _chunkDPRLHGPOjs.ViewService; exports.ViewportSchema = _chunkDPRLHGPOjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkDPRLHGPOjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkDPRLHGPOjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkDPRLHGPOjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkDPRLHGPOjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkDPRLHGPOjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkDPRLHGPOjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkDPRLHGPOjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkDPRLHGPOjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkDPRLHGPOjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkDPRLHGPOjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkDPRLHGPOjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkDPRLHGPOjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkDPRLHGPOjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkDPRLHGPOjs.WorkflowRelationService; exports.WorkflowService = _chunkDPRLHGPOjs.WorkflowService; exports.WorkflowShareSchema = _chunkDPRLHGPOjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkDPRLHGPOjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkDPRLHGPOjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkDPRLHGPOjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkDPRLHGPOjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkDPRLHGPOjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunkDPRLHGPOjs.addSchemaToContext; exports.and = _chunkDPRLHGPOjs.and; exports.applyDefaultValues = _chunkDPRLHGPOjs.applyDefaultValues; exports.asTenantId = _chunkDPRLHGPOjs.asTenantId; exports.asUserId = _chunkDPRLHGPOjs.asUserId; exports.attributeConfigSchemas = _chunkDPRLHGPOjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkDPRLHGPOjs.buildAuditChanges; exports.buildPolicyContext = _chunkDPRLHGPOjs.buildPolicyContext; exports.cacheKeys = _chunkDPRLHGPOjs.cacheKeys; exports.cacheTtl = _chunkDPRLHGPOjs.cacheTtl; exports.canAccessNode = _chunkDPRLHGPOjs.canAccessNode; exports.canResumeInstance = _chunkDPRLHGPOjs.canResumeInstance; exports.checkPermission = _chunkDPRLHGPOjs.checkPermission; exports.checkRecordAccess = _chunkDPRLHGPOjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkDPRLHGPOjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkDPRLHGPOjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkDPRLHGPOjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkDPRLHGPOjs.checkbox; exports.checkboxConfigSchema = _chunkDPRLHGPOjs.checkboxConfigSchema; exports.complete = _chunkDPRLHGPOjs.complete; exports.computeLabel = _chunkDPRLHGPOjs.computeLabel; exports.computeLabelWithRelations = _chunkDPRLHGPOjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkDPRLHGPOjs.computeRecordStatus; exports.createAttributeValidator = _chunkDPRLHGPOjs.createAttributeValidator; exports.createCheckboxValidator = _chunkDPRLHGPOjs.createCheckboxValidator; exports.createContextForCreate = _chunkDPRLHGPOjs.createContextForCreate; exports.createContextForDelete = _chunkDPRLHGPOjs.createContextForDelete; exports.createContextForRestore = _chunkDPRLHGPOjs.createContextForRestore; exports.createContextForUpdate = _chunkDPRLHGPOjs.createContextForUpdate; exports.createCurrencyValidator = _chunkDPRLHGPOjs.createCurrencyValidator; exports.createDateValidator = _chunkDPRLHGPOjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkDPRLHGPOjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkDPRLHGPOjs.createDefaultState; exports.createDraftValidator = _chunkDPRLHGPOjs.createDraftValidator; exports.createEmptyContext = _chunkDPRLHGPOjs.createEmptyContext; exports.createFileValidator = _chunkDPRLHGPOjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkDPRLHGPOjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkDPRLHGPOjs.createFormulaValidator; exports.createLocationValidator = _chunkDPRLHGPOjs.createLocationValidator; exports.createMockAdapter = _chunkDPRLHGPOjs.createMockAdapter; exports.createMultiRelationValidator = _chunkDPRLHGPOjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkDPRLHGPOjs.createMultiselectValidator; exports.createNumberValidator = _chunkDPRLHGPOjs.createNumberValidator; exports.createObjectValidator = _chunkDPRLHGPOjs.createObjectValidator; exports.createPhoneValidator = _chunkDPRLHGPOjs.createPhoneValidator; exports.createQueryBuilder = _chunkDPRLHGPOjs.createQueryBuilder; exports.createRatingValidator = _chunkDPRLHGPOjs.createRatingValidator; exports.createRelationValidator = _chunkDPRLHGPOjs.createRelationValidator; exports.createRichtextValidator = _chunkDPRLHGPOjs.createRichtextValidator; exports.createRollupValidator = _chunkDPRLHGPOjs.createRollupValidator; exports.createSelectValidator = _chunkDPRLHGPOjs.createSelectValidator; exports.createSingleRelationValidator = _chunkDPRLHGPOjs.createSingleRelationValidator; exports.createStartTransition = _chunkDPRLHGPOjs.createStartTransition; exports.createStatusValidator = _chunkDPRLHGPOjs.createStatusValidator; exports.createTextAreaValidator = _chunkDPRLHGPOjs.createTextAreaValidator; exports.createTextValidator = _chunkDPRLHGPOjs.createTextValidator; exports.createUserValidator = _chunkDPRLHGPOjs.createUserValidator; exports.currency = _chunkDPRLHGPOjs.currency; exports.currencyConfigSchema = _chunkDPRLHGPOjs.currencyConfigSchema; exports.date = _chunkDPRLHGPOjs.date; exports.dateConfigSchema = _chunkDPRLHGPOjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkDPRLHGPOjs.defaultPolicyRegistry; exports.defaultTtl = _chunkDPRLHGPOjs.defaultTtl; exports.detailView = _chunkDPRLHGPOjs.detailView; exports.document = _chunkDPRLHGPOjs.document; exports.documentConfigSchema = _chunkDPRLHGPOjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkDPRLHGPOjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkDPRLHGPOjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkDPRLHGPOjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkDPRLHGPOjs.enrichWithFormulas; exports.eq = _chunkDPRLHGPOjs.eq; exports.error = _chunkDPRLHGPOjs.error; exports.evaluate = _chunkDPRLHGPOjs.evaluate; exports.evaluateCondition = _chunkDPRLHGPOjs.evaluateCondition; exports.evaluateFormula = _chunkDPRLHGPOjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkDPRLHGPOjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkDPRLHGPOjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkDPRLHGPOjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkDPRLHGPOjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkDPRLHGPOjs.evaluateWithTrace; exports.extractAttributeNames = _chunkDPRLHGPOjs.extractAttributeNames; exports.extractFormulaVariables = _chunkDPRLHGPOjs.extractFormulaVariables; exports.extractRelationIds = _chunkDPRLHGPOjs.extractRelationIds; exports.extractRelationNames = _chunkDPRLHGPOjs.extractRelationNames; exports.extractRelationReferences = _chunkDPRLHGPOjs.extractRelationReferences; exports.file = _chunkDPRLHGPOjs.file; exports.fileConfigSchema = _chunkDPRLHGPOjs.fileConfigSchema; exports.filterPropertiesByCategory = _chunkDPRLHGPOjs.filterPropertiesByCategory; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkDPRLHGPOjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkDPRLHGPOjs.formatAttributeValue; exports.formatFormulaResult = _chunkDPRLHGPOjs.formatFormulaResult; exports.formatRecord = _chunkDPRLHGPOjs.formatRecord; exports.formatRecords = _chunkDPRLHGPOjs.formatRecords; exports.formula = _chunkDPRLHGPOjs.formula; exports.formulaConfigSchema = _chunkDPRLHGPOjs.formulaConfigSchema; exports.generateCssVariables = _chunkDPRLHGPOjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkDPRLHGPOjs.generateId; exports.generateKanbanListView = generateKanbanListView; exports.generateModalDetailView = generateModalDetailView; exports.generatePrefixedId = _chunkDPRLHGPOjs.generatePrefixedId; exports.generateTemplateName = _chunkDPRLHGPOjs.generateTemplateName; exports.getAttributeConfigSchema = _chunkDPRLHGPOjs.getAttributeConfigSchema; exports.getContext = _chunkDPRLHGPOjs.getContext; exports.getContextValue = _chunkDPRLHGPOjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkDPRLHGPOjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkDPRLHGPOjs.getFeatureFlags; exports.getFeatureValue = _chunkDPRLHGPOjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunkDPRLHGPOjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkDPRLHGPOjs.getNodeOutputs; exports.getPathDepth = _chunkDPRLHGPOjs.getPathDepth; exports.getPolicy = _chunkDPRLHGPOjs.getPolicy; exports.getPropertyProtectionLevel = _chunkDPRLHGPOjs.getPropertyProtectionLevel; exports.getRelationPath = _chunkDPRLHGPOjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkDPRLHGPOjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkDPRLHGPOjs.getSchemaContext; exports.getSchemaFromContext = _chunkDPRLHGPOjs.getSchemaFromContext; exports.getSyncPreview = _chunkDPRLHGPOjs.getSyncPreview; exports.getSystemAttributeList = _chunkDPRLHGPOjs.getSystemAttributeList; exports.getSystemTemplate = _chunkDPRLHGPOjs.getSystemTemplate; exports.getTargetAttributeName = _chunkDPRLHGPOjs.getTargetAttributeName; exports.getTenantId = _chunkDPRLHGPOjs.getTenantId; exports.getUserId = _chunkDPRLHGPOjs.getUserId; exports.getViewSeedPreview = _chunkDPRLHGPOjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkDPRLHGPOjs.getViewSyncPreview; exports.group = _chunkDPRLHGPOjs.group; exports.hasContext = _chunkDPRLHGPOjs.hasContext; exports.hasFeatureFlagsContext = _chunkDPRLHGPOjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkDPRLHGPOjs.hasRelationReferences; exports.hasSchemaContext = _chunkDPRLHGPOjs.hasSchemaContext; exports.hashOptions = _chunkDPRLHGPOjs.hashOptions; exports.inValues = _chunkDPRLHGPOjs.inValues; exports.isActivityTab = isActivityTab; exports.isAdvancedFilterState = isAdvancedFilterState; exports.isAdvancedFormNode = _chunkDPRLHGPOjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunkDPRLHGPOjs.isBehaviorProperty; exports.isCalendarView = isCalendarView; exports.isConcurrentModificationError = _chunkDPRLHGPOjs.isConcurrentModificationError; exports.isConditionGroup = _chunkDPRLHGPOjs.isConditionGroup; exports.isConditionNode = _chunkDPRLHGPOjs.isConditionNode; exports.isConditionRule = _chunkDPRLHGPOjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDirectTableTab = isDirectTableTab; exports.isDocumentNode = _chunkDPRLHGPOjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isDocxTemplateSource = isDocxTemplateSource; exports.isEmpty = _chunkDPRLHGPOjs.isEmpty; exports.isEndNode = _chunkDPRLHGPOjs.isEndNode; exports.isFeatureEnabled = _chunkDPRLHGPOjs.isFeatureEnabled; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkDPRLHGPOjs.isForbiddenError; exports.isFormNode = _chunkDPRLHGPOjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkDPRLHGPOjs.isGrantExpired; exports.isGrantRevoked = _chunkDPRLHGPOjs.isGrantRevoked; exports.isGrantValid = _chunkDPRLHGPOjs.isGrantValid; exports.isIdentityProperty = _chunkDPRLHGPOjs.isIdentityProperty; exports.isInstanceEvent = _chunkDPRLHGPOjs.isInstanceEvent; exports.isInstanceTerminal = _chunkDPRLHGPOjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkDPRLHGPOjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isInvitationAccepted = _chunkDPRLHGPOjs.isInvitationAccepted; exports.isInvitationExpired = _chunkDPRLHGPOjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkDPRLHGPOjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkDPRLHGPOjs.isInvitationValid; exports.isLabelExpression = _chunkDPRLHGPOjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkDPRLHGPOjs.isNodeEvent; exports.isNotEmpty = _chunkDPRLHGPOjs.isNotEmpty; exports.isNotFoundError = _chunkDPRLHGPOjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isPdfTemplateSource = isPdfTemplateSource; exports.isPresentationProperty = _chunkDPRLHGPOjs.isPresentationProperty; exports.isProtectedResourceError = _chunkDPRLHGPOjs.isProtectedResourceError; exports.isRecordComplete = _chunkDPRLHGPOjs.isRecordComplete; exports.isSchemaError = _chunkDPRLHGPOjs.isSchemaError; exports.isSimpleFormNode = _chunkDPRLHGPOjs.isSimpleFormNode; exports.isStartNode = _chunkDPRLHGPOjs.isStartNode; exports.isSystemAttribute = _chunkDPRLHGPOjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkDPRLHGPOjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkDPRLHGPOjs.isSystemTemplate; exports.isSystemWorkflow = _chunkDPRLHGPOjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkDPRLHGPOjs.isTokenRevoked; exports.isUniversalRelation = _chunkDPRLHGPOjs.isUniversalRelation; exports.isValidationError = _chunkDPRLHGPOjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkDPRLHGPOjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkDPRLHGPOjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkDPRLHGPOjs.listView; exports.location = _chunkDPRLHGPOjs.location; exports.locationConfigSchema = _chunkDPRLHGPOjs.locationConfigSchema; exports.mergeFormToSlot = _chunkDPRLHGPOjs.mergeFormToSlot; exports.mergeWithDefaults = _chunkDPRLHGPOjs.mergeWithDefaults; exports.multiselect = _chunkDPRLHGPOjs.multiselect; exports.multiselectConfigSchema = _chunkDPRLHGPOjs.multiselectConfigSchema; exports.neq = _chunkDPRLHGPOjs.neq; exports.notesPolicy = _chunkDPRLHGPOjs.notesPolicy; exports.number = _chunkDPRLHGPOjs.number; exports.numberConfigSchema = _chunkDPRLHGPOjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkDPRLHGPOjs.object; exports.or = _chunkDPRLHGPOjs.or; exports.parseAttributeConfig = _chunkDPRLHGPOjs.parseAttributeConfig; exports.parsePath = _chunkDPRLHGPOjs.parsePath; exports.pathHasManyCardinality = _chunkDPRLHGPOjs.pathHasManyCardinality; exports.phone = _chunkDPRLHGPOjs.phone; exports.phoneConfigSchema = _chunkDPRLHGPOjs.phoneConfigSchema; exports.rating = _chunkDPRLHGPOjs.rating; exports.ratingConfigSchema = _chunkDPRLHGPOjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkDPRLHGPOjs.recalculateParentRollups; exports.registry = _chunkDPRLHGPOjs.registry; exports.relation = _chunkDPRLHGPOjs.relation; exports.relationConfigSchema = _chunkDPRLHGPOjs.relationConfigSchema; exports.renderLabelExpression = _chunkDPRLHGPOjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkDPRLHGPOjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkDPRLHGPOjs.resolveSingleValue; exports.richtext = _chunkDPRLHGPOjs.richtext; exports.richtextConfigSchema = _chunkDPRLHGPOjs.richtextConfigSchema; exports.rollup = _chunkDPRLHGPOjs.rollup; exports.rollupConfigSchema = _chunkDPRLHGPOjs.rollupConfigSchema; exports.runWithContext = _chunkDPRLHGPOjs.runWithContext; exports.runWithFeatureFlags = _chunkDPRLHGPOjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkDPRLHGPOjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkDPRLHGPOjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkDPRLHGPOjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkDPRLHGPOjs.seedRegistryViews; exports.select = _chunkDPRLHGPOjs.select; exports.selectConfigSchema = _chunkDPRLHGPOjs.selectConfigSchema; exports.setContextValue = _chunkDPRLHGPOjs.setContextValue; exports.slugify = _chunkDPRLHGPOjs.slugify; exports.status = _chunkDPRLHGPOjs.status; exports.statusConfigSchema = _chunkDPRLHGPOjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkDPRLHGPOjs.success; exports.syncAll = _chunkDPRLHGPOjs.syncAll; exports.syncNativeObjects = _chunkDPRLHGPOjs.syncNativeObjects; exports.syncNativeViews = _chunkDPRLHGPOjs.syncNativeViews; exports.text = _chunkDPRLHGPOjs.text; exports.textConfigSchema = _chunkDPRLHGPOjs.textConfigSchema; exports.textarea = _chunkDPRLHGPOjs.textarea; exports.textareaConfigSchema = _chunkDPRLHGPOjs.textareaConfigSchema; exports.toAdvancedFilterState = toAdvancedFilterState; exports.toSimpleFilterState = toSimpleFilterState; exports.traversePath = _chunkDPRLHGPOjs.traversePath; exports.tryGetFeatureValue = _chunkDPRLHGPOjs.tryGetFeatureValue; exports.user = _chunkDPRLHGPOjs.user; exports.userConfigSchema = _chunkDPRLHGPOjs.userConfigSchema; exports.validateAttribute = _chunkDPRLHGPOjs.validateAttribute; exports.validateAttributeConfig = _chunkDPRLHGPOjs.validateAttributeConfig; exports.validateDraft = _chunkDPRLHGPOjs.validateDraft; exports.validateDraftOrThrow = _chunkDPRLHGPOjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkDPRLHGPOjs.validateFormulaExpression; exports.validateObject = _chunkDPRLHGPOjs.validateObject; exports.validateObjectOrThrow = _chunkDPRLHGPOjs.validateObjectOrThrow; exports.validatePath = _chunkDPRLHGPOjs.validatePath; exports.verifyNativeObjectsSync = _chunkDPRLHGPOjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkDPRLHGPOjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkDPRLHGPOjs.verifyRegistryViewsSeeded; exports.view = _chunkDPRLHGPOjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkDPRLHGPOjs.wait; exports.withFeatureFlags = _chunkDPRLHGPOjs.withFeatureFlags; exports.withTenantContext = _chunkDPRLHGPOjs.withTenantContext; exports.workflow = _chunkDPRLHGPOjs.workflow;
|
|
1956
|
+
|
|
1957
|
+
|
|
1958
|
+
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
|
|
1964
|
+
|
|
1965
|
+
|
|
1966
|
+
|
|
1967
|
+
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkDCTLP3ZDjs.ActivityTabConfig; exports.AttributeInUseError = _chunkDCTLP3ZDjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkDCTLP3ZDjs.AttributeNotFoundError; exports.AuditService = _chunkDCTLP3ZDjs.AuditService; exports.AuthMethodSchema = _chunkDCTLP3ZDjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkDCTLP3ZDjs.BEHAVIOR_PROPERTIES; exports.BasePropertyBuilder = _chunkDCTLP3ZDjs.BasePropertyBuilder; exports.BaseRepository = _chunkDCTLP3ZDjs.BaseRepository; exports.BaseService = _chunkDCTLP3ZDjs.BaseService; exports.CheckboxPropertyBuilder = _chunkDCTLP3ZDjs.CheckboxPropertyBuilder; exports.ConcurrentModificationError = _chunkDCTLP3ZDjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkDCTLP3ZDjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkDCTLP3ZDjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkDCTLP3ZDjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkDCTLP3ZDjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkDCTLP3ZDjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkDCTLP3ZDjs.CreateShareInputSchema; exports.CurrencyPropertyBuilder = _chunkDCTLP3ZDjs.CurrencyPropertyBuilder; exports.CustomTabConfig = _chunkDCTLP3ZDjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkDCTLP3ZDjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk36UBIXJNjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunk36UBIXJNjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkDCTLP3ZDjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkU4AB53AMjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkDCTLP3ZDjs.DRIVING_LICENSE; exports.DatePropertyBuilder = _chunkDCTLP3ZDjs.DatePropertyBuilder; exports.DetailViewBuilder = _chunkDCTLP3ZDjs.DetailViewBuilder; exports.DirectTableTabConfig = _chunkDCTLP3ZDjs.DirectTableTabConfig; exports.DocumentExecutor = _chunkDCTLP3ZDjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkDCTLP3ZDjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkDCTLP3ZDjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkDCTLP3ZDjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkDCTLP3ZDjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkDCTLP3ZDjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkDCTLP3ZDjs.DocumentProcessingService; exports.DocumentRenderError = _chunkDCTLP3ZDjs.DocumentRenderError; exports.DocumentRendererService = _chunkDCTLP3ZDjs.DocumentRendererService; exports.DocumentService = _chunkDCTLP3ZDjs.DocumentService; exports.DocumentTemplateService = _chunkDCTLP3ZDjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkDCTLP3ZDjs.DocumentsTabConfig; exports.DuplicateError = _chunkDCTLP3ZDjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkDCTLP3ZDjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkDCTLP3ZDjs.EndExecutor; exports.EndNodeSchema = _chunkDCTLP3ZDjs.EndNodeSchema; exports.ExecutorRegistry = _chunkDCTLP3ZDjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkDCTLP3ZDjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkDCTLP3ZDjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkDCTLP3ZDjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkDCTLP3ZDjs.FileNotFoundError; exports.FileService = _chunkDCTLP3ZDjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkDCTLP3ZDjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkDCTLP3ZDjs.FlowRowSchema; exports.FlowsTabConfig = _chunkDCTLP3ZDjs.FlowsTabConfig; exports.ForbiddenError = _chunkDCTLP3ZDjs.ForbiddenError; exports.FormExecutor = _chunkDCTLP3ZDjs.FormExecutor; exports.FormFieldRefSchema = _chunkDCTLP3ZDjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkDCTLP3ZDjs.FormNodeSchema; exports.FormulaResolverService = _chunkDCTLP3ZDjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkDCTLP3ZDjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkDCTLP3ZDjs.GeocodingService; exports.GlobalSearchService = _chunkDCTLP3ZDjs.GlobalSearchService; exports.GrantExpiredError = _chunkDCTLP3ZDjs.GrantExpiredError; exports.GrantNotFoundError = _chunkDCTLP3ZDjs.GrantNotFoundError; exports.GrantRevokedError = _chunkDCTLP3ZDjs.GrantRevokedError; exports.GroupBuilder = _chunkDCTLP3ZDjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkDCTLP3ZDjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkDCTLP3ZDjs.InvalidPathError; exports.InverseTableTabConfig = _chunkDCTLP3ZDjs.InverseTableTabConfig; exports.InvitationAlreadyAcceptedError = _chunkDCTLP3ZDjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkDCTLP3ZDjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkDCTLP3ZDjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkDCTLP3ZDjs.InvitationRevokedError; exports.ListViewBuilder = _chunkDCTLP3ZDjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkDCTLP3ZDjs.ListViewTabConfigBuilder; exports.LocationPropertyBuilder = _chunkDCTLP3ZDjs.LocationPropertyBuilder; exports.MaxDepthExceededError = _chunkDCTLP3ZDjs.MaxDepthExceededError; exports.MultiselectPropertyBuilder = _chunkDCTLP3ZDjs.MultiselectPropertyBuilder; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkDCTLP3ZDjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkDCTLP3ZDjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkDCTLP3ZDjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkDCTLP3ZDjs.NoopHookRegistry; exports.NotFoundError = _chunkDCTLP3ZDjs.NotFoundError; exports.NotSystemObjectError = _chunkDCTLP3ZDjs.NotSystemObjectError; exports.NotesTabConfig = _chunkDCTLP3ZDjs.NotesTabConfig; exports.NumberPropertyBuilder = _chunkDCTLP3ZDjs.NumberPropertyBuilder; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkDCTLP3ZDjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkDCTLP3ZDjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkDCTLP3ZDjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkDCTLP3ZDjs.ObjectSchemaService; exports.PASSPORT = _chunkDCTLP3ZDjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkDCTLP3ZDjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkDCTLP3ZDjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkDCTLP3ZDjs.PermissionService; exports.PhonePropertyBuilder = _chunkDCTLP3ZDjs.PhonePropertyBuilder; exports.PolicyRegistry = _chunkDCTLP3ZDjs.PolicyRegistry; exports.PolicyViolationError = _chunkDCTLP3ZDjs.PolicyViolationError; exports.PropertySchemaBuilder = _chunkDCTLP3ZDjs.PropertySchemaBuilder; exports.PropertyTypeBuilder = _chunkDCTLP3ZDjs.PropertyTypeBuilder; exports.ProtectedResourceError = _chunkDCTLP3ZDjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkDCTLP3ZDjs.ProtectedRoleError; exports.QueryBuilder = _chunkDCTLP3ZDjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkDCTLP3ZDjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkDCTLP3ZDjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkDCTLP3ZDjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkDCTLP3ZDjs.RESERVED_ATTRIBUTE_NAMES; exports.RatingPropertyBuilder = _chunkDCTLP3ZDjs.RatingPropertyBuilder; exports.RecordNotFoundError = _chunkDCTLP3ZDjs.RecordNotFoundError; exports.RecordQueryService = _chunkDCTLP3ZDjs.RecordQueryService; exports.RecordReferencedError = _chunkDCTLP3ZDjs.RecordReferencedError; exports.RecordResolverService = _chunkDCTLP3ZDjs.RecordResolverService; exports.RecordService = _chunkDCTLP3ZDjs.RecordService; exports.RelationPropertiesService = _chunkDCTLP3ZDjs.RelationPropertiesService; exports.RelationService = _chunkDCTLP3ZDjs.RelationService; exports.RoleNotFoundError = _chunkDCTLP3ZDjs.RoleNotFoundError; exports.RollupScheduler = _chunkDCTLP3ZDjs.RollupScheduler; exports.RollupService = _chunkDCTLP3ZDjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkDCTLP3ZDjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkDCTLP3ZDjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkDCTLP3ZDjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkDCTLP3ZDjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkDCTLP3ZDjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkDCTLP3ZDjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkDCTLP3ZDjs.SchemaContextAwareRepository; exports.SchemaError = _chunkDCTLP3ZDjs.SchemaError; exports.SchemaErrorCode = _chunkDCTLP3ZDjs.SchemaErrorCode; exports.SelectPropertyBuilder = _chunkDCTLP3ZDjs.SelectPropertyBuilder; exports.ShareStatusSchema = _chunkDCTLP3ZDjs.ShareStatusSchema; exports.SlotModeSchema = _chunkDCTLP3ZDjs.SlotModeSchema; exports.StartExecutor = _chunkDCTLP3ZDjs.StartExecutor; exports.StartNodeSchema = _chunkDCTLP3ZDjs.StartNodeSchema; exports.StatusPropertyBuilder = _chunkDCTLP3ZDjs.StatusPropertyBuilder; exports.StorageDownloadNotSupportedError = _chunkDCTLP3ZDjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkDCTLP3ZDjs.SyncError; exports.TabBuilder = _chunkDCTLP3ZDjs.TabBuilder; exports.TenantContextError = _chunkDCTLP3ZDjs.TenantContextError; exports.TextPropertyBuilder = _chunkDCTLP3ZDjs.TextPropertyBuilder; exports.TextareaPropertyBuilder = _chunkDCTLP3ZDjs.TextareaPropertyBuilder; exports.ThemeColorsSchema = _chunkDCTLP3ZDjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkDCTLP3ZDjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkDCTLP3ZDjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunkDCTLP3ZDjs.UserProfileNotFoundError; exports.UserProfileService = _chunkDCTLP3ZDjs.UserProfileService; exports.UserService = _chunkDCTLP3ZDjs.UserService; exports.ValidationError = _chunkDCTLP3ZDjs.ValidationError; exports.ViewBuilder = _chunkDCTLP3ZDjs.ViewBuilder; exports.ViewService = _chunkDCTLP3ZDjs.ViewService; exports.ViewportSchema = _chunkDCTLP3ZDjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkDCTLP3ZDjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkDCTLP3ZDjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkDCTLP3ZDjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkDCTLP3ZDjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkDCTLP3ZDjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkDCTLP3ZDjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkDCTLP3ZDjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkDCTLP3ZDjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkDCTLP3ZDjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkDCTLP3ZDjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkDCTLP3ZDjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkDCTLP3ZDjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkDCTLP3ZDjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkDCTLP3ZDjs.WorkflowRelationService; exports.WorkflowService = _chunkDCTLP3ZDjs.WorkflowService; exports.WorkflowShareSchema = _chunkDCTLP3ZDjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkDCTLP3ZDjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkDCTLP3ZDjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkDCTLP3ZDjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkDCTLP3ZDjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkDCTLP3ZDjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunkDCTLP3ZDjs.addSchemaToContext; exports.and = _chunkDCTLP3ZDjs.and; exports.applyDefaultValues = _chunkDCTLP3ZDjs.applyDefaultValues; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunkU4AB53AMjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkDCTLP3ZDjs.buildAuditChanges; exports.buildPolicyContext = _chunkDCTLP3ZDjs.buildPolicyContext; exports.cacheKeys = _chunkDCTLP3ZDjs.cacheKeys; exports.cacheTtl = _chunkDCTLP3ZDjs.cacheTtl; exports.canAccessNode = _chunkDCTLP3ZDjs.canAccessNode; exports.canResumeInstance = _chunkDCTLP3ZDjs.canResumeInstance; exports.checkPermission = _chunkDCTLP3ZDjs.checkPermission; exports.checkRecordAccess = _chunkDCTLP3ZDjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkDCTLP3ZDjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkDCTLP3ZDjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkDCTLP3ZDjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkDCTLP3ZDjs.checkbox; exports.checkboxConfigSchema = _chunkU4AB53AMjs.checkboxConfigSchema; exports.complete = _chunkDCTLP3ZDjs.complete; exports.computeLabel = _chunkDCTLP3ZDjs.computeLabel; exports.computeLabelWithRelations = _chunkDCTLP3ZDjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkU4AB53AMjs.computeRecordStatus; exports.createAttributeValidator = _chunkU4AB53AMjs.createAttributeValidator; exports.createCheckboxValidator = _chunkU4AB53AMjs.createCheckboxValidator; exports.createContextForCreate = _chunkDCTLP3ZDjs.createContextForCreate; exports.createContextForDelete = _chunkDCTLP3ZDjs.createContextForDelete; exports.createContextForRestore = _chunkDCTLP3ZDjs.createContextForRestore; exports.createContextForUpdate = _chunkDCTLP3ZDjs.createContextForUpdate; exports.createCurrencyValidator = _chunkU4AB53AMjs.createCurrencyValidator; exports.createDateValidator = _chunkU4AB53AMjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkDCTLP3ZDjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkDCTLP3ZDjs.createDefaultState; exports.createDraftValidator = _chunkU4AB53AMjs.createDraftValidator; exports.createEmptyContext = _chunkDCTLP3ZDjs.createEmptyContext; exports.createFileValidator = _chunkU4AB53AMjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkU4AB53AMjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkU4AB53AMjs.createFormulaValidator; exports.createLocationValidator = _chunkU4AB53AMjs.createLocationValidator; exports.createMockAdapter = _chunkDCTLP3ZDjs.createMockAdapter; exports.createMultiRelationValidator = _chunkU4AB53AMjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkU4AB53AMjs.createMultiselectValidator; exports.createNumberValidator = _chunkU4AB53AMjs.createNumberValidator; exports.createObjectValidator = _chunkU4AB53AMjs.createObjectValidator; exports.createPhoneValidator = _chunkU4AB53AMjs.createPhoneValidator; exports.createQueryBuilder = _chunkDCTLP3ZDjs.createQueryBuilder; exports.createRatingValidator = _chunkU4AB53AMjs.createRatingValidator; exports.createRelationValidator = _chunkU4AB53AMjs.createRelationValidator; exports.createRichtextValidator = _chunkU4AB53AMjs.createRichtextValidator; exports.createRollupValidator = _chunkU4AB53AMjs.createRollupValidator; exports.createSelectValidator = _chunkU4AB53AMjs.createSelectValidator; exports.createSingleRelationValidator = _chunkU4AB53AMjs.createSingleRelationValidator; exports.createStartTransition = _chunkDCTLP3ZDjs.createStartTransition; exports.createStatusValidator = _chunkU4AB53AMjs.createStatusValidator; exports.createTextAreaValidator = _chunkU4AB53AMjs.createTextAreaValidator; exports.createTextValidator = _chunkU4AB53AMjs.createTextValidator; exports.createUserValidator = _chunkU4AB53AMjs.createUserValidator; exports.currency = _chunkDCTLP3ZDjs.currency; exports.currencyConfigSchema = _chunkU4AB53AMjs.currencyConfigSchema; exports.date = _chunkDCTLP3ZDjs.date; exports.dateConfigSchema = _chunkU4AB53AMjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkDCTLP3ZDjs.defaultPolicyRegistry; exports.defaultTtl = _chunkDCTLP3ZDjs.defaultTtl; exports.detailView = _chunkDCTLP3ZDjs.detailView; exports.document = _chunkDCTLP3ZDjs.document; exports.documentConfigSchema = _chunkU4AB53AMjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkDCTLP3ZDjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkDCTLP3ZDjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkDCTLP3ZDjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkDCTLP3ZDjs.enrichWithFormulas; exports.eq = _chunkDCTLP3ZDjs.eq; exports.error = _chunkDCTLP3ZDjs.error; exports.evaluate = _chunkDCTLP3ZDjs.evaluate; exports.evaluateCondition = _chunkDCTLP3ZDjs.evaluateCondition; exports.evaluateFormula = _chunkDCTLP3ZDjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkDCTLP3ZDjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkDCTLP3ZDjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkDCTLP3ZDjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkDCTLP3ZDjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkDCTLP3ZDjs.evaluateWithTrace; exports.extractAttributeNames = _chunkDCTLP3ZDjs.extractAttributeNames; exports.extractFormulaVariables = _chunkDCTLP3ZDjs.extractFormulaVariables; exports.extractRelationIds = _chunkDCTLP3ZDjs.extractRelationIds; exports.extractRelationNames = _chunkDCTLP3ZDjs.extractRelationNames; exports.extractRelationReferences = _chunkDCTLP3ZDjs.extractRelationReferences; exports.file = _chunkDCTLP3ZDjs.file; exports.fileConfigSchema = _chunkU4AB53AMjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkDCTLP3ZDjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkDCTLP3ZDjs.formatAttributeValue; exports.formatFormulaResult = _chunkDCTLP3ZDjs.formatFormulaResult; exports.formatRecord = _chunkDCTLP3ZDjs.formatRecord; exports.formatRecords = _chunkDCTLP3ZDjs.formatRecords; exports.formatZodErrors = _chunkU4AB53AMjs.formatZodErrors; exports.formula = _chunkDCTLP3ZDjs.formula; exports.formulaConfigSchema = _chunkU4AB53AMjs.formulaConfigSchema; exports.generateCssVariables = _chunkDCTLP3ZDjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getAttributeConfigSchema = _chunkU4AB53AMjs.getAttributeConfigSchema; exports.getContext = _chunkDCTLP3ZDjs.getContext; exports.getContextValue = _chunkDCTLP3ZDjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkDCTLP3ZDjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkDCTLP3ZDjs.getFeatureFlags; exports.getFeatureValue = _chunkDCTLP3ZDjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunkU4AB53AMjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkDCTLP3ZDjs.getNodeOutputs; exports.getPathDepth = _chunkDCTLP3ZDjs.getPathDepth; exports.getPolicy = _chunkDCTLP3ZDjs.getPolicy; exports.getRelationPath = _chunkDCTLP3ZDjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkDCTLP3ZDjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkDCTLP3ZDjs.getSchemaContext; exports.getSchemaFromContext = _chunkDCTLP3ZDjs.getSchemaFromContext; exports.getSyncPreview = _chunkDCTLP3ZDjs.getSyncPreview; exports.getSystemAttributeList = _chunkDCTLP3ZDjs.getSystemAttributeList; exports.getSystemTemplate = _chunkDCTLP3ZDjs.getSystemTemplate; exports.getTargetAttributeName = _chunkDCTLP3ZDjs.getTargetAttributeName; exports.getTenantId = _chunkDCTLP3ZDjs.getTenantId; exports.getUserId = _chunkDCTLP3ZDjs.getUserId; exports.getViewSeedPreview = _chunkDCTLP3ZDjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkDCTLP3ZDjs.getViewSyncPreview; exports.group = _chunkDCTLP3ZDjs.group; exports.hasContext = _chunkDCTLP3ZDjs.hasContext; exports.hasFeatureFlagsContext = _chunkDCTLP3ZDjs.hasFeatureFlagsContext; exports.hasProperties = _chunkDCTLP3ZDjs.hasProperties; exports.hasRelationReferences = _chunkDCTLP3ZDjs.hasRelationReferences; exports.hasSchemaContext = _chunkDCTLP3ZDjs.hasSchemaContext; exports.hashOptions = _chunkDCTLP3ZDjs.hashOptions; exports.inValues = _chunkDCTLP3ZDjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkDCTLP3ZDjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunkDCTLP3ZDjs.isBehaviorProperty; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkDCTLP3ZDjs.isConditionGroup; exports.isConditionNode = _chunkDCTLP3ZDjs.isConditionNode; exports.isConditionRule = _chunkDCTLP3ZDjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDirectTableTab = isDirectTableTab; exports.isDocumentNode = _chunkDCTLP3ZDjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkDCTLP3ZDjs.isEmpty; exports.isEndNode = _chunkDCTLP3ZDjs.isEndNode; exports.isFeatureEnabled = _chunkDCTLP3ZDjs.isFeatureEnabled; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkDCTLP3ZDjs.isForbiddenError; exports.isFormNode = _chunkDCTLP3ZDjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkDCTLP3ZDjs.isGrantExpired; exports.isGrantRevoked = _chunkDCTLP3ZDjs.isGrantRevoked; exports.isGrantValid = _chunkDCTLP3ZDjs.isGrantValid; exports.isIdentityProperty = _chunkDCTLP3ZDjs.isIdentityProperty; exports.isInstanceEvent = _chunkDCTLP3ZDjs.isInstanceEvent; exports.isInstanceTerminal = _chunkDCTLP3ZDjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkDCTLP3ZDjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isInvitationAccepted = _chunkDCTLP3ZDjs.isInvitationAccepted; exports.isInvitationExpired = _chunkDCTLP3ZDjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkDCTLP3ZDjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkDCTLP3ZDjs.isInvitationValid; exports.isLabelExpression = _chunkDCTLP3ZDjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkDCTLP3ZDjs.isNodeEvent; exports.isNotEmpty = _chunkDCTLP3ZDjs.isNotEmpty; exports.isNotFoundError = _chunkDCTLP3ZDjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isPresentationProperty = _chunkDCTLP3ZDjs.isPresentationProperty; exports.isProtectedResourceError = _chunkDCTLP3ZDjs.isProtectedResourceError; exports.isRecordComplete = _chunkU4AB53AMjs.isRecordComplete; exports.isSchemaError = _chunkDCTLP3ZDjs.isSchemaError; exports.isSimpleFormNode = _chunkDCTLP3ZDjs.isSimpleFormNode; exports.isStartNode = _chunkDCTLP3ZDjs.isStartNode; exports.isSystemAttribute = _chunkDCTLP3ZDjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkDCTLP3ZDjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkDCTLP3ZDjs.isSystemTemplate; exports.isSystemWorkflow = _chunkDCTLP3ZDjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkDCTLP3ZDjs.isTokenRevoked; exports.isUniversalRelation = _chunkDCTLP3ZDjs.isUniversalRelation; exports.isValidationError = _chunkDCTLP3ZDjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkDCTLP3ZDjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkDCTLP3ZDjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkDCTLP3ZDjs.listView; exports.location = _chunkDCTLP3ZDjs.location; exports.locationConfigSchema = _chunkU4AB53AMjs.locationConfigSchema; exports.mergeWithDefaults = _chunkDCTLP3ZDjs.mergeWithDefaults; exports.multiselect = _chunkDCTLP3ZDjs.multiselect; exports.multiselectConfigSchema = _chunkU4AB53AMjs.multiselectConfigSchema; exports.neq = _chunkDCTLP3ZDjs.neq; exports.notesPolicy = _chunkDCTLP3ZDjs.notesPolicy; exports.number = _chunkDCTLP3ZDjs.number; exports.numberConfigSchema = _chunkU4AB53AMjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkDCTLP3ZDjs.object; exports.or = _chunkDCTLP3ZDjs.or; exports.parseAttributeConfig = _chunkU4AB53AMjs.parseAttributeConfig; exports.parsePath = _chunkDCTLP3ZDjs.parsePath; exports.pathHasManyCardinality = _chunkDCTLP3ZDjs.pathHasManyCardinality; exports.phone = _chunkDCTLP3ZDjs.phone; exports.phoneConfigSchema = _chunkU4AB53AMjs.phoneConfigSchema; exports.rating = _chunkDCTLP3ZDjs.rating; exports.ratingConfigSchema = _chunkU4AB53AMjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkDCTLP3ZDjs.recalculateParentRollups; exports.registry = _chunkDCTLP3ZDjs.registry; exports.relation = _chunkDCTLP3ZDjs.relation; exports.relationConfigSchema = _chunkU4AB53AMjs.relationConfigSchema; exports.renderLabelExpression = _chunkDCTLP3ZDjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkDCTLP3ZDjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkDCTLP3ZDjs.resolveSingleValue; exports.richtext = _chunkDCTLP3ZDjs.richtext; exports.richtextConfigSchema = _chunkU4AB53AMjs.richtextConfigSchema; exports.rollup = _chunkDCTLP3ZDjs.rollup; exports.rollupConfigSchema = _chunkU4AB53AMjs.rollupConfigSchema; exports.runWithContext = _chunkDCTLP3ZDjs.runWithContext; exports.runWithFeatureFlags = _chunkDCTLP3ZDjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkDCTLP3ZDjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkDCTLP3ZDjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkU4AB53AMjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkDCTLP3ZDjs.seedRegistryViews; exports.select = _chunkDCTLP3ZDjs.select; exports.selectConfigSchema = _chunkU4AB53AMjs.selectConfigSchema; exports.setContextValue = _chunkDCTLP3ZDjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkDCTLP3ZDjs.status; exports.statusConfigSchema = _chunkU4AB53AMjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkDCTLP3ZDjs.success; exports.syncAll = _chunkDCTLP3ZDjs.syncAll; exports.syncNativeObjects = _chunkDCTLP3ZDjs.syncNativeObjects; exports.syncNativeViews = _chunkDCTLP3ZDjs.syncNativeViews; exports.text = _chunkDCTLP3ZDjs.text; exports.textConfigSchema = _chunkU4AB53AMjs.textConfigSchema; exports.textarea = _chunkDCTLP3ZDjs.textarea; exports.textareaConfigSchema = _chunkU4AB53AMjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkDCTLP3ZDjs.toUndefinedIfEmpty; exports.traversePath = _chunkDCTLP3ZDjs.traversePath; exports.tryGetFeatureValue = _chunkDCTLP3ZDjs.tryGetFeatureValue; exports.user = _chunkDCTLP3ZDjs.user; exports.userConfigSchema = _chunkU4AB53AMjs.userConfigSchema; exports.validateAttribute = _chunkU4AB53AMjs.validateAttribute; exports.validateAttributeConfig = _chunkU4AB53AMjs.validateAttributeConfig; exports.validateDraft = _chunkU4AB53AMjs.validateDraft; exports.validateDraftOrThrow = _chunkU4AB53AMjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkDCTLP3ZDjs.validateFormulaExpression; exports.validateObject = _chunkU4AB53AMjs.validateObject; exports.validateObjectOrThrow = _chunkU4AB53AMjs.validateObjectOrThrow; exports.validatePath = _chunkDCTLP3ZDjs.validatePath; exports.validatePropertyType = _chunkDCTLP3ZDjs.validatePropertyType; exports.verifyNativeObjectsSync = _chunkDCTLP3ZDjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkDCTLP3ZDjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkDCTLP3ZDjs.verifyRegistryViewsSeeded; exports.view = _chunkDCTLP3ZDjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkDCTLP3ZDjs.wait; exports.withFeatureFlags = _chunkDCTLP3ZDjs.withFeatureFlags; exports.withTenantContext = _chunkDCTLP3ZDjs.withTenantContext; exports.workflow = _chunkDCTLP3ZDjs.workflow;
|