@stndrds/schema 0.1.0-alpha.35 → 0.1.0-alpha.36

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.
@@ -8017,9 +8017,14 @@ var RollupService = class {
8017
8017
  return record;
8018
8018
  }
8019
8019
  const updates = {};
8020
- for (const attr of rollupAttrs) {
8021
- const result = await this.calculate(record.id, attr, schema);
8022
- updates[attr.name] = result.value;
8020
+ const results = await Promise.all(
8021
+ rollupAttrs.map(async (attr) => {
8022
+ const result = await this.calculate(record.id, attr, schema);
8023
+ return { name: attr.name, value: result.value };
8024
+ })
8025
+ );
8026
+ for (const { name, value } of results) {
8027
+ updates[name] = value;
8023
8028
  }
8024
8029
  return await this.adapter.objectRecords.update(record.id, updates);
8025
8030
  }
@@ -8910,24 +8915,28 @@ var RecordService = class extends TenantAwareService {
8910
8915
  const affectedParentIds = await this.rollupService.findAffectedParentRecords(record, schema);
8911
8916
  if (affectedParentIds.length > 0) {
8912
8917
  const parentRecords = await this.adapter.objectRecords.findByIds(affectedParentIds);
8913
- for (const parentRecord of parentRecords) {
8914
- const parentSchema = await this.schemaService.getObjectSchema(parentRecord.objectId);
8915
- const rollupAttrs = parentSchema.attributes.filter(
8916
- (a) => a.type === "rollup"
8917
- );
8918
- if (rollupAttrs.length > 0) {
8919
- await this.rollupService.recalculateAndUpdate(parentRecord, parentSchema);
8920
- }
8921
- }
8918
+ await Promise.all(
8919
+ parentRecords.map(async (parentRecord) => {
8920
+ const parentSchema = await this.schemaService.getObjectSchema(parentRecord.objectId);
8921
+ const rollupAttrs = parentSchema.attributes.filter(
8922
+ (a) => a.type === "rollup"
8923
+ );
8924
+ if (rollupAttrs.length > 0) {
8925
+ await this.rollupService.recalculateAndUpdate(parentRecord, parentSchema);
8926
+ }
8927
+ })
8928
+ );
8922
8929
  }
8923
8930
  const affectedForwardRecords = await this.rollupService.findRecordsWithForwardRollup(
8924
8931
  record,
8925
8932
  schema
8926
8933
  );
8927
- for (const forwardRecord of affectedForwardRecords) {
8928
- const forwardSchema = await this.schemaService.getObjectSchema(forwardRecord.objectId);
8929
- await this.rollupService.recalculateAndUpdate(forwardRecord, forwardSchema);
8930
- }
8934
+ await Promise.all(
8935
+ affectedForwardRecords.map(async (forwardRecord) => {
8936
+ const forwardSchema = await this.schemaService.getObjectSchema(forwardRecord.objectId);
8937
+ await this.rollupService.recalculateAndUpdate(forwardRecord, forwardSchema);
8938
+ })
8939
+ );
8931
8940
  }
8932
8941
  /**
8933
8942
  * Permanently delete a record (hard delete)
@@ -8017,9 +8017,14 @@ var RollupService = class {
8017
8017
  return record;
8018
8018
  }
8019
8019
  const updates = {};
8020
- for (const attr of rollupAttrs) {
8021
- const result = await this.calculate(record.id, attr, schema);
8022
- updates[attr.name] = result.value;
8020
+ const results = await Promise.all(
8021
+ rollupAttrs.map(async (attr) => {
8022
+ const result = await this.calculate(record.id, attr, schema);
8023
+ return { name: attr.name, value: result.value };
8024
+ })
8025
+ );
8026
+ for (const { name, value } of results) {
8027
+ updates[name] = value;
8023
8028
  }
8024
8029
  return await this.adapter.objectRecords.update(record.id, updates);
8025
8030
  }
@@ -8910,24 +8915,28 @@ var RecordService = class extends TenantAwareService {
8910
8915
  const affectedParentIds = await this.rollupService.findAffectedParentRecords(record, schema);
8911
8916
  if (affectedParentIds.length > 0) {
8912
8917
  const parentRecords = await this.adapter.objectRecords.findByIds(affectedParentIds);
8913
- for (const parentRecord of parentRecords) {
8914
- const parentSchema = await this.schemaService.getObjectSchema(parentRecord.objectId);
8915
- const rollupAttrs = parentSchema.attributes.filter(
8916
- (a) => a.type === "rollup"
8917
- );
8918
- if (rollupAttrs.length > 0) {
8919
- await this.rollupService.recalculateAndUpdate(parentRecord, parentSchema);
8920
- }
8921
- }
8918
+ await Promise.all(
8919
+ parentRecords.map(async (parentRecord) => {
8920
+ const parentSchema = await this.schemaService.getObjectSchema(parentRecord.objectId);
8921
+ const rollupAttrs = parentSchema.attributes.filter(
8922
+ (a) => a.type === "rollup"
8923
+ );
8924
+ if (rollupAttrs.length > 0) {
8925
+ await this.rollupService.recalculateAndUpdate(parentRecord, parentSchema);
8926
+ }
8927
+ })
8928
+ );
8922
8929
  }
8923
8930
  const affectedForwardRecords = await this.rollupService.findRecordsWithForwardRollup(
8924
8931
  record,
8925
8932
  schema
8926
8933
  );
8927
- for (const forwardRecord of affectedForwardRecords) {
8928
- const forwardSchema = await this.schemaService.getObjectSchema(forwardRecord.objectId);
8929
- await this.rollupService.recalculateAndUpdate(forwardRecord, forwardSchema);
8930
- }
8934
+ await Promise.all(
8935
+ affectedForwardRecords.map(async (forwardRecord) => {
8936
+ const forwardSchema = await this.schemaService.getObjectSchema(forwardRecord.objectId);
8937
+ await this.rollupService.recalculateAndUpdate(forwardRecord, forwardSchema);
8938
+ })
8939
+ );
8931
8940
  }
8932
8941
  /**
8933
8942
  * Permanently delete a record (hard delete)
package/dist/index.js CHANGED
@@ -203,7 +203,7 @@
203
203
 
204
204
 
205
205
 
206
- var _chunkUCUFSIOXjs = require('./chunk-UCUFSIOX.js');
206
+ var _chunkJHLPK3ROjs = require('./chunk-JHLPK3RO.js');
207
207
 
208
208
 
209
209
 
@@ -353,13 +353,13 @@ function isNotesTab(tab) {
353
353
  }
354
354
 
355
355
  // src/native/notes.ts
356
- var NOTES = _chunkUCUFSIOXjs.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(_chunkUCUFSIOXjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkUCUFSIOXjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
357
- _chunkUCUFSIOXjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
356
+ var NOTES = _chunkJHLPK3ROjs.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(_chunkJHLPK3ROjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkJHLPK3ROjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
357
+ _chunkJHLPK3ROjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
358
358
  { id: "private", label: "Private", value: "private", icon: "lock" },
359
359
  { id: "shared", label: "Shared", value: "shared", icon: "users" }
360
360
  ]).defaultValue("private").required()
361
- ).attribute(_chunkUCUFSIOXjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
362
- _chunkUCUFSIOXjs.registry.register(NOTES);
361
+ ).attribute(_chunkJHLPK3ROjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
362
+ _chunkJHLPK3ROjs.registry.register(NOTES);
363
363
 
364
364
  // src/views/registry.ts
365
365
  var ViewRegistry = class {
@@ -729,4 +729,4 @@ var viewRegistry = new ViewRegistry();
729
729
 
730
730
 
731
731
 
732
- exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkUCUFSIOXjs.ActivityTabConfig; exports.AttributeInUseError = _chunkUCUFSIOXjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkUCUFSIOXjs.AttributeNotFoundError; exports.AuditService = _chunkUCUFSIOXjs.AuditService; exports.CustomTabConfig = _chunkUCUFSIOXjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkUCUFSIOXjs.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_VALIDATION_MESSAGES = _chunkUCUFSIOXjs.DEFAULT_VALIDATION_MESSAGES; exports.DirectTableTabConfig = _chunkUCUFSIOXjs.DirectTableTabConfig; exports.DuplicateError = _chunkUCUFSIOXjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkUCUFSIOXjs.EMPTY_VALUE_PLACEHOLDER; exports.FileNotFoundError = _chunkUCUFSIOXjs.FileNotFoundError; exports.FileService = _chunkUCUFSIOXjs.FileService; exports.FlowBuilder = _chunkUCUFSIOXjs.FlowBuilder; exports.FlowPageBuilder = _chunkUCUFSIOXjs.FlowPageBuilder; exports.FlowRowBuilder = _chunkUCUFSIOXjs.FlowRowBuilder; exports.FlowService = _chunkUCUFSIOXjs.FlowService; exports.ForbiddenError = _chunkUCUFSIOXjs.ForbiddenError; exports.GeocodingService = _chunkUCUFSIOXjs.GeocodingService; exports.GlobalSearchService = _chunkUCUFSIOXjs.GlobalSearchService; exports.GroupBuilder = _chunkUCUFSIOXjs.GroupBuilder; exports.InvalidPathError = _chunkUCUFSIOXjs.InvalidPathError; exports.InverseTableTabConfig = _chunkUCUFSIOXjs.InverseTableTabConfig; exports.MaxDepthExceededError = _chunkUCUFSIOXjs.MaxDepthExceededError; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NoopGeocodingAdapter = _chunkUCUFSIOXjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkUCUFSIOXjs.NoopHookRegistry; exports.NotFoundError = _chunkUCUFSIOXjs.NotFoundError; exports.NotSystemObjectError = _chunkUCUFSIOXjs.NotSystemObjectError; exports.NotesTabConfig = _chunkUCUFSIOXjs.NotesTabConfig; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkUCUFSIOXjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkUCUFSIOXjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkUCUFSIOXjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkUCUFSIOXjs.ObjectSchemaService; exports.PermissionService = _chunkUCUFSIOXjs.PermissionService; exports.PolicyRegistry = _chunkUCUFSIOXjs.PolicyRegistry; exports.PolicyViolationError = _chunkUCUFSIOXjs.PolicyViolationError; exports.ProtectedResourceError = _chunkUCUFSIOXjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkUCUFSIOXjs.ProtectedRoleError; exports.QueryBuilder = _chunkUCUFSIOXjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkUCUFSIOXjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkUCUFSIOXjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkUCUFSIOXjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkUCUFSIOXjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkUCUFSIOXjs.RecordNotFoundError; exports.RecordReferencedError = _chunkUCUFSIOXjs.RecordReferencedError; exports.RecordService = _chunkUCUFSIOXjs.RecordService; exports.RelationResolverService = _chunkUCUFSIOXjs.RelationResolverService; exports.RelationService = _chunkUCUFSIOXjs.RelationService; exports.RoleNotFoundError = _chunkUCUFSIOXjs.RoleNotFoundError; exports.RollupScheduler = _chunkUCUFSIOXjs.RollupScheduler; exports.RollupService = _chunkUCUFSIOXjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkUCUFSIOXjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SYSTEM_ATTRIBUTES = _chunkUCUFSIOXjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkUCUFSIOXjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SchemaError = _chunkUCUFSIOXjs.SchemaError; exports.SchemaErrorCode = _chunkUCUFSIOXjs.SchemaErrorCode; exports.SyncError = _chunkUCUFSIOXjs.SyncError; exports.TabBuilder = _chunkUCUFSIOXjs.TabBuilder; exports.TenantAwareRepository = _chunkUCUFSIOXjs.TenantAwareRepository; exports.TenantAwareService = _chunkUCUFSIOXjs.TenantAwareService; exports.TenantContextError = _chunkUCUFSIOXjs.TenantContextError; exports.UserProfileNotFoundError = _chunkUCUFSIOXjs.UserProfileNotFoundError; exports.UserProfileService = _chunkUCUFSIOXjs.UserProfileService; exports.UserService = _chunkUCUFSIOXjs.UserService; exports.ValidationError = _chunkUCUFSIOXjs.ValidationError; exports.ViewBuilder = _chunkUCUFSIOXjs.ViewBuilder; exports.ViewService = _chunkUCUFSIOXjs.ViewService; exports.asTenantId = _chunkUCUFSIOXjs.asTenantId; exports.asUserId = _chunkUCUFSIOXjs.asUserId; exports.attributeConfigSchemas = _chunkUCUFSIOXjs.attributeConfigSchemas; exports.buildAuditChanges = _chunkUCUFSIOXjs.buildAuditChanges; exports.checkbox = _chunkUCUFSIOXjs.checkbox; exports.checkboxConfigSchema = _chunkUCUFSIOXjs.checkboxConfigSchema; exports.computeRecordStatus = _chunkUCUFSIOXjs.computeRecordStatus; exports.createAttributeValidator = _chunkUCUFSIOXjs.createAttributeValidator; exports.createCheckboxValidator = _chunkUCUFSIOXjs.createCheckboxValidator; exports.createCurrencyValidator = _chunkUCUFSIOXjs.createCurrencyValidator; exports.createDateValidator = _chunkUCUFSIOXjs.createDateValidator; exports.createDefaultState = _chunkUCUFSIOXjs.createDefaultState; exports.createDraftValidator = _chunkUCUFSIOXjs.createDraftValidator; exports.createFileValidator = _chunkUCUFSIOXjs.createFileValidator; exports.createFormAttributeValidator = _chunkUCUFSIOXjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkUCUFSIOXjs.createFormulaValidator; exports.createLocationValidator = _chunkUCUFSIOXjs.createLocationValidator; exports.createMockAdapter = _chunkUCUFSIOXjs.createMockAdapter; exports.createMultiRelationValidator = _chunkUCUFSIOXjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkUCUFSIOXjs.createMultiselectValidator; exports.createNumberValidator = _chunkUCUFSIOXjs.createNumberValidator; exports.createObjectValidator = _chunkUCUFSIOXjs.createObjectValidator; exports.createPhoneValidator = _chunkUCUFSIOXjs.createPhoneValidator; exports.createQueryBuilder = _chunkUCUFSIOXjs.createQueryBuilder; exports.createRatingValidator = _chunkUCUFSIOXjs.createRatingValidator; exports.createRelationValidator = _chunkUCUFSIOXjs.createRelationValidator; exports.createRichtextValidator = _chunkUCUFSIOXjs.createRichtextValidator; exports.createRollupValidator = _chunkUCUFSIOXjs.createRollupValidator; exports.createSelectValidator = _chunkUCUFSIOXjs.createSelectValidator; exports.createSingleRelationValidator = _chunkUCUFSIOXjs.createSingleRelationValidator; exports.createStatusValidator = _chunkUCUFSIOXjs.createStatusValidator; exports.createTextAreaValidator = _chunkUCUFSIOXjs.createTextAreaValidator; exports.createTextValidator = _chunkUCUFSIOXjs.createTextValidator; exports.createUserValidator = _chunkUCUFSIOXjs.createUserValidator; exports.currency = _chunkUCUFSIOXjs.currency; exports.currencyConfigSchema = _chunkUCUFSIOXjs.currencyConfigSchema; exports.date = _chunkUCUFSIOXjs.date; exports.dateConfigSchema = _chunkUCUFSIOXjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkUCUFSIOXjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunkUCUFSIOXjs.enrichValuesWithSelectLabels; exports.evaluateFormula = _chunkUCUFSIOXjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkUCUFSIOXjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkUCUFSIOXjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkUCUFSIOXjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkUCUFSIOXjs.evaluateFormulaWithResult; exports.extractAttributeNames = _chunkUCUFSIOXjs.extractAttributeNames; exports.extractFormulaVariables = _chunkUCUFSIOXjs.extractFormulaVariables; exports.extractRelationNames = _chunkUCUFSIOXjs.extractRelationNames; exports.extractRelationReferences = _chunkUCUFSIOXjs.extractRelationReferences; exports.file = _chunkUCUFSIOXjs.file; exports.fileConfigSchema = _chunkUCUFSIOXjs.fileConfigSchema; exports.flattenRelationsForEval = _chunkUCUFSIOXjs.flattenRelationsForEval; exports.flow = _chunkUCUFSIOXjs.flow; exports.formatAttributeValue = _chunkUCUFSIOXjs.formatAttributeValue; exports.formatFormulaResult = _chunkUCUFSIOXjs.formatFormulaResult; exports.formatRecord = _chunkUCUFSIOXjs.formatRecord; exports.formatRecords = _chunkUCUFSIOXjs.formatRecords; exports.formula = _chunkUCUFSIOXjs.formula; exports.formulaConfigSchema = _chunkUCUFSIOXjs.formulaConfigSchema; exports.generateId = _chunkUCUFSIOXjs.generateId; exports.generatePrefixedId = _chunkUCUFSIOXjs.generatePrefixedId; exports.getAttributeConfigSchema = _chunkUCUFSIOXjs.getAttributeConfigSchema; exports.getContext = _chunkUCUFSIOXjs.getContext; exports.getMissingRequiredAttributes = _chunkUCUFSIOXjs.getMissingRequiredAttributes; exports.getPathDepth = _chunkUCUFSIOXjs.getPathDepth; exports.getRelationPath = _chunkUCUFSIOXjs.getRelationPath; exports.getSyncPreview = _chunkUCUFSIOXjs.getSyncPreview; exports.getSystemAttributeList = _chunkUCUFSIOXjs.getSystemAttributeList; exports.getTargetAttributeName = _chunkUCUFSIOXjs.getTargetAttributeName; exports.getTenantId = _chunkUCUFSIOXjs.getTenantId; exports.getUserId = _chunkUCUFSIOXjs.getUserId; exports.getViewSyncPreview = _chunkUCUFSIOXjs.getViewSyncPreview; exports.group = _chunkUCUFSIOXjs.group; exports.hasContext = _chunkUCUFSIOXjs.hasContext; exports.hasRelationReferences = _chunkUCUFSIOXjs.hasRelationReferences; exports.isActivityTab = isActivityTab; exports.isAdvancedFilterState = isAdvancedFilterState; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDirectTableTab = isDirectTableTab; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isForbiddenError = _chunkUCUFSIOXjs.isForbiddenError; exports.isFormTab = isFormTab; exports.isInverseTableTab = isInverseTableTab; exports.isLabelExpression = _chunkUCUFSIOXjs.isLabelExpression; exports.isNoValueOperator = isNoValueOperator; exports.isNotFoundError = _chunkUCUFSIOXjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isProtectedResourceError = _chunkUCUFSIOXjs.isProtectedResourceError; exports.isRecordComplete = _chunkUCUFSIOXjs.isRecordComplete; exports.isSchemaError = _chunkUCUFSIOXjs.isSchemaError; exports.isSystemAttribute = _chunkUCUFSIOXjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkUCUFSIOXjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isTableTab = isTableTab; exports.isUniversalRelation = _chunkUCUFSIOXjs.isUniversalRelation; exports.isValidationError = _chunkUCUFSIOXjs.isValidationError; exports.location = _chunkUCUFSIOXjs.location; exports.locationConfigSchema = _chunkUCUFSIOXjs.locationConfigSchema; exports.multiselect = _chunkUCUFSIOXjs.multiselect; exports.multiselectConfigSchema = _chunkUCUFSIOXjs.multiselectConfigSchema; exports.notesPolicy = _chunkUCUFSIOXjs.notesPolicy; exports.number = _chunkUCUFSIOXjs.number; exports.numberConfigSchema = _chunkUCUFSIOXjs.numberConfigSchema; exports.object = _chunkUCUFSIOXjs.object; exports.parseAttributeConfig = _chunkUCUFSIOXjs.parseAttributeConfig; exports.parsePath = _chunkUCUFSIOXjs.parsePath; exports.pathHasManyCardinality = _chunkUCUFSIOXjs.pathHasManyCardinality; exports.phone = _chunkUCUFSIOXjs.phone; exports.phoneConfigSchema = _chunkUCUFSIOXjs.phoneConfigSchema; exports.rating = _chunkUCUFSIOXjs.rating; exports.ratingConfigSchema = _chunkUCUFSIOXjs.ratingConfigSchema; exports.registry = _chunkUCUFSIOXjs.registry; exports.relation = _chunkUCUFSIOXjs.relation; exports.relationConfigSchema = _chunkUCUFSIOXjs.relationConfigSchema; exports.renderLabelExpression = _chunkUCUFSIOXjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkUCUFSIOXjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkUCUFSIOXjs.resolveSingleValue; exports.richtext = _chunkUCUFSIOXjs.richtext; exports.richtextConfigSchema = _chunkUCUFSIOXjs.richtextConfigSchema; exports.rollup = _chunkUCUFSIOXjs.rollup; exports.rollupConfigSchema = _chunkUCUFSIOXjs.rollupConfigSchema; exports.runWithContext = _chunkUCUFSIOXjs.runWithContext; exports.safeParseAttributeConfig = _chunkUCUFSIOXjs.safeParseAttributeConfig; exports.select = _chunkUCUFSIOXjs.select; exports.selectConfigSchema = _chunkUCUFSIOXjs.selectConfigSchema; exports.status = _chunkUCUFSIOXjs.status; exports.statusConfigSchema = _chunkUCUFSIOXjs.statusConfigSchema; exports.syncAll = _chunkUCUFSIOXjs.syncAll; exports.syncNativeObjects = _chunkUCUFSIOXjs.syncNativeObjects; exports.syncNativeViews = _chunkUCUFSIOXjs.syncNativeViews; exports.text = _chunkUCUFSIOXjs.text; exports.textConfigSchema = _chunkUCUFSIOXjs.textConfigSchema; exports.textarea = _chunkUCUFSIOXjs.textarea; exports.textareaConfigSchema = _chunkUCUFSIOXjs.textareaConfigSchema; exports.toAdvancedFilterState = toAdvancedFilterState; exports.toSimpleFilterState = toSimpleFilterState; exports.traversePath = _chunkUCUFSIOXjs.traversePath; exports.user = _chunkUCUFSIOXjs.user; exports.userConfigSchema = _chunkUCUFSIOXjs.userConfigSchema; exports.validateAttribute = _chunkUCUFSIOXjs.validateAttribute; exports.validateAttributeConfig = _chunkUCUFSIOXjs.validateAttributeConfig; exports.validateDraft = _chunkUCUFSIOXjs.validateDraft; exports.validateDraftOrThrow = _chunkUCUFSIOXjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkUCUFSIOXjs.validateFormulaExpression; exports.validateObject = _chunkUCUFSIOXjs.validateObject; exports.validateObjectOrThrow = _chunkUCUFSIOXjs.validateObjectOrThrow; exports.validatePath = _chunkUCUFSIOXjs.validatePath; exports.verifyNativeObjectsSync = _chunkUCUFSIOXjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkUCUFSIOXjs.verifyNativeViewsSync; exports.view = _chunkUCUFSIOXjs.view; exports.viewRegistry = viewRegistry; exports.withTenantContext = _chunkUCUFSIOXjs.withTenantContext;
732
+ exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkJHLPK3ROjs.ActivityTabConfig; exports.AttributeInUseError = _chunkJHLPK3ROjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkJHLPK3ROjs.AttributeNotFoundError; exports.AuditService = _chunkJHLPK3ROjs.AuditService; exports.CustomTabConfig = _chunkJHLPK3ROjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkJHLPK3ROjs.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_VALIDATION_MESSAGES = _chunkJHLPK3ROjs.DEFAULT_VALIDATION_MESSAGES; exports.DirectTableTabConfig = _chunkJHLPK3ROjs.DirectTableTabConfig; exports.DuplicateError = _chunkJHLPK3ROjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkJHLPK3ROjs.EMPTY_VALUE_PLACEHOLDER; exports.FileNotFoundError = _chunkJHLPK3ROjs.FileNotFoundError; exports.FileService = _chunkJHLPK3ROjs.FileService; exports.FlowBuilder = _chunkJHLPK3ROjs.FlowBuilder; exports.FlowPageBuilder = _chunkJHLPK3ROjs.FlowPageBuilder; exports.FlowRowBuilder = _chunkJHLPK3ROjs.FlowRowBuilder; exports.FlowService = _chunkJHLPK3ROjs.FlowService; exports.ForbiddenError = _chunkJHLPK3ROjs.ForbiddenError; exports.GeocodingService = _chunkJHLPK3ROjs.GeocodingService; exports.GlobalSearchService = _chunkJHLPK3ROjs.GlobalSearchService; exports.GroupBuilder = _chunkJHLPK3ROjs.GroupBuilder; exports.InvalidPathError = _chunkJHLPK3ROjs.InvalidPathError; exports.InverseTableTabConfig = _chunkJHLPK3ROjs.InverseTableTabConfig; exports.MaxDepthExceededError = _chunkJHLPK3ROjs.MaxDepthExceededError; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NoopGeocodingAdapter = _chunkJHLPK3ROjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkJHLPK3ROjs.NoopHookRegistry; exports.NotFoundError = _chunkJHLPK3ROjs.NotFoundError; exports.NotSystemObjectError = _chunkJHLPK3ROjs.NotSystemObjectError; exports.NotesTabConfig = _chunkJHLPK3ROjs.NotesTabConfig; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkJHLPK3ROjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkJHLPK3ROjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkJHLPK3ROjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkJHLPK3ROjs.ObjectSchemaService; exports.PermissionService = _chunkJHLPK3ROjs.PermissionService; exports.PolicyRegistry = _chunkJHLPK3ROjs.PolicyRegistry; exports.PolicyViolationError = _chunkJHLPK3ROjs.PolicyViolationError; exports.ProtectedResourceError = _chunkJHLPK3ROjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkJHLPK3ROjs.ProtectedRoleError; exports.QueryBuilder = _chunkJHLPK3ROjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkJHLPK3ROjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkJHLPK3ROjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkJHLPK3ROjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkJHLPK3ROjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkJHLPK3ROjs.RecordNotFoundError; exports.RecordReferencedError = _chunkJHLPK3ROjs.RecordReferencedError; exports.RecordService = _chunkJHLPK3ROjs.RecordService; exports.RelationResolverService = _chunkJHLPK3ROjs.RelationResolverService; exports.RelationService = _chunkJHLPK3ROjs.RelationService; exports.RoleNotFoundError = _chunkJHLPK3ROjs.RoleNotFoundError; exports.RollupScheduler = _chunkJHLPK3ROjs.RollupScheduler; exports.RollupService = _chunkJHLPK3ROjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkJHLPK3ROjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SYSTEM_ATTRIBUTES = _chunkJHLPK3ROjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkJHLPK3ROjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SchemaError = _chunkJHLPK3ROjs.SchemaError; exports.SchemaErrorCode = _chunkJHLPK3ROjs.SchemaErrorCode; exports.SyncError = _chunkJHLPK3ROjs.SyncError; exports.TabBuilder = _chunkJHLPK3ROjs.TabBuilder; exports.TenantAwareRepository = _chunkJHLPK3ROjs.TenantAwareRepository; exports.TenantAwareService = _chunkJHLPK3ROjs.TenantAwareService; exports.TenantContextError = _chunkJHLPK3ROjs.TenantContextError; exports.UserProfileNotFoundError = _chunkJHLPK3ROjs.UserProfileNotFoundError; exports.UserProfileService = _chunkJHLPK3ROjs.UserProfileService; exports.UserService = _chunkJHLPK3ROjs.UserService; exports.ValidationError = _chunkJHLPK3ROjs.ValidationError; exports.ViewBuilder = _chunkJHLPK3ROjs.ViewBuilder; exports.ViewService = _chunkJHLPK3ROjs.ViewService; exports.asTenantId = _chunkJHLPK3ROjs.asTenantId; exports.asUserId = _chunkJHLPK3ROjs.asUserId; exports.attributeConfigSchemas = _chunkJHLPK3ROjs.attributeConfigSchemas; exports.buildAuditChanges = _chunkJHLPK3ROjs.buildAuditChanges; exports.checkbox = _chunkJHLPK3ROjs.checkbox; exports.checkboxConfigSchema = _chunkJHLPK3ROjs.checkboxConfigSchema; exports.computeRecordStatus = _chunkJHLPK3ROjs.computeRecordStatus; exports.createAttributeValidator = _chunkJHLPK3ROjs.createAttributeValidator; exports.createCheckboxValidator = _chunkJHLPK3ROjs.createCheckboxValidator; exports.createCurrencyValidator = _chunkJHLPK3ROjs.createCurrencyValidator; exports.createDateValidator = _chunkJHLPK3ROjs.createDateValidator; exports.createDefaultState = _chunkJHLPK3ROjs.createDefaultState; exports.createDraftValidator = _chunkJHLPK3ROjs.createDraftValidator; exports.createFileValidator = _chunkJHLPK3ROjs.createFileValidator; exports.createFormAttributeValidator = _chunkJHLPK3ROjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkJHLPK3ROjs.createFormulaValidator; exports.createLocationValidator = _chunkJHLPK3ROjs.createLocationValidator; exports.createMockAdapter = _chunkJHLPK3ROjs.createMockAdapter; exports.createMultiRelationValidator = _chunkJHLPK3ROjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkJHLPK3ROjs.createMultiselectValidator; exports.createNumberValidator = _chunkJHLPK3ROjs.createNumberValidator; exports.createObjectValidator = _chunkJHLPK3ROjs.createObjectValidator; exports.createPhoneValidator = _chunkJHLPK3ROjs.createPhoneValidator; exports.createQueryBuilder = _chunkJHLPK3ROjs.createQueryBuilder; exports.createRatingValidator = _chunkJHLPK3ROjs.createRatingValidator; exports.createRelationValidator = _chunkJHLPK3ROjs.createRelationValidator; exports.createRichtextValidator = _chunkJHLPK3ROjs.createRichtextValidator; exports.createRollupValidator = _chunkJHLPK3ROjs.createRollupValidator; exports.createSelectValidator = _chunkJHLPK3ROjs.createSelectValidator; exports.createSingleRelationValidator = _chunkJHLPK3ROjs.createSingleRelationValidator; exports.createStatusValidator = _chunkJHLPK3ROjs.createStatusValidator; exports.createTextAreaValidator = _chunkJHLPK3ROjs.createTextAreaValidator; exports.createTextValidator = _chunkJHLPK3ROjs.createTextValidator; exports.createUserValidator = _chunkJHLPK3ROjs.createUserValidator; exports.currency = _chunkJHLPK3ROjs.currency; exports.currencyConfigSchema = _chunkJHLPK3ROjs.currencyConfigSchema; exports.date = _chunkJHLPK3ROjs.date; exports.dateConfigSchema = _chunkJHLPK3ROjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkJHLPK3ROjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunkJHLPK3ROjs.enrichValuesWithSelectLabels; exports.evaluateFormula = _chunkJHLPK3ROjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkJHLPK3ROjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkJHLPK3ROjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkJHLPK3ROjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkJHLPK3ROjs.evaluateFormulaWithResult; exports.extractAttributeNames = _chunkJHLPK3ROjs.extractAttributeNames; exports.extractFormulaVariables = _chunkJHLPK3ROjs.extractFormulaVariables; exports.extractRelationNames = _chunkJHLPK3ROjs.extractRelationNames; exports.extractRelationReferences = _chunkJHLPK3ROjs.extractRelationReferences; exports.file = _chunkJHLPK3ROjs.file; exports.fileConfigSchema = _chunkJHLPK3ROjs.fileConfigSchema; exports.flattenRelationsForEval = _chunkJHLPK3ROjs.flattenRelationsForEval; exports.flow = _chunkJHLPK3ROjs.flow; exports.formatAttributeValue = _chunkJHLPK3ROjs.formatAttributeValue; exports.formatFormulaResult = _chunkJHLPK3ROjs.formatFormulaResult; exports.formatRecord = _chunkJHLPK3ROjs.formatRecord; exports.formatRecords = _chunkJHLPK3ROjs.formatRecords; exports.formula = _chunkJHLPK3ROjs.formula; exports.formulaConfigSchema = _chunkJHLPK3ROjs.formulaConfigSchema; exports.generateId = _chunkJHLPK3ROjs.generateId; exports.generatePrefixedId = _chunkJHLPK3ROjs.generatePrefixedId; exports.getAttributeConfigSchema = _chunkJHLPK3ROjs.getAttributeConfigSchema; exports.getContext = _chunkJHLPK3ROjs.getContext; exports.getMissingRequiredAttributes = _chunkJHLPK3ROjs.getMissingRequiredAttributes; exports.getPathDepth = _chunkJHLPK3ROjs.getPathDepth; exports.getRelationPath = _chunkJHLPK3ROjs.getRelationPath; exports.getSyncPreview = _chunkJHLPK3ROjs.getSyncPreview; exports.getSystemAttributeList = _chunkJHLPK3ROjs.getSystemAttributeList; exports.getTargetAttributeName = _chunkJHLPK3ROjs.getTargetAttributeName; exports.getTenantId = _chunkJHLPK3ROjs.getTenantId; exports.getUserId = _chunkJHLPK3ROjs.getUserId; exports.getViewSyncPreview = _chunkJHLPK3ROjs.getViewSyncPreview; exports.group = _chunkJHLPK3ROjs.group; exports.hasContext = _chunkJHLPK3ROjs.hasContext; exports.hasRelationReferences = _chunkJHLPK3ROjs.hasRelationReferences; exports.isActivityTab = isActivityTab; exports.isAdvancedFilterState = isAdvancedFilterState; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDirectTableTab = isDirectTableTab; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isForbiddenError = _chunkJHLPK3ROjs.isForbiddenError; exports.isFormTab = isFormTab; exports.isInverseTableTab = isInverseTableTab; exports.isLabelExpression = _chunkJHLPK3ROjs.isLabelExpression; exports.isNoValueOperator = isNoValueOperator; exports.isNotFoundError = _chunkJHLPK3ROjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isProtectedResourceError = _chunkJHLPK3ROjs.isProtectedResourceError; exports.isRecordComplete = _chunkJHLPK3ROjs.isRecordComplete; exports.isSchemaError = _chunkJHLPK3ROjs.isSchemaError; exports.isSystemAttribute = _chunkJHLPK3ROjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkJHLPK3ROjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isTableTab = isTableTab; exports.isUniversalRelation = _chunkJHLPK3ROjs.isUniversalRelation; exports.isValidationError = _chunkJHLPK3ROjs.isValidationError; exports.location = _chunkJHLPK3ROjs.location; exports.locationConfigSchema = _chunkJHLPK3ROjs.locationConfigSchema; exports.multiselect = _chunkJHLPK3ROjs.multiselect; exports.multiselectConfigSchema = _chunkJHLPK3ROjs.multiselectConfigSchema; exports.notesPolicy = _chunkJHLPK3ROjs.notesPolicy; exports.number = _chunkJHLPK3ROjs.number; exports.numberConfigSchema = _chunkJHLPK3ROjs.numberConfigSchema; exports.object = _chunkJHLPK3ROjs.object; exports.parseAttributeConfig = _chunkJHLPK3ROjs.parseAttributeConfig; exports.parsePath = _chunkJHLPK3ROjs.parsePath; exports.pathHasManyCardinality = _chunkJHLPK3ROjs.pathHasManyCardinality; exports.phone = _chunkJHLPK3ROjs.phone; exports.phoneConfigSchema = _chunkJHLPK3ROjs.phoneConfigSchema; exports.rating = _chunkJHLPK3ROjs.rating; exports.ratingConfigSchema = _chunkJHLPK3ROjs.ratingConfigSchema; exports.registry = _chunkJHLPK3ROjs.registry; exports.relation = _chunkJHLPK3ROjs.relation; exports.relationConfigSchema = _chunkJHLPK3ROjs.relationConfigSchema; exports.renderLabelExpression = _chunkJHLPK3ROjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkJHLPK3ROjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkJHLPK3ROjs.resolveSingleValue; exports.richtext = _chunkJHLPK3ROjs.richtext; exports.richtextConfigSchema = _chunkJHLPK3ROjs.richtextConfigSchema; exports.rollup = _chunkJHLPK3ROjs.rollup; exports.rollupConfigSchema = _chunkJHLPK3ROjs.rollupConfigSchema; exports.runWithContext = _chunkJHLPK3ROjs.runWithContext; exports.safeParseAttributeConfig = _chunkJHLPK3ROjs.safeParseAttributeConfig; exports.select = _chunkJHLPK3ROjs.select; exports.selectConfigSchema = _chunkJHLPK3ROjs.selectConfigSchema; exports.status = _chunkJHLPK3ROjs.status; exports.statusConfigSchema = _chunkJHLPK3ROjs.statusConfigSchema; exports.syncAll = _chunkJHLPK3ROjs.syncAll; exports.syncNativeObjects = _chunkJHLPK3ROjs.syncNativeObjects; exports.syncNativeViews = _chunkJHLPK3ROjs.syncNativeViews; exports.text = _chunkJHLPK3ROjs.text; exports.textConfigSchema = _chunkJHLPK3ROjs.textConfigSchema; exports.textarea = _chunkJHLPK3ROjs.textarea; exports.textareaConfigSchema = _chunkJHLPK3ROjs.textareaConfigSchema; exports.toAdvancedFilterState = toAdvancedFilterState; exports.toSimpleFilterState = toSimpleFilterState; exports.traversePath = _chunkJHLPK3ROjs.traversePath; exports.user = _chunkJHLPK3ROjs.user; exports.userConfigSchema = _chunkJHLPK3ROjs.userConfigSchema; exports.validateAttribute = _chunkJHLPK3ROjs.validateAttribute; exports.validateAttributeConfig = _chunkJHLPK3ROjs.validateAttributeConfig; exports.validateDraft = _chunkJHLPK3ROjs.validateDraft; exports.validateDraftOrThrow = _chunkJHLPK3ROjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkJHLPK3ROjs.validateFormulaExpression; exports.validateObject = _chunkJHLPK3ROjs.validateObject; exports.validateObjectOrThrow = _chunkJHLPK3ROjs.validateObjectOrThrow; exports.validatePath = _chunkJHLPK3ROjs.validatePath; exports.verifyNativeObjectsSync = _chunkJHLPK3ROjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkJHLPK3ROjs.verifyNativeViewsSync; exports.view = _chunkJHLPK3ROjs.view; exports.viewRegistry = viewRegistry; exports.withTenantContext = _chunkJHLPK3ROjs.withTenantContext;
package/dist/index.mjs CHANGED
@@ -203,7 +203,7 @@ import {
203
203
  verifyNativeViewsSync,
204
204
  view,
205
205
  withTenantContext
206
- } from "./chunk-EIRY4I7Q.mjs";
206
+ } from "./chunk-QZZ4SSHD.mjs";
207
207
  import {
208
208
  ALL_SYSTEM_RESOURCES,
209
209
  DEFAULT_ROLES,
package/dist/runtime.js CHANGED
@@ -74,7 +74,7 @@
74
74
 
75
75
 
76
76
 
77
- var _chunkUCUFSIOXjs = require('./chunk-UCUFSIOX.js');
77
+ var _chunkJHLPK3ROjs = require('./chunk-JHLPK3RO.js');
78
78
  require('./chunk-3RG5ZIWI.js');
79
79
 
80
80
 
@@ -152,4 +152,4 @@ require('./chunk-3RG5ZIWI.js');
152
152
 
153
153
 
154
154
 
155
- exports.AuditService = _chunkUCUFSIOXjs.AuditService; exports.DEFAULT_LABEL_FALLBACK = _chunkUCUFSIOXjs.DEFAULT_LABEL_FALLBACK; exports.FileService = _chunkUCUFSIOXjs.FileService; exports.FlowService = _chunkUCUFSIOXjs.FlowService; exports.GeocodingService = _chunkUCUFSIOXjs.GeocodingService; exports.GlobalSearchService = _chunkUCUFSIOXjs.GlobalSearchService; exports.InvalidPathError = _chunkUCUFSIOXjs.InvalidPathError; exports.MaxDepthExceededError = _chunkUCUFSIOXjs.MaxDepthExceededError; exports.NoopGeocodingAdapter = _chunkUCUFSIOXjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkUCUFSIOXjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkUCUFSIOXjs.ObjectSchemaService; exports.PermissionService = _chunkUCUFSIOXjs.PermissionService; exports.PolicyRegistry = _chunkUCUFSIOXjs.PolicyRegistry; exports.PolicyViolationError = _chunkUCUFSIOXjs.PolicyViolationError; exports.QueryBuilder = _chunkUCUFSIOXjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkUCUFSIOXjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkUCUFSIOXjs.QueryNoResultError; exports.RecordService = _chunkUCUFSIOXjs.RecordService; exports.RelationResolverService = _chunkUCUFSIOXjs.RelationResolverService; exports.RelationService = _chunkUCUFSIOXjs.RelationService; exports.RollupScheduler = _chunkUCUFSIOXjs.RollupScheduler; exports.RollupService = _chunkUCUFSIOXjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkUCUFSIOXjs.SHORTCUT_TO_FILTER_OPERATOR; exports.TenantAwareRepository = _chunkUCUFSIOXjs.TenantAwareRepository; exports.TenantAwareService = _chunkUCUFSIOXjs.TenantAwareService; exports.TenantContextError = _chunkUCUFSIOXjs.TenantContextError; exports.UserProfileService = _chunkUCUFSIOXjs.UserProfileService; exports.UserService = _chunkUCUFSIOXjs.UserService; exports.ViewService = _chunkUCUFSIOXjs.ViewService; exports.buildAuditChanges = _chunkUCUFSIOXjs.buildAuditChanges; exports.createDefaultState = _chunkUCUFSIOXjs.createDefaultState; exports.createMockAdapter = _chunkUCUFSIOXjs.createMockAdapter; exports.createQueryBuilder = _chunkUCUFSIOXjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkUCUFSIOXjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunkUCUFSIOXjs.enrichValuesWithSelectLabels; exports.evaluateFormula = _chunkUCUFSIOXjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkUCUFSIOXjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkUCUFSIOXjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkUCUFSIOXjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkUCUFSIOXjs.evaluateFormulaWithResult; exports.extractAttributeNames = _chunkUCUFSIOXjs.extractAttributeNames; exports.extractFormulaVariables = _chunkUCUFSIOXjs.extractFormulaVariables; exports.extractRelationNames = _chunkUCUFSIOXjs.extractRelationNames; exports.extractRelationReferences = _chunkUCUFSIOXjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkUCUFSIOXjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkUCUFSIOXjs.formatFormulaResult; exports.formatRecord = _chunkUCUFSIOXjs.formatRecord; exports.formatRecords = _chunkUCUFSIOXjs.formatRecords; exports.getContext = _chunkUCUFSIOXjs.getContext; exports.getPathDepth = _chunkUCUFSIOXjs.getPathDepth; exports.getRelationPath = _chunkUCUFSIOXjs.getRelationPath; exports.getSyncPreview = _chunkUCUFSIOXjs.getSyncPreview; exports.getTargetAttributeName = _chunkUCUFSIOXjs.getTargetAttributeName; exports.getTenantId = _chunkUCUFSIOXjs.getTenantId; exports.getUserId = _chunkUCUFSIOXjs.getUserId; exports.getViewSyncPreview = _chunkUCUFSIOXjs.getViewSyncPreview; exports.hasContext = _chunkUCUFSIOXjs.hasContext; exports.hasRelationReferences = _chunkUCUFSIOXjs.hasRelationReferences; exports.isLabelExpression = _chunkUCUFSIOXjs.isLabelExpression; exports.notesPolicy = _chunkUCUFSIOXjs.notesPolicy; exports.parsePath = _chunkUCUFSIOXjs.parsePath; exports.pathHasManyCardinality = _chunkUCUFSIOXjs.pathHasManyCardinality; exports.renderLabelExpression = _chunkUCUFSIOXjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkUCUFSIOXjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkUCUFSIOXjs.resolveSingleValue; exports.runWithContext = _chunkUCUFSIOXjs.runWithContext; exports.syncAll = _chunkUCUFSIOXjs.syncAll; exports.syncNativeObjects = _chunkUCUFSIOXjs.syncNativeObjects; exports.syncNativeViews = _chunkUCUFSIOXjs.syncNativeViews; exports.traversePath = _chunkUCUFSIOXjs.traversePath; exports.validateFormulaExpression = _chunkUCUFSIOXjs.validateFormulaExpression; exports.validatePath = _chunkUCUFSIOXjs.validatePath; exports.verifyNativeObjectsSync = _chunkUCUFSIOXjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkUCUFSIOXjs.verifyNativeViewsSync; exports.withTenantContext = _chunkUCUFSIOXjs.withTenantContext;
155
+ exports.AuditService = _chunkJHLPK3ROjs.AuditService; exports.DEFAULT_LABEL_FALLBACK = _chunkJHLPK3ROjs.DEFAULT_LABEL_FALLBACK; exports.FileService = _chunkJHLPK3ROjs.FileService; exports.FlowService = _chunkJHLPK3ROjs.FlowService; exports.GeocodingService = _chunkJHLPK3ROjs.GeocodingService; exports.GlobalSearchService = _chunkJHLPK3ROjs.GlobalSearchService; exports.InvalidPathError = _chunkJHLPK3ROjs.InvalidPathError; exports.MaxDepthExceededError = _chunkJHLPK3ROjs.MaxDepthExceededError; exports.NoopGeocodingAdapter = _chunkJHLPK3ROjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkJHLPK3ROjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkJHLPK3ROjs.ObjectSchemaService; exports.PermissionService = _chunkJHLPK3ROjs.PermissionService; exports.PolicyRegistry = _chunkJHLPK3ROjs.PolicyRegistry; exports.PolicyViolationError = _chunkJHLPK3ROjs.PolicyViolationError; exports.QueryBuilder = _chunkJHLPK3ROjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkJHLPK3ROjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkJHLPK3ROjs.QueryNoResultError; exports.RecordService = _chunkJHLPK3ROjs.RecordService; exports.RelationResolverService = _chunkJHLPK3ROjs.RelationResolverService; exports.RelationService = _chunkJHLPK3ROjs.RelationService; exports.RollupScheduler = _chunkJHLPK3ROjs.RollupScheduler; exports.RollupService = _chunkJHLPK3ROjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkJHLPK3ROjs.SHORTCUT_TO_FILTER_OPERATOR; exports.TenantAwareRepository = _chunkJHLPK3ROjs.TenantAwareRepository; exports.TenantAwareService = _chunkJHLPK3ROjs.TenantAwareService; exports.TenantContextError = _chunkJHLPK3ROjs.TenantContextError; exports.UserProfileService = _chunkJHLPK3ROjs.UserProfileService; exports.UserService = _chunkJHLPK3ROjs.UserService; exports.ViewService = _chunkJHLPK3ROjs.ViewService; exports.buildAuditChanges = _chunkJHLPK3ROjs.buildAuditChanges; exports.createDefaultState = _chunkJHLPK3ROjs.createDefaultState; exports.createMockAdapter = _chunkJHLPK3ROjs.createMockAdapter; exports.createQueryBuilder = _chunkJHLPK3ROjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkJHLPK3ROjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunkJHLPK3ROjs.enrichValuesWithSelectLabels; exports.evaluateFormula = _chunkJHLPK3ROjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkJHLPK3ROjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkJHLPK3ROjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkJHLPK3ROjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkJHLPK3ROjs.evaluateFormulaWithResult; exports.extractAttributeNames = _chunkJHLPK3ROjs.extractAttributeNames; exports.extractFormulaVariables = _chunkJHLPK3ROjs.extractFormulaVariables; exports.extractRelationNames = _chunkJHLPK3ROjs.extractRelationNames; exports.extractRelationReferences = _chunkJHLPK3ROjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkJHLPK3ROjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkJHLPK3ROjs.formatFormulaResult; exports.formatRecord = _chunkJHLPK3ROjs.formatRecord; exports.formatRecords = _chunkJHLPK3ROjs.formatRecords; exports.getContext = _chunkJHLPK3ROjs.getContext; exports.getPathDepth = _chunkJHLPK3ROjs.getPathDepth; exports.getRelationPath = _chunkJHLPK3ROjs.getRelationPath; exports.getSyncPreview = _chunkJHLPK3ROjs.getSyncPreview; exports.getTargetAttributeName = _chunkJHLPK3ROjs.getTargetAttributeName; exports.getTenantId = _chunkJHLPK3ROjs.getTenantId; exports.getUserId = _chunkJHLPK3ROjs.getUserId; exports.getViewSyncPreview = _chunkJHLPK3ROjs.getViewSyncPreview; exports.hasContext = _chunkJHLPK3ROjs.hasContext; exports.hasRelationReferences = _chunkJHLPK3ROjs.hasRelationReferences; exports.isLabelExpression = _chunkJHLPK3ROjs.isLabelExpression; exports.notesPolicy = _chunkJHLPK3ROjs.notesPolicy; exports.parsePath = _chunkJHLPK3ROjs.parsePath; exports.pathHasManyCardinality = _chunkJHLPK3ROjs.pathHasManyCardinality; exports.renderLabelExpression = _chunkJHLPK3ROjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkJHLPK3ROjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkJHLPK3ROjs.resolveSingleValue; exports.runWithContext = _chunkJHLPK3ROjs.runWithContext; exports.syncAll = _chunkJHLPK3ROjs.syncAll; exports.syncNativeObjects = _chunkJHLPK3ROjs.syncNativeObjects; exports.syncNativeViews = _chunkJHLPK3ROjs.syncNativeViews; exports.traversePath = _chunkJHLPK3ROjs.traversePath; exports.validateFormulaExpression = _chunkJHLPK3ROjs.validateFormulaExpression; exports.validatePath = _chunkJHLPK3ROjs.validatePath; exports.verifyNativeObjectsSync = _chunkJHLPK3ROjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkJHLPK3ROjs.verifyNativeViewsSync; exports.withTenantContext = _chunkJHLPK3ROjs.withTenantContext;
package/dist/runtime.mjs CHANGED
@@ -74,7 +74,7 @@ import {
74
74
  verifyNativeObjectsSync,
75
75
  verifyNativeViewsSync,
76
76
  withTenantContext
77
- } from "./chunk-EIRY4I7Q.mjs";
77
+ } from "./chunk-QZZ4SSHD.mjs";
78
78
  import "./chunk-Y6FXYEAI.mjs";
79
79
  export {
80
80
  AuditService,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/schema",
3
- "version": "0.1.0-alpha.35",
3
+ "version": "0.1.0-alpha.36",
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.35"
26
+ "@stndrds/constants": "0.1.0-alpha.36"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^25.0.3",