@stndrds/schema 0.1.0-alpha.47 → 0.1.0-alpha.49

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.
@@ -5010,7 +5010,7 @@ declare function computeRecordStatus(objectDef: ObjectDefinition, data: Record<s
5010
5010
  * Supported cache key types for type-safe cache operations.
5011
5011
  * Used by `cachedBy()` and `cachedList()` helpers in BaseService.
5012
5012
  */
5013
- type CacheKeyType = "record" | "objectSchema" | "objectSchemaByName" | "objectSchemaList" | "objectAttributes" | "attributeById" | "userProfileById" | "userProfileByAuthId" | "userProfileByEmail" | "viewsByObject" | "workflowByName" | "workflowById" | "workflowList" | "relationOptions" | "rollupValue" | "userPermissions" | "recordList" | "searchResults" | "globalSearch" | "allRecordLists" | "allSearchResults" | "allGlobalSearch" | "allSchemas" | "allAttributes" | "allPermissions" | "allRelations" | "allRollups" | "rollupsByRecord" | "allRecords" | "allViews" | "allUserProfiles" | "allWorkflows" | "allForTenant";
5013
+ type CacheKeyType = "record" | "objectSchema" | "objectSchemaByName" | "objectSchemaList" | "objectAttributes" | "attributeById" | "userProfileById" | "userProfileByAuthId" | "userProfileByEmail" | "viewsByObject" | "workflowByName" | "workflowById" | "workflowList" | "relationOptions" | "resolvedRelation" | "rollupValue" | "userPermissions" | "recordList" | "searchResults" | "globalSearch" | "allRecordLists" | "allSearchResults" | "allGlobalSearch" | "allSchemas" | "allAttributes" | "allPermissions" | "allRelations" | "allResolvedRelations" | "resolvedRelationsByRecord" | "resolvedRelationsByAttr" | "allRollups" | "rollupsByRecord" | "allRecords" | "allViews" | "allUserProfiles" | "allWorkflows" | "allForTenant";
5014
5014
  /**
5015
5015
  * Generate a deterministic hash from query options.
5016
5016
  * Keys are sorted recursively to ensure same hash regardless of property order.
@@ -5106,6 +5106,12 @@ declare const cacheKeys: {
5106
5106
  readonly userPermissions: (tenantId: string, userId: string) => string;
5107
5107
  /** Relation options for an attribute */
5108
5108
  readonly relationOptions: (tenantId: string, attrId: string, hash: string) => string;
5109
+ /**
5110
+ * Resolved relation by composite ID.
5111
+ * Composite ID format: `${attributeId}:${recordId}`
5112
+ * Used by cachedByMany in RelationService.resolveIds()
5113
+ */
5114
+ readonly resolvedRelation: (tenantId: string, compositeId: string) => string;
5109
5115
  /** Computed rollup value for a record */
5110
5116
  readonly rollupValue: (tenantId: string, recordId: string, attrName: string) => string;
5111
5117
  /** Individual record by ID */
@@ -5130,6 +5136,19 @@ declare const cacheKeys: {
5130
5136
  readonly allPermissions: (tenantId: string) => string;
5131
5137
  /** All relation cache for a tenant */
5132
5138
  readonly allRelations: (tenantId: string) => string;
5139
+ /** All resolved relations cache for a tenant */
5140
+ readonly allResolvedRelations: (tenantId: string) => string;
5141
+ /**
5142
+ * Resolved relations for a specific record (all attributeId variants).
5143
+ * Pattern matches `relres:${tenantId}:*:${recordId}` to invalidate
5144
+ * all cached labels for a record regardless of which attribute resolved it.
5145
+ */
5146
+ readonly resolvedRelationsByRecord: (tenantId: string, recordId: string) => string;
5147
+ /**
5148
+ * Resolved relations for a specific attribute.
5149
+ * Invalidates when a relation's displayTemplate changes.
5150
+ */
5151
+ readonly resolvedRelationsByAttr: (tenantId: string, attributeId: string) => string;
5133
5152
  /** All rollup cache for a tenant */
5134
5153
  readonly allRollups: (tenantId: string) => string;
5135
5154
  /** All rollups for a specific record */
@@ -5174,6 +5193,8 @@ declare const cacheTtl: {
5174
5193
  readonly permissions: number;
5175
5194
  /** Relation options - medium volatility (5 minutes) */
5176
5195
  readonly relations: number;
5196
+ /** Resolved relations - medium volatility (5 minutes) */
5197
+ readonly resolvedRelations: number;
5177
5198
  /** Rollup values - high volatility (2 minutes) */
5178
5199
  readonly rollup: number;
5179
5200
  /** Individual records - high volatility (1 minute) */
@@ -6740,6 +6761,38 @@ declare abstract class BaseService {
6740
6761
  * ```
6741
6762
  */
6742
6763
  protected invalidateLists(keyType: CacheKeyType, id: string): Promise<void>;
6764
+ /**
6765
+ * Cache multiple resources by ID, fetching only missing ones.
6766
+ * Useful for batch operations with individual caching (e.g., resolveIds).
6767
+ *
6768
+ * Unlike `cachedBy` which caches a single resource, this method:
6769
+ * 1. Checks the cache for each ID in parallel
6770
+ * 2. Collects cache misses
6771
+ * 3. Fetches only missing items via the fetcher
6772
+ * 4. Caches new results individually
6773
+ * 5. Returns all results (cached + freshly fetched)
6774
+ *
6775
+ * @param keyType - Type of cache key (e.g., "resolvedRelation")
6776
+ * @param ids - Resource identifiers to fetch
6777
+ * @param fetcher - Function to fetch missing items (receives only cache-miss IDs)
6778
+ * @param getId - Function to extract ID from a fetched item
6779
+ * @param ttlMs - Optional TTL override
6780
+ *
6781
+ * @example
6782
+ * ```typescript
6783
+ * // Cache relations by composite ID (attributeId:recordId)
6784
+ * return this.cachedByMany(
6785
+ * "resolvedRelation",
6786
+ * ids.map(id => `${attributeId}:${id}`),
6787
+ * async (missingCompositeIds) => {
6788
+ * const missingRecordIds = missingCompositeIds.map(c => c.split(":")[1]);
6789
+ * return this.fetchRelations(missingRecordIds, attributeId);
6790
+ * },
6791
+ * (item) => `${attributeId}:${item.id}`
6792
+ * );
6793
+ * ```
6794
+ */
6795
+ protected cachedByMany<T>(keyType: CacheKeyType, ids: string[], fetcher: (missingIds: string[]) => Promise<T[]>, getId: (item: T) => string, ttlMs?: number): Promise<T[]>;
6743
6796
  }
6744
6797
  /**
6745
6798
  * Abstract base class for repository implementations that operate within a tenant context.
@@ -7793,6 +7846,22 @@ interface RelationServiceOptions {
7793
7846
  */
7794
7847
  queryService?: RecordQueryService;
7795
7848
  }
7849
+ /**
7850
+ * Request item for batch relation resolution
7851
+ */
7852
+ interface ResolveIdsBatchRequest {
7853
+ /** Relation attribute ID */
7854
+ attributeId: string;
7855
+ /** Record IDs to resolve for this attribute */
7856
+ ids: string[];
7857
+ }
7858
+ /**
7859
+ * Response for batch relation resolution
7860
+ * Maps attributeId to resolved options
7861
+ */
7862
+ interface ResolveIdsBatchResponse {
7863
+ [attributeId: string]: RelationOption[];
7864
+ }
7796
7865
  /**
7797
7866
  * Service for validating relation attributes.
7798
7867
  * Ensures referenced records exist and belong to valid target objects.
@@ -7880,8 +7949,8 @@ declare class RelationService extends BaseService {
7880
7949
  * Resolve record IDs to their display labels.
7881
7950
  * Useful for displaying current values in the UI.
7882
7951
  *
7883
- * Uses batch fetching for performance - fetches all records in one query,
7884
- * then groups by objectId to minimize schema lookups.
7952
+ * Uses caching per individual record ID for optimal performance.
7953
+ * Cache key format: `${attributeId}:${recordId}` to handle different displayTemplates.
7885
7954
  *
7886
7955
  * @param ids - Record IDs to resolve
7887
7956
  * @param attributeId - Relation attribute ID to use its displayTemplate for label rendering
@@ -7893,6 +7962,41 @@ declare class RelationService extends BaseService {
7893
7962
  * ```
7894
7963
  */
7895
7964
  resolveIds(ids: string[], attributeId: string): Promise<RelationOption[]>;
7965
+ /**
7966
+ * Resolve multiple attribute/IDs batches in a single operation.
7967
+ * Optimized for DataGrid scenarios with multiple relation columns.
7968
+ *
7969
+ * Benefits over multiple resolveIds() calls:
7970
+ * - Single DB query for all records across all attributes
7971
+ * - Deduplication of records referenced by multiple attributes
7972
+ * - Single schema lookup per objectId
7973
+ *
7974
+ * Uses caching per individual record ID for optimal performance.
7975
+ *
7976
+ * @param requests - Array of { attributeId, ids } to resolve
7977
+ * @returns Map of attributeId to resolved options
7978
+ *
7979
+ * @example
7980
+ * ```typescript
7981
+ * const results = await relationService.resolveIdsBatch([
7982
+ * { attributeId: "attr-company", ids: ["rec-1", "rec-2"] },
7983
+ * { attributeId: "attr-contact", ids: ["rec-3", "rec-4"] },
7984
+ * ]);
7985
+ * // { "attr-company": [...], "attr-contact": [...] }
7986
+ * ```
7987
+ */
7988
+ resolveIdsBatch(requests: ResolveIdsBatchRequest[]): Promise<ResolveIdsBatchResponse>;
7989
+ /**
7990
+ * Internal method to fetch and resolve multiple composite IDs at once.
7991
+ * Optimized for batch operations - single DB query for all records.
7992
+ */
7993
+ private fetchResolveIdsBatch;
7994
+ /**
7995
+ * Internal method to fetch and resolve relation IDs (no caching).
7996
+ * Uses batch fetching for performance - fetches all records in one query,
7997
+ * then groups by objectId to minimize schema lookups.
7998
+ */
7999
+ private fetchResolveIds;
7896
8000
  /**
7897
8001
  * Find a relation attribute by ID.
7898
8002
  * Results are cached if a CacheAdapter is configured.
@@ -11041,4 +11145,4 @@ type RelationLabelResolver = (ids: string[]) => Promise<Map<string, string>>;
11041
11145
  */
11042
11146
  declare function computeLabelWithRelations(template: string, values: Record<string, unknown>, attributes: Attribute[], resolveRelationIds: RelationLabelResolver): Promise<string>;
11043
11147
 
11044
- export { type FlowRow as $, type Attribute as A, type DirectTableTab as B, type CheckboxAttribute as C, type DateAttribute as D, type WorkflowConfig as E, type FileAttribute as F, type Group as G, type SlotMode as H, type InferAttributeValue as I, type AuthMethod as J, type AuthChannel as K, type LocationAttribute as L, type MultiselectAttribute as M, type NumberAttribute as N, type ObjectAction as O, type PhoneAttribute as P, type ParticipantTemplate as Q, type RichtextAttribute as R, type SystemResource as S, type TextAttribute as T, type UserAttribute as U, type ViewLayout as V, type WorkflowTheme as W, type ConditionGroup as X, type ConditionRule as Y, type WorkflowNode as Z, type WorkflowDefinition as _, type SystemAction as a, toSimpleFilterState as a$, type BlockNoteContent as a0, type StatusGroup as a1, type AttributeGroup as a2, type BaseAttribute as a3, type NumberUnit as a4, type DateFormat as a5, type DateValue as a6, type Phone as a7, type Currency as a8, type Location as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type StorageProvider as aD, type FileVisibility as aE, type File as aF, type CreateFile as aG, type UpdateFile as aH, type TextFilterOperator as aI, type NumberFilterOperator as aJ, type CheckboxFilterOperator as aK, type DateFilterOperator as aL, type SelectFilterOperator as aM, type MultiselectFilterOperator as aN, type RelationFilterOperator as aO, type FilterOperator as aP, type RelativeDateValue as aQ, type CurrencyFilterValue as aR, type PhoneFilterValue as aS, type FilterValue as aT, type FilterRule as aU, type ExtendedFilterRule as aV, type FilterCombinator as aW, type FilterGroup as aX, type AdvancedFilterState as aY, isAdvancedFilterState as aZ, toAdvancedFilterState as a_, type LocationGranularity as aa, RELATION_TARGET_ANY as ab, type RelationAttribute as ac, isUniversalRelation as ad, type BlockNoteBlock as ae, type BlockNoteCustomInlineContent as af, type BlockNoteDefaultProps as ag, type BlockNoteInlineContent as ah, type BlockNoteLink as ai, type BlockNoteStyledText as aj, type BlockNoteStyles as ak, type BlockNoteTableCell as al, type BlockNoteTableCellProps as am, type BlockNoteTableContent as an, type PartialBlockNoteBlock as ao, type PartialBlockNoteContent as ap, type PartialBlockNoteInlineContent as aq, type PartialBlockNoteLink as ar, type PartialBlockNoteStyledText as as, type PartialBlockNoteTableCell as at, type PartialBlockNoteTableContent as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type TextAreaAttribute as b, type PolicyContext as b$, type SortDirection as b0, type QueryState as b1, OPERATORS_BY_TYPE as b2, type NoValueOperator as b3, NO_VALUE_OPERATORS as b4, isNoValueOperator as b5, type FlowSlot as b6, type FlowRowField as b7, type FlowPage as b8, type FlowRelation as b9, type ExtractRecordInput as bA, type ExtractRecordInputStrict as bB, type ExtractRecordUpdate as bC, type ExtractRecordUpdateStrict as bD, type ExtractAttributes as bE, type TypedObjectRecord as bF, type ExtractObjectRecord as bG, type ExtractObjectRecordWithCustom as bH, RESERVED_ATTRIBUTE_NAMES as bI, SYSTEM_FIELD_NAMES as bJ, type ReservedAttributeName as bK, type SystemFieldName as bL, type Timestamps as bM, type ObjectAttribute as bN, type CompletionStatus as bO, type ObjectRecord as bP, type PermissionScope as bQ, type Role as bR, type Permission as bS, type UserRoleAssignment as bT, type EffectivePermissions as bU, type ObjectPermissions as bV, type SystemPermissions as bW, type CreateRoleInput as bX, type UpdateRoleInput as bY, type CreatePermissionInput as bZ, type AssignRoleInput as b_, type FlowStatus as ba, type FlowDefinition as bb, isFlowDefinition as bc, isFlowPublished as bd, isSystemFlow as be, type GeocodingSuggestion as bf, type GeocodingAutocompleteParams as bg, type ReverseGeocodingParams as bh, type GeocodingParams as bi, type GeocodingAdapter as bj, NoopGeocodingAdapter as bk, type AttributeSchema as bl, type InferRecordFromSchema as bm, type InferRecordWithRequirements as bn, type TypedAttribute as bo, type AttributeMap as bp, type AddAttribute as bq, type InferRecord as br, type InferRecordInput as bs, type InferRecordUpdate as bt, type CustomAttributeValue as bu, type WithCustomAttributes as bv, type RecordMetadata as bw, type SystemFields as bx, type ExtractRecord as by, type ExtractRecordStrict as bz, type RichtextFeature as c, type SignedLinkAuth as c$, type RecordPolicy as c0, PolicyViolationError as c1, type UserRole as c2, type UserStatus as c3, type UserProfile as c4, type CreateUserProfile as c5, type UpdateUserProfile as c6, type InviteUserInput as c7, type TabType as c8, type FormTab as c9, isConditionRule as cA, isConditionGroup as cB, eq as cC, neq as cD, and as cE, or as cF, inValues as cG, isEmpty as cH, isNotEmpty as cI, type WorkflowSlot as cJ, type NodePosition as cK, type CanvasViewport as cL, type WorkflowLayout as cM, type ParticipantAuthConfig as cN, type WorkflowStatus as cO, isWorkflowDefinition as cP, isWorkflowPublished as cQ, isSystemWorkflow as cR, type WorkflowTransition as cS, type WorkflowError as cT, type PendingAction as cU, type WorkflowInstance as cV, isInstanceTerminal as cW, isInstanceWaiting as cX, canResumeInstance as cY, createStartTransition as cZ, type ParticipationStatus as c_, type CustomTab as ca, type ActivityTab as cb, type NotesTab as cc, type FlowsTab as cd, isFormTab as ce, isTableTab as cf, isDirectTableTab as cg, isInverseTableTab as ch, isCustomTab as ci, isActivityTab as cj, isNotesTab as ck, isFlowsTab as cl, type StartNode as cm, type FormNode as cn, type FormFieldRef as co, type ConditionNode as cp, type EndNode as cq, type WorkflowNodeType as cr, isStartNode as cs, isFormNode as ct, isConditionNode as cu, isEndNode as cv, isSimpleFormNode as cw, isAdvancedFormNode as cx, getNodeOutputs as cy, type ConditionOperator as cz, type CurrencyAttribute as d, createCheckboxValidator as d$, type PinCodeAuth as d0, type ParticipationAuth as d1, type WorkflowParticipation as d2, isSignedLinkAuth as d3, isPinCodeAuth as d4, canParticipate as d5, canAuthenticate as d6, canExecuteNode as d7, type GeneratedDocument as d8, type WorkflowExecutionContext as d9, type ValidationMessages as dA, DEFAULT_VALIDATION_MESSAGES as dB, textConfigSchema as dC, textareaConfigSchema as dD, richtextConfigSchema as dE, numberConfigSchema as dF, checkboxConfigSchema as dG, dateConfigSchema as dH, phoneConfigSchema as dI, currencyConfigSchema as dJ, statusConfigSchema as dK, locationConfigSchema as dL, selectConfigSchema as dM, multiselectConfigSchema as dN, fileConfigSchema as dO, userConfigSchema as dP, relationConfigSchema as dQ, ratingConfigSchema as dR, formulaConfigSchema as dS, rollupConfigSchema as dT, attributeConfigSchemas as dU, getAttributeConfigSchema as dV, validateAttributeConfig as dW, parseAttributeConfig as dX, safeParseAttributeConfig as dY, createTextValidator as dZ, createNumberValidator as d_, createEmptyContext as da, getContextValue as db, setContextValue as dc, mergeFormToSlot as dd, type WorkflowAccessMode as de, type ReadOnlyReason as df, type FormFieldContext as dg, type FormFieldRow as dh, type FormNodeInfo as di, type FormContextResponse as dj, type ThemeLogo as dk, type ThemeColors as dl, type ThemeTypography as dm, DEFAULT_THEME as dn, mergeWithDefaults as dp, generateCssVariables as dq, type Uuid as dr, type TenantId as ds, type UserId as dt, asTenantId as du, asUserId as dv, generateId as dw, generatePrefixedId as dx, registry as dy, viewRegistry as dz, type Option as e, SHORTCUT_TO_FILTER_OPERATOR as e$, createDateValidator as e0, createPhoneValidator as e1, createCurrencyValidator as e2, createStatusValidator as e3, createSelectValidator as e4, createMultiselectValidator as e5, createLocationValidator as e6, createFileValidator as e7, createUserValidator as e8, createSingleRelationValidator as e9, type TokenVerificationResult as eA, PinCodeService as eB, getDefaultPinCodeService as eC, initializePinCodeService as eD, type PinCodeGenerationOptions as eE, type PinCodeVerificationResult as eF, type CacheKeyType as eG, hashOptions as eH, type CacheAdapter as eI, type CacheOptions as eJ, cacheKeys as eK, cacheTtl as eL, defaultTtl as eM, NoopCacheAdapter as eN, type FetchResult as eO, type FormattedRecord as eP, type GroupedFetchResult as eQ, type InsertOptions as eR, type QueryBuilderState as eS, type RegistryMap as eT, type RegistryObjectNames as eU, type ShortcutOperator as eV, createDefaultState as eW, formatRecord as eX, formatRecords as eY, QueryMultipleResultsError as eZ, QueryNoResultError as e_, createMultiRelationValidator as ea, createRelationValidator as eb, createRatingValidator as ec, createFormulaValidator as ed, createRollupValidator as ee, createTextAreaValidator as ef, createRichtextValidator as eg, createAttributeValidator as eh, createFormAttributeValidator as ei, createObjectValidator as ej, type ValidationResult as ek, validateAttribute as el, validateObject as em, validateObjectOrThrow as en, createDraftValidator as eo, validateDraft as ep, validateDraftOrThrow as eq, getMissingRequiredAttributes as er, isRecordComplete as es, computeRecordStatus as et, type DatabaseAdapter as eu, ParticipationTokenService as ev, getDefaultTokenService as ew, initializeTokenService as ex, type ParticipationTokenPayload as ey, type TokenGenerationOptions as ez, type StatusAttribute as f, type PathCardinality as f$, createQueryBuilder as f0, QueryBuilder as f1, type QueryBuilderOptions as f2, type EvaluationResult as f3, type EvaluationTrace as f4, evaluateCondition as f5, evaluate as f6, evaluateWithTrace as f7, TenantContextError as f8, addSchemaToContext as f9, success as fA, wait as fB, ConditionExecutor as fC, EndExecutor as fD, FormExecutor as fE, StartExecutor as fF, evaluateFormula as fG, evaluateFormulaAttribute as fH, evaluateFormulaAttributeWithRelations as fI, evaluateFormulaWithRelations as fJ, evaluateFormulaWithResult as fK, extractFormulaVariables as fL, extractRelationNames as fM, extractRelationReferences as fN, flattenRelationsForEval as fO, formatFormulaResult as fP, hasRelationReferences as fQ, validateFormulaExpression as fR, type FormulaResult as fS, getPathDepth as fT, getRelationPath as fU, getTargetAttributeName as fV, InvalidPathError as fW, MaxDepthExceededError as fX, parsePath as fY, pathHasManyCardinality as fZ, validatePath as f_, getSchemaByNameFromContext as fa, getSchemaContext as fb, getSchemaFromContext as fc, hasSchemaContext as fd, runWithMergedSchemaContext as fe, runWithSchemaContext as ff, type SchemaContext as fg, getContext as fh, getTenantId as fi, getUserId as fj, hasContext as fk, runWithContext as fl, withTenantContext as fm, type TenantContext as fn, createDefaultExecutorRegistry as fo, getDefaultExecutorRegistry as fp, type ExecutorCompleteResult as fq, type ExecutorContext as fr, type ExecutorErrorResult as fs, type ExecutorResult as ft, type ExecutorSuccessResult as fu, type ExecutorWaitResult as fv, type NodeExecutor as fw, complete as fx, error as fy, ExecutorRegistry as fz, type SelectAttribute as g, getPolicy as g$, type PathSegment as g0, type PathSegmentType as g1, type SchemaResolver as g2, resolveMultiplePaths as g3, resolveSingleValue as g4, traversePath as g5, type TraversalOptions as g6, type TraversalResult as g7, type AttributeChange as g8, type HookContext as g9, type CreateCustomObjectInput as gA, type AddAttributeInput as gB, type UpdateObjectInput as gC, type ObjectSchemaServiceOptions as gD, ObjectSchemaService as gE, type RecordServiceOptions as gF, RecordService as gG, type RecordQueryServiceOptions as gH, type QueryOptions as gI, type SearchQueryOptions as gJ, type QueryResult as gK, RecordQueryService as gL, type RelationValidationResult as gM, type RelationValidationError as gN, type RelationOption as gO, type RelationOptionsResponse as gP, type GetRelationOptionsParams as gQ, type RelationServiceOptions as gR, RelationService as gS, type ResolvedRelations as gT, RelationResolverService as gU, type RollupResult as gV, RollupService as gW, type RollupSchedulerOptions as gX, RollupScheduler as gY, applyDefaultValues as gZ, checkPermission as g_, type HookDefinition as ga, type HookHandler as gb, type HookType as gc, NoopHookRegistry as gd, type HookRegistry as ge, createMockAdapter as gf, defaultPolicyRegistry as gg, PolicyRegistry as gh, notesPolicy as gi, type ObjectsRepository as gj, type AttributesRepository as gk, type UserProfilesRepository as gl, type FilesRepository as gm, type ObjectRecordsRepository as gn, type ViewsRepository as go, type WorkflowsRepository as gp, type WorkflowInstancesRepository as gq, type WorkflowParticipationsRepository as gr, type AuditRepository as gs, type PermissionsRepository as gt, BaseService as gu, BaseRepository as gv, type SchemaContextAware as gw, SchemaContextAwareRepository as gx, TenantAwareRepository as gy, TenantAwareService as gz, type SingleRelationAttribute as h, enrichValuesWithSelectLabels as h$, buildPolicyContext as h0, checkRecordAccess as h1, checkRecordModifyOrThrow as h2, checkRecordDeleteOrThrow as h3, computeLabel as h4, type LabelResolver as h5, enrichWithFormulas as h6, enrichRecordsWithFormulas as h7, createContextForCreate as h8, createContextForUpdate as h9, FileService as hA, GeocodingService as hB, GlobalSearchService as hC, type PermissionServiceOptions as hD, PermissionService as hE, type CreateViewInput as hF, type UpdateViewInput as hG, ViewService as hH, type FileContent as hI, type StorageUploadInput as hJ, type StorageUploadResult as hK, type SignedUrlOptions as hL, type StorageAdapter as hM, type UploadFileInput as hN, type SyncResult as hO, type SyncOptions as hP, syncNativeObjects as hQ, verifyNativeObjectsSync as hR, getSyncPreview as hS, type FullSyncResult as hT, type FullSyncOptions as hU, syncAll as hV, DEFAULT_LABEL_FALLBACK as hW, renderLabelExpression as hX, isLabelExpression as hY, extractAttributeNames as hZ, enrichValuesForDisplay as h_, createContextForDelete as ha, createContextForRestore as hb, recalculateParentRollups as hc, type RollupCascadeContext as hd, type CreateWorkflowInput as he, type UpdateWorkflowInput as hf, type WorkflowServiceOptions as hg, WorkflowService as hh, type StartWorkflowInput as hi, type ResumeWorkflowInput as hj, type WorkflowInstanceServiceOptions as hk, WorkflowInstanceService as hl, type CreateParticipationInput as hm, type CreateParticipationResult as hn, type AuthenticationResult as ho, WorkflowParticipationService as hp, type FieldReadOnlyResult as hq, WorkflowRelationService as hr, type UserValidationResult as hs, type UserValidationError as ht, UserService as hu, type UserProfileServiceOptions as hv, UserProfileService as hw, AuditService as hx, buildAuditChanges as hy, type FileServiceOptions as hz, type MultiRelationAttribute as i, extractRelationIds as i0, type RelationLabelResolver as i1, computeLabelWithRelations as i2, type DBObject as i3, type CreateDBObject as i4, type UpdateDBObject as i5, type UpsertDBObject as i6, type DBAttribute as i7, type CreateDBAttribute as i8, type UpdateDBAttribute as i9, verifyNativeViewsSync as iA, getViewSyncPreview as iB, type UpsertDBAttribute as ia, type CreateObjectRecord as ib, type ListOptions as ic, type SearchOptions as id, type GlobalSearchOptions as ie, type GlobalSearchResultItem as ig, type FileListOptions as ih, type DBView as ii, type CreateDBView as ij, type UpdateDBView as ik, type UpsertDBView as il, type DBWorkflow as im, type CreateDBWorkflow as io, type UpdateDBWorkflow as ip, type DBWorkflowInstance as iq, type CreateDBWorkflowInstance as ir, type UpdateDBWorkflowInstance as is, type DBWorkflowParticipation as it, type CreateDBWorkflowParticipation as iu, type UpdateDBWorkflowParticipation as iv, type OperationResult as iw, type ViewSyncResult as ix, type ViewSyncOptions as iy, syncNativeViews as iz, type RelationTarget as j, type RatingAttribute as k, type FormulaAttribute as l, type FormulaReturnType as m, type RollupAttribute as n, type RollupFunction as o, type AttributeType as p, type ObjectDefinition as q, type Field as r, type AttributeGroupField as s, type TableTab as t, type InverseTableTab as u, type ViewDefinition as v, type InstanceStatus as w, type Tab as x, type FilterState as y, type SortRule as z };
11148
+ export { type FlowRow as $, type Attribute as A, type DirectTableTab as B, type CheckboxAttribute as C, type DateAttribute as D, type WorkflowConfig as E, type FileAttribute as F, type Group as G, type SlotMode as H, type InferAttributeValue as I, type AuthMethod as J, type AuthChannel as K, type LocationAttribute as L, type MultiselectAttribute as M, type NumberAttribute as N, type ObjectAction as O, type PhoneAttribute as P, type ParticipantTemplate as Q, type RichtextAttribute as R, type SystemResource as S, type TextAttribute as T, type UserAttribute as U, type ViewLayout as V, type WorkflowTheme as W, type ConditionGroup as X, type ConditionRule as Y, type WorkflowNode as Z, type WorkflowDefinition as _, type SystemAction as a, toSimpleFilterState as a$, type BlockNoteContent as a0, type StatusGroup as a1, type AttributeGroup as a2, type BaseAttribute as a3, type NumberUnit as a4, type DateFormat as a5, type DateValue as a6, type Phone as a7, type Currency as a8, type Location as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type StorageProvider as aD, type FileVisibility as aE, type File as aF, type CreateFile as aG, type UpdateFile as aH, type TextFilterOperator as aI, type NumberFilterOperator as aJ, type CheckboxFilterOperator as aK, type DateFilterOperator as aL, type SelectFilterOperator as aM, type MultiselectFilterOperator as aN, type RelationFilterOperator as aO, type FilterOperator as aP, type RelativeDateValue as aQ, type CurrencyFilterValue as aR, type PhoneFilterValue as aS, type FilterValue as aT, type FilterRule as aU, type ExtendedFilterRule as aV, type FilterCombinator as aW, type FilterGroup as aX, type AdvancedFilterState as aY, isAdvancedFilterState as aZ, toAdvancedFilterState as a_, type LocationGranularity as aa, RELATION_TARGET_ANY as ab, type RelationAttribute as ac, isUniversalRelation as ad, type BlockNoteBlock as ae, type BlockNoteCustomInlineContent as af, type BlockNoteDefaultProps as ag, type BlockNoteInlineContent as ah, type BlockNoteLink as ai, type BlockNoteStyledText as aj, type BlockNoteStyles as ak, type BlockNoteTableCell as al, type BlockNoteTableCellProps as am, type BlockNoteTableContent as an, type PartialBlockNoteBlock as ao, type PartialBlockNoteContent as ap, type PartialBlockNoteInlineContent as aq, type PartialBlockNoteLink as ar, type PartialBlockNoteStyledText as as, type PartialBlockNoteTableCell as at, type PartialBlockNoteTableContent as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type TextAreaAttribute as b, type PolicyContext as b$, type SortDirection as b0, type QueryState as b1, OPERATORS_BY_TYPE as b2, type NoValueOperator as b3, NO_VALUE_OPERATORS as b4, isNoValueOperator as b5, type FlowSlot as b6, type FlowRowField as b7, type FlowPage as b8, type FlowRelation as b9, type ExtractRecordInput as bA, type ExtractRecordInputStrict as bB, type ExtractRecordUpdate as bC, type ExtractRecordUpdateStrict as bD, type ExtractAttributes as bE, type TypedObjectRecord as bF, type ExtractObjectRecord as bG, type ExtractObjectRecordWithCustom as bH, RESERVED_ATTRIBUTE_NAMES as bI, SYSTEM_FIELD_NAMES as bJ, type ReservedAttributeName as bK, type SystemFieldName as bL, type Timestamps as bM, type ObjectAttribute as bN, type CompletionStatus as bO, type ObjectRecord as bP, type PermissionScope as bQ, type Role as bR, type Permission as bS, type UserRoleAssignment as bT, type EffectivePermissions as bU, type ObjectPermissions as bV, type SystemPermissions as bW, type CreateRoleInput as bX, type UpdateRoleInput as bY, type CreatePermissionInput as bZ, type AssignRoleInput as b_, type FlowStatus as ba, type FlowDefinition as bb, isFlowDefinition as bc, isFlowPublished as bd, isSystemFlow as be, type GeocodingSuggestion as bf, type GeocodingAutocompleteParams as bg, type ReverseGeocodingParams as bh, type GeocodingParams as bi, type GeocodingAdapter as bj, NoopGeocodingAdapter as bk, type AttributeSchema as bl, type InferRecordFromSchema as bm, type InferRecordWithRequirements as bn, type TypedAttribute as bo, type AttributeMap as bp, type AddAttribute as bq, type InferRecord as br, type InferRecordInput as bs, type InferRecordUpdate as bt, type CustomAttributeValue as bu, type WithCustomAttributes as bv, type RecordMetadata as bw, type SystemFields as bx, type ExtractRecord as by, type ExtractRecordStrict as bz, type RichtextFeature as c, type SignedLinkAuth as c$, type RecordPolicy as c0, PolicyViolationError as c1, type UserRole as c2, type UserStatus as c3, type UserProfile as c4, type CreateUserProfile as c5, type UpdateUserProfile as c6, type InviteUserInput as c7, type TabType as c8, type FormTab as c9, isConditionRule as cA, isConditionGroup as cB, eq as cC, neq as cD, and as cE, or as cF, inValues as cG, isEmpty as cH, isNotEmpty as cI, type WorkflowSlot as cJ, type NodePosition as cK, type CanvasViewport as cL, type WorkflowLayout as cM, type ParticipantAuthConfig as cN, type WorkflowStatus as cO, isWorkflowDefinition as cP, isWorkflowPublished as cQ, isSystemWorkflow as cR, type WorkflowTransition as cS, type WorkflowError as cT, type PendingAction as cU, type WorkflowInstance as cV, isInstanceTerminal as cW, isInstanceWaiting as cX, canResumeInstance as cY, createStartTransition as cZ, type ParticipationStatus as c_, type CustomTab as ca, type ActivityTab as cb, type NotesTab as cc, type FlowsTab as cd, isFormTab as ce, isTableTab as cf, isDirectTableTab as cg, isInverseTableTab as ch, isCustomTab as ci, isActivityTab as cj, isNotesTab as ck, isFlowsTab as cl, type StartNode as cm, type FormNode as cn, type FormFieldRef as co, type ConditionNode as cp, type EndNode as cq, type WorkflowNodeType as cr, isStartNode as cs, isFormNode as ct, isConditionNode as cu, isEndNode as cv, isSimpleFormNode as cw, isAdvancedFormNode as cx, getNodeOutputs as cy, type ConditionOperator as cz, type CurrencyAttribute as d, createCheckboxValidator as d$, type PinCodeAuth as d0, type ParticipationAuth as d1, type WorkflowParticipation as d2, isSignedLinkAuth as d3, isPinCodeAuth as d4, canParticipate as d5, canAuthenticate as d6, canExecuteNode as d7, type GeneratedDocument as d8, type WorkflowExecutionContext as d9, type ValidationMessages as dA, DEFAULT_VALIDATION_MESSAGES as dB, textConfigSchema as dC, textareaConfigSchema as dD, richtextConfigSchema as dE, numberConfigSchema as dF, checkboxConfigSchema as dG, dateConfigSchema as dH, phoneConfigSchema as dI, currencyConfigSchema as dJ, statusConfigSchema as dK, locationConfigSchema as dL, selectConfigSchema as dM, multiselectConfigSchema as dN, fileConfigSchema as dO, userConfigSchema as dP, relationConfigSchema as dQ, ratingConfigSchema as dR, formulaConfigSchema as dS, rollupConfigSchema as dT, attributeConfigSchemas as dU, getAttributeConfigSchema as dV, validateAttributeConfig as dW, parseAttributeConfig as dX, safeParseAttributeConfig as dY, createTextValidator as dZ, createNumberValidator as d_, createEmptyContext as da, getContextValue as db, setContextValue as dc, mergeFormToSlot as dd, type WorkflowAccessMode as de, type ReadOnlyReason as df, type FormFieldContext as dg, type FormFieldRow as dh, type FormNodeInfo as di, type FormContextResponse as dj, type ThemeLogo as dk, type ThemeColors as dl, type ThemeTypography as dm, DEFAULT_THEME as dn, mergeWithDefaults as dp, generateCssVariables as dq, type Uuid as dr, type TenantId as ds, type UserId as dt, asTenantId as du, asUserId as dv, generateId as dw, generatePrefixedId as dx, registry as dy, viewRegistry as dz, type Option as e, SHORTCUT_TO_FILTER_OPERATOR as e$, createDateValidator as e0, createPhoneValidator as e1, createCurrencyValidator as e2, createStatusValidator as e3, createSelectValidator as e4, createMultiselectValidator as e5, createLocationValidator as e6, createFileValidator as e7, createUserValidator as e8, createSingleRelationValidator as e9, type TokenVerificationResult as eA, PinCodeService as eB, getDefaultPinCodeService as eC, initializePinCodeService as eD, type PinCodeGenerationOptions as eE, type PinCodeVerificationResult as eF, type CacheKeyType as eG, hashOptions as eH, type CacheAdapter as eI, type CacheOptions as eJ, cacheKeys as eK, cacheTtl as eL, defaultTtl as eM, NoopCacheAdapter as eN, type FetchResult as eO, type FormattedRecord as eP, type GroupedFetchResult as eQ, type InsertOptions as eR, type QueryBuilderState as eS, type RegistryMap as eT, type RegistryObjectNames as eU, type ShortcutOperator as eV, createDefaultState as eW, formatRecord as eX, formatRecords as eY, QueryMultipleResultsError as eZ, QueryNoResultError as e_, createMultiRelationValidator as ea, createRelationValidator as eb, createRatingValidator as ec, createFormulaValidator as ed, createRollupValidator as ee, createTextAreaValidator as ef, createRichtextValidator as eg, createAttributeValidator as eh, createFormAttributeValidator as ei, createObjectValidator as ej, type ValidationResult as ek, validateAttribute as el, validateObject as em, validateObjectOrThrow as en, createDraftValidator as eo, validateDraft as ep, validateDraftOrThrow as eq, getMissingRequiredAttributes as er, isRecordComplete as es, computeRecordStatus as et, type DatabaseAdapter as eu, ParticipationTokenService as ev, getDefaultTokenService as ew, initializeTokenService as ex, type ParticipationTokenPayload as ey, type TokenGenerationOptions as ez, type StatusAttribute as f, type PathCardinality as f$, createQueryBuilder as f0, QueryBuilder as f1, type QueryBuilderOptions as f2, type EvaluationResult as f3, type EvaluationTrace as f4, evaluateCondition as f5, evaluate as f6, evaluateWithTrace as f7, TenantContextError as f8, addSchemaToContext as f9, success as fA, wait as fB, ConditionExecutor as fC, EndExecutor as fD, FormExecutor as fE, StartExecutor as fF, evaluateFormula as fG, evaluateFormulaAttribute as fH, evaluateFormulaAttributeWithRelations as fI, evaluateFormulaWithRelations as fJ, evaluateFormulaWithResult as fK, extractFormulaVariables as fL, extractRelationNames as fM, extractRelationReferences as fN, flattenRelationsForEval as fO, formatFormulaResult as fP, hasRelationReferences as fQ, validateFormulaExpression as fR, type FormulaResult as fS, getPathDepth as fT, getRelationPath as fU, getTargetAttributeName as fV, InvalidPathError as fW, MaxDepthExceededError as fX, parsePath as fY, pathHasManyCardinality as fZ, validatePath as f_, getSchemaByNameFromContext as fa, getSchemaContext as fb, getSchemaFromContext as fc, hasSchemaContext as fd, runWithMergedSchemaContext as fe, runWithSchemaContext as ff, type SchemaContext as fg, getContext as fh, getTenantId as fi, getUserId as fj, hasContext as fk, runWithContext as fl, withTenantContext as fm, type TenantContext as fn, createDefaultExecutorRegistry as fo, getDefaultExecutorRegistry as fp, type ExecutorCompleteResult as fq, type ExecutorContext as fr, type ExecutorErrorResult as fs, type ExecutorResult as ft, type ExecutorSuccessResult as fu, type ExecutorWaitResult as fv, type NodeExecutor as fw, complete as fx, error as fy, ExecutorRegistry as fz, type SelectAttribute as g, applyDefaultValues as g$, type PathSegment as g0, type PathSegmentType as g1, type SchemaResolver as g2, resolveMultiplePaths as g3, resolveSingleValue as g4, traversePath as g5, type TraversalOptions as g6, type TraversalResult as g7, type AttributeChange as g8, type HookContext as g9, type CreateCustomObjectInput as gA, type AddAttributeInput as gB, type UpdateObjectInput as gC, type ObjectSchemaServiceOptions as gD, ObjectSchemaService as gE, type RecordServiceOptions as gF, RecordService as gG, type RecordQueryServiceOptions as gH, type QueryOptions as gI, type SearchQueryOptions as gJ, type QueryResult as gK, RecordQueryService as gL, type RelationValidationResult as gM, type RelationValidationError as gN, type RelationOption as gO, type RelationOptionsResponse as gP, type GetRelationOptionsParams as gQ, type RelationServiceOptions as gR, type ResolveIdsBatchRequest as gS, type ResolveIdsBatchResponse as gT, RelationService as gU, type ResolvedRelations as gV, RelationResolverService as gW, type RollupResult as gX, RollupService as gY, type RollupSchedulerOptions as gZ, RollupScheduler as g_, type HookDefinition as ga, type HookHandler as gb, type HookType as gc, NoopHookRegistry as gd, type HookRegistry as ge, createMockAdapter as gf, defaultPolicyRegistry as gg, PolicyRegistry as gh, notesPolicy as gi, type ObjectsRepository as gj, type AttributesRepository as gk, type UserProfilesRepository as gl, type FilesRepository as gm, type ObjectRecordsRepository as gn, type ViewsRepository as go, type WorkflowsRepository as gp, type WorkflowInstancesRepository as gq, type WorkflowParticipationsRepository as gr, type AuditRepository as gs, type PermissionsRepository as gt, BaseService as gu, BaseRepository as gv, type SchemaContextAware as gw, SchemaContextAwareRepository as gx, TenantAwareRepository as gy, TenantAwareService as gz, type SingleRelationAttribute as h, extractAttributeNames as h$, checkPermission as h0, getPolicy as h1, buildPolicyContext as h2, checkRecordAccess as h3, checkRecordModifyOrThrow as h4, checkRecordDeleteOrThrow as h5, computeLabel as h6, type LabelResolver as h7, enrichWithFormulas as h8, enrichRecordsWithFormulas as h9, buildAuditChanges as hA, type FileServiceOptions as hB, FileService as hC, GeocodingService as hD, GlobalSearchService as hE, type PermissionServiceOptions as hF, PermissionService as hG, type CreateViewInput as hH, type UpdateViewInput as hI, ViewService as hJ, type FileContent as hK, type StorageUploadInput as hL, type StorageUploadResult as hM, type SignedUrlOptions as hN, type StorageAdapter as hO, type UploadFileInput as hP, type SyncResult as hQ, type SyncOptions as hR, syncNativeObjects as hS, verifyNativeObjectsSync as hT, getSyncPreview as hU, type FullSyncResult as hV, type FullSyncOptions as hW, syncAll as hX, DEFAULT_LABEL_FALLBACK as hY, renderLabelExpression as hZ, isLabelExpression as h_, createContextForCreate as ha, createContextForUpdate as hb, createContextForDelete as hc, createContextForRestore as hd, recalculateParentRollups as he, type RollupCascadeContext as hf, type CreateWorkflowInput as hg, type UpdateWorkflowInput as hh, type WorkflowServiceOptions as hi, WorkflowService as hj, type StartWorkflowInput as hk, type ResumeWorkflowInput as hl, type WorkflowInstanceServiceOptions as hm, WorkflowInstanceService as hn, type CreateParticipationInput as ho, type CreateParticipationResult as hp, type AuthenticationResult as hq, WorkflowParticipationService as hr, type FieldReadOnlyResult as hs, WorkflowRelationService as ht, type UserValidationResult as hu, type UserValidationError as hv, UserService as hw, type UserProfileServiceOptions as hx, UserProfileService as hy, AuditService as hz, type MultiRelationAttribute as i, enrichValuesForDisplay as i0, enrichValuesWithSelectLabels as i1, extractRelationIds as i2, type RelationLabelResolver as i3, computeLabelWithRelations as i4, type DBObject as i5, type CreateDBObject as i6, type UpdateDBObject as i7, type UpsertDBObject as i8, type DBAttribute as i9, type ViewSyncOptions as iA, syncNativeViews as iB, verifyNativeViewsSync as iC, getViewSyncPreview as iD, type CreateDBAttribute as ia, type UpdateDBAttribute as ib, type UpsertDBAttribute as ic, type CreateObjectRecord as id, type ListOptions as ie, type SearchOptions as ig, type GlobalSearchOptions as ih, type GlobalSearchResultItem as ii, type FileListOptions as ij, type DBView as ik, type CreateDBView as il, type UpdateDBView as im, type UpsertDBView as io, type DBWorkflow as ip, type CreateDBWorkflow as iq, type UpdateDBWorkflow as ir, type DBWorkflowInstance as is, type CreateDBWorkflowInstance as it, type UpdateDBWorkflowInstance as iu, type DBWorkflowParticipation as iv, type CreateDBWorkflowParticipation as iw, type UpdateDBWorkflowParticipation as ix, type OperationResult as iy, type ViewSyncResult as iz, type RelationTarget as j, type RatingAttribute as k, type FormulaAttribute as l, type FormulaReturnType as m, type RollupAttribute as n, type RollupFunction as o, type AttributeType as p, type ObjectDefinition as q, type Field as r, type AttributeGroupField as s, type TableTab as t, type InverseTableTab as u, type ViewDefinition as v, type InstanceStatus as w, type Tab as x, type FilterState as y, type SortRule as z };
@@ -1,3 +1,3 @@
1
- export { gB as AddAttributeInput, g8 as AttributeChange, gk as AttributesRepository, gs as AuditRepository, hx as AuditService, ho as AuthenticationResult, gv as BaseRepository, gu as BaseService, eI as CacheAdapter, eG as CacheKeyType, eJ as CacheOptions, bO as CompletionStatus, fC as ConditionExecutor, gA as CreateCustomObjectInput, i8 as CreateDBAttribute, i4 as CreateDBObject, ij as CreateDBView, io as CreateDBWorkflow, ir as CreateDBWorkflowInstance, iu as CreateDBWorkflowParticipation, ib as CreateObjectRecord, hm as CreateParticipationInput, hn as CreateParticipationResult, hF as CreateViewInput, he as CreateWorkflowInput, i7 as DBAttribute, i3 as DBObject, ii as DBView, im as DBWorkflow, iq as DBWorkflowInstance, it as DBWorkflowParticipation, hW as DEFAULT_LABEL_FALLBACK, eu as DatabaseAdapter, fD as EndExecutor, f3 as EvaluationResult, f4 as EvaluationTrace, fq as ExecutorCompleteResult, fr as ExecutorContext, fs as ExecutorErrorResult, fz as ExecutorRegistry, ft as ExecutorResult, fu as ExecutorSuccessResult, fv as ExecutorWaitResult, eO as FetchResult, hq as FieldReadOnlyResult, hI as FileContent, ih as FileListOptions, hA as FileService, hz as FileServiceOptions, gm as FilesRepository, fE as FormExecutor, eP as FormattedRecord, fS as FormulaResult, hU as FullSyncOptions, hT as FullSyncResult, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, hB as GeocodingService, bf as GeocodingSuggestion, gQ as GetRelationOptionsParams, ie as GlobalSearchOptions, ig as GlobalSearchResultItem, hC as GlobalSearchService, eQ as GroupedFetchResult, g9 as HookContext, ga as HookDefinition, gb as HookHandler, ge as HookRegistry, gc as HookType, eR as InsertOptions, fW as InvalidPathError, h5 as LabelResolver, ic as ListOptions, fX as MaxDepthExceededError, fw as NodeExecutor, eN as NoopCacheAdapter, bk as NoopGeocodingAdapter, gd as NoopHookRegistry, gn as ObjectRecordsRepository, gE as ObjectSchemaService, gD as ObjectSchemaServiceOptions, gj as ObjectsRepository, iw as OperationResult, ey as ParticipationTokenPayload, ev as ParticipationTokenService, f$ as PathCardinality, g0 as PathSegment, g1 as PathSegmentType, hE as PermissionService, hD as PermissionServiceOptions, gt as PermissionsRepository, eE as PinCodeGenerationOptions, eB as PinCodeService, eF as PinCodeVerificationResult, b$ as PolicyContext, gh as PolicyRegistry, c1 as PolicyViolationError, f1 as QueryBuilder, f2 as QueryBuilderOptions, eS as QueryBuilderState, eZ as QueryMultipleResultsError, e_ as QueryNoResultError, gI as QueryOptions, gK as QueryResult, c0 as RecordPolicy, gL as RecordQueryService, gH as RecordQueryServiceOptions, gG as RecordService, gF as RecordServiceOptions, eT as RegistryMap, eU as RegistryObjectNames, i1 as RelationLabelResolver, gO as RelationOption, gP as RelationOptionsResponse, gU as RelationResolverService, gS as RelationService, gR as RelationServiceOptions, gN as RelationValidationError, gM as RelationValidationResult, gT as ResolvedRelations, hj as ResumeWorkflowInput, bh as ReverseGeocodingParams, hd as RollupCascadeContext, gV as RollupResult, gY as RollupScheduler, gX as RollupSchedulerOptions, gW as RollupService, e$ as SHORTCUT_TO_FILTER_OPERATOR, fg as SchemaContext, gw as SchemaContextAware, gx as SchemaContextAwareRepository, g2 as SchemaResolver, id as SearchOptions, gJ as SearchQueryOptions, eV as ShortcutOperator, hL as SignedUrlOptions, fF as StartExecutor, hi as StartWorkflowInput, hM as StorageAdapter, hJ as StorageUploadInput, hK as StorageUploadResult, hP as SyncOptions, hO as SyncResult, gy as TenantAwareRepository, gz as TenantAwareService, fn as TenantContext, f8 as TenantContextError, ez as TokenGenerationOptions, eA as TokenVerificationResult, g6 as TraversalOptions, g7 as TraversalResult, i9 as UpdateDBAttribute, i5 as UpdateDBObject, ik as UpdateDBView, ip as UpdateDBWorkflow, is as UpdateDBWorkflowInstance, iv as UpdateDBWorkflowParticipation, gC as UpdateObjectInput, hG as UpdateViewInput, hf as UpdateWorkflowInput, hN as UploadFileInput, ia as UpsertDBAttribute, i6 as UpsertDBObject, il as UpsertDBView, hw as UserProfileService, hv as UserProfileServiceOptions, gl as UserProfilesRepository, hu as UserService, ht as UserValidationError, hs as UserValidationResult, hH as ViewService, iy as ViewSyncOptions, ix as ViewSyncResult, go as ViewsRepository, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, gq as WorkflowInstancesRepository, hp as WorkflowParticipationService, gr as WorkflowParticipationsRepository, hr as WorkflowRelationService, hh as WorkflowService, hg as WorkflowServiceOptions, gp as WorkflowsRepository, f9 as addSchemaToContext, gZ as applyDefaultValues, hy as buildAuditChanges, h0 as buildPolicyContext, eK as cacheKeys, eL as cacheTtl, g_ as checkPermission, h1 as checkRecordAccess, h3 as checkRecordDeleteOrThrow, h2 as checkRecordModifyOrThrow, fx as complete, h4 as computeLabel, i2 as computeLabelWithRelations, h8 as createContextForCreate, ha as createContextForDelete, hb as createContextForRestore, h9 as createContextForUpdate, fo as createDefaultExecutorRegistry, eW as createDefaultState, gf as createMockAdapter, f0 as createQueryBuilder, gg as defaultPolicyRegistry, eM as defaultTtl, h7 as enrichRecordsWithFormulas, h_ as enrichValuesForDisplay, h$ as enrichValuesWithSelectLabels, h6 as enrichWithFormulas, fy as error, f6 as evaluate, f5 as evaluateCondition, fG as evaluateFormula, fH as evaluateFormulaAttribute, fI as evaluateFormulaAttributeWithRelations, fJ as evaluateFormulaWithRelations, fK as evaluateFormulaWithResult, f7 as evaluateWithTrace, hZ as extractAttributeNames, fL as extractFormulaVariables, i0 as extractRelationIds, fM as extractRelationNames, fN as extractRelationReferences, fO as flattenRelationsForEval, fP as formatFormulaResult, eX as formatRecord, eY as formatRecords, fh as getContext, fp as getDefaultExecutorRegistry, eC as getDefaultPinCodeService, ew as getDefaultTokenService, fT as getPathDepth, g$ as getPolicy, fU as getRelationPath, fa as getSchemaByNameFromContext, fb as getSchemaContext, fc as getSchemaFromContext, hS as getSyncPreview, fV as getTargetAttributeName, fi as getTenantId, fj as getUserId, iB as getViewSyncPreview, fk as hasContext, fQ as hasRelationReferences, fd as hasSchemaContext, eH as hashOptions, eD as initializePinCodeService, ex as initializeTokenService, hY as isLabelExpression, gi as notesPolicy, fY as parsePath, fZ as pathHasManyCardinality, hc as recalculateParentRollups, hX as renderLabelExpression, g3 as resolveMultiplePaths, g4 as resolveSingleValue, fl as runWithContext, fe as runWithMergedSchemaContext, ff as runWithSchemaContext, fA as success, hV as syncAll, hQ as syncNativeObjects, iz as syncNativeViews, g5 as traversePath, fR as validateFormulaExpression, f_ as validatePath, hR as verifyNativeObjectsSync, iA as verifyNativeViewsSync, fB as wait, fm as withTenantContext } from './runtime-BOg0C4ev.mjs';
1
+ export { gB as AddAttributeInput, g8 as AttributeChange, gk as AttributesRepository, gs as AuditRepository, hz as AuditService, hq as AuthenticationResult, gv as BaseRepository, gu as BaseService, eI as CacheAdapter, eG as CacheKeyType, eJ as CacheOptions, bO as CompletionStatus, fC as ConditionExecutor, gA as CreateCustomObjectInput, ia as CreateDBAttribute, i6 as CreateDBObject, il as CreateDBView, iq as CreateDBWorkflow, it as CreateDBWorkflowInstance, iw as CreateDBWorkflowParticipation, id as CreateObjectRecord, ho as CreateParticipationInput, hp as CreateParticipationResult, hH as CreateViewInput, hg as CreateWorkflowInput, i9 as DBAttribute, i5 as DBObject, ik as DBView, ip as DBWorkflow, is as DBWorkflowInstance, iv as DBWorkflowParticipation, hY as DEFAULT_LABEL_FALLBACK, eu as DatabaseAdapter, fD as EndExecutor, f3 as EvaluationResult, f4 as EvaluationTrace, fq as ExecutorCompleteResult, fr as ExecutorContext, fs as ExecutorErrorResult, fz as ExecutorRegistry, ft as ExecutorResult, fu as ExecutorSuccessResult, fv as ExecutorWaitResult, eO as FetchResult, hs as FieldReadOnlyResult, hK as FileContent, ij as FileListOptions, hC as FileService, hB as FileServiceOptions, gm as FilesRepository, fE as FormExecutor, eP as FormattedRecord, fS as FormulaResult, hW as FullSyncOptions, hV as FullSyncResult, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, hD as GeocodingService, bf as GeocodingSuggestion, gQ as GetRelationOptionsParams, ih as GlobalSearchOptions, ii as GlobalSearchResultItem, hE as GlobalSearchService, eQ as GroupedFetchResult, g9 as HookContext, ga as HookDefinition, gb as HookHandler, ge as HookRegistry, gc as HookType, eR as InsertOptions, fW as InvalidPathError, h7 as LabelResolver, ie as ListOptions, fX as MaxDepthExceededError, fw as NodeExecutor, eN as NoopCacheAdapter, bk as NoopGeocodingAdapter, gd as NoopHookRegistry, gn as ObjectRecordsRepository, gE as ObjectSchemaService, gD as ObjectSchemaServiceOptions, gj as ObjectsRepository, iy as OperationResult, ey as ParticipationTokenPayload, ev as ParticipationTokenService, f$ as PathCardinality, g0 as PathSegment, g1 as PathSegmentType, hG as PermissionService, hF as PermissionServiceOptions, gt as PermissionsRepository, eE as PinCodeGenerationOptions, eB as PinCodeService, eF as PinCodeVerificationResult, b$ as PolicyContext, gh as PolicyRegistry, c1 as PolicyViolationError, f1 as QueryBuilder, f2 as QueryBuilderOptions, eS as QueryBuilderState, eZ as QueryMultipleResultsError, e_ as QueryNoResultError, gI as QueryOptions, gK as QueryResult, c0 as RecordPolicy, gL as RecordQueryService, gH as RecordQueryServiceOptions, gG as RecordService, gF as RecordServiceOptions, eT as RegistryMap, eU as RegistryObjectNames, i3 as RelationLabelResolver, gO as RelationOption, gP as RelationOptionsResponse, gW as RelationResolverService, gU as RelationService, gR as RelationServiceOptions, gN as RelationValidationError, gM as RelationValidationResult, gS as ResolveIdsBatchRequest, gT as ResolveIdsBatchResponse, gV as ResolvedRelations, hl as ResumeWorkflowInput, bh as ReverseGeocodingParams, hf as RollupCascadeContext, gX as RollupResult, g_ as RollupScheduler, gZ as RollupSchedulerOptions, gY as RollupService, e$ as SHORTCUT_TO_FILTER_OPERATOR, fg as SchemaContext, gw as SchemaContextAware, gx as SchemaContextAwareRepository, g2 as SchemaResolver, ig as SearchOptions, gJ as SearchQueryOptions, eV as ShortcutOperator, hN as SignedUrlOptions, fF as StartExecutor, hk as StartWorkflowInput, hO as StorageAdapter, hL as StorageUploadInput, hM as StorageUploadResult, hR as SyncOptions, hQ as SyncResult, gy as TenantAwareRepository, gz as TenantAwareService, fn as TenantContext, f8 as TenantContextError, ez as TokenGenerationOptions, eA as TokenVerificationResult, g6 as TraversalOptions, g7 as TraversalResult, ib as UpdateDBAttribute, i7 as UpdateDBObject, im as UpdateDBView, ir as UpdateDBWorkflow, iu as UpdateDBWorkflowInstance, ix as UpdateDBWorkflowParticipation, gC as UpdateObjectInput, hI as UpdateViewInput, hh as UpdateWorkflowInput, hP as UploadFileInput, ic as UpsertDBAttribute, i8 as UpsertDBObject, io as UpsertDBView, hy as UserProfileService, hx as UserProfileServiceOptions, gl as UserProfilesRepository, hw as UserService, hv as UserValidationError, hu as UserValidationResult, hJ as ViewService, iA as ViewSyncOptions, iz as ViewSyncResult, go as ViewsRepository, hn as WorkflowInstanceService, hm as WorkflowInstanceServiceOptions, gq as WorkflowInstancesRepository, hr as WorkflowParticipationService, gr as WorkflowParticipationsRepository, ht as WorkflowRelationService, hj as WorkflowService, hi as WorkflowServiceOptions, gp as WorkflowsRepository, f9 as addSchemaToContext, g$ as applyDefaultValues, hA as buildAuditChanges, h2 as buildPolicyContext, eK as cacheKeys, eL as cacheTtl, h0 as checkPermission, h3 as checkRecordAccess, h5 as checkRecordDeleteOrThrow, h4 as checkRecordModifyOrThrow, fx as complete, h6 as computeLabel, i4 as computeLabelWithRelations, ha as createContextForCreate, hc as createContextForDelete, hd as createContextForRestore, hb as createContextForUpdate, fo as createDefaultExecutorRegistry, eW as createDefaultState, gf as createMockAdapter, f0 as createQueryBuilder, gg as defaultPolicyRegistry, eM as defaultTtl, h9 as enrichRecordsWithFormulas, i0 as enrichValuesForDisplay, i1 as enrichValuesWithSelectLabels, h8 as enrichWithFormulas, fy as error, f6 as evaluate, f5 as evaluateCondition, fG as evaluateFormula, fH as evaluateFormulaAttribute, fI as evaluateFormulaAttributeWithRelations, fJ as evaluateFormulaWithRelations, fK as evaluateFormulaWithResult, f7 as evaluateWithTrace, h$ as extractAttributeNames, fL as extractFormulaVariables, i2 as extractRelationIds, fM as extractRelationNames, fN as extractRelationReferences, fO as flattenRelationsForEval, fP as formatFormulaResult, eX as formatRecord, eY as formatRecords, fh as getContext, fp as getDefaultExecutorRegistry, eC as getDefaultPinCodeService, ew as getDefaultTokenService, fT as getPathDepth, h1 as getPolicy, fU as getRelationPath, fa as getSchemaByNameFromContext, fb as getSchemaContext, fc as getSchemaFromContext, hU as getSyncPreview, fV as getTargetAttributeName, fi as getTenantId, fj as getUserId, iD as getViewSyncPreview, fk as hasContext, fQ as hasRelationReferences, fd as hasSchemaContext, eH as hashOptions, eD as initializePinCodeService, ex as initializeTokenService, h_ as isLabelExpression, gi as notesPolicy, fY as parsePath, fZ as pathHasManyCardinality, he as recalculateParentRollups, hZ as renderLabelExpression, g3 as resolveMultiplePaths, g4 as resolveSingleValue, fl as runWithContext, fe as runWithMergedSchemaContext, ff as runWithSchemaContext, fA as success, hX as syncAll, hS as syncNativeObjects, iB as syncNativeViews, g5 as traversePath, fR as validateFormulaExpression, f_ as validatePath, hT as verifyNativeObjectsSync, iC as verifyNativeViewsSync, fB as wait, fm as withTenantContext } from './runtime-BbM_jyVU.mjs';
2
2
  import '@stndrds/constants';
3
3
  import 'zod';
package/dist/runtime.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { gB as AddAttributeInput, g8 as AttributeChange, gk as AttributesRepository, gs as AuditRepository, hx as AuditService, ho as AuthenticationResult, gv as BaseRepository, gu as BaseService, eI as CacheAdapter, eG as CacheKeyType, eJ as CacheOptions, bO as CompletionStatus, fC as ConditionExecutor, gA as CreateCustomObjectInput, i8 as CreateDBAttribute, i4 as CreateDBObject, ij as CreateDBView, io as CreateDBWorkflow, ir as CreateDBWorkflowInstance, iu as CreateDBWorkflowParticipation, ib as CreateObjectRecord, hm as CreateParticipationInput, hn as CreateParticipationResult, hF as CreateViewInput, he as CreateWorkflowInput, i7 as DBAttribute, i3 as DBObject, ii as DBView, im as DBWorkflow, iq as DBWorkflowInstance, it as DBWorkflowParticipation, hW as DEFAULT_LABEL_FALLBACK, eu as DatabaseAdapter, fD as EndExecutor, f3 as EvaluationResult, f4 as EvaluationTrace, fq as ExecutorCompleteResult, fr as ExecutorContext, fs as ExecutorErrorResult, fz as ExecutorRegistry, ft as ExecutorResult, fu as ExecutorSuccessResult, fv as ExecutorWaitResult, eO as FetchResult, hq as FieldReadOnlyResult, hI as FileContent, ih as FileListOptions, hA as FileService, hz as FileServiceOptions, gm as FilesRepository, fE as FormExecutor, eP as FormattedRecord, fS as FormulaResult, hU as FullSyncOptions, hT as FullSyncResult, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, hB as GeocodingService, bf as GeocodingSuggestion, gQ as GetRelationOptionsParams, ie as GlobalSearchOptions, ig as GlobalSearchResultItem, hC as GlobalSearchService, eQ as GroupedFetchResult, g9 as HookContext, ga as HookDefinition, gb as HookHandler, ge as HookRegistry, gc as HookType, eR as InsertOptions, fW as InvalidPathError, h5 as LabelResolver, ic as ListOptions, fX as MaxDepthExceededError, fw as NodeExecutor, eN as NoopCacheAdapter, bk as NoopGeocodingAdapter, gd as NoopHookRegistry, gn as ObjectRecordsRepository, gE as ObjectSchemaService, gD as ObjectSchemaServiceOptions, gj as ObjectsRepository, iw as OperationResult, ey as ParticipationTokenPayload, ev as ParticipationTokenService, f$ as PathCardinality, g0 as PathSegment, g1 as PathSegmentType, hE as PermissionService, hD as PermissionServiceOptions, gt as PermissionsRepository, eE as PinCodeGenerationOptions, eB as PinCodeService, eF as PinCodeVerificationResult, b$ as PolicyContext, gh as PolicyRegistry, c1 as PolicyViolationError, f1 as QueryBuilder, f2 as QueryBuilderOptions, eS as QueryBuilderState, eZ as QueryMultipleResultsError, e_ as QueryNoResultError, gI as QueryOptions, gK as QueryResult, c0 as RecordPolicy, gL as RecordQueryService, gH as RecordQueryServiceOptions, gG as RecordService, gF as RecordServiceOptions, eT as RegistryMap, eU as RegistryObjectNames, i1 as RelationLabelResolver, gO as RelationOption, gP as RelationOptionsResponse, gU as RelationResolverService, gS as RelationService, gR as RelationServiceOptions, gN as RelationValidationError, gM as RelationValidationResult, gT as ResolvedRelations, hj as ResumeWorkflowInput, bh as ReverseGeocodingParams, hd as RollupCascadeContext, gV as RollupResult, gY as RollupScheduler, gX as RollupSchedulerOptions, gW as RollupService, e$ as SHORTCUT_TO_FILTER_OPERATOR, fg as SchemaContext, gw as SchemaContextAware, gx as SchemaContextAwareRepository, g2 as SchemaResolver, id as SearchOptions, gJ as SearchQueryOptions, eV as ShortcutOperator, hL as SignedUrlOptions, fF as StartExecutor, hi as StartWorkflowInput, hM as StorageAdapter, hJ as StorageUploadInput, hK as StorageUploadResult, hP as SyncOptions, hO as SyncResult, gy as TenantAwareRepository, gz as TenantAwareService, fn as TenantContext, f8 as TenantContextError, ez as TokenGenerationOptions, eA as TokenVerificationResult, g6 as TraversalOptions, g7 as TraversalResult, i9 as UpdateDBAttribute, i5 as UpdateDBObject, ik as UpdateDBView, ip as UpdateDBWorkflow, is as UpdateDBWorkflowInstance, iv as UpdateDBWorkflowParticipation, gC as UpdateObjectInput, hG as UpdateViewInput, hf as UpdateWorkflowInput, hN as UploadFileInput, ia as UpsertDBAttribute, i6 as UpsertDBObject, il as UpsertDBView, hw as UserProfileService, hv as UserProfileServiceOptions, gl as UserProfilesRepository, hu as UserService, ht as UserValidationError, hs as UserValidationResult, hH as ViewService, iy as ViewSyncOptions, ix as ViewSyncResult, go as ViewsRepository, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, gq as WorkflowInstancesRepository, hp as WorkflowParticipationService, gr as WorkflowParticipationsRepository, hr as WorkflowRelationService, hh as WorkflowService, hg as WorkflowServiceOptions, gp as WorkflowsRepository, f9 as addSchemaToContext, gZ as applyDefaultValues, hy as buildAuditChanges, h0 as buildPolicyContext, eK as cacheKeys, eL as cacheTtl, g_ as checkPermission, h1 as checkRecordAccess, h3 as checkRecordDeleteOrThrow, h2 as checkRecordModifyOrThrow, fx as complete, h4 as computeLabel, i2 as computeLabelWithRelations, h8 as createContextForCreate, ha as createContextForDelete, hb as createContextForRestore, h9 as createContextForUpdate, fo as createDefaultExecutorRegistry, eW as createDefaultState, gf as createMockAdapter, f0 as createQueryBuilder, gg as defaultPolicyRegistry, eM as defaultTtl, h7 as enrichRecordsWithFormulas, h_ as enrichValuesForDisplay, h$ as enrichValuesWithSelectLabels, h6 as enrichWithFormulas, fy as error, f6 as evaluate, f5 as evaluateCondition, fG as evaluateFormula, fH as evaluateFormulaAttribute, fI as evaluateFormulaAttributeWithRelations, fJ as evaluateFormulaWithRelations, fK as evaluateFormulaWithResult, f7 as evaluateWithTrace, hZ as extractAttributeNames, fL as extractFormulaVariables, i0 as extractRelationIds, fM as extractRelationNames, fN as extractRelationReferences, fO as flattenRelationsForEval, fP as formatFormulaResult, eX as formatRecord, eY as formatRecords, fh as getContext, fp as getDefaultExecutorRegistry, eC as getDefaultPinCodeService, ew as getDefaultTokenService, fT as getPathDepth, g$ as getPolicy, fU as getRelationPath, fa as getSchemaByNameFromContext, fb as getSchemaContext, fc as getSchemaFromContext, hS as getSyncPreview, fV as getTargetAttributeName, fi as getTenantId, fj as getUserId, iB as getViewSyncPreview, fk as hasContext, fQ as hasRelationReferences, fd as hasSchemaContext, eH as hashOptions, eD as initializePinCodeService, ex as initializeTokenService, hY as isLabelExpression, gi as notesPolicy, fY as parsePath, fZ as pathHasManyCardinality, hc as recalculateParentRollups, hX as renderLabelExpression, g3 as resolveMultiplePaths, g4 as resolveSingleValue, fl as runWithContext, fe as runWithMergedSchemaContext, ff as runWithSchemaContext, fA as success, hV as syncAll, hQ as syncNativeObjects, iz as syncNativeViews, g5 as traversePath, fR as validateFormulaExpression, f_ as validatePath, hR as verifyNativeObjectsSync, iA as verifyNativeViewsSync, fB as wait, fm as withTenantContext } from './runtime-BOg0C4ev.js';
1
+ export { gB as AddAttributeInput, g8 as AttributeChange, gk as AttributesRepository, gs as AuditRepository, hz as AuditService, hq as AuthenticationResult, gv as BaseRepository, gu as BaseService, eI as CacheAdapter, eG as CacheKeyType, eJ as CacheOptions, bO as CompletionStatus, fC as ConditionExecutor, gA as CreateCustomObjectInput, ia as CreateDBAttribute, i6 as CreateDBObject, il as CreateDBView, iq as CreateDBWorkflow, it as CreateDBWorkflowInstance, iw as CreateDBWorkflowParticipation, id as CreateObjectRecord, ho as CreateParticipationInput, hp as CreateParticipationResult, hH as CreateViewInput, hg as CreateWorkflowInput, i9 as DBAttribute, i5 as DBObject, ik as DBView, ip as DBWorkflow, is as DBWorkflowInstance, iv as DBWorkflowParticipation, hY as DEFAULT_LABEL_FALLBACK, eu as DatabaseAdapter, fD as EndExecutor, f3 as EvaluationResult, f4 as EvaluationTrace, fq as ExecutorCompleteResult, fr as ExecutorContext, fs as ExecutorErrorResult, fz as ExecutorRegistry, ft as ExecutorResult, fu as ExecutorSuccessResult, fv as ExecutorWaitResult, eO as FetchResult, hs as FieldReadOnlyResult, hK as FileContent, ij as FileListOptions, hC as FileService, hB as FileServiceOptions, gm as FilesRepository, fE as FormExecutor, eP as FormattedRecord, fS as FormulaResult, hW as FullSyncOptions, hV as FullSyncResult, bj as GeocodingAdapter, bg as GeocodingAutocompleteParams, bi as GeocodingParams, hD as GeocodingService, bf as GeocodingSuggestion, gQ as GetRelationOptionsParams, ih as GlobalSearchOptions, ii as GlobalSearchResultItem, hE as GlobalSearchService, eQ as GroupedFetchResult, g9 as HookContext, ga as HookDefinition, gb as HookHandler, ge as HookRegistry, gc as HookType, eR as InsertOptions, fW as InvalidPathError, h7 as LabelResolver, ie as ListOptions, fX as MaxDepthExceededError, fw as NodeExecutor, eN as NoopCacheAdapter, bk as NoopGeocodingAdapter, gd as NoopHookRegistry, gn as ObjectRecordsRepository, gE as ObjectSchemaService, gD as ObjectSchemaServiceOptions, gj as ObjectsRepository, iy as OperationResult, ey as ParticipationTokenPayload, ev as ParticipationTokenService, f$ as PathCardinality, g0 as PathSegment, g1 as PathSegmentType, hG as PermissionService, hF as PermissionServiceOptions, gt as PermissionsRepository, eE as PinCodeGenerationOptions, eB as PinCodeService, eF as PinCodeVerificationResult, b$ as PolicyContext, gh as PolicyRegistry, c1 as PolicyViolationError, f1 as QueryBuilder, f2 as QueryBuilderOptions, eS as QueryBuilderState, eZ as QueryMultipleResultsError, e_ as QueryNoResultError, gI as QueryOptions, gK as QueryResult, c0 as RecordPolicy, gL as RecordQueryService, gH as RecordQueryServiceOptions, gG as RecordService, gF as RecordServiceOptions, eT as RegistryMap, eU as RegistryObjectNames, i3 as RelationLabelResolver, gO as RelationOption, gP as RelationOptionsResponse, gW as RelationResolverService, gU as RelationService, gR as RelationServiceOptions, gN as RelationValidationError, gM as RelationValidationResult, gS as ResolveIdsBatchRequest, gT as ResolveIdsBatchResponse, gV as ResolvedRelations, hl as ResumeWorkflowInput, bh as ReverseGeocodingParams, hf as RollupCascadeContext, gX as RollupResult, g_ as RollupScheduler, gZ as RollupSchedulerOptions, gY as RollupService, e$ as SHORTCUT_TO_FILTER_OPERATOR, fg as SchemaContext, gw as SchemaContextAware, gx as SchemaContextAwareRepository, g2 as SchemaResolver, ig as SearchOptions, gJ as SearchQueryOptions, eV as ShortcutOperator, hN as SignedUrlOptions, fF as StartExecutor, hk as StartWorkflowInput, hO as StorageAdapter, hL as StorageUploadInput, hM as StorageUploadResult, hR as SyncOptions, hQ as SyncResult, gy as TenantAwareRepository, gz as TenantAwareService, fn as TenantContext, f8 as TenantContextError, ez as TokenGenerationOptions, eA as TokenVerificationResult, g6 as TraversalOptions, g7 as TraversalResult, ib as UpdateDBAttribute, i7 as UpdateDBObject, im as UpdateDBView, ir as UpdateDBWorkflow, iu as UpdateDBWorkflowInstance, ix as UpdateDBWorkflowParticipation, gC as UpdateObjectInput, hI as UpdateViewInput, hh as UpdateWorkflowInput, hP as UploadFileInput, ic as UpsertDBAttribute, i8 as UpsertDBObject, io as UpsertDBView, hy as UserProfileService, hx as UserProfileServiceOptions, gl as UserProfilesRepository, hw as UserService, hv as UserValidationError, hu as UserValidationResult, hJ as ViewService, iA as ViewSyncOptions, iz as ViewSyncResult, go as ViewsRepository, hn as WorkflowInstanceService, hm as WorkflowInstanceServiceOptions, gq as WorkflowInstancesRepository, hr as WorkflowParticipationService, gr as WorkflowParticipationsRepository, ht as WorkflowRelationService, hj as WorkflowService, hi as WorkflowServiceOptions, gp as WorkflowsRepository, f9 as addSchemaToContext, g$ as applyDefaultValues, hA as buildAuditChanges, h2 as buildPolicyContext, eK as cacheKeys, eL as cacheTtl, h0 as checkPermission, h3 as checkRecordAccess, h5 as checkRecordDeleteOrThrow, h4 as checkRecordModifyOrThrow, fx as complete, h6 as computeLabel, i4 as computeLabelWithRelations, ha as createContextForCreate, hc as createContextForDelete, hd as createContextForRestore, hb as createContextForUpdate, fo as createDefaultExecutorRegistry, eW as createDefaultState, gf as createMockAdapter, f0 as createQueryBuilder, gg as defaultPolicyRegistry, eM as defaultTtl, h9 as enrichRecordsWithFormulas, i0 as enrichValuesForDisplay, i1 as enrichValuesWithSelectLabels, h8 as enrichWithFormulas, fy as error, f6 as evaluate, f5 as evaluateCondition, fG as evaluateFormula, fH as evaluateFormulaAttribute, fI as evaluateFormulaAttributeWithRelations, fJ as evaluateFormulaWithRelations, fK as evaluateFormulaWithResult, f7 as evaluateWithTrace, h$ as extractAttributeNames, fL as extractFormulaVariables, i2 as extractRelationIds, fM as extractRelationNames, fN as extractRelationReferences, fO as flattenRelationsForEval, fP as formatFormulaResult, eX as formatRecord, eY as formatRecords, fh as getContext, fp as getDefaultExecutorRegistry, eC as getDefaultPinCodeService, ew as getDefaultTokenService, fT as getPathDepth, h1 as getPolicy, fU as getRelationPath, fa as getSchemaByNameFromContext, fb as getSchemaContext, fc as getSchemaFromContext, hU as getSyncPreview, fV as getTargetAttributeName, fi as getTenantId, fj as getUserId, iD as getViewSyncPreview, fk as hasContext, fQ as hasRelationReferences, fd as hasSchemaContext, eH as hashOptions, eD as initializePinCodeService, ex as initializeTokenService, h_ as isLabelExpression, gi as notesPolicy, fY as parsePath, fZ as pathHasManyCardinality, he as recalculateParentRollups, hZ as renderLabelExpression, g3 as resolveMultiplePaths, g4 as resolveSingleValue, fl as runWithContext, fe as runWithMergedSchemaContext, ff as runWithSchemaContext, fA as success, hX as syncAll, hS as syncNativeObjects, iB as syncNativeViews, g5 as traversePath, fR as validateFormulaExpression, f_ as validatePath, hT as verifyNativeObjectsSync, iC as verifyNativeViewsSync, fB as wait, fm as withTenantContext } from './runtime-BbM_jyVU.js';
2
2
  import '@stndrds/constants';
3
3
  import 'zod';
package/dist/runtime.js CHANGED
@@ -131,7 +131,7 @@
131
131
 
132
132
 
133
133
 
134
- var _chunkI6VF7DORjs = require('./chunk-I6VF7DOR.js');
134
+ var _chunkLPCQM5VGjs = require('./chunk-LPCQM5VG.js');
135
135
  require('./chunk-3RG5ZIWI.js');
136
136
 
137
137
 
@@ -266,4 +266,4 @@ require('./chunk-3RG5ZIWI.js');
266
266
 
267
267
 
268
268
 
269
- exports.AuditService = _chunkI6VF7DORjs.AuditService; exports.BaseRepository = _chunkI6VF7DORjs.BaseRepository; exports.BaseService = _chunkI6VF7DORjs.BaseService; exports.ConditionExecutor = _chunkI6VF7DORjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkI6VF7DORjs.DEFAULT_LABEL_FALLBACK; exports.EndExecutor = _chunkI6VF7DORjs.EndExecutor; exports.ExecutorRegistry = _chunkI6VF7DORjs.ExecutorRegistry; exports.FileService = _chunkI6VF7DORjs.FileService; exports.FormExecutor = _chunkI6VF7DORjs.FormExecutor; exports.GeocodingService = _chunkI6VF7DORjs.GeocodingService; exports.GlobalSearchService = _chunkI6VF7DORjs.GlobalSearchService; exports.InvalidPathError = _chunkI6VF7DORjs.InvalidPathError; exports.MaxDepthExceededError = _chunkI6VF7DORjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkI6VF7DORjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkI6VF7DORjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkI6VF7DORjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkI6VF7DORjs.ObjectSchemaService; exports.ParticipationTokenService = _chunkI6VF7DORjs.ParticipationTokenService; exports.PermissionService = _chunkI6VF7DORjs.PermissionService; exports.PinCodeService = _chunkI6VF7DORjs.PinCodeService; exports.PolicyRegistry = _chunkI6VF7DORjs.PolicyRegistry; exports.PolicyViolationError = _chunkI6VF7DORjs.PolicyViolationError; exports.QueryBuilder = _chunkI6VF7DORjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkI6VF7DORjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkI6VF7DORjs.QueryNoResultError; exports.RecordQueryService = _chunkI6VF7DORjs.RecordQueryService; exports.RecordService = _chunkI6VF7DORjs.RecordService; exports.RelationResolverService = _chunkI6VF7DORjs.RelationResolverService; exports.RelationService = _chunkI6VF7DORjs.RelationService; exports.RollupScheduler = _chunkI6VF7DORjs.RollupScheduler; exports.RollupService = _chunkI6VF7DORjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkI6VF7DORjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunkI6VF7DORjs.SchemaContextAwareRepository; exports.StartExecutor = _chunkI6VF7DORjs.StartExecutor; exports.TenantAwareRepository = _chunkI6VF7DORjs.TenantAwareRepository; exports.TenantAwareService = _chunkI6VF7DORjs.TenantAwareService; exports.TenantContextError = _chunkI6VF7DORjs.TenantContextError; exports.UserProfileService = _chunkI6VF7DORjs.UserProfileService; exports.UserService = _chunkI6VF7DORjs.UserService; exports.ViewService = _chunkI6VF7DORjs.ViewService; exports.WorkflowInstanceService = _chunkI6VF7DORjs.WorkflowInstanceService; exports.WorkflowParticipationService = _chunkI6VF7DORjs.WorkflowParticipationService; exports.WorkflowRelationService = _chunkI6VF7DORjs.WorkflowRelationService; exports.WorkflowService = _chunkI6VF7DORjs.WorkflowService; exports.addSchemaToContext = _chunkI6VF7DORjs.addSchemaToContext; exports.applyDefaultValues = _chunkI6VF7DORjs.applyDefaultValues; exports.buildAuditChanges = _chunkI6VF7DORjs.buildAuditChanges; exports.buildPolicyContext = _chunkI6VF7DORjs.buildPolicyContext; exports.cacheKeys = _chunkI6VF7DORjs.cacheKeys; exports.cacheTtl = _chunkI6VF7DORjs.cacheTtl; exports.checkPermission = _chunkI6VF7DORjs.checkPermission; exports.checkRecordAccess = _chunkI6VF7DORjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkI6VF7DORjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkI6VF7DORjs.checkRecordModifyOrThrow; exports.complete = _chunkI6VF7DORjs.complete; exports.computeLabel = _chunkI6VF7DORjs.computeLabel; exports.computeLabelWithRelations = _chunkI6VF7DORjs.computeLabelWithRelations; exports.createContextForCreate = _chunkI6VF7DORjs.createContextForCreate; exports.createContextForDelete = _chunkI6VF7DORjs.createContextForDelete; exports.createContextForRestore = _chunkI6VF7DORjs.createContextForRestore; exports.createContextForUpdate = _chunkI6VF7DORjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkI6VF7DORjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkI6VF7DORjs.createDefaultState; exports.createMockAdapter = _chunkI6VF7DORjs.createMockAdapter; exports.createQueryBuilder = _chunkI6VF7DORjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkI6VF7DORjs.defaultPolicyRegistry; exports.defaultTtl = _chunkI6VF7DORjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunkI6VF7DORjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkI6VF7DORjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkI6VF7DORjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkI6VF7DORjs.enrichWithFormulas; exports.error = _chunkI6VF7DORjs.error; exports.evaluate = _chunkI6VF7DORjs.evaluate; exports.evaluateCondition = _chunkI6VF7DORjs.evaluateCondition; exports.evaluateFormula = _chunkI6VF7DORjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkI6VF7DORjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkI6VF7DORjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkI6VF7DORjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkI6VF7DORjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkI6VF7DORjs.evaluateWithTrace; exports.extractAttributeNames = _chunkI6VF7DORjs.extractAttributeNames; exports.extractFormulaVariables = _chunkI6VF7DORjs.extractFormulaVariables; exports.extractRelationIds = _chunkI6VF7DORjs.extractRelationIds; exports.extractRelationNames = _chunkI6VF7DORjs.extractRelationNames; exports.extractRelationReferences = _chunkI6VF7DORjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkI6VF7DORjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkI6VF7DORjs.formatFormulaResult; exports.formatRecord = _chunkI6VF7DORjs.formatRecord; exports.formatRecords = _chunkI6VF7DORjs.formatRecords; exports.getContext = _chunkI6VF7DORjs.getContext; exports.getDefaultExecutorRegistry = _chunkI6VF7DORjs.getDefaultExecutorRegistry; exports.getDefaultPinCodeService = _chunkI6VF7DORjs.getDefaultPinCodeService; exports.getDefaultTokenService = _chunkI6VF7DORjs.getDefaultTokenService; exports.getPathDepth = _chunkI6VF7DORjs.getPathDepth; exports.getPolicy = _chunkI6VF7DORjs.getPolicy; exports.getRelationPath = _chunkI6VF7DORjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkI6VF7DORjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkI6VF7DORjs.getSchemaContext; exports.getSchemaFromContext = _chunkI6VF7DORjs.getSchemaFromContext; exports.getSyncPreview = _chunkI6VF7DORjs.getSyncPreview; exports.getTargetAttributeName = _chunkI6VF7DORjs.getTargetAttributeName; exports.getTenantId = _chunkI6VF7DORjs.getTenantId; exports.getUserId = _chunkI6VF7DORjs.getUserId; exports.getViewSyncPreview = _chunkI6VF7DORjs.getViewSyncPreview; exports.hasContext = _chunkI6VF7DORjs.hasContext; exports.hasRelationReferences = _chunkI6VF7DORjs.hasRelationReferences; exports.hasSchemaContext = _chunkI6VF7DORjs.hasSchemaContext; exports.hashOptions = _chunkI6VF7DORjs.hashOptions; exports.initializePinCodeService = _chunkI6VF7DORjs.initializePinCodeService; exports.initializeTokenService = _chunkI6VF7DORjs.initializeTokenService; exports.isLabelExpression = _chunkI6VF7DORjs.isLabelExpression; exports.notesPolicy = _chunkI6VF7DORjs.notesPolicy; exports.parsePath = _chunkI6VF7DORjs.parsePath; exports.pathHasManyCardinality = _chunkI6VF7DORjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunkI6VF7DORjs.recalculateParentRollups; exports.renderLabelExpression = _chunkI6VF7DORjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkI6VF7DORjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkI6VF7DORjs.resolveSingleValue; exports.runWithContext = _chunkI6VF7DORjs.runWithContext; exports.runWithMergedSchemaContext = _chunkI6VF7DORjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkI6VF7DORjs.runWithSchemaContext; exports.success = _chunkI6VF7DORjs.success; exports.syncAll = _chunkI6VF7DORjs.syncAll; exports.syncNativeObjects = _chunkI6VF7DORjs.syncNativeObjects; exports.syncNativeViews = _chunkI6VF7DORjs.syncNativeViews; exports.traversePath = _chunkI6VF7DORjs.traversePath; exports.validateFormulaExpression = _chunkI6VF7DORjs.validateFormulaExpression; exports.validatePath = _chunkI6VF7DORjs.validatePath; exports.verifyNativeObjectsSync = _chunkI6VF7DORjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkI6VF7DORjs.verifyNativeViewsSync; exports.wait = _chunkI6VF7DORjs.wait; exports.withTenantContext = _chunkI6VF7DORjs.withTenantContext;
269
+ exports.AuditService = _chunkLPCQM5VGjs.AuditService; exports.BaseRepository = _chunkLPCQM5VGjs.BaseRepository; exports.BaseService = _chunkLPCQM5VGjs.BaseService; exports.ConditionExecutor = _chunkLPCQM5VGjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkLPCQM5VGjs.DEFAULT_LABEL_FALLBACK; exports.EndExecutor = _chunkLPCQM5VGjs.EndExecutor; exports.ExecutorRegistry = _chunkLPCQM5VGjs.ExecutorRegistry; exports.FileService = _chunkLPCQM5VGjs.FileService; exports.FormExecutor = _chunkLPCQM5VGjs.FormExecutor; exports.GeocodingService = _chunkLPCQM5VGjs.GeocodingService; exports.GlobalSearchService = _chunkLPCQM5VGjs.GlobalSearchService; exports.InvalidPathError = _chunkLPCQM5VGjs.InvalidPathError; exports.MaxDepthExceededError = _chunkLPCQM5VGjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkLPCQM5VGjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkLPCQM5VGjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkLPCQM5VGjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkLPCQM5VGjs.ObjectSchemaService; exports.ParticipationTokenService = _chunkLPCQM5VGjs.ParticipationTokenService; exports.PermissionService = _chunkLPCQM5VGjs.PermissionService; exports.PinCodeService = _chunkLPCQM5VGjs.PinCodeService; exports.PolicyRegistry = _chunkLPCQM5VGjs.PolicyRegistry; exports.PolicyViolationError = _chunkLPCQM5VGjs.PolicyViolationError; exports.QueryBuilder = _chunkLPCQM5VGjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkLPCQM5VGjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkLPCQM5VGjs.QueryNoResultError; exports.RecordQueryService = _chunkLPCQM5VGjs.RecordQueryService; exports.RecordService = _chunkLPCQM5VGjs.RecordService; exports.RelationResolverService = _chunkLPCQM5VGjs.RelationResolverService; exports.RelationService = _chunkLPCQM5VGjs.RelationService; exports.RollupScheduler = _chunkLPCQM5VGjs.RollupScheduler; exports.RollupService = _chunkLPCQM5VGjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkLPCQM5VGjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunkLPCQM5VGjs.SchemaContextAwareRepository; exports.StartExecutor = _chunkLPCQM5VGjs.StartExecutor; exports.TenantAwareRepository = _chunkLPCQM5VGjs.TenantAwareRepository; exports.TenantAwareService = _chunkLPCQM5VGjs.TenantAwareService; exports.TenantContextError = _chunkLPCQM5VGjs.TenantContextError; exports.UserProfileService = _chunkLPCQM5VGjs.UserProfileService; exports.UserService = _chunkLPCQM5VGjs.UserService; exports.ViewService = _chunkLPCQM5VGjs.ViewService; exports.WorkflowInstanceService = _chunkLPCQM5VGjs.WorkflowInstanceService; exports.WorkflowParticipationService = _chunkLPCQM5VGjs.WorkflowParticipationService; exports.WorkflowRelationService = _chunkLPCQM5VGjs.WorkflowRelationService; exports.WorkflowService = _chunkLPCQM5VGjs.WorkflowService; exports.addSchemaToContext = _chunkLPCQM5VGjs.addSchemaToContext; exports.applyDefaultValues = _chunkLPCQM5VGjs.applyDefaultValues; exports.buildAuditChanges = _chunkLPCQM5VGjs.buildAuditChanges; exports.buildPolicyContext = _chunkLPCQM5VGjs.buildPolicyContext; exports.cacheKeys = _chunkLPCQM5VGjs.cacheKeys; exports.cacheTtl = _chunkLPCQM5VGjs.cacheTtl; exports.checkPermission = _chunkLPCQM5VGjs.checkPermission; exports.checkRecordAccess = _chunkLPCQM5VGjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkLPCQM5VGjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkLPCQM5VGjs.checkRecordModifyOrThrow; exports.complete = _chunkLPCQM5VGjs.complete; exports.computeLabel = _chunkLPCQM5VGjs.computeLabel; exports.computeLabelWithRelations = _chunkLPCQM5VGjs.computeLabelWithRelations; exports.createContextForCreate = _chunkLPCQM5VGjs.createContextForCreate; exports.createContextForDelete = _chunkLPCQM5VGjs.createContextForDelete; exports.createContextForRestore = _chunkLPCQM5VGjs.createContextForRestore; exports.createContextForUpdate = _chunkLPCQM5VGjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkLPCQM5VGjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkLPCQM5VGjs.createDefaultState; exports.createMockAdapter = _chunkLPCQM5VGjs.createMockAdapter; exports.createQueryBuilder = _chunkLPCQM5VGjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkLPCQM5VGjs.defaultPolicyRegistry; exports.defaultTtl = _chunkLPCQM5VGjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunkLPCQM5VGjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkLPCQM5VGjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkLPCQM5VGjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkLPCQM5VGjs.enrichWithFormulas; exports.error = _chunkLPCQM5VGjs.error; exports.evaluate = _chunkLPCQM5VGjs.evaluate; exports.evaluateCondition = _chunkLPCQM5VGjs.evaluateCondition; exports.evaluateFormula = _chunkLPCQM5VGjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkLPCQM5VGjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkLPCQM5VGjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkLPCQM5VGjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkLPCQM5VGjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkLPCQM5VGjs.evaluateWithTrace; exports.extractAttributeNames = _chunkLPCQM5VGjs.extractAttributeNames; exports.extractFormulaVariables = _chunkLPCQM5VGjs.extractFormulaVariables; exports.extractRelationIds = _chunkLPCQM5VGjs.extractRelationIds; exports.extractRelationNames = _chunkLPCQM5VGjs.extractRelationNames; exports.extractRelationReferences = _chunkLPCQM5VGjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkLPCQM5VGjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkLPCQM5VGjs.formatFormulaResult; exports.formatRecord = _chunkLPCQM5VGjs.formatRecord; exports.formatRecords = _chunkLPCQM5VGjs.formatRecords; exports.getContext = _chunkLPCQM5VGjs.getContext; exports.getDefaultExecutorRegistry = _chunkLPCQM5VGjs.getDefaultExecutorRegistry; exports.getDefaultPinCodeService = _chunkLPCQM5VGjs.getDefaultPinCodeService; exports.getDefaultTokenService = _chunkLPCQM5VGjs.getDefaultTokenService; exports.getPathDepth = _chunkLPCQM5VGjs.getPathDepth; exports.getPolicy = _chunkLPCQM5VGjs.getPolicy; exports.getRelationPath = _chunkLPCQM5VGjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkLPCQM5VGjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkLPCQM5VGjs.getSchemaContext; exports.getSchemaFromContext = _chunkLPCQM5VGjs.getSchemaFromContext; exports.getSyncPreview = _chunkLPCQM5VGjs.getSyncPreview; exports.getTargetAttributeName = _chunkLPCQM5VGjs.getTargetAttributeName; exports.getTenantId = _chunkLPCQM5VGjs.getTenantId; exports.getUserId = _chunkLPCQM5VGjs.getUserId; exports.getViewSyncPreview = _chunkLPCQM5VGjs.getViewSyncPreview; exports.hasContext = _chunkLPCQM5VGjs.hasContext; exports.hasRelationReferences = _chunkLPCQM5VGjs.hasRelationReferences; exports.hasSchemaContext = _chunkLPCQM5VGjs.hasSchemaContext; exports.hashOptions = _chunkLPCQM5VGjs.hashOptions; exports.initializePinCodeService = _chunkLPCQM5VGjs.initializePinCodeService; exports.initializeTokenService = _chunkLPCQM5VGjs.initializeTokenService; exports.isLabelExpression = _chunkLPCQM5VGjs.isLabelExpression; exports.notesPolicy = _chunkLPCQM5VGjs.notesPolicy; exports.parsePath = _chunkLPCQM5VGjs.parsePath; exports.pathHasManyCardinality = _chunkLPCQM5VGjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunkLPCQM5VGjs.recalculateParentRollups; exports.renderLabelExpression = _chunkLPCQM5VGjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkLPCQM5VGjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkLPCQM5VGjs.resolveSingleValue; exports.runWithContext = _chunkLPCQM5VGjs.runWithContext; exports.runWithMergedSchemaContext = _chunkLPCQM5VGjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkLPCQM5VGjs.runWithSchemaContext; exports.success = _chunkLPCQM5VGjs.success; exports.syncAll = _chunkLPCQM5VGjs.syncAll; exports.syncNativeObjects = _chunkLPCQM5VGjs.syncNativeObjects; exports.syncNativeViews = _chunkLPCQM5VGjs.syncNativeViews; exports.traversePath = _chunkLPCQM5VGjs.traversePath; exports.validateFormulaExpression = _chunkLPCQM5VGjs.validateFormulaExpression; exports.validatePath = _chunkLPCQM5VGjs.validatePath; exports.verifyNativeObjectsSync = _chunkLPCQM5VGjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkLPCQM5VGjs.verifyNativeViewsSync; exports.wait = _chunkLPCQM5VGjs.wait; exports.withTenantContext = _chunkLPCQM5VGjs.withTenantContext;
package/dist/runtime.mjs CHANGED
@@ -131,7 +131,7 @@ import {
131
131
  verifyNativeViewsSync,
132
132
  wait,
133
133
  withTenantContext
134
- } from "./chunk-CVMMZRH6.mjs";
134
+ } from "./chunk-FDWX5X6L.mjs";
135
135
  import "./chunk-Y6FXYEAI.mjs";
136
136
  export {
137
137
  AuditService,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/schema",
3
- "version": "0.1.0-alpha.47",
3
+ "version": "0.1.0-alpha.49",
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.47"
26
+ "@stndrds/constants": "0.1.0-alpha.49"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^25.0.3",