@stndrds/schema 0.1.0-alpha.64 → 0.1.0-alpha.65
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-IIKZXK57.mjs → chunk-A6T4UUZ2.mjs} +88 -2
- package/dist/{chunk-5IU6XTFA.js → chunk-TOTUS3YS.js} +89 -3
- package/dist/index.d.mts +75 -6
- package/dist/index.d.ts +75 -6
- package/dist/index.js +25 -8
- package/dist/index.mjs +21 -4
- package/dist/{runtime-BzYhhUVf.d.ts → runtime-BgtwoMx5.d.ts} +49 -4
- package/dist/{runtime-D52-pPFI.d.mts → runtime-DQlTgVZJ.d.mts} +49 -4
- 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
|
@@ -6707,6 +6707,85 @@ var GroupBuilder = class {
|
|
|
6707
6707
|
return this.data;
|
|
6708
6708
|
}
|
|
6709
6709
|
};
|
|
6710
|
+
var RelationGroupBuilder = class {
|
|
6711
|
+
constructor(id, label, attribute) {
|
|
6712
|
+
this.data = { type: "relation" };
|
|
6713
|
+
this.data.id = id;
|
|
6714
|
+
this.data.label = label;
|
|
6715
|
+
this.data.attribute = attribute;
|
|
6716
|
+
}
|
|
6717
|
+
/**
|
|
6718
|
+
* Set group description
|
|
6719
|
+
*/
|
|
6720
|
+
description(value) {
|
|
6721
|
+
this.data.description = value;
|
|
6722
|
+
return this;
|
|
6723
|
+
}
|
|
6724
|
+
/**
|
|
6725
|
+
* Make group collapsible
|
|
6726
|
+
* @param collapsed - Initial collapsed state (default: false)
|
|
6727
|
+
*/
|
|
6728
|
+
collapsible(collapsed = false) {
|
|
6729
|
+
this.data.collapsible = true;
|
|
6730
|
+
this.data.collapsed = collapsed;
|
|
6731
|
+
return this;
|
|
6732
|
+
}
|
|
6733
|
+
/**
|
|
6734
|
+
* Set display order
|
|
6735
|
+
*/
|
|
6736
|
+
order(value) {
|
|
6737
|
+
this.data.order = value;
|
|
6738
|
+
return this;
|
|
6739
|
+
}
|
|
6740
|
+
/**
|
|
6741
|
+
* Set columns to display in the relations table
|
|
6742
|
+
* @example .columns("name", "email", "phone")
|
|
6743
|
+
*/
|
|
6744
|
+
columns(...names) {
|
|
6745
|
+
this.data.columns = names;
|
|
6746
|
+
return this;
|
|
6747
|
+
}
|
|
6748
|
+
/**
|
|
6749
|
+
* Set the group as read-only (no add/remove/edit)
|
|
6750
|
+
*/
|
|
6751
|
+
readOnly(value = true) {
|
|
6752
|
+
this.data.readOnly = value;
|
|
6753
|
+
return this;
|
|
6754
|
+
}
|
|
6755
|
+
/**
|
|
6756
|
+
* Allow creating new related records inline
|
|
6757
|
+
*/
|
|
6758
|
+
allowCreate(value = true) {
|
|
6759
|
+
this.data.allowCreate = value;
|
|
6760
|
+
return this;
|
|
6761
|
+
}
|
|
6762
|
+
/**
|
|
6763
|
+
* Enable two-level traversal (through mode).
|
|
6764
|
+
* Parent rows become grouping headers; sub-rows from `attribute` are the primary display.
|
|
6765
|
+
*
|
|
6766
|
+
* @param attribute - Relation attribute on the first-level target object
|
|
6767
|
+
* @example .through("companies") — display companies linked via each member
|
|
6768
|
+
*/
|
|
6769
|
+
through(attribute) {
|
|
6770
|
+
this.data.through = { attribute };
|
|
6771
|
+
return this;
|
|
6772
|
+
}
|
|
6773
|
+
/**
|
|
6774
|
+
* Build the relation group definition
|
|
6775
|
+
*/
|
|
6776
|
+
build() {
|
|
6777
|
+
if (!this.data.id) {
|
|
6778
|
+
throw new Error("[RelationGroupBuilder] id is required");
|
|
6779
|
+
}
|
|
6780
|
+
if (!this.data.label) {
|
|
6781
|
+
throw new Error("[RelationGroupBuilder] label is required");
|
|
6782
|
+
}
|
|
6783
|
+
if (!this.data.attribute) {
|
|
6784
|
+
throw new Error("[RelationGroupBuilder] attribute is required");
|
|
6785
|
+
}
|
|
6786
|
+
return this.data;
|
|
6787
|
+
}
|
|
6788
|
+
};
|
|
6710
6789
|
var TableTabConfig = class {
|
|
6711
6790
|
/** @internal */
|
|
6712
6791
|
constructor(view2, tabData) {
|
|
@@ -7105,7 +7184,7 @@ var TabBuilder = class {
|
|
|
7105
7184
|
// ─────────────────────────────────────────────────────────────────────────
|
|
7106
7185
|
/**
|
|
7107
7186
|
* Create a form tab with groups
|
|
7108
|
-
* @example .form(group("info", "Info").fields("name", "email"))
|
|
7187
|
+
* @example .form(group("info", "Info").fields("name", "email"), relationGroup("contacts", "Contacts", "contacts"))
|
|
7109
7188
|
*/
|
|
7110
7189
|
form(...groups) {
|
|
7111
7190
|
if (groups.length === 0) {
|
|
@@ -7116,7 +7195,9 @@ var TabBuilder = class {
|
|
|
7116
7195
|
const tab = {
|
|
7117
7196
|
...this.base,
|
|
7118
7197
|
type: "form",
|
|
7119
|
-
groups: groups.map(
|
|
7198
|
+
groups: groups.map(
|
|
7199
|
+
(g) => g instanceof GroupBuilder || g instanceof RelationGroupBuilder ? g.build() : g
|
|
7200
|
+
)
|
|
7120
7201
|
};
|
|
7121
7202
|
return this.view._addTab(tab);
|
|
7122
7203
|
}
|
|
@@ -7648,6 +7729,9 @@ function listView(name, label) {
|
|
|
7648
7729
|
function group(id, label) {
|
|
7649
7730
|
return new GroupBuilder(id, label);
|
|
7650
7731
|
}
|
|
7732
|
+
function relationGroup(id, label, attribute) {
|
|
7733
|
+
return new RelationGroupBuilder(id, label, attribute);
|
|
7734
|
+
}
|
|
7651
7735
|
|
|
7652
7736
|
// src/builders/workflow-builder.ts
|
|
7653
7737
|
import { z as z4 } from "zod";
|
|
@@ -18398,6 +18482,7 @@ export {
|
|
|
18398
18482
|
ObjectBuilder,
|
|
18399
18483
|
object,
|
|
18400
18484
|
GroupBuilder,
|
|
18485
|
+
RelationGroupBuilder,
|
|
18401
18486
|
TableTabConfig,
|
|
18402
18487
|
CustomTabConfig,
|
|
18403
18488
|
RichtextTabConfig,
|
|
@@ -18413,6 +18498,7 @@ export {
|
|
|
18413
18498
|
ListViewTabConfigBuilder,
|
|
18414
18499
|
listView,
|
|
18415
18500
|
group,
|
|
18501
|
+
relationGroup,
|
|
18416
18502
|
WorkflowFormRowBuilder,
|
|
18417
18503
|
WorkflowFormBuilder,
|
|
18418
18504
|
WorkflowSimpleFormBuilder,
|
|
@@ -6707,6 +6707,85 @@ var GroupBuilder = class {
|
|
|
6707
6707
|
return this.data;
|
|
6708
6708
|
}
|
|
6709
6709
|
};
|
|
6710
|
+
var RelationGroupBuilder = class {
|
|
6711
|
+
constructor(id, label, attribute) {
|
|
6712
|
+
this.data = { type: "relation" };
|
|
6713
|
+
this.data.id = id;
|
|
6714
|
+
this.data.label = label;
|
|
6715
|
+
this.data.attribute = attribute;
|
|
6716
|
+
}
|
|
6717
|
+
/**
|
|
6718
|
+
* Set group description
|
|
6719
|
+
*/
|
|
6720
|
+
description(value) {
|
|
6721
|
+
this.data.description = value;
|
|
6722
|
+
return this;
|
|
6723
|
+
}
|
|
6724
|
+
/**
|
|
6725
|
+
* Make group collapsible
|
|
6726
|
+
* @param collapsed - Initial collapsed state (default: false)
|
|
6727
|
+
*/
|
|
6728
|
+
collapsible(collapsed = false) {
|
|
6729
|
+
this.data.collapsible = true;
|
|
6730
|
+
this.data.collapsed = collapsed;
|
|
6731
|
+
return this;
|
|
6732
|
+
}
|
|
6733
|
+
/**
|
|
6734
|
+
* Set display order
|
|
6735
|
+
*/
|
|
6736
|
+
order(value) {
|
|
6737
|
+
this.data.order = value;
|
|
6738
|
+
return this;
|
|
6739
|
+
}
|
|
6740
|
+
/**
|
|
6741
|
+
* Set columns to display in the relations table
|
|
6742
|
+
* @example .columns("name", "email", "phone")
|
|
6743
|
+
*/
|
|
6744
|
+
columns(...names) {
|
|
6745
|
+
this.data.columns = names;
|
|
6746
|
+
return this;
|
|
6747
|
+
}
|
|
6748
|
+
/**
|
|
6749
|
+
* Set the group as read-only (no add/remove/edit)
|
|
6750
|
+
*/
|
|
6751
|
+
readOnly(value = true) {
|
|
6752
|
+
this.data.readOnly = value;
|
|
6753
|
+
return this;
|
|
6754
|
+
}
|
|
6755
|
+
/**
|
|
6756
|
+
* Allow creating new related records inline
|
|
6757
|
+
*/
|
|
6758
|
+
allowCreate(value = true) {
|
|
6759
|
+
this.data.allowCreate = value;
|
|
6760
|
+
return this;
|
|
6761
|
+
}
|
|
6762
|
+
/**
|
|
6763
|
+
* Enable two-level traversal (through mode).
|
|
6764
|
+
* Parent rows become grouping headers; sub-rows from `attribute` are the primary display.
|
|
6765
|
+
*
|
|
6766
|
+
* @param attribute - Relation attribute on the first-level target object
|
|
6767
|
+
* @example .through("companies") — display companies linked via each member
|
|
6768
|
+
*/
|
|
6769
|
+
through(attribute) {
|
|
6770
|
+
this.data.through = { attribute };
|
|
6771
|
+
return this;
|
|
6772
|
+
}
|
|
6773
|
+
/**
|
|
6774
|
+
* Build the relation group definition
|
|
6775
|
+
*/
|
|
6776
|
+
build() {
|
|
6777
|
+
if (!this.data.id) {
|
|
6778
|
+
throw new Error("[RelationGroupBuilder] id is required");
|
|
6779
|
+
}
|
|
6780
|
+
if (!this.data.label) {
|
|
6781
|
+
throw new Error("[RelationGroupBuilder] label is required");
|
|
6782
|
+
}
|
|
6783
|
+
if (!this.data.attribute) {
|
|
6784
|
+
throw new Error("[RelationGroupBuilder] attribute is required");
|
|
6785
|
+
}
|
|
6786
|
+
return this.data;
|
|
6787
|
+
}
|
|
6788
|
+
};
|
|
6710
6789
|
var TableTabConfig = class {
|
|
6711
6790
|
/** @internal */
|
|
6712
6791
|
constructor(view2, tabData) {
|
|
@@ -7105,7 +7184,7 @@ var TabBuilder = class {
|
|
|
7105
7184
|
// ─────────────────────────────────────────────────────────────────────────
|
|
7106
7185
|
/**
|
|
7107
7186
|
* Create a form tab with groups
|
|
7108
|
-
* @example .form(group("info", "Info").fields("name", "email"))
|
|
7187
|
+
* @example .form(group("info", "Info").fields("name", "email"), relationGroup("contacts", "Contacts", "contacts"))
|
|
7109
7188
|
*/
|
|
7110
7189
|
form(...groups) {
|
|
7111
7190
|
if (groups.length === 0) {
|
|
@@ -7116,7 +7195,9 @@ var TabBuilder = class {
|
|
|
7116
7195
|
const tab = {
|
|
7117
7196
|
...this.base,
|
|
7118
7197
|
type: "form",
|
|
7119
|
-
groups: groups.map(
|
|
7198
|
+
groups: groups.map(
|
|
7199
|
+
(g) => g instanceof GroupBuilder || g instanceof RelationGroupBuilder ? g.build() : g
|
|
7200
|
+
)
|
|
7120
7201
|
};
|
|
7121
7202
|
return this.view._addTab(tab);
|
|
7122
7203
|
}
|
|
@@ -7648,6 +7729,9 @@ function listView(name, label) {
|
|
|
7648
7729
|
function group(id, label) {
|
|
7649
7730
|
return new GroupBuilder(id, label);
|
|
7650
7731
|
}
|
|
7732
|
+
function relationGroup(id, label, attribute) {
|
|
7733
|
+
return new RelationGroupBuilder(id, label, attribute);
|
|
7734
|
+
}
|
|
7651
7735
|
|
|
7652
7736
|
// src/builders/workflow-builder.ts
|
|
7653
7737
|
|
|
@@ -18580,4 +18664,6 @@ var NoopGeocodingAdapter = class {
|
|
|
18580
18664
|
|
|
18581
18665
|
|
|
18582
18666
|
|
|
18583
|
-
exports.IDENTITY_PROPERTIES = IDENTITY_PROPERTIES; exports.BEHAVIOR_PROPERTIES = BEHAVIOR_PROPERTIES; exports.PRESENTATION_PROPERTIES = PRESENTATION_PROPERTIES; exports.isIdentityProperty = isIdentityProperty; exports.isBehaviorProperty = isBehaviorProperty; exports.isPresentationProperty = isPresentationProperty; exports.RELATION_TARGET_ANY = RELATION_TARGET_ANY; exports.isUniversalRelation = isUniversalRelation; exports.isBilateralRelation = isBilateralRelation; exports.inferInverseCardinality = inferInverseCardinality; exports.RecordReferencedError = RecordReferencedError; exports.AttributeInUseError = AttributeInUseError; exports.ObjectReferencedError = ObjectReferencedError; exports.getErrorMessage = getErrorMessage; exports.NoopGeocodingAdapter = NoopGeocodingAdapter; exports.SYSTEM_FIELD_NAMES = SYSTEM_FIELD_NAMES; exports.RESERVED_ATTRIBUTE_NAMES = RESERVED_ATTRIBUTE_NAMES; exports.PolicyViolationError = PolicyViolationError; exports.FORBIDDEN_PROPERTY_TYPES = FORBIDDEN_PROPERTY_TYPES; exports.SYSTEM_ATTRIBUTES = SYSTEM_ATTRIBUTES; exports.getSystemAttributeList = getSystemAttributeList; exports.isSystemAttribute = isSystemAttribute; exports.isSystemAttributeObject = isSystemAttributeObject; exports.isSimpleFormNode = isSimpleFormNode; exports.isAdvancedFormNode = isAdvancedFormNode; exports.isStartNode = isStartNode; exports.isFormNode = isFormNode; exports.isConditionNode = isConditionNode; exports.isDocumentNode = isDocumentNode; exports.isEndNode = isEndNode; exports.getNodeOutputs = getNodeOutputs; exports.isConditionRule = isConditionRule; exports.isConditionGroup = isConditionGroup; exports.eq = eq; exports.neq = neq; exports.and = and; exports.or = or; exports.inValues = inValues; exports.isWorkflowDefinition = isWorkflowDefinition; exports.isWorkflowPublished = isWorkflowPublished; exports.isSystemWorkflow = isSystemWorkflow; exports.isInstanceTerminal = isInstanceTerminal; exports.isInstanceWaiting = isInstanceWaiting; exports.canResumeInstance = canResumeInstance; exports.createStartTransition = createStartTransition; exports.isInvitationValid = isInvitationValid; exports.isInvitationAccepted = isInvitationAccepted; exports.isInvitationExpired = isInvitationExpired; exports.isGrantValid = isGrantValid; exports.isGrantRevoked = isGrantRevoked; exports.isTokenRevoked = isTokenRevoked; exports.isGrantExpired = isGrantExpired; exports.canAccessNode = canAccessNode; exports.createEmptyContext = createEmptyContext; exports.getContextValue = getContextValue; exports.setContextValue = setContextValue; exports.DEFAULT_THEME = DEFAULT_THEME; exports.mergeWithDefaults = mergeWithDefaults; exports.generateCssVariables = generateCssVariables; exports.isInstanceEvent = isInstanceEvent; exports.isNodeEvent = isNodeEvent; exports.isInvitationOrGrantEvent = isInvitationOrGrantEvent; exports.ConditionOperatorSchema = ConditionOperatorSchema; exports.ConditionRuleSchema = ConditionRuleSchema; exports.ConditionGroupSchema = ConditionGroupSchema; exports.StartNodeSchema = StartNodeSchema; exports.FormFieldRefSchema = FormFieldRefSchema; exports.FlowRowFieldSchema = FlowRowFieldSchema; exports.FlowRowSchema = FlowRowSchema; exports.FormNodeSchema = FormNodeSchema; exports.ConditionNodeSchema = ConditionNodeSchema; exports.DocumentNodeSchema = DocumentNodeSchema; exports.EndNodeSchema = EndNodeSchema; exports.WorkflowNodeSchema = WorkflowNodeSchema; exports.SlotModeSchema = SlotModeSchema; exports.WorkflowSlotSchema = WorkflowSlotSchema; exports.AuthMethodSchema = AuthMethodSchema; exports.ShareStatusSchema = ShareStatusSchema; exports.WorkflowShareSchema = WorkflowShareSchema; exports.CreateShareInputSchema = CreateShareInputSchema; exports.NodePositionSchema = NodePositionSchema; exports.ViewportSchema = ViewportSchema; exports.WorkflowLayoutSchema = WorkflowLayoutSchema; exports.ThemeColorsSchema = ThemeColorsSchema; exports.ThemeLogoSchema = ThemeLogoSchema; exports.WorkflowThemeSchema = WorkflowThemeSchema; exports.WorkflowConfigSchema = WorkflowConfigSchema; exports.WorkflowStatusSchema = WorkflowStatusSchema; exports.WorkflowDefinitionSchema = WorkflowDefinitionSchema; exports.isEmpty = isEmpty; exports.isNotEmpty = isNotEmpty; exports.toUndefinedIfEmpty = toUndefinedIfEmpty; exports.hasProperties = hasProperties; exports.EMPTY_VALUE_PLACEHOLDER = EMPTY_VALUE_PLACEHOLDER; exports.formatAttributeValue = formatAttributeValue; exports.DEFAULT_LABEL_FALLBACK = DEFAULT_LABEL_FALLBACK; exports.renderLabelExpression = renderLabelExpression; exports.isLabelExpression = isLabelExpression; exports.extractAttributeNames = extractAttributeNames; exports.enrichValuesForDisplay = enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = enrichValuesWithSelectLabels; exports.extractRelationIds = extractRelationIds; exports.computeLabelWithRelations = computeLabelWithRelations; exports.SchemaErrorCode = SchemaErrorCode; exports.SchemaError = SchemaError; exports.NotFoundError = NotFoundError; exports.ObjectNotFoundError = ObjectNotFoundError; exports.AttributeNotFoundError = AttributeNotFoundError; exports.RecordNotFoundError = RecordNotFoundError; exports.UserProfileNotFoundError = UserProfileNotFoundError; exports.FileNotFoundError = FileNotFoundError; exports.ValidationError = ValidationError; exports.ProtectedResourceError = ProtectedResourceError; exports.SyncError = SyncError; exports.NotSystemObjectError = NotSystemObjectError; exports.DuplicateError = DuplicateError; exports.isSchemaError = isSchemaError; exports.isNotFoundError = isNotFoundError; exports.isValidationError = isValidationError; exports.isProtectedResourceError = isProtectedResourceError; exports.ForbiddenError = ForbiddenError; exports.ProtectedRoleError = ProtectedRoleError; exports.RoleNotFoundError = RoleNotFoundError; exports.isForbiddenError = isForbiddenError; exports.ConcurrentModificationError = ConcurrentModificationError; exports.text = text; exports.textarea = textarea; exports.richtext = richtext; exports.number = number; exports.checkbox = checkbox; exports.date = date; exports.phone = phone; exports.currency = currency; exports.status = status; exports.select = select; exports.multiselect = multiselect; exports.location = location; exports.file = file; exports.user = user; exports.relation = relation; exports.rating = rating; exports.formula = formula; exports.rollup = rollup; exports.document = document; exports.ObjectBuilder = ObjectBuilder; exports.object = object; exports.GroupBuilder = GroupBuilder; exports.TableTabConfig = TableTabConfig; exports.CustomTabConfig = CustomTabConfig; exports.RichtextTabConfig = RichtextTabConfig; exports.ActivityTabConfig = ActivityTabConfig; exports.FlowsTabConfig = FlowsTabConfig; exports.DocumentsTabConfig = DocumentsTabConfig; exports.TabBuilder = TabBuilder; exports.DetailViewBuilder = DetailViewBuilder; exports.ViewBuilder = ViewBuilder; exports.detailView = detailView; exports.view = view; exports.ListViewBuilder = ListViewBuilder; exports.ListViewTabConfigBuilder = ListViewTabConfigBuilder; exports.listView = listView; exports.group = group; exports.WorkflowFormRowBuilder = WorkflowFormRowBuilder; exports.WorkflowFormBuilder = WorkflowFormBuilder; exports.WorkflowSimpleFormBuilder = WorkflowSimpleFormBuilder; exports.WorkflowConditionBuilder = WorkflowConditionBuilder; exports.WorkflowEndBuilder = WorkflowEndBuilder; exports.WorkflowStartBuilder = WorkflowStartBuilder; exports.WorkflowBuilder = WorkflowBuilder; exports.workflow = workflow; exports.registry = registry; exports.SYSTEM_TEMPLATE_IDS = SYSTEM_TEMPLATE_IDS; exports.FRENCH_ID_CARD = FRENCH_ID_CARD; exports.PASSPORT = PASSPORT; exports.DRIVING_LICENSE = DRIVING_LICENSE; exports.PROOF_OF_ADDRESS = PROOF_OF_ADDRESS; exports.SIGNABLE_CONTRACT = SIGNABLE_CONTRACT; exports.GENERIC_DOCUMENT = GENERIC_DOCUMENT; exports.SYSTEM_TEMPLATES = SYSTEM_TEMPLATES; exports.getSystemTemplate = getSystemTemplate; exports.isSystemTemplate = isSystemTemplate; exports.WorkflowJwtService = WorkflowJwtService; exports.hashOptions = hashOptions; exports.cacheKeys = cacheKeys; exports.cacheTtl = cacheTtl; exports.defaultTtl = defaultTtl; exports.NoopCacheAdapter = NoopCacheAdapter; exports.formatRecord = formatRecord; exports.formatRecords = formatRecords; exports.createDefaultState = createDefaultState; exports.SHORTCUT_TO_FILTER_OPERATOR = SHORTCUT_TO_FILTER_OPERATOR; exports.QueryNoResultError = QueryNoResultError; exports.QueryMultipleResultsError = QueryMultipleResultsError; exports.TenantContextError = TenantContextError; exports.FeatureFlagsContextError = FeatureFlagsContextError; exports.isFeatureEnabled = isFeatureEnabled; exports.getFeatureValue = getFeatureValue; exports.getFeatureFlags = getFeatureFlags; exports.tryGetFeatureValue = tryGetFeatureValue; exports.hasFeatureFlagsContext = hasFeatureFlagsContext; exports.runWithFeatureFlags = runWithFeatureFlags; exports.withFeatureFlags = withFeatureFlags; exports.getSchemaFromContext = getSchemaFromContext; exports.getSchemaByNameFromContext = getSchemaByNameFromContext; exports.hasSchemaContext = hasSchemaContext; exports.getSchemaContext = getSchemaContext; exports.addSchemaToContext = addSchemaToContext; exports.runWithSchemaContext = runWithSchemaContext; exports.runWithMergedSchemaContext = runWithMergedSchemaContext; exports.getContext = getContext2; exports.getTenantId = getTenantId; exports.getUserId = getUserId; exports.hasContext = hasContext; exports.runWithContext = runWithContext; exports.withTenantContext = withTenantContext; exports.QueryBuilder = QueryBuilder; exports.createQueryBuilder = createQueryBuilder; exports.evaluateCondition = evaluateCondition; exports.evaluate = evaluate; exports.evaluateWithTrace = evaluateWithTrace; exports.ExecutorRegistry = ExecutorRegistry; exports.success = success; exports.wait = wait; exports.complete = complete; exports.error = error; exports.ConditionExecutor = ConditionExecutor; exports.DocumentExecutor = DocumentExecutor; exports.EndExecutor = EndExecutor; exports.FormExecutor = FormExecutor; exports.StartExecutor = StartExecutor; exports.createDefaultExecutorRegistry = createDefaultExecutorRegistry; exports.getDefaultExecutorRegistry = getDefaultExecutorRegistry; exports.evaluateFormula = evaluateFormula; exports.evaluateFormulaWithResult = evaluateFormulaWithResult; exports.formatFormulaResult = formatFormulaResult; exports.evaluateFormulaAttribute = evaluateFormulaAttribute; exports.validateFormulaExpression = validateFormulaExpression; exports.extractFormulaVariables = extractFormulaVariables; exports.extractRelationReferences = extractRelationReferences; exports.extractRelationNames = extractRelationNames; exports.hasRelationReferences = hasRelationReferences; exports.flattenRelationsForEval = flattenRelationsForEval; exports.evaluateFormulaWithRelations = evaluateFormulaWithRelations; exports.evaluateFormulaAttributeWithRelations = evaluateFormulaAttributeWithRelations; exports.InvalidPathError = InvalidPathError; exports.MaxDepthExceededError = MaxDepthExceededError; exports.parsePath = parsePath; exports.validatePath = validatePath; exports.pathHasManyCardinality = pathHasManyCardinality; exports.getPathDepth = getPathDepth; exports.getTargetAttributeName = getTargetAttributeName; exports.getRelationPath = getRelationPath; exports.traversePath = traversePath; exports.resolveSingleValue = resolveSingleValue; exports.resolveMultiplePaths = resolveMultiplePaths; exports.NoopHookRegistry = NoopHookRegistry; exports.createMockAdapter = createMockAdapter; exports.PolicyRegistry = PolicyRegistry; exports.defaultPolicyRegistry = defaultPolicyRegistry; exports.BaseService = BaseService; exports.BaseRepository = BaseRepository; exports.SchemaContextAwareRepository = SchemaContextAwareRepository; exports.buildAuditChanges = buildAuditChanges; exports.ObjectSchemaService = ObjectSchemaService; exports.AuditService = AuditService; exports.UserService = UserService; exports.applyDefaultValues = applyDefaultValues; exports.checkPermission = checkPermission; exports.getPolicy = getPolicy; exports.buildPolicyContext = buildPolicyContext; exports.checkRecordAccess = checkRecordAccess; exports.checkRecordModifyOrThrow = checkRecordModifyOrThrow; exports.checkRecordDeleteOrThrow = checkRecordDeleteOrThrow; exports.checkSharedObjectWriteAccess = checkSharedObjectWriteAccess; exports.computeLabel = computeLabel; exports.enrichWithFormulas = enrichWithFormulas; exports.enrichRecordsWithFormulas = enrichRecordsWithFormulas; exports.createContextForCreate = createContextForCreate; exports.createContextForUpdate = createContextForUpdate; exports.createContextForDelete = createContextForDelete; exports.createContextForRestore = createContextForRestore; exports.recalculateParentRollups = recalculateParentRollups; exports.RelationPropertiesService = RelationPropertiesService; exports.RecordQueryService = RecordQueryService; exports.RecordResolverService = RecordResolverService; exports.RelationService = RelationService; exports.RollupService = RollupService; exports.RecordService = RecordService; exports.FormulaResolverService = FormulaResolverService; exports.RollupScheduler = RollupScheduler; exports.DocumentRenderError = DocumentRenderError; exports.StorageDownloadNotSupportedError = StorageDownloadNotSupportedError; exports.DocumentRendererService = DocumentRendererService; exports.DocumentProcessingHook = DocumentProcessingHook; exports.GrantNotFoundError = GrantNotFoundError; exports.GrantExpiredError = GrantExpiredError; exports.GrantRevokedError = GrantRevokedError; exports.TokenRevokedError = TokenRevokedError; exports.WorkflowAccessGrantService = WorkflowAccessGrantService; exports.WorkflowInstanceService = WorkflowInstanceService; exports.InvitationNotFoundError = InvitationNotFoundError; exports.InvitationExpiredError = InvitationExpiredError; exports.InvitationAlreadyAcceptedError = InvitationAlreadyAcceptedError; exports.InvitationRevokedError = InvitationRevokedError; exports.WorkflowInvitationService = WorkflowInvitationService; exports.WorkflowRelationService = WorkflowRelationService; exports.WorkflowService = WorkflowService; exports.UserProfileService = UserProfileService; exports.DocumentGenerationTemplateNotFoundError = DocumentGenerationTemplateNotFoundError; exports.DocumentGenerationNotConfiguredError = DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = DocumentGenerationService; exports.DocumentTemplateService = DocumentTemplateService; exports.DocumentService = DocumentService; exports.DocumentProcessingService = DocumentProcessingService; exports.FileService = FileService; exports.GeocodingService = GeocodingService; exports.GlobalSearchService = GlobalSearchService; exports.PermissionService = PermissionService; exports.ViewService = ViewService; exports.seedRegistryViews = seedRegistryViews; exports.syncNativeViews = syncNativeViews; exports.verifyRegistryViewsSeeded = verifyRegistryViewsSeeded; exports.verifyNativeViewsSync = verifyNativeViewsSync; exports.getViewSeedPreview = getViewSeedPreview; exports.getViewSyncPreview = getViewSyncPreview; exports.syncNativeObjects = syncNativeObjects; exports.verifyNativeObjectsSync = verifyNativeObjectsSync; exports.getSyncPreview = getSyncPreview; exports.syncAll = syncAll;
|
|
18667
|
+
|
|
18668
|
+
|
|
18669
|
+
exports.IDENTITY_PROPERTIES = IDENTITY_PROPERTIES; exports.BEHAVIOR_PROPERTIES = BEHAVIOR_PROPERTIES; exports.PRESENTATION_PROPERTIES = PRESENTATION_PROPERTIES; exports.isIdentityProperty = isIdentityProperty; exports.isBehaviorProperty = isBehaviorProperty; exports.isPresentationProperty = isPresentationProperty; exports.RELATION_TARGET_ANY = RELATION_TARGET_ANY; exports.isUniversalRelation = isUniversalRelation; exports.isBilateralRelation = isBilateralRelation; exports.inferInverseCardinality = inferInverseCardinality; exports.RecordReferencedError = RecordReferencedError; exports.AttributeInUseError = AttributeInUseError; exports.ObjectReferencedError = ObjectReferencedError; exports.getErrorMessage = getErrorMessage; exports.NoopGeocodingAdapter = NoopGeocodingAdapter; exports.SYSTEM_FIELD_NAMES = SYSTEM_FIELD_NAMES; exports.RESERVED_ATTRIBUTE_NAMES = RESERVED_ATTRIBUTE_NAMES; exports.PolicyViolationError = PolicyViolationError; exports.FORBIDDEN_PROPERTY_TYPES = FORBIDDEN_PROPERTY_TYPES; exports.SYSTEM_ATTRIBUTES = SYSTEM_ATTRIBUTES; exports.getSystemAttributeList = getSystemAttributeList; exports.isSystemAttribute = isSystemAttribute; exports.isSystemAttributeObject = isSystemAttributeObject; exports.isSimpleFormNode = isSimpleFormNode; exports.isAdvancedFormNode = isAdvancedFormNode; exports.isStartNode = isStartNode; exports.isFormNode = isFormNode; exports.isConditionNode = isConditionNode; exports.isDocumentNode = isDocumentNode; exports.isEndNode = isEndNode; exports.getNodeOutputs = getNodeOutputs; exports.isConditionRule = isConditionRule; exports.isConditionGroup = isConditionGroup; exports.eq = eq; exports.neq = neq; exports.and = and; exports.or = or; exports.inValues = inValues; exports.isWorkflowDefinition = isWorkflowDefinition; exports.isWorkflowPublished = isWorkflowPublished; exports.isSystemWorkflow = isSystemWorkflow; exports.isInstanceTerminal = isInstanceTerminal; exports.isInstanceWaiting = isInstanceWaiting; exports.canResumeInstance = canResumeInstance; exports.createStartTransition = createStartTransition; exports.isInvitationValid = isInvitationValid; exports.isInvitationAccepted = isInvitationAccepted; exports.isInvitationExpired = isInvitationExpired; exports.isGrantValid = isGrantValid; exports.isGrantRevoked = isGrantRevoked; exports.isTokenRevoked = isTokenRevoked; exports.isGrantExpired = isGrantExpired; exports.canAccessNode = canAccessNode; exports.createEmptyContext = createEmptyContext; exports.getContextValue = getContextValue; exports.setContextValue = setContextValue; exports.DEFAULT_THEME = DEFAULT_THEME; exports.mergeWithDefaults = mergeWithDefaults; exports.generateCssVariables = generateCssVariables; exports.isInstanceEvent = isInstanceEvent; exports.isNodeEvent = isNodeEvent; exports.isInvitationOrGrantEvent = isInvitationOrGrantEvent; exports.ConditionOperatorSchema = ConditionOperatorSchema; exports.ConditionRuleSchema = ConditionRuleSchema; exports.ConditionGroupSchema = ConditionGroupSchema; exports.StartNodeSchema = StartNodeSchema; exports.FormFieldRefSchema = FormFieldRefSchema; exports.FlowRowFieldSchema = FlowRowFieldSchema; exports.FlowRowSchema = FlowRowSchema; exports.FormNodeSchema = FormNodeSchema; exports.ConditionNodeSchema = ConditionNodeSchema; exports.DocumentNodeSchema = DocumentNodeSchema; exports.EndNodeSchema = EndNodeSchema; exports.WorkflowNodeSchema = WorkflowNodeSchema; exports.SlotModeSchema = SlotModeSchema; exports.WorkflowSlotSchema = WorkflowSlotSchema; exports.AuthMethodSchema = AuthMethodSchema; exports.ShareStatusSchema = ShareStatusSchema; exports.WorkflowShareSchema = WorkflowShareSchema; exports.CreateShareInputSchema = CreateShareInputSchema; exports.NodePositionSchema = NodePositionSchema; exports.ViewportSchema = ViewportSchema; exports.WorkflowLayoutSchema = WorkflowLayoutSchema; exports.ThemeColorsSchema = ThemeColorsSchema; exports.ThemeLogoSchema = ThemeLogoSchema; exports.WorkflowThemeSchema = WorkflowThemeSchema; exports.WorkflowConfigSchema = WorkflowConfigSchema; exports.WorkflowStatusSchema = WorkflowStatusSchema; exports.WorkflowDefinitionSchema = WorkflowDefinitionSchema; exports.isEmpty = isEmpty; exports.isNotEmpty = isNotEmpty; exports.toUndefinedIfEmpty = toUndefinedIfEmpty; exports.hasProperties = hasProperties; exports.EMPTY_VALUE_PLACEHOLDER = EMPTY_VALUE_PLACEHOLDER; exports.formatAttributeValue = formatAttributeValue; exports.DEFAULT_LABEL_FALLBACK = DEFAULT_LABEL_FALLBACK; exports.renderLabelExpression = renderLabelExpression; exports.isLabelExpression = isLabelExpression; exports.extractAttributeNames = extractAttributeNames; exports.enrichValuesForDisplay = enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = enrichValuesWithSelectLabels; exports.extractRelationIds = extractRelationIds; exports.computeLabelWithRelations = computeLabelWithRelations; exports.SchemaErrorCode = SchemaErrorCode; exports.SchemaError = SchemaError; exports.NotFoundError = NotFoundError; exports.ObjectNotFoundError = ObjectNotFoundError; exports.AttributeNotFoundError = AttributeNotFoundError; exports.RecordNotFoundError = RecordNotFoundError; exports.UserProfileNotFoundError = UserProfileNotFoundError; exports.FileNotFoundError = FileNotFoundError; exports.ValidationError = ValidationError; exports.ProtectedResourceError = ProtectedResourceError; exports.SyncError = SyncError; exports.NotSystemObjectError = NotSystemObjectError; exports.DuplicateError = DuplicateError; exports.isSchemaError = isSchemaError; exports.isNotFoundError = isNotFoundError; exports.isValidationError = isValidationError; exports.isProtectedResourceError = isProtectedResourceError; exports.ForbiddenError = ForbiddenError; exports.ProtectedRoleError = ProtectedRoleError; exports.RoleNotFoundError = RoleNotFoundError; exports.isForbiddenError = isForbiddenError; exports.ConcurrentModificationError = ConcurrentModificationError; exports.text = text; exports.textarea = textarea; exports.richtext = richtext; exports.number = number; exports.checkbox = checkbox; exports.date = date; exports.phone = phone; exports.currency = currency; exports.status = status; exports.select = select; exports.multiselect = multiselect; exports.location = location; exports.file = file; exports.user = user; exports.relation = relation; exports.rating = rating; exports.formula = formula; exports.rollup = rollup; exports.document = document; exports.ObjectBuilder = ObjectBuilder; exports.object = object; exports.GroupBuilder = GroupBuilder; exports.RelationGroupBuilder = RelationGroupBuilder; exports.TableTabConfig = TableTabConfig; exports.CustomTabConfig = CustomTabConfig; exports.RichtextTabConfig = RichtextTabConfig; exports.ActivityTabConfig = ActivityTabConfig; exports.FlowsTabConfig = FlowsTabConfig; exports.DocumentsTabConfig = DocumentsTabConfig; exports.TabBuilder = TabBuilder; exports.DetailViewBuilder = DetailViewBuilder; exports.ViewBuilder = ViewBuilder; exports.detailView = detailView; exports.view = view; exports.ListViewBuilder = ListViewBuilder; exports.ListViewTabConfigBuilder = ListViewTabConfigBuilder; exports.listView = listView; exports.group = group; exports.relationGroup = relationGroup; exports.WorkflowFormRowBuilder = WorkflowFormRowBuilder; exports.WorkflowFormBuilder = WorkflowFormBuilder; exports.WorkflowSimpleFormBuilder = WorkflowSimpleFormBuilder; exports.WorkflowConditionBuilder = WorkflowConditionBuilder; exports.WorkflowEndBuilder = WorkflowEndBuilder; exports.WorkflowStartBuilder = WorkflowStartBuilder; exports.WorkflowBuilder = WorkflowBuilder; exports.workflow = workflow; exports.registry = registry; exports.SYSTEM_TEMPLATE_IDS = SYSTEM_TEMPLATE_IDS; exports.FRENCH_ID_CARD = FRENCH_ID_CARD; exports.PASSPORT = PASSPORT; exports.DRIVING_LICENSE = DRIVING_LICENSE; exports.PROOF_OF_ADDRESS = PROOF_OF_ADDRESS; exports.SIGNABLE_CONTRACT = SIGNABLE_CONTRACT; exports.GENERIC_DOCUMENT = GENERIC_DOCUMENT; exports.SYSTEM_TEMPLATES = SYSTEM_TEMPLATES; exports.getSystemTemplate = getSystemTemplate; exports.isSystemTemplate = isSystemTemplate; exports.WorkflowJwtService = WorkflowJwtService; exports.hashOptions = hashOptions; exports.cacheKeys = cacheKeys; exports.cacheTtl = cacheTtl; exports.defaultTtl = defaultTtl; exports.NoopCacheAdapter = NoopCacheAdapter; exports.formatRecord = formatRecord; exports.formatRecords = formatRecords; exports.createDefaultState = createDefaultState; exports.SHORTCUT_TO_FILTER_OPERATOR = SHORTCUT_TO_FILTER_OPERATOR; exports.QueryNoResultError = QueryNoResultError; exports.QueryMultipleResultsError = QueryMultipleResultsError; exports.TenantContextError = TenantContextError; exports.FeatureFlagsContextError = FeatureFlagsContextError; exports.isFeatureEnabled = isFeatureEnabled; exports.getFeatureValue = getFeatureValue; exports.getFeatureFlags = getFeatureFlags; exports.tryGetFeatureValue = tryGetFeatureValue; exports.hasFeatureFlagsContext = hasFeatureFlagsContext; exports.runWithFeatureFlags = runWithFeatureFlags; exports.withFeatureFlags = withFeatureFlags; exports.getSchemaFromContext = getSchemaFromContext; exports.getSchemaByNameFromContext = getSchemaByNameFromContext; exports.hasSchemaContext = hasSchemaContext; exports.getSchemaContext = getSchemaContext; exports.addSchemaToContext = addSchemaToContext; exports.runWithSchemaContext = runWithSchemaContext; exports.runWithMergedSchemaContext = runWithMergedSchemaContext; exports.getContext = getContext2; exports.getTenantId = getTenantId; exports.getUserId = getUserId; exports.hasContext = hasContext; exports.runWithContext = runWithContext; exports.withTenantContext = withTenantContext; exports.QueryBuilder = QueryBuilder; exports.createQueryBuilder = createQueryBuilder; exports.evaluateCondition = evaluateCondition; exports.evaluate = evaluate; exports.evaluateWithTrace = evaluateWithTrace; exports.ExecutorRegistry = ExecutorRegistry; exports.success = success; exports.wait = wait; exports.complete = complete; exports.error = error; exports.ConditionExecutor = ConditionExecutor; exports.DocumentExecutor = DocumentExecutor; exports.EndExecutor = EndExecutor; exports.FormExecutor = FormExecutor; exports.StartExecutor = StartExecutor; exports.createDefaultExecutorRegistry = createDefaultExecutorRegistry; exports.getDefaultExecutorRegistry = getDefaultExecutorRegistry; exports.evaluateFormula = evaluateFormula; exports.evaluateFormulaWithResult = evaluateFormulaWithResult; exports.formatFormulaResult = formatFormulaResult; exports.evaluateFormulaAttribute = evaluateFormulaAttribute; exports.validateFormulaExpression = validateFormulaExpression; exports.extractFormulaVariables = extractFormulaVariables; exports.extractRelationReferences = extractRelationReferences; exports.extractRelationNames = extractRelationNames; exports.hasRelationReferences = hasRelationReferences; exports.flattenRelationsForEval = flattenRelationsForEval; exports.evaluateFormulaWithRelations = evaluateFormulaWithRelations; exports.evaluateFormulaAttributeWithRelations = evaluateFormulaAttributeWithRelations; exports.InvalidPathError = InvalidPathError; exports.MaxDepthExceededError = MaxDepthExceededError; exports.parsePath = parsePath; exports.validatePath = validatePath; exports.pathHasManyCardinality = pathHasManyCardinality; exports.getPathDepth = getPathDepth; exports.getTargetAttributeName = getTargetAttributeName; exports.getRelationPath = getRelationPath; exports.traversePath = traversePath; exports.resolveSingleValue = resolveSingleValue; exports.resolveMultiplePaths = resolveMultiplePaths; exports.NoopHookRegistry = NoopHookRegistry; exports.createMockAdapter = createMockAdapter; exports.PolicyRegistry = PolicyRegistry; exports.defaultPolicyRegistry = defaultPolicyRegistry; exports.BaseService = BaseService; exports.BaseRepository = BaseRepository; exports.SchemaContextAwareRepository = SchemaContextAwareRepository; exports.buildAuditChanges = buildAuditChanges; exports.ObjectSchemaService = ObjectSchemaService; exports.AuditService = AuditService; exports.UserService = UserService; exports.applyDefaultValues = applyDefaultValues; exports.checkPermission = checkPermission; exports.getPolicy = getPolicy; exports.buildPolicyContext = buildPolicyContext; exports.checkRecordAccess = checkRecordAccess; exports.checkRecordModifyOrThrow = checkRecordModifyOrThrow; exports.checkRecordDeleteOrThrow = checkRecordDeleteOrThrow; exports.checkSharedObjectWriteAccess = checkSharedObjectWriteAccess; exports.computeLabel = computeLabel; exports.enrichWithFormulas = enrichWithFormulas; exports.enrichRecordsWithFormulas = enrichRecordsWithFormulas; exports.createContextForCreate = createContextForCreate; exports.createContextForUpdate = createContextForUpdate; exports.createContextForDelete = createContextForDelete; exports.createContextForRestore = createContextForRestore; exports.recalculateParentRollups = recalculateParentRollups; exports.RelationPropertiesService = RelationPropertiesService; exports.RecordQueryService = RecordQueryService; exports.RecordResolverService = RecordResolverService; exports.RelationService = RelationService; exports.RollupService = RollupService; exports.RecordService = RecordService; exports.FormulaResolverService = FormulaResolverService; exports.RollupScheduler = RollupScheduler; exports.DocumentRenderError = DocumentRenderError; exports.StorageDownloadNotSupportedError = StorageDownloadNotSupportedError; exports.DocumentRendererService = DocumentRendererService; exports.DocumentProcessingHook = DocumentProcessingHook; exports.GrantNotFoundError = GrantNotFoundError; exports.GrantExpiredError = GrantExpiredError; exports.GrantRevokedError = GrantRevokedError; exports.TokenRevokedError = TokenRevokedError; exports.WorkflowAccessGrantService = WorkflowAccessGrantService; exports.WorkflowInstanceService = WorkflowInstanceService; exports.InvitationNotFoundError = InvitationNotFoundError; exports.InvitationExpiredError = InvitationExpiredError; exports.InvitationAlreadyAcceptedError = InvitationAlreadyAcceptedError; exports.InvitationRevokedError = InvitationRevokedError; exports.WorkflowInvitationService = WorkflowInvitationService; exports.WorkflowRelationService = WorkflowRelationService; exports.WorkflowService = WorkflowService; exports.UserProfileService = UserProfileService; exports.DocumentGenerationTemplateNotFoundError = DocumentGenerationTemplateNotFoundError; exports.DocumentGenerationNotConfiguredError = DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = DocumentGenerationService; exports.DocumentTemplateService = DocumentTemplateService; exports.DocumentService = DocumentService; exports.DocumentProcessingService = DocumentProcessingService; exports.FileService = FileService; exports.GeocodingService = GeocodingService; exports.GlobalSearchService = GlobalSearchService; exports.PermissionService = PermissionService; exports.ViewService = ViewService; exports.seedRegistryViews = seedRegistryViews; exports.syncNativeViews = syncNativeViews; exports.verifyRegistryViewsSeeded = verifyRegistryViewsSeeded; exports.verifyNativeViewsSync = verifyNativeViewsSync; exports.getViewSeedPreview = getViewSeedPreview; exports.getViewSyncPreview = getViewSyncPreview; exports.syncNativeObjects = syncNativeObjects; exports.verifyNativeObjectsSync = verifyNativeObjectsSync; exports.getSyncPreview = getSyncPreview; exports.syncAll = syncAll;
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField,
|
|
2
|
-
export { ac as AIBatchQuestion, ad as AIBatchQuestionAnswer, ab as AIBatchQuestionOption, a6 as AIChatMessage, a5 as AIChatMessagePart, a0 as AIChatMessagePartType, ai as AIConversation, f_ as AIConversationsRepository, aj as AIMessage, ah as AIMessageAttachment, Y as AIMessageRole, an as AIProviderMetrics, a9 as AIQuestion, aa as AIQuestionAnswer, a8 as AIQuestionOption, a7 as AIQuestionType, Z as AIThinkingLevel, af as AITodoItem, ag as AITodoList, ae as AITodoStatus, $ as AIToolCall, ak as AIToolCallRecord, _ as AIToolCallStatus, am as AIUsageMetrics, f$ as AIUsageMetricsRepository, al as AIUserMemory, g0 as AIUserMemoryRepository, cq as ActivityTab, bJ as AddAttribute, go as AddAttributeInput, bi as AdvancedFilterState, c9 as AssignRoleInput, fP as AttributeChange, bI as AttributeMap, bE as AttributeSchema, g1 as AttributesRepository, aq as AuditAction, ar as AuditActorType, as as AuditChange, av as AuditListOptions, at as AuditLogEntry, g2 as AuditRepository, ap as AuditResourceType, hE as AuditService, aw as AuditServiceOptions, gk as BaseRepository, gj as BaseService, B as BoundingBox, ed as CacheAdapter, eb as CacheKeyType, ee as CacheOptions, cw as CalendarViewConfig, cA as CalendarViewDefinition, de as CanvasViewport, b4 as CheckboxFilterOperator, fg as ConditionExecutor, cT as ConditionNode, d6 as ConditionOperator, cD as ConfigOverrides, ao as CreateAIMessageInput, au as CreateAuditLogInput, gn as CreateCustomObjectInput, iA as CreateDBAttribute, iw as CreateDBObject, iM as CreateDBView, iQ as CreateDBViewOverlay, iT as CreateDBWorkflow, j0 as CreateDBWorkflowAccessGrant, iW as CreateDBWorkflowInstance, iZ as CreateDBWorkflowInvitation, aP as CreateDocument, aB as CreateDocumentGenerationTemplate, aT as CreateDocumentSlot, aR as CreateDocumentTemplate, b0 as CreateFile, dC as CreateGrantInput, hi as CreateGrantResult, dv as CreateInvitationInput, dw as CreateInvitationResult, iD as CreateObjectRecord, c8 as CreatePermissionInput, aV as CreateProcessingJob, hT as CreateRecordDocumentInput, hU as CreateRecordDocumentResult, c6 as CreateRoleInput, z as CreateSignatureInput, cg as CreateUserProfile, i1 as CreateViewInput, hv as CreateWorkflowInput, bb as CurrencyFilterValue, bN as CustomAttributeValue, cp as CustomTab, iz as DBAttribute, iv as DBObject, iL as DBView, iP as DBViewOverlay, iS as DBWorkflow, i$ as DBWorkflowAccessGrant, iV as DBWorkflowInstance, iY as DBWorkflowInvitation, il as DEFAULT_LABEL_FALLBACK, dX as DEFAULT_THEME, e4 as DatabaseAdapter, b5 as DateFilterOperator, cv as DetailViewConfig, aI as Document, aF as DocumentAutoProcessing, U as DocumentData, fh as DocumentExecutor, hH as DocumentGenerationNotConfiguredError, hI as DocumentGenerationService, aA as DocumentGenerationTemplate, g3 as DocumentGenerationTemplateListOptions, hG as DocumentGenerationTemplateNotFoundError, g4 as DocumentGenerationTemplatesRepository, g5 as DocumentJobsRepository, aX as DocumentListOptions, cU as DocumentNode, hJ as DocumentProcessingConfig, hc as DocumentProcessingHook, hb as DocumentProcessingHookOptions, hK as DocumentProcessingService, hO as DocumentRenderError, hM as DocumentRendererOptions, hQ as DocumentRendererService, hW as DocumentService, hV as DocumentServiceOptions, aK as DocumentSlot, aE as DocumentSlotDefinition, g6 as DocumentSlotsRepository, aJ as DocumentStatus, aY as DocumentTemplateListOptions, hR as DocumentTemplateService, g8 as DocumentTemplatesRepository, g7 as DocumentsRepository, ct as DocumentsTab, c3 as EffectivePermissions, fi as EndExecutor, cV as EndNode, eA as EvaluationResult, eB as EvaluationTrace, f4 as ExecutorCompleteResult, f5 as ExecutorContext, f6 as ExecutorErrorResult, fd as ExecutorRegistry, f7 as ExecutorResult, f8 as ExecutorSuccessResult, f9 as ExecutorWaitResult, bf as ExtendedFilterRule, bX as ExtractAttributes, bZ as ExtractObjectRecord, b_ as ExtractObjectRecordWithCustom, bR as ExtractRecord, bT as ExtractRecordInput, bU as ExtractRecordInputStrict, bS as ExtractRecordStrict, bV as ExtractRecordUpdate, bW as ExtractRecordUpdateStrict, aH as ExtractionField, aG as ExtractionMapping, eO as FeatureFlagsContext, eG as FeatureFlagsContextError, ej as FetchResult, a$ as File, i6 as FileContent, iK as FileListOptions, hY as FileService, hX as FileServiceOptions, a_ as FileVisibility, g9 as FilesRepository, bg as FilterCombinator, bh as FilterGroup, b9 as FilterOperator, be as FilterRule, bd as FilterValue, bu as FlowDefinition, br as FlowPage, bs as FlowRelation, bq as FlowRowField, bp as FlowSlot, bt as FlowStatus, cs as FlowsTab, dO as FormContextResponse, ck as FormDensity, fj as FormExecutor, dP as FormFieldContext, cW as FormFieldRef, dQ as FormFieldRow, cX as FormNode, dR as FormNodeInfo, cl as FormTab, ek as FormattedRecord, gP as FormulaResolverService, gO as FormulaResolverServiceOptions, fx as FormulaResult, ij as FullSyncOptions, ii as FullSyncResult, cy as GalleryViewConfig, cC as GalleryViewDefinition, dJ as GeneratedDocument, bC as GeocodingAdapter, bz as GeocodingAutocompleteParams, bB as GeocodingParams, hZ as GeocodingService, by as GeocodingSuggestion, gD as GetRelationOptionsParams, i4 as GetViewOptions, i3 as GetViewsOptions, iH as GlobalSearchGroupedOptions, iJ as GlobalSearchGroupedResult, iG as GlobalSearchOptions, iI as GlobalSearchResultItem, h_ as GlobalSearchService, he as GrantExpiredError, hd as GrantNotFoundError, hf as GrantRevokedError, hh as GrantServiceConfig, el as GroupedFetchResult, fQ as HookContext, fR as HookDefinition, fS as HookHandler, fV as HookRegistry, fT as HookType, gK as HybridRelationValue, P as IdentityVerificationAdapter, bK as InferRecord, bF as InferRecordFromSchema, bL as InferRecordInput, bM as InferRecordUpdate, bG as InferRecordWithRequirements, em as InsertOptions, fB as InvalidPathError, cn as InverseSource, hr as InvitationAlreadyAcceptedError, hq as InvitationExpiredError, hp as InvitationNotFoundError, hs as InvitationRevokedError, ho as InvitationServiceConfig, dx as InvitationStatus, ci as InviteUserInput, e6 as JwtVerificationResult, h2 as LabelResolver, iE as ListOptions, cu as ListViewLayout, e7 as MagicLinkPayload, fC as MaxDepthExceededError, fX as MockStores, gI as MultiRelationValue, b7 as MultiselectFilterOperator, bn as NO_VALUE_OPERATORS, bm as NoValueOperator, fa as NodeExecutor, df as NodePosition, ei as NoopCacheAdapter, bD as NoopGeocodingAdapter, fU as NoopHookRegistry, b3 as NumberFilterOperator, bl as OPERATORS_BY_TYPE, c4 as ObjectPermissions, ga as ObjectRecordsRepository, gr as ObjectSchemaService, gq as ObjectSchemaServiceOptions, gb as ObjectsRepository, s as OcrAdapter, t as OcrInput, u as OcrOptions, w as OcrPage, v as OcrResult, x as OcrTextBlock, j2 as OperationResult, fG as PathCardinality, fH as PathSegment, fI as PathSegmentType, ay as PdfTemplateField, dm as PendingAction, aD as PendingDocumentRequest, c1 as Permission, b$ as PermissionScope, i0 as PermissionService, h$ as PermissionServiceOptions, gc as PermissionsRepository, bc as PhoneFilterValue, ca as PolicyContext, fZ as PolicyRegistry, cc as PolicyViolationError, aM as ProcessingJob, aO as ProcessingJobStatus, aN as ProcessingJobType, ey as QueryBuilder, ez as QueryBuilderOptions, en as QueryBuilderState, eu as QueryMultipleResultsError, ev as QueryNoResultError, gv as QueryOptions, gx as QueryResult, bk as QueryState, dS as ReadOnlyReason, a4 as ReasoningPartData, hS as RecordDocumentsResult, bP as RecordMetadata, cb as RecordPolicy, gy as RecordQueryService, gu as RecordQueryServiceOptions, gM as RecordResolverService, gt as RecordService, gs as RecordServiceOptions, eo as RegistryMap, ep as RegistryObjectNames, e1 as RelationAttributeInput, e2 as RelationAttributeRow, e3 as RelationAttributesRepository, b8 as RelationFilterOperator, it as RelationLabelResolver, gB as RelationOption, gC as RelationOptionsResponse, gL as RelationPropertiesService, gH as RelationService, gE as RelationServiceOptions, cm as RelationSource, gA as RelationValidationError, gz as RelationValidationResult, ba as RelativeDateValue, hL as RenderDocumentInput, hN as RenderDocumentResult, gF as ResolveIdsBatchRequest, gG as ResolveIdsBatchResponse, gN as ResolvedRelations, hl as ResumeWorkflowInput, bA as ReverseGeocodingParams, cr as RichtextTab, c0 as Role, ha as RollupCascadeContext, gQ as RollupResult, gU as RollupScheduler, gT as RollupSchedulerOptions, gS as RollupService, gR as RollupServiceOptions, ew as SHORTCUT_TO_FILTER_OPERATOR, eW as SchemaContext, gl as SchemaContextAware, gm as SchemaContextAwareRepository, fJ as SchemaResolver, iF as SearchOptions, gw as SearchQueryOptions, b6 as SelectFilterOperator, eq as ShortcutOperator, y as SignatureAdapter, H as SignaturePosition, J as SignatureRequestResult, N as SignatureStatus, K as SignatureStatusResult, i9 as SignedUrlOptions, E as SignerRequest, M as SignerStatus, gJ as SingleRelationValue, aL as SlotStatus, bj as SortDirection, fk as StartExecutor, cY as StartNode, hk as StartWorkflowInput, ia as StorageAdapter, hP as StorageDownloadNotSupportedError, aZ as StorageProvider, i7 as StorageUploadInput, i8 as StorageUploadResult, id as SyncOptions, ic as SyncResult, bQ as SystemFields, c5 as SystemPermissions, cj as TabType, co as TableSource, az as TemplateSource, f1 as TenantContext, eF as TenantContextError, b2 as TextFilterOperator, a1 as TextPartData, dU as ThemeColors, dV as ThemeLogo, dW as ThemeTypography, a3 as ThinkingPartData, cx as TimelineViewConfig, cB as TimelineViewDefinition, hg as TokenRevokedError, a2 as ToolPartData, fN as TraversalOptions, fO as TraversalResult, bH as TypedAttribute, bY as TypedObjectRecord, iB as UpdateDBAttribute, ix as UpdateDBObject, iN as UpdateDBView, iR as UpdateDBViewOverlay, iU as UpdateDBWorkflow, j1 as UpdateDBWorkflowAccessGrant, iX as UpdateDBWorkflowInstance, i_ as UpdateDBWorkflowInvitation, aQ as UpdateDocument, aC as UpdateDocumentGenerationTemplate, aU as UpdateDocumentSlot, aS as UpdateDocumentTemplate, b1 as UpdateFile, gp as UpdateObjectInput, aW as UpdateProcessingJob, c7 as UpdateRoleInput, ch as UpdateUserProfile, i2 as UpdateViewInput, hw as UpdateWorkflowInput, ib as UploadFileInput, iC as UpsertDBAttribute, iy as UpsertDBObject, iO as UpsertDBView, cf as UserProfile, hD as UserProfileService, hC as UserProfileServiceOptions, gd as UserProfilesRepository, cd as UserRole, c2 as UserRoleAssignment, hB as UserService, ce as UserStatus, hA as UserValidationError, hz as UserValidationResult, ax as VariableMapping, X as VerificationCheck, R as VerificationResult, Q as VerifyInput, cz as ViewConfig, cE as ViewOverlay, e0 as ViewOverlaysRepository, i5 as ViewService, j4 as ViewSyncLogger, j5 as ViewSyncOptions, j3 as ViewSyncResult, ge as ViewsRepository, bO as WithCustomAttributes, dD as WorkflowAccessGrant, hj as WorkflowAccessGrantService, gf as WorkflowAccessGrantsRepository, dT as WorkflowAccessMode, e8 as WorkflowAccessPayload, dn as WorkflowError, dK as WorkflowExecutionContext, dp as WorkflowInstance, hn as WorkflowInstanceService, hm as WorkflowInstanceServiceOptions, gg as WorkflowInstancesRepository, dy as WorkflowInvitation, ht as WorkflowInvitationService, gh as WorkflowInvitationsRepository, e9 as WorkflowJwtConfig, ea as WorkflowJwtPayload, e5 as WorkflowJwtService, dg as WorkflowLayout, cZ as WorkflowNodeType, hu as WorkflowRelationService, hy as WorkflowService, hx as WorkflowServiceOptions, dh as WorkflowSlot, di as WorkflowStatus, dq as WorkflowTransition, gi as WorkflowsRepository, eP as addSchemaToContext, d7 as and, gV as applyDefaultValues, hF as buildAuditChanges, gY as buildPolicyContext, ef as cacheKeys, eg as cacheTtl, dE as canAccessNode, dr as canResumeInstance, gW as checkPermission, gZ as checkRecordAccess, g$ as checkRecordDeleteOrThrow, g_ as checkRecordModifyOrThrow, h0 as checkSharedObjectWriteAccess, fb as complete, h1 as computeLabel, iu as computeLabelWithRelations, h5 as createContextForCreate, h7 as createContextForDelete, h8 as createContextForRestore, h6 as createContextForUpdate, f2 as createDefaultExecutorRegistry, er as createDefaultState, dL as createEmptyContext, fW as createMockAdapter, ex as createQueryBuilder, ds as createStartTransition, fY as defaultPolicyRegistry, eh as defaultTtl, h4 as enrichRecordsWithFormulas, iq as enrichValuesForDisplay, ir as enrichValuesWithSelectLabels, h3 as enrichWithFormulas, d8 as eq, fc as error, eD as evaluate, eC as evaluateCondition, fl as evaluateFormula, fm as evaluateFormulaAttribute, fn as evaluateFormulaAttributeWithRelations, fo as evaluateFormulaWithRelations, fp as evaluateFormulaWithResult, eE as evaluateWithTrace, ip as extractAttributeNames, fq as extractFormulaVariables, is as extractRelationIds, fr as extractRelationNames, fs as extractRelationReferences, ft as flattenRelationsForEval, fu as formatFormulaResult, es as formatRecord, et as formatRecords, dY as generateCssVariables, eX as getContext, dM as getContextValue, f3 as getDefaultExecutorRegistry, eH as getFeatureFlags, eI as getFeatureValue, c_ as getNodeOutputs, fy as getPathDepth, gX as getPolicy, fz as getRelationPath, eQ as getSchemaByNameFromContext, eR as getSchemaContext, eS as getSchemaFromContext, ih as getSyncPreview, fA as getTargetAttributeName, eY as getTenantId, eZ as getUserId, ja as getViewSeedPreview, jb as getViewSyncPreview, e_ as hasContext, eJ as hasFeatureFlagsContext, fv as hasRelationReferences, eT as hasSchemaContext, ec as hashOptions, d9 as inValues, cP as isActivityTab, c$ as isAdvancedFormNode, cH as isCalendarView, da as isConditionGroup, d0 as isConditionNode, db as isConditionRule, cO as isCustomTab, cF as isDetailView, d1 as isDocumentNode, cS as isDocumentsTab, d2 as isEndNode, eK as isFeatureEnabled, bv as isFlowDefinition, bw as isFlowPublished, cR as isFlowsTab, d3 as isFormNode, cK as isFormTab, cJ as isGalleryView, dF as isGrantExpired, dG as isGrantRevoked, dH as isGrantValid, dt as isInstanceTerminal, du as isInstanceWaiting, cN as isInverseSourceTab, dz as isInvitationAccepted, dA as isInvitationExpired, dB as isInvitationValid, io as isLabelExpression, cG as isListView, bo as isNoValueOperator, cM as isRelationSourceTab, cQ as isRichtextTab, d4 as isSimpleFormNode, d5 as isStartNode, bx as isSystemFlow, dj as isSystemWorkflow, cL as isTableTab, cI as isTimelineView, dI as isTokenRevoked, dk as isWorkflowDefinition, dl as isWorkflowPublished, dZ as mergeWithDefaults, dc as neq, dd as or, fD as parsePath, fE as pathHasManyCardinality, h9 as recalculateParentRollups, d_ as registry, im as renderLabelExpression, fK as resolveMultiplePaths, fL as resolveSingleValue, e$ as runWithContext, eL as runWithFeatureFlags, eU as runWithMergedSchemaContext, eV as runWithSchemaContext, j6 as seedRegistryViews, dN as setContextValue, fe as success, ik as syncAll, ie as syncNativeObjects, j7 as syncNativeViews, fM as traversePath, eM as tryGetFeatureValue, fw as validateFormulaExpression, fF as validatePath, ig as verifyNativeObjectsSync, j9 as verifyNativeViewsSync, j8 as verifyRegistryViewsSeeded, d$ as viewRegistry, ff as wait, eN as withFeatureFlags, f0 as withTenantContext } from './runtime-D52-pPFI.mjs';
|
|
1
|
+
import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField, b as FieldGroup, R as RelationGroup, D as DetailViewLayout, c as SidePanelConfig, G as Group, d as DetailViewDefinition, e as InstanceStatus, T as Tab, f as TableTab, C as CreateMode, g as FilterState, h as SortRule, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, k as ConditionGroup, l as ConditionRule, m as WorkflowNode, n as WorkflowDefinition, o as FlowRow, p as ListViewConfig, q as ListViewTab, V as ViewType, r as ViewDefinition, s as DocumentTemplate } from './runtime-DQlTgVZJ.mjs';
|
|
2
|
+
export { ae as AIBatchQuestion, af as AIBatchQuestionAnswer, ad as AIBatchQuestionOption, a8 as AIChatMessage, a7 as AIChatMessagePart, a2 as AIChatMessagePartType, ak as AIConversation, g2 as AIConversationsRepository, al as AIMessage, aj as AIMessageAttachment, _ as AIMessageRole, ap as AIProviderMetrics, ab as AIQuestion, ac as AIQuestionAnswer, aa as AIQuestionOption, a9 as AIQuestionType, $ as AIThinkingLevel, ah as AITodoItem, ai as AITodoList, ag as AITodoStatus, a1 as AIToolCall, am as AIToolCallRecord, a0 as AIToolCallStatus, ao as AIUsageMetrics, g3 as AIUsageMetricsRepository, an as AIUserMemory, g4 as AIUserMemoryRepository, cs as ActivityTab, bL as AddAttribute, gs as AddAttributeInput, bk as AdvancedFilterState, cb as AssignRoleInput, fT as AttributeChange, bK as AttributeMap, bG as AttributeSchema, g5 as AttributesRepository, as as AuditAction, at as AuditActorType, au as AuditChange, ax as AuditListOptions, av as AuditLogEntry, g6 as AuditRepository, ar as AuditResourceType, hI as AuditService, ay as AuditServiceOptions, go as BaseRepository, gn as BaseService, B as BoundingBox, eh as CacheAdapter, ef as CacheKeyType, ei as CacheOptions, cy as CalendarViewConfig, cC as CalendarViewDefinition, di as CanvasViewport, b6 as CheckboxFilterOperator, fk as ConditionExecutor, cX as ConditionNode, da as ConditionOperator, cF as ConfigOverrides, aq as CreateAIMessageInput, aw as CreateAuditLogInput, gr as CreateCustomObjectInput, iE as CreateDBAttribute, iA as CreateDBObject, iQ as CreateDBView, iU as CreateDBViewOverlay, iX as CreateDBWorkflow, j4 as CreateDBWorkflowAccessGrant, i_ as CreateDBWorkflowInstance, j1 as CreateDBWorkflowInvitation, aR as CreateDocument, aD as CreateDocumentGenerationTemplate, aV as CreateDocumentSlot, aT as CreateDocumentTemplate, b2 as CreateFile, dG as CreateGrantInput, hm as CreateGrantResult, dz as CreateInvitationInput, dA as CreateInvitationResult, iH as CreateObjectRecord, ca as CreatePermissionInput, aX as CreateProcessingJob, hX as CreateRecordDocumentInput, hY as CreateRecordDocumentResult, c8 as CreateRoleInput, E as CreateSignatureInput, ci as CreateUserProfile, i5 as CreateViewInput, hz as CreateWorkflowInput, bd as CurrencyFilterValue, bP as CustomAttributeValue, cr as CustomTab, iD as DBAttribute, iz as DBObject, iP as DBView, iT as DBViewOverlay, iW as DBWorkflow, j3 as DBWorkflowAccessGrant, iZ as DBWorkflowInstance, j0 as DBWorkflowInvitation, iq as DEFAULT_LABEL_FALLBACK, d$ as DEFAULT_THEME, e8 as DatabaseAdapter, b7 as DateFilterOperator, cx as DetailViewConfig, aK as Document, aH as DocumentAutoProcessing, Y as DocumentData, fl as DocumentExecutor, hL as DocumentGenerationNotConfiguredError, hM as DocumentGenerationService, aC as DocumentGenerationTemplate, g7 as DocumentGenerationTemplateListOptions, hK as DocumentGenerationTemplateNotFoundError, g8 as DocumentGenerationTemplatesRepository, g9 as DocumentJobsRepository, aZ as DocumentListOptions, cY as DocumentNode, hN as DocumentProcessingConfig, hg as DocumentProcessingHook, hf as DocumentProcessingHookOptions, hO as DocumentProcessingService, hS as DocumentRenderError, hQ as DocumentRendererOptions, hU as DocumentRendererService, h_ as DocumentService, hZ as DocumentServiceOptions, aM as DocumentSlot, aG as DocumentSlotDefinition, ga as DocumentSlotsRepository, aL as DocumentStatus, a_ as DocumentTemplateListOptions, hV as DocumentTemplateService, gc as DocumentTemplatesRepository, gb as DocumentsRepository, cv as DocumentsTab, c5 as EffectivePermissions, fm as EndExecutor, cZ as EndNode, eE as EvaluationResult, eF as EvaluationTrace, f8 as ExecutorCompleteResult, f9 as ExecutorContext, fa as ExecutorErrorResult, fh as ExecutorRegistry, fb as ExecutorResult, fc as ExecutorSuccessResult, fd as ExecutorWaitResult, bh as ExtendedFilterRule, bZ as ExtractAttributes, b$ as ExtractObjectRecord, c0 as ExtractObjectRecordWithCustom, bT as ExtractRecord, bV as ExtractRecordInput, bW as ExtractRecordInputStrict, bU as ExtractRecordStrict, bX as ExtractRecordUpdate, bY as ExtractRecordUpdateStrict, aJ as ExtractionField, aI as ExtractionMapping, eS as FeatureFlagsContext, eK as FeatureFlagsContextError, en as FetchResult, b1 as File, ia as FileContent, iO as FileListOptions, i0 as FileService, h$ as FileServiceOptions, b0 as FileVisibility, gd as FilesRepository, bi as FilterCombinator, bj as FilterGroup, bb as FilterOperator, bg as FilterRule, bf as FilterValue, bw as FlowDefinition, bt as FlowPage, bu as FlowRelation, bs as FlowRowField, br as FlowSlot, bv as FlowStatus, cu as FlowsTab, dS as FormContextResponse, cm as FormDensity, fn as FormExecutor, dT as FormFieldContext, c_ as FormFieldRef, dU as FormFieldRow, c$ as FormNode, dV as FormNodeInfo, cn as FormTab, eo as FormattedRecord, gT as FormulaResolverService, gS as FormulaResolverServiceOptions, fB as FormulaResult, io as FullSyncOptions, im as FullSyncResult, cA as GalleryViewConfig, cE as GalleryViewDefinition, dN as GeneratedDocument, bE as GeocodingAdapter, bB as GeocodingAutocompleteParams, bD as GeocodingParams, i1 as GeocodingService, bA as GeocodingSuggestion, gH as GetRelationOptionsParams, i8 as GetViewOptions, i7 as GetViewsOptions, iL as GlobalSearchGroupedOptions, iN as GlobalSearchGroupedResult, iK as GlobalSearchOptions, iM as GlobalSearchResultItem, i2 as GlobalSearchService, hi as GrantExpiredError, hh as GrantNotFoundError, hj as GrantRevokedError, hl as GrantServiceConfig, ep as GroupedFetchResult, fU as HookContext, fV as HookDefinition, fW as HookHandler, fZ as HookRegistry, fX as HookType, gO as HybridRelationValue, Q as IdentityVerificationAdapter, bM as InferRecord, bH as InferRecordFromSchema, bN as InferRecordInput, bO as InferRecordUpdate, bI as InferRecordWithRequirements, eq as InsertOptions, fF as InvalidPathError, cp as InverseSource, hv as InvitationAlreadyAcceptedError, hu as InvitationExpiredError, ht as InvitationNotFoundError, hw as InvitationRevokedError, hs as InvitationServiceConfig, dB as InvitationStatus, ck as InviteUserInput, ea as JwtVerificationResult, h6 as LabelResolver, iI as ListOptions, cw as ListViewLayout, eb as MagicLinkPayload, fG as MaxDepthExceededError, f$ as MockStores, gM as MultiRelationValue, b9 as MultiselectFilterOperator, bp as NO_VALUE_OPERATORS, bo as NoValueOperator, fe as NodeExecutor, dj as NodePosition, em as NoopCacheAdapter, bF as NoopGeocodingAdapter, fY as NoopHookRegistry, b5 as NumberFilterOperator, bn as OPERATORS_BY_TYPE, c6 as ObjectPermissions, ge as ObjectRecordsRepository, gv as ObjectSchemaService, gu as ObjectSchemaServiceOptions, gf as ObjectsRepository, t as OcrAdapter, u as OcrInput, v as OcrOptions, x as OcrPage, w as OcrResult, y as OcrTextBlock, j6 as OperationResult, fK as PathCardinality, fL as PathSegment, fM as PathSegmentType, aA as PdfTemplateField, dr as PendingAction, aF as PendingDocumentRequest, c3 as Permission, c1 as PermissionScope, i4 as PermissionService, i3 as PermissionServiceOptions, gg as PermissionsRepository, be as PhoneFilterValue, cc as PolicyContext, g1 as PolicyRegistry, ce as PolicyViolationError, aO as ProcessingJob, aQ as ProcessingJobStatus, aP as ProcessingJobType, eC as QueryBuilder, eD as QueryBuilderOptions, er as QueryBuilderState, ey as QueryMultipleResultsError, ez as QueryNoResultError, gz as QueryOptions, gB as QueryResult, bm as QueryState, dW as ReadOnlyReason, a6 as ReasoningPartData, hW as RecordDocumentsResult, bR as RecordMetadata, cd as RecordPolicy, gC as RecordQueryService, gy as RecordQueryServiceOptions, gQ as RecordResolverService, gx as RecordService, gw as RecordServiceOptions, es as RegistryMap, et as RegistryObjectNames, e5 as RelationAttributeInput, e6 as RelationAttributeRow, e7 as RelationAttributesRepository, ba as RelationFilterOperator, ix as RelationLabelResolver, gF as RelationOption, gG as RelationOptionsResponse, gP as RelationPropertiesService, gL as RelationService, gI as RelationServiceOptions, co as RelationSource, gE as RelationValidationError, gD as RelationValidationResult, bc as RelativeDateValue, hP as RenderDocumentInput, hR as RenderDocumentResult, gJ as ResolveIdsBatchRequest, gK as ResolveIdsBatchResponse, gR as ResolvedRelations, hp as ResumeWorkflowInput, bC as ReverseGeocodingParams, ct as RichtextTab, c2 as Role, he as RollupCascadeContext, gU as RollupResult, gY as RollupScheduler, gX as RollupSchedulerOptions, gW as RollupService, gV as RollupServiceOptions, eA as SHORTCUT_TO_FILTER_OPERATOR, e_ as SchemaContext, gp as SchemaContextAware, gq as SchemaContextAwareRepository, fN as SchemaResolver, iJ as SearchOptions, gA as SearchQueryOptions, b8 as SelectFilterOperator, eu as ShortcutOperator, z as SignatureAdapter, J as SignaturePosition, K as SignatureRequestResult, P as SignatureStatus, M as SignatureStatusResult, id as SignedUrlOptions, H as SignerRequest, N as SignerStatus, gN as SingleRelationValue, aN as SlotStatus, bl as SortDirection, fo as StartExecutor, d0 as StartNode, ho as StartWorkflowInput, ie as StorageAdapter, hT as StorageDownloadNotSupportedError, a$ as StorageProvider, ib as StorageUploadInput, ic as StorageUploadResult, ii as SyncOptions, ih as SyncResult, bS as SystemFields, c7 as SystemPermissions, cl as TabType, cq as TableSource, aB as TemplateSource, f5 as TenantContext, eJ as TenantContextError, b4 as TextFilterOperator, a3 as TextPartData, dY as ThemeColors, dZ as ThemeLogo, d_ as ThemeTypography, a5 as ThinkingPartData, cz as TimelineViewConfig, cD as TimelineViewDefinition, hk as TokenRevokedError, a4 as ToolPartData, fR as TraversalOptions, fS as TraversalResult, bJ as TypedAttribute, b_ as TypedObjectRecord, iF as UpdateDBAttribute, iB as UpdateDBObject, iR as UpdateDBView, iV as UpdateDBViewOverlay, iY as UpdateDBWorkflow, j5 as UpdateDBWorkflowAccessGrant, i$ as UpdateDBWorkflowInstance, j2 as UpdateDBWorkflowInvitation, aS as UpdateDocument, aE as UpdateDocumentGenerationTemplate, aW as UpdateDocumentSlot, aU as UpdateDocumentTemplate, b3 as UpdateFile, gt as UpdateObjectInput, aY as UpdateProcessingJob, c9 as UpdateRoleInput, cj as UpdateUserProfile, i6 as UpdateViewInput, hA as UpdateWorkflowInput, ig as UploadFileInput, iG as UpsertDBAttribute, iC as UpsertDBObject, iS as UpsertDBView, ch as UserProfile, hH as UserProfileService, hG as UserProfileServiceOptions, gh as UserProfilesRepository, cf as UserRole, c4 as UserRoleAssignment, hF as UserService, cg as UserStatus, hE as UserValidationError, hD as UserValidationResult, az as VariableMapping, Z as VerificationCheck, X as VerificationResult, U as VerifyInput, cB as ViewConfig, cG as ViewOverlay, e4 as ViewOverlaysRepository, i9 as ViewService, j8 as ViewSyncLogger, j9 as ViewSyncOptions, j7 as ViewSyncResult, gi as ViewsRepository, bQ as WithCustomAttributes, dH as WorkflowAccessGrant, hn as WorkflowAccessGrantService, gj as WorkflowAccessGrantsRepository, dX as WorkflowAccessMode, ec as WorkflowAccessPayload, ds as WorkflowError, dO as WorkflowExecutionContext, dt as WorkflowInstance, hr as WorkflowInstanceService, hq as WorkflowInstanceServiceOptions, gk as WorkflowInstancesRepository, dC as WorkflowInvitation, hx as WorkflowInvitationService, gl as WorkflowInvitationsRepository, ed as WorkflowJwtConfig, ee as WorkflowJwtPayload, e9 as WorkflowJwtService, dk as WorkflowLayout, d1 as WorkflowNodeType, hy as WorkflowRelationService, hC as WorkflowService, hB as WorkflowServiceOptions, dl as WorkflowSlot, dm as WorkflowStatus, du as WorkflowTransition, gm as WorkflowsRepository, eT as addSchemaToContext, db as and, gZ as applyDefaultValues, hJ as buildAuditChanges, h0 as buildPolicyContext, ej as cacheKeys, ek as cacheTtl, dI as canAccessNode, dv as canResumeInstance, g_ as checkPermission, h1 as checkRecordAccess, h3 as checkRecordDeleteOrThrow, h2 as checkRecordModifyOrThrow, h4 as checkSharedObjectWriteAccess, ff as complete, h5 as computeLabel, iy as computeLabelWithRelations, h9 as createContextForCreate, hb as createContextForDelete, hc as createContextForRestore, ha as createContextForUpdate, f6 as createDefaultExecutorRegistry, ev as createDefaultState, dP as createEmptyContext, f_ as createMockAdapter, eB as createQueryBuilder, dw as createStartTransition, g0 as defaultPolicyRegistry, el as defaultTtl, h8 as enrichRecordsWithFormulas, iu as enrichValuesForDisplay, iv as enrichValuesWithSelectLabels, h7 as enrichWithFormulas, dc as eq, fg as error, eH as evaluate, eG as evaluateCondition, fp as evaluateFormula, fq as evaluateFormulaAttribute, fr as evaluateFormulaAttributeWithRelations, fs as evaluateFormulaWithRelations, ft as evaluateFormulaWithResult, eI as evaluateWithTrace, it as extractAttributeNames, fu as extractFormulaVariables, iw as extractRelationIds, fv as extractRelationNames, fw as extractRelationReferences, fx as flattenRelationsForEval, fy as formatFormulaResult, ew as formatRecord, ex as formatRecords, e0 as generateCssVariables, e$ as getContext, dQ as getContextValue, f7 as getDefaultExecutorRegistry, eL as getFeatureFlags, eM as getFeatureValue, d2 as getNodeOutputs, fC as getPathDepth, g$ as getPolicy, fD as getRelationPath, eU as getSchemaByNameFromContext, eV as getSchemaContext, eW as getSchemaFromContext, il as getSyncPreview, fE as getTargetAttributeName, f0 as getTenantId, f1 as getUserId, je as getViewSeedPreview, jf as getViewSyncPreview, f2 as hasContext, eN as hasFeatureFlagsContext, fz as hasRelationReferences, eX as hasSchemaContext, eg as hashOptions, dd as inValues, cT as isActivityTab, d3 as isAdvancedFormNode, cJ as isCalendarView, de as isConditionGroup, d4 as isConditionNode, df as isConditionRule, cS as isCustomTab, cH as isDetailView, d5 as isDocumentNode, cW as isDocumentsTab, d6 as isEndNode, eO as isFeatureEnabled, cM as isFieldGroup, bx as isFlowDefinition, by as isFlowPublished, cV as isFlowsTab, d7 as isFormNode, cO as isFormTab, cL as isGalleryView, dJ as isGrantExpired, dK as isGrantRevoked, dL as isGrantValid, dx as isInstanceTerminal, dy as isInstanceWaiting, cR as isInverseSourceTab, dD as isInvitationAccepted, dE as isInvitationExpired, dF as isInvitationValid, is as isLabelExpression, cI as isListView, bq as isNoValueOperator, cN as isRelationGroup, cQ as isRelationSourceTab, cU as isRichtextTab, d8 as isSimpleFormNode, d9 as isStartNode, bz as isSystemFlow, dn as isSystemWorkflow, cP as isTableTab, cK as isTimelineView, dM as isTokenRevoked, dp as isWorkflowDefinition, dq as isWorkflowPublished, e1 as mergeWithDefaults, dg as neq, dh as or, fH as parsePath, fI as pathHasManyCardinality, hd as recalculateParentRollups, e2 as registry, ir as renderLabelExpression, fO as resolveMultiplePaths, fP as resolveSingleValue, f3 as runWithContext, eP as runWithFeatureFlags, eY as runWithMergedSchemaContext, eZ as runWithSchemaContext, ja as seedRegistryViews, dR as setContextValue, fi as success, ip as syncAll, ij as syncNativeObjects, jb as syncNativeViews, fQ as traversePath, eQ as tryGetFeatureValue, fA as validateFormulaExpression, fJ as validatePath, ik as verifyNativeObjectsSync, jd as verifyNativeViewsSync, jc as verifyRegistryViewsSeeded, e3 as viewRegistry, fj as wait, eR as withFeatureFlags, f4 as withTenantContext } from './runtime-DQlTgVZJ.mjs';
|
|
3
3
|
import { D as DateAttribute, U as UserAttribute, a as DocumentAttribute, A as Attribute, F as FeatureGate, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, P as PhoneAttribute, d as CurrencyAttribute, O as Option, S as StatusAttribute, e as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, f as FileAttribute, g as RatingAttribute, h as RelationAttribute, B as BilateralConfig, i as SingleRelationAttribute, j as MultiRelationAttribute, k as RelationTarget, l as FormulaAttribute, m as FormulaReturnType, n as RollupAttribute, o as RollupFunction, p as AttributeType, q as ObjectDefinition, r as FlagValueType, s as FeatureFlagDefinition, t as FlagLevel, u as FeatureFlagsRepository, v as StaticFlagDefault, w as ResolvedFlag } from './validators-BROsLGn4.mjs';
|
|
4
4
|
export { y as AttributeGroup, z as BaseAttribute, a6 as CompletionStatus, J as Currency, af as DEFAULT_VALIDATION_MESSAGES, G as DateFormat, H as DateValue, a9 as FORBIDDEN_PROPERTY_TYPES, _ as FeatureFlagsConfig, Z as FlagOverride, aa as ForbiddenPropertyType, K as Location, Q as LocationGranularity, E as NumberUnit, a5 as ObjectAttribute, a7 as ObjectRecord, I as Phone, ab as PropertyAttribute, ac as PropertySchema, a8 as PropertyType, V as RELATION_TARGET_ANY, $ as RESERVED_ATTRIBUTE_NAMES, a1 as ReservedAttributeName, a0 as SYSTEM_FIELD_NAMES, a4 as SharingMode, x as StatusGroup, a2 as SystemFieldName, a3 as Timestamps, ae as ValidationMessages, a$ as ValidationResult, az as attributeConfigSchemas, ak as checkboxConfigSchema, b8 as computeRecordStatus, aY as createAttributeValidator, aG as createCheckboxValidator, aJ as createCurrencyValidator, aH as createDateValidator, b3 as createDraftValidator, aO as createFileValidator, aZ as createFormAttributeValidator, aU as createFormulaValidator, aN as createLocationValidator, aR as createMultiRelationValidator, aM as createMultiselectValidator, aF as createNumberValidator, a_ as createObjectValidator, aI as createPhoneValidator, aT as createRatingValidator, aS as createRelationValidator, aX as createRichtextValidator, aV as createRollupValidator, aL as createSelectValidator, aQ as createSingleRelationValidator, aK as createStatusValidator, aW as createTextAreaValidator, aE as createTextValidator, aP as createUserValidator, an as currencyConfigSchema, al as dateConfigSchema, ay as documentConfigSchema, as as fileConfigSchema, ad as formatZodErrors, aw as formulaConfigSchema, aA as getAttributeConfigSchema, b6 as getMissingRequiredAttributes, Y as inferInverseCardinality, X as isBilateralRelation, b7 as isRecordComplete, W as isUniversalRelation, ap as locationConfigSchema, ar as multiselectConfigSchema, aj as numberConfigSchema, aC as parseAttributeConfig, am as phoneConfigSchema, av as ratingConfigSchema, au as relationConfigSchema, ai as richtextConfigSchema, ax as rollupConfigSchema, aD as safeParseAttributeConfig, aq as selectConfigSchema, ao as statusConfigSchema, ag as textConfigSchema, ah as textareaConfigSchema, at as userConfigSchema, b0 as validateAttribute, aB as validateAttributeConfig, b4 as validateDraft, b5 as validateDraftOrThrow, b1 as validateObject, b2 as validateObjectOrThrow } from './validators-BROsLGn4.mjs';
|
|
5
5
|
import { z } from 'zod';
|
|
@@ -2411,7 +2411,60 @@ declare class GroupBuilder {
|
|
|
2411
2411
|
/**
|
|
2412
2412
|
* Build the group definition
|
|
2413
2413
|
*/
|
|
2414
|
-
build():
|
|
2414
|
+
build(): FieldGroup;
|
|
2415
|
+
}
|
|
2416
|
+
/**
|
|
2417
|
+
* Builder for creating relation groups that display a RelationsView inside a form tab
|
|
2418
|
+
*
|
|
2419
|
+
* @example
|
|
2420
|
+
* ```typescript
|
|
2421
|
+
* relationGroup("contacts", "Contacts", "contacts")
|
|
2422
|
+
* .columns("name", "email", "phone")
|
|
2423
|
+
* .allowCreate()
|
|
2424
|
+
* .collapsible()
|
|
2425
|
+
* ```
|
|
2426
|
+
*/
|
|
2427
|
+
declare class RelationGroupBuilder {
|
|
2428
|
+
private data;
|
|
2429
|
+
constructor(id: string, label: string, attribute: string);
|
|
2430
|
+
/**
|
|
2431
|
+
* Set group description
|
|
2432
|
+
*/
|
|
2433
|
+
description(value: string): this;
|
|
2434
|
+
/**
|
|
2435
|
+
* Make group collapsible
|
|
2436
|
+
* @param collapsed - Initial collapsed state (default: false)
|
|
2437
|
+
*/
|
|
2438
|
+
collapsible(collapsed?: boolean): this;
|
|
2439
|
+
/**
|
|
2440
|
+
* Set display order
|
|
2441
|
+
*/
|
|
2442
|
+
order(value: number): this;
|
|
2443
|
+
/**
|
|
2444
|
+
* Set columns to display in the relations table
|
|
2445
|
+
* @example .columns("name", "email", "phone")
|
|
2446
|
+
*/
|
|
2447
|
+
columns(...names: string[]): this;
|
|
2448
|
+
/**
|
|
2449
|
+
* Set the group as read-only (no add/remove/edit)
|
|
2450
|
+
*/
|
|
2451
|
+
readOnly(value?: boolean): this;
|
|
2452
|
+
/**
|
|
2453
|
+
* Allow creating new related records inline
|
|
2454
|
+
*/
|
|
2455
|
+
allowCreate(value?: boolean): this;
|
|
2456
|
+
/**
|
|
2457
|
+
* Enable two-level traversal (through mode).
|
|
2458
|
+
* Parent rows become grouping headers; sub-rows from `attribute` are the primary display.
|
|
2459
|
+
*
|
|
2460
|
+
* @param attribute - Relation attribute on the first-level target object
|
|
2461
|
+
* @example .through("companies") — display companies linked via each member
|
|
2462
|
+
*/
|
|
2463
|
+
through(attribute: string): this;
|
|
2464
|
+
/**
|
|
2465
|
+
* Build the relation group definition
|
|
2466
|
+
*/
|
|
2467
|
+
build(): RelationGroup;
|
|
2415
2468
|
}
|
|
2416
2469
|
/**
|
|
2417
2470
|
* Base tab configuration shared across tab types
|
|
@@ -2728,9 +2781,9 @@ declare class TabBuilder {
|
|
|
2728
2781
|
order(value: number): this;
|
|
2729
2782
|
/**
|
|
2730
2783
|
* Create a form tab with groups
|
|
2731
|
-
* @example .form(group("info", "Info").fields("name", "email"))
|
|
2784
|
+
* @example .form(group("info", "Info").fields("name", "email"), relationGroup("contacts", "Contacts", "contacts"))
|
|
2732
2785
|
*/
|
|
2733
|
-
form(...groups: (GroupBuilder | Group)[]): DetailViewBuilder;
|
|
2786
|
+
form(...groups: (GroupBuilder | RelationGroupBuilder | Group)[]): DetailViewBuilder;
|
|
2734
2787
|
/**
|
|
2735
2788
|
* Create a table tab for a relation attribute on the current object
|
|
2736
2789
|
*
|
|
@@ -3162,6 +3215,22 @@ declare function listView(name: string, label: string): ListViewBuilder;
|
|
|
3162
3215
|
* ```
|
|
3163
3216
|
*/
|
|
3164
3217
|
declare function group(id: string, label: string): GroupBuilder;
|
|
3218
|
+
/**
|
|
3219
|
+
* Create a new relation group builder
|
|
3220
|
+
*
|
|
3221
|
+
* @param id - Group identifier
|
|
3222
|
+
* @param label - Display label
|
|
3223
|
+
* @param attribute - Relation attribute name on the source object
|
|
3224
|
+
*
|
|
3225
|
+
* @example
|
|
3226
|
+
* ```typescript
|
|
3227
|
+
* relationGroup("contacts", "Contacts", "contacts")
|
|
3228
|
+
* .columns("name", "email", "phone")
|
|
3229
|
+
* .allowCreate()
|
|
3230
|
+
* .collapsible()
|
|
3231
|
+
* ```
|
|
3232
|
+
*/
|
|
3233
|
+
declare function relationGroup(id: string, label: string, attribute: string): RelationGroupBuilder;
|
|
3165
3234
|
|
|
3166
3235
|
/**
|
|
3167
3236
|
* Builder for creating rows within a form node.
|
|
@@ -4087,4 +4156,4 @@ declare function getSystemTemplate(name: string): DocumentTemplate | undefined;
|
|
|
4087
4156
|
*/
|
|
4088
4157
|
declare function isSystemTemplate(name: string): boolean;
|
|
4089
4158
|
|
|
4090
|
-
export { ALL_SYSTEM_RESOURCES, ActivityTabConfig, type AgentContentPart, type AgentMessage, type AnyAttributeBuilder, Attribute, AttributeGroupField, AttributeInUseError, AttributeNotFoundError, AttributeType, type AttributeUsage, AuthMethodSchema, BEHAVIOR_PROPERTIES, type BehaviorProperty, BilateralConfig, type BilateralValidationError, type BilateralValidationResult, type BuilderConfig, type ChatFileAttachment, CheckboxAttribute, ConcurrentModificationError, ConditionGroup, ConditionGroupSchema, ConditionNodeSchema, ConditionOperatorSchema, ConditionRule, ConditionRuleSchema, CreateMode, CreateShareInputSchema, CurrencyAttribute, CustomTabConfig, DEFAULT_ROLES, DEFAULT_ROLE_DESCRIPTIONS, DEFAULT_ROLE_LABELS, DEFAULT_ROLE_PERMISSIONS, DRIVING_LICENSE, DateAttribute, type DefaultRoleName, type DefaultRolePermissionConfig, DetailViewBuilder, DetailViewDefinition, DetailViewLayout, DocumentAttribute, DocumentNodeSchema, DocumentTemplate, DocumentsTabConfig, DuplicateError, EMPTY_VALUE_PLACEHOLDER, EndNodeSchema, type ExtractAttributeName, type ExtractAttributeRequired, FRENCH_ID_CARD, FeatureFlagDefinition, FeatureFlagsRepository, FeatureGate, Field, FileAttribute, FileNotFoundError, FilterState, FlagLevel, FlagRegistry, type FlagResolutionContext, FlagService, type FlagServiceOptions, FlagValueType, FlowRow, FlowRowFieldSchema, FlowRowSchema, FlowsTabConfig, ForbiddenError, FormFieldRefSchema, FormNodeSchema, FormulaAttribute, FormulaReturnType, GENERIC_DOCUMENT, type GenerateFallbackViewOptions, Group, GroupBuilder, IDENTITY_PROPERTIES, type IdentityProperty, InferAttributeValue, InstanceStatus, ListViewBuilder, ListViewConfig, ListViewDefinition, ListViewTab, ListViewTabConfigBuilder, LocationAttribute, MultiRelationAttribute, MultiselectAttribute, NodePositionSchema, NotFoundError, NotSystemObjectError, NumberAttribute, ObjectAction, ObjectBuilder, ObjectDefinition, ObjectNotFoundError, ObjectReferencedError, Option, PASSPORT, PRESENTATION_PROPERTIES, PROOF_OF_ADDRESS, PhoneAttribute, type PresentationProperty, type PropertyAttributeBuilder, ProtectedResourceError, ProtectedRoleError, RatingAttribute, RecordNotFoundError, type RecordReference, RecordReferencedError, RelationAttribute, RelationTarget, type ResetViewOptions, ResolvedFlag, type ResumeWorkflowApiInput, RichtextAttribute, RichtextFeature, RichtextTabConfig, RoleNotFoundError, RollupAttribute, RollupFunction, SIGNABLE_CONTRACT, SYSTEM_ATTRIBUTES, SYSTEM_RESOURCES, SYSTEM_RESOURCE_LABELS, SYSTEM_TEMPLATES, SYSTEM_TEMPLATE_IDS, SchemaError, SchemaErrorCode, SelectAttribute, ShareStatusSchema, SidePanelConfig, SingleRelationAttribute, SlotMode, SlotModeSchema, SortRule, StartNodeSchema, type StartWorkflowApiInput, StaticFlagDefault, StatusAttribute, SyncError, SystemAction, type SystemAttribute, type SystemAttributeName, SystemResource, Tab, TabBuilder, TableTab, TableTabConfig, TextAreaAttribute, TextAttribute, ThemeColorsSchema, ThemeLogoSchema, type TypedBuilderConfig, UserAttribute, UserProfileNotFoundError, type ValidatedConditionGroup, type ValidatedWorkflowDefinition, type ValidatedWorkflowNode, ValidationError, type ValidationErrorDetail, ViewBuilder, ViewDefinition, ViewType, ViewportSchema, WorkflowBuilder, WorkflowConditionBuilder, WorkflowConfig, WorkflowConfigSchema, WorkflowDefinition, WorkflowDefinitionSchema, WorkflowEndBuilder, type WorkflowEvent, type WorkflowEventType, WorkflowFormBuilder, WorkflowFormRowBuilder, type WorkflowGrantRevokedEvent, type WorkflowInstanceCancelledEvent, type WorkflowInstanceCompletedEvent, type WorkflowInstanceFailedEvent, type WorkflowInstanceStartedEvent, type WorkflowInvitationAcceptedEvent, type WorkflowInvitationCreatedEvent, type WorkflowInvitationExpiredEvent, WorkflowLayoutSchema, WorkflowNode, type WorkflowNodeCompletedEvent, type WorkflowNodeEnteredEvent, type WorkflowNodeFailedEvent, WorkflowNodeSchema, WorkflowShareSchema, WorkflowSimpleFormBuilder, WorkflowSlotSchema, WorkflowStartBuilder, WorkflowStatusSchema, WorkflowTheme, WorkflowThemeSchema, applyRelationProps, booleanFlag, checkbox, createFlagRegistry, createFlagService, currency, date, detailView, document, file, flagRegistry, formatAttributeValue, formula, generateDefaultDetailView, generateDefaultListView, generateFallbackView, getActiveTab, getErrorMessage, getSystemAttributeList, getSystemTemplate, group, hasProperties, isBehaviorProperty, isDefaultRole, isEmpty, isForbiddenError, isIdentityProperty, isInstanceEvent, isInvitationOrGrantEvent, isNodeEvent, isNotEmpty, isNotFoundError, isPresentationProperty, isProtectedResourceError, isSchemaError, isSystemAttribute, isSystemAttributeObject, isSystemTemplate, isValidationError, isViewCustomized, jsonFlag, listView, location, multiselect, number, numberFlag, object, phone, rating, relation, resetViewToDefault, richtext, rollup, select, status, stringFlag, text, textarea, toUndefinedIfEmpty, user, view, workflow };
|
|
4159
|
+
export { ALL_SYSTEM_RESOURCES, ActivityTabConfig, type AgentContentPart, type AgentMessage, type AnyAttributeBuilder, Attribute, AttributeGroupField, AttributeInUseError, AttributeNotFoundError, AttributeType, type AttributeUsage, AuthMethodSchema, BEHAVIOR_PROPERTIES, type BehaviorProperty, BilateralConfig, type BilateralValidationError, type BilateralValidationResult, type BuilderConfig, type ChatFileAttachment, CheckboxAttribute, ConcurrentModificationError, ConditionGroup, ConditionGroupSchema, ConditionNodeSchema, ConditionOperatorSchema, ConditionRule, ConditionRuleSchema, CreateMode, CreateShareInputSchema, CurrencyAttribute, CustomTabConfig, DEFAULT_ROLES, DEFAULT_ROLE_DESCRIPTIONS, DEFAULT_ROLE_LABELS, DEFAULT_ROLE_PERMISSIONS, DRIVING_LICENSE, DateAttribute, type DefaultRoleName, type DefaultRolePermissionConfig, DetailViewBuilder, DetailViewDefinition, DetailViewLayout, DocumentAttribute, DocumentNodeSchema, DocumentTemplate, DocumentsTabConfig, DuplicateError, EMPTY_VALUE_PLACEHOLDER, EndNodeSchema, type ExtractAttributeName, type ExtractAttributeRequired, FRENCH_ID_CARD, FeatureFlagDefinition, FeatureFlagsRepository, FeatureGate, Field, FieldGroup, FileAttribute, FileNotFoundError, FilterState, FlagLevel, FlagRegistry, type FlagResolutionContext, FlagService, type FlagServiceOptions, FlagValueType, FlowRow, FlowRowFieldSchema, FlowRowSchema, FlowsTabConfig, ForbiddenError, FormFieldRefSchema, FormNodeSchema, FormulaAttribute, FormulaReturnType, GENERIC_DOCUMENT, type GenerateFallbackViewOptions, Group, GroupBuilder, IDENTITY_PROPERTIES, type IdentityProperty, InferAttributeValue, InstanceStatus, ListViewBuilder, ListViewConfig, ListViewDefinition, ListViewTab, ListViewTabConfigBuilder, LocationAttribute, MultiRelationAttribute, MultiselectAttribute, NodePositionSchema, NotFoundError, NotSystemObjectError, NumberAttribute, ObjectAction, ObjectBuilder, ObjectDefinition, ObjectNotFoundError, ObjectReferencedError, Option, PASSPORT, PRESENTATION_PROPERTIES, PROOF_OF_ADDRESS, PhoneAttribute, type PresentationProperty, type PropertyAttributeBuilder, ProtectedResourceError, ProtectedRoleError, RatingAttribute, RecordNotFoundError, type RecordReference, RecordReferencedError, RelationAttribute, RelationGroup, RelationGroupBuilder, RelationTarget, type ResetViewOptions, ResolvedFlag, type ResumeWorkflowApiInput, RichtextAttribute, RichtextFeature, RichtextTabConfig, RoleNotFoundError, RollupAttribute, RollupFunction, SIGNABLE_CONTRACT, SYSTEM_ATTRIBUTES, SYSTEM_RESOURCES, SYSTEM_RESOURCE_LABELS, SYSTEM_TEMPLATES, SYSTEM_TEMPLATE_IDS, SchemaError, SchemaErrorCode, SelectAttribute, ShareStatusSchema, SidePanelConfig, SingleRelationAttribute, SlotMode, SlotModeSchema, SortRule, StartNodeSchema, type StartWorkflowApiInput, StaticFlagDefault, StatusAttribute, SyncError, SystemAction, type SystemAttribute, type SystemAttributeName, SystemResource, Tab, TabBuilder, TableTab, TableTabConfig, TextAreaAttribute, TextAttribute, ThemeColorsSchema, ThemeLogoSchema, type TypedBuilderConfig, UserAttribute, UserProfileNotFoundError, type ValidatedConditionGroup, type ValidatedWorkflowDefinition, type ValidatedWorkflowNode, ValidationError, type ValidationErrorDetail, ViewBuilder, ViewDefinition, ViewType, ViewportSchema, WorkflowBuilder, WorkflowConditionBuilder, WorkflowConfig, WorkflowConfigSchema, WorkflowDefinition, WorkflowDefinitionSchema, WorkflowEndBuilder, type WorkflowEvent, type WorkflowEventType, WorkflowFormBuilder, WorkflowFormRowBuilder, type WorkflowGrantRevokedEvent, type WorkflowInstanceCancelledEvent, type WorkflowInstanceCompletedEvent, type WorkflowInstanceFailedEvent, type WorkflowInstanceStartedEvent, type WorkflowInvitationAcceptedEvent, type WorkflowInvitationCreatedEvent, type WorkflowInvitationExpiredEvent, WorkflowLayoutSchema, WorkflowNode, type WorkflowNodeCompletedEvent, type WorkflowNodeEnteredEvent, type WorkflowNodeFailedEvent, WorkflowNodeSchema, WorkflowShareSchema, WorkflowSimpleFormBuilder, WorkflowSlotSchema, WorkflowStartBuilder, WorkflowStatusSchema, WorkflowTheme, WorkflowThemeSchema, applyRelationProps, booleanFlag, checkbox, createFlagRegistry, createFlagService, currency, date, detailView, document, file, flagRegistry, formatAttributeValue, formula, generateDefaultDetailView, generateDefaultListView, generateFallbackView, getActiveTab, getErrorMessage, getSystemAttributeList, getSystemTemplate, group, hasProperties, isBehaviorProperty, isDefaultRole, isEmpty, isForbiddenError, isIdentityProperty, isInstanceEvent, isInvitationOrGrantEvent, isNodeEvent, isNotEmpty, isNotFoundError, isPresentationProperty, isProtectedResourceError, isSchemaError, isSystemAttribute, isSystemAttributeObject, isSystemTemplate, isValidationError, isViewCustomized, jsonFlag, listView, location, multiselect, number, numberFlag, object, phone, rating, relation, relationGroup, resetViewToDefault, richtext, rollup, select, status, stringFlag, text, textarea, toUndefinedIfEmpty, user, view, workflow };
|