@stndrds/schema 0.1.0-alpha.37 → 0.1.0-alpha.38

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.
@@ -1807,7 +1807,6 @@ function createMockObjectRecordsRepository(stores) {
1807
1807
  const records = results.map(({ tenantId: _t, ...r }) => r);
1808
1808
  return Promise.resolve({ records, total });
1809
1809
  },
1810
- // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: This is a mock adapter, we don't need to worry about complexity
1811
1810
  globalSearch(query, options) {
1812
1811
  const tenantId = getTenantId();
1813
1812
  const lowerQuery = query.toLowerCase();
@@ -1880,7 +1879,6 @@ function createMockObjectRecordsRepository(stores) {
1880
1879
  // -------------------------------------------------------------------------
1881
1880
  // Schema Integrity Methods
1882
1881
  // -------------------------------------------------------------------------
1883
- // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: This is a mock adapter, we don't need to worry about complexity
1884
1882
  countRecordsReferencingId(targetId) {
1885
1883
  const relationAttrs = [];
1886
1884
  for (const attr of stores.attributes.values()) {
@@ -1957,7 +1955,6 @@ function createMockObjectRecordsRepository(stores) {
1957
1955
  }
1958
1956
  return Promise.resolve(updated);
1959
1957
  },
1960
- // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: This is a mock adapter, we don't need to worry about complexity
1961
1958
  findByRelation(objectName, relationAttributeName, targetRecordId) {
1962
1959
  const obj = Array.from(stores.objects.values()).find((o) => o.name === objectName);
1963
1960
  if (!obj) return Promise.resolve([]);
@@ -2206,7 +2203,6 @@ function createMockPermissionsRepository(stores) {
2206
2203
  }
2207
2204
  return Promise.resolve();
2208
2205
  },
2209
- // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: This is a mock adapter, we don't need to worry about complexity
2210
2206
  getEffectivePermissions(userProfileId) {
2211
2207
  const tenantId = getTenantId();
2212
2208
  const userRoleIds = Array.from(stores.userRoles.values()).filter((ur) => ur.userProfileId === userProfileId && ur.tenantId === tenantId).map((ur) => ur.roleId);
@@ -9306,6 +9302,7 @@ var RelationResolverService = class {
9306
9302
  for (const record of records) {
9307
9303
  const result = resultMap.get(record.id);
9308
9304
  const idToAttr = recordRelationMap.get(record.id);
9305
+ if (!(result && idToAttr)) continue;
9309
9306
  for (const [relatedId, attrName] of idToAttr) {
9310
9307
  const relatedRecord = relatedRecordMap.get(relatedId);
9311
9308
  if (relatedRecord) {
@@ -9900,7 +9897,7 @@ var ViewService = class extends TenantAwareService {
9900
9897
  }
9901
9898
  if (tabs[0].type !== "form") {
9902
9899
  throw new ValidationError("Modal views must have a form tab", [
9903
- { path: ["tabs"], message: "Modal views must have a form tab, not a " + tabs[0].type }
9900
+ { path: ["tabs"], message: `Modal views must have a form tab, not a ${tabs[0].type}` }
9904
9901
  ]);
9905
9902
  }
9906
9903
  }
@@ -1807,7 +1807,6 @@ function createMockObjectRecordsRepository(stores) {
1807
1807
  const records = results.map(({ tenantId: _t, ...r }) => r);
1808
1808
  return Promise.resolve({ records, total });
1809
1809
  },
1810
- // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: This is a mock adapter, we don't need to worry about complexity
1811
1810
  globalSearch(query, options) {
1812
1811
  const tenantId = getTenantId();
1813
1812
  const lowerQuery = query.toLowerCase();
@@ -1880,7 +1879,6 @@ function createMockObjectRecordsRepository(stores) {
1880
1879
  // -------------------------------------------------------------------------
1881
1880
  // Schema Integrity Methods
1882
1881
  // -------------------------------------------------------------------------
1883
- // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: This is a mock adapter, we don't need to worry about complexity
1884
1882
  countRecordsReferencingId(targetId) {
1885
1883
  const relationAttrs = [];
1886
1884
  for (const attr of stores.attributes.values()) {
@@ -1957,7 +1955,6 @@ function createMockObjectRecordsRepository(stores) {
1957
1955
  }
1958
1956
  return Promise.resolve(updated);
1959
1957
  },
1960
- // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: This is a mock adapter, we don't need to worry about complexity
1961
1958
  findByRelation(objectName, relationAttributeName, targetRecordId) {
1962
1959
  const obj = Array.from(stores.objects.values()).find((o) => o.name === objectName);
1963
1960
  if (!obj) return Promise.resolve([]);
@@ -2206,7 +2203,6 @@ function createMockPermissionsRepository(stores) {
2206
2203
  }
2207
2204
  return Promise.resolve();
2208
2205
  },
2209
- // biome-ignore lint/complexity/noExcessiveCognitiveComplexity: This is a mock adapter, we don't need to worry about complexity
2210
2206
  getEffectivePermissions(userProfileId) {
2211
2207
  const tenantId = getTenantId();
2212
2208
  const userRoleIds = Array.from(stores.userRoles.values()).filter((ur) => ur.userProfileId === userProfileId && ur.tenantId === tenantId).map((ur) => ur.roleId);
@@ -9306,6 +9302,7 @@ var RelationResolverService = class {
9306
9302
  for (const record of records) {
9307
9303
  const result = resultMap.get(record.id);
9308
9304
  const idToAttr = recordRelationMap.get(record.id);
9305
+ if (!(result && idToAttr)) continue;
9309
9306
  for (const [relatedId, attrName] of idToAttr) {
9310
9307
  const relatedRecord = relatedRecordMap.get(relatedId);
9311
9308
  if (relatedRecord) {
@@ -9900,7 +9897,7 @@ var ViewService = class extends TenantAwareService {
9900
9897
  }
9901
9898
  if (tabs[0].type !== "form") {
9902
9899
  throw new ValidationError("Modal views must have a form tab", [
9903
- { path: ["tabs"], message: "Modal views must have a form tab, not a " + tabs[0].type }
9900
+ { path: ["tabs"], message: `Modal views must have a form tab, not a ${tabs[0].type}` }
9904
9901
  ]);
9905
9902
  }
9906
9903
  }
package/dist/index.js CHANGED
@@ -206,7 +206,7 @@
206
206
 
207
207
 
208
208
 
209
- var _chunkTL7PFCPCjs = require('./chunk-TL7PFCPC.js');
209
+ var _chunk5NXIMZNYjs = require('./chunk-5NXIMZNY.js');
210
210
 
211
211
 
212
212
 
@@ -356,13 +356,13 @@ function isNotesTab(tab) {
356
356
  }
357
357
 
358
358
  // src/native/notes.ts
359
- var NOTES = _chunkTL7PFCPCjs.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(_chunkTL7PFCPCjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkTL7PFCPCjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
360
- _chunkTL7PFCPCjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
359
+ var NOTES = _chunk5NXIMZNYjs.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(_chunk5NXIMZNYjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunk5NXIMZNYjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
360
+ _chunk5NXIMZNYjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
361
361
  { id: "private", label: "Private", value: "private", icon: "lock" },
362
362
  { id: "shared", label: "Shared", value: "shared", icon: "users" }
363
363
  ]).defaultValue("private").required()
364
- ).attribute(_chunkTL7PFCPCjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
365
- _chunkTL7PFCPCjs.registry.register(NOTES);
364
+ ).attribute(_chunk5NXIMZNYjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
365
+ _chunk5NXIMZNYjs.registry.register(NOTES);
366
366
 
367
367
  // src/views/registry.ts
368
368
  var ViewRegistry = class {
@@ -735,4 +735,4 @@ var viewRegistry = new ViewRegistry();
735
735
 
736
736
 
737
737
 
738
- exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkTL7PFCPCjs.ActivityTabConfig; exports.AttributeInUseError = _chunkTL7PFCPCjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkTL7PFCPCjs.AttributeNotFoundError; exports.AuditService = _chunkTL7PFCPCjs.AuditService; exports.CustomTabConfig = _chunkTL7PFCPCjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkTL7PFCPCjs.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 = _chunkTL7PFCPCjs.DEFAULT_VALIDATION_MESSAGES; exports.DirectTableTabConfig = _chunkTL7PFCPCjs.DirectTableTabConfig; exports.DuplicateError = _chunkTL7PFCPCjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkTL7PFCPCjs.EMPTY_VALUE_PLACEHOLDER; exports.FileNotFoundError = _chunkTL7PFCPCjs.FileNotFoundError; exports.FileService = _chunkTL7PFCPCjs.FileService; exports.FlowBuilder = _chunkTL7PFCPCjs.FlowBuilder; exports.FlowPageBuilder = _chunkTL7PFCPCjs.FlowPageBuilder; exports.FlowRowBuilder = _chunkTL7PFCPCjs.FlowRowBuilder; exports.FlowService = _chunkTL7PFCPCjs.FlowService; exports.ForbiddenError = _chunkTL7PFCPCjs.ForbiddenError; exports.GeocodingService = _chunkTL7PFCPCjs.GeocodingService; exports.GlobalSearchService = _chunkTL7PFCPCjs.GlobalSearchService; exports.GroupBuilder = _chunkTL7PFCPCjs.GroupBuilder; exports.InvalidPathError = _chunkTL7PFCPCjs.InvalidPathError; exports.InverseTableTabConfig = _chunkTL7PFCPCjs.InverseTableTabConfig; exports.MaxDepthExceededError = _chunkTL7PFCPCjs.MaxDepthExceededError; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NoopCacheAdapter = _chunkTL7PFCPCjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkTL7PFCPCjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkTL7PFCPCjs.NoopHookRegistry; exports.NotFoundError = _chunkTL7PFCPCjs.NotFoundError; exports.NotSystemObjectError = _chunkTL7PFCPCjs.NotSystemObjectError; exports.NotesTabConfig = _chunkTL7PFCPCjs.NotesTabConfig; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkTL7PFCPCjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkTL7PFCPCjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkTL7PFCPCjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkTL7PFCPCjs.ObjectSchemaService; exports.PermissionService = _chunkTL7PFCPCjs.PermissionService; exports.PolicyRegistry = _chunkTL7PFCPCjs.PolicyRegistry; exports.PolicyViolationError = _chunkTL7PFCPCjs.PolicyViolationError; exports.ProtectedResourceError = _chunkTL7PFCPCjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkTL7PFCPCjs.ProtectedRoleError; exports.QueryBuilder = _chunkTL7PFCPCjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkTL7PFCPCjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkTL7PFCPCjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkTL7PFCPCjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkTL7PFCPCjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkTL7PFCPCjs.RecordNotFoundError; exports.RecordReferencedError = _chunkTL7PFCPCjs.RecordReferencedError; exports.RecordService = _chunkTL7PFCPCjs.RecordService; exports.RelationResolverService = _chunkTL7PFCPCjs.RelationResolverService; exports.RelationService = _chunkTL7PFCPCjs.RelationService; exports.RoleNotFoundError = _chunkTL7PFCPCjs.RoleNotFoundError; exports.RollupScheduler = _chunkTL7PFCPCjs.RollupScheduler; exports.RollupService = _chunkTL7PFCPCjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkTL7PFCPCjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SYSTEM_ATTRIBUTES = _chunkTL7PFCPCjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkTL7PFCPCjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SchemaError = _chunkTL7PFCPCjs.SchemaError; exports.SchemaErrorCode = _chunkTL7PFCPCjs.SchemaErrorCode; exports.SyncError = _chunkTL7PFCPCjs.SyncError; exports.TabBuilder = _chunkTL7PFCPCjs.TabBuilder; exports.TenantAwareRepository = _chunkTL7PFCPCjs.TenantAwareRepository; exports.TenantAwareService = _chunkTL7PFCPCjs.TenantAwareService; exports.TenantContextError = _chunkTL7PFCPCjs.TenantContextError; exports.UserProfileNotFoundError = _chunkTL7PFCPCjs.UserProfileNotFoundError; exports.UserProfileService = _chunkTL7PFCPCjs.UserProfileService; exports.UserService = _chunkTL7PFCPCjs.UserService; exports.ValidationError = _chunkTL7PFCPCjs.ValidationError; exports.ViewBuilder = _chunkTL7PFCPCjs.ViewBuilder; exports.ViewService = _chunkTL7PFCPCjs.ViewService; exports.asTenantId = _chunkTL7PFCPCjs.asTenantId; exports.asUserId = _chunkTL7PFCPCjs.asUserId; exports.attributeConfigSchemas = _chunkTL7PFCPCjs.attributeConfigSchemas; exports.buildAuditChanges = _chunkTL7PFCPCjs.buildAuditChanges; exports.cacheKeys = _chunkTL7PFCPCjs.cacheKeys; exports.cacheTtl = _chunkTL7PFCPCjs.cacheTtl; exports.checkbox = _chunkTL7PFCPCjs.checkbox; exports.checkboxConfigSchema = _chunkTL7PFCPCjs.checkboxConfigSchema; exports.computeRecordStatus = _chunkTL7PFCPCjs.computeRecordStatus; exports.createAttributeValidator = _chunkTL7PFCPCjs.createAttributeValidator; exports.createCheckboxValidator = _chunkTL7PFCPCjs.createCheckboxValidator; exports.createCurrencyValidator = _chunkTL7PFCPCjs.createCurrencyValidator; exports.createDateValidator = _chunkTL7PFCPCjs.createDateValidator; exports.createDefaultState = _chunkTL7PFCPCjs.createDefaultState; exports.createDraftValidator = _chunkTL7PFCPCjs.createDraftValidator; exports.createFileValidator = _chunkTL7PFCPCjs.createFileValidator; exports.createFormAttributeValidator = _chunkTL7PFCPCjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkTL7PFCPCjs.createFormulaValidator; exports.createLocationValidator = _chunkTL7PFCPCjs.createLocationValidator; exports.createMockAdapter = _chunkTL7PFCPCjs.createMockAdapter; exports.createMultiRelationValidator = _chunkTL7PFCPCjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkTL7PFCPCjs.createMultiselectValidator; exports.createNumberValidator = _chunkTL7PFCPCjs.createNumberValidator; exports.createObjectValidator = _chunkTL7PFCPCjs.createObjectValidator; exports.createPhoneValidator = _chunkTL7PFCPCjs.createPhoneValidator; exports.createQueryBuilder = _chunkTL7PFCPCjs.createQueryBuilder; exports.createRatingValidator = _chunkTL7PFCPCjs.createRatingValidator; exports.createRelationValidator = _chunkTL7PFCPCjs.createRelationValidator; exports.createRichtextValidator = _chunkTL7PFCPCjs.createRichtextValidator; exports.createRollupValidator = _chunkTL7PFCPCjs.createRollupValidator; exports.createSelectValidator = _chunkTL7PFCPCjs.createSelectValidator; exports.createSingleRelationValidator = _chunkTL7PFCPCjs.createSingleRelationValidator; exports.createStatusValidator = _chunkTL7PFCPCjs.createStatusValidator; exports.createTextAreaValidator = _chunkTL7PFCPCjs.createTextAreaValidator; exports.createTextValidator = _chunkTL7PFCPCjs.createTextValidator; exports.createUserValidator = _chunkTL7PFCPCjs.createUserValidator; exports.currency = _chunkTL7PFCPCjs.currency; exports.currencyConfigSchema = _chunkTL7PFCPCjs.currencyConfigSchema; exports.date = _chunkTL7PFCPCjs.date; exports.dateConfigSchema = _chunkTL7PFCPCjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkTL7PFCPCjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunkTL7PFCPCjs.enrichValuesWithSelectLabels; exports.evaluateFormula = _chunkTL7PFCPCjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkTL7PFCPCjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkTL7PFCPCjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkTL7PFCPCjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkTL7PFCPCjs.evaluateFormulaWithResult; exports.extractAttributeNames = _chunkTL7PFCPCjs.extractAttributeNames; exports.extractFormulaVariables = _chunkTL7PFCPCjs.extractFormulaVariables; exports.extractRelationNames = _chunkTL7PFCPCjs.extractRelationNames; exports.extractRelationReferences = _chunkTL7PFCPCjs.extractRelationReferences; exports.file = _chunkTL7PFCPCjs.file; exports.fileConfigSchema = _chunkTL7PFCPCjs.fileConfigSchema; exports.flattenRelationsForEval = _chunkTL7PFCPCjs.flattenRelationsForEval; exports.flow = _chunkTL7PFCPCjs.flow; exports.formatAttributeValue = _chunkTL7PFCPCjs.formatAttributeValue; exports.formatFormulaResult = _chunkTL7PFCPCjs.formatFormulaResult; exports.formatRecord = _chunkTL7PFCPCjs.formatRecord; exports.formatRecords = _chunkTL7PFCPCjs.formatRecords; exports.formula = _chunkTL7PFCPCjs.formula; exports.formulaConfigSchema = _chunkTL7PFCPCjs.formulaConfigSchema; exports.generateId = _chunkTL7PFCPCjs.generateId; exports.generatePrefixedId = _chunkTL7PFCPCjs.generatePrefixedId; exports.getAttributeConfigSchema = _chunkTL7PFCPCjs.getAttributeConfigSchema; exports.getContext = _chunkTL7PFCPCjs.getContext; exports.getMissingRequiredAttributes = _chunkTL7PFCPCjs.getMissingRequiredAttributes; exports.getPathDepth = _chunkTL7PFCPCjs.getPathDepth; exports.getRelationPath = _chunkTL7PFCPCjs.getRelationPath; exports.getSyncPreview = _chunkTL7PFCPCjs.getSyncPreview; exports.getSystemAttributeList = _chunkTL7PFCPCjs.getSystemAttributeList; exports.getTargetAttributeName = _chunkTL7PFCPCjs.getTargetAttributeName; exports.getTenantId = _chunkTL7PFCPCjs.getTenantId; exports.getUserId = _chunkTL7PFCPCjs.getUserId; exports.getViewSyncPreview = _chunkTL7PFCPCjs.getViewSyncPreview; exports.group = _chunkTL7PFCPCjs.group; exports.hasContext = _chunkTL7PFCPCjs.hasContext; exports.hasRelationReferences = _chunkTL7PFCPCjs.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 = _chunkTL7PFCPCjs.isForbiddenError; exports.isFormTab = isFormTab; exports.isInverseTableTab = isInverseTableTab; exports.isLabelExpression = _chunkTL7PFCPCjs.isLabelExpression; exports.isNoValueOperator = isNoValueOperator; exports.isNotFoundError = _chunkTL7PFCPCjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isProtectedResourceError = _chunkTL7PFCPCjs.isProtectedResourceError; exports.isRecordComplete = _chunkTL7PFCPCjs.isRecordComplete; exports.isSchemaError = _chunkTL7PFCPCjs.isSchemaError; exports.isSystemAttribute = _chunkTL7PFCPCjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkTL7PFCPCjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isTableTab = isTableTab; exports.isUniversalRelation = _chunkTL7PFCPCjs.isUniversalRelation; exports.isValidationError = _chunkTL7PFCPCjs.isValidationError; exports.location = _chunkTL7PFCPCjs.location; exports.locationConfigSchema = _chunkTL7PFCPCjs.locationConfigSchema; exports.multiselect = _chunkTL7PFCPCjs.multiselect; exports.multiselectConfigSchema = _chunkTL7PFCPCjs.multiselectConfigSchema; exports.notesPolicy = _chunkTL7PFCPCjs.notesPolicy; exports.number = _chunkTL7PFCPCjs.number; exports.numberConfigSchema = _chunkTL7PFCPCjs.numberConfigSchema; exports.object = _chunkTL7PFCPCjs.object; exports.parseAttributeConfig = _chunkTL7PFCPCjs.parseAttributeConfig; exports.parsePath = _chunkTL7PFCPCjs.parsePath; exports.pathHasManyCardinality = _chunkTL7PFCPCjs.pathHasManyCardinality; exports.phone = _chunkTL7PFCPCjs.phone; exports.phoneConfigSchema = _chunkTL7PFCPCjs.phoneConfigSchema; exports.rating = _chunkTL7PFCPCjs.rating; exports.ratingConfigSchema = _chunkTL7PFCPCjs.ratingConfigSchema; exports.registry = _chunkTL7PFCPCjs.registry; exports.relation = _chunkTL7PFCPCjs.relation; exports.relationConfigSchema = _chunkTL7PFCPCjs.relationConfigSchema; exports.renderLabelExpression = _chunkTL7PFCPCjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkTL7PFCPCjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkTL7PFCPCjs.resolveSingleValue; exports.richtext = _chunkTL7PFCPCjs.richtext; exports.richtextConfigSchema = _chunkTL7PFCPCjs.richtextConfigSchema; exports.rollup = _chunkTL7PFCPCjs.rollup; exports.rollupConfigSchema = _chunkTL7PFCPCjs.rollupConfigSchema; exports.runWithContext = _chunkTL7PFCPCjs.runWithContext; exports.safeParseAttributeConfig = _chunkTL7PFCPCjs.safeParseAttributeConfig; exports.select = _chunkTL7PFCPCjs.select; exports.selectConfigSchema = _chunkTL7PFCPCjs.selectConfigSchema; exports.status = _chunkTL7PFCPCjs.status; exports.statusConfigSchema = _chunkTL7PFCPCjs.statusConfigSchema; exports.syncAll = _chunkTL7PFCPCjs.syncAll; exports.syncNativeObjects = _chunkTL7PFCPCjs.syncNativeObjects; exports.syncNativeViews = _chunkTL7PFCPCjs.syncNativeViews; exports.text = _chunkTL7PFCPCjs.text; exports.textConfigSchema = _chunkTL7PFCPCjs.textConfigSchema; exports.textarea = _chunkTL7PFCPCjs.textarea; exports.textareaConfigSchema = _chunkTL7PFCPCjs.textareaConfigSchema; exports.toAdvancedFilterState = toAdvancedFilterState; exports.toSimpleFilterState = toSimpleFilterState; exports.traversePath = _chunkTL7PFCPCjs.traversePath; exports.user = _chunkTL7PFCPCjs.user; exports.userConfigSchema = _chunkTL7PFCPCjs.userConfigSchema; exports.validateAttribute = _chunkTL7PFCPCjs.validateAttribute; exports.validateAttributeConfig = _chunkTL7PFCPCjs.validateAttributeConfig; exports.validateDraft = _chunkTL7PFCPCjs.validateDraft; exports.validateDraftOrThrow = _chunkTL7PFCPCjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkTL7PFCPCjs.validateFormulaExpression; exports.validateObject = _chunkTL7PFCPCjs.validateObject; exports.validateObjectOrThrow = _chunkTL7PFCPCjs.validateObjectOrThrow; exports.validatePath = _chunkTL7PFCPCjs.validatePath; exports.verifyNativeObjectsSync = _chunkTL7PFCPCjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkTL7PFCPCjs.verifyNativeViewsSync; exports.view = _chunkTL7PFCPCjs.view; exports.viewRegistry = viewRegistry; exports.withTenantContext = _chunkTL7PFCPCjs.withTenantContext;
738
+ exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunk5NXIMZNYjs.ActivityTabConfig; exports.AttributeInUseError = _chunk5NXIMZNYjs.AttributeInUseError; exports.AttributeNotFoundError = _chunk5NXIMZNYjs.AttributeNotFoundError; exports.AuditService = _chunk5NXIMZNYjs.AuditService; exports.CustomTabConfig = _chunk5NXIMZNYjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunk5NXIMZNYjs.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 = _chunk5NXIMZNYjs.DEFAULT_VALIDATION_MESSAGES; exports.DirectTableTabConfig = _chunk5NXIMZNYjs.DirectTableTabConfig; exports.DuplicateError = _chunk5NXIMZNYjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunk5NXIMZNYjs.EMPTY_VALUE_PLACEHOLDER; exports.FileNotFoundError = _chunk5NXIMZNYjs.FileNotFoundError; exports.FileService = _chunk5NXIMZNYjs.FileService; exports.FlowBuilder = _chunk5NXIMZNYjs.FlowBuilder; exports.FlowPageBuilder = _chunk5NXIMZNYjs.FlowPageBuilder; exports.FlowRowBuilder = _chunk5NXIMZNYjs.FlowRowBuilder; exports.FlowService = _chunk5NXIMZNYjs.FlowService; exports.ForbiddenError = _chunk5NXIMZNYjs.ForbiddenError; exports.GeocodingService = _chunk5NXIMZNYjs.GeocodingService; exports.GlobalSearchService = _chunk5NXIMZNYjs.GlobalSearchService; exports.GroupBuilder = _chunk5NXIMZNYjs.GroupBuilder; exports.InvalidPathError = _chunk5NXIMZNYjs.InvalidPathError; exports.InverseTableTabConfig = _chunk5NXIMZNYjs.InverseTableTabConfig; exports.MaxDepthExceededError = _chunk5NXIMZNYjs.MaxDepthExceededError; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NoopCacheAdapter = _chunk5NXIMZNYjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk5NXIMZNYjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk5NXIMZNYjs.NoopHookRegistry; exports.NotFoundError = _chunk5NXIMZNYjs.NotFoundError; exports.NotSystemObjectError = _chunk5NXIMZNYjs.NotSystemObjectError; exports.NotesTabConfig = _chunk5NXIMZNYjs.NotesTabConfig; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunk5NXIMZNYjs.ObjectBuilder; exports.ObjectNotFoundError = _chunk5NXIMZNYjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunk5NXIMZNYjs.ObjectReferencedError; exports.ObjectSchemaService = _chunk5NXIMZNYjs.ObjectSchemaService; exports.PermissionService = _chunk5NXIMZNYjs.PermissionService; exports.PolicyRegistry = _chunk5NXIMZNYjs.PolicyRegistry; exports.PolicyViolationError = _chunk5NXIMZNYjs.PolicyViolationError; exports.ProtectedResourceError = _chunk5NXIMZNYjs.ProtectedResourceError; exports.ProtectedRoleError = _chunk5NXIMZNYjs.ProtectedRoleError; exports.QueryBuilder = _chunk5NXIMZNYjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk5NXIMZNYjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk5NXIMZNYjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunk5NXIMZNYjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunk5NXIMZNYjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunk5NXIMZNYjs.RecordNotFoundError; exports.RecordReferencedError = _chunk5NXIMZNYjs.RecordReferencedError; exports.RecordService = _chunk5NXIMZNYjs.RecordService; exports.RelationResolverService = _chunk5NXIMZNYjs.RelationResolverService; exports.RelationService = _chunk5NXIMZNYjs.RelationService; exports.RoleNotFoundError = _chunk5NXIMZNYjs.RoleNotFoundError; exports.RollupScheduler = _chunk5NXIMZNYjs.RollupScheduler; exports.RollupService = _chunk5NXIMZNYjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk5NXIMZNYjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SYSTEM_ATTRIBUTES = _chunk5NXIMZNYjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunk5NXIMZNYjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SchemaError = _chunk5NXIMZNYjs.SchemaError; exports.SchemaErrorCode = _chunk5NXIMZNYjs.SchemaErrorCode; exports.SyncError = _chunk5NXIMZNYjs.SyncError; exports.TabBuilder = _chunk5NXIMZNYjs.TabBuilder; exports.TenantAwareRepository = _chunk5NXIMZNYjs.TenantAwareRepository; exports.TenantAwareService = _chunk5NXIMZNYjs.TenantAwareService; exports.TenantContextError = _chunk5NXIMZNYjs.TenantContextError; exports.UserProfileNotFoundError = _chunk5NXIMZNYjs.UserProfileNotFoundError; exports.UserProfileService = _chunk5NXIMZNYjs.UserProfileService; exports.UserService = _chunk5NXIMZNYjs.UserService; exports.ValidationError = _chunk5NXIMZNYjs.ValidationError; exports.ViewBuilder = _chunk5NXIMZNYjs.ViewBuilder; exports.ViewService = _chunk5NXIMZNYjs.ViewService; exports.asTenantId = _chunk5NXIMZNYjs.asTenantId; exports.asUserId = _chunk5NXIMZNYjs.asUserId; exports.attributeConfigSchemas = _chunk5NXIMZNYjs.attributeConfigSchemas; exports.buildAuditChanges = _chunk5NXIMZNYjs.buildAuditChanges; exports.cacheKeys = _chunk5NXIMZNYjs.cacheKeys; exports.cacheTtl = _chunk5NXIMZNYjs.cacheTtl; exports.checkbox = _chunk5NXIMZNYjs.checkbox; exports.checkboxConfigSchema = _chunk5NXIMZNYjs.checkboxConfigSchema; exports.computeRecordStatus = _chunk5NXIMZNYjs.computeRecordStatus; exports.createAttributeValidator = _chunk5NXIMZNYjs.createAttributeValidator; exports.createCheckboxValidator = _chunk5NXIMZNYjs.createCheckboxValidator; exports.createCurrencyValidator = _chunk5NXIMZNYjs.createCurrencyValidator; exports.createDateValidator = _chunk5NXIMZNYjs.createDateValidator; exports.createDefaultState = _chunk5NXIMZNYjs.createDefaultState; exports.createDraftValidator = _chunk5NXIMZNYjs.createDraftValidator; exports.createFileValidator = _chunk5NXIMZNYjs.createFileValidator; exports.createFormAttributeValidator = _chunk5NXIMZNYjs.createFormAttributeValidator; exports.createFormulaValidator = _chunk5NXIMZNYjs.createFormulaValidator; exports.createLocationValidator = _chunk5NXIMZNYjs.createLocationValidator; exports.createMockAdapter = _chunk5NXIMZNYjs.createMockAdapter; exports.createMultiRelationValidator = _chunk5NXIMZNYjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk5NXIMZNYjs.createMultiselectValidator; exports.createNumberValidator = _chunk5NXIMZNYjs.createNumberValidator; exports.createObjectValidator = _chunk5NXIMZNYjs.createObjectValidator; exports.createPhoneValidator = _chunk5NXIMZNYjs.createPhoneValidator; exports.createQueryBuilder = _chunk5NXIMZNYjs.createQueryBuilder; exports.createRatingValidator = _chunk5NXIMZNYjs.createRatingValidator; exports.createRelationValidator = _chunk5NXIMZNYjs.createRelationValidator; exports.createRichtextValidator = _chunk5NXIMZNYjs.createRichtextValidator; exports.createRollupValidator = _chunk5NXIMZNYjs.createRollupValidator; exports.createSelectValidator = _chunk5NXIMZNYjs.createSelectValidator; exports.createSingleRelationValidator = _chunk5NXIMZNYjs.createSingleRelationValidator; exports.createStatusValidator = _chunk5NXIMZNYjs.createStatusValidator; exports.createTextAreaValidator = _chunk5NXIMZNYjs.createTextAreaValidator; exports.createTextValidator = _chunk5NXIMZNYjs.createTextValidator; exports.createUserValidator = _chunk5NXIMZNYjs.createUserValidator; exports.currency = _chunk5NXIMZNYjs.currency; exports.currencyConfigSchema = _chunk5NXIMZNYjs.currencyConfigSchema; exports.date = _chunk5NXIMZNYjs.date; exports.dateConfigSchema = _chunk5NXIMZNYjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunk5NXIMZNYjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunk5NXIMZNYjs.enrichValuesWithSelectLabels; exports.evaluateFormula = _chunk5NXIMZNYjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk5NXIMZNYjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk5NXIMZNYjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk5NXIMZNYjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk5NXIMZNYjs.evaluateFormulaWithResult; exports.extractAttributeNames = _chunk5NXIMZNYjs.extractAttributeNames; exports.extractFormulaVariables = _chunk5NXIMZNYjs.extractFormulaVariables; exports.extractRelationNames = _chunk5NXIMZNYjs.extractRelationNames; exports.extractRelationReferences = _chunk5NXIMZNYjs.extractRelationReferences; exports.file = _chunk5NXIMZNYjs.file; exports.fileConfigSchema = _chunk5NXIMZNYjs.fileConfigSchema; exports.flattenRelationsForEval = _chunk5NXIMZNYjs.flattenRelationsForEval; exports.flow = _chunk5NXIMZNYjs.flow; exports.formatAttributeValue = _chunk5NXIMZNYjs.formatAttributeValue; exports.formatFormulaResult = _chunk5NXIMZNYjs.formatFormulaResult; exports.formatRecord = _chunk5NXIMZNYjs.formatRecord; exports.formatRecords = _chunk5NXIMZNYjs.formatRecords; exports.formula = _chunk5NXIMZNYjs.formula; exports.formulaConfigSchema = _chunk5NXIMZNYjs.formulaConfigSchema; exports.generateId = _chunk5NXIMZNYjs.generateId; exports.generatePrefixedId = _chunk5NXIMZNYjs.generatePrefixedId; exports.getAttributeConfigSchema = _chunk5NXIMZNYjs.getAttributeConfigSchema; exports.getContext = _chunk5NXIMZNYjs.getContext; exports.getMissingRequiredAttributes = _chunk5NXIMZNYjs.getMissingRequiredAttributes; exports.getPathDepth = _chunk5NXIMZNYjs.getPathDepth; exports.getRelationPath = _chunk5NXIMZNYjs.getRelationPath; exports.getSyncPreview = _chunk5NXIMZNYjs.getSyncPreview; exports.getSystemAttributeList = _chunk5NXIMZNYjs.getSystemAttributeList; exports.getTargetAttributeName = _chunk5NXIMZNYjs.getTargetAttributeName; exports.getTenantId = _chunk5NXIMZNYjs.getTenantId; exports.getUserId = _chunk5NXIMZNYjs.getUserId; exports.getViewSyncPreview = _chunk5NXIMZNYjs.getViewSyncPreview; exports.group = _chunk5NXIMZNYjs.group; exports.hasContext = _chunk5NXIMZNYjs.hasContext; exports.hasRelationReferences = _chunk5NXIMZNYjs.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 = _chunk5NXIMZNYjs.isForbiddenError; exports.isFormTab = isFormTab; exports.isInverseTableTab = isInverseTableTab; exports.isLabelExpression = _chunk5NXIMZNYjs.isLabelExpression; exports.isNoValueOperator = isNoValueOperator; exports.isNotFoundError = _chunk5NXIMZNYjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isProtectedResourceError = _chunk5NXIMZNYjs.isProtectedResourceError; exports.isRecordComplete = _chunk5NXIMZNYjs.isRecordComplete; exports.isSchemaError = _chunk5NXIMZNYjs.isSchemaError; exports.isSystemAttribute = _chunk5NXIMZNYjs.isSystemAttribute; exports.isSystemAttributeObject = _chunk5NXIMZNYjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isTableTab = isTableTab; exports.isUniversalRelation = _chunk5NXIMZNYjs.isUniversalRelation; exports.isValidationError = _chunk5NXIMZNYjs.isValidationError; exports.location = _chunk5NXIMZNYjs.location; exports.locationConfigSchema = _chunk5NXIMZNYjs.locationConfigSchema; exports.multiselect = _chunk5NXIMZNYjs.multiselect; exports.multiselectConfigSchema = _chunk5NXIMZNYjs.multiselectConfigSchema; exports.notesPolicy = _chunk5NXIMZNYjs.notesPolicy; exports.number = _chunk5NXIMZNYjs.number; exports.numberConfigSchema = _chunk5NXIMZNYjs.numberConfigSchema; exports.object = _chunk5NXIMZNYjs.object; exports.parseAttributeConfig = _chunk5NXIMZNYjs.parseAttributeConfig; exports.parsePath = _chunk5NXIMZNYjs.parsePath; exports.pathHasManyCardinality = _chunk5NXIMZNYjs.pathHasManyCardinality; exports.phone = _chunk5NXIMZNYjs.phone; exports.phoneConfigSchema = _chunk5NXIMZNYjs.phoneConfigSchema; exports.rating = _chunk5NXIMZNYjs.rating; exports.ratingConfigSchema = _chunk5NXIMZNYjs.ratingConfigSchema; exports.registry = _chunk5NXIMZNYjs.registry; exports.relation = _chunk5NXIMZNYjs.relation; exports.relationConfigSchema = _chunk5NXIMZNYjs.relationConfigSchema; exports.renderLabelExpression = _chunk5NXIMZNYjs.renderLabelExpression; exports.resolveMultiplePaths = _chunk5NXIMZNYjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk5NXIMZNYjs.resolveSingleValue; exports.richtext = _chunk5NXIMZNYjs.richtext; exports.richtextConfigSchema = _chunk5NXIMZNYjs.richtextConfigSchema; exports.rollup = _chunk5NXIMZNYjs.rollup; exports.rollupConfigSchema = _chunk5NXIMZNYjs.rollupConfigSchema; exports.runWithContext = _chunk5NXIMZNYjs.runWithContext; exports.safeParseAttributeConfig = _chunk5NXIMZNYjs.safeParseAttributeConfig; exports.select = _chunk5NXIMZNYjs.select; exports.selectConfigSchema = _chunk5NXIMZNYjs.selectConfigSchema; exports.status = _chunk5NXIMZNYjs.status; exports.statusConfigSchema = _chunk5NXIMZNYjs.statusConfigSchema; exports.syncAll = _chunk5NXIMZNYjs.syncAll; exports.syncNativeObjects = _chunk5NXIMZNYjs.syncNativeObjects; exports.syncNativeViews = _chunk5NXIMZNYjs.syncNativeViews; exports.text = _chunk5NXIMZNYjs.text; exports.textConfigSchema = _chunk5NXIMZNYjs.textConfigSchema; exports.textarea = _chunk5NXIMZNYjs.textarea; exports.textareaConfigSchema = _chunk5NXIMZNYjs.textareaConfigSchema; exports.toAdvancedFilterState = toAdvancedFilterState; exports.toSimpleFilterState = toSimpleFilterState; exports.traversePath = _chunk5NXIMZNYjs.traversePath; exports.user = _chunk5NXIMZNYjs.user; exports.userConfigSchema = _chunk5NXIMZNYjs.userConfigSchema; exports.validateAttribute = _chunk5NXIMZNYjs.validateAttribute; exports.validateAttributeConfig = _chunk5NXIMZNYjs.validateAttributeConfig; exports.validateDraft = _chunk5NXIMZNYjs.validateDraft; exports.validateDraftOrThrow = _chunk5NXIMZNYjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunk5NXIMZNYjs.validateFormulaExpression; exports.validateObject = _chunk5NXIMZNYjs.validateObject; exports.validateObjectOrThrow = _chunk5NXIMZNYjs.validateObjectOrThrow; exports.validatePath = _chunk5NXIMZNYjs.validatePath; exports.verifyNativeObjectsSync = _chunk5NXIMZNYjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk5NXIMZNYjs.verifyNativeViewsSync; exports.view = _chunk5NXIMZNYjs.view; exports.viewRegistry = viewRegistry; exports.withTenantContext = _chunk5NXIMZNYjs.withTenantContext;
package/dist/index.mjs CHANGED
@@ -206,7 +206,7 @@ import {
206
206
  verifyNativeViewsSync,
207
207
  view,
208
208
  withTenantContext
209
- } from "./chunk-OXPVVEZS.mjs";
209
+ } from "./chunk-6NQPARLS.mjs";
210
210
  import {
211
211
  ALL_SYSTEM_RESOURCES,
212
212
  DEFAULT_ROLES,
package/dist/runtime.js CHANGED
@@ -77,7 +77,7 @@
77
77
 
78
78
 
79
79
 
80
- var _chunkTL7PFCPCjs = require('./chunk-TL7PFCPC.js');
80
+ var _chunk5NXIMZNYjs = require('./chunk-5NXIMZNY.js');
81
81
  require('./chunk-3RG5ZIWI.js');
82
82
 
83
83
 
@@ -158,4 +158,4 @@ require('./chunk-3RG5ZIWI.js');
158
158
 
159
159
 
160
160
 
161
- exports.AuditService = _chunkTL7PFCPCjs.AuditService; exports.DEFAULT_LABEL_FALLBACK = _chunkTL7PFCPCjs.DEFAULT_LABEL_FALLBACK; exports.FileService = _chunkTL7PFCPCjs.FileService; exports.FlowService = _chunkTL7PFCPCjs.FlowService; exports.GeocodingService = _chunkTL7PFCPCjs.GeocodingService; exports.GlobalSearchService = _chunkTL7PFCPCjs.GlobalSearchService; exports.InvalidPathError = _chunkTL7PFCPCjs.InvalidPathError; exports.MaxDepthExceededError = _chunkTL7PFCPCjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkTL7PFCPCjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkTL7PFCPCjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkTL7PFCPCjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkTL7PFCPCjs.ObjectSchemaService; exports.PermissionService = _chunkTL7PFCPCjs.PermissionService; exports.PolicyRegistry = _chunkTL7PFCPCjs.PolicyRegistry; exports.PolicyViolationError = _chunkTL7PFCPCjs.PolicyViolationError; exports.QueryBuilder = _chunkTL7PFCPCjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkTL7PFCPCjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkTL7PFCPCjs.QueryNoResultError; exports.RecordService = _chunkTL7PFCPCjs.RecordService; exports.RelationResolverService = _chunkTL7PFCPCjs.RelationResolverService; exports.RelationService = _chunkTL7PFCPCjs.RelationService; exports.RollupScheduler = _chunkTL7PFCPCjs.RollupScheduler; exports.RollupService = _chunkTL7PFCPCjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkTL7PFCPCjs.SHORTCUT_TO_FILTER_OPERATOR; exports.TenantAwareRepository = _chunkTL7PFCPCjs.TenantAwareRepository; exports.TenantAwareService = _chunkTL7PFCPCjs.TenantAwareService; exports.TenantContextError = _chunkTL7PFCPCjs.TenantContextError; exports.UserProfileService = _chunkTL7PFCPCjs.UserProfileService; exports.UserService = _chunkTL7PFCPCjs.UserService; exports.ViewService = _chunkTL7PFCPCjs.ViewService; exports.buildAuditChanges = _chunkTL7PFCPCjs.buildAuditChanges; exports.cacheKeys = _chunkTL7PFCPCjs.cacheKeys; exports.cacheTtl = _chunkTL7PFCPCjs.cacheTtl; exports.createDefaultState = _chunkTL7PFCPCjs.createDefaultState; exports.createMockAdapter = _chunkTL7PFCPCjs.createMockAdapter; exports.createQueryBuilder = _chunkTL7PFCPCjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkTL7PFCPCjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunkTL7PFCPCjs.enrichValuesWithSelectLabels; exports.evaluateFormula = _chunkTL7PFCPCjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkTL7PFCPCjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkTL7PFCPCjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkTL7PFCPCjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkTL7PFCPCjs.evaluateFormulaWithResult; exports.extractAttributeNames = _chunkTL7PFCPCjs.extractAttributeNames; exports.extractFormulaVariables = _chunkTL7PFCPCjs.extractFormulaVariables; exports.extractRelationNames = _chunkTL7PFCPCjs.extractRelationNames; exports.extractRelationReferences = _chunkTL7PFCPCjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkTL7PFCPCjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkTL7PFCPCjs.formatFormulaResult; exports.formatRecord = _chunkTL7PFCPCjs.formatRecord; exports.formatRecords = _chunkTL7PFCPCjs.formatRecords; exports.getContext = _chunkTL7PFCPCjs.getContext; exports.getPathDepth = _chunkTL7PFCPCjs.getPathDepth; exports.getRelationPath = _chunkTL7PFCPCjs.getRelationPath; exports.getSyncPreview = _chunkTL7PFCPCjs.getSyncPreview; exports.getTargetAttributeName = _chunkTL7PFCPCjs.getTargetAttributeName; exports.getTenantId = _chunkTL7PFCPCjs.getTenantId; exports.getUserId = _chunkTL7PFCPCjs.getUserId; exports.getViewSyncPreview = _chunkTL7PFCPCjs.getViewSyncPreview; exports.hasContext = _chunkTL7PFCPCjs.hasContext; exports.hasRelationReferences = _chunkTL7PFCPCjs.hasRelationReferences; exports.isLabelExpression = _chunkTL7PFCPCjs.isLabelExpression; exports.notesPolicy = _chunkTL7PFCPCjs.notesPolicy; exports.parsePath = _chunkTL7PFCPCjs.parsePath; exports.pathHasManyCardinality = _chunkTL7PFCPCjs.pathHasManyCardinality; exports.renderLabelExpression = _chunkTL7PFCPCjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkTL7PFCPCjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkTL7PFCPCjs.resolveSingleValue; exports.runWithContext = _chunkTL7PFCPCjs.runWithContext; exports.syncAll = _chunkTL7PFCPCjs.syncAll; exports.syncNativeObjects = _chunkTL7PFCPCjs.syncNativeObjects; exports.syncNativeViews = _chunkTL7PFCPCjs.syncNativeViews; exports.traversePath = _chunkTL7PFCPCjs.traversePath; exports.validateFormulaExpression = _chunkTL7PFCPCjs.validateFormulaExpression; exports.validatePath = _chunkTL7PFCPCjs.validatePath; exports.verifyNativeObjectsSync = _chunkTL7PFCPCjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkTL7PFCPCjs.verifyNativeViewsSync; exports.withTenantContext = _chunkTL7PFCPCjs.withTenantContext;
161
+ exports.AuditService = _chunk5NXIMZNYjs.AuditService; exports.DEFAULT_LABEL_FALLBACK = _chunk5NXIMZNYjs.DEFAULT_LABEL_FALLBACK; exports.FileService = _chunk5NXIMZNYjs.FileService; exports.FlowService = _chunk5NXIMZNYjs.FlowService; exports.GeocodingService = _chunk5NXIMZNYjs.GeocodingService; exports.GlobalSearchService = _chunk5NXIMZNYjs.GlobalSearchService; exports.InvalidPathError = _chunk5NXIMZNYjs.InvalidPathError; exports.MaxDepthExceededError = _chunk5NXIMZNYjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunk5NXIMZNYjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk5NXIMZNYjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk5NXIMZNYjs.NoopHookRegistry; exports.ObjectSchemaService = _chunk5NXIMZNYjs.ObjectSchemaService; exports.PermissionService = _chunk5NXIMZNYjs.PermissionService; exports.PolicyRegistry = _chunk5NXIMZNYjs.PolicyRegistry; exports.PolicyViolationError = _chunk5NXIMZNYjs.PolicyViolationError; exports.QueryBuilder = _chunk5NXIMZNYjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk5NXIMZNYjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk5NXIMZNYjs.QueryNoResultError; exports.RecordService = _chunk5NXIMZNYjs.RecordService; exports.RelationResolverService = _chunk5NXIMZNYjs.RelationResolverService; exports.RelationService = _chunk5NXIMZNYjs.RelationService; exports.RollupScheduler = _chunk5NXIMZNYjs.RollupScheduler; exports.RollupService = _chunk5NXIMZNYjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk5NXIMZNYjs.SHORTCUT_TO_FILTER_OPERATOR; exports.TenantAwareRepository = _chunk5NXIMZNYjs.TenantAwareRepository; exports.TenantAwareService = _chunk5NXIMZNYjs.TenantAwareService; exports.TenantContextError = _chunk5NXIMZNYjs.TenantContextError; exports.UserProfileService = _chunk5NXIMZNYjs.UserProfileService; exports.UserService = _chunk5NXIMZNYjs.UserService; exports.ViewService = _chunk5NXIMZNYjs.ViewService; exports.buildAuditChanges = _chunk5NXIMZNYjs.buildAuditChanges; exports.cacheKeys = _chunk5NXIMZNYjs.cacheKeys; exports.cacheTtl = _chunk5NXIMZNYjs.cacheTtl; exports.createDefaultState = _chunk5NXIMZNYjs.createDefaultState; exports.createMockAdapter = _chunk5NXIMZNYjs.createMockAdapter; exports.createQueryBuilder = _chunk5NXIMZNYjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunk5NXIMZNYjs.defaultPolicyRegistry; exports.enrichValuesWithSelectLabels = _chunk5NXIMZNYjs.enrichValuesWithSelectLabels; exports.evaluateFormula = _chunk5NXIMZNYjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk5NXIMZNYjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk5NXIMZNYjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk5NXIMZNYjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk5NXIMZNYjs.evaluateFormulaWithResult; exports.extractAttributeNames = _chunk5NXIMZNYjs.extractAttributeNames; exports.extractFormulaVariables = _chunk5NXIMZNYjs.extractFormulaVariables; exports.extractRelationNames = _chunk5NXIMZNYjs.extractRelationNames; exports.extractRelationReferences = _chunk5NXIMZNYjs.extractRelationReferences; exports.flattenRelationsForEval = _chunk5NXIMZNYjs.flattenRelationsForEval; exports.formatFormulaResult = _chunk5NXIMZNYjs.formatFormulaResult; exports.formatRecord = _chunk5NXIMZNYjs.formatRecord; exports.formatRecords = _chunk5NXIMZNYjs.formatRecords; exports.getContext = _chunk5NXIMZNYjs.getContext; exports.getPathDepth = _chunk5NXIMZNYjs.getPathDepth; exports.getRelationPath = _chunk5NXIMZNYjs.getRelationPath; exports.getSyncPreview = _chunk5NXIMZNYjs.getSyncPreview; exports.getTargetAttributeName = _chunk5NXIMZNYjs.getTargetAttributeName; exports.getTenantId = _chunk5NXIMZNYjs.getTenantId; exports.getUserId = _chunk5NXIMZNYjs.getUserId; exports.getViewSyncPreview = _chunk5NXIMZNYjs.getViewSyncPreview; exports.hasContext = _chunk5NXIMZNYjs.hasContext; exports.hasRelationReferences = _chunk5NXIMZNYjs.hasRelationReferences; exports.isLabelExpression = _chunk5NXIMZNYjs.isLabelExpression; exports.notesPolicy = _chunk5NXIMZNYjs.notesPolicy; exports.parsePath = _chunk5NXIMZNYjs.parsePath; exports.pathHasManyCardinality = _chunk5NXIMZNYjs.pathHasManyCardinality; exports.renderLabelExpression = _chunk5NXIMZNYjs.renderLabelExpression; exports.resolveMultiplePaths = _chunk5NXIMZNYjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk5NXIMZNYjs.resolveSingleValue; exports.runWithContext = _chunk5NXIMZNYjs.runWithContext; exports.syncAll = _chunk5NXIMZNYjs.syncAll; exports.syncNativeObjects = _chunk5NXIMZNYjs.syncNativeObjects; exports.syncNativeViews = _chunk5NXIMZNYjs.syncNativeViews; exports.traversePath = _chunk5NXIMZNYjs.traversePath; exports.validateFormulaExpression = _chunk5NXIMZNYjs.validateFormulaExpression; exports.validatePath = _chunk5NXIMZNYjs.validatePath; exports.verifyNativeObjectsSync = _chunk5NXIMZNYjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk5NXIMZNYjs.verifyNativeViewsSync; exports.withTenantContext = _chunk5NXIMZNYjs.withTenantContext;
package/dist/runtime.mjs CHANGED
@@ -77,7 +77,7 @@ import {
77
77
  verifyNativeObjectsSync,
78
78
  verifyNativeViewsSync,
79
79
  withTenantContext
80
- } from "./chunk-OXPVVEZS.mjs";
80
+ } from "./chunk-6NQPARLS.mjs";
81
81
  import "./chunk-Y6FXYEAI.mjs";
82
82
  export {
83
83
  AuditService,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/schema",
3
- "version": "0.1.0-alpha.37",
3
+ "version": "0.1.0-alpha.38",
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.37"
26
+ "@stndrds/constants": "0.1.0-alpha.38"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^25.0.3",
@@ -55,6 +55,7 @@
55
55
  "test": "vitest run",
56
56
  "test:ui": "vitest --ui",
57
57
  "test:coverage": "vitest --coverage",
58
- "clean": "rm -rf dist"
58
+ "clean": "rm -rf dist",
59
+ "typecheck": "tsc --noEmit"
59
60
  }
60
61
  }