@stndrds/schema 0.1.0-alpha.45 → 0.1.0-alpha.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-3GHMPTWA.mjs → chunk-CVMMZRH6.mjs} +225 -76
- package/dist/{chunk-FAI5Y3YJ.js → chunk-I6VF7DOR.js} +225 -76
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +10 -6
- package/dist/index.mjs +5 -1
- package/dist/{runtime-fh5-UJWV.d.mts → runtime-BOg0C4ev.d.mts} +114 -18
- package/dist/{runtime-fh5-UJWV.d.ts → runtime-BOg0C4ev.d.ts} +114 -18
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +6 -2
- package/dist/runtime.mjs +5 -1
- package/package.json +2 -2
|
@@ -5006,6 +5006,27 @@ declare function computeRecordStatus(objectDef: ObjectDefinition, data: Record<s
|
|
|
5006
5006
|
* };
|
|
5007
5007
|
* ```
|
|
5008
5008
|
*/
|
|
5009
|
+
/**
|
|
5010
|
+
* Supported cache key types for type-safe cache operations.
|
|
5011
|
+
* Used by `cachedBy()` and `cachedList()` helpers in BaseService.
|
|
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";
|
|
5014
|
+
/**
|
|
5015
|
+
* Generate a deterministic hash from query options.
|
|
5016
|
+
* Keys are sorted recursively to ensure same hash regardless of property order.
|
|
5017
|
+
*
|
|
5018
|
+
* @param options - Any object (filters, sorts, pagination, etc.)
|
|
5019
|
+
* @returns 8-character hex hash, or "default" for empty options
|
|
5020
|
+
*
|
|
5021
|
+
* @example
|
|
5022
|
+
* ```typescript
|
|
5023
|
+
* // Same hash regardless of key order
|
|
5024
|
+
* hashOptions({ limit: 20, filters: { status: "active" } });
|
|
5025
|
+
* hashOptions({ filters: { status: "active" }, limit: 20 });
|
|
5026
|
+
* // => same hash
|
|
5027
|
+
* ```
|
|
5028
|
+
*/
|
|
5029
|
+
declare function hashOptions(options: unknown): string;
|
|
5009
5030
|
/**
|
|
5010
5031
|
* Generic cache adapter interface.
|
|
5011
5032
|
* Any cache implementation (Redis, Memcached, In-Memory) can implement this.
|
|
@@ -5089,6 +5110,18 @@ declare const cacheKeys: {
|
|
|
5089
5110
|
readonly rollupValue: (tenantId: string, recordId: string, attrName: string) => string;
|
|
5090
5111
|
/** Individual record by ID */
|
|
5091
5112
|
readonly record: (tenantId: string, recordId: string) => string;
|
|
5113
|
+
/** Record list for an object with options hash */
|
|
5114
|
+
readonly recordList: (tenantId: string, objectId: string, hash: string) => string;
|
|
5115
|
+
/** All record lists for an object (for invalidation) */
|
|
5116
|
+
readonly allRecordLists: (tenantId: string, objectId: string) => string;
|
|
5117
|
+
/** Search results for an object */
|
|
5118
|
+
readonly searchResults: (tenantId: string, objectId: string, hash: string) => string;
|
|
5119
|
+
/** All search results for an object (for invalidation) */
|
|
5120
|
+
readonly allSearchResults: (tenantId: string, objectId: string) => string;
|
|
5121
|
+
/** Global search results */
|
|
5122
|
+
readonly globalSearch: (tenantId: string, hash: string) => string;
|
|
5123
|
+
/** All global search results for tenant (for invalidation) */
|
|
5124
|
+
readonly allGlobalSearch: (tenantId: string) => string;
|
|
5092
5125
|
/** All schema cache for a tenant */
|
|
5093
5126
|
readonly allSchemas: (tenantId: string) => string;
|
|
5094
5127
|
/** All attribute cache for a tenant */
|
|
@@ -5151,7 +5184,18 @@ declare const cacheTtl: {
|
|
|
5151
5184
|
readonly userProfiles: number;
|
|
5152
5185
|
/** Workflows - rarely change (5 minutes) */
|
|
5153
5186
|
readonly workflows: number;
|
|
5187
|
+
/** Record lists - high volatility (1 minute) */
|
|
5188
|
+
readonly recordList: number;
|
|
5189
|
+
/** Search results - very high volatility (30 seconds) */
|
|
5190
|
+
readonly searchResults: number;
|
|
5191
|
+
/** Global search - very high volatility (30 seconds) */
|
|
5192
|
+
readonly globalSearch: number;
|
|
5154
5193
|
};
|
|
5194
|
+
/**
|
|
5195
|
+
* Default TTL for each cache key type.
|
|
5196
|
+
* Used by cachedBy/cachedList when no explicit TTL is provided.
|
|
5197
|
+
*/
|
|
5198
|
+
declare const defaultTtl: Partial<Record<CacheKeyType, number>>;
|
|
5155
5199
|
/**
|
|
5156
5200
|
* No-operation cache adapter that does nothing.
|
|
5157
5201
|
* Use this to disable caching entirely.
|
|
@@ -6592,7 +6636,7 @@ declare const defaultPolicyRegistry: PolicyRegistry;
|
|
|
6592
6636
|
*
|
|
6593
6637
|
* Provides:
|
|
6594
6638
|
* - Automatic access to `tenantId` and `userId` from AsyncLocalStorage context
|
|
6595
|
-
* - Cache
|
|
6639
|
+
* - Cache helpers: `cachedBy()` for single resources, `cachedList()` for lists with filters
|
|
6596
6640
|
*
|
|
6597
6641
|
* @example
|
|
6598
6642
|
* ```typescript
|
|
@@ -6601,11 +6645,17 @@ declare const defaultPolicyRegistry: PolicyRegistry;
|
|
|
6601
6645
|
* super(adapter);
|
|
6602
6646
|
* }
|
|
6603
6647
|
*
|
|
6648
|
+
* // Simple cache for single resource
|
|
6604
6649
|
* async getRecord(id: string) {
|
|
6605
|
-
* return this.
|
|
6606
|
-
*
|
|
6607
|
-
*
|
|
6608
|
-
*
|
|
6650
|
+
* return this.cachedBy("record", id, () =>
|
|
6651
|
+
* this.adapter.objectRecords.findById(id)
|
|
6652
|
+
* );
|
|
6653
|
+
* }
|
|
6654
|
+
*
|
|
6655
|
+
* // Cache for lists with automatic options hashing
|
|
6656
|
+
* async listRecords(objectId: string, options?: ListOptions) {
|
|
6657
|
+
* return this.cachedList("recordList", objectId, options, () =>
|
|
6658
|
+
* this.adapter.objectRecords.list(objectId, options)
|
|
6609
6659
|
* );
|
|
6610
6660
|
* }
|
|
6611
6661
|
* }
|
|
@@ -6629,15 +6679,40 @@ declare abstract class BaseService {
|
|
|
6629
6679
|
*/
|
|
6630
6680
|
protected get userId(): UserId | undefined;
|
|
6631
6681
|
/**
|
|
6632
|
-
*
|
|
6633
|
-
*
|
|
6682
|
+
* Cache a value by key type and ID.
|
|
6683
|
+
* Automatically builds the cache key with tenantId and applies default TTL.
|
|
6634
6684
|
*
|
|
6635
|
-
* @param
|
|
6685
|
+
* @param keyType - Type of cache key (e.g., "record", "objectSchema")
|
|
6686
|
+
* @param id - Resource identifier
|
|
6636
6687
|
* @param fetcher - Function to fetch data if not cached
|
|
6637
|
-
* @param ttlMs -
|
|
6638
|
-
*
|
|
6688
|
+
* @param ttlMs - Optional TTL override (uses default for keyType if not provided)
|
|
6689
|
+
*
|
|
6690
|
+
* @example
|
|
6691
|
+
* ```typescript
|
|
6692
|
+
* return this.cachedBy("record", recordId, () =>
|
|
6693
|
+
* this.adapter.objectRecords.findById(recordId)
|
|
6694
|
+
* );
|
|
6695
|
+
* ```
|
|
6639
6696
|
*/
|
|
6640
|
-
protected
|
|
6697
|
+
protected cachedBy<T>(keyType: CacheKeyType, id: string, fetcher: () => Promise<T>, ttlMs?: number): Promise<T>;
|
|
6698
|
+
/**
|
|
6699
|
+
* Cache a list query with automatic options hashing.
|
|
6700
|
+
* Useful for list/search operations with filters, sorts, pagination.
|
|
6701
|
+
*
|
|
6702
|
+
* @param keyType - Type of cache key (e.g., "recordList", "searchResults")
|
|
6703
|
+
* @param id - Resource identifier (e.g., objectId)
|
|
6704
|
+
* @param options - Query options to hash (filters, sorts, etc.)
|
|
6705
|
+
* @param fetcher - Function to fetch data if not cached
|
|
6706
|
+
* @param ttlMs - Optional TTL override
|
|
6707
|
+
*
|
|
6708
|
+
* @example
|
|
6709
|
+
* ```typescript
|
|
6710
|
+
* return this.cachedList("recordList", objectId, options, () =>
|
|
6711
|
+
* this.executeListQuery(objectId, options)
|
|
6712
|
+
* );
|
|
6713
|
+
* ```
|
|
6714
|
+
*/
|
|
6715
|
+
protected cachedList<T>(keyType: CacheKeyType, id: string, options: unknown, fetcher: () => Promise<T>, ttlMs?: number): Promise<T>;
|
|
6641
6716
|
/**
|
|
6642
6717
|
* Invalidate a specific cache key.
|
|
6643
6718
|
*
|
|
@@ -6650,6 +6725,21 @@ declare abstract class BaseService {
|
|
|
6650
6725
|
* @param pattern - Glob-style pattern (e.g., "schema:tenant-123:*")
|
|
6651
6726
|
*/
|
|
6652
6727
|
protected invalidateCachePattern(pattern: string): Promise<void>;
|
|
6728
|
+
/**
|
|
6729
|
+
* Invalidate all cached lists for a resource.
|
|
6730
|
+
* Call this after create/update/delete operations.
|
|
6731
|
+
*
|
|
6732
|
+
* @param keyType - Invalidation pattern key (e.g., "allRecordLists", "allSearchResults")
|
|
6733
|
+
* @param id - Resource identifier
|
|
6734
|
+
*
|
|
6735
|
+
* @example
|
|
6736
|
+
* ```typescript
|
|
6737
|
+
* // After creating/updating/deleting a record
|
|
6738
|
+
* await this.invalidateLists("allRecordLists", objectId);
|
|
6739
|
+
* await this.invalidateLists("allSearchResults", objectId);
|
|
6740
|
+
* ```
|
|
6741
|
+
*/
|
|
6742
|
+
protected invalidateLists(keyType: CacheKeyType, id: string): Promise<void>;
|
|
6653
6743
|
}
|
|
6654
6744
|
/**
|
|
6655
6745
|
* Abstract base class for repository implementations that operate within a tenant context.
|
|
@@ -6773,15 +6863,13 @@ declare abstract class SchemaContextAwareRepository extends BaseRepository {
|
|
|
6773
6863
|
protected getSchemaByNameFromContext(objectName: string): ObjectDefinition | undefined;
|
|
6774
6864
|
}
|
|
6775
6865
|
/**
|
|
6776
|
-
* @deprecated Use `
|
|
6866
|
+
* @deprecated Use `BaseRepository` instead. Will be removed in a future version.
|
|
6777
6867
|
*/
|
|
6778
|
-
declare const
|
|
6779
|
-
type TenantAwareService = BaseService;
|
|
6868
|
+
declare const TenantAwareRepository: typeof BaseRepository;
|
|
6780
6869
|
/**
|
|
6781
|
-
* @deprecated Use `
|
|
6870
|
+
* @deprecated Use `BaseService` instead. Will be removed in a future version.
|
|
6782
6871
|
*/
|
|
6783
|
-
declare const
|
|
6784
|
-
type TenantAwareRepository = BaseRepository;
|
|
6872
|
+
declare const TenantAwareService: typeof BaseService;
|
|
6785
6873
|
|
|
6786
6874
|
/**
|
|
6787
6875
|
* Service for audit logging.
|
|
@@ -7784,6 +7872,10 @@ declare class RelationService extends BaseService {
|
|
|
7784
7872
|
* ```
|
|
7785
7873
|
*/
|
|
7786
7874
|
getOptions(attribute: RelationAttribute, params?: GetRelationOptionsParams): Promise<RelationOptionsResponse>;
|
|
7875
|
+
/**
|
|
7876
|
+
* Internal method to fetch relation options (extracted for caching)
|
|
7877
|
+
*/
|
|
7878
|
+
private fetchOptions;
|
|
7787
7879
|
/**
|
|
7788
7880
|
* Resolve record IDs to their display labels.
|
|
7789
7881
|
* Useful for displaying current values in the UI.
|
|
@@ -10504,6 +10596,10 @@ declare class GlobalSearchService extends BaseService {
|
|
|
10504
10596
|
results: GlobalSearchResultItem[];
|
|
10505
10597
|
total: number;
|
|
10506
10598
|
}>;
|
|
10599
|
+
/**
|
|
10600
|
+
* Internal search execution (extracted for caching)
|
|
10601
|
+
*/
|
|
10602
|
+
private executeSearch;
|
|
10507
10603
|
/**
|
|
10508
10604
|
* Search and group results by object type
|
|
10509
10605
|
*
|
|
@@ -10945,4 +11041,4 @@ type RelationLabelResolver = (ids: string[]) => Promise<Map<string, string>>;
|
|
|
10945
11041
|
*/
|
|
10946
11042
|
declare function computeLabelWithRelations(template: string, values: Record<string, unknown>, attributes: Attribute[], resolveRelationIds: RelationLabelResolver): Promise<string>;
|
|
10947
11043
|
|
|
10948
|
-
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, type QueryBuilderOptions 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 CacheAdapter as eG, type CacheOptions as eH, cacheKeys as eI, cacheTtl as eJ, NoopCacheAdapter as eK, type FetchResult as eL, type FormattedRecord as eM, type GroupedFetchResult as eN, type InsertOptions as eO, type QueryBuilderState as eP, type RegistryMap as eQ, type RegistryObjectNames as eR, type ShortcutOperator as eS, createDefaultState as eT, formatRecord as eU, formatRecords as eV, QueryMultipleResultsError as eW, QueryNoResultError as eX, SHORTCUT_TO_FILTER_OPERATOR as eY, createQueryBuilder as eZ, QueryBuilder 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 SchemaResolver as f$, type EvaluationResult as f0, type EvaluationTrace as f1, evaluateCondition as f2, evaluate as f3, evaluateWithTrace as f4, TenantContextError as f5, addSchemaToContext as f6, getSchemaByNameFromContext as f7, getSchemaContext as f8, getSchemaFromContext as f9, EndExecutor as fA, FormExecutor as fB, StartExecutor as fC, evaluateFormula as fD, evaluateFormulaAttribute as fE, evaluateFormulaAttributeWithRelations as fF, evaluateFormulaWithRelations as fG, evaluateFormulaWithResult as fH, extractFormulaVariables as fI, extractRelationNames as fJ, extractRelationReferences as fK, flattenRelationsForEval as fL, formatFormulaResult as fM, hasRelationReferences as fN, validateFormulaExpression as fO, type FormulaResult as fP, getPathDepth as fQ, getRelationPath as fR, getTargetAttributeName as fS, InvalidPathError as fT, MaxDepthExceededError as fU, parsePath as fV, pathHasManyCardinality as fW, validatePath as fX, type PathCardinality as fY, type PathSegment as fZ, type PathSegmentType as f_, hasSchemaContext as fa, runWithMergedSchemaContext as fb, runWithSchemaContext as fc, type SchemaContext as fd, getContext as fe, getTenantId as ff, getUserId as fg, hasContext as fh, runWithContext as fi, withTenantContext as fj, type TenantContext as fk, createDefaultExecutorRegistry as fl, getDefaultExecutorRegistry as fm, type ExecutorCompleteResult as fn, type ExecutorContext as fo, type ExecutorErrorResult as fp, type ExecutorResult as fq, type ExecutorSuccessResult as fr, type ExecutorWaitResult as fs, type NodeExecutor as ft, complete as fu, error as fv, ExecutorRegistry as fw, success as fx, wait as fy, ConditionExecutor as fz, type SelectAttribute as g, checkRecordModifyOrThrow as g$, resolveMultiplePaths as g0, resolveSingleValue as g1, traversePath as g2, type TraversalOptions as g3, type TraversalResult as g4, type AttributeChange as g5, type HookContext as g6, type HookDefinition as g7, type HookHandler as g8, type HookType as g9, type ObjectSchemaServiceOptions as gA, ObjectSchemaService as gB, type RecordServiceOptions as gC, RecordService as gD, type RecordQueryServiceOptions as gE, type QueryOptions as gF, type SearchQueryOptions as gG, type QueryResult as gH, RecordQueryService as gI, type RelationValidationResult as gJ, type RelationValidationError as gK, type RelationOption as gL, type RelationOptionsResponse as gM, type GetRelationOptionsParams as gN, type RelationServiceOptions as gO, RelationService as gP, type ResolvedRelations as gQ, RelationResolverService as gR, type RollupResult as gS, RollupService as gT, type RollupSchedulerOptions as gU, RollupScheduler as gV, applyDefaultValues as gW, checkPermission as gX, getPolicy as gY, buildPolicyContext as gZ, checkRecordAccess as g_, NoopHookRegistry as ga, type HookRegistry as gb, createMockAdapter as gc, defaultPolicyRegistry as gd, PolicyRegistry as ge, notesPolicy as gf, type ObjectsRepository as gg, type AttributesRepository as gh, type UserProfilesRepository as gi, type FilesRepository as gj, type ObjectRecordsRepository as gk, type ViewsRepository as gl, type WorkflowsRepository as gm, type WorkflowInstancesRepository as gn, type WorkflowParticipationsRepository as go, type AuditRepository as gp, type PermissionsRepository as gq, BaseService as gr, BaseRepository as gs, type SchemaContextAware as gt, SchemaContextAwareRepository as gu, TenantAwareService as gv, TenantAwareRepository as gw, type CreateCustomObjectInput as gx, type AddAttributeInput as gy, type UpdateObjectInput as gz, type SingleRelationAttribute as h, computeLabelWithRelations as h$, checkRecordDeleteOrThrow as h0, computeLabel as h1, type LabelResolver as h2, enrichWithFormulas as h3, enrichRecordsWithFormulas as h4, createContextForCreate as h5, createContextForUpdate as h6, createContextForDelete as h7, createContextForRestore as h8, recalculateParentRollups as h9, type PermissionServiceOptions as hA, PermissionService as hB, type CreateViewInput as hC, type UpdateViewInput as hD, ViewService as hE, type FileContent as hF, type StorageUploadInput as hG, type StorageUploadResult as hH, type SignedUrlOptions as hI, type StorageAdapter as hJ, type UploadFileInput as hK, type SyncResult as hL, type SyncOptions as hM, syncNativeObjects as hN, verifyNativeObjectsSync as hO, getSyncPreview as hP, type FullSyncResult as hQ, type FullSyncOptions as hR, syncAll as hS, DEFAULT_LABEL_FALLBACK as hT, renderLabelExpression as hU, isLabelExpression as hV, extractAttributeNames as hW, enrichValuesForDisplay as hX, enrichValuesWithSelectLabels as hY, extractRelationIds as hZ, type RelationLabelResolver as h_, type RollupCascadeContext as ha, type CreateWorkflowInput as hb, type UpdateWorkflowInput as hc, type WorkflowServiceOptions as hd, WorkflowService as he, type StartWorkflowInput as hf, type ResumeWorkflowInput as hg, type WorkflowInstanceServiceOptions as hh, WorkflowInstanceService as hi, type CreateParticipationInput as hj, type CreateParticipationResult as hk, type AuthenticationResult as hl, WorkflowParticipationService as hm, type FieldReadOnlyResult as hn, WorkflowRelationService as ho, type UserValidationResult as hp, type UserValidationError as hq, UserService as hr, type UserProfileServiceOptions as hs, UserProfileService as ht, AuditService as hu, buildAuditChanges as hv, type FileServiceOptions as hw, FileService as hx, GeocodingService as hy, GlobalSearchService as hz, type MultiRelationAttribute as i, type DBObject as i0, type CreateDBObject as i1, type UpdateDBObject as i2, type UpsertDBObject as i3, type DBAttribute as i4, type CreateDBAttribute as i5, type UpdateDBAttribute as i6, type UpsertDBAttribute as i7, type CreateObjectRecord as i8, type ListOptions as i9, type SearchOptions as ia, type GlobalSearchOptions as ib, type GlobalSearchResultItem as ic, type FileListOptions as id, type DBView as ie, type CreateDBView as ig, type UpdateDBView as ih, type UpsertDBView as ii, type DBWorkflow as ij, type CreateDBWorkflow as ik, type UpdateDBWorkflow as il, type DBWorkflowInstance as im, type CreateDBWorkflowInstance as io, type UpdateDBWorkflowInstance as ip, type DBWorkflowParticipation as iq, type CreateDBWorkflowParticipation as ir, type UpdateDBWorkflowParticipation as is, type OperationResult as it, type ViewSyncResult as iu, type ViewSyncOptions as iv, syncNativeViews as iw, verifyNativeViewsSync as ix, getViewSyncPreview as iy, 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 };
|
|
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 };
|
package/dist/runtime.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
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';
|
|
2
2
|
import '@stndrds/constants';
|
|
3
3
|
import 'zod';
|
package/dist/runtime.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
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';
|
|
2
2
|
import '@stndrds/constants';
|
|
3
3
|
import 'zod';
|
package/dist/runtime.js
CHANGED
|
@@ -129,7 +129,9 @@
|
|
|
129
129
|
|
|
130
130
|
|
|
131
131
|
|
|
132
|
-
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
var _chunkI6VF7DORjs = require('./chunk-I6VF7DOR.js');
|
|
133
135
|
require('./chunk-3RG5ZIWI.js');
|
|
134
136
|
|
|
135
137
|
|
|
@@ -262,4 +264,6 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
262
264
|
|
|
263
265
|
|
|
264
266
|
|
|
265
|
-
|
|
267
|
+
|
|
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;
|
package/dist/runtime.mjs
CHANGED
|
@@ -65,6 +65,7 @@ import {
|
|
|
65
65
|
createMockAdapter,
|
|
66
66
|
createQueryBuilder,
|
|
67
67
|
defaultPolicyRegistry,
|
|
68
|
+
defaultTtl,
|
|
68
69
|
enrichRecordsWithFormulas,
|
|
69
70
|
enrichValuesForDisplay,
|
|
70
71
|
enrichValuesWithSelectLabels,
|
|
@@ -105,6 +106,7 @@ import {
|
|
|
105
106
|
hasContext,
|
|
106
107
|
hasRelationReferences,
|
|
107
108
|
hasSchemaContext,
|
|
109
|
+
hashOptions,
|
|
108
110
|
initializePinCodeService,
|
|
109
111
|
initializeTokenService,
|
|
110
112
|
isLabelExpression,
|
|
@@ -129,7 +131,7 @@ import {
|
|
|
129
131
|
verifyNativeViewsSync,
|
|
130
132
|
wait,
|
|
131
133
|
withTenantContext
|
|
132
|
-
} from "./chunk-
|
|
134
|
+
} from "./chunk-CVMMZRH6.mjs";
|
|
133
135
|
import "./chunk-Y6FXYEAI.mjs";
|
|
134
136
|
export {
|
|
135
137
|
AuditService,
|
|
@@ -198,6 +200,7 @@ export {
|
|
|
198
200
|
createMockAdapter,
|
|
199
201
|
createQueryBuilder,
|
|
200
202
|
defaultPolicyRegistry,
|
|
203
|
+
defaultTtl,
|
|
201
204
|
enrichRecordsWithFormulas,
|
|
202
205
|
enrichValuesForDisplay,
|
|
203
206
|
enrichValuesWithSelectLabels,
|
|
@@ -238,6 +241,7 @@ export {
|
|
|
238
241
|
hasContext,
|
|
239
242
|
hasRelationReferences,
|
|
240
243
|
hasSchemaContext,
|
|
244
|
+
hashOptions,
|
|
241
245
|
initializePinCodeService,
|
|
242
246
|
initializeTokenService,
|
|
243
247
|
isLabelExpression,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stndrds/schema",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.46",
|
|
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.
|
|
26
|
+
"@stndrds/constants": "0.1.0-alpha.46"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^25.0.3",
|