@stndrds/schema 0.1.0-alpha.39 → 0.1.0-alpha.40

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.
@@ -2462,7 +2462,7 @@ function formatAttributeValue(value, attribute) {
2462
2462
  }
2463
2463
 
2464
2464
  // src/runtime/template.ts
2465
- var pipes = {
2465
+ var simplePipes = {
2466
2466
  /** Convert to uppercase */
2467
2467
  UPPER: (v) => String(v).toUpperCase(),
2468
2468
  /** Convert to lowercase */
@@ -2472,6 +2472,16 @@ var pipes = {
2472
2472
  /** Trim whitespace from both ends */
2473
2473
  trim: (v) => String(v).trim()
2474
2474
  };
2475
+ var pipesWithArgs = {
2476
+ /** Add prefix only if value is non-empty */
2477
+ prefix: (v, pre = "") => v ? `${pre}${v}` : "",
2478
+ /** Add suffix only if value is non-empty */
2479
+ suffix: (v, suf = "") => v ? `${v}${suf}` : "",
2480
+ /** Wrap value with prefix and suffix only if non-empty */
2481
+ wrap: (v, pre = "", suf = "") => v ? `${pre}${v}${suf}` : "",
2482
+ /** Show default value if empty */
2483
+ default: (v, def = "") => v || def
2484
+ };
2475
2485
  function getValue(obj, path) {
2476
2486
  return path.split(".").reduce((acc, key) => {
2477
2487
  if (acc == null || typeof acc !== "object") return void 0;
@@ -2479,20 +2489,42 @@ function getValue(obj, path) {
2479
2489
  }, obj);
2480
2490
  }
2481
2491
  var DEFAULT_LABEL_FALLBACK = "(Untitled)";
2492
+ function parsePipeExpression(pipeExpr) {
2493
+ const match = pipeExpr.match(/^(\w+)(?::(.*))?$/);
2494
+ if (!match) return { name: pipeExpr, args: [] };
2495
+ const name = match[1];
2496
+ const argsStr = match[2];
2497
+ if (!argsStr) return { name, args: [] };
2498
+ const args = [];
2499
+ const argRegex = /["']([^"']*?)["']/g;
2500
+ let argMatch;
2501
+ while ((argMatch = argRegex.exec(argsStr)) !== null) {
2502
+ args.push(argMatch[1]);
2503
+ }
2504
+ return { name, args };
2505
+ }
2482
2506
  function renderLabelExpression(template, values, fallback = DEFAULT_LABEL_FALLBACK) {
2483
2507
  const result = template.replace(/\{\{\s*([^}]+)\s*\}\}/g, (_, expr) => {
2484
2508
  const parts = expr.split("|").map((s) => s.trim());
2485
2509
  const path = parts[0];
2486
2510
  let value = getValue(values, path);
2487
- if (value == null || value === "") return "";
2511
+ const isEmpty3 = value == null || value === "";
2512
+ if (isEmpty3 && parts.length === 1) return "";
2488
2513
  for (let i = 1; i < parts.length; i++) {
2489
- const pipeName = parts[i].trim();
2490
- const fn = pipes[pipeName];
2491
- if (fn) {
2492
- value = fn(String(value));
2514
+ const { name: pipeName, args } = parsePipeExpression(parts[i]);
2515
+ const simpleFn = simplePipes[pipeName];
2516
+ if (simpleFn) {
2517
+ if (value != null && value !== "") {
2518
+ value = simpleFn(String(value));
2519
+ }
2520
+ } else {
2521
+ const argFn = pipesWithArgs[pipeName];
2522
+ if (argFn) {
2523
+ value = argFn(String(value ?? ""), ...args);
2524
+ }
2493
2525
  }
2494
2526
  }
2495
- return String(value);
2527
+ return String(value ?? "");
2496
2528
  }).trim();
2497
2529
  return result || fallback;
2498
2530
  }
@@ -2515,13 +2547,25 @@ function extractAttributeNames(template) {
2515
2547
  function hasOptions(attr) {
2516
2548
  return "options" in attr && Array.isArray(attr.options) && attr.options.length > 0;
2517
2549
  }
2518
- function enrichValuesWithSelectLabels(values, attributes) {
2550
+ var FORMATTABLE_TYPES = /* @__PURE__ */ new Set([
2551
+ "currency",
2552
+ "location",
2553
+ "phone",
2554
+ "date",
2555
+ "rating",
2556
+ "select",
2557
+ "status",
2558
+ "multiselect",
2559
+ "number"
2560
+ ]);
2561
+ function enrichValuesForDisplay(values, attributes) {
2519
2562
  const enriched = { ...values };
2520
2563
  for (const attr of attributes) {
2521
2564
  const value = values[attr.name];
2522
2565
  if (value == null) continue;
2566
+ if (!FORMATTABLE_TYPES.has(attr.type)) continue;
2523
2567
  const isSelectLike = attr.type === "select" || attr.type === "status" || attr.type === "multiselect";
2524
- if (!(isSelectLike && hasOptions(attr))) continue;
2568
+ if (isSelectLike && !hasOptions(attr)) continue;
2525
2569
  if (attr.type === "multiselect" && Array.isArray(value) && value.length === 0) continue;
2526
2570
  const formatted = formatAttributeValue(value, attr);
2527
2571
  if (formatted && formatted !== EMPTY_VALUE_PLACEHOLDER) {
@@ -2530,13 +2574,14 @@ function enrichValuesWithSelectLabels(values, attributes) {
2530
2574
  }
2531
2575
  return enriched;
2532
2576
  }
2577
+ var enrichValuesWithSelectLabels = enrichValuesForDisplay;
2533
2578
  function extractRelationIds(val) {
2534
2579
  if (typeof val === "string") return [val];
2535
2580
  if (Array.isArray(val) && typeof val[0] === "string") return [val[0]];
2536
2581
  return [];
2537
2582
  }
2538
2583
  async function computeLabelWithRelations(template, values, attributes, resolveRelationIds) {
2539
- let enrichedValues = enrichValuesWithSelectLabels(values, attributes);
2584
+ let enrichedValues = enrichValuesForDisplay(values, attributes);
2540
2585
  const attrNames = extractAttributeNames(template);
2541
2586
  const relationAttrs = attributes.filter(
2542
2587
  (attr) => attr.type === "relation" && attrNames.includes(attr.name)
@@ -3089,7 +3134,7 @@ function createMockObjectRecordsRepository(stores) {
3089
3134
  label: a.config.label ?? a.name,
3090
3135
  required: a.config.required ?? false
3091
3136
  }));
3092
- const enrichedValues = enrichValuesWithSelectLabels(r.values, attrs);
3137
+ const enrichedValues = enrichValuesForDisplay(r.values, attrs);
3093
3138
  return {
3094
3139
  objectId: r.objectId,
3095
3140
  objectName: obj?.name ?? "unknown",
@@ -7659,21 +7704,32 @@ function createAttributeValidator(attr, messages = DEFAULT_VALIDATION_MESSAGES)
7659
7704
  return z5.unknown();
7660
7705
  }
7661
7706
  }
7707
+ function isEmptyValue(value) {
7708
+ if (value === null || value === void 0) return true;
7709
+ if (typeof value === "string" && value.trim() === "") return true;
7710
+ if (value instanceof Date) return false;
7711
+ if (typeof value === "object" && !Array.isArray(value)) {
7712
+ return Object.values(value).every(
7713
+ (v) => v === null || v === void 0 || typeof v === "string" && v.trim() === ""
7714
+ );
7715
+ }
7716
+ return false;
7717
+ }
7718
+ function withEmptyToNull(validator) {
7719
+ return z5.preprocess((val) => isEmptyValue(val) ? null : val, validator.nullish());
7720
+ }
7662
7721
  function createFormAttributeValidator(attr, messages = DEFAULT_VALIDATION_MESSAGES) {
7663
7722
  const validator = createAttributeValidator(attr, messages);
7664
7723
  if (!attr.required) {
7665
- return validator.nullish();
7724
+ return withEmptyToNull(validator);
7666
7725
  }
7667
7726
  return validator;
7668
7727
  }
7669
7728
  function createObjectValidator(objectDef) {
7670
7729
  const shape = {};
7671
7730
  for (const attr of objectDef.attributes) {
7672
- let validator = createAttributeValidator(attr);
7673
- if (!attr.required) {
7674
- validator = validator.optional();
7675
- }
7676
- shape[attr.name] = validator;
7731
+ const validator = createAttributeValidator(attr);
7732
+ shape[attr.name] = attr.required ? validator : withEmptyToNull(validator);
7677
7733
  }
7678
7734
  return z5.object(shape).strict();
7679
7735
  }
@@ -7726,8 +7782,8 @@ ${errorMessages}`);
7726
7782
  function createDraftValidator(objectDef) {
7727
7783
  const shape = {};
7728
7784
  for (const attr of objectDef.attributes) {
7729
- const validator = createAttributeValidator(attr).nullish();
7730
- shape[attr.name] = validator;
7785
+ const validator = createAttributeValidator(attr);
7786
+ shape[attr.name] = withEmptyToNull(validator);
7731
7787
  }
7732
7788
  return z5.object(shape).strict();
7733
7789
  }
@@ -10179,7 +10235,7 @@ var RecordService = class extends TenantAwareService {
10179
10235
  */
10180
10236
  async computeLabel(schema, values) {
10181
10237
  const attrNames = extractAttributeNames(schema.labelExpression);
10182
- let enrichedValues = enrichValuesWithSelectLabels(values, schema.attributes);
10238
+ let enrichedValues = enrichValuesForDisplay(values, schema.attributes);
10183
10239
  const relationAttrs = schema.attributes.filter(
10184
10240
  (attr) => attr.type === "relation" && attrNames.includes(attr.name)
10185
10241
  );
@@ -13356,6 +13412,7 @@ export {
13356
13412
  renderLabelExpression,
13357
13413
  isLabelExpression,
13358
13414
  extractAttributeNames,
13415
+ enrichValuesForDisplay,
13359
13416
  enrichValuesWithSelectLabels,
13360
13417
  extractRelationIds,
13361
13418
  computeLabelWithRelations,
@@ -2462,7 +2462,7 @@ function formatAttributeValue(value, attribute) {
2462
2462
  }
2463
2463
 
2464
2464
  // src/runtime/template.ts
2465
- var pipes = {
2465
+ var simplePipes = {
2466
2466
  /** Convert to uppercase */
2467
2467
  UPPER: (v) => String(v).toUpperCase(),
2468
2468
  /** Convert to lowercase */
@@ -2472,6 +2472,16 @@ var pipes = {
2472
2472
  /** Trim whitespace from both ends */
2473
2473
  trim: (v) => String(v).trim()
2474
2474
  };
2475
+ var pipesWithArgs = {
2476
+ /** Add prefix only if value is non-empty */
2477
+ prefix: (v, pre = "") => v ? `${pre}${v}` : "",
2478
+ /** Add suffix only if value is non-empty */
2479
+ suffix: (v, suf = "") => v ? `${v}${suf}` : "",
2480
+ /** Wrap value with prefix and suffix only if non-empty */
2481
+ wrap: (v, pre = "", suf = "") => v ? `${pre}${v}${suf}` : "",
2482
+ /** Show default value if empty */
2483
+ default: (v, def = "") => v || def
2484
+ };
2475
2485
  function getValue(obj, path) {
2476
2486
  return path.split(".").reduce((acc, key) => {
2477
2487
  if (acc == null || typeof acc !== "object") return void 0;
@@ -2479,20 +2489,42 @@ function getValue(obj, path) {
2479
2489
  }, obj);
2480
2490
  }
2481
2491
  var DEFAULT_LABEL_FALLBACK = "(Untitled)";
2492
+ function parsePipeExpression(pipeExpr) {
2493
+ const match = pipeExpr.match(/^(\w+)(?::(.*))?$/);
2494
+ if (!match) return { name: pipeExpr, args: [] };
2495
+ const name = match[1];
2496
+ const argsStr = match[2];
2497
+ if (!argsStr) return { name, args: [] };
2498
+ const args = [];
2499
+ const argRegex = /["']([^"']*?)["']/g;
2500
+ let argMatch;
2501
+ while ((argMatch = argRegex.exec(argsStr)) !== null) {
2502
+ args.push(argMatch[1]);
2503
+ }
2504
+ return { name, args };
2505
+ }
2482
2506
  function renderLabelExpression(template, values, fallback = DEFAULT_LABEL_FALLBACK) {
2483
2507
  const result = template.replace(/\{\{\s*([^}]+)\s*\}\}/g, (_, expr) => {
2484
2508
  const parts = expr.split("|").map((s) => s.trim());
2485
2509
  const path = parts[0];
2486
2510
  let value = getValue(values, path);
2487
- if (value == null || value === "") return "";
2511
+ const isEmpty3 = value == null || value === "";
2512
+ if (isEmpty3 && parts.length === 1) return "";
2488
2513
  for (let i = 1; i < parts.length; i++) {
2489
- const pipeName = parts[i].trim();
2490
- const fn = pipes[pipeName];
2491
- if (fn) {
2492
- value = fn(String(value));
2514
+ const { name: pipeName, args } = parsePipeExpression(parts[i]);
2515
+ const simpleFn = simplePipes[pipeName];
2516
+ if (simpleFn) {
2517
+ if (value != null && value !== "") {
2518
+ value = simpleFn(String(value));
2519
+ }
2520
+ } else {
2521
+ const argFn = pipesWithArgs[pipeName];
2522
+ if (argFn) {
2523
+ value = argFn(String(_nullishCoalesce(value, () => ( ""))), ...args);
2524
+ }
2493
2525
  }
2494
2526
  }
2495
- return String(value);
2527
+ return String(_nullishCoalesce(value, () => ( "")));
2496
2528
  }).trim();
2497
2529
  return result || fallback;
2498
2530
  }
@@ -2515,13 +2547,25 @@ function extractAttributeNames(template) {
2515
2547
  function hasOptions(attr) {
2516
2548
  return "options" in attr && Array.isArray(attr.options) && attr.options.length > 0;
2517
2549
  }
2518
- function enrichValuesWithSelectLabels(values, attributes) {
2550
+ var FORMATTABLE_TYPES = /* @__PURE__ */ new Set([
2551
+ "currency",
2552
+ "location",
2553
+ "phone",
2554
+ "date",
2555
+ "rating",
2556
+ "select",
2557
+ "status",
2558
+ "multiselect",
2559
+ "number"
2560
+ ]);
2561
+ function enrichValuesForDisplay(values, attributes) {
2519
2562
  const enriched = { ...values };
2520
2563
  for (const attr of attributes) {
2521
2564
  const value = values[attr.name];
2522
2565
  if (value == null) continue;
2566
+ if (!FORMATTABLE_TYPES.has(attr.type)) continue;
2523
2567
  const isSelectLike = attr.type === "select" || attr.type === "status" || attr.type === "multiselect";
2524
- if (!(isSelectLike && hasOptions(attr))) continue;
2568
+ if (isSelectLike && !hasOptions(attr)) continue;
2525
2569
  if (attr.type === "multiselect" && Array.isArray(value) && value.length === 0) continue;
2526
2570
  const formatted = formatAttributeValue(value, attr);
2527
2571
  if (formatted && formatted !== EMPTY_VALUE_PLACEHOLDER) {
@@ -2530,13 +2574,14 @@ function enrichValuesWithSelectLabels(values, attributes) {
2530
2574
  }
2531
2575
  return enriched;
2532
2576
  }
2577
+ var enrichValuesWithSelectLabels = enrichValuesForDisplay;
2533
2578
  function extractRelationIds(val) {
2534
2579
  if (typeof val === "string") return [val];
2535
2580
  if (Array.isArray(val) && typeof val[0] === "string") return [val[0]];
2536
2581
  return [];
2537
2582
  }
2538
2583
  async function computeLabelWithRelations(template, values, attributes, resolveRelationIds) {
2539
- let enrichedValues = enrichValuesWithSelectLabels(values, attributes);
2584
+ let enrichedValues = enrichValuesForDisplay(values, attributes);
2540
2585
  const attrNames = extractAttributeNames(template);
2541
2586
  const relationAttrs = attributes.filter(
2542
2587
  (attr) => attr.type === "relation" && attrNames.includes(attr.name)
@@ -3089,7 +3134,7 @@ function createMockObjectRecordsRepository(stores) {
3089
3134
  label: _nullishCoalesce(a.config.label, () => ( a.name)),
3090
3135
  required: _nullishCoalesce(a.config.required, () => ( false))
3091
3136
  }));
3092
- const enrichedValues = enrichValuesWithSelectLabels(r.values, attrs);
3137
+ const enrichedValues = enrichValuesForDisplay(r.values, attrs);
3093
3138
  return {
3094
3139
  objectId: r.objectId,
3095
3140
  objectName: _nullishCoalesce(_optionalChain([obj, 'optionalAccess', _43 => _43.name]), () => ( "unknown")),
@@ -7659,21 +7704,32 @@ function createAttributeValidator(attr, messages = DEFAULT_VALIDATION_MESSAGES)
7659
7704
  return _zod.z.unknown();
7660
7705
  }
7661
7706
  }
7707
+ function isEmptyValue(value) {
7708
+ if (value === null || value === void 0) return true;
7709
+ if (typeof value === "string" && value.trim() === "") return true;
7710
+ if (value instanceof Date) return false;
7711
+ if (typeof value === "object" && !Array.isArray(value)) {
7712
+ return Object.values(value).every(
7713
+ (v) => v === null || v === void 0 || typeof v === "string" && v.trim() === ""
7714
+ );
7715
+ }
7716
+ return false;
7717
+ }
7718
+ function withEmptyToNull(validator) {
7719
+ return _zod.z.preprocess((val) => isEmptyValue(val) ? null : val, validator.nullish());
7720
+ }
7662
7721
  function createFormAttributeValidator(attr, messages = DEFAULT_VALIDATION_MESSAGES) {
7663
7722
  const validator = createAttributeValidator(attr, messages);
7664
7723
  if (!attr.required) {
7665
- return validator.nullish();
7724
+ return withEmptyToNull(validator);
7666
7725
  }
7667
7726
  return validator;
7668
7727
  }
7669
7728
  function createObjectValidator(objectDef) {
7670
7729
  const shape = {};
7671
7730
  for (const attr of objectDef.attributes) {
7672
- let validator = createAttributeValidator(attr);
7673
- if (!attr.required) {
7674
- validator = validator.optional();
7675
- }
7676
- shape[attr.name] = validator;
7731
+ const validator = createAttributeValidator(attr);
7732
+ shape[attr.name] = attr.required ? validator : withEmptyToNull(validator);
7677
7733
  }
7678
7734
  return _zod.z.object(shape).strict();
7679
7735
  }
@@ -7726,8 +7782,8 @@ ${errorMessages}`);
7726
7782
  function createDraftValidator(objectDef) {
7727
7783
  const shape = {};
7728
7784
  for (const attr of objectDef.attributes) {
7729
- const validator = createAttributeValidator(attr).nullish();
7730
- shape[attr.name] = validator;
7785
+ const validator = createAttributeValidator(attr);
7786
+ shape[attr.name] = withEmptyToNull(validator);
7731
7787
  }
7732
7788
  return _zod.z.object(shape).strict();
7733
7789
  }
@@ -10179,7 +10235,7 @@ var RecordService = class extends TenantAwareService {
10179
10235
  */
10180
10236
  async computeLabel(schema, values) {
10181
10237
  const attrNames = extractAttributeNames(schema.labelExpression);
10182
- let enrichedValues = enrichValuesWithSelectLabels(values, schema.attributes);
10238
+ let enrichedValues = enrichValuesForDisplay(values, schema.attributes);
10183
10239
  const relationAttrs = schema.attributes.filter(
10184
10240
  (attr) => attr.type === "relation" && attrNames.includes(attr.name)
10185
10241
  );
@@ -13391,4 +13447,5 @@ var NoopGeocodingAdapter = class {
13391
13447
 
13392
13448
 
13393
13449
 
13394
- exports.RELATION_TARGET_ANY = RELATION_TARGET_ANY; exports.isUniversalRelation = isUniversalRelation; exports.RecordReferencedError = RecordReferencedError; exports.AttributeInUseError = AttributeInUseError; exports.ObjectReferencedError = ObjectReferencedError; exports.NoopGeocodingAdapter = NoopGeocodingAdapter; exports.SYSTEM_FIELD_NAMES = SYSTEM_FIELD_NAMES; exports.RESERVED_ATTRIBUTE_NAMES = RESERVED_ATTRIBUTE_NAMES; exports.PolicyViolationError = PolicyViolationError; 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.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.isEmpty = isEmpty; exports.isNotEmpty = isNotEmpty; exports.isWorkflowDefinition = isWorkflowDefinition; exports.isWorkflowPublished = isWorkflowPublished; exports.isSystemWorkflow = isSystemWorkflow; exports.isInstanceTerminal = isInstanceTerminal; exports.isInstanceWaiting = isInstanceWaiting; exports.canResumeInstance = canResumeInstance; exports.createStartTransition = createStartTransition; exports.isSignedLinkAuth = isSignedLinkAuth; exports.isPinCodeAuth = isPinCodeAuth; exports.canParticipate = canParticipate; exports.canAuthenticate = canAuthenticate; exports.canExecuteNode = canExecuteNode; exports.createEmptyContext = createEmptyContext; exports.getContextValue = getContextValue; exports.setContextValue = setContextValue; exports.mergeFormToSlot = mergeFormToSlot; exports.DEFAULT_THEME = DEFAULT_THEME; exports.mergeWithDefaults = mergeWithDefaults; exports.generateCssVariables = generateCssVariables; exports.isInstanceEvent = isInstanceEvent; exports.isNodeEvent = isNodeEvent; exports.isParticipationEvent = isParticipationEvent; 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.EndNodeSchema = EndNodeSchema; exports.WorkflowNodeSchema = WorkflowNodeSchema; exports.SlotModeSchema = SlotModeSchema; exports.WorkflowSlotSchema = WorkflowSlotSchema; exports.ParticipantAuthConfigSchema = ParticipantAuthConfigSchema; exports.ParticipantTemplateSchema = ParticipantTemplateSchema; 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.asTenantId = asTenantId; exports.asUserId = asUserId; exports.generateId = generateId; exports.generatePrefixedId = generatePrefixedId; exports.EMPTY_VALUE_PLACEHOLDER = EMPTY_VALUE_PLACEHOLDER; exports.formatAttributeValue = formatAttributeValue; 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.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.ObjectBuilder = ObjectBuilder; exports.object = object; exports.GroupBuilder = GroupBuilder; exports.DirectTableTabConfig = DirectTableTabConfig; exports.InverseTableTabConfig = InverseTableTabConfig; exports.CustomTabConfig = CustomTabConfig; exports.NotesTabConfig = NotesTabConfig; exports.ActivityTabConfig = ActivityTabConfig; exports.FlowsTabConfig = FlowsTabConfig; exports.TabBuilder = TabBuilder; exports.ViewBuilder = ViewBuilder; exports.view = view; exports.group = group; exports.WorkflowFormRowBuilder = WorkflowFormRowBuilder; exports.WorkflowFormBuilder = WorkflowFormBuilder; exports.WorkflowSimpleFormBuilder = WorkflowSimpleFormBuilder; exports.WorkflowConditionBuilder = WorkflowConditionBuilder; exports.WorkflowEndBuilder = WorkflowEndBuilder; exports.WorkflowStartBuilder = WorkflowStartBuilder; exports.WorkflowParticipantBuilder = WorkflowParticipantBuilder; exports.WorkflowBuilder = WorkflowBuilder; exports.workflow = workflow; exports.registry = registry; exports.DEFAULT_VALIDATION_MESSAGES = DEFAULT_VALIDATION_MESSAGES; exports.textConfigSchema = textConfigSchema; exports.textareaConfigSchema = textareaConfigSchema; exports.richtextConfigSchema = richtextConfigSchema; exports.numberConfigSchema = numberConfigSchema; exports.checkboxConfigSchema = checkboxConfigSchema; exports.dateConfigSchema = dateConfigSchema; exports.phoneConfigSchema = phoneConfigSchema; exports.currencyConfigSchema = currencyConfigSchema; exports.statusConfigSchema = statusConfigSchema; exports.locationConfigSchema = locationConfigSchema; exports.selectConfigSchema = selectConfigSchema; exports.multiselectConfigSchema = multiselectConfigSchema; exports.fileConfigSchema = fileConfigSchema; exports.userConfigSchema = userConfigSchema; exports.relationConfigSchema = relationConfigSchema; exports.ratingConfigSchema = ratingConfigSchema; exports.formulaConfigSchema = formulaConfigSchema; exports.rollupConfigSchema = rollupConfigSchema; exports.attributeConfigSchemas = attributeConfigSchemas; exports.getAttributeConfigSchema = getAttributeConfigSchema; exports.validateAttributeConfig = validateAttributeConfig; exports.parseAttributeConfig = parseAttributeConfig; exports.safeParseAttributeConfig = safeParseAttributeConfig; exports.createTextValidator = createTextValidator; exports.createNumberValidator = createNumberValidator; exports.createCheckboxValidator = createCheckboxValidator; exports.createDateValidator = createDateValidator; exports.createPhoneValidator = createPhoneValidator; exports.createCurrencyValidator = createCurrencyValidator; exports.createStatusValidator = createStatusValidator; exports.createSelectValidator = createSelectValidator; exports.createMultiselectValidator = createMultiselectValidator; exports.createLocationValidator = createLocationValidator; exports.createFileValidator = createFileValidator; exports.createUserValidator = createUserValidator; exports.createSingleRelationValidator = createSingleRelationValidator; exports.createMultiRelationValidator = createMultiRelationValidator; exports.createRelationValidator = createRelationValidator; exports.createRatingValidator = createRatingValidator; exports.createFormulaValidator = createFormulaValidator; exports.createRollupValidator = createRollupValidator; exports.createTextAreaValidator = createTextAreaValidator; exports.createRichtextValidator = createRichtextValidator; exports.createAttributeValidator = createAttributeValidator; exports.createFormAttributeValidator = createFormAttributeValidator; exports.createObjectValidator = createObjectValidator; exports.validateAttribute = validateAttribute; exports.validateObject = validateObject; exports.validateObjectOrThrow = validateObjectOrThrow; exports.createDraftValidator = createDraftValidator; exports.validateDraft = validateDraft; exports.validateDraftOrThrow = validateDraftOrThrow; exports.getMissingRequiredAttributes = getMissingRequiredAttributes; exports.isRecordComplete = isRecordComplete; exports.computeRecordStatus = computeRecordStatus; exports.ParticipationTokenService = ParticipationTokenService; exports.getDefaultTokenService = getDefaultTokenService; exports.initializeTokenService = initializeTokenService; exports.PinCodeService = PinCodeService; exports.getDefaultPinCodeService = getDefaultPinCodeService; exports.initializePinCodeService = initializePinCodeService; exports.cacheKeys = cacheKeys; exports.cacheTtl = cacheTtl; 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.getContext = getContext; 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.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.DEFAULT_LABEL_FALLBACK = DEFAULT_LABEL_FALLBACK; exports.renderLabelExpression = renderLabelExpression; exports.isLabelExpression = isLabelExpression; exports.extractAttributeNames = extractAttributeNames; exports.enrichValuesWithSelectLabels = enrichValuesWithSelectLabels; exports.extractRelationIds = extractRelationIds; exports.computeLabelWithRelations = computeLabelWithRelations; exports.createMockAdapter = createMockAdapter; exports.PolicyRegistry = PolicyRegistry; exports.defaultPolicyRegistry = defaultPolicyRegistry; exports.notesPolicy = notesPolicy; exports.buildAuditChanges = buildAuditChanges; exports.TenantAwareService = TenantAwareService; exports.TenantAwareRepository = TenantAwareRepository; exports.AuditService = AuditService; exports.FileService = FileService; exports.GeocodingService = GeocodingService; exports.GlobalSearchService = GlobalSearchService; exports.ObjectSchemaService = ObjectSchemaService; exports.PermissionService = PermissionService; exports.RelationService = RelationService; exports.RollupService = RollupService; exports.UserService = UserService; exports.RecordService = RecordService; exports.RelationResolverService = RelationResolverService; exports.RollupScheduler = RollupScheduler; exports.UserProfileService = UserProfileService; exports.ViewService = ViewService; exports.WorkflowInstanceService = WorkflowInstanceService; exports.WorkflowParticipationService = WorkflowParticipationService; exports.WorkflowRelationService = WorkflowRelationService; exports.WorkflowService = WorkflowService; exports.syncNativeViews = syncNativeViews; exports.verifyNativeViewsSync = verifyNativeViewsSync; exports.getViewSyncPreview = getViewSyncPreview; exports.syncNativeObjects = syncNativeObjects; exports.verifyNativeObjectsSync = verifyNativeObjectsSync; exports.getSyncPreview = getSyncPreview; exports.syncAll = syncAll;
13450
+
13451
+ exports.RELATION_TARGET_ANY = RELATION_TARGET_ANY; exports.isUniversalRelation = isUniversalRelation; exports.RecordReferencedError = RecordReferencedError; exports.AttributeInUseError = AttributeInUseError; exports.ObjectReferencedError = ObjectReferencedError; exports.NoopGeocodingAdapter = NoopGeocodingAdapter; exports.SYSTEM_FIELD_NAMES = SYSTEM_FIELD_NAMES; exports.RESERVED_ATTRIBUTE_NAMES = RESERVED_ATTRIBUTE_NAMES; exports.PolicyViolationError = PolicyViolationError; 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.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.isEmpty = isEmpty; exports.isNotEmpty = isNotEmpty; exports.isWorkflowDefinition = isWorkflowDefinition; exports.isWorkflowPublished = isWorkflowPublished; exports.isSystemWorkflow = isSystemWorkflow; exports.isInstanceTerminal = isInstanceTerminal; exports.isInstanceWaiting = isInstanceWaiting; exports.canResumeInstance = canResumeInstance; exports.createStartTransition = createStartTransition; exports.isSignedLinkAuth = isSignedLinkAuth; exports.isPinCodeAuth = isPinCodeAuth; exports.canParticipate = canParticipate; exports.canAuthenticate = canAuthenticate; exports.canExecuteNode = canExecuteNode; exports.createEmptyContext = createEmptyContext; exports.getContextValue = getContextValue; exports.setContextValue = setContextValue; exports.mergeFormToSlot = mergeFormToSlot; exports.DEFAULT_THEME = DEFAULT_THEME; exports.mergeWithDefaults = mergeWithDefaults; exports.generateCssVariables = generateCssVariables; exports.isInstanceEvent = isInstanceEvent; exports.isNodeEvent = isNodeEvent; exports.isParticipationEvent = isParticipationEvent; 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.EndNodeSchema = EndNodeSchema; exports.WorkflowNodeSchema = WorkflowNodeSchema; exports.SlotModeSchema = SlotModeSchema; exports.WorkflowSlotSchema = WorkflowSlotSchema; exports.ParticipantAuthConfigSchema = ParticipantAuthConfigSchema; exports.ParticipantTemplateSchema = ParticipantTemplateSchema; 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.asTenantId = asTenantId; exports.asUserId = asUserId; exports.generateId = generateId; exports.generatePrefixedId = generatePrefixedId; exports.EMPTY_VALUE_PLACEHOLDER = EMPTY_VALUE_PLACEHOLDER; exports.formatAttributeValue = formatAttributeValue; 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.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.ObjectBuilder = ObjectBuilder; exports.object = object; exports.GroupBuilder = GroupBuilder; exports.DirectTableTabConfig = DirectTableTabConfig; exports.InverseTableTabConfig = InverseTableTabConfig; exports.CustomTabConfig = CustomTabConfig; exports.NotesTabConfig = NotesTabConfig; exports.ActivityTabConfig = ActivityTabConfig; exports.FlowsTabConfig = FlowsTabConfig; exports.TabBuilder = TabBuilder; exports.ViewBuilder = ViewBuilder; exports.view = view; exports.group = group; exports.WorkflowFormRowBuilder = WorkflowFormRowBuilder; exports.WorkflowFormBuilder = WorkflowFormBuilder; exports.WorkflowSimpleFormBuilder = WorkflowSimpleFormBuilder; exports.WorkflowConditionBuilder = WorkflowConditionBuilder; exports.WorkflowEndBuilder = WorkflowEndBuilder; exports.WorkflowStartBuilder = WorkflowStartBuilder; exports.WorkflowParticipantBuilder = WorkflowParticipantBuilder; exports.WorkflowBuilder = WorkflowBuilder; exports.workflow = workflow; exports.registry = registry; exports.DEFAULT_VALIDATION_MESSAGES = DEFAULT_VALIDATION_MESSAGES; exports.textConfigSchema = textConfigSchema; exports.textareaConfigSchema = textareaConfigSchema; exports.richtextConfigSchema = richtextConfigSchema; exports.numberConfigSchema = numberConfigSchema; exports.checkboxConfigSchema = checkboxConfigSchema; exports.dateConfigSchema = dateConfigSchema; exports.phoneConfigSchema = phoneConfigSchema; exports.currencyConfigSchema = currencyConfigSchema; exports.statusConfigSchema = statusConfigSchema; exports.locationConfigSchema = locationConfigSchema; exports.selectConfigSchema = selectConfigSchema; exports.multiselectConfigSchema = multiselectConfigSchema; exports.fileConfigSchema = fileConfigSchema; exports.userConfigSchema = userConfigSchema; exports.relationConfigSchema = relationConfigSchema; exports.ratingConfigSchema = ratingConfigSchema; exports.formulaConfigSchema = formulaConfigSchema; exports.rollupConfigSchema = rollupConfigSchema; exports.attributeConfigSchemas = attributeConfigSchemas; exports.getAttributeConfigSchema = getAttributeConfigSchema; exports.validateAttributeConfig = validateAttributeConfig; exports.parseAttributeConfig = parseAttributeConfig; exports.safeParseAttributeConfig = safeParseAttributeConfig; exports.createTextValidator = createTextValidator; exports.createNumberValidator = createNumberValidator; exports.createCheckboxValidator = createCheckboxValidator; exports.createDateValidator = createDateValidator; exports.createPhoneValidator = createPhoneValidator; exports.createCurrencyValidator = createCurrencyValidator; exports.createStatusValidator = createStatusValidator; exports.createSelectValidator = createSelectValidator; exports.createMultiselectValidator = createMultiselectValidator; exports.createLocationValidator = createLocationValidator; exports.createFileValidator = createFileValidator; exports.createUserValidator = createUserValidator; exports.createSingleRelationValidator = createSingleRelationValidator; exports.createMultiRelationValidator = createMultiRelationValidator; exports.createRelationValidator = createRelationValidator; exports.createRatingValidator = createRatingValidator; exports.createFormulaValidator = createFormulaValidator; exports.createRollupValidator = createRollupValidator; exports.createTextAreaValidator = createTextAreaValidator; exports.createRichtextValidator = createRichtextValidator; exports.createAttributeValidator = createAttributeValidator; exports.createFormAttributeValidator = createFormAttributeValidator; exports.createObjectValidator = createObjectValidator; exports.validateAttribute = validateAttribute; exports.validateObject = validateObject; exports.validateObjectOrThrow = validateObjectOrThrow; exports.createDraftValidator = createDraftValidator; exports.validateDraft = validateDraft; exports.validateDraftOrThrow = validateDraftOrThrow; exports.getMissingRequiredAttributes = getMissingRequiredAttributes; exports.isRecordComplete = isRecordComplete; exports.computeRecordStatus = computeRecordStatus; exports.ParticipationTokenService = ParticipationTokenService; exports.getDefaultTokenService = getDefaultTokenService; exports.initializeTokenService = initializeTokenService; exports.PinCodeService = PinCodeService; exports.getDefaultPinCodeService = getDefaultPinCodeService; exports.initializePinCodeService = initializePinCodeService; exports.cacheKeys = cacheKeys; exports.cacheTtl = cacheTtl; 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.getContext = getContext; 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.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.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.createMockAdapter = createMockAdapter; exports.PolicyRegistry = PolicyRegistry; exports.defaultPolicyRegistry = defaultPolicyRegistry; exports.notesPolicy = notesPolicy; exports.buildAuditChanges = buildAuditChanges; exports.TenantAwareService = TenantAwareService; exports.TenantAwareRepository = TenantAwareRepository; exports.AuditService = AuditService; exports.FileService = FileService; exports.GeocodingService = GeocodingService; exports.GlobalSearchService = GlobalSearchService; exports.ObjectSchemaService = ObjectSchemaService; exports.PermissionService = PermissionService; exports.RelationService = RelationService; exports.RollupService = RollupService; exports.UserService = UserService; exports.RecordService = RecordService; exports.RelationResolverService = RelationResolverService; exports.RollupScheduler = RollupScheduler; exports.UserProfileService = UserProfileService; exports.ViewService = ViewService; exports.WorkflowInstanceService = WorkflowInstanceService; exports.WorkflowParticipationService = WorkflowParticipationService; exports.WorkflowRelationService = WorkflowRelationService; exports.WorkflowService = WorkflowService; exports.syncNativeViews = syncNativeViews; exports.verifyNativeViewsSync = verifyNativeViewsSync; 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 { D as DateAttribute, U as UserAttribute, A as Attribute, S as SystemResource, a as SystemAction, O as ObjectAction, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, P as PhoneAttribute, d as CurrencyAttribute, e as Option, f as StatusAttribute, g as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, F as FileAttribute, h as SingleRelationAttribute, i as MultiRelationAttribute, j as RelationTarget, k as RatingAttribute, l as FormulaAttribute, m as FormulaReturnType, n as RollupAttribute, o as RollupFunction, p as AttributeType, I as InferAttributeValue, q as ObjectDefinition, r as Field, s as AttributeGroupField, G as Group, t as TableTab, V as ViewLayout, u as InverseTableTab, v as ViewDefinition, w as InstanceStatus, x as Tab, y as FilterState, z as SortRule, B as DirectTableTab, W as WorkflowTheme, E as WorkflowConfig, H as SlotMode, J as AuthMethod, K as AuthChannel, Q as ParticipantTemplate, X as ConditionGroup, Y as ConditionRule, Z as WorkflowNode, _ as WorkflowDefinition, $ as FlowRow, a0 as BlockNoteContent } from './runtime-B3RCubTj.mjs';
2
- export { c8 as ActivityTab, bq as AddAttribute, gp as AddAttributeInput, aY as AdvancedFilterState, bX as AssignRoleInput, fW as AttributeChange, a2 as AttributeGroup, bp as AttributeMap, bl as AttributeSchema, g6 as AttributesRepository, aw as AuditAction, ax as AuditActorType, ay as AuditChange, aB as AuditListOptions, az as AuditLogEntry, ge as AuditRepository, av as AuditResourceType, gh as AuditService, aC as AuditServiceOptions, gZ as AuthenticationResult, a3 as BaseAttribute, ae as BlockNoteBlock, af as BlockNoteCustomInlineContent, ag as BlockNoteDefaultProps, ah as BlockNoteInlineContent, ai as BlockNoteLink, aj as BlockNoteStyledText, ak as BlockNoteStyles, al as BlockNoteTableCell, am as BlockNoteTableCellProps, an as BlockNoteTableContent, eD as CacheAdapter, eE as CacheOptions, cI as CanvasViewport, aK as CheckboxFilterOperator, bL as CompletionStatus, fo as ConditionExecutor, cm as ConditionNode, cw as ConditionOperator, aA as CreateAuditLogInput, go as CreateCustomObjectInput, hv as CreateDBAttribute, hr as CreateDBObject, hF as CreateDBView, hJ as CreateDBWorkflow, hM as CreateDBWorkflowInstance, hP as CreateDBWorkflowParticipation, aG as CreateFile, hy as CreateObjectRecord, gX as CreateParticipationInput, gY as CreateParticipationResult, bW as CreatePermissionInput, bU as CreateRoleInput, c2 as CreateUserProfile, gQ as CreateViewInput, h1 as CreateWorkflowInput, a8 as Currency, aR as CurrencyFilterValue, bu as CustomAttributeValue, c7 as CustomTab, hu as DBAttribute, hq as DBObject, hE as DBView, hI as DBWorkflow, hL as DBWorkflowInstance, hO as DBWorkflowParticipation, hi as DEFAULT_LABEL_FALLBACK, dk as DEFAULT_THEME, dy as DEFAULT_VALIDATION_MESSAGES, er as DatabaseAdapter, aL as DateFilterOperator, a5 as DateFormat, a6 as DateValue, bR as EffectivePermissions, fp as EndExecutor, cn as EndNode, eZ as EvaluationResult, e_ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, aV as ExtendedFilterRule, bE as ExtractAttributes, by as ExtractRecord, bA as ExtractRecordInput, bB as ExtractRecordInputStrict, bz as ExtractRecordStrict, bC as ExtractRecordUpdate, bD as ExtractRecordUpdateStrict, eI as FetchResult, g$ as FieldReadOnlyResult, aF as File, h4 as FileContent, hD as FileListOptions, gl as FileService, gk as FileServiceOptions, aE as FileVisibility, g8 as FilesRepository, aW as FilterCombinator, aX as FilterGroup, aP as FilterOperator, aU as FilterRule, aT as FilterValue, bb as FlowDefinition, b8 as FlowPage, b9 as FlowRelation, b7 as FlowRowField, b6 as FlowSlot, ba as FlowStatus, ca as FlowsTab, dg as FormContextResponse, fq as FormExecutor, dd as FormFieldContext, cl as FormFieldRef, de as FormFieldRow, ck as FormNode, df as FormNodeInfo, c6 as FormTab, eJ as FormattedRecord, fE as FormulaResult, hg as FullSyncOptions, hf as FullSyncResult, d5 as GeneratedDocument, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, gm as GeocodingService, bf as GeocodingSuggestion, gD as GetRelationOptionsParams, hB as GlobalSearchOptions, hC as GlobalSearchResultItem, gn as GlobalSearchService, eK as GroupedFetchResult, fX as HookContext, fY as HookDefinition, fZ as HookHandler, g0 as HookRegistry, f_ as HookType, br as InferRecord, bm as InferRecordFromSchema, bs as InferRecordInput, bt as InferRecordUpdate, bn as InferRecordWithRequirements, eL as InsertOptions, fI as InvalidPathError, c4 as InviteUserInput, hz as ListOptions, a9 as Location, aa as LocationGranularity, fJ as MaxDepthExceededError, aN as MultiselectFilterOperator, b4 as NO_VALUE_OPERATORS, b3 as NoValueOperator, fi as NodeExecutor, cH as NodePosition, eH as NoopCacheAdapter, bk as NoopGeocodingAdapter, f$ as NoopHookRegistry, c9 as NotesTab, aJ as NumberFilterOperator, a4 as NumberUnit, b2 as OPERATORS_BY_TYPE, bK as ObjectAttribute, bS as ObjectPermissions, bM as ObjectRecord, g9 as ObjectRecordsRepository, gs as ObjectSchemaService, gr as ObjectSchemaServiceOptions, g5 as ObjectsRepository, hR as OperationResult, ao as PartialBlockNoteBlock, ap as PartialBlockNoteContent, aq as PartialBlockNoteInlineContent, ar as PartialBlockNoteLink, as as PartialBlockNoteStyledText, at as PartialBlockNoteTableCell, au as PartialBlockNoteTableContent, cK as ParticipantAuthConfig, c_ as ParticipationAuth, cX as ParticipationStatus, ev as ParticipationTokenPayload, es as ParticipationTokenService, fN as PathCardinality, fO as PathSegment, fP as PathSegmentType, cR as PendingAction, bP as Permission, bN as PermissionScope, gu as PermissionService, gt as PermissionServiceOptions, gf as PermissionsRepository, a7 as Phone, aS as PhoneFilterValue, cZ as PinCodeAuth, eB as PinCodeGenerationOptions, ey as PinCodeService, eC as PinCodeVerificationResult, bY as PolicyContext, g3 as PolicyRegistry, b_ as PolicyViolationError, eX as QueryBuilder, eY as QueryBuilderOptions, eM as QueryBuilderState, eT as QueryMultipleResultsError, eU as QueryNoResultError, b1 as QueryState, ab as RELATION_TARGET_ANY, bF as RESERVED_ATTRIBUTE_NAMES, dc as ReadOnlyReason, bw as RecordMetadata, bZ as RecordPolicy, gw as RecordService, gv as RecordServiceOptions, eN as RegistryMap, eO as RegistryObjectNames, ac as RelationAttribute, aO as RelationFilterOperator, ho as RelationLabelResolver, gB as RelationOption, gC as RelationOptionsResponse, gy as RelationResolverService, gF as RelationService, gE as RelationServiceOptions, gA as RelationValidationError, gz as RelationValidationResult, aQ as RelativeDateValue, bH as ReservedAttributeName, gx as ResolvedRelations, gU as ResumeWorkflowInput, bh as ReverseGeocodingParams, bO as Role, gI as RollupResult, gH as RollupScheduler, gG as RollupSchedulerOptions, gK as RollupService, gJ as RollupServiceOptions, eV as SHORTCUT_TO_FILTER_OPERATOR, bG as SYSTEM_FIELD_NAMES, fQ as SchemaResolver, hA as SearchOptions, aM as SelectFilterOperator, eP as ShortcutOperator, cY as SignedLinkAuth, h7 as SignedUrlOptions, b0 as SortDirection, fr as StartExecutor, cj as StartNode, gT as StartWorkflowInput, a1 as StatusGroup, h8 as StorageAdapter, aD as StorageProvider, h5 as StorageUploadInput, h6 as StorageUploadResult, hb as SyncOptions, ha as SyncResult, bI as SystemFieldName, bx as SystemFields, bT as SystemPermissions, c5 as TabType, gj as TenantAwareRepository, gi as TenantAwareService, f9 as TenantContext, f2 as TenantContextError, dp as TenantId, aI as TextFilterOperator, di as ThemeColors, dh as ThemeLogo, dj as ThemeTypography, bJ as Timestamps, ew as TokenGenerationOptions, ex as TokenVerificationResult, fU as TraversalOptions, fV as TraversalResult, bo as TypedAttribute, hw as UpdateDBAttribute, hs as UpdateDBObject, hG as UpdateDBView, hK as UpdateDBWorkflow, hN as UpdateDBWorkflowInstance, hQ as UpdateDBWorkflowParticipation, aH as UpdateFile, gq as UpdateObjectInput, bV as UpdateRoleInput, c3 as UpdateUserProfile, gR as UpdateViewInput, h2 as UpdateWorkflowInput, h9 as UploadFileInput, hx as UpsertDBAttribute, ht as UpsertDBObject, hH as UpsertDBView, dq as UserId, c1 as UserProfile, gM as UserProfileService, gL as UserProfileServiceOptions, g7 as UserProfilesRepository, b$ as UserRole, bQ as UserRoleAssignment, gP as UserService, c0 as UserStatus, gO as UserValidationError, gN as UserValidationResult, dn as Uuid, dx as ValidationMessages, eh as ValidationResult, gS as ViewService, hT as ViewSyncOptions, hS as ViewSyncResult, ga as ViewsRepository, bv as WithCustomAttributes, db as WorkflowAccessMode, cQ as WorkflowError, d6 as WorkflowExecutionContext, cS as WorkflowInstance, gW as WorkflowInstanceService, gV as WorkflowInstanceServiceOptions, gc as WorkflowInstancesRepository, cJ as WorkflowLayout, co as WorkflowNodeType, c$ as WorkflowParticipation, g_ as WorkflowParticipationService, gd as WorkflowParticipationsRepository, h0 as WorkflowRelationService, h3 as WorkflowService, cG as WorkflowSlot, cL as WorkflowStatus, cP as WorkflowTransition, gb as WorkflowsRepository, cB as and, dr as asTenantId, ds as asUserId, dR as attributeConfigSchemas, gg as buildAuditChanges, eF as cacheKeys, eG as cacheTtl, d3 as canAuthenticate, d4 as canExecuteNode, d2 as canParticipate, cV as canResumeInstance, dD as checkboxConfigSchema, fj as complete, hp as computeLabelWithRelations, eq as computeRecordStatus, ee as createAttributeValidator, dY as createCheckboxValidator, d$ as createCurrencyValidator, dZ as createDateValidator, fa as createDefaultExecutorRegistry, eQ as createDefaultState, el as createDraftValidator, d7 as createEmptyContext, e4 as createFileValidator, ef as createFormAttributeValidator, ea as createFormulaValidator, e3 as createLocationValidator, g1 as createMockAdapter, e7 as createMultiRelationValidator, e2 as createMultiselectValidator, dX as createNumberValidator, eg as createObjectValidator, d_ as createPhoneValidator, eW as createQueryBuilder, e9 as createRatingValidator, e8 as createRelationValidator, ed as createRichtextValidator, eb as createRollupValidator, e1 as createSelectValidator, e6 as createSingleRelationValidator, cW as createStartTransition, e0 as createStatusValidator, ec as createTextAreaValidator, dW as createTextValidator, e5 as createUserValidator, dG as currencyConfigSchema, dE as dateConfigSchema, g2 as defaultPolicyRegistry, hm as enrichValuesWithSelectLabels, cz as eq, fk as error, f0 as evaluate, e$ as evaluateCondition, fs as evaluateFormula, ft as evaluateFormulaAttribute, fu as evaluateFormulaAttributeWithRelations, fv as evaluateFormulaWithRelations, fw as evaluateFormulaWithResult, f1 as evaluateWithTrace, hl as extractAttributeNames, fx as extractFormulaVariables, hn as extractRelationIds, fy as extractRelationNames, fz as extractRelationReferences, dL as fileConfigSchema, fA as flattenRelationsForEval, fB as formatFormulaResult, eR as formatRecord, eS as formatRecords, dP as formulaConfigSchema, dm as generateCssVariables, dt as generateId, du as generatePrefixedId, dS as getAttributeConfigSchema, f3 as getContext, d8 as getContextValue, fb as getDefaultExecutorRegistry, ez as getDefaultPinCodeService, et as getDefaultTokenService, eo as getMissingRequiredAttributes, cv as getNodeOutputs, fF as getPathDepth, fG as getRelationPath, he as getSyncPreview, fH as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, hW as getViewSyncPreview, f6 as hasContext, fC as hasRelationReferences, cD as inValues, eA as initializePinCodeService, eu as initializeTokenService, cg as isActivityTab, aZ as isAdvancedFilterState, cu as isAdvancedFormNode, cy as isConditionGroup, cr as isConditionNode, cx as isConditionRule, cf as isCustomTab, cd as isDirectTableTab, cE as isEmpty, cs as isEndNode, bc as isFlowDefinition, bd as isFlowPublished, ci as isFlowsTab, cq as isFormNode, cb as isFormTab, cT as isInstanceTerminal, cU as isInstanceWaiting, ce as isInverseTableTab, hk as isLabelExpression, b5 as isNoValueOperator, cF as isNotEmpty, ch as isNotesTab, d1 as isPinCodeAuth, ep as isRecordComplete, d0 as isSignedLinkAuth, ct as isSimpleFormNode, cp as isStartNode, be as isSystemFlow, cO as isSystemWorkflow, cc as isTableTab, ad as isUniversalRelation, cM as isWorkflowDefinition, cN as isWorkflowPublished, dI as locationConfigSchema, da as mergeFormToSlot, dl as mergeWithDefaults, dK as multiselectConfigSchema, cA as neq, g4 as notesPolicy, dC as numberConfigSchema, cC as or, dU as parseAttributeConfig, fK as parsePath, fL as pathHasManyCardinality, dF as phoneConfigSchema, dO as ratingConfigSchema, dv as registry, dN as relationConfigSchema, hj as renderLabelExpression, fR as resolveMultiplePaths, fS as resolveSingleValue, dB as richtextConfigSchema, dQ as rollupConfigSchema, f7 as runWithContext, dV as safeParseAttributeConfig, dJ as selectConfigSchema, d9 as setContextValue, dH as statusConfigSchema, fm as success, hh as syncAll, hc as syncNativeObjects, hU as syncNativeViews, dz as textConfigSchema, dA as textareaConfigSchema, a_ as toAdvancedFilterState, a$ as toSimpleFilterState, fT as traversePath, dM as userConfigSchema, ei as validateAttribute, dT as validateAttributeConfig, em as validateDraft, en as validateDraftOrThrow, fD as validateFormulaExpression, ej as validateObject, ek as validateObjectOrThrow, fM as validatePath, hd as verifyNativeObjectsSync, hV as verifyNativeViewsSync, dw as viewRegistry, fn as wait, f8 as withTenantContext } from './runtime-B3RCubTj.mjs';
1
+ import { D as DateAttribute, U as UserAttribute, A as Attribute, S as SystemResource, a as SystemAction, O as ObjectAction, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, P as PhoneAttribute, d as CurrencyAttribute, e as Option, f as StatusAttribute, g as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, F as FileAttribute, h as SingleRelationAttribute, i as MultiRelationAttribute, j as RelationTarget, k as RatingAttribute, l as FormulaAttribute, m as FormulaReturnType, n as RollupAttribute, o as RollupFunction, p as AttributeType, I as InferAttributeValue, q as ObjectDefinition, r as Field, s as AttributeGroupField, G as Group, t as TableTab, V as ViewLayout, u as InverseTableTab, v as ViewDefinition, w as InstanceStatus, x as Tab, y as FilterState, z as SortRule, B as DirectTableTab, W as WorkflowTheme, E as WorkflowConfig, H as SlotMode, J as AuthMethod, K as AuthChannel, Q as ParticipantTemplate, X as ConditionGroup, Y as ConditionRule, Z as WorkflowNode, _ as WorkflowDefinition, $ as FlowRow, a0 as BlockNoteContent } from './runtime-Dl-kGqgX.mjs';
2
+ export { c8 as ActivityTab, bq as AddAttribute, gp as AddAttributeInput, aY as AdvancedFilterState, bX as AssignRoleInput, fW as AttributeChange, a2 as AttributeGroup, bp as AttributeMap, bl as AttributeSchema, g6 as AttributesRepository, aw as AuditAction, ax as AuditActorType, ay as AuditChange, aB as AuditListOptions, az as AuditLogEntry, ge as AuditRepository, av as AuditResourceType, gh as AuditService, aC as AuditServiceOptions, gZ as AuthenticationResult, a3 as BaseAttribute, ae as BlockNoteBlock, af as BlockNoteCustomInlineContent, ag as BlockNoteDefaultProps, ah as BlockNoteInlineContent, ai as BlockNoteLink, aj as BlockNoteStyledText, ak as BlockNoteStyles, al as BlockNoteTableCell, am as BlockNoteTableCellProps, an as BlockNoteTableContent, eD as CacheAdapter, eE as CacheOptions, cI as CanvasViewport, aK as CheckboxFilterOperator, bL as CompletionStatus, fo as ConditionExecutor, cm as ConditionNode, cw as ConditionOperator, aA as CreateAuditLogInput, go as CreateCustomObjectInput, hw as CreateDBAttribute, hs as CreateDBObject, hG as CreateDBView, hK as CreateDBWorkflow, hN as CreateDBWorkflowInstance, hQ as CreateDBWorkflowParticipation, aG as CreateFile, hz as CreateObjectRecord, gX as CreateParticipationInput, gY as CreateParticipationResult, bW as CreatePermissionInput, bU as CreateRoleInput, c2 as CreateUserProfile, gQ as CreateViewInput, h1 as CreateWorkflowInput, a8 as Currency, aR as CurrencyFilterValue, bu as CustomAttributeValue, c7 as CustomTab, hv as DBAttribute, hr as DBObject, hF as DBView, hJ as DBWorkflow, hM as DBWorkflowInstance, hP as DBWorkflowParticipation, hi as DEFAULT_LABEL_FALLBACK, dk as DEFAULT_THEME, dy as DEFAULT_VALIDATION_MESSAGES, er as DatabaseAdapter, aL as DateFilterOperator, a5 as DateFormat, a6 as DateValue, bR as EffectivePermissions, fp as EndExecutor, cn as EndNode, eZ as EvaluationResult, e_ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, aV as ExtendedFilterRule, bE as ExtractAttributes, by as ExtractRecord, bA as ExtractRecordInput, bB as ExtractRecordInputStrict, bz as ExtractRecordStrict, bC as ExtractRecordUpdate, bD as ExtractRecordUpdateStrict, eI as FetchResult, g$ as FieldReadOnlyResult, aF as File, h4 as FileContent, hE as FileListOptions, gl as FileService, gk as FileServiceOptions, aE as FileVisibility, g8 as FilesRepository, aW as FilterCombinator, aX as FilterGroup, aP as FilterOperator, aU as FilterRule, aT as FilterValue, bb as FlowDefinition, b8 as FlowPage, b9 as FlowRelation, b7 as FlowRowField, b6 as FlowSlot, ba as FlowStatus, ca as FlowsTab, dg as FormContextResponse, fq as FormExecutor, dd as FormFieldContext, cl as FormFieldRef, de as FormFieldRow, ck as FormNode, df as FormNodeInfo, c6 as FormTab, eJ as FormattedRecord, fE as FormulaResult, hg as FullSyncOptions, hf as FullSyncResult, d5 as GeneratedDocument, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, gm as GeocodingService, bf as GeocodingSuggestion, gD as GetRelationOptionsParams, hC as GlobalSearchOptions, hD as GlobalSearchResultItem, gn as GlobalSearchService, eK as GroupedFetchResult, fX as HookContext, fY as HookDefinition, fZ as HookHandler, g0 as HookRegistry, f_ as HookType, br as InferRecord, bm as InferRecordFromSchema, bs as InferRecordInput, bt as InferRecordUpdate, bn as InferRecordWithRequirements, eL as InsertOptions, fI as InvalidPathError, c4 as InviteUserInput, hA as ListOptions, a9 as Location, aa as LocationGranularity, fJ as MaxDepthExceededError, aN as MultiselectFilterOperator, b4 as NO_VALUE_OPERATORS, b3 as NoValueOperator, fi as NodeExecutor, cH as NodePosition, eH as NoopCacheAdapter, bk as NoopGeocodingAdapter, f$ as NoopHookRegistry, c9 as NotesTab, aJ as NumberFilterOperator, a4 as NumberUnit, b2 as OPERATORS_BY_TYPE, bK as ObjectAttribute, bS as ObjectPermissions, bM as ObjectRecord, g9 as ObjectRecordsRepository, gs as ObjectSchemaService, gr as ObjectSchemaServiceOptions, g5 as ObjectsRepository, hS as OperationResult, ao as PartialBlockNoteBlock, ap as PartialBlockNoteContent, aq as PartialBlockNoteInlineContent, ar as PartialBlockNoteLink, as as PartialBlockNoteStyledText, at as PartialBlockNoteTableCell, au as PartialBlockNoteTableContent, cK as ParticipantAuthConfig, c_ as ParticipationAuth, cX as ParticipationStatus, ev as ParticipationTokenPayload, es as ParticipationTokenService, fN as PathCardinality, fO as PathSegment, fP as PathSegmentType, cR as PendingAction, bP as Permission, bN as PermissionScope, gu as PermissionService, gt as PermissionServiceOptions, gf as PermissionsRepository, a7 as Phone, aS as PhoneFilterValue, cZ as PinCodeAuth, eB as PinCodeGenerationOptions, ey as PinCodeService, eC as PinCodeVerificationResult, bY as PolicyContext, g3 as PolicyRegistry, b_ as PolicyViolationError, eX as QueryBuilder, eY as QueryBuilderOptions, eM as QueryBuilderState, eT as QueryMultipleResultsError, eU as QueryNoResultError, b1 as QueryState, ab as RELATION_TARGET_ANY, bF as RESERVED_ATTRIBUTE_NAMES, dc as ReadOnlyReason, bw as RecordMetadata, bZ as RecordPolicy, gw as RecordService, gv as RecordServiceOptions, eN as RegistryMap, eO as RegistryObjectNames, ac as RelationAttribute, aO as RelationFilterOperator, hp as RelationLabelResolver, gB as RelationOption, gC as RelationOptionsResponse, gy as RelationResolverService, gF as RelationService, gE as RelationServiceOptions, gA as RelationValidationError, gz as RelationValidationResult, aQ as RelativeDateValue, bH as ReservedAttributeName, gx as ResolvedRelations, gU as ResumeWorkflowInput, bh as ReverseGeocodingParams, bO as Role, gI as RollupResult, gH as RollupScheduler, gG as RollupSchedulerOptions, gK as RollupService, gJ as RollupServiceOptions, eV as SHORTCUT_TO_FILTER_OPERATOR, bG as SYSTEM_FIELD_NAMES, fQ as SchemaResolver, hB as SearchOptions, aM as SelectFilterOperator, eP as ShortcutOperator, cY as SignedLinkAuth, h7 as SignedUrlOptions, b0 as SortDirection, fr as StartExecutor, cj as StartNode, gT as StartWorkflowInput, a1 as StatusGroup, h8 as StorageAdapter, aD as StorageProvider, h5 as StorageUploadInput, h6 as StorageUploadResult, hb as SyncOptions, ha as SyncResult, bI as SystemFieldName, bx as SystemFields, bT as SystemPermissions, c5 as TabType, gj as TenantAwareRepository, gi as TenantAwareService, f9 as TenantContext, f2 as TenantContextError, dp as TenantId, aI as TextFilterOperator, di as ThemeColors, dh as ThemeLogo, dj as ThemeTypography, bJ as Timestamps, ew as TokenGenerationOptions, ex as TokenVerificationResult, fU as TraversalOptions, fV as TraversalResult, bo as TypedAttribute, hx as UpdateDBAttribute, ht as UpdateDBObject, hH as UpdateDBView, hL as UpdateDBWorkflow, hO as UpdateDBWorkflowInstance, hR as UpdateDBWorkflowParticipation, aH as UpdateFile, gq as UpdateObjectInput, bV as UpdateRoleInput, c3 as UpdateUserProfile, gR as UpdateViewInput, h2 as UpdateWorkflowInput, h9 as UploadFileInput, hy as UpsertDBAttribute, hu as UpsertDBObject, hI as UpsertDBView, dq as UserId, c1 as UserProfile, gM as UserProfileService, gL as UserProfileServiceOptions, g7 as UserProfilesRepository, b$ as UserRole, bQ as UserRoleAssignment, gP as UserService, c0 as UserStatus, gO as UserValidationError, gN as UserValidationResult, dn as Uuid, dx as ValidationMessages, eh as ValidationResult, gS as ViewService, hU as ViewSyncOptions, hT as ViewSyncResult, ga as ViewsRepository, bv as WithCustomAttributes, db as WorkflowAccessMode, cQ as WorkflowError, d6 as WorkflowExecutionContext, cS as WorkflowInstance, gW as WorkflowInstanceService, gV as WorkflowInstanceServiceOptions, gc as WorkflowInstancesRepository, cJ as WorkflowLayout, co as WorkflowNodeType, c$ as WorkflowParticipation, g_ as WorkflowParticipationService, gd as WorkflowParticipationsRepository, h0 as WorkflowRelationService, h3 as WorkflowService, cG as WorkflowSlot, cL as WorkflowStatus, cP as WorkflowTransition, gb as WorkflowsRepository, cB as and, dr as asTenantId, ds as asUserId, dR as attributeConfigSchemas, gg as buildAuditChanges, eF as cacheKeys, eG as cacheTtl, d3 as canAuthenticate, d4 as canExecuteNode, d2 as canParticipate, cV as canResumeInstance, dD as checkboxConfigSchema, fj as complete, hq as computeLabelWithRelations, eq as computeRecordStatus, ee as createAttributeValidator, dY as createCheckboxValidator, d$ as createCurrencyValidator, dZ as createDateValidator, fa as createDefaultExecutorRegistry, eQ as createDefaultState, el as createDraftValidator, d7 as createEmptyContext, e4 as createFileValidator, ef as createFormAttributeValidator, ea as createFormulaValidator, e3 as createLocationValidator, g1 as createMockAdapter, e7 as createMultiRelationValidator, e2 as createMultiselectValidator, dX as createNumberValidator, eg as createObjectValidator, d_ as createPhoneValidator, eW as createQueryBuilder, e9 as createRatingValidator, e8 as createRelationValidator, ed as createRichtextValidator, eb as createRollupValidator, e1 as createSelectValidator, e6 as createSingleRelationValidator, cW as createStartTransition, e0 as createStatusValidator, ec as createTextAreaValidator, dW as createTextValidator, e5 as createUserValidator, dG as currencyConfigSchema, dE as dateConfigSchema, g2 as defaultPolicyRegistry, hm as enrichValuesForDisplay, hn as enrichValuesWithSelectLabels, cz as eq, fk as error, f0 as evaluate, e$ as evaluateCondition, fs as evaluateFormula, ft as evaluateFormulaAttribute, fu as evaluateFormulaAttributeWithRelations, fv as evaluateFormulaWithRelations, fw as evaluateFormulaWithResult, f1 as evaluateWithTrace, hl as extractAttributeNames, fx as extractFormulaVariables, ho as extractRelationIds, fy as extractRelationNames, fz as extractRelationReferences, dL as fileConfigSchema, fA as flattenRelationsForEval, fB as formatFormulaResult, eR as formatRecord, eS as formatRecords, dP as formulaConfigSchema, dm as generateCssVariables, dt as generateId, du as generatePrefixedId, dS as getAttributeConfigSchema, f3 as getContext, d8 as getContextValue, fb as getDefaultExecutorRegistry, ez as getDefaultPinCodeService, et as getDefaultTokenService, eo as getMissingRequiredAttributes, cv as getNodeOutputs, fF as getPathDepth, fG as getRelationPath, he as getSyncPreview, fH as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, hX as getViewSyncPreview, f6 as hasContext, fC as hasRelationReferences, cD as inValues, eA as initializePinCodeService, eu as initializeTokenService, cg as isActivityTab, aZ as isAdvancedFilterState, cu as isAdvancedFormNode, cy as isConditionGroup, cr as isConditionNode, cx as isConditionRule, cf as isCustomTab, cd as isDirectTableTab, cE as isEmpty, cs as isEndNode, bc as isFlowDefinition, bd as isFlowPublished, ci as isFlowsTab, cq as isFormNode, cb as isFormTab, cT as isInstanceTerminal, cU as isInstanceWaiting, ce as isInverseTableTab, hk as isLabelExpression, b5 as isNoValueOperator, cF as isNotEmpty, ch as isNotesTab, d1 as isPinCodeAuth, ep as isRecordComplete, d0 as isSignedLinkAuth, ct as isSimpleFormNode, cp as isStartNode, be as isSystemFlow, cO as isSystemWorkflow, cc as isTableTab, ad as isUniversalRelation, cM as isWorkflowDefinition, cN as isWorkflowPublished, dI as locationConfigSchema, da as mergeFormToSlot, dl as mergeWithDefaults, dK as multiselectConfigSchema, cA as neq, g4 as notesPolicy, dC as numberConfigSchema, cC as or, dU as parseAttributeConfig, fK as parsePath, fL as pathHasManyCardinality, dF as phoneConfigSchema, dO as ratingConfigSchema, dv as registry, dN as relationConfigSchema, hj as renderLabelExpression, fR as resolveMultiplePaths, fS as resolveSingleValue, dB as richtextConfigSchema, dQ as rollupConfigSchema, f7 as runWithContext, dV as safeParseAttributeConfig, dJ as selectConfigSchema, d9 as setContextValue, dH as statusConfigSchema, fm as success, hh as syncAll, hc as syncNativeObjects, hV as syncNativeViews, dz as textConfigSchema, dA as textareaConfigSchema, a_ as toAdvancedFilterState, a$ as toSimpleFilterState, fT as traversePath, dM as userConfigSchema, ei as validateAttribute, dT as validateAttributeConfig, em as validateDraft, en as validateDraftOrThrow, fD as validateFormulaExpression, ej as validateObject, ek as validateObjectOrThrow, fM as validatePath, hd as verifyNativeObjectsSync, hW as verifyNativeViewsSync, dw as viewRegistry, fn as wait, f8 as withTenantContext } from './runtime-Dl-kGqgX.mjs';
3
3
  import { z } from 'zod';
4
4
  import { IconName, CountryIso3, CurrencyCode, MimeType, ColorId } from '@stndrds/constants';
5
5
 
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { D as DateAttribute, U as UserAttribute, A as Attribute, S as SystemResource, a as SystemAction, O as ObjectAction, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, P as PhoneAttribute, d as CurrencyAttribute, e as Option, f as StatusAttribute, g as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, F as FileAttribute, h as SingleRelationAttribute, i as MultiRelationAttribute, j as RelationTarget, k as RatingAttribute, l as FormulaAttribute, m as FormulaReturnType, n as RollupAttribute, o as RollupFunction, p as AttributeType, I as InferAttributeValue, q as ObjectDefinition, r as Field, s as AttributeGroupField, G as Group, t as TableTab, V as ViewLayout, u as InverseTableTab, v as ViewDefinition, w as InstanceStatus, x as Tab, y as FilterState, z as SortRule, B as DirectTableTab, W as WorkflowTheme, E as WorkflowConfig, H as SlotMode, J as AuthMethod, K as AuthChannel, Q as ParticipantTemplate, X as ConditionGroup, Y as ConditionRule, Z as WorkflowNode, _ as WorkflowDefinition, $ as FlowRow, a0 as BlockNoteContent } from './runtime-B3RCubTj.js';
2
- export { c8 as ActivityTab, bq as AddAttribute, gp as AddAttributeInput, aY as AdvancedFilterState, bX as AssignRoleInput, fW as AttributeChange, a2 as AttributeGroup, bp as AttributeMap, bl as AttributeSchema, g6 as AttributesRepository, aw as AuditAction, ax as AuditActorType, ay as AuditChange, aB as AuditListOptions, az as AuditLogEntry, ge as AuditRepository, av as AuditResourceType, gh as AuditService, aC as AuditServiceOptions, gZ as AuthenticationResult, a3 as BaseAttribute, ae as BlockNoteBlock, af as BlockNoteCustomInlineContent, ag as BlockNoteDefaultProps, ah as BlockNoteInlineContent, ai as BlockNoteLink, aj as BlockNoteStyledText, ak as BlockNoteStyles, al as BlockNoteTableCell, am as BlockNoteTableCellProps, an as BlockNoteTableContent, eD as CacheAdapter, eE as CacheOptions, cI as CanvasViewport, aK as CheckboxFilterOperator, bL as CompletionStatus, fo as ConditionExecutor, cm as ConditionNode, cw as ConditionOperator, aA as CreateAuditLogInput, go as CreateCustomObjectInput, hv as CreateDBAttribute, hr as CreateDBObject, hF as CreateDBView, hJ as CreateDBWorkflow, hM as CreateDBWorkflowInstance, hP as CreateDBWorkflowParticipation, aG as CreateFile, hy as CreateObjectRecord, gX as CreateParticipationInput, gY as CreateParticipationResult, bW as CreatePermissionInput, bU as CreateRoleInput, c2 as CreateUserProfile, gQ as CreateViewInput, h1 as CreateWorkflowInput, a8 as Currency, aR as CurrencyFilterValue, bu as CustomAttributeValue, c7 as CustomTab, hu as DBAttribute, hq as DBObject, hE as DBView, hI as DBWorkflow, hL as DBWorkflowInstance, hO as DBWorkflowParticipation, hi as DEFAULT_LABEL_FALLBACK, dk as DEFAULT_THEME, dy as DEFAULT_VALIDATION_MESSAGES, er as DatabaseAdapter, aL as DateFilterOperator, a5 as DateFormat, a6 as DateValue, bR as EffectivePermissions, fp as EndExecutor, cn as EndNode, eZ as EvaluationResult, e_ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, aV as ExtendedFilterRule, bE as ExtractAttributes, by as ExtractRecord, bA as ExtractRecordInput, bB as ExtractRecordInputStrict, bz as ExtractRecordStrict, bC as ExtractRecordUpdate, bD as ExtractRecordUpdateStrict, eI as FetchResult, g$ as FieldReadOnlyResult, aF as File, h4 as FileContent, hD as FileListOptions, gl as FileService, gk as FileServiceOptions, aE as FileVisibility, g8 as FilesRepository, aW as FilterCombinator, aX as FilterGroup, aP as FilterOperator, aU as FilterRule, aT as FilterValue, bb as FlowDefinition, b8 as FlowPage, b9 as FlowRelation, b7 as FlowRowField, b6 as FlowSlot, ba as FlowStatus, ca as FlowsTab, dg as FormContextResponse, fq as FormExecutor, dd as FormFieldContext, cl as FormFieldRef, de as FormFieldRow, ck as FormNode, df as FormNodeInfo, c6 as FormTab, eJ as FormattedRecord, fE as FormulaResult, hg as FullSyncOptions, hf as FullSyncResult, d5 as GeneratedDocument, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, gm as GeocodingService, bf as GeocodingSuggestion, gD as GetRelationOptionsParams, hB as GlobalSearchOptions, hC as GlobalSearchResultItem, gn as GlobalSearchService, eK as GroupedFetchResult, fX as HookContext, fY as HookDefinition, fZ as HookHandler, g0 as HookRegistry, f_ as HookType, br as InferRecord, bm as InferRecordFromSchema, bs as InferRecordInput, bt as InferRecordUpdate, bn as InferRecordWithRequirements, eL as InsertOptions, fI as InvalidPathError, c4 as InviteUserInput, hz as ListOptions, a9 as Location, aa as LocationGranularity, fJ as MaxDepthExceededError, aN as MultiselectFilterOperator, b4 as NO_VALUE_OPERATORS, b3 as NoValueOperator, fi as NodeExecutor, cH as NodePosition, eH as NoopCacheAdapter, bk as NoopGeocodingAdapter, f$ as NoopHookRegistry, c9 as NotesTab, aJ as NumberFilterOperator, a4 as NumberUnit, b2 as OPERATORS_BY_TYPE, bK as ObjectAttribute, bS as ObjectPermissions, bM as ObjectRecord, g9 as ObjectRecordsRepository, gs as ObjectSchemaService, gr as ObjectSchemaServiceOptions, g5 as ObjectsRepository, hR as OperationResult, ao as PartialBlockNoteBlock, ap as PartialBlockNoteContent, aq as PartialBlockNoteInlineContent, ar as PartialBlockNoteLink, as as PartialBlockNoteStyledText, at as PartialBlockNoteTableCell, au as PartialBlockNoteTableContent, cK as ParticipantAuthConfig, c_ as ParticipationAuth, cX as ParticipationStatus, ev as ParticipationTokenPayload, es as ParticipationTokenService, fN as PathCardinality, fO as PathSegment, fP as PathSegmentType, cR as PendingAction, bP as Permission, bN as PermissionScope, gu as PermissionService, gt as PermissionServiceOptions, gf as PermissionsRepository, a7 as Phone, aS as PhoneFilterValue, cZ as PinCodeAuth, eB as PinCodeGenerationOptions, ey as PinCodeService, eC as PinCodeVerificationResult, bY as PolicyContext, g3 as PolicyRegistry, b_ as PolicyViolationError, eX as QueryBuilder, eY as QueryBuilderOptions, eM as QueryBuilderState, eT as QueryMultipleResultsError, eU as QueryNoResultError, b1 as QueryState, ab as RELATION_TARGET_ANY, bF as RESERVED_ATTRIBUTE_NAMES, dc as ReadOnlyReason, bw as RecordMetadata, bZ as RecordPolicy, gw as RecordService, gv as RecordServiceOptions, eN as RegistryMap, eO as RegistryObjectNames, ac as RelationAttribute, aO as RelationFilterOperator, ho as RelationLabelResolver, gB as RelationOption, gC as RelationOptionsResponse, gy as RelationResolverService, gF as RelationService, gE as RelationServiceOptions, gA as RelationValidationError, gz as RelationValidationResult, aQ as RelativeDateValue, bH as ReservedAttributeName, gx as ResolvedRelations, gU as ResumeWorkflowInput, bh as ReverseGeocodingParams, bO as Role, gI as RollupResult, gH as RollupScheduler, gG as RollupSchedulerOptions, gK as RollupService, gJ as RollupServiceOptions, eV as SHORTCUT_TO_FILTER_OPERATOR, bG as SYSTEM_FIELD_NAMES, fQ as SchemaResolver, hA as SearchOptions, aM as SelectFilterOperator, eP as ShortcutOperator, cY as SignedLinkAuth, h7 as SignedUrlOptions, b0 as SortDirection, fr as StartExecutor, cj as StartNode, gT as StartWorkflowInput, a1 as StatusGroup, h8 as StorageAdapter, aD as StorageProvider, h5 as StorageUploadInput, h6 as StorageUploadResult, hb as SyncOptions, ha as SyncResult, bI as SystemFieldName, bx as SystemFields, bT as SystemPermissions, c5 as TabType, gj as TenantAwareRepository, gi as TenantAwareService, f9 as TenantContext, f2 as TenantContextError, dp as TenantId, aI as TextFilterOperator, di as ThemeColors, dh as ThemeLogo, dj as ThemeTypography, bJ as Timestamps, ew as TokenGenerationOptions, ex as TokenVerificationResult, fU as TraversalOptions, fV as TraversalResult, bo as TypedAttribute, hw as UpdateDBAttribute, hs as UpdateDBObject, hG as UpdateDBView, hK as UpdateDBWorkflow, hN as UpdateDBWorkflowInstance, hQ as UpdateDBWorkflowParticipation, aH as UpdateFile, gq as UpdateObjectInput, bV as UpdateRoleInput, c3 as UpdateUserProfile, gR as UpdateViewInput, h2 as UpdateWorkflowInput, h9 as UploadFileInput, hx as UpsertDBAttribute, ht as UpsertDBObject, hH as UpsertDBView, dq as UserId, c1 as UserProfile, gM as UserProfileService, gL as UserProfileServiceOptions, g7 as UserProfilesRepository, b$ as UserRole, bQ as UserRoleAssignment, gP as UserService, c0 as UserStatus, gO as UserValidationError, gN as UserValidationResult, dn as Uuid, dx as ValidationMessages, eh as ValidationResult, gS as ViewService, hT as ViewSyncOptions, hS as ViewSyncResult, ga as ViewsRepository, bv as WithCustomAttributes, db as WorkflowAccessMode, cQ as WorkflowError, d6 as WorkflowExecutionContext, cS as WorkflowInstance, gW as WorkflowInstanceService, gV as WorkflowInstanceServiceOptions, gc as WorkflowInstancesRepository, cJ as WorkflowLayout, co as WorkflowNodeType, c$ as WorkflowParticipation, g_ as WorkflowParticipationService, gd as WorkflowParticipationsRepository, h0 as WorkflowRelationService, h3 as WorkflowService, cG as WorkflowSlot, cL as WorkflowStatus, cP as WorkflowTransition, gb as WorkflowsRepository, cB as and, dr as asTenantId, ds as asUserId, dR as attributeConfigSchemas, gg as buildAuditChanges, eF as cacheKeys, eG as cacheTtl, d3 as canAuthenticate, d4 as canExecuteNode, d2 as canParticipate, cV as canResumeInstance, dD as checkboxConfigSchema, fj as complete, hp as computeLabelWithRelations, eq as computeRecordStatus, ee as createAttributeValidator, dY as createCheckboxValidator, d$ as createCurrencyValidator, dZ as createDateValidator, fa as createDefaultExecutorRegistry, eQ as createDefaultState, el as createDraftValidator, d7 as createEmptyContext, e4 as createFileValidator, ef as createFormAttributeValidator, ea as createFormulaValidator, e3 as createLocationValidator, g1 as createMockAdapter, e7 as createMultiRelationValidator, e2 as createMultiselectValidator, dX as createNumberValidator, eg as createObjectValidator, d_ as createPhoneValidator, eW as createQueryBuilder, e9 as createRatingValidator, e8 as createRelationValidator, ed as createRichtextValidator, eb as createRollupValidator, e1 as createSelectValidator, e6 as createSingleRelationValidator, cW as createStartTransition, e0 as createStatusValidator, ec as createTextAreaValidator, dW as createTextValidator, e5 as createUserValidator, dG as currencyConfigSchema, dE as dateConfigSchema, g2 as defaultPolicyRegistry, hm as enrichValuesWithSelectLabels, cz as eq, fk as error, f0 as evaluate, e$ as evaluateCondition, fs as evaluateFormula, ft as evaluateFormulaAttribute, fu as evaluateFormulaAttributeWithRelations, fv as evaluateFormulaWithRelations, fw as evaluateFormulaWithResult, f1 as evaluateWithTrace, hl as extractAttributeNames, fx as extractFormulaVariables, hn as extractRelationIds, fy as extractRelationNames, fz as extractRelationReferences, dL as fileConfigSchema, fA as flattenRelationsForEval, fB as formatFormulaResult, eR as formatRecord, eS as formatRecords, dP as formulaConfigSchema, dm as generateCssVariables, dt as generateId, du as generatePrefixedId, dS as getAttributeConfigSchema, f3 as getContext, d8 as getContextValue, fb as getDefaultExecutorRegistry, ez as getDefaultPinCodeService, et as getDefaultTokenService, eo as getMissingRequiredAttributes, cv as getNodeOutputs, fF as getPathDepth, fG as getRelationPath, he as getSyncPreview, fH as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, hW as getViewSyncPreview, f6 as hasContext, fC as hasRelationReferences, cD as inValues, eA as initializePinCodeService, eu as initializeTokenService, cg as isActivityTab, aZ as isAdvancedFilterState, cu as isAdvancedFormNode, cy as isConditionGroup, cr as isConditionNode, cx as isConditionRule, cf as isCustomTab, cd as isDirectTableTab, cE as isEmpty, cs as isEndNode, bc as isFlowDefinition, bd as isFlowPublished, ci as isFlowsTab, cq as isFormNode, cb as isFormTab, cT as isInstanceTerminal, cU as isInstanceWaiting, ce as isInverseTableTab, hk as isLabelExpression, b5 as isNoValueOperator, cF as isNotEmpty, ch as isNotesTab, d1 as isPinCodeAuth, ep as isRecordComplete, d0 as isSignedLinkAuth, ct as isSimpleFormNode, cp as isStartNode, be as isSystemFlow, cO as isSystemWorkflow, cc as isTableTab, ad as isUniversalRelation, cM as isWorkflowDefinition, cN as isWorkflowPublished, dI as locationConfigSchema, da as mergeFormToSlot, dl as mergeWithDefaults, dK as multiselectConfigSchema, cA as neq, g4 as notesPolicy, dC as numberConfigSchema, cC as or, dU as parseAttributeConfig, fK as parsePath, fL as pathHasManyCardinality, dF as phoneConfigSchema, dO as ratingConfigSchema, dv as registry, dN as relationConfigSchema, hj as renderLabelExpression, fR as resolveMultiplePaths, fS as resolveSingleValue, dB as richtextConfigSchema, dQ as rollupConfigSchema, f7 as runWithContext, dV as safeParseAttributeConfig, dJ as selectConfigSchema, d9 as setContextValue, dH as statusConfigSchema, fm as success, hh as syncAll, hc as syncNativeObjects, hU as syncNativeViews, dz as textConfigSchema, dA as textareaConfigSchema, a_ as toAdvancedFilterState, a$ as toSimpleFilterState, fT as traversePath, dM as userConfigSchema, ei as validateAttribute, dT as validateAttributeConfig, em as validateDraft, en as validateDraftOrThrow, fD as validateFormulaExpression, ej as validateObject, ek as validateObjectOrThrow, fM as validatePath, hd as verifyNativeObjectsSync, hV as verifyNativeViewsSync, dw as viewRegistry, fn as wait, f8 as withTenantContext } from './runtime-B3RCubTj.js';
1
+ import { D as DateAttribute, U as UserAttribute, A as Attribute, S as SystemResource, a as SystemAction, O as ObjectAction, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, P as PhoneAttribute, d as CurrencyAttribute, e as Option, f as StatusAttribute, g as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, F as FileAttribute, h as SingleRelationAttribute, i as MultiRelationAttribute, j as RelationTarget, k as RatingAttribute, l as FormulaAttribute, m as FormulaReturnType, n as RollupAttribute, o as RollupFunction, p as AttributeType, I as InferAttributeValue, q as ObjectDefinition, r as Field, s as AttributeGroupField, G as Group, t as TableTab, V as ViewLayout, u as InverseTableTab, v as ViewDefinition, w as InstanceStatus, x as Tab, y as FilterState, z as SortRule, B as DirectTableTab, W as WorkflowTheme, E as WorkflowConfig, H as SlotMode, J as AuthMethod, K as AuthChannel, Q as ParticipantTemplate, X as ConditionGroup, Y as ConditionRule, Z as WorkflowNode, _ as WorkflowDefinition, $ as FlowRow, a0 as BlockNoteContent } from './runtime-Dl-kGqgX.js';
2
+ export { c8 as ActivityTab, bq as AddAttribute, gp as AddAttributeInput, aY as AdvancedFilterState, bX as AssignRoleInput, fW as AttributeChange, a2 as AttributeGroup, bp as AttributeMap, bl as AttributeSchema, g6 as AttributesRepository, aw as AuditAction, ax as AuditActorType, ay as AuditChange, aB as AuditListOptions, az as AuditLogEntry, ge as AuditRepository, av as AuditResourceType, gh as AuditService, aC as AuditServiceOptions, gZ as AuthenticationResult, a3 as BaseAttribute, ae as BlockNoteBlock, af as BlockNoteCustomInlineContent, ag as BlockNoteDefaultProps, ah as BlockNoteInlineContent, ai as BlockNoteLink, aj as BlockNoteStyledText, ak as BlockNoteStyles, al as BlockNoteTableCell, am as BlockNoteTableCellProps, an as BlockNoteTableContent, eD as CacheAdapter, eE as CacheOptions, cI as CanvasViewport, aK as CheckboxFilterOperator, bL as CompletionStatus, fo as ConditionExecutor, cm as ConditionNode, cw as ConditionOperator, aA as CreateAuditLogInput, go as CreateCustomObjectInput, hw as CreateDBAttribute, hs as CreateDBObject, hG as CreateDBView, hK as CreateDBWorkflow, hN as CreateDBWorkflowInstance, hQ as CreateDBWorkflowParticipation, aG as CreateFile, hz as CreateObjectRecord, gX as CreateParticipationInput, gY as CreateParticipationResult, bW as CreatePermissionInput, bU as CreateRoleInput, c2 as CreateUserProfile, gQ as CreateViewInput, h1 as CreateWorkflowInput, a8 as Currency, aR as CurrencyFilterValue, bu as CustomAttributeValue, c7 as CustomTab, hv as DBAttribute, hr as DBObject, hF as DBView, hJ as DBWorkflow, hM as DBWorkflowInstance, hP as DBWorkflowParticipation, hi as DEFAULT_LABEL_FALLBACK, dk as DEFAULT_THEME, dy as DEFAULT_VALIDATION_MESSAGES, er as DatabaseAdapter, aL as DateFilterOperator, a5 as DateFormat, a6 as DateValue, bR as EffectivePermissions, fp as EndExecutor, cn as EndNode, eZ as EvaluationResult, e_ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, aV as ExtendedFilterRule, bE as ExtractAttributes, by as ExtractRecord, bA as ExtractRecordInput, bB as ExtractRecordInputStrict, bz as ExtractRecordStrict, bC as ExtractRecordUpdate, bD as ExtractRecordUpdateStrict, eI as FetchResult, g$ as FieldReadOnlyResult, aF as File, h4 as FileContent, hE as FileListOptions, gl as FileService, gk as FileServiceOptions, aE as FileVisibility, g8 as FilesRepository, aW as FilterCombinator, aX as FilterGroup, aP as FilterOperator, aU as FilterRule, aT as FilterValue, bb as FlowDefinition, b8 as FlowPage, b9 as FlowRelation, b7 as FlowRowField, b6 as FlowSlot, ba as FlowStatus, ca as FlowsTab, dg as FormContextResponse, fq as FormExecutor, dd as FormFieldContext, cl as FormFieldRef, de as FormFieldRow, ck as FormNode, df as FormNodeInfo, c6 as FormTab, eJ as FormattedRecord, fE as FormulaResult, hg as FullSyncOptions, hf as FullSyncResult, d5 as GeneratedDocument, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, gm as GeocodingService, bf as GeocodingSuggestion, gD as GetRelationOptionsParams, hC as GlobalSearchOptions, hD as GlobalSearchResultItem, gn as GlobalSearchService, eK as GroupedFetchResult, fX as HookContext, fY as HookDefinition, fZ as HookHandler, g0 as HookRegistry, f_ as HookType, br as InferRecord, bm as InferRecordFromSchema, bs as InferRecordInput, bt as InferRecordUpdate, bn as InferRecordWithRequirements, eL as InsertOptions, fI as InvalidPathError, c4 as InviteUserInput, hA as ListOptions, a9 as Location, aa as LocationGranularity, fJ as MaxDepthExceededError, aN as MultiselectFilterOperator, b4 as NO_VALUE_OPERATORS, b3 as NoValueOperator, fi as NodeExecutor, cH as NodePosition, eH as NoopCacheAdapter, bk as NoopGeocodingAdapter, f$ as NoopHookRegistry, c9 as NotesTab, aJ as NumberFilterOperator, a4 as NumberUnit, b2 as OPERATORS_BY_TYPE, bK as ObjectAttribute, bS as ObjectPermissions, bM as ObjectRecord, g9 as ObjectRecordsRepository, gs as ObjectSchemaService, gr as ObjectSchemaServiceOptions, g5 as ObjectsRepository, hS as OperationResult, ao as PartialBlockNoteBlock, ap as PartialBlockNoteContent, aq as PartialBlockNoteInlineContent, ar as PartialBlockNoteLink, as as PartialBlockNoteStyledText, at as PartialBlockNoteTableCell, au as PartialBlockNoteTableContent, cK as ParticipantAuthConfig, c_ as ParticipationAuth, cX as ParticipationStatus, ev as ParticipationTokenPayload, es as ParticipationTokenService, fN as PathCardinality, fO as PathSegment, fP as PathSegmentType, cR as PendingAction, bP as Permission, bN as PermissionScope, gu as PermissionService, gt as PermissionServiceOptions, gf as PermissionsRepository, a7 as Phone, aS as PhoneFilterValue, cZ as PinCodeAuth, eB as PinCodeGenerationOptions, ey as PinCodeService, eC as PinCodeVerificationResult, bY as PolicyContext, g3 as PolicyRegistry, b_ as PolicyViolationError, eX as QueryBuilder, eY as QueryBuilderOptions, eM as QueryBuilderState, eT as QueryMultipleResultsError, eU as QueryNoResultError, b1 as QueryState, ab as RELATION_TARGET_ANY, bF as RESERVED_ATTRIBUTE_NAMES, dc as ReadOnlyReason, bw as RecordMetadata, bZ as RecordPolicy, gw as RecordService, gv as RecordServiceOptions, eN as RegistryMap, eO as RegistryObjectNames, ac as RelationAttribute, aO as RelationFilterOperator, hp as RelationLabelResolver, gB as RelationOption, gC as RelationOptionsResponse, gy as RelationResolverService, gF as RelationService, gE as RelationServiceOptions, gA as RelationValidationError, gz as RelationValidationResult, aQ as RelativeDateValue, bH as ReservedAttributeName, gx as ResolvedRelations, gU as ResumeWorkflowInput, bh as ReverseGeocodingParams, bO as Role, gI as RollupResult, gH as RollupScheduler, gG as RollupSchedulerOptions, gK as RollupService, gJ as RollupServiceOptions, eV as SHORTCUT_TO_FILTER_OPERATOR, bG as SYSTEM_FIELD_NAMES, fQ as SchemaResolver, hB as SearchOptions, aM as SelectFilterOperator, eP as ShortcutOperator, cY as SignedLinkAuth, h7 as SignedUrlOptions, b0 as SortDirection, fr as StartExecutor, cj as StartNode, gT as StartWorkflowInput, a1 as StatusGroup, h8 as StorageAdapter, aD as StorageProvider, h5 as StorageUploadInput, h6 as StorageUploadResult, hb as SyncOptions, ha as SyncResult, bI as SystemFieldName, bx as SystemFields, bT as SystemPermissions, c5 as TabType, gj as TenantAwareRepository, gi as TenantAwareService, f9 as TenantContext, f2 as TenantContextError, dp as TenantId, aI as TextFilterOperator, di as ThemeColors, dh as ThemeLogo, dj as ThemeTypography, bJ as Timestamps, ew as TokenGenerationOptions, ex as TokenVerificationResult, fU as TraversalOptions, fV as TraversalResult, bo as TypedAttribute, hx as UpdateDBAttribute, ht as UpdateDBObject, hH as UpdateDBView, hL as UpdateDBWorkflow, hO as UpdateDBWorkflowInstance, hR as UpdateDBWorkflowParticipation, aH as UpdateFile, gq as UpdateObjectInput, bV as UpdateRoleInput, c3 as UpdateUserProfile, gR as UpdateViewInput, h2 as UpdateWorkflowInput, h9 as UploadFileInput, hy as UpsertDBAttribute, hu as UpsertDBObject, hI as UpsertDBView, dq as UserId, c1 as UserProfile, gM as UserProfileService, gL as UserProfileServiceOptions, g7 as UserProfilesRepository, b$ as UserRole, bQ as UserRoleAssignment, gP as UserService, c0 as UserStatus, gO as UserValidationError, gN as UserValidationResult, dn as Uuid, dx as ValidationMessages, eh as ValidationResult, gS as ViewService, hU as ViewSyncOptions, hT as ViewSyncResult, ga as ViewsRepository, bv as WithCustomAttributes, db as WorkflowAccessMode, cQ as WorkflowError, d6 as WorkflowExecutionContext, cS as WorkflowInstance, gW as WorkflowInstanceService, gV as WorkflowInstanceServiceOptions, gc as WorkflowInstancesRepository, cJ as WorkflowLayout, co as WorkflowNodeType, c$ as WorkflowParticipation, g_ as WorkflowParticipationService, gd as WorkflowParticipationsRepository, h0 as WorkflowRelationService, h3 as WorkflowService, cG as WorkflowSlot, cL as WorkflowStatus, cP as WorkflowTransition, gb as WorkflowsRepository, cB as and, dr as asTenantId, ds as asUserId, dR as attributeConfigSchemas, gg as buildAuditChanges, eF as cacheKeys, eG as cacheTtl, d3 as canAuthenticate, d4 as canExecuteNode, d2 as canParticipate, cV as canResumeInstance, dD as checkboxConfigSchema, fj as complete, hq as computeLabelWithRelations, eq as computeRecordStatus, ee as createAttributeValidator, dY as createCheckboxValidator, d$ as createCurrencyValidator, dZ as createDateValidator, fa as createDefaultExecutorRegistry, eQ as createDefaultState, el as createDraftValidator, d7 as createEmptyContext, e4 as createFileValidator, ef as createFormAttributeValidator, ea as createFormulaValidator, e3 as createLocationValidator, g1 as createMockAdapter, e7 as createMultiRelationValidator, e2 as createMultiselectValidator, dX as createNumberValidator, eg as createObjectValidator, d_ as createPhoneValidator, eW as createQueryBuilder, e9 as createRatingValidator, e8 as createRelationValidator, ed as createRichtextValidator, eb as createRollupValidator, e1 as createSelectValidator, e6 as createSingleRelationValidator, cW as createStartTransition, e0 as createStatusValidator, ec as createTextAreaValidator, dW as createTextValidator, e5 as createUserValidator, dG as currencyConfigSchema, dE as dateConfigSchema, g2 as defaultPolicyRegistry, hm as enrichValuesForDisplay, hn as enrichValuesWithSelectLabels, cz as eq, fk as error, f0 as evaluate, e$ as evaluateCondition, fs as evaluateFormula, ft as evaluateFormulaAttribute, fu as evaluateFormulaAttributeWithRelations, fv as evaluateFormulaWithRelations, fw as evaluateFormulaWithResult, f1 as evaluateWithTrace, hl as extractAttributeNames, fx as extractFormulaVariables, ho as extractRelationIds, fy as extractRelationNames, fz as extractRelationReferences, dL as fileConfigSchema, fA as flattenRelationsForEval, fB as formatFormulaResult, eR as formatRecord, eS as formatRecords, dP as formulaConfigSchema, dm as generateCssVariables, dt as generateId, du as generatePrefixedId, dS as getAttributeConfigSchema, f3 as getContext, d8 as getContextValue, fb as getDefaultExecutorRegistry, ez as getDefaultPinCodeService, et as getDefaultTokenService, eo as getMissingRequiredAttributes, cv as getNodeOutputs, fF as getPathDepth, fG as getRelationPath, he as getSyncPreview, fH as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, hX as getViewSyncPreview, f6 as hasContext, fC as hasRelationReferences, cD as inValues, eA as initializePinCodeService, eu as initializeTokenService, cg as isActivityTab, aZ as isAdvancedFilterState, cu as isAdvancedFormNode, cy as isConditionGroup, cr as isConditionNode, cx as isConditionRule, cf as isCustomTab, cd as isDirectTableTab, cE as isEmpty, cs as isEndNode, bc as isFlowDefinition, bd as isFlowPublished, ci as isFlowsTab, cq as isFormNode, cb as isFormTab, cT as isInstanceTerminal, cU as isInstanceWaiting, ce as isInverseTableTab, hk as isLabelExpression, b5 as isNoValueOperator, cF as isNotEmpty, ch as isNotesTab, d1 as isPinCodeAuth, ep as isRecordComplete, d0 as isSignedLinkAuth, ct as isSimpleFormNode, cp as isStartNode, be as isSystemFlow, cO as isSystemWorkflow, cc as isTableTab, ad as isUniversalRelation, cM as isWorkflowDefinition, cN as isWorkflowPublished, dI as locationConfigSchema, da as mergeFormToSlot, dl as mergeWithDefaults, dK as multiselectConfigSchema, cA as neq, g4 as notesPolicy, dC as numberConfigSchema, cC as or, dU as parseAttributeConfig, fK as parsePath, fL as pathHasManyCardinality, dF as phoneConfigSchema, dO as ratingConfigSchema, dv as registry, dN as relationConfigSchema, hj as renderLabelExpression, fR as resolveMultiplePaths, fS as resolveSingleValue, dB as richtextConfigSchema, dQ as rollupConfigSchema, f7 as runWithContext, dV as safeParseAttributeConfig, dJ as selectConfigSchema, d9 as setContextValue, dH as statusConfigSchema, fm as success, hh as syncAll, hc as syncNativeObjects, hV as syncNativeViews, dz as textConfigSchema, dA as textareaConfigSchema, a_ as toAdvancedFilterState, a$ as toSimpleFilterState, fT as traversePath, dM as userConfigSchema, ei as validateAttribute, dT as validateAttributeConfig, em as validateDraft, en as validateDraftOrThrow, fD as validateFormulaExpression, ej as validateObject, ek as validateObjectOrThrow, fM as validatePath, hd as verifyNativeObjectsSync, hW as verifyNativeViewsSync, dw as viewRegistry, fn as wait, f8 as withTenantContext } from './runtime-Dl-kGqgX.js';
3
3
  import { z } from 'zod';
4
4
  import { IconName, CountryIso3, CurrencyCode, MimeType, ColorId } from '@stndrds/constants';
5
5
 
package/dist/index.js CHANGED
@@ -299,7 +299,8 @@
299
299
 
300
300
 
301
301
 
302
- var _chunkOGBGOFRXjs = require('./chunk-OGBGOFRX.js');
302
+
303
+ var _chunkUDJDDKGYjs = require('./chunk-UDJDDKGY.js');
303
304
 
304
305
 
305
306
 
@@ -452,13 +453,13 @@ function isFlowsTab(tab) {
452
453
  }
453
454
 
454
455
  // src/native/notes.ts
455
- var NOTES = _chunkOGBGOFRXjs.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(_chunkOGBGOFRXjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkOGBGOFRXjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
456
- _chunkOGBGOFRXjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
456
+ var NOTES = _chunkUDJDDKGYjs.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(_chunkUDJDDKGYjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkUDJDDKGYjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
457
+ _chunkUDJDDKGYjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
457
458
  { id: "private", label: "Private", value: "private", icon: "lock" },
458
459
  { id: "shared", label: "Shared", value: "shared", icon: "users" }
459
460
  ]).defaultValue("private").required()
460
- ).attribute(_chunkOGBGOFRXjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
461
- _chunkOGBGOFRXjs.registry.register(NOTES);
461
+ ).attribute(_chunkUDJDDKGYjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
462
+ _chunkUDJDDKGYjs.registry.register(NOTES);
462
463
 
463
464
  // src/views/registry.ts
464
465
  var ViewRegistry = class {
@@ -925,4 +926,5 @@ var viewRegistry = new ViewRegistry();
925
926
 
926
927
 
927
928
 
928
- exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkOGBGOFRXjs.ActivityTabConfig; exports.AttributeInUseError = _chunkOGBGOFRXjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkOGBGOFRXjs.AttributeNotFoundError; exports.AuditService = _chunkOGBGOFRXjs.AuditService; exports.ConditionExecutor = _chunkOGBGOFRXjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkOGBGOFRXjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkOGBGOFRXjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkOGBGOFRXjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkOGBGOFRXjs.ConditionRuleSchema; exports.CustomTabConfig = _chunkOGBGOFRXjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkOGBGOFRXjs.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 = _chunkOGBGOFRXjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkOGBGOFRXjs.DEFAULT_VALIDATION_MESSAGES; exports.DirectTableTabConfig = _chunkOGBGOFRXjs.DirectTableTabConfig; exports.DuplicateError = _chunkOGBGOFRXjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkOGBGOFRXjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkOGBGOFRXjs.EndExecutor; exports.EndNodeSchema = _chunkOGBGOFRXjs.EndNodeSchema; exports.ExecutorRegistry = _chunkOGBGOFRXjs.ExecutorRegistry; exports.FileNotFoundError = _chunkOGBGOFRXjs.FileNotFoundError; exports.FileService = _chunkOGBGOFRXjs.FileService; exports.FlowRowFieldSchema = _chunkOGBGOFRXjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkOGBGOFRXjs.FlowRowSchema; exports.FlowsTabConfig = _chunkOGBGOFRXjs.FlowsTabConfig; exports.ForbiddenError = _chunkOGBGOFRXjs.ForbiddenError; exports.FormExecutor = _chunkOGBGOFRXjs.FormExecutor; exports.FormFieldRefSchema = _chunkOGBGOFRXjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkOGBGOFRXjs.FormNodeSchema; exports.GeocodingService = _chunkOGBGOFRXjs.GeocodingService; exports.GlobalSearchService = _chunkOGBGOFRXjs.GlobalSearchService; exports.GroupBuilder = _chunkOGBGOFRXjs.GroupBuilder; exports.InvalidPathError = _chunkOGBGOFRXjs.InvalidPathError; exports.InverseTableTabConfig = _chunkOGBGOFRXjs.InverseTableTabConfig; exports.MaxDepthExceededError = _chunkOGBGOFRXjs.MaxDepthExceededError; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkOGBGOFRXjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkOGBGOFRXjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkOGBGOFRXjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkOGBGOFRXjs.NoopHookRegistry; exports.NotFoundError = _chunkOGBGOFRXjs.NotFoundError; exports.NotSystemObjectError = _chunkOGBGOFRXjs.NotSystemObjectError; exports.NotesTabConfig = _chunkOGBGOFRXjs.NotesTabConfig; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkOGBGOFRXjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkOGBGOFRXjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkOGBGOFRXjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkOGBGOFRXjs.ObjectSchemaService; exports.ParticipantAuthConfigSchema = _chunkOGBGOFRXjs.ParticipantAuthConfigSchema; exports.ParticipantTemplateSchema = _chunkOGBGOFRXjs.ParticipantTemplateSchema; exports.ParticipationTokenService = _chunkOGBGOFRXjs.ParticipationTokenService; exports.PermissionService = _chunkOGBGOFRXjs.PermissionService; exports.PinCodeService = _chunkOGBGOFRXjs.PinCodeService; exports.PolicyRegistry = _chunkOGBGOFRXjs.PolicyRegistry; exports.PolicyViolationError = _chunkOGBGOFRXjs.PolicyViolationError; exports.ProtectedResourceError = _chunkOGBGOFRXjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkOGBGOFRXjs.ProtectedRoleError; exports.QueryBuilder = _chunkOGBGOFRXjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkOGBGOFRXjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkOGBGOFRXjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkOGBGOFRXjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkOGBGOFRXjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkOGBGOFRXjs.RecordNotFoundError; exports.RecordReferencedError = _chunkOGBGOFRXjs.RecordReferencedError; exports.RecordService = _chunkOGBGOFRXjs.RecordService; exports.RelationResolverService = _chunkOGBGOFRXjs.RelationResolverService; exports.RelationService = _chunkOGBGOFRXjs.RelationService; exports.RoleNotFoundError = _chunkOGBGOFRXjs.RoleNotFoundError; exports.RollupScheduler = _chunkOGBGOFRXjs.RollupScheduler; exports.RollupService = _chunkOGBGOFRXjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkOGBGOFRXjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SYSTEM_ATTRIBUTES = _chunkOGBGOFRXjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkOGBGOFRXjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SchemaError = _chunkOGBGOFRXjs.SchemaError; exports.SchemaErrorCode = _chunkOGBGOFRXjs.SchemaErrorCode; exports.SlotModeSchema = _chunkOGBGOFRXjs.SlotModeSchema; exports.StartExecutor = _chunkOGBGOFRXjs.StartExecutor; exports.StartNodeSchema = _chunkOGBGOFRXjs.StartNodeSchema; exports.SyncError = _chunkOGBGOFRXjs.SyncError; exports.TabBuilder = _chunkOGBGOFRXjs.TabBuilder; exports.TenantAwareRepository = _chunkOGBGOFRXjs.TenantAwareRepository; exports.TenantAwareService = _chunkOGBGOFRXjs.TenantAwareService; exports.TenantContextError = _chunkOGBGOFRXjs.TenantContextError; exports.ThemeColorsSchema = _chunkOGBGOFRXjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkOGBGOFRXjs.ThemeLogoSchema; exports.UserProfileNotFoundError = _chunkOGBGOFRXjs.UserProfileNotFoundError; exports.UserProfileService = _chunkOGBGOFRXjs.UserProfileService; exports.UserService = _chunkOGBGOFRXjs.UserService; exports.ValidationError = _chunkOGBGOFRXjs.ValidationError; exports.ViewBuilder = _chunkOGBGOFRXjs.ViewBuilder; exports.ViewService = _chunkOGBGOFRXjs.ViewService; exports.ViewportSchema = _chunkOGBGOFRXjs.ViewportSchema; exports.WorkflowBuilder = _chunkOGBGOFRXjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkOGBGOFRXjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkOGBGOFRXjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkOGBGOFRXjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkOGBGOFRXjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkOGBGOFRXjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkOGBGOFRXjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkOGBGOFRXjs.WorkflowInstanceService; exports.WorkflowLayoutSchema = _chunkOGBGOFRXjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkOGBGOFRXjs.WorkflowNodeSchema; exports.WorkflowParticipantBuilder = _chunkOGBGOFRXjs.WorkflowParticipantBuilder; exports.WorkflowParticipationService = _chunkOGBGOFRXjs.WorkflowParticipationService; exports.WorkflowRelationService = _chunkOGBGOFRXjs.WorkflowRelationService; exports.WorkflowService = _chunkOGBGOFRXjs.WorkflowService; exports.WorkflowSimpleFormBuilder = _chunkOGBGOFRXjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkOGBGOFRXjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkOGBGOFRXjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkOGBGOFRXjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkOGBGOFRXjs.WorkflowThemeSchema; exports.and = _chunkOGBGOFRXjs.and; exports.asTenantId = _chunkOGBGOFRXjs.asTenantId; exports.asUserId = _chunkOGBGOFRXjs.asUserId; exports.attributeConfigSchemas = _chunkOGBGOFRXjs.attributeConfigSchemas; exports.buildAuditChanges = _chunkOGBGOFRXjs.buildAuditChanges; exports.cacheKeys = _chunkOGBGOFRXjs.cacheKeys; exports.cacheTtl = _chunkOGBGOFRXjs.cacheTtl; exports.canAuthenticate = _chunkOGBGOFRXjs.canAuthenticate; exports.canExecuteNode = _chunkOGBGOFRXjs.canExecuteNode; exports.canParticipate = _chunkOGBGOFRXjs.canParticipate; exports.canResumeInstance = _chunkOGBGOFRXjs.canResumeInstance; exports.checkbox = _chunkOGBGOFRXjs.checkbox; exports.checkboxConfigSchema = _chunkOGBGOFRXjs.checkboxConfigSchema; exports.complete = _chunkOGBGOFRXjs.complete; exports.computeLabelWithRelations = _chunkOGBGOFRXjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkOGBGOFRXjs.computeRecordStatus; exports.createAttributeValidator = _chunkOGBGOFRXjs.createAttributeValidator; exports.createCheckboxValidator = _chunkOGBGOFRXjs.createCheckboxValidator; exports.createCurrencyValidator = _chunkOGBGOFRXjs.createCurrencyValidator; exports.createDateValidator = _chunkOGBGOFRXjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkOGBGOFRXjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkOGBGOFRXjs.createDefaultState; exports.createDraftValidator = _chunkOGBGOFRXjs.createDraftValidator; exports.createEmptyContext = _chunkOGBGOFRXjs.createEmptyContext; exports.createFileValidator = _chunkOGBGOFRXjs.createFileValidator; exports.createFormAttributeValidator = _chunkOGBGOFRXjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkOGBGOFRXjs.createFormulaValidator; exports.createLocationValidator = _chunkOGBGOFRXjs.createLocationValidator; exports.createMockAdapter = _chunkOGBGOFRXjs.createMockAdapter; exports.createMultiRelationValidator = _chunkOGBGOFRXjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkOGBGOFRXjs.createMultiselectValidator; exports.createNumberValidator = _chunkOGBGOFRXjs.createNumberValidator; exports.createObjectValidator = _chunkOGBGOFRXjs.createObjectValidator; exports.createPhoneValidator = _chunkOGBGOFRXjs.createPhoneValidator; exports.createQueryBuilder = _chunkOGBGOFRXjs.createQueryBuilder; exports.createRatingValidator = _chunkOGBGOFRXjs.createRatingValidator; exports.createRelationValidator = _chunkOGBGOFRXjs.createRelationValidator; exports.createRichtextValidator = _chunkOGBGOFRXjs.createRichtextValidator; exports.createRollupValidator = _chunkOGBGOFRXjs.createRollupValidator; exports.createSelectValidator = _chunkOGBGOFRXjs.createSelectValidator; exports.createSingleRelationValidator = _chunkOGBGOFRXjs.createSingleRelationValidator; exports.createStartTransition = _chunkOGBGOFRXjs.createStartTransition; exports.createStatusValidator = _chunkOGBGOFRXjs.createStatusValidator; exports.createTextAreaValidator = _chunkOGBGOFRXjs.createTextAreaValidator; exports.createTextValidator = _chunkOGBGOFRXjs.createTextValidator; exports.createUserValidator = _chunkOGBGOFRXjs.createUserValidator; exports.currency = _chunkOGBGOFRXjs.currency; exports.currencyConfigSchema = _chunkOGBGOFRXjs.currencyConfigSchema; exports.date = _chunkOGBGOFRXjs.date; exports.dateConfigSchema = _chunkOGBGOFRXjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkOGBGOFRXjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunkOGBGOFRXjs.enrichValuesWithSelectLabels; exports.eq = _chunkOGBGOFRXjs.eq; exports.error = _chunkOGBGOFRXjs.error; exports.evaluate = _chunkOGBGOFRXjs.evaluate; exports.evaluateCondition = _chunkOGBGOFRXjs.evaluateCondition; exports.evaluateFormula = _chunkOGBGOFRXjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkOGBGOFRXjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkOGBGOFRXjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkOGBGOFRXjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkOGBGOFRXjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkOGBGOFRXjs.evaluateWithTrace; exports.extractAttributeNames = _chunkOGBGOFRXjs.extractAttributeNames; exports.extractFormulaVariables = _chunkOGBGOFRXjs.extractFormulaVariables; exports.extractRelationIds = _chunkOGBGOFRXjs.extractRelationIds; exports.extractRelationNames = _chunkOGBGOFRXjs.extractRelationNames; exports.extractRelationReferences = _chunkOGBGOFRXjs.extractRelationReferences; exports.file = _chunkOGBGOFRXjs.file; exports.fileConfigSchema = _chunkOGBGOFRXjs.fileConfigSchema; exports.flattenRelationsForEval = _chunkOGBGOFRXjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkOGBGOFRXjs.formatAttributeValue; exports.formatFormulaResult = _chunkOGBGOFRXjs.formatFormulaResult; exports.formatRecord = _chunkOGBGOFRXjs.formatRecord; exports.formatRecords = _chunkOGBGOFRXjs.formatRecords; exports.formula = _chunkOGBGOFRXjs.formula; exports.formulaConfigSchema = _chunkOGBGOFRXjs.formulaConfigSchema; exports.generateCssVariables = _chunkOGBGOFRXjs.generateCssVariables; exports.generateId = _chunkOGBGOFRXjs.generateId; exports.generatePrefixedId = _chunkOGBGOFRXjs.generatePrefixedId; exports.getAttributeConfigSchema = _chunkOGBGOFRXjs.getAttributeConfigSchema; exports.getContext = _chunkOGBGOFRXjs.getContext; exports.getContextValue = _chunkOGBGOFRXjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkOGBGOFRXjs.getDefaultExecutorRegistry; exports.getDefaultPinCodeService = _chunkOGBGOFRXjs.getDefaultPinCodeService; exports.getDefaultTokenService = _chunkOGBGOFRXjs.getDefaultTokenService; exports.getMissingRequiredAttributes = _chunkOGBGOFRXjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkOGBGOFRXjs.getNodeOutputs; exports.getPathDepth = _chunkOGBGOFRXjs.getPathDepth; exports.getRelationPath = _chunkOGBGOFRXjs.getRelationPath; exports.getSyncPreview = _chunkOGBGOFRXjs.getSyncPreview; exports.getSystemAttributeList = _chunkOGBGOFRXjs.getSystemAttributeList; exports.getTargetAttributeName = _chunkOGBGOFRXjs.getTargetAttributeName; exports.getTenantId = _chunkOGBGOFRXjs.getTenantId; exports.getUserId = _chunkOGBGOFRXjs.getUserId; exports.getViewSyncPreview = _chunkOGBGOFRXjs.getViewSyncPreview; exports.group = _chunkOGBGOFRXjs.group; exports.hasContext = _chunkOGBGOFRXjs.hasContext; exports.hasRelationReferences = _chunkOGBGOFRXjs.hasRelationReferences; exports.inValues = _chunkOGBGOFRXjs.inValues; exports.initializePinCodeService = _chunkOGBGOFRXjs.initializePinCodeService; exports.initializeTokenService = _chunkOGBGOFRXjs.initializeTokenService; exports.isActivityTab = isActivityTab; exports.isAdvancedFilterState = isAdvancedFilterState; exports.isAdvancedFormNode = _chunkOGBGOFRXjs.isAdvancedFormNode; exports.isConditionGroup = _chunkOGBGOFRXjs.isConditionGroup; exports.isConditionNode = _chunkOGBGOFRXjs.isConditionNode; exports.isConditionRule = _chunkOGBGOFRXjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDirectTableTab = isDirectTableTab; exports.isEmpty = _chunkOGBGOFRXjs.isEmpty; exports.isEndNode = _chunkOGBGOFRXjs.isEndNode; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkOGBGOFRXjs.isForbiddenError; exports.isFormNode = _chunkOGBGOFRXjs.isFormNode; exports.isFormTab = isFormTab; exports.isInstanceEvent = _chunkOGBGOFRXjs.isInstanceEvent; exports.isInstanceTerminal = _chunkOGBGOFRXjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkOGBGOFRXjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isLabelExpression = _chunkOGBGOFRXjs.isLabelExpression; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkOGBGOFRXjs.isNodeEvent; exports.isNotEmpty = _chunkOGBGOFRXjs.isNotEmpty; exports.isNotFoundError = _chunkOGBGOFRXjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isParticipationEvent = _chunkOGBGOFRXjs.isParticipationEvent; exports.isPinCodeAuth = _chunkOGBGOFRXjs.isPinCodeAuth; exports.isProtectedResourceError = _chunkOGBGOFRXjs.isProtectedResourceError; exports.isRecordComplete = _chunkOGBGOFRXjs.isRecordComplete; exports.isSchemaError = _chunkOGBGOFRXjs.isSchemaError; exports.isSignedLinkAuth = _chunkOGBGOFRXjs.isSignedLinkAuth; exports.isSimpleFormNode = _chunkOGBGOFRXjs.isSimpleFormNode; exports.isStartNode = _chunkOGBGOFRXjs.isStartNode; exports.isSystemAttribute = _chunkOGBGOFRXjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkOGBGOFRXjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemWorkflow = _chunkOGBGOFRXjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isUniversalRelation = _chunkOGBGOFRXjs.isUniversalRelation; exports.isValidationError = _chunkOGBGOFRXjs.isValidationError; exports.isWorkflowDefinition = _chunkOGBGOFRXjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkOGBGOFRXjs.isWorkflowPublished; exports.location = _chunkOGBGOFRXjs.location; exports.locationConfigSchema = _chunkOGBGOFRXjs.locationConfigSchema; exports.mergeFormToSlot = _chunkOGBGOFRXjs.mergeFormToSlot; exports.mergeWithDefaults = _chunkOGBGOFRXjs.mergeWithDefaults; exports.multiselect = _chunkOGBGOFRXjs.multiselect; exports.multiselectConfigSchema = _chunkOGBGOFRXjs.multiselectConfigSchema; exports.neq = _chunkOGBGOFRXjs.neq; exports.notesPolicy = _chunkOGBGOFRXjs.notesPolicy; exports.number = _chunkOGBGOFRXjs.number; exports.numberConfigSchema = _chunkOGBGOFRXjs.numberConfigSchema; exports.object = _chunkOGBGOFRXjs.object; exports.or = _chunkOGBGOFRXjs.or; exports.parseAttributeConfig = _chunkOGBGOFRXjs.parseAttributeConfig; exports.parsePath = _chunkOGBGOFRXjs.parsePath; exports.pathHasManyCardinality = _chunkOGBGOFRXjs.pathHasManyCardinality; exports.phone = _chunkOGBGOFRXjs.phone; exports.phoneConfigSchema = _chunkOGBGOFRXjs.phoneConfigSchema; exports.rating = _chunkOGBGOFRXjs.rating; exports.ratingConfigSchema = _chunkOGBGOFRXjs.ratingConfigSchema; exports.registry = _chunkOGBGOFRXjs.registry; exports.relation = _chunkOGBGOFRXjs.relation; exports.relationConfigSchema = _chunkOGBGOFRXjs.relationConfigSchema; exports.renderLabelExpression = _chunkOGBGOFRXjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkOGBGOFRXjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkOGBGOFRXjs.resolveSingleValue; exports.richtext = _chunkOGBGOFRXjs.richtext; exports.richtextConfigSchema = _chunkOGBGOFRXjs.richtextConfigSchema; exports.rollup = _chunkOGBGOFRXjs.rollup; exports.rollupConfigSchema = _chunkOGBGOFRXjs.rollupConfigSchema; exports.runWithContext = _chunkOGBGOFRXjs.runWithContext; exports.safeParseAttributeConfig = _chunkOGBGOFRXjs.safeParseAttributeConfig; exports.select = _chunkOGBGOFRXjs.select; exports.selectConfigSchema = _chunkOGBGOFRXjs.selectConfigSchema; exports.setContextValue = _chunkOGBGOFRXjs.setContextValue; exports.status = _chunkOGBGOFRXjs.status; exports.statusConfigSchema = _chunkOGBGOFRXjs.statusConfigSchema; exports.success = _chunkOGBGOFRXjs.success; exports.syncAll = _chunkOGBGOFRXjs.syncAll; exports.syncNativeObjects = _chunkOGBGOFRXjs.syncNativeObjects; exports.syncNativeViews = _chunkOGBGOFRXjs.syncNativeViews; exports.text = _chunkOGBGOFRXjs.text; exports.textConfigSchema = _chunkOGBGOFRXjs.textConfigSchema; exports.textarea = _chunkOGBGOFRXjs.textarea; exports.textareaConfigSchema = _chunkOGBGOFRXjs.textareaConfigSchema; exports.toAdvancedFilterState = toAdvancedFilterState; exports.toSimpleFilterState = toSimpleFilterState; exports.traversePath = _chunkOGBGOFRXjs.traversePath; exports.user = _chunkOGBGOFRXjs.user; exports.userConfigSchema = _chunkOGBGOFRXjs.userConfigSchema; exports.validateAttribute = _chunkOGBGOFRXjs.validateAttribute; exports.validateAttributeConfig = _chunkOGBGOFRXjs.validateAttributeConfig; exports.validateDraft = _chunkOGBGOFRXjs.validateDraft; exports.validateDraftOrThrow = _chunkOGBGOFRXjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkOGBGOFRXjs.validateFormulaExpression; exports.validateObject = _chunkOGBGOFRXjs.validateObject; exports.validateObjectOrThrow = _chunkOGBGOFRXjs.validateObjectOrThrow; exports.validatePath = _chunkOGBGOFRXjs.validatePath; exports.verifyNativeObjectsSync = _chunkOGBGOFRXjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkOGBGOFRXjs.verifyNativeViewsSync; exports.view = _chunkOGBGOFRXjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkOGBGOFRXjs.wait; exports.withTenantContext = _chunkOGBGOFRXjs.withTenantContext; exports.workflow = _chunkOGBGOFRXjs.workflow;
929
+
930
+ exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkUDJDDKGYjs.ActivityTabConfig; exports.AttributeInUseError = _chunkUDJDDKGYjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkUDJDDKGYjs.AttributeNotFoundError; exports.AuditService = _chunkUDJDDKGYjs.AuditService; exports.ConditionExecutor = _chunkUDJDDKGYjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkUDJDDKGYjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkUDJDDKGYjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkUDJDDKGYjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkUDJDDKGYjs.ConditionRuleSchema; exports.CustomTabConfig = _chunkUDJDDKGYjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkUDJDDKGYjs.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 = _chunkUDJDDKGYjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkUDJDDKGYjs.DEFAULT_VALIDATION_MESSAGES; exports.DirectTableTabConfig = _chunkUDJDDKGYjs.DirectTableTabConfig; exports.DuplicateError = _chunkUDJDDKGYjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkUDJDDKGYjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkUDJDDKGYjs.EndExecutor; exports.EndNodeSchema = _chunkUDJDDKGYjs.EndNodeSchema; exports.ExecutorRegistry = _chunkUDJDDKGYjs.ExecutorRegistry; exports.FileNotFoundError = _chunkUDJDDKGYjs.FileNotFoundError; exports.FileService = _chunkUDJDDKGYjs.FileService; exports.FlowRowFieldSchema = _chunkUDJDDKGYjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkUDJDDKGYjs.FlowRowSchema; exports.FlowsTabConfig = _chunkUDJDDKGYjs.FlowsTabConfig; exports.ForbiddenError = _chunkUDJDDKGYjs.ForbiddenError; exports.FormExecutor = _chunkUDJDDKGYjs.FormExecutor; exports.FormFieldRefSchema = _chunkUDJDDKGYjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkUDJDDKGYjs.FormNodeSchema; exports.GeocodingService = _chunkUDJDDKGYjs.GeocodingService; exports.GlobalSearchService = _chunkUDJDDKGYjs.GlobalSearchService; exports.GroupBuilder = _chunkUDJDDKGYjs.GroupBuilder; exports.InvalidPathError = _chunkUDJDDKGYjs.InvalidPathError; exports.InverseTableTabConfig = _chunkUDJDDKGYjs.InverseTableTabConfig; exports.MaxDepthExceededError = _chunkUDJDDKGYjs.MaxDepthExceededError; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkUDJDDKGYjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkUDJDDKGYjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkUDJDDKGYjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkUDJDDKGYjs.NoopHookRegistry; exports.NotFoundError = _chunkUDJDDKGYjs.NotFoundError; exports.NotSystemObjectError = _chunkUDJDDKGYjs.NotSystemObjectError; exports.NotesTabConfig = _chunkUDJDDKGYjs.NotesTabConfig; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkUDJDDKGYjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkUDJDDKGYjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkUDJDDKGYjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkUDJDDKGYjs.ObjectSchemaService; exports.ParticipantAuthConfigSchema = _chunkUDJDDKGYjs.ParticipantAuthConfigSchema; exports.ParticipantTemplateSchema = _chunkUDJDDKGYjs.ParticipantTemplateSchema; exports.ParticipationTokenService = _chunkUDJDDKGYjs.ParticipationTokenService; exports.PermissionService = _chunkUDJDDKGYjs.PermissionService; exports.PinCodeService = _chunkUDJDDKGYjs.PinCodeService; exports.PolicyRegistry = _chunkUDJDDKGYjs.PolicyRegistry; exports.PolicyViolationError = _chunkUDJDDKGYjs.PolicyViolationError; exports.ProtectedResourceError = _chunkUDJDDKGYjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkUDJDDKGYjs.ProtectedRoleError; exports.QueryBuilder = _chunkUDJDDKGYjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkUDJDDKGYjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkUDJDDKGYjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkUDJDDKGYjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkUDJDDKGYjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkUDJDDKGYjs.RecordNotFoundError; exports.RecordReferencedError = _chunkUDJDDKGYjs.RecordReferencedError; exports.RecordService = _chunkUDJDDKGYjs.RecordService; exports.RelationResolverService = _chunkUDJDDKGYjs.RelationResolverService; exports.RelationService = _chunkUDJDDKGYjs.RelationService; exports.RoleNotFoundError = _chunkUDJDDKGYjs.RoleNotFoundError; exports.RollupScheduler = _chunkUDJDDKGYjs.RollupScheduler; exports.RollupService = _chunkUDJDDKGYjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkUDJDDKGYjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SYSTEM_ATTRIBUTES = _chunkUDJDDKGYjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkUDJDDKGYjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SchemaError = _chunkUDJDDKGYjs.SchemaError; exports.SchemaErrorCode = _chunkUDJDDKGYjs.SchemaErrorCode; exports.SlotModeSchema = _chunkUDJDDKGYjs.SlotModeSchema; exports.StartExecutor = _chunkUDJDDKGYjs.StartExecutor; exports.StartNodeSchema = _chunkUDJDDKGYjs.StartNodeSchema; exports.SyncError = _chunkUDJDDKGYjs.SyncError; exports.TabBuilder = _chunkUDJDDKGYjs.TabBuilder; exports.TenantAwareRepository = _chunkUDJDDKGYjs.TenantAwareRepository; exports.TenantAwareService = _chunkUDJDDKGYjs.TenantAwareService; exports.TenantContextError = _chunkUDJDDKGYjs.TenantContextError; exports.ThemeColorsSchema = _chunkUDJDDKGYjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkUDJDDKGYjs.ThemeLogoSchema; exports.UserProfileNotFoundError = _chunkUDJDDKGYjs.UserProfileNotFoundError; exports.UserProfileService = _chunkUDJDDKGYjs.UserProfileService; exports.UserService = _chunkUDJDDKGYjs.UserService; exports.ValidationError = _chunkUDJDDKGYjs.ValidationError; exports.ViewBuilder = _chunkUDJDDKGYjs.ViewBuilder; exports.ViewService = _chunkUDJDDKGYjs.ViewService; exports.ViewportSchema = _chunkUDJDDKGYjs.ViewportSchema; exports.WorkflowBuilder = _chunkUDJDDKGYjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkUDJDDKGYjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkUDJDDKGYjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkUDJDDKGYjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkUDJDDKGYjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkUDJDDKGYjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkUDJDDKGYjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkUDJDDKGYjs.WorkflowInstanceService; exports.WorkflowLayoutSchema = _chunkUDJDDKGYjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkUDJDDKGYjs.WorkflowNodeSchema; exports.WorkflowParticipantBuilder = _chunkUDJDDKGYjs.WorkflowParticipantBuilder; exports.WorkflowParticipationService = _chunkUDJDDKGYjs.WorkflowParticipationService; exports.WorkflowRelationService = _chunkUDJDDKGYjs.WorkflowRelationService; exports.WorkflowService = _chunkUDJDDKGYjs.WorkflowService; exports.WorkflowSimpleFormBuilder = _chunkUDJDDKGYjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkUDJDDKGYjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkUDJDDKGYjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkUDJDDKGYjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkUDJDDKGYjs.WorkflowThemeSchema; exports.and = _chunkUDJDDKGYjs.and; exports.asTenantId = _chunkUDJDDKGYjs.asTenantId; exports.asUserId = _chunkUDJDDKGYjs.asUserId; exports.attributeConfigSchemas = _chunkUDJDDKGYjs.attributeConfigSchemas; exports.buildAuditChanges = _chunkUDJDDKGYjs.buildAuditChanges; exports.cacheKeys = _chunkUDJDDKGYjs.cacheKeys; exports.cacheTtl = _chunkUDJDDKGYjs.cacheTtl; exports.canAuthenticate = _chunkUDJDDKGYjs.canAuthenticate; exports.canExecuteNode = _chunkUDJDDKGYjs.canExecuteNode; exports.canParticipate = _chunkUDJDDKGYjs.canParticipate; exports.canResumeInstance = _chunkUDJDDKGYjs.canResumeInstance; exports.checkbox = _chunkUDJDDKGYjs.checkbox; exports.checkboxConfigSchema = _chunkUDJDDKGYjs.checkboxConfigSchema; exports.complete = _chunkUDJDDKGYjs.complete; exports.computeLabelWithRelations = _chunkUDJDDKGYjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkUDJDDKGYjs.computeRecordStatus; exports.createAttributeValidator = _chunkUDJDDKGYjs.createAttributeValidator; exports.createCheckboxValidator = _chunkUDJDDKGYjs.createCheckboxValidator; exports.createCurrencyValidator = _chunkUDJDDKGYjs.createCurrencyValidator; exports.createDateValidator = _chunkUDJDDKGYjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkUDJDDKGYjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkUDJDDKGYjs.createDefaultState; exports.createDraftValidator = _chunkUDJDDKGYjs.createDraftValidator; exports.createEmptyContext = _chunkUDJDDKGYjs.createEmptyContext; exports.createFileValidator = _chunkUDJDDKGYjs.createFileValidator; exports.createFormAttributeValidator = _chunkUDJDDKGYjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkUDJDDKGYjs.createFormulaValidator; exports.createLocationValidator = _chunkUDJDDKGYjs.createLocationValidator; exports.createMockAdapter = _chunkUDJDDKGYjs.createMockAdapter; exports.createMultiRelationValidator = _chunkUDJDDKGYjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkUDJDDKGYjs.createMultiselectValidator; exports.createNumberValidator = _chunkUDJDDKGYjs.createNumberValidator; exports.createObjectValidator = _chunkUDJDDKGYjs.createObjectValidator; exports.createPhoneValidator = _chunkUDJDDKGYjs.createPhoneValidator; exports.createQueryBuilder = _chunkUDJDDKGYjs.createQueryBuilder; exports.createRatingValidator = _chunkUDJDDKGYjs.createRatingValidator; exports.createRelationValidator = _chunkUDJDDKGYjs.createRelationValidator; exports.createRichtextValidator = _chunkUDJDDKGYjs.createRichtextValidator; exports.createRollupValidator = _chunkUDJDDKGYjs.createRollupValidator; exports.createSelectValidator = _chunkUDJDDKGYjs.createSelectValidator; exports.createSingleRelationValidator = _chunkUDJDDKGYjs.createSingleRelationValidator; exports.createStartTransition = _chunkUDJDDKGYjs.createStartTransition; exports.createStatusValidator = _chunkUDJDDKGYjs.createStatusValidator; exports.createTextAreaValidator = _chunkUDJDDKGYjs.createTextAreaValidator; exports.createTextValidator = _chunkUDJDDKGYjs.createTextValidator; exports.createUserValidator = _chunkUDJDDKGYjs.createUserValidator; exports.currency = _chunkUDJDDKGYjs.currency; exports.currencyConfigSchema = _chunkUDJDDKGYjs.currencyConfigSchema; exports.date = _chunkUDJDDKGYjs.date; exports.dateConfigSchema = _chunkUDJDDKGYjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkUDJDDKGYjs.defaultPolicyRegistry; exports.enrichValuesForDisplay = _chunkUDJDDKGYjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkUDJDDKGYjs.enrichValuesWithSelectLabels; exports.eq = _chunkUDJDDKGYjs.eq; exports.error = _chunkUDJDDKGYjs.error; exports.evaluate = _chunkUDJDDKGYjs.evaluate; exports.evaluateCondition = _chunkUDJDDKGYjs.evaluateCondition; exports.evaluateFormula = _chunkUDJDDKGYjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkUDJDDKGYjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkUDJDDKGYjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkUDJDDKGYjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkUDJDDKGYjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkUDJDDKGYjs.evaluateWithTrace; exports.extractAttributeNames = _chunkUDJDDKGYjs.extractAttributeNames; exports.extractFormulaVariables = _chunkUDJDDKGYjs.extractFormulaVariables; exports.extractRelationIds = _chunkUDJDDKGYjs.extractRelationIds; exports.extractRelationNames = _chunkUDJDDKGYjs.extractRelationNames; exports.extractRelationReferences = _chunkUDJDDKGYjs.extractRelationReferences; exports.file = _chunkUDJDDKGYjs.file; exports.fileConfigSchema = _chunkUDJDDKGYjs.fileConfigSchema; exports.flattenRelationsForEval = _chunkUDJDDKGYjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkUDJDDKGYjs.formatAttributeValue; exports.formatFormulaResult = _chunkUDJDDKGYjs.formatFormulaResult; exports.formatRecord = _chunkUDJDDKGYjs.formatRecord; exports.formatRecords = _chunkUDJDDKGYjs.formatRecords; exports.formula = _chunkUDJDDKGYjs.formula; exports.formulaConfigSchema = _chunkUDJDDKGYjs.formulaConfigSchema; exports.generateCssVariables = _chunkUDJDDKGYjs.generateCssVariables; exports.generateId = _chunkUDJDDKGYjs.generateId; exports.generatePrefixedId = _chunkUDJDDKGYjs.generatePrefixedId; exports.getAttributeConfigSchema = _chunkUDJDDKGYjs.getAttributeConfigSchema; exports.getContext = _chunkUDJDDKGYjs.getContext; exports.getContextValue = _chunkUDJDDKGYjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkUDJDDKGYjs.getDefaultExecutorRegistry; exports.getDefaultPinCodeService = _chunkUDJDDKGYjs.getDefaultPinCodeService; exports.getDefaultTokenService = _chunkUDJDDKGYjs.getDefaultTokenService; exports.getMissingRequiredAttributes = _chunkUDJDDKGYjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkUDJDDKGYjs.getNodeOutputs; exports.getPathDepth = _chunkUDJDDKGYjs.getPathDepth; exports.getRelationPath = _chunkUDJDDKGYjs.getRelationPath; exports.getSyncPreview = _chunkUDJDDKGYjs.getSyncPreview; exports.getSystemAttributeList = _chunkUDJDDKGYjs.getSystemAttributeList; exports.getTargetAttributeName = _chunkUDJDDKGYjs.getTargetAttributeName; exports.getTenantId = _chunkUDJDDKGYjs.getTenantId; exports.getUserId = _chunkUDJDDKGYjs.getUserId; exports.getViewSyncPreview = _chunkUDJDDKGYjs.getViewSyncPreview; exports.group = _chunkUDJDDKGYjs.group; exports.hasContext = _chunkUDJDDKGYjs.hasContext; exports.hasRelationReferences = _chunkUDJDDKGYjs.hasRelationReferences; exports.inValues = _chunkUDJDDKGYjs.inValues; exports.initializePinCodeService = _chunkUDJDDKGYjs.initializePinCodeService; exports.initializeTokenService = _chunkUDJDDKGYjs.initializeTokenService; exports.isActivityTab = isActivityTab; exports.isAdvancedFilterState = isAdvancedFilterState; exports.isAdvancedFormNode = _chunkUDJDDKGYjs.isAdvancedFormNode; exports.isConditionGroup = _chunkUDJDDKGYjs.isConditionGroup; exports.isConditionNode = _chunkUDJDDKGYjs.isConditionNode; exports.isConditionRule = _chunkUDJDDKGYjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDirectTableTab = isDirectTableTab; exports.isEmpty = _chunkUDJDDKGYjs.isEmpty; exports.isEndNode = _chunkUDJDDKGYjs.isEndNode; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkUDJDDKGYjs.isForbiddenError; exports.isFormNode = _chunkUDJDDKGYjs.isFormNode; exports.isFormTab = isFormTab; exports.isInstanceEvent = _chunkUDJDDKGYjs.isInstanceEvent; exports.isInstanceTerminal = _chunkUDJDDKGYjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkUDJDDKGYjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isLabelExpression = _chunkUDJDDKGYjs.isLabelExpression; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkUDJDDKGYjs.isNodeEvent; exports.isNotEmpty = _chunkUDJDDKGYjs.isNotEmpty; exports.isNotFoundError = _chunkUDJDDKGYjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isParticipationEvent = _chunkUDJDDKGYjs.isParticipationEvent; exports.isPinCodeAuth = _chunkUDJDDKGYjs.isPinCodeAuth; exports.isProtectedResourceError = _chunkUDJDDKGYjs.isProtectedResourceError; exports.isRecordComplete = _chunkUDJDDKGYjs.isRecordComplete; exports.isSchemaError = _chunkUDJDDKGYjs.isSchemaError; exports.isSignedLinkAuth = _chunkUDJDDKGYjs.isSignedLinkAuth; exports.isSimpleFormNode = _chunkUDJDDKGYjs.isSimpleFormNode; exports.isStartNode = _chunkUDJDDKGYjs.isStartNode; exports.isSystemAttribute = _chunkUDJDDKGYjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkUDJDDKGYjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemWorkflow = _chunkUDJDDKGYjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isUniversalRelation = _chunkUDJDDKGYjs.isUniversalRelation; exports.isValidationError = _chunkUDJDDKGYjs.isValidationError; exports.isWorkflowDefinition = _chunkUDJDDKGYjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkUDJDDKGYjs.isWorkflowPublished; exports.location = _chunkUDJDDKGYjs.location; exports.locationConfigSchema = _chunkUDJDDKGYjs.locationConfigSchema; exports.mergeFormToSlot = _chunkUDJDDKGYjs.mergeFormToSlot; exports.mergeWithDefaults = _chunkUDJDDKGYjs.mergeWithDefaults; exports.multiselect = _chunkUDJDDKGYjs.multiselect; exports.multiselectConfigSchema = _chunkUDJDDKGYjs.multiselectConfigSchema; exports.neq = _chunkUDJDDKGYjs.neq; exports.notesPolicy = _chunkUDJDDKGYjs.notesPolicy; exports.number = _chunkUDJDDKGYjs.number; exports.numberConfigSchema = _chunkUDJDDKGYjs.numberConfigSchema; exports.object = _chunkUDJDDKGYjs.object; exports.or = _chunkUDJDDKGYjs.or; exports.parseAttributeConfig = _chunkUDJDDKGYjs.parseAttributeConfig; exports.parsePath = _chunkUDJDDKGYjs.parsePath; exports.pathHasManyCardinality = _chunkUDJDDKGYjs.pathHasManyCardinality; exports.phone = _chunkUDJDDKGYjs.phone; exports.phoneConfigSchema = _chunkUDJDDKGYjs.phoneConfigSchema; exports.rating = _chunkUDJDDKGYjs.rating; exports.ratingConfigSchema = _chunkUDJDDKGYjs.ratingConfigSchema; exports.registry = _chunkUDJDDKGYjs.registry; exports.relation = _chunkUDJDDKGYjs.relation; exports.relationConfigSchema = _chunkUDJDDKGYjs.relationConfigSchema; exports.renderLabelExpression = _chunkUDJDDKGYjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkUDJDDKGYjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkUDJDDKGYjs.resolveSingleValue; exports.richtext = _chunkUDJDDKGYjs.richtext; exports.richtextConfigSchema = _chunkUDJDDKGYjs.richtextConfigSchema; exports.rollup = _chunkUDJDDKGYjs.rollup; exports.rollupConfigSchema = _chunkUDJDDKGYjs.rollupConfigSchema; exports.runWithContext = _chunkUDJDDKGYjs.runWithContext; exports.safeParseAttributeConfig = _chunkUDJDDKGYjs.safeParseAttributeConfig; exports.select = _chunkUDJDDKGYjs.select; exports.selectConfigSchema = _chunkUDJDDKGYjs.selectConfigSchema; exports.setContextValue = _chunkUDJDDKGYjs.setContextValue; exports.status = _chunkUDJDDKGYjs.status; exports.statusConfigSchema = _chunkUDJDDKGYjs.statusConfigSchema; exports.success = _chunkUDJDDKGYjs.success; exports.syncAll = _chunkUDJDDKGYjs.syncAll; exports.syncNativeObjects = _chunkUDJDDKGYjs.syncNativeObjects; exports.syncNativeViews = _chunkUDJDDKGYjs.syncNativeViews; exports.text = _chunkUDJDDKGYjs.text; exports.textConfigSchema = _chunkUDJDDKGYjs.textConfigSchema; exports.textarea = _chunkUDJDDKGYjs.textarea; exports.textareaConfigSchema = _chunkUDJDDKGYjs.textareaConfigSchema; exports.toAdvancedFilterState = toAdvancedFilterState; exports.toSimpleFilterState = toSimpleFilterState; exports.traversePath = _chunkUDJDDKGYjs.traversePath; exports.user = _chunkUDJDDKGYjs.user; exports.userConfigSchema = _chunkUDJDDKGYjs.userConfigSchema; exports.validateAttribute = _chunkUDJDDKGYjs.validateAttribute; exports.validateAttributeConfig = _chunkUDJDDKGYjs.validateAttributeConfig; exports.validateDraft = _chunkUDJDDKGYjs.validateDraft; exports.validateDraftOrThrow = _chunkUDJDDKGYjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkUDJDDKGYjs.validateFormulaExpression; exports.validateObject = _chunkUDJDDKGYjs.validateObject; exports.validateObjectOrThrow = _chunkUDJDDKGYjs.validateObjectOrThrow; exports.validatePath = _chunkUDJDDKGYjs.validatePath; exports.verifyNativeObjectsSync = _chunkUDJDDKGYjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkUDJDDKGYjs.verifyNativeViewsSync; exports.view = _chunkUDJDDKGYjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkUDJDDKGYjs.wait; exports.withTenantContext = _chunkUDJDDKGYjs.withTenantContext; exports.workflow = _chunkUDJDDKGYjs.workflow;
package/dist/index.mjs CHANGED
@@ -158,6 +158,7 @@ import {
158
158
  date,
159
159
  dateConfigSchema,
160
160
  defaultPolicyRegistry,
161
+ enrichValuesForDisplay,
161
162
  enrichValuesWithSelectLabels,
162
163
  eq,
163
164
  error,
@@ -299,7 +300,7 @@ import {
299
300
  wait,
300
301
  withTenantContext,
301
302
  workflow
302
- } from "./chunk-RYBKW22L.mjs";
303
+ } from "./chunk-2C24E4Q2.mjs";
303
304
  import {
304
305
  ALL_SYSTEM_RESOURCES,
305
306
  DEFAULT_ROLES,
@@ -767,6 +768,7 @@ export {
767
768
  date,
768
769
  dateConfigSchema,
769
770
  defaultPolicyRegistry,
771
+ enrichValuesForDisplay,
770
772
  enrichValuesWithSelectLabels,
771
773
  eq,
772
774
  error,
@@ -4825,7 +4825,7 @@ declare function createRichtextValidator(attr: RichtextAttribute, messages?: Val
4825
4825
  declare function createAttributeValidator(attr: Attribute, messages?: ValidationMessages): z.ZodTypeAny;
4826
4826
  /**
4827
4827
  * Create a Zod schema for form validation.
4828
- * - Uses nullish() for optional fields (accepts null and undefined)
4828
+ * - Normalizes empty values (empty strings, empty objects) to null for optional fields
4829
4829
  * - Accepts custom messages for i18n support
4830
4830
  *
4831
4831
  * Use this in UI forms where optional fields may have null/undefined values.
@@ -10536,35 +10536,6 @@ declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof regist
10536
10536
  * Default fallback value when expression resolves to empty string
10537
10537
  */
10538
10538
  declare const DEFAULT_LABEL_FALLBACK = "(Untitled)";
10539
- /**
10540
- * Render a label expression template with values
10541
- *
10542
- * Supports:
10543
- * - Variable interpolation: `{{ fieldName }}`
10544
- * - Dot notation: `{{ user.firstName }}`
10545
- * - Pipes: `{{ name | UPPER }}`, `{{ name | capitalize | trim }}`
10546
- *
10547
- * @param template - The label expression template (e.g., "{{ firstName }} {{ lastName }}")
10548
- * @param values - Record values to interpolate
10549
- * @param fallback - Fallback value if result is empty (default: "(Untitled)")
10550
- * @returns The rendered label string
10551
- *
10552
- * @example
10553
- * ```typescript
10554
- * const label = renderLabelExpression(
10555
- * "{{ firstName }} {{ lastName | UPPER }}",
10556
- * { firstName: "John", lastName: "Doe" }
10557
- * );
10558
- * // → "John DOE"
10559
- *
10560
- * // With missing values
10561
- * const label = renderLabelExpression(
10562
- * "{{ name }}",
10563
- * { }
10564
- * );
10565
- * // → "(Untitled)"
10566
- * ```
10567
- */
10568
10539
  declare function renderLabelExpression(template: string, values: Record<string, unknown>, fallback?: string): string;
10569
10540
  /**
10570
10541
  * Check if a string is a valid label expression template
@@ -10581,31 +10552,32 @@ declare function isLabelExpression(value: string): boolean;
10581
10552
  */
10582
10553
  declare function extractAttributeNames(template: string): string[];
10583
10554
  /**
10584
- * Enrich record values by replacing select/multiselect/status values with their display labels
10555
+ * Enrich record values by formatting complex types for display
10585
10556
  *
10586
- * This function transforms raw option values into human-readable labels
10557
+ * Transforms raw values (objects, dates, etc.) into human-readable strings
10587
10558
  * for use in label expression rendering. Uses formatAttributeValue internally.
10588
10559
  *
10589
- * @param values - Record values containing raw select/multiselect values
10590
- * @param attributes - Attribute definitions to look up option labels
10591
- * @returns New object with select values replaced by their labels
10560
+ * @param values - Record values containing raw attribute values
10561
+ * @param attributes - Attribute definitions for formatting
10562
+ * @returns New object with complex values formatted as strings
10592
10563
  *
10593
10564
  * @example
10594
10565
  * ```typescript
10595
- * const enriched = enrichValuesWithSelectLabels(
10596
- * { status: "active", tags: ["urgent", "new"] },
10566
+ * const enriched = enrichValuesForDisplay(
10567
+ * { status: "active", price: { value: 1500, code: "EUR" } },
10597
10568
  * [
10598
10569
  * { type: "select", name: "status", options: [{ value: "active", label: "Active" }] },
10599
- * { type: "multiselect", name: "tags", options: [
10600
- * { value: "urgent", label: "Urgent" },
10601
- * { value: "new", label: "New" }
10602
- * ]}
10570
+ * { type: "currency", name: "price" }
10603
10571
  * ]
10604
10572
  * );
10605
- * // → { status: "Active", tags: "Urgent, New" }
10573
+ * // → { status: "Active", price: "1,500.00 EUR" }
10606
10574
  * ```
10607
10575
  */
10608
- declare function enrichValuesWithSelectLabels(values: Record<string, unknown>, attributes: Attribute[]): Record<string, unknown>;
10576
+ declare function enrichValuesForDisplay(values: Record<string, unknown>, attributes: Attribute[]): Record<string, unknown>;
10577
+ /**
10578
+ * @deprecated Use `enrichValuesForDisplay` instead
10579
+ */
10580
+ declare const enrichValuesWithSelectLabels: typeof enrichValuesForDisplay;
10609
10581
  /**
10610
10582
  * Extract relation IDs from a value (string or array)
10611
10583
  * For cardinality "many", only the first ID is extracted for label display
@@ -10654,4 +10626,4 @@ type RelationLabelResolver = (ids: string[]) => Promise<Map<string, string>>;
10654
10626
  */
10655
10627
  declare function computeLabelWithRelations(template: string, values: Record<string, unknown>, attributes: Attribute[], resolveRelationIds: RelationLabelResolver): Promise<string>;
10656
10628
 
10657
- export { type FlowRow as $, type Attribute as A, type DirectTableTab as B, type CheckboxAttribute as C, type DateAttribute as D, type WorkflowConfig as E, type FileAttribute as F, type Group as G, type SlotMode as H, type InferAttributeValue as I, type AuthMethod as J, type AuthChannel as K, type LocationAttribute as L, type MultiselectAttribute as M, type NumberAttribute as N, type ObjectAction as O, type PhoneAttribute as P, type ParticipantTemplate as Q, type RichtextAttribute as R, type SystemResource as S, type TextAttribute as T, type UserAttribute as U, type ViewLayout as V, type WorkflowTheme as W, type ConditionGroup as X, type ConditionRule as Y, type WorkflowNode as Z, type WorkflowDefinition as _, type SystemAction as a, toSimpleFilterState as a$, type BlockNoteContent as a0, type StatusGroup as a1, type AttributeGroup as a2, type BaseAttribute as a3, type NumberUnit as a4, type DateFormat as a5, type DateValue as a6, type Phone as a7, type Currency as a8, type Location as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type StorageProvider as aD, type FileVisibility as aE, type File as aF, type CreateFile as aG, type UpdateFile as aH, type TextFilterOperator as aI, type NumberFilterOperator as aJ, type CheckboxFilterOperator as aK, type DateFilterOperator as aL, type SelectFilterOperator as aM, type MultiselectFilterOperator as aN, type RelationFilterOperator as aO, type FilterOperator as aP, type RelativeDateValue as aQ, type CurrencyFilterValue as aR, type PhoneFilterValue as aS, type FilterValue as aT, type FilterRule as aU, type ExtendedFilterRule as aV, type FilterCombinator as aW, type FilterGroup as aX, type AdvancedFilterState as aY, isAdvancedFilterState as aZ, toAdvancedFilterState as a_, type LocationGranularity as aa, RELATION_TARGET_ANY as ab, type RelationAttribute as ac, isUniversalRelation as ad, type BlockNoteBlock as ae, type BlockNoteCustomInlineContent as af, type BlockNoteDefaultProps as ag, type BlockNoteInlineContent as ah, type BlockNoteLink as ai, type BlockNoteStyledText as aj, type BlockNoteStyles as ak, type BlockNoteTableCell as al, type BlockNoteTableCellProps as am, type BlockNoteTableContent as an, type PartialBlockNoteBlock as ao, type PartialBlockNoteContent as ap, type PartialBlockNoteInlineContent as aq, type PartialBlockNoteLink as ar, type PartialBlockNoteStyledText as as, type PartialBlockNoteTableCell as at, type PartialBlockNoteTableContent as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type TextAreaAttribute as b, type UserRole as b$, type SortDirection as b0, type QueryState as b1, OPERATORS_BY_TYPE as b2, type NoValueOperator as b3, NO_VALUE_OPERATORS as b4, isNoValueOperator as b5, type FlowSlot as b6, type FlowRowField as b7, type FlowPage as b8, type FlowRelation as b9, type ExtractRecordInput as bA, type ExtractRecordInputStrict as bB, type ExtractRecordUpdate as bC, type ExtractRecordUpdateStrict as bD, type ExtractAttributes as bE, RESERVED_ATTRIBUTE_NAMES as bF, SYSTEM_FIELD_NAMES as bG, type ReservedAttributeName as bH, type SystemFieldName as bI, type Timestamps as bJ, type ObjectAttribute as bK, type CompletionStatus as bL, type ObjectRecord as bM, type PermissionScope as bN, type Role as bO, type Permission as bP, type UserRoleAssignment as bQ, type EffectivePermissions as bR, type ObjectPermissions as bS, type SystemPermissions as bT, type CreateRoleInput as bU, type UpdateRoleInput as bV, type CreatePermissionInput as bW, type AssignRoleInput as bX, type PolicyContext as bY, type RecordPolicy as bZ, PolicyViolationError as b_, type FlowStatus as ba, type FlowDefinition as bb, isFlowDefinition as bc, isFlowPublished as bd, isSystemFlow as be, type GeocodingSuggestion as bf, type GeocodingAutocompleteParams as bg, type ReverseGeocodingParams as bh, type GeocodingParams as bi, type GeocodingAdapter as bj, NoopGeocodingAdapter as bk, type AttributeSchema as bl, type InferRecordFromSchema as bm, type InferRecordWithRequirements as bn, type TypedAttribute as bo, type AttributeMap as bp, type AddAttribute as bq, type InferRecord as br, type InferRecordInput as bs, type InferRecordUpdate as bt, type CustomAttributeValue as bu, type WithCustomAttributes as bv, type RecordMetadata as bw, type SystemFields as bx, type ExtractRecord as by, type ExtractRecordStrict as bz, type RichtextFeature as c, type WorkflowParticipation as c$, type UserStatus as c0, type UserProfile as c1, type CreateUserProfile as c2, type UpdateUserProfile as c3, type InviteUserInput as c4, type TabType as c5, type FormTab as c6, type CustomTab as c7, type ActivityTab as c8, type NotesTab as c9, neq as cA, and as cB, or as cC, inValues as cD, isEmpty as cE, isNotEmpty as cF, type WorkflowSlot as cG, type NodePosition as cH, type CanvasViewport as cI, type WorkflowLayout as cJ, type ParticipantAuthConfig as cK, type WorkflowStatus as cL, isWorkflowDefinition as cM, isWorkflowPublished as cN, isSystemWorkflow as cO, type WorkflowTransition as cP, type WorkflowError as cQ, type PendingAction as cR, type WorkflowInstance as cS, isInstanceTerminal as cT, isInstanceWaiting as cU, canResumeInstance as cV, createStartTransition as cW, type ParticipationStatus as cX, type SignedLinkAuth as cY, type PinCodeAuth as cZ, type ParticipationAuth as c_, type FlowsTab as ca, isFormTab as cb, isTableTab as cc, isDirectTableTab as cd, isInverseTableTab as ce, isCustomTab as cf, isActivityTab as cg, isNotesTab as ch, isFlowsTab as ci, type StartNode as cj, type FormNode as ck, type FormFieldRef as cl, type ConditionNode as cm, type EndNode as cn, type WorkflowNodeType as co, isStartNode as cp, isFormNode as cq, isConditionNode as cr, isEndNode as cs, isSimpleFormNode as ct, isAdvancedFormNode as cu, getNodeOutputs as cv, type ConditionOperator as cw, isConditionRule as cx, isConditionGroup as cy, eq as cz, type CurrencyAttribute as d, createCurrencyValidator as d$, isSignedLinkAuth as d0, isPinCodeAuth as d1, canParticipate as d2, canAuthenticate as d3, canExecuteNode as d4, type GeneratedDocument as d5, type WorkflowExecutionContext as d6, createEmptyContext as d7, getContextValue as d8, setContextValue as d9, textareaConfigSchema as dA, richtextConfigSchema as dB, numberConfigSchema as dC, checkboxConfigSchema as dD, dateConfigSchema as dE, phoneConfigSchema as dF, currencyConfigSchema as dG, statusConfigSchema as dH, locationConfigSchema as dI, selectConfigSchema as dJ, multiselectConfigSchema as dK, fileConfigSchema as dL, userConfigSchema as dM, relationConfigSchema as dN, ratingConfigSchema as dO, formulaConfigSchema as dP, rollupConfigSchema as dQ, attributeConfigSchemas as dR, getAttributeConfigSchema as dS, validateAttributeConfig as dT, parseAttributeConfig as dU, safeParseAttributeConfig as dV, createTextValidator as dW, createNumberValidator as dX, createCheckboxValidator as dY, createDateValidator as dZ, createPhoneValidator as d_, mergeFormToSlot as da, type WorkflowAccessMode as db, type ReadOnlyReason as dc, type FormFieldContext as dd, type FormFieldRow as de, type FormNodeInfo as df, type FormContextResponse as dg, type ThemeLogo as dh, type ThemeColors as di, type ThemeTypography as dj, DEFAULT_THEME as dk, mergeWithDefaults as dl, generateCssVariables as dm, type Uuid as dn, type TenantId as dp, type UserId as dq, asTenantId as dr, asUserId as ds, generateId as dt, generatePrefixedId as du, registry as dv, viewRegistry as dw, type ValidationMessages as dx, DEFAULT_VALIDATION_MESSAGES as dy, textConfigSchema as dz, type Option as e, evaluateCondition as e$, createStatusValidator as e0, createSelectValidator as e1, createMultiselectValidator as e2, createLocationValidator as e3, createFileValidator as e4, createUserValidator as e5, createSingleRelationValidator as e6, createMultiRelationValidator as e7, createRelationValidator as e8, createRatingValidator as e9, initializePinCodeService as eA, type PinCodeGenerationOptions as eB, type PinCodeVerificationResult as eC, type CacheAdapter as eD, type CacheOptions as eE, cacheKeys as eF, cacheTtl as eG, NoopCacheAdapter as eH, type FetchResult as eI, type FormattedRecord as eJ, type GroupedFetchResult as eK, type InsertOptions as eL, type QueryBuilderState as eM, type RegistryMap as eN, type RegistryObjectNames as eO, type ShortcutOperator as eP, createDefaultState as eQ, formatRecord as eR, formatRecords as eS, QueryMultipleResultsError as eT, QueryNoResultError as eU, SHORTCUT_TO_FILTER_OPERATOR as eV, createQueryBuilder as eW, QueryBuilder as eX, type QueryBuilderOptions as eY, type EvaluationResult as eZ, type EvaluationTrace as e_, createFormulaValidator as ea, createRollupValidator as eb, createTextAreaValidator as ec, createRichtextValidator as ed, createAttributeValidator as ee, createFormAttributeValidator as ef, createObjectValidator as eg, type ValidationResult as eh, validateAttribute as ei, validateObject as ej, validateObjectOrThrow as ek, createDraftValidator as el, validateDraft as em, validateDraftOrThrow as en, getMissingRequiredAttributes as eo, isRecordComplete as ep, computeRecordStatus as eq, type DatabaseAdapter as er, ParticipationTokenService as es, getDefaultTokenService as et, initializeTokenService as eu, type ParticipationTokenPayload as ev, type TokenGenerationOptions as ew, type TokenVerificationResult as ex, PinCodeService as ey, getDefaultPinCodeService as ez, type StatusAttribute as f, NoopHookRegistry as f$, evaluate as f0, evaluateWithTrace as f1, TenantContextError as f2, getContext as f3, getTenantId as f4, getUserId as f5, hasContext as f6, runWithContext as f7, withTenantContext as f8, type TenantContext as f9, flattenRelationsForEval as fA, formatFormulaResult as fB, hasRelationReferences as fC, validateFormulaExpression as fD, type FormulaResult as fE, getPathDepth as fF, getRelationPath as fG, getTargetAttributeName as fH, InvalidPathError as fI, MaxDepthExceededError as fJ, parsePath as fK, pathHasManyCardinality as fL, validatePath as fM, type PathCardinality as fN, type PathSegment as fO, type PathSegmentType as fP, type SchemaResolver as fQ, resolveMultiplePaths as fR, resolveSingleValue as fS, traversePath as fT, type TraversalOptions as fU, type TraversalResult as fV, type AttributeChange as fW, type HookContext as fX, type HookDefinition as fY, type HookHandler as fZ, type HookType as f_, createDefaultExecutorRegistry as fa, getDefaultExecutorRegistry as fb, type ExecutorCompleteResult as fc, type ExecutorContext as fd, type ExecutorErrorResult as fe, type ExecutorResult as ff, type ExecutorSuccessResult as fg, type ExecutorWaitResult as fh, type NodeExecutor as fi, complete as fj, error as fk, ExecutorRegistry as fl, success as fm, wait as fn, ConditionExecutor as fo, EndExecutor as fp, FormExecutor as fq, StartExecutor as fr, evaluateFormula as fs, evaluateFormulaAttribute as ft, evaluateFormulaAttributeWithRelations as fu, evaluateFormulaWithRelations as fv, evaluateFormulaWithResult as fw, extractFormulaVariables as fx, extractRelationNames as fy, extractRelationReferences as fz, type SelectAttribute as g, type FieldReadOnlyResult as g$, type HookRegistry as g0, createMockAdapter as g1, defaultPolicyRegistry as g2, PolicyRegistry as g3, notesPolicy as g4, type ObjectsRepository as g5, type AttributesRepository as g6, type UserProfilesRepository as g7, type FilesRepository as g8, type ObjectRecordsRepository as g9, type RelationValidationError as gA, type RelationOption as gB, type RelationOptionsResponse as gC, type GetRelationOptionsParams as gD, type RelationServiceOptions as gE, RelationService as gF, type RollupSchedulerOptions as gG, RollupScheduler as gH, type RollupResult as gI, type RollupServiceOptions as gJ, RollupService as gK, type UserProfileServiceOptions as gL, UserProfileService as gM, type UserValidationResult as gN, type UserValidationError as gO, UserService as gP, type CreateViewInput as gQ, type UpdateViewInput as gR, ViewService as gS, type StartWorkflowInput as gT, type ResumeWorkflowInput as gU, type WorkflowInstanceServiceOptions as gV, WorkflowInstanceService as gW, type CreateParticipationInput as gX, type CreateParticipationResult as gY, type AuthenticationResult as gZ, WorkflowParticipationService as g_, type ViewsRepository as ga, type WorkflowsRepository as gb, type WorkflowInstancesRepository as gc, type WorkflowParticipationsRepository as gd, type AuditRepository as ge, type PermissionsRepository as gf, buildAuditChanges as gg, AuditService as gh, TenantAwareService as gi, TenantAwareRepository as gj, type FileServiceOptions as gk, FileService as gl, GeocodingService as gm, GlobalSearchService as gn, type CreateCustomObjectInput as go, type AddAttributeInput as gp, type UpdateObjectInput as gq, type ObjectSchemaServiceOptions as gr, ObjectSchemaService as gs, type PermissionServiceOptions as gt, PermissionService as gu, type RecordServiceOptions as gv, RecordService as gw, type ResolvedRelations as gx, RelationResolverService as gy, type RelationValidationResult as gz, type SingleRelationAttribute as h, WorkflowRelationService as h0, type CreateWorkflowInput as h1, type UpdateWorkflowInput as h2, WorkflowService as h3, type FileContent as h4, type StorageUploadInput as h5, type StorageUploadResult as h6, type SignedUrlOptions as h7, type StorageAdapter as h8, type UploadFileInput as h9, type SearchOptions as hA, type GlobalSearchOptions as hB, type GlobalSearchResultItem as hC, type FileListOptions as hD, type DBView as hE, type CreateDBView as hF, type UpdateDBView as hG, type UpsertDBView as hH, type DBWorkflow as hI, type CreateDBWorkflow as hJ, type UpdateDBWorkflow as hK, type DBWorkflowInstance as hL, type CreateDBWorkflowInstance as hM, type UpdateDBWorkflowInstance as hN, type DBWorkflowParticipation as hO, type CreateDBWorkflowParticipation as hP, type UpdateDBWorkflowParticipation as hQ, type OperationResult as hR, type ViewSyncResult as hS, type ViewSyncOptions as hT, syncNativeViews as hU, verifyNativeViewsSync as hV, getViewSyncPreview as hW, type SyncResult as ha, type SyncOptions as hb, syncNativeObjects as hc, verifyNativeObjectsSync as hd, getSyncPreview as he, type FullSyncResult as hf, type FullSyncOptions as hg, syncAll as hh, DEFAULT_LABEL_FALLBACK as hi, renderLabelExpression as hj, isLabelExpression as hk, extractAttributeNames as hl, enrichValuesWithSelectLabels as hm, extractRelationIds as hn, type RelationLabelResolver as ho, computeLabelWithRelations as hp, type DBObject as hq, type CreateDBObject as hr, type UpdateDBObject as hs, type UpsertDBObject as ht, type DBAttribute as hu, type CreateDBAttribute as hv, type UpdateDBAttribute as hw, type UpsertDBAttribute as hx, type CreateObjectRecord as hy, type ListOptions as hz, type MultiRelationAttribute as i, type RelationTarget as j, type RatingAttribute as k, type FormulaAttribute as l, type FormulaReturnType as m, type RollupAttribute as n, type RollupFunction as o, type AttributeType as p, type ObjectDefinition as q, type Field as r, type AttributeGroupField as s, type TableTab as t, type InverseTableTab as u, type ViewDefinition as v, type InstanceStatus as w, type Tab as x, type FilterState as y, type SortRule as z };
10629
+ export { type FlowRow as $, type Attribute as A, type DirectTableTab as B, type CheckboxAttribute as C, type DateAttribute as D, type WorkflowConfig as E, type FileAttribute as F, type Group as G, type SlotMode as H, type InferAttributeValue as I, type AuthMethod as J, type AuthChannel as K, type LocationAttribute as L, type MultiselectAttribute as M, type NumberAttribute as N, type ObjectAction as O, type PhoneAttribute as P, type ParticipantTemplate as Q, type RichtextAttribute as R, type SystemResource as S, type TextAttribute as T, type UserAttribute as U, type ViewLayout as V, type WorkflowTheme as W, type ConditionGroup as X, type ConditionRule as Y, type WorkflowNode as Z, type WorkflowDefinition as _, type SystemAction as a, toSimpleFilterState as a$, type BlockNoteContent as a0, type StatusGroup as a1, type AttributeGroup as a2, type BaseAttribute as a3, type NumberUnit as a4, type DateFormat as a5, type DateValue as a6, type Phone as a7, type Currency as a8, type Location as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type StorageProvider as aD, type FileVisibility as aE, type File as aF, type CreateFile as aG, type UpdateFile as aH, type TextFilterOperator as aI, type NumberFilterOperator as aJ, type CheckboxFilterOperator as aK, type DateFilterOperator as aL, type SelectFilterOperator as aM, type MultiselectFilterOperator as aN, type RelationFilterOperator as aO, type FilterOperator as aP, type RelativeDateValue as aQ, type CurrencyFilterValue as aR, type PhoneFilterValue as aS, type FilterValue as aT, type FilterRule as aU, type ExtendedFilterRule as aV, type FilterCombinator as aW, type FilterGroup as aX, type AdvancedFilterState as aY, isAdvancedFilterState as aZ, toAdvancedFilterState as a_, type LocationGranularity as aa, RELATION_TARGET_ANY as ab, type RelationAttribute as ac, isUniversalRelation as ad, type BlockNoteBlock as ae, type BlockNoteCustomInlineContent as af, type BlockNoteDefaultProps as ag, type BlockNoteInlineContent as ah, type BlockNoteLink as ai, type BlockNoteStyledText as aj, type BlockNoteStyles as ak, type BlockNoteTableCell as al, type BlockNoteTableCellProps as am, type BlockNoteTableContent as an, type PartialBlockNoteBlock as ao, type PartialBlockNoteContent as ap, type PartialBlockNoteInlineContent as aq, type PartialBlockNoteLink as ar, type PartialBlockNoteStyledText as as, type PartialBlockNoteTableCell as at, type PartialBlockNoteTableContent as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type TextAreaAttribute as b, type UserRole as b$, type SortDirection as b0, type QueryState as b1, OPERATORS_BY_TYPE as b2, type NoValueOperator as b3, NO_VALUE_OPERATORS as b4, isNoValueOperator as b5, type FlowSlot as b6, type FlowRowField as b7, type FlowPage as b8, type FlowRelation as b9, type ExtractRecordInput as bA, type ExtractRecordInputStrict as bB, type ExtractRecordUpdate as bC, type ExtractRecordUpdateStrict as bD, type ExtractAttributes as bE, RESERVED_ATTRIBUTE_NAMES as bF, SYSTEM_FIELD_NAMES as bG, type ReservedAttributeName as bH, type SystemFieldName as bI, type Timestamps as bJ, type ObjectAttribute as bK, type CompletionStatus as bL, type ObjectRecord as bM, type PermissionScope as bN, type Role as bO, type Permission as bP, type UserRoleAssignment as bQ, type EffectivePermissions as bR, type ObjectPermissions as bS, type SystemPermissions as bT, type CreateRoleInput as bU, type UpdateRoleInput as bV, type CreatePermissionInput as bW, type AssignRoleInput as bX, type PolicyContext as bY, type RecordPolicy as bZ, PolicyViolationError as b_, type FlowStatus as ba, type FlowDefinition as bb, isFlowDefinition as bc, isFlowPublished as bd, isSystemFlow as be, type GeocodingSuggestion as bf, type GeocodingAutocompleteParams as bg, type ReverseGeocodingParams as bh, type GeocodingParams as bi, type GeocodingAdapter as bj, NoopGeocodingAdapter as bk, type AttributeSchema as bl, type InferRecordFromSchema as bm, type InferRecordWithRequirements as bn, type TypedAttribute as bo, type AttributeMap as bp, type AddAttribute as bq, type InferRecord as br, type InferRecordInput as bs, type InferRecordUpdate as bt, type CustomAttributeValue as bu, type WithCustomAttributes as bv, type RecordMetadata as bw, type SystemFields as bx, type ExtractRecord as by, type ExtractRecordStrict as bz, type RichtextFeature as c, type WorkflowParticipation as c$, type UserStatus as c0, type UserProfile as c1, type CreateUserProfile as c2, type UpdateUserProfile as c3, type InviteUserInput as c4, type TabType as c5, type FormTab as c6, type CustomTab as c7, type ActivityTab as c8, type NotesTab as c9, neq as cA, and as cB, or as cC, inValues as cD, isEmpty as cE, isNotEmpty as cF, type WorkflowSlot as cG, type NodePosition as cH, type CanvasViewport as cI, type WorkflowLayout as cJ, type ParticipantAuthConfig as cK, type WorkflowStatus as cL, isWorkflowDefinition as cM, isWorkflowPublished as cN, isSystemWorkflow as cO, type WorkflowTransition as cP, type WorkflowError as cQ, type PendingAction as cR, type WorkflowInstance as cS, isInstanceTerminal as cT, isInstanceWaiting as cU, canResumeInstance as cV, createStartTransition as cW, type ParticipationStatus as cX, type SignedLinkAuth as cY, type PinCodeAuth as cZ, type ParticipationAuth as c_, type FlowsTab as ca, isFormTab as cb, isTableTab as cc, isDirectTableTab as cd, isInverseTableTab as ce, isCustomTab as cf, isActivityTab as cg, isNotesTab as ch, isFlowsTab as ci, type StartNode as cj, type FormNode as ck, type FormFieldRef as cl, type ConditionNode as cm, type EndNode as cn, type WorkflowNodeType as co, isStartNode as cp, isFormNode as cq, isConditionNode as cr, isEndNode as cs, isSimpleFormNode as ct, isAdvancedFormNode as cu, getNodeOutputs as cv, type ConditionOperator as cw, isConditionRule as cx, isConditionGroup as cy, eq as cz, type CurrencyAttribute as d, createCurrencyValidator as d$, isSignedLinkAuth as d0, isPinCodeAuth as d1, canParticipate as d2, canAuthenticate as d3, canExecuteNode as d4, type GeneratedDocument as d5, type WorkflowExecutionContext as d6, createEmptyContext as d7, getContextValue as d8, setContextValue as d9, textareaConfigSchema as dA, richtextConfigSchema as dB, numberConfigSchema as dC, checkboxConfigSchema as dD, dateConfigSchema as dE, phoneConfigSchema as dF, currencyConfigSchema as dG, statusConfigSchema as dH, locationConfigSchema as dI, selectConfigSchema as dJ, multiselectConfigSchema as dK, fileConfigSchema as dL, userConfigSchema as dM, relationConfigSchema as dN, ratingConfigSchema as dO, formulaConfigSchema as dP, rollupConfigSchema as dQ, attributeConfigSchemas as dR, getAttributeConfigSchema as dS, validateAttributeConfig as dT, parseAttributeConfig as dU, safeParseAttributeConfig as dV, createTextValidator as dW, createNumberValidator as dX, createCheckboxValidator as dY, createDateValidator as dZ, createPhoneValidator as d_, mergeFormToSlot as da, type WorkflowAccessMode as db, type ReadOnlyReason as dc, type FormFieldContext as dd, type FormFieldRow as de, type FormNodeInfo as df, type FormContextResponse as dg, type ThemeLogo as dh, type ThemeColors as di, type ThemeTypography as dj, DEFAULT_THEME as dk, mergeWithDefaults as dl, generateCssVariables as dm, type Uuid as dn, type TenantId as dp, type UserId as dq, asTenantId as dr, asUserId as ds, generateId as dt, generatePrefixedId as du, registry as dv, viewRegistry as dw, type ValidationMessages as dx, DEFAULT_VALIDATION_MESSAGES as dy, textConfigSchema as dz, type Option as e, evaluateCondition as e$, createStatusValidator as e0, createSelectValidator as e1, createMultiselectValidator as e2, createLocationValidator as e3, createFileValidator as e4, createUserValidator as e5, createSingleRelationValidator as e6, createMultiRelationValidator as e7, createRelationValidator as e8, createRatingValidator as e9, initializePinCodeService as eA, type PinCodeGenerationOptions as eB, type PinCodeVerificationResult as eC, type CacheAdapter as eD, type CacheOptions as eE, cacheKeys as eF, cacheTtl as eG, NoopCacheAdapter as eH, type FetchResult as eI, type FormattedRecord as eJ, type GroupedFetchResult as eK, type InsertOptions as eL, type QueryBuilderState as eM, type RegistryMap as eN, type RegistryObjectNames as eO, type ShortcutOperator as eP, createDefaultState as eQ, formatRecord as eR, formatRecords as eS, QueryMultipleResultsError as eT, QueryNoResultError as eU, SHORTCUT_TO_FILTER_OPERATOR as eV, createQueryBuilder as eW, QueryBuilder as eX, type QueryBuilderOptions as eY, type EvaluationResult as eZ, type EvaluationTrace as e_, createFormulaValidator as ea, createRollupValidator as eb, createTextAreaValidator as ec, createRichtextValidator as ed, createAttributeValidator as ee, createFormAttributeValidator as ef, createObjectValidator as eg, type ValidationResult as eh, validateAttribute as ei, validateObject as ej, validateObjectOrThrow as ek, createDraftValidator as el, validateDraft as em, validateDraftOrThrow as en, getMissingRequiredAttributes as eo, isRecordComplete as ep, computeRecordStatus as eq, type DatabaseAdapter as er, ParticipationTokenService as es, getDefaultTokenService as et, initializeTokenService as eu, type ParticipationTokenPayload as ev, type TokenGenerationOptions as ew, type TokenVerificationResult as ex, PinCodeService as ey, getDefaultPinCodeService as ez, type StatusAttribute as f, NoopHookRegistry as f$, evaluate as f0, evaluateWithTrace as f1, TenantContextError as f2, getContext as f3, getTenantId as f4, getUserId as f5, hasContext as f6, runWithContext as f7, withTenantContext as f8, type TenantContext as f9, flattenRelationsForEval as fA, formatFormulaResult as fB, hasRelationReferences as fC, validateFormulaExpression as fD, type FormulaResult as fE, getPathDepth as fF, getRelationPath as fG, getTargetAttributeName as fH, InvalidPathError as fI, MaxDepthExceededError as fJ, parsePath as fK, pathHasManyCardinality as fL, validatePath as fM, type PathCardinality as fN, type PathSegment as fO, type PathSegmentType as fP, type SchemaResolver as fQ, resolveMultiplePaths as fR, resolveSingleValue as fS, traversePath as fT, type TraversalOptions as fU, type TraversalResult as fV, type AttributeChange as fW, type HookContext as fX, type HookDefinition as fY, type HookHandler as fZ, type HookType as f_, createDefaultExecutorRegistry as fa, getDefaultExecutorRegistry as fb, type ExecutorCompleteResult as fc, type ExecutorContext as fd, type ExecutorErrorResult as fe, type ExecutorResult as ff, type ExecutorSuccessResult as fg, type ExecutorWaitResult as fh, type NodeExecutor as fi, complete as fj, error as fk, ExecutorRegistry as fl, success as fm, wait as fn, ConditionExecutor as fo, EndExecutor as fp, FormExecutor as fq, StartExecutor as fr, evaluateFormula as fs, evaluateFormulaAttribute as ft, evaluateFormulaAttributeWithRelations as fu, evaluateFormulaWithRelations as fv, evaluateFormulaWithResult as fw, extractFormulaVariables as fx, extractRelationNames as fy, extractRelationReferences as fz, type SelectAttribute as g, type FieldReadOnlyResult as g$, type HookRegistry as g0, createMockAdapter as g1, defaultPolicyRegistry as g2, PolicyRegistry as g3, notesPolicy as g4, type ObjectsRepository as g5, type AttributesRepository as g6, type UserProfilesRepository as g7, type FilesRepository as g8, type ObjectRecordsRepository as g9, type RelationValidationError as gA, type RelationOption as gB, type RelationOptionsResponse as gC, type GetRelationOptionsParams as gD, type RelationServiceOptions as gE, RelationService as gF, type RollupSchedulerOptions as gG, RollupScheduler as gH, type RollupResult as gI, type RollupServiceOptions as gJ, RollupService as gK, type UserProfileServiceOptions as gL, UserProfileService as gM, type UserValidationResult as gN, type UserValidationError as gO, UserService as gP, type CreateViewInput as gQ, type UpdateViewInput as gR, ViewService as gS, type StartWorkflowInput as gT, type ResumeWorkflowInput as gU, type WorkflowInstanceServiceOptions as gV, WorkflowInstanceService as gW, type CreateParticipationInput as gX, type CreateParticipationResult as gY, type AuthenticationResult as gZ, WorkflowParticipationService as g_, type ViewsRepository as ga, type WorkflowsRepository as gb, type WorkflowInstancesRepository as gc, type WorkflowParticipationsRepository as gd, type AuditRepository as ge, type PermissionsRepository as gf, buildAuditChanges as gg, AuditService as gh, TenantAwareService as gi, TenantAwareRepository as gj, type FileServiceOptions as gk, FileService as gl, GeocodingService as gm, GlobalSearchService as gn, type CreateCustomObjectInput as go, type AddAttributeInput as gp, type UpdateObjectInput as gq, type ObjectSchemaServiceOptions as gr, ObjectSchemaService as gs, type PermissionServiceOptions as gt, PermissionService as gu, type RecordServiceOptions as gv, RecordService as gw, type ResolvedRelations as gx, RelationResolverService as gy, type RelationValidationResult as gz, type SingleRelationAttribute as h, WorkflowRelationService as h0, type CreateWorkflowInput as h1, type UpdateWorkflowInput as h2, WorkflowService as h3, type FileContent as h4, type StorageUploadInput as h5, type StorageUploadResult as h6, type SignedUrlOptions as h7, type StorageAdapter as h8, type UploadFileInput as h9, type ListOptions as hA, type SearchOptions as hB, type GlobalSearchOptions as hC, type GlobalSearchResultItem as hD, type FileListOptions as hE, type DBView as hF, type CreateDBView as hG, type UpdateDBView as hH, type UpsertDBView as hI, type DBWorkflow as hJ, type CreateDBWorkflow as hK, type UpdateDBWorkflow as hL, type DBWorkflowInstance as hM, type CreateDBWorkflowInstance as hN, type UpdateDBWorkflowInstance as hO, type DBWorkflowParticipation as hP, type CreateDBWorkflowParticipation as hQ, type UpdateDBWorkflowParticipation as hR, type OperationResult as hS, type ViewSyncResult as hT, type ViewSyncOptions as hU, syncNativeViews as hV, verifyNativeViewsSync as hW, getViewSyncPreview as hX, type SyncResult as ha, type SyncOptions as hb, syncNativeObjects as hc, verifyNativeObjectsSync as hd, getSyncPreview as he, type FullSyncResult as hf, type FullSyncOptions as hg, syncAll as hh, DEFAULT_LABEL_FALLBACK as hi, renderLabelExpression as hj, isLabelExpression as hk, extractAttributeNames as hl, enrichValuesForDisplay as hm, enrichValuesWithSelectLabels as hn, extractRelationIds as ho, type RelationLabelResolver as hp, computeLabelWithRelations as hq, type DBObject as hr, type CreateDBObject as hs, type UpdateDBObject as ht, type UpsertDBObject as hu, type DBAttribute as hv, type CreateDBAttribute as hw, type UpdateDBAttribute as hx, type UpsertDBAttribute as hy, type CreateObjectRecord as hz, type MultiRelationAttribute as i, type RelationTarget as j, type RatingAttribute as k, type FormulaAttribute as l, type FormulaReturnType as m, type RollupAttribute as n, type RollupFunction as o, type AttributeType as p, type ObjectDefinition as q, type Field as r, type AttributeGroupField as s, type TableTab as t, type InverseTableTab as u, type ViewDefinition as v, type InstanceStatus as w, type Tab as x, type FilterState as y, type SortRule as z };
@@ -4825,7 +4825,7 @@ declare function createRichtextValidator(attr: RichtextAttribute, messages?: Val
4825
4825
  declare function createAttributeValidator(attr: Attribute, messages?: ValidationMessages): z.ZodTypeAny;
4826
4826
  /**
4827
4827
  * Create a Zod schema for form validation.
4828
- * - Uses nullish() for optional fields (accepts null and undefined)
4828
+ * - Normalizes empty values (empty strings, empty objects) to null for optional fields
4829
4829
  * - Accepts custom messages for i18n support
4830
4830
  *
4831
4831
  * Use this in UI forms where optional fields may have null/undefined values.
@@ -10536,35 +10536,6 @@ declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof regist
10536
10536
  * Default fallback value when expression resolves to empty string
10537
10537
  */
10538
10538
  declare const DEFAULT_LABEL_FALLBACK = "(Untitled)";
10539
- /**
10540
- * Render a label expression template with values
10541
- *
10542
- * Supports:
10543
- * - Variable interpolation: `{{ fieldName }}`
10544
- * - Dot notation: `{{ user.firstName }}`
10545
- * - Pipes: `{{ name | UPPER }}`, `{{ name | capitalize | trim }}`
10546
- *
10547
- * @param template - The label expression template (e.g., "{{ firstName }} {{ lastName }}")
10548
- * @param values - Record values to interpolate
10549
- * @param fallback - Fallback value if result is empty (default: "(Untitled)")
10550
- * @returns The rendered label string
10551
- *
10552
- * @example
10553
- * ```typescript
10554
- * const label = renderLabelExpression(
10555
- * "{{ firstName }} {{ lastName | UPPER }}",
10556
- * { firstName: "John", lastName: "Doe" }
10557
- * );
10558
- * // → "John DOE"
10559
- *
10560
- * // With missing values
10561
- * const label = renderLabelExpression(
10562
- * "{{ name }}",
10563
- * { }
10564
- * );
10565
- * // → "(Untitled)"
10566
- * ```
10567
- */
10568
10539
  declare function renderLabelExpression(template: string, values: Record<string, unknown>, fallback?: string): string;
10569
10540
  /**
10570
10541
  * Check if a string is a valid label expression template
@@ -10581,31 +10552,32 @@ declare function isLabelExpression(value: string): boolean;
10581
10552
  */
10582
10553
  declare function extractAttributeNames(template: string): string[];
10583
10554
  /**
10584
- * Enrich record values by replacing select/multiselect/status values with their display labels
10555
+ * Enrich record values by formatting complex types for display
10585
10556
  *
10586
- * This function transforms raw option values into human-readable labels
10557
+ * Transforms raw values (objects, dates, etc.) into human-readable strings
10587
10558
  * for use in label expression rendering. Uses formatAttributeValue internally.
10588
10559
  *
10589
- * @param values - Record values containing raw select/multiselect values
10590
- * @param attributes - Attribute definitions to look up option labels
10591
- * @returns New object with select values replaced by their labels
10560
+ * @param values - Record values containing raw attribute values
10561
+ * @param attributes - Attribute definitions for formatting
10562
+ * @returns New object with complex values formatted as strings
10592
10563
  *
10593
10564
  * @example
10594
10565
  * ```typescript
10595
- * const enriched = enrichValuesWithSelectLabels(
10596
- * { status: "active", tags: ["urgent", "new"] },
10566
+ * const enriched = enrichValuesForDisplay(
10567
+ * { status: "active", price: { value: 1500, code: "EUR" } },
10597
10568
  * [
10598
10569
  * { type: "select", name: "status", options: [{ value: "active", label: "Active" }] },
10599
- * { type: "multiselect", name: "tags", options: [
10600
- * { value: "urgent", label: "Urgent" },
10601
- * { value: "new", label: "New" }
10602
- * ]}
10570
+ * { type: "currency", name: "price" }
10603
10571
  * ]
10604
10572
  * );
10605
- * // → { status: "Active", tags: "Urgent, New" }
10573
+ * // → { status: "Active", price: "1,500.00 EUR" }
10606
10574
  * ```
10607
10575
  */
10608
- declare function enrichValuesWithSelectLabels(values: Record<string, unknown>, attributes: Attribute[]): Record<string, unknown>;
10576
+ declare function enrichValuesForDisplay(values: Record<string, unknown>, attributes: Attribute[]): Record<string, unknown>;
10577
+ /**
10578
+ * @deprecated Use `enrichValuesForDisplay` instead
10579
+ */
10580
+ declare const enrichValuesWithSelectLabels: typeof enrichValuesForDisplay;
10609
10581
  /**
10610
10582
  * Extract relation IDs from a value (string or array)
10611
10583
  * For cardinality "many", only the first ID is extracted for label display
@@ -10654,4 +10626,4 @@ type RelationLabelResolver = (ids: string[]) => Promise<Map<string, string>>;
10654
10626
  */
10655
10627
  declare function computeLabelWithRelations(template: string, values: Record<string, unknown>, attributes: Attribute[], resolveRelationIds: RelationLabelResolver): Promise<string>;
10656
10628
 
10657
- export { type FlowRow as $, type Attribute as A, type DirectTableTab as B, type CheckboxAttribute as C, type DateAttribute as D, type WorkflowConfig as E, type FileAttribute as F, type Group as G, type SlotMode as H, type InferAttributeValue as I, type AuthMethod as J, type AuthChannel as K, type LocationAttribute as L, type MultiselectAttribute as M, type NumberAttribute as N, type ObjectAction as O, type PhoneAttribute as P, type ParticipantTemplate as Q, type RichtextAttribute as R, type SystemResource as S, type TextAttribute as T, type UserAttribute as U, type ViewLayout as V, type WorkflowTheme as W, type ConditionGroup as X, type ConditionRule as Y, type WorkflowNode as Z, type WorkflowDefinition as _, type SystemAction as a, toSimpleFilterState as a$, type BlockNoteContent as a0, type StatusGroup as a1, type AttributeGroup as a2, type BaseAttribute as a3, type NumberUnit as a4, type DateFormat as a5, type DateValue as a6, type Phone as a7, type Currency as a8, type Location as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type StorageProvider as aD, type FileVisibility as aE, type File as aF, type CreateFile as aG, type UpdateFile as aH, type TextFilterOperator as aI, type NumberFilterOperator as aJ, type CheckboxFilterOperator as aK, type DateFilterOperator as aL, type SelectFilterOperator as aM, type MultiselectFilterOperator as aN, type RelationFilterOperator as aO, type FilterOperator as aP, type RelativeDateValue as aQ, type CurrencyFilterValue as aR, type PhoneFilterValue as aS, type FilterValue as aT, type FilterRule as aU, type ExtendedFilterRule as aV, type FilterCombinator as aW, type FilterGroup as aX, type AdvancedFilterState as aY, isAdvancedFilterState as aZ, toAdvancedFilterState as a_, type LocationGranularity as aa, RELATION_TARGET_ANY as ab, type RelationAttribute as ac, isUniversalRelation as ad, type BlockNoteBlock as ae, type BlockNoteCustomInlineContent as af, type BlockNoteDefaultProps as ag, type BlockNoteInlineContent as ah, type BlockNoteLink as ai, type BlockNoteStyledText as aj, type BlockNoteStyles as ak, type BlockNoteTableCell as al, type BlockNoteTableCellProps as am, type BlockNoteTableContent as an, type PartialBlockNoteBlock as ao, type PartialBlockNoteContent as ap, type PartialBlockNoteInlineContent as aq, type PartialBlockNoteLink as ar, type PartialBlockNoteStyledText as as, type PartialBlockNoteTableCell as at, type PartialBlockNoteTableContent as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type TextAreaAttribute as b, type UserRole as b$, type SortDirection as b0, type QueryState as b1, OPERATORS_BY_TYPE as b2, type NoValueOperator as b3, NO_VALUE_OPERATORS as b4, isNoValueOperator as b5, type FlowSlot as b6, type FlowRowField as b7, type FlowPage as b8, type FlowRelation as b9, type ExtractRecordInput as bA, type ExtractRecordInputStrict as bB, type ExtractRecordUpdate as bC, type ExtractRecordUpdateStrict as bD, type ExtractAttributes as bE, RESERVED_ATTRIBUTE_NAMES as bF, SYSTEM_FIELD_NAMES as bG, type ReservedAttributeName as bH, type SystemFieldName as bI, type Timestamps as bJ, type ObjectAttribute as bK, type CompletionStatus as bL, type ObjectRecord as bM, type PermissionScope as bN, type Role as bO, type Permission as bP, type UserRoleAssignment as bQ, type EffectivePermissions as bR, type ObjectPermissions as bS, type SystemPermissions as bT, type CreateRoleInput as bU, type UpdateRoleInput as bV, type CreatePermissionInput as bW, type AssignRoleInput as bX, type PolicyContext as bY, type RecordPolicy as bZ, PolicyViolationError as b_, type FlowStatus as ba, type FlowDefinition as bb, isFlowDefinition as bc, isFlowPublished as bd, isSystemFlow as be, type GeocodingSuggestion as bf, type GeocodingAutocompleteParams as bg, type ReverseGeocodingParams as bh, type GeocodingParams as bi, type GeocodingAdapter as bj, NoopGeocodingAdapter as bk, type AttributeSchema as bl, type InferRecordFromSchema as bm, type InferRecordWithRequirements as bn, type TypedAttribute as bo, type AttributeMap as bp, type AddAttribute as bq, type InferRecord as br, type InferRecordInput as bs, type InferRecordUpdate as bt, type CustomAttributeValue as bu, type WithCustomAttributes as bv, type RecordMetadata as bw, type SystemFields as bx, type ExtractRecord as by, type ExtractRecordStrict as bz, type RichtextFeature as c, type WorkflowParticipation as c$, type UserStatus as c0, type UserProfile as c1, type CreateUserProfile as c2, type UpdateUserProfile as c3, type InviteUserInput as c4, type TabType as c5, type FormTab as c6, type CustomTab as c7, type ActivityTab as c8, type NotesTab as c9, neq as cA, and as cB, or as cC, inValues as cD, isEmpty as cE, isNotEmpty as cF, type WorkflowSlot as cG, type NodePosition as cH, type CanvasViewport as cI, type WorkflowLayout as cJ, type ParticipantAuthConfig as cK, type WorkflowStatus as cL, isWorkflowDefinition as cM, isWorkflowPublished as cN, isSystemWorkflow as cO, type WorkflowTransition as cP, type WorkflowError as cQ, type PendingAction as cR, type WorkflowInstance as cS, isInstanceTerminal as cT, isInstanceWaiting as cU, canResumeInstance as cV, createStartTransition as cW, type ParticipationStatus as cX, type SignedLinkAuth as cY, type PinCodeAuth as cZ, type ParticipationAuth as c_, type FlowsTab as ca, isFormTab as cb, isTableTab as cc, isDirectTableTab as cd, isInverseTableTab as ce, isCustomTab as cf, isActivityTab as cg, isNotesTab as ch, isFlowsTab as ci, type StartNode as cj, type FormNode as ck, type FormFieldRef as cl, type ConditionNode as cm, type EndNode as cn, type WorkflowNodeType as co, isStartNode as cp, isFormNode as cq, isConditionNode as cr, isEndNode as cs, isSimpleFormNode as ct, isAdvancedFormNode as cu, getNodeOutputs as cv, type ConditionOperator as cw, isConditionRule as cx, isConditionGroup as cy, eq as cz, type CurrencyAttribute as d, createCurrencyValidator as d$, isSignedLinkAuth as d0, isPinCodeAuth as d1, canParticipate as d2, canAuthenticate as d3, canExecuteNode as d4, type GeneratedDocument as d5, type WorkflowExecutionContext as d6, createEmptyContext as d7, getContextValue as d8, setContextValue as d9, textareaConfigSchema as dA, richtextConfigSchema as dB, numberConfigSchema as dC, checkboxConfigSchema as dD, dateConfigSchema as dE, phoneConfigSchema as dF, currencyConfigSchema as dG, statusConfigSchema as dH, locationConfigSchema as dI, selectConfigSchema as dJ, multiselectConfigSchema as dK, fileConfigSchema as dL, userConfigSchema as dM, relationConfigSchema as dN, ratingConfigSchema as dO, formulaConfigSchema as dP, rollupConfigSchema as dQ, attributeConfigSchemas as dR, getAttributeConfigSchema as dS, validateAttributeConfig as dT, parseAttributeConfig as dU, safeParseAttributeConfig as dV, createTextValidator as dW, createNumberValidator as dX, createCheckboxValidator as dY, createDateValidator as dZ, createPhoneValidator as d_, mergeFormToSlot as da, type WorkflowAccessMode as db, type ReadOnlyReason as dc, type FormFieldContext as dd, type FormFieldRow as de, type FormNodeInfo as df, type FormContextResponse as dg, type ThemeLogo as dh, type ThemeColors as di, type ThemeTypography as dj, DEFAULT_THEME as dk, mergeWithDefaults as dl, generateCssVariables as dm, type Uuid as dn, type TenantId as dp, type UserId as dq, asTenantId as dr, asUserId as ds, generateId as dt, generatePrefixedId as du, registry as dv, viewRegistry as dw, type ValidationMessages as dx, DEFAULT_VALIDATION_MESSAGES as dy, textConfigSchema as dz, type Option as e, evaluateCondition as e$, createStatusValidator as e0, createSelectValidator as e1, createMultiselectValidator as e2, createLocationValidator as e3, createFileValidator as e4, createUserValidator as e5, createSingleRelationValidator as e6, createMultiRelationValidator as e7, createRelationValidator as e8, createRatingValidator as e9, initializePinCodeService as eA, type PinCodeGenerationOptions as eB, type PinCodeVerificationResult as eC, type CacheAdapter as eD, type CacheOptions as eE, cacheKeys as eF, cacheTtl as eG, NoopCacheAdapter as eH, type FetchResult as eI, type FormattedRecord as eJ, type GroupedFetchResult as eK, type InsertOptions as eL, type QueryBuilderState as eM, type RegistryMap as eN, type RegistryObjectNames as eO, type ShortcutOperator as eP, createDefaultState as eQ, formatRecord as eR, formatRecords as eS, QueryMultipleResultsError as eT, QueryNoResultError as eU, SHORTCUT_TO_FILTER_OPERATOR as eV, createQueryBuilder as eW, QueryBuilder as eX, type QueryBuilderOptions as eY, type EvaluationResult as eZ, type EvaluationTrace as e_, createFormulaValidator as ea, createRollupValidator as eb, createTextAreaValidator as ec, createRichtextValidator as ed, createAttributeValidator as ee, createFormAttributeValidator as ef, createObjectValidator as eg, type ValidationResult as eh, validateAttribute as ei, validateObject as ej, validateObjectOrThrow as ek, createDraftValidator as el, validateDraft as em, validateDraftOrThrow as en, getMissingRequiredAttributes as eo, isRecordComplete as ep, computeRecordStatus as eq, type DatabaseAdapter as er, ParticipationTokenService as es, getDefaultTokenService as et, initializeTokenService as eu, type ParticipationTokenPayload as ev, type TokenGenerationOptions as ew, type TokenVerificationResult as ex, PinCodeService as ey, getDefaultPinCodeService as ez, type StatusAttribute as f, NoopHookRegistry as f$, evaluate as f0, evaluateWithTrace as f1, TenantContextError as f2, getContext as f3, getTenantId as f4, getUserId as f5, hasContext as f6, runWithContext as f7, withTenantContext as f8, type TenantContext as f9, flattenRelationsForEval as fA, formatFormulaResult as fB, hasRelationReferences as fC, validateFormulaExpression as fD, type FormulaResult as fE, getPathDepth as fF, getRelationPath as fG, getTargetAttributeName as fH, InvalidPathError as fI, MaxDepthExceededError as fJ, parsePath as fK, pathHasManyCardinality as fL, validatePath as fM, type PathCardinality as fN, type PathSegment as fO, type PathSegmentType as fP, type SchemaResolver as fQ, resolveMultiplePaths as fR, resolveSingleValue as fS, traversePath as fT, type TraversalOptions as fU, type TraversalResult as fV, type AttributeChange as fW, type HookContext as fX, type HookDefinition as fY, type HookHandler as fZ, type HookType as f_, createDefaultExecutorRegistry as fa, getDefaultExecutorRegistry as fb, type ExecutorCompleteResult as fc, type ExecutorContext as fd, type ExecutorErrorResult as fe, type ExecutorResult as ff, type ExecutorSuccessResult as fg, type ExecutorWaitResult as fh, type NodeExecutor as fi, complete as fj, error as fk, ExecutorRegistry as fl, success as fm, wait as fn, ConditionExecutor as fo, EndExecutor as fp, FormExecutor as fq, StartExecutor as fr, evaluateFormula as fs, evaluateFormulaAttribute as ft, evaluateFormulaAttributeWithRelations as fu, evaluateFormulaWithRelations as fv, evaluateFormulaWithResult as fw, extractFormulaVariables as fx, extractRelationNames as fy, extractRelationReferences as fz, type SelectAttribute as g, type FieldReadOnlyResult as g$, type HookRegistry as g0, createMockAdapter as g1, defaultPolicyRegistry as g2, PolicyRegistry as g3, notesPolicy as g4, type ObjectsRepository as g5, type AttributesRepository as g6, type UserProfilesRepository as g7, type FilesRepository as g8, type ObjectRecordsRepository as g9, type RelationValidationError as gA, type RelationOption as gB, type RelationOptionsResponse as gC, type GetRelationOptionsParams as gD, type RelationServiceOptions as gE, RelationService as gF, type RollupSchedulerOptions as gG, RollupScheduler as gH, type RollupResult as gI, type RollupServiceOptions as gJ, RollupService as gK, type UserProfileServiceOptions as gL, UserProfileService as gM, type UserValidationResult as gN, type UserValidationError as gO, UserService as gP, type CreateViewInput as gQ, type UpdateViewInput as gR, ViewService as gS, type StartWorkflowInput as gT, type ResumeWorkflowInput as gU, type WorkflowInstanceServiceOptions as gV, WorkflowInstanceService as gW, type CreateParticipationInput as gX, type CreateParticipationResult as gY, type AuthenticationResult as gZ, WorkflowParticipationService as g_, type ViewsRepository as ga, type WorkflowsRepository as gb, type WorkflowInstancesRepository as gc, type WorkflowParticipationsRepository as gd, type AuditRepository as ge, type PermissionsRepository as gf, buildAuditChanges as gg, AuditService as gh, TenantAwareService as gi, TenantAwareRepository as gj, type FileServiceOptions as gk, FileService as gl, GeocodingService as gm, GlobalSearchService as gn, type CreateCustomObjectInput as go, type AddAttributeInput as gp, type UpdateObjectInput as gq, type ObjectSchemaServiceOptions as gr, ObjectSchemaService as gs, type PermissionServiceOptions as gt, PermissionService as gu, type RecordServiceOptions as gv, RecordService as gw, type ResolvedRelations as gx, RelationResolverService as gy, type RelationValidationResult as gz, type SingleRelationAttribute as h, WorkflowRelationService as h0, type CreateWorkflowInput as h1, type UpdateWorkflowInput as h2, WorkflowService as h3, type FileContent as h4, type StorageUploadInput as h5, type StorageUploadResult as h6, type SignedUrlOptions as h7, type StorageAdapter as h8, type UploadFileInput as h9, type SearchOptions as hA, type GlobalSearchOptions as hB, type GlobalSearchResultItem as hC, type FileListOptions as hD, type DBView as hE, type CreateDBView as hF, type UpdateDBView as hG, type UpsertDBView as hH, type DBWorkflow as hI, type CreateDBWorkflow as hJ, type UpdateDBWorkflow as hK, type DBWorkflowInstance as hL, type CreateDBWorkflowInstance as hM, type UpdateDBWorkflowInstance as hN, type DBWorkflowParticipation as hO, type CreateDBWorkflowParticipation as hP, type UpdateDBWorkflowParticipation as hQ, type OperationResult as hR, type ViewSyncResult as hS, type ViewSyncOptions as hT, syncNativeViews as hU, verifyNativeViewsSync as hV, getViewSyncPreview as hW, type SyncResult as ha, type SyncOptions as hb, syncNativeObjects as hc, verifyNativeObjectsSync as hd, getSyncPreview as he, type FullSyncResult as hf, type FullSyncOptions as hg, syncAll as hh, DEFAULT_LABEL_FALLBACK as hi, renderLabelExpression as hj, isLabelExpression as hk, extractAttributeNames as hl, enrichValuesWithSelectLabels as hm, extractRelationIds as hn, type RelationLabelResolver as ho, computeLabelWithRelations as hp, type DBObject as hq, type CreateDBObject as hr, type UpdateDBObject as hs, type UpsertDBObject as ht, type DBAttribute as hu, type CreateDBAttribute as hv, type UpdateDBAttribute as hw, type UpsertDBAttribute as hx, type CreateObjectRecord as hy, type ListOptions as hz, type MultiRelationAttribute as i, type RelationTarget as j, type RatingAttribute as k, type FormulaAttribute as l, type FormulaReturnType as m, type RollupAttribute as n, type RollupFunction as o, type AttributeType as p, type ObjectDefinition as q, type Field as r, type AttributeGroupField as s, type TableTab as t, type InverseTableTab as u, type ViewDefinition as v, type InstanceStatus as w, type Tab as x, type FilterState as y, type SortRule as z };
10629
+ export { type FlowRow as $, type Attribute as A, type DirectTableTab as B, type CheckboxAttribute as C, type DateAttribute as D, type WorkflowConfig as E, type FileAttribute as F, type Group as G, type SlotMode as H, type InferAttributeValue as I, type AuthMethod as J, type AuthChannel as K, type LocationAttribute as L, type MultiselectAttribute as M, type NumberAttribute as N, type ObjectAction as O, type PhoneAttribute as P, type ParticipantTemplate as Q, type RichtextAttribute as R, type SystemResource as S, type TextAttribute as T, type UserAttribute as U, type ViewLayout as V, type WorkflowTheme as W, type ConditionGroup as X, type ConditionRule as Y, type WorkflowNode as Z, type WorkflowDefinition as _, type SystemAction as a, toSimpleFilterState as a$, type BlockNoteContent as a0, type StatusGroup as a1, type AttributeGroup as a2, type BaseAttribute as a3, type NumberUnit as a4, type DateFormat as a5, type DateValue as a6, type Phone as a7, type Currency as a8, type Location as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type StorageProvider as aD, type FileVisibility as aE, type File as aF, type CreateFile as aG, type UpdateFile as aH, type TextFilterOperator as aI, type NumberFilterOperator as aJ, type CheckboxFilterOperator as aK, type DateFilterOperator as aL, type SelectFilterOperator as aM, type MultiselectFilterOperator as aN, type RelationFilterOperator as aO, type FilterOperator as aP, type RelativeDateValue as aQ, type CurrencyFilterValue as aR, type PhoneFilterValue as aS, type FilterValue as aT, type FilterRule as aU, type ExtendedFilterRule as aV, type FilterCombinator as aW, type FilterGroup as aX, type AdvancedFilterState as aY, isAdvancedFilterState as aZ, toAdvancedFilterState as a_, type LocationGranularity as aa, RELATION_TARGET_ANY as ab, type RelationAttribute as ac, isUniversalRelation as ad, type BlockNoteBlock as ae, type BlockNoteCustomInlineContent as af, type BlockNoteDefaultProps as ag, type BlockNoteInlineContent as ah, type BlockNoteLink as ai, type BlockNoteStyledText as aj, type BlockNoteStyles as ak, type BlockNoteTableCell as al, type BlockNoteTableCellProps as am, type BlockNoteTableContent as an, type PartialBlockNoteBlock as ao, type PartialBlockNoteContent as ap, type PartialBlockNoteInlineContent as aq, type PartialBlockNoteLink as ar, type PartialBlockNoteStyledText as as, type PartialBlockNoteTableCell as at, type PartialBlockNoteTableContent as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type TextAreaAttribute as b, type UserRole as b$, type SortDirection as b0, type QueryState as b1, OPERATORS_BY_TYPE as b2, type NoValueOperator as b3, NO_VALUE_OPERATORS as b4, isNoValueOperator as b5, type FlowSlot as b6, type FlowRowField as b7, type FlowPage as b8, type FlowRelation as b9, type ExtractRecordInput as bA, type ExtractRecordInputStrict as bB, type ExtractRecordUpdate as bC, type ExtractRecordUpdateStrict as bD, type ExtractAttributes as bE, RESERVED_ATTRIBUTE_NAMES as bF, SYSTEM_FIELD_NAMES as bG, type ReservedAttributeName as bH, type SystemFieldName as bI, type Timestamps as bJ, type ObjectAttribute as bK, type CompletionStatus as bL, type ObjectRecord as bM, type PermissionScope as bN, type Role as bO, type Permission as bP, type UserRoleAssignment as bQ, type EffectivePermissions as bR, type ObjectPermissions as bS, type SystemPermissions as bT, type CreateRoleInput as bU, type UpdateRoleInput as bV, type CreatePermissionInput as bW, type AssignRoleInput as bX, type PolicyContext as bY, type RecordPolicy as bZ, PolicyViolationError as b_, type FlowStatus as ba, type FlowDefinition as bb, isFlowDefinition as bc, isFlowPublished as bd, isSystemFlow as be, type GeocodingSuggestion as bf, type GeocodingAutocompleteParams as bg, type ReverseGeocodingParams as bh, type GeocodingParams as bi, type GeocodingAdapter as bj, NoopGeocodingAdapter as bk, type AttributeSchema as bl, type InferRecordFromSchema as bm, type InferRecordWithRequirements as bn, type TypedAttribute as bo, type AttributeMap as bp, type AddAttribute as bq, type InferRecord as br, type InferRecordInput as bs, type InferRecordUpdate as bt, type CustomAttributeValue as bu, type WithCustomAttributes as bv, type RecordMetadata as bw, type SystemFields as bx, type ExtractRecord as by, type ExtractRecordStrict as bz, type RichtextFeature as c, type WorkflowParticipation as c$, type UserStatus as c0, type UserProfile as c1, type CreateUserProfile as c2, type UpdateUserProfile as c3, type InviteUserInput as c4, type TabType as c5, type FormTab as c6, type CustomTab as c7, type ActivityTab as c8, type NotesTab as c9, neq as cA, and as cB, or as cC, inValues as cD, isEmpty as cE, isNotEmpty as cF, type WorkflowSlot as cG, type NodePosition as cH, type CanvasViewport as cI, type WorkflowLayout as cJ, type ParticipantAuthConfig as cK, type WorkflowStatus as cL, isWorkflowDefinition as cM, isWorkflowPublished as cN, isSystemWorkflow as cO, type WorkflowTransition as cP, type WorkflowError as cQ, type PendingAction as cR, type WorkflowInstance as cS, isInstanceTerminal as cT, isInstanceWaiting as cU, canResumeInstance as cV, createStartTransition as cW, type ParticipationStatus as cX, type SignedLinkAuth as cY, type PinCodeAuth as cZ, type ParticipationAuth as c_, type FlowsTab as ca, isFormTab as cb, isTableTab as cc, isDirectTableTab as cd, isInverseTableTab as ce, isCustomTab as cf, isActivityTab as cg, isNotesTab as ch, isFlowsTab as ci, type StartNode as cj, type FormNode as ck, type FormFieldRef as cl, type ConditionNode as cm, type EndNode as cn, type WorkflowNodeType as co, isStartNode as cp, isFormNode as cq, isConditionNode as cr, isEndNode as cs, isSimpleFormNode as ct, isAdvancedFormNode as cu, getNodeOutputs as cv, type ConditionOperator as cw, isConditionRule as cx, isConditionGroup as cy, eq as cz, type CurrencyAttribute as d, createCurrencyValidator as d$, isSignedLinkAuth as d0, isPinCodeAuth as d1, canParticipate as d2, canAuthenticate as d3, canExecuteNode as d4, type GeneratedDocument as d5, type WorkflowExecutionContext as d6, createEmptyContext as d7, getContextValue as d8, setContextValue as d9, textareaConfigSchema as dA, richtextConfigSchema as dB, numberConfigSchema as dC, checkboxConfigSchema as dD, dateConfigSchema as dE, phoneConfigSchema as dF, currencyConfigSchema as dG, statusConfigSchema as dH, locationConfigSchema as dI, selectConfigSchema as dJ, multiselectConfigSchema as dK, fileConfigSchema as dL, userConfigSchema as dM, relationConfigSchema as dN, ratingConfigSchema as dO, formulaConfigSchema as dP, rollupConfigSchema as dQ, attributeConfigSchemas as dR, getAttributeConfigSchema as dS, validateAttributeConfig as dT, parseAttributeConfig as dU, safeParseAttributeConfig as dV, createTextValidator as dW, createNumberValidator as dX, createCheckboxValidator as dY, createDateValidator as dZ, createPhoneValidator as d_, mergeFormToSlot as da, type WorkflowAccessMode as db, type ReadOnlyReason as dc, type FormFieldContext as dd, type FormFieldRow as de, type FormNodeInfo as df, type FormContextResponse as dg, type ThemeLogo as dh, type ThemeColors as di, type ThemeTypography as dj, DEFAULT_THEME as dk, mergeWithDefaults as dl, generateCssVariables as dm, type Uuid as dn, type TenantId as dp, type UserId as dq, asTenantId as dr, asUserId as ds, generateId as dt, generatePrefixedId as du, registry as dv, viewRegistry as dw, type ValidationMessages as dx, DEFAULT_VALIDATION_MESSAGES as dy, textConfigSchema as dz, type Option as e, evaluateCondition as e$, createStatusValidator as e0, createSelectValidator as e1, createMultiselectValidator as e2, createLocationValidator as e3, createFileValidator as e4, createUserValidator as e5, createSingleRelationValidator as e6, createMultiRelationValidator as e7, createRelationValidator as e8, createRatingValidator as e9, initializePinCodeService as eA, type PinCodeGenerationOptions as eB, type PinCodeVerificationResult as eC, type CacheAdapter as eD, type CacheOptions as eE, cacheKeys as eF, cacheTtl as eG, NoopCacheAdapter as eH, type FetchResult as eI, type FormattedRecord as eJ, type GroupedFetchResult as eK, type InsertOptions as eL, type QueryBuilderState as eM, type RegistryMap as eN, type RegistryObjectNames as eO, type ShortcutOperator as eP, createDefaultState as eQ, formatRecord as eR, formatRecords as eS, QueryMultipleResultsError as eT, QueryNoResultError as eU, SHORTCUT_TO_FILTER_OPERATOR as eV, createQueryBuilder as eW, QueryBuilder as eX, type QueryBuilderOptions as eY, type EvaluationResult as eZ, type EvaluationTrace as e_, createFormulaValidator as ea, createRollupValidator as eb, createTextAreaValidator as ec, createRichtextValidator as ed, createAttributeValidator as ee, createFormAttributeValidator as ef, createObjectValidator as eg, type ValidationResult as eh, validateAttribute as ei, validateObject as ej, validateObjectOrThrow as ek, createDraftValidator as el, validateDraft as em, validateDraftOrThrow as en, getMissingRequiredAttributes as eo, isRecordComplete as ep, computeRecordStatus as eq, type DatabaseAdapter as er, ParticipationTokenService as es, getDefaultTokenService as et, initializeTokenService as eu, type ParticipationTokenPayload as ev, type TokenGenerationOptions as ew, type TokenVerificationResult as ex, PinCodeService as ey, getDefaultPinCodeService as ez, type StatusAttribute as f, NoopHookRegistry as f$, evaluate as f0, evaluateWithTrace as f1, TenantContextError as f2, getContext as f3, getTenantId as f4, getUserId as f5, hasContext as f6, runWithContext as f7, withTenantContext as f8, type TenantContext as f9, flattenRelationsForEval as fA, formatFormulaResult as fB, hasRelationReferences as fC, validateFormulaExpression as fD, type FormulaResult as fE, getPathDepth as fF, getRelationPath as fG, getTargetAttributeName as fH, InvalidPathError as fI, MaxDepthExceededError as fJ, parsePath as fK, pathHasManyCardinality as fL, validatePath as fM, type PathCardinality as fN, type PathSegment as fO, type PathSegmentType as fP, type SchemaResolver as fQ, resolveMultiplePaths as fR, resolveSingleValue as fS, traversePath as fT, type TraversalOptions as fU, type TraversalResult as fV, type AttributeChange as fW, type HookContext as fX, type HookDefinition as fY, type HookHandler as fZ, type HookType as f_, createDefaultExecutorRegistry as fa, getDefaultExecutorRegistry as fb, type ExecutorCompleteResult as fc, type ExecutorContext as fd, type ExecutorErrorResult as fe, type ExecutorResult as ff, type ExecutorSuccessResult as fg, type ExecutorWaitResult as fh, type NodeExecutor as fi, complete as fj, error as fk, ExecutorRegistry as fl, success as fm, wait as fn, ConditionExecutor as fo, EndExecutor as fp, FormExecutor as fq, StartExecutor as fr, evaluateFormula as fs, evaluateFormulaAttribute as ft, evaluateFormulaAttributeWithRelations as fu, evaluateFormulaWithRelations as fv, evaluateFormulaWithResult as fw, extractFormulaVariables as fx, extractRelationNames as fy, extractRelationReferences as fz, type SelectAttribute as g, type FieldReadOnlyResult as g$, type HookRegistry as g0, createMockAdapter as g1, defaultPolicyRegistry as g2, PolicyRegistry as g3, notesPolicy as g4, type ObjectsRepository as g5, type AttributesRepository as g6, type UserProfilesRepository as g7, type FilesRepository as g8, type ObjectRecordsRepository as g9, type RelationValidationError as gA, type RelationOption as gB, type RelationOptionsResponse as gC, type GetRelationOptionsParams as gD, type RelationServiceOptions as gE, RelationService as gF, type RollupSchedulerOptions as gG, RollupScheduler as gH, type RollupResult as gI, type RollupServiceOptions as gJ, RollupService as gK, type UserProfileServiceOptions as gL, UserProfileService as gM, type UserValidationResult as gN, type UserValidationError as gO, UserService as gP, type CreateViewInput as gQ, type UpdateViewInput as gR, ViewService as gS, type StartWorkflowInput as gT, type ResumeWorkflowInput as gU, type WorkflowInstanceServiceOptions as gV, WorkflowInstanceService as gW, type CreateParticipationInput as gX, type CreateParticipationResult as gY, type AuthenticationResult as gZ, WorkflowParticipationService as g_, type ViewsRepository as ga, type WorkflowsRepository as gb, type WorkflowInstancesRepository as gc, type WorkflowParticipationsRepository as gd, type AuditRepository as ge, type PermissionsRepository as gf, buildAuditChanges as gg, AuditService as gh, TenantAwareService as gi, TenantAwareRepository as gj, type FileServiceOptions as gk, FileService as gl, GeocodingService as gm, GlobalSearchService as gn, type CreateCustomObjectInput as go, type AddAttributeInput as gp, type UpdateObjectInput as gq, type ObjectSchemaServiceOptions as gr, ObjectSchemaService as gs, type PermissionServiceOptions as gt, PermissionService as gu, type RecordServiceOptions as gv, RecordService as gw, type ResolvedRelations as gx, RelationResolverService as gy, type RelationValidationResult as gz, type SingleRelationAttribute as h, WorkflowRelationService as h0, type CreateWorkflowInput as h1, type UpdateWorkflowInput as h2, WorkflowService as h3, type FileContent as h4, type StorageUploadInput as h5, type StorageUploadResult as h6, type SignedUrlOptions as h7, type StorageAdapter as h8, type UploadFileInput as h9, type ListOptions as hA, type SearchOptions as hB, type GlobalSearchOptions as hC, type GlobalSearchResultItem as hD, type FileListOptions as hE, type DBView as hF, type CreateDBView as hG, type UpdateDBView as hH, type UpsertDBView as hI, type DBWorkflow as hJ, type CreateDBWorkflow as hK, type UpdateDBWorkflow as hL, type DBWorkflowInstance as hM, type CreateDBWorkflowInstance as hN, type UpdateDBWorkflowInstance as hO, type DBWorkflowParticipation as hP, type CreateDBWorkflowParticipation as hQ, type UpdateDBWorkflowParticipation as hR, type OperationResult as hS, type ViewSyncResult as hT, type ViewSyncOptions as hU, syncNativeViews as hV, verifyNativeViewsSync as hW, getViewSyncPreview as hX, type SyncResult as ha, type SyncOptions as hb, syncNativeObjects as hc, verifyNativeObjectsSync as hd, getSyncPreview as he, type FullSyncResult as hf, type FullSyncOptions as hg, syncAll as hh, DEFAULT_LABEL_FALLBACK as hi, renderLabelExpression as hj, isLabelExpression as hk, extractAttributeNames as hl, enrichValuesForDisplay as hm, enrichValuesWithSelectLabels as hn, extractRelationIds as ho, type RelationLabelResolver as hp, computeLabelWithRelations as hq, type DBObject as hr, type CreateDBObject as hs, type UpdateDBObject as ht, type UpsertDBObject as hu, type DBAttribute as hv, type CreateDBAttribute as hw, type UpdateDBAttribute as hx, type UpsertDBAttribute as hy, type CreateObjectRecord as hz, type MultiRelationAttribute as i, type RelationTarget as j, type RatingAttribute as k, type FormulaAttribute as l, type FormulaReturnType as m, type RollupAttribute as n, type RollupFunction as o, type AttributeType as p, type ObjectDefinition as q, type Field as r, type AttributeGroupField as s, type TableTab as t, type InverseTableTab as u, type ViewDefinition as v, type InstanceStatus as w, type Tab as x, type FilterState as y, type SortRule as z };
@@ -1,3 +1,3 @@
1
- export { gp as AddAttributeInput, fW as AttributeChange, g6 as AttributesRepository, ge as AuditRepository, gh as AuditService, gZ as AuthenticationResult, eD as CacheAdapter, eE as CacheOptions, bL as CompletionStatus, fo as ConditionExecutor, go as CreateCustomObjectInput, hv as CreateDBAttribute, hr as CreateDBObject, hF as CreateDBView, hJ as CreateDBWorkflow, hM as CreateDBWorkflowInstance, hP as CreateDBWorkflowParticipation, hy as CreateObjectRecord, gX as CreateParticipationInput, gY as CreateParticipationResult, gQ as CreateViewInput, h1 as CreateWorkflowInput, hu as DBAttribute, hq as DBObject, hE as DBView, hI as DBWorkflow, hL as DBWorkflowInstance, hO as DBWorkflowParticipation, hi as DEFAULT_LABEL_FALLBACK, er as DatabaseAdapter, fp as EndExecutor, eZ as EvaluationResult, e_ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, eI as FetchResult, g$ as FieldReadOnlyResult, h4 as FileContent, hD as FileListOptions, gl as FileService, gk as FileServiceOptions, g8 as FilesRepository, fq as FormExecutor, eJ as FormattedRecord, fE as FormulaResult, hg as FullSyncOptions, hf as FullSyncResult, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, gm as GeocodingService, bf as GeocodingSuggestion, gD as GetRelationOptionsParams, hB as GlobalSearchOptions, hC as GlobalSearchResultItem, gn as GlobalSearchService, eK as GroupedFetchResult, fX as HookContext, fY as HookDefinition, fZ as HookHandler, g0 as HookRegistry, f_ as HookType, eL as InsertOptions, fI as InvalidPathError, hz as ListOptions, fJ as MaxDepthExceededError, fi as NodeExecutor, eH as NoopCacheAdapter, bk as NoopGeocodingAdapter, f$ as NoopHookRegistry, g9 as ObjectRecordsRepository, gs as ObjectSchemaService, gr as ObjectSchemaServiceOptions, g5 as ObjectsRepository, hR as OperationResult, ev as ParticipationTokenPayload, es as ParticipationTokenService, fN as PathCardinality, fO as PathSegment, fP as PathSegmentType, gu as PermissionService, gt as PermissionServiceOptions, gf as PermissionsRepository, eB as PinCodeGenerationOptions, ey as PinCodeService, eC as PinCodeVerificationResult, bY as PolicyContext, g3 as PolicyRegistry, b_ as PolicyViolationError, eX as QueryBuilder, eY as QueryBuilderOptions, eM as QueryBuilderState, eT as QueryMultipleResultsError, eU as QueryNoResultError, bZ as RecordPolicy, gw as RecordService, gv as RecordServiceOptions, eN as RegistryMap, eO as RegistryObjectNames, ho as RelationLabelResolver, gB as RelationOption, gC as RelationOptionsResponse, gy as RelationResolverService, gF as RelationService, gE as RelationServiceOptions, gA as RelationValidationError, gz as RelationValidationResult, gx as ResolvedRelations, gU as ResumeWorkflowInput, bh as ReverseGeocodingParams, gI as RollupResult, gH as RollupScheduler, gG as RollupSchedulerOptions, gK as RollupService, gJ as RollupServiceOptions, eV as SHORTCUT_TO_FILTER_OPERATOR, fQ as SchemaResolver, hA as SearchOptions, eP as ShortcutOperator, h7 as SignedUrlOptions, fr as StartExecutor, gT as StartWorkflowInput, h8 as StorageAdapter, h5 as StorageUploadInput, h6 as StorageUploadResult, hb as SyncOptions, ha as SyncResult, gj as TenantAwareRepository, gi as TenantAwareService, f9 as TenantContext, f2 as TenantContextError, ew as TokenGenerationOptions, ex as TokenVerificationResult, fU as TraversalOptions, fV as TraversalResult, hw as UpdateDBAttribute, hs as UpdateDBObject, hG as UpdateDBView, hK as UpdateDBWorkflow, hN as UpdateDBWorkflowInstance, hQ as UpdateDBWorkflowParticipation, gq as UpdateObjectInput, gR as UpdateViewInput, h2 as UpdateWorkflowInput, h9 as UploadFileInput, hx as UpsertDBAttribute, ht as UpsertDBObject, hH as UpsertDBView, gM as UserProfileService, gL as UserProfileServiceOptions, g7 as UserProfilesRepository, gP as UserService, gO as UserValidationError, gN as UserValidationResult, gS as ViewService, hT as ViewSyncOptions, hS as ViewSyncResult, ga as ViewsRepository, gW as WorkflowInstanceService, gV as WorkflowInstanceServiceOptions, gc as WorkflowInstancesRepository, g_ as WorkflowParticipationService, gd as WorkflowParticipationsRepository, h0 as WorkflowRelationService, h3 as WorkflowService, gb as WorkflowsRepository, gg as buildAuditChanges, eF as cacheKeys, eG as cacheTtl, fj as complete, hp as computeLabelWithRelations, fa as createDefaultExecutorRegistry, eQ as createDefaultState, g1 as createMockAdapter, eW as createQueryBuilder, g2 as defaultPolicyRegistry, hm as enrichValuesWithSelectLabels, fk as error, f0 as evaluate, e$ as evaluateCondition, fs as evaluateFormula, ft as evaluateFormulaAttribute, fu as evaluateFormulaAttributeWithRelations, fv as evaluateFormulaWithRelations, fw as evaluateFormulaWithResult, f1 as evaluateWithTrace, hl as extractAttributeNames, fx as extractFormulaVariables, hn as extractRelationIds, fy as extractRelationNames, fz as extractRelationReferences, fA as flattenRelationsForEval, fB as formatFormulaResult, eR as formatRecord, eS as formatRecords, f3 as getContext, fb as getDefaultExecutorRegistry, ez as getDefaultPinCodeService, et as getDefaultTokenService, fF as getPathDepth, fG as getRelationPath, he as getSyncPreview, fH as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, hW as getViewSyncPreview, f6 as hasContext, fC as hasRelationReferences, eA as initializePinCodeService, eu as initializeTokenService, hk as isLabelExpression, g4 as notesPolicy, fK as parsePath, fL as pathHasManyCardinality, hj as renderLabelExpression, fR as resolveMultiplePaths, fS as resolveSingleValue, f7 as runWithContext, fm as success, hh as syncAll, hc as syncNativeObjects, hU as syncNativeViews, fT as traversePath, fD as validateFormulaExpression, fM as validatePath, hd as verifyNativeObjectsSync, hV as verifyNativeViewsSync, fn as wait, f8 as withTenantContext } from './runtime-B3RCubTj.mjs';
1
+ export { gp as AddAttributeInput, fW as AttributeChange, g6 as AttributesRepository, ge as AuditRepository, gh as AuditService, gZ as AuthenticationResult, eD as CacheAdapter, eE as CacheOptions, bL as CompletionStatus, fo as ConditionExecutor, go as CreateCustomObjectInput, hw as CreateDBAttribute, hs as CreateDBObject, hG as CreateDBView, hK as CreateDBWorkflow, hN as CreateDBWorkflowInstance, hQ as CreateDBWorkflowParticipation, hz as CreateObjectRecord, gX as CreateParticipationInput, gY as CreateParticipationResult, gQ as CreateViewInput, h1 as CreateWorkflowInput, hv as DBAttribute, hr as DBObject, hF as DBView, hJ as DBWorkflow, hM as DBWorkflowInstance, hP as DBWorkflowParticipation, hi as DEFAULT_LABEL_FALLBACK, er as DatabaseAdapter, fp as EndExecutor, eZ as EvaluationResult, e_ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, eI as FetchResult, g$ as FieldReadOnlyResult, h4 as FileContent, hE as FileListOptions, gl as FileService, gk as FileServiceOptions, g8 as FilesRepository, fq as FormExecutor, eJ as FormattedRecord, fE as FormulaResult, hg as FullSyncOptions, hf as FullSyncResult, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, gm as GeocodingService, bf as GeocodingSuggestion, gD as GetRelationOptionsParams, hC as GlobalSearchOptions, hD as GlobalSearchResultItem, gn as GlobalSearchService, eK as GroupedFetchResult, fX as HookContext, fY as HookDefinition, fZ as HookHandler, g0 as HookRegistry, f_ as HookType, eL as InsertOptions, fI as InvalidPathError, hA as ListOptions, fJ as MaxDepthExceededError, fi as NodeExecutor, eH as NoopCacheAdapter, bk as NoopGeocodingAdapter, f$ as NoopHookRegistry, g9 as ObjectRecordsRepository, gs as ObjectSchemaService, gr as ObjectSchemaServiceOptions, g5 as ObjectsRepository, hS as OperationResult, ev as ParticipationTokenPayload, es as ParticipationTokenService, fN as PathCardinality, fO as PathSegment, fP as PathSegmentType, gu as PermissionService, gt as PermissionServiceOptions, gf as PermissionsRepository, eB as PinCodeGenerationOptions, ey as PinCodeService, eC as PinCodeVerificationResult, bY as PolicyContext, g3 as PolicyRegistry, b_ as PolicyViolationError, eX as QueryBuilder, eY as QueryBuilderOptions, eM as QueryBuilderState, eT as QueryMultipleResultsError, eU as QueryNoResultError, bZ as RecordPolicy, gw as RecordService, gv as RecordServiceOptions, eN as RegistryMap, eO as RegistryObjectNames, hp as RelationLabelResolver, gB as RelationOption, gC as RelationOptionsResponse, gy as RelationResolverService, gF as RelationService, gE as RelationServiceOptions, gA as RelationValidationError, gz as RelationValidationResult, gx as ResolvedRelations, gU as ResumeWorkflowInput, bh as ReverseGeocodingParams, gI as RollupResult, gH as RollupScheduler, gG as RollupSchedulerOptions, gK as RollupService, gJ as RollupServiceOptions, eV as SHORTCUT_TO_FILTER_OPERATOR, fQ as SchemaResolver, hB as SearchOptions, eP as ShortcutOperator, h7 as SignedUrlOptions, fr as StartExecutor, gT as StartWorkflowInput, h8 as StorageAdapter, h5 as StorageUploadInput, h6 as StorageUploadResult, hb as SyncOptions, ha as SyncResult, gj as TenantAwareRepository, gi as TenantAwareService, f9 as TenantContext, f2 as TenantContextError, ew as TokenGenerationOptions, ex as TokenVerificationResult, fU as TraversalOptions, fV as TraversalResult, hx as UpdateDBAttribute, ht as UpdateDBObject, hH as UpdateDBView, hL as UpdateDBWorkflow, hO as UpdateDBWorkflowInstance, hR as UpdateDBWorkflowParticipation, gq as UpdateObjectInput, gR as UpdateViewInput, h2 as UpdateWorkflowInput, h9 as UploadFileInput, hy as UpsertDBAttribute, hu as UpsertDBObject, hI as UpsertDBView, gM as UserProfileService, gL as UserProfileServiceOptions, g7 as UserProfilesRepository, gP as UserService, gO as UserValidationError, gN as UserValidationResult, gS as ViewService, hU as ViewSyncOptions, hT as ViewSyncResult, ga as ViewsRepository, gW as WorkflowInstanceService, gV as WorkflowInstanceServiceOptions, gc as WorkflowInstancesRepository, g_ as WorkflowParticipationService, gd as WorkflowParticipationsRepository, h0 as WorkflowRelationService, h3 as WorkflowService, gb as WorkflowsRepository, gg as buildAuditChanges, eF as cacheKeys, eG as cacheTtl, fj as complete, hq as computeLabelWithRelations, fa as createDefaultExecutorRegistry, eQ as createDefaultState, g1 as createMockAdapter, eW as createQueryBuilder, g2 as defaultPolicyRegistry, hm as enrichValuesForDisplay, hn as enrichValuesWithSelectLabels, fk as error, f0 as evaluate, e$ as evaluateCondition, fs as evaluateFormula, ft as evaluateFormulaAttribute, fu as evaluateFormulaAttributeWithRelations, fv as evaluateFormulaWithRelations, fw as evaluateFormulaWithResult, f1 as evaluateWithTrace, hl as extractAttributeNames, fx as extractFormulaVariables, ho as extractRelationIds, fy as extractRelationNames, fz as extractRelationReferences, fA as flattenRelationsForEval, fB as formatFormulaResult, eR as formatRecord, eS as formatRecords, f3 as getContext, fb as getDefaultExecutorRegistry, ez as getDefaultPinCodeService, et as getDefaultTokenService, fF as getPathDepth, fG as getRelationPath, he as getSyncPreview, fH as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, hX as getViewSyncPreview, f6 as hasContext, fC as hasRelationReferences, eA as initializePinCodeService, eu as initializeTokenService, hk as isLabelExpression, g4 as notesPolicy, fK as parsePath, fL as pathHasManyCardinality, hj as renderLabelExpression, fR as resolveMultiplePaths, fS as resolveSingleValue, f7 as runWithContext, fm as success, hh as syncAll, hc as syncNativeObjects, hV as syncNativeViews, fT as traversePath, fD as validateFormulaExpression, fM as validatePath, hd as verifyNativeObjectsSync, hW as verifyNativeViewsSync, fn as wait, f8 as withTenantContext } from './runtime-Dl-kGqgX.mjs';
2
2
  import '@stndrds/constants';
3
3
  import 'zod';
package/dist/runtime.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { gp as AddAttributeInput, fW as AttributeChange, g6 as AttributesRepository, ge as AuditRepository, gh as AuditService, gZ as AuthenticationResult, eD as CacheAdapter, eE as CacheOptions, bL as CompletionStatus, fo as ConditionExecutor, go as CreateCustomObjectInput, hv as CreateDBAttribute, hr as CreateDBObject, hF as CreateDBView, hJ as CreateDBWorkflow, hM as CreateDBWorkflowInstance, hP as CreateDBWorkflowParticipation, hy as CreateObjectRecord, gX as CreateParticipationInput, gY as CreateParticipationResult, gQ as CreateViewInput, h1 as CreateWorkflowInput, hu as DBAttribute, hq as DBObject, hE as DBView, hI as DBWorkflow, hL as DBWorkflowInstance, hO as DBWorkflowParticipation, hi as DEFAULT_LABEL_FALLBACK, er as DatabaseAdapter, fp as EndExecutor, eZ as EvaluationResult, e_ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, eI as FetchResult, g$ as FieldReadOnlyResult, h4 as FileContent, hD as FileListOptions, gl as FileService, gk as FileServiceOptions, g8 as FilesRepository, fq as FormExecutor, eJ as FormattedRecord, fE as FormulaResult, hg as FullSyncOptions, hf as FullSyncResult, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, gm as GeocodingService, bf as GeocodingSuggestion, gD as GetRelationOptionsParams, hB as GlobalSearchOptions, hC as GlobalSearchResultItem, gn as GlobalSearchService, eK as GroupedFetchResult, fX as HookContext, fY as HookDefinition, fZ as HookHandler, g0 as HookRegistry, f_ as HookType, eL as InsertOptions, fI as InvalidPathError, hz as ListOptions, fJ as MaxDepthExceededError, fi as NodeExecutor, eH as NoopCacheAdapter, bk as NoopGeocodingAdapter, f$ as NoopHookRegistry, g9 as ObjectRecordsRepository, gs as ObjectSchemaService, gr as ObjectSchemaServiceOptions, g5 as ObjectsRepository, hR as OperationResult, ev as ParticipationTokenPayload, es as ParticipationTokenService, fN as PathCardinality, fO as PathSegment, fP as PathSegmentType, gu as PermissionService, gt as PermissionServiceOptions, gf as PermissionsRepository, eB as PinCodeGenerationOptions, ey as PinCodeService, eC as PinCodeVerificationResult, bY as PolicyContext, g3 as PolicyRegistry, b_ as PolicyViolationError, eX as QueryBuilder, eY as QueryBuilderOptions, eM as QueryBuilderState, eT as QueryMultipleResultsError, eU as QueryNoResultError, bZ as RecordPolicy, gw as RecordService, gv as RecordServiceOptions, eN as RegistryMap, eO as RegistryObjectNames, ho as RelationLabelResolver, gB as RelationOption, gC as RelationOptionsResponse, gy as RelationResolverService, gF as RelationService, gE as RelationServiceOptions, gA as RelationValidationError, gz as RelationValidationResult, gx as ResolvedRelations, gU as ResumeWorkflowInput, bh as ReverseGeocodingParams, gI as RollupResult, gH as RollupScheduler, gG as RollupSchedulerOptions, gK as RollupService, gJ as RollupServiceOptions, eV as SHORTCUT_TO_FILTER_OPERATOR, fQ as SchemaResolver, hA as SearchOptions, eP as ShortcutOperator, h7 as SignedUrlOptions, fr as StartExecutor, gT as StartWorkflowInput, h8 as StorageAdapter, h5 as StorageUploadInput, h6 as StorageUploadResult, hb as SyncOptions, ha as SyncResult, gj as TenantAwareRepository, gi as TenantAwareService, f9 as TenantContext, f2 as TenantContextError, ew as TokenGenerationOptions, ex as TokenVerificationResult, fU as TraversalOptions, fV as TraversalResult, hw as UpdateDBAttribute, hs as UpdateDBObject, hG as UpdateDBView, hK as UpdateDBWorkflow, hN as UpdateDBWorkflowInstance, hQ as UpdateDBWorkflowParticipation, gq as UpdateObjectInput, gR as UpdateViewInput, h2 as UpdateWorkflowInput, h9 as UploadFileInput, hx as UpsertDBAttribute, ht as UpsertDBObject, hH as UpsertDBView, gM as UserProfileService, gL as UserProfileServiceOptions, g7 as UserProfilesRepository, gP as UserService, gO as UserValidationError, gN as UserValidationResult, gS as ViewService, hT as ViewSyncOptions, hS as ViewSyncResult, ga as ViewsRepository, gW as WorkflowInstanceService, gV as WorkflowInstanceServiceOptions, gc as WorkflowInstancesRepository, g_ as WorkflowParticipationService, gd as WorkflowParticipationsRepository, h0 as WorkflowRelationService, h3 as WorkflowService, gb as WorkflowsRepository, gg as buildAuditChanges, eF as cacheKeys, eG as cacheTtl, fj as complete, hp as computeLabelWithRelations, fa as createDefaultExecutorRegistry, eQ as createDefaultState, g1 as createMockAdapter, eW as createQueryBuilder, g2 as defaultPolicyRegistry, hm as enrichValuesWithSelectLabels, fk as error, f0 as evaluate, e$ as evaluateCondition, fs as evaluateFormula, ft as evaluateFormulaAttribute, fu as evaluateFormulaAttributeWithRelations, fv as evaluateFormulaWithRelations, fw as evaluateFormulaWithResult, f1 as evaluateWithTrace, hl as extractAttributeNames, fx as extractFormulaVariables, hn as extractRelationIds, fy as extractRelationNames, fz as extractRelationReferences, fA as flattenRelationsForEval, fB as formatFormulaResult, eR as formatRecord, eS as formatRecords, f3 as getContext, fb as getDefaultExecutorRegistry, ez as getDefaultPinCodeService, et as getDefaultTokenService, fF as getPathDepth, fG as getRelationPath, he as getSyncPreview, fH as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, hW as getViewSyncPreview, f6 as hasContext, fC as hasRelationReferences, eA as initializePinCodeService, eu as initializeTokenService, hk as isLabelExpression, g4 as notesPolicy, fK as parsePath, fL as pathHasManyCardinality, hj as renderLabelExpression, fR as resolveMultiplePaths, fS as resolveSingleValue, f7 as runWithContext, fm as success, hh as syncAll, hc as syncNativeObjects, hU as syncNativeViews, fT as traversePath, fD as validateFormulaExpression, fM as validatePath, hd as verifyNativeObjectsSync, hV as verifyNativeViewsSync, fn as wait, f8 as withTenantContext } from './runtime-B3RCubTj.js';
1
+ export { gp as AddAttributeInput, fW as AttributeChange, g6 as AttributesRepository, ge as AuditRepository, gh as AuditService, gZ as AuthenticationResult, eD as CacheAdapter, eE as CacheOptions, bL as CompletionStatus, fo as ConditionExecutor, go as CreateCustomObjectInput, hw as CreateDBAttribute, hs as CreateDBObject, hG as CreateDBView, hK as CreateDBWorkflow, hN as CreateDBWorkflowInstance, hQ as CreateDBWorkflowParticipation, hz as CreateObjectRecord, gX as CreateParticipationInput, gY as CreateParticipationResult, gQ as CreateViewInput, h1 as CreateWorkflowInput, hv as DBAttribute, hr as DBObject, hF as DBView, hJ as DBWorkflow, hM as DBWorkflowInstance, hP as DBWorkflowParticipation, hi as DEFAULT_LABEL_FALLBACK, er as DatabaseAdapter, fp as EndExecutor, eZ as EvaluationResult, e_ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, eI as FetchResult, g$ as FieldReadOnlyResult, h4 as FileContent, hE as FileListOptions, gl as FileService, gk as FileServiceOptions, g8 as FilesRepository, fq as FormExecutor, eJ as FormattedRecord, fE as FormulaResult, hg as FullSyncOptions, hf as FullSyncResult, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, gm as GeocodingService, bf as GeocodingSuggestion, gD as GetRelationOptionsParams, hC as GlobalSearchOptions, hD as GlobalSearchResultItem, gn as GlobalSearchService, eK as GroupedFetchResult, fX as HookContext, fY as HookDefinition, fZ as HookHandler, g0 as HookRegistry, f_ as HookType, eL as InsertOptions, fI as InvalidPathError, hA as ListOptions, fJ as MaxDepthExceededError, fi as NodeExecutor, eH as NoopCacheAdapter, bk as NoopGeocodingAdapter, f$ as NoopHookRegistry, g9 as ObjectRecordsRepository, gs as ObjectSchemaService, gr as ObjectSchemaServiceOptions, g5 as ObjectsRepository, hS as OperationResult, ev as ParticipationTokenPayload, es as ParticipationTokenService, fN as PathCardinality, fO as PathSegment, fP as PathSegmentType, gu as PermissionService, gt as PermissionServiceOptions, gf as PermissionsRepository, eB as PinCodeGenerationOptions, ey as PinCodeService, eC as PinCodeVerificationResult, bY as PolicyContext, g3 as PolicyRegistry, b_ as PolicyViolationError, eX as QueryBuilder, eY as QueryBuilderOptions, eM as QueryBuilderState, eT as QueryMultipleResultsError, eU as QueryNoResultError, bZ as RecordPolicy, gw as RecordService, gv as RecordServiceOptions, eN as RegistryMap, eO as RegistryObjectNames, hp as RelationLabelResolver, gB as RelationOption, gC as RelationOptionsResponse, gy as RelationResolverService, gF as RelationService, gE as RelationServiceOptions, gA as RelationValidationError, gz as RelationValidationResult, gx as ResolvedRelations, gU as ResumeWorkflowInput, bh as ReverseGeocodingParams, gI as RollupResult, gH as RollupScheduler, gG as RollupSchedulerOptions, gK as RollupService, gJ as RollupServiceOptions, eV as SHORTCUT_TO_FILTER_OPERATOR, fQ as SchemaResolver, hB as SearchOptions, eP as ShortcutOperator, h7 as SignedUrlOptions, fr as StartExecutor, gT as StartWorkflowInput, h8 as StorageAdapter, h5 as StorageUploadInput, h6 as StorageUploadResult, hb as SyncOptions, ha as SyncResult, gj as TenantAwareRepository, gi as TenantAwareService, f9 as TenantContext, f2 as TenantContextError, ew as TokenGenerationOptions, ex as TokenVerificationResult, fU as TraversalOptions, fV as TraversalResult, hx as UpdateDBAttribute, ht as UpdateDBObject, hH as UpdateDBView, hL as UpdateDBWorkflow, hO as UpdateDBWorkflowInstance, hR as UpdateDBWorkflowParticipation, gq as UpdateObjectInput, gR as UpdateViewInput, h2 as UpdateWorkflowInput, h9 as UploadFileInput, hy as UpsertDBAttribute, hu as UpsertDBObject, hI as UpsertDBView, gM as UserProfileService, gL as UserProfileServiceOptions, g7 as UserProfilesRepository, gP as UserService, gO as UserValidationError, gN as UserValidationResult, gS as ViewService, hU as ViewSyncOptions, hT as ViewSyncResult, ga as ViewsRepository, gW as WorkflowInstanceService, gV as WorkflowInstanceServiceOptions, gc as WorkflowInstancesRepository, g_ as WorkflowParticipationService, gd as WorkflowParticipationsRepository, h0 as WorkflowRelationService, h3 as WorkflowService, gb as WorkflowsRepository, gg as buildAuditChanges, eF as cacheKeys, eG as cacheTtl, fj as complete, hq as computeLabelWithRelations, fa as createDefaultExecutorRegistry, eQ as createDefaultState, g1 as createMockAdapter, eW as createQueryBuilder, g2 as defaultPolicyRegistry, hm as enrichValuesForDisplay, hn as enrichValuesWithSelectLabels, fk as error, f0 as evaluate, e$ as evaluateCondition, fs as evaluateFormula, ft as evaluateFormulaAttribute, fu as evaluateFormulaAttributeWithRelations, fv as evaluateFormulaWithRelations, fw as evaluateFormulaWithResult, f1 as evaluateWithTrace, hl as extractAttributeNames, fx as extractFormulaVariables, ho as extractRelationIds, fy as extractRelationNames, fz as extractRelationReferences, fA as flattenRelationsForEval, fB as formatFormulaResult, eR as formatRecord, eS as formatRecords, f3 as getContext, fb as getDefaultExecutorRegistry, ez as getDefaultPinCodeService, et as getDefaultTokenService, fF as getPathDepth, fG as getRelationPath, he as getSyncPreview, fH as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, hX as getViewSyncPreview, f6 as hasContext, fC as hasRelationReferences, eA as initializePinCodeService, eu as initializeTokenService, hk as isLabelExpression, g4 as notesPolicy, fK as parsePath, fL as pathHasManyCardinality, hj as renderLabelExpression, fR as resolveMultiplePaths, fS as resolveSingleValue, f7 as runWithContext, fm as success, hh as syncAll, hc as syncNativeObjects, hV as syncNativeViews, fT as traversePath, fD as validateFormulaExpression, fM as validatePath, hd as verifyNativeObjectsSync, hW as verifyNativeViewsSync, fn as wait, f8 as withTenantContext } from './runtime-Dl-kGqgX.js';
2
2
  import '@stndrds/constants';
3
3
  import 'zod';
package/dist/runtime.js CHANGED
@@ -102,7 +102,8 @@
102
102
 
103
103
 
104
104
 
105
- var _chunkOGBGOFRXjs = require('./chunk-OGBGOFRX.js');
105
+
106
+ var _chunkUDJDDKGYjs = require('./chunk-UDJDDKGY.js');
106
107
  require('./chunk-3RG5ZIWI.js');
107
108
 
108
109
 
@@ -208,4 +209,5 @@ require('./chunk-3RG5ZIWI.js');
208
209
 
209
210
 
210
211
 
211
- exports.AuditService = _chunkOGBGOFRXjs.AuditService; exports.ConditionExecutor = _chunkOGBGOFRXjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkOGBGOFRXjs.DEFAULT_LABEL_FALLBACK; exports.EndExecutor = _chunkOGBGOFRXjs.EndExecutor; exports.ExecutorRegistry = _chunkOGBGOFRXjs.ExecutorRegistry; exports.FileService = _chunkOGBGOFRXjs.FileService; exports.FormExecutor = _chunkOGBGOFRXjs.FormExecutor; exports.GeocodingService = _chunkOGBGOFRXjs.GeocodingService; exports.GlobalSearchService = _chunkOGBGOFRXjs.GlobalSearchService; exports.InvalidPathError = _chunkOGBGOFRXjs.InvalidPathError; exports.MaxDepthExceededError = _chunkOGBGOFRXjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkOGBGOFRXjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkOGBGOFRXjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkOGBGOFRXjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkOGBGOFRXjs.ObjectSchemaService; exports.ParticipationTokenService = _chunkOGBGOFRXjs.ParticipationTokenService; exports.PermissionService = _chunkOGBGOFRXjs.PermissionService; exports.PinCodeService = _chunkOGBGOFRXjs.PinCodeService; exports.PolicyRegistry = _chunkOGBGOFRXjs.PolicyRegistry; exports.PolicyViolationError = _chunkOGBGOFRXjs.PolicyViolationError; exports.QueryBuilder = _chunkOGBGOFRXjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkOGBGOFRXjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkOGBGOFRXjs.QueryNoResultError; exports.RecordService = _chunkOGBGOFRXjs.RecordService; exports.RelationResolverService = _chunkOGBGOFRXjs.RelationResolverService; exports.RelationService = _chunkOGBGOFRXjs.RelationService; exports.RollupScheduler = _chunkOGBGOFRXjs.RollupScheduler; exports.RollupService = _chunkOGBGOFRXjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkOGBGOFRXjs.SHORTCUT_TO_FILTER_OPERATOR; exports.StartExecutor = _chunkOGBGOFRXjs.StartExecutor; exports.TenantAwareRepository = _chunkOGBGOFRXjs.TenantAwareRepository; exports.TenantAwareService = _chunkOGBGOFRXjs.TenantAwareService; exports.TenantContextError = _chunkOGBGOFRXjs.TenantContextError; exports.UserProfileService = _chunkOGBGOFRXjs.UserProfileService; exports.UserService = _chunkOGBGOFRXjs.UserService; exports.ViewService = _chunkOGBGOFRXjs.ViewService; exports.WorkflowInstanceService = _chunkOGBGOFRXjs.WorkflowInstanceService; exports.WorkflowParticipationService = _chunkOGBGOFRXjs.WorkflowParticipationService; exports.WorkflowRelationService = _chunkOGBGOFRXjs.WorkflowRelationService; exports.WorkflowService = _chunkOGBGOFRXjs.WorkflowService; exports.buildAuditChanges = _chunkOGBGOFRXjs.buildAuditChanges; exports.cacheKeys = _chunkOGBGOFRXjs.cacheKeys; exports.cacheTtl = _chunkOGBGOFRXjs.cacheTtl; exports.complete = _chunkOGBGOFRXjs.complete; exports.computeLabelWithRelations = _chunkOGBGOFRXjs.computeLabelWithRelations; exports.createDefaultExecutorRegistry = _chunkOGBGOFRXjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkOGBGOFRXjs.createDefaultState; exports.createMockAdapter = _chunkOGBGOFRXjs.createMockAdapter; exports.createQueryBuilder = _chunkOGBGOFRXjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkOGBGOFRXjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunkOGBGOFRXjs.enrichValuesWithSelectLabels; exports.error = _chunkOGBGOFRXjs.error; exports.evaluate = _chunkOGBGOFRXjs.evaluate; exports.evaluateCondition = _chunkOGBGOFRXjs.evaluateCondition; exports.evaluateFormula = _chunkOGBGOFRXjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkOGBGOFRXjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkOGBGOFRXjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkOGBGOFRXjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkOGBGOFRXjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkOGBGOFRXjs.evaluateWithTrace; exports.extractAttributeNames = _chunkOGBGOFRXjs.extractAttributeNames; exports.extractFormulaVariables = _chunkOGBGOFRXjs.extractFormulaVariables; exports.extractRelationIds = _chunkOGBGOFRXjs.extractRelationIds; exports.extractRelationNames = _chunkOGBGOFRXjs.extractRelationNames; exports.extractRelationReferences = _chunkOGBGOFRXjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkOGBGOFRXjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkOGBGOFRXjs.formatFormulaResult; exports.formatRecord = _chunkOGBGOFRXjs.formatRecord; exports.formatRecords = _chunkOGBGOFRXjs.formatRecords; exports.getContext = _chunkOGBGOFRXjs.getContext; exports.getDefaultExecutorRegistry = _chunkOGBGOFRXjs.getDefaultExecutorRegistry; exports.getDefaultPinCodeService = _chunkOGBGOFRXjs.getDefaultPinCodeService; exports.getDefaultTokenService = _chunkOGBGOFRXjs.getDefaultTokenService; exports.getPathDepth = _chunkOGBGOFRXjs.getPathDepth; exports.getRelationPath = _chunkOGBGOFRXjs.getRelationPath; exports.getSyncPreview = _chunkOGBGOFRXjs.getSyncPreview; exports.getTargetAttributeName = _chunkOGBGOFRXjs.getTargetAttributeName; exports.getTenantId = _chunkOGBGOFRXjs.getTenantId; exports.getUserId = _chunkOGBGOFRXjs.getUserId; exports.getViewSyncPreview = _chunkOGBGOFRXjs.getViewSyncPreview; exports.hasContext = _chunkOGBGOFRXjs.hasContext; exports.hasRelationReferences = _chunkOGBGOFRXjs.hasRelationReferences; exports.initializePinCodeService = _chunkOGBGOFRXjs.initializePinCodeService; exports.initializeTokenService = _chunkOGBGOFRXjs.initializeTokenService; exports.isLabelExpression = _chunkOGBGOFRXjs.isLabelExpression; exports.notesPolicy = _chunkOGBGOFRXjs.notesPolicy; exports.parsePath = _chunkOGBGOFRXjs.parsePath; exports.pathHasManyCardinality = _chunkOGBGOFRXjs.pathHasManyCardinality; exports.renderLabelExpression = _chunkOGBGOFRXjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkOGBGOFRXjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkOGBGOFRXjs.resolveSingleValue; exports.runWithContext = _chunkOGBGOFRXjs.runWithContext; exports.success = _chunkOGBGOFRXjs.success; exports.syncAll = _chunkOGBGOFRXjs.syncAll; exports.syncNativeObjects = _chunkOGBGOFRXjs.syncNativeObjects; exports.syncNativeViews = _chunkOGBGOFRXjs.syncNativeViews; exports.traversePath = _chunkOGBGOFRXjs.traversePath; exports.validateFormulaExpression = _chunkOGBGOFRXjs.validateFormulaExpression; exports.validatePath = _chunkOGBGOFRXjs.validatePath; exports.verifyNativeObjectsSync = _chunkOGBGOFRXjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkOGBGOFRXjs.verifyNativeViewsSync; exports.wait = _chunkOGBGOFRXjs.wait; exports.withTenantContext = _chunkOGBGOFRXjs.withTenantContext;
212
+
213
+ exports.AuditService = _chunkUDJDDKGYjs.AuditService; exports.ConditionExecutor = _chunkUDJDDKGYjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkUDJDDKGYjs.DEFAULT_LABEL_FALLBACK; exports.EndExecutor = _chunkUDJDDKGYjs.EndExecutor; exports.ExecutorRegistry = _chunkUDJDDKGYjs.ExecutorRegistry; exports.FileService = _chunkUDJDDKGYjs.FileService; exports.FormExecutor = _chunkUDJDDKGYjs.FormExecutor; exports.GeocodingService = _chunkUDJDDKGYjs.GeocodingService; exports.GlobalSearchService = _chunkUDJDDKGYjs.GlobalSearchService; exports.InvalidPathError = _chunkUDJDDKGYjs.InvalidPathError; exports.MaxDepthExceededError = _chunkUDJDDKGYjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkUDJDDKGYjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkUDJDDKGYjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkUDJDDKGYjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkUDJDDKGYjs.ObjectSchemaService; exports.ParticipationTokenService = _chunkUDJDDKGYjs.ParticipationTokenService; exports.PermissionService = _chunkUDJDDKGYjs.PermissionService; exports.PinCodeService = _chunkUDJDDKGYjs.PinCodeService; exports.PolicyRegistry = _chunkUDJDDKGYjs.PolicyRegistry; exports.PolicyViolationError = _chunkUDJDDKGYjs.PolicyViolationError; exports.QueryBuilder = _chunkUDJDDKGYjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkUDJDDKGYjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkUDJDDKGYjs.QueryNoResultError; exports.RecordService = _chunkUDJDDKGYjs.RecordService; exports.RelationResolverService = _chunkUDJDDKGYjs.RelationResolverService; exports.RelationService = _chunkUDJDDKGYjs.RelationService; exports.RollupScheduler = _chunkUDJDDKGYjs.RollupScheduler; exports.RollupService = _chunkUDJDDKGYjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkUDJDDKGYjs.SHORTCUT_TO_FILTER_OPERATOR; exports.StartExecutor = _chunkUDJDDKGYjs.StartExecutor; exports.TenantAwareRepository = _chunkUDJDDKGYjs.TenantAwareRepository; exports.TenantAwareService = _chunkUDJDDKGYjs.TenantAwareService; exports.TenantContextError = _chunkUDJDDKGYjs.TenantContextError; exports.UserProfileService = _chunkUDJDDKGYjs.UserProfileService; exports.UserService = _chunkUDJDDKGYjs.UserService; exports.ViewService = _chunkUDJDDKGYjs.ViewService; exports.WorkflowInstanceService = _chunkUDJDDKGYjs.WorkflowInstanceService; exports.WorkflowParticipationService = _chunkUDJDDKGYjs.WorkflowParticipationService; exports.WorkflowRelationService = _chunkUDJDDKGYjs.WorkflowRelationService; exports.WorkflowService = _chunkUDJDDKGYjs.WorkflowService; exports.buildAuditChanges = _chunkUDJDDKGYjs.buildAuditChanges; exports.cacheKeys = _chunkUDJDDKGYjs.cacheKeys; exports.cacheTtl = _chunkUDJDDKGYjs.cacheTtl; exports.complete = _chunkUDJDDKGYjs.complete; exports.computeLabelWithRelations = _chunkUDJDDKGYjs.computeLabelWithRelations; exports.createDefaultExecutorRegistry = _chunkUDJDDKGYjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkUDJDDKGYjs.createDefaultState; exports.createMockAdapter = _chunkUDJDDKGYjs.createMockAdapter; exports.createQueryBuilder = _chunkUDJDDKGYjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkUDJDDKGYjs.defaultPolicyRegistry; exports.enrichValuesForDisplay = _chunkUDJDDKGYjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkUDJDDKGYjs.enrichValuesWithSelectLabels; exports.error = _chunkUDJDDKGYjs.error; exports.evaluate = _chunkUDJDDKGYjs.evaluate; exports.evaluateCondition = _chunkUDJDDKGYjs.evaluateCondition; exports.evaluateFormula = _chunkUDJDDKGYjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkUDJDDKGYjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkUDJDDKGYjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkUDJDDKGYjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkUDJDDKGYjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkUDJDDKGYjs.evaluateWithTrace; exports.extractAttributeNames = _chunkUDJDDKGYjs.extractAttributeNames; exports.extractFormulaVariables = _chunkUDJDDKGYjs.extractFormulaVariables; exports.extractRelationIds = _chunkUDJDDKGYjs.extractRelationIds; exports.extractRelationNames = _chunkUDJDDKGYjs.extractRelationNames; exports.extractRelationReferences = _chunkUDJDDKGYjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkUDJDDKGYjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkUDJDDKGYjs.formatFormulaResult; exports.formatRecord = _chunkUDJDDKGYjs.formatRecord; exports.formatRecords = _chunkUDJDDKGYjs.formatRecords; exports.getContext = _chunkUDJDDKGYjs.getContext; exports.getDefaultExecutorRegistry = _chunkUDJDDKGYjs.getDefaultExecutorRegistry; exports.getDefaultPinCodeService = _chunkUDJDDKGYjs.getDefaultPinCodeService; exports.getDefaultTokenService = _chunkUDJDDKGYjs.getDefaultTokenService; exports.getPathDepth = _chunkUDJDDKGYjs.getPathDepth; exports.getRelationPath = _chunkUDJDDKGYjs.getRelationPath; exports.getSyncPreview = _chunkUDJDDKGYjs.getSyncPreview; exports.getTargetAttributeName = _chunkUDJDDKGYjs.getTargetAttributeName; exports.getTenantId = _chunkUDJDDKGYjs.getTenantId; exports.getUserId = _chunkUDJDDKGYjs.getUserId; exports.getViewSyncPreview = _chunkUDJDDKGYjs.getViewSyncPreview; exports.hasContext = _chunkUDJDDKGYjs.hasContext; exports.hasRelationReferences = _chunkUDJDDKGYjs.hasRelationReferences; exports.initializePinCodeService = _chunkUDJDDKGYjs.initializePinCodeService; exports.initializeTokenService = _chunkUDJDDKGYjs.initializeTokenService; exports.isLabelExpression = _chunkUDJDDKGYjs.isLabelExpression; exports.notesPolicy = _chunkUDJDDKGYjs.notesPolicy; exports.parsePath = _chunkUDJDDKGYjs.parsePath; exports.pathHasManyCardinality = _chunkUDJDDKGYjs.pathHasManyCardinality; exports.renderLabelExpression = _chunkUDJDDKGYjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkUDJDDKGYjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkUDJDDKGYjs.resolveSingleValue; exports.runWithContext = _chunkUDJDDKGYjs.runWithContext; exports.success = _chunkUDJDDKGYjs.success; exports.syncAll = _chunkUDJDDKGYjs.syncAll; exports.syncNativeObjects = _chunkUDJDDKGYjs.syncNativeObjects; exports.syncNativeViews = _chunkUDJDDKGYjs.syncNativeViews; exports.traversePath = _chunkUDJDDKGYjs.traversePath; exports.validateFormulaExpression = _chunkUDJDDKGYjs.validateFormulaExpression; exports.validatePath = _chunkUDJDDKGYjs.validatePath; exports.verifyNativeObjectsSync = _chunkUDJDDKGYjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkUDJDDKGYjs.verifyNativeViewsSync; exports.wait = _chunkUDJDDKGYjs.wait; exports.withTenantContext = _chunkUDJDDKGYjs.withTenantContext;
package/dist/runtime.mjs CHANGED
@@ -49,6 +49,7 @@ import {
49
49
  createMockAdapter,
50
50
  createQueryBuilder,
51
51
  defaultPolicyRegistry,
52
+ enrichValuesForDisplay,
52
53
  enrichValuesWithSelectLabels,
53
54
  error,
54
55
  evaluate,
@@ -102,7 +103,7 @@ import {
102
103
  verifyNativeViewsSync,
103
104
  wait,
104
105
  withTenantContext
105
- } from "./chunk-RYBKW22L.mjs";
106
+ } from "./chunk-2C24E4Q2.mjs";
106
107
  import "./chunk-Y6FXYEAI.mjs";
107
108
  export {
108
109
  AuditService,
@@ -155,6 +156,7 @@ export {
155
156
  createMockAdapter,
156
157
  createQueryBuilder,
157
158
  defaultPolicyRegistry,
159
+ enrichValuesForDisplay,
158
160
  enrichValuesWithSelectLabels,
159
161
  error,
160
162
  evaluate,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/schema",
3
- "version": "0.1.0-alpha.39",
3
+ "version": "0.1.0-alpha.40",
4
4
  "description": "Standard schema definitions and utilities",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -23,7 +23,7 @@
23
23
  "dependencies": {
24
24
  "expr-eval": "^2.0.2",
25
25
  "zod": "^4.2.1",
26
- "@stndrds/constants": "0.1.0-alpha.39"
26
+ "@stndrds/constants": "0.1.0-alpha.40"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^25.0.3",