@stndrds/schema 0.1.0-alpha.64 → 0.1.0-alpha.66
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-IIKZXK57.mjs → chunk-A6T4UUZ2.mjs} +88 -2
- package/dist/{chunk-5IU6XTFA.js → chunk-TOTUS3YS.js} +89 -3
- package/dist/index.d.mts +75 -6
- package/dist/index.d.ts +75 -6
- package/dist/index.js +25 -8
- package/dist/index.mjs +21 -4
- package/dist/{runtime-BzYhhUVf.d.ts → runtime-BgtwoMx5.d.ts} +49 -4
- package/dist/{runtime-D52-pPFI.d.mts → runtime-DQlTgVZJ.d.mts} +49 -4
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +2 -2
- package/dist/runtime.mjs +1 -1
- package/package.json +2 -2
|
@@ -3065,17 +3065,54 @@ interface Field {
|
|
|
3065
3065
|
readOnly?: boolean;
|
|
3066
3066
|
}
|
|
3067
3067
|
/**
|
|
3068
|
-
*
|
|
3068
|
+
* Base properties shared by all group types
|
|
3069
3069
|
*/
|
|
3070
|
-
interface
|
|
3070
|
+
interface BaseGroup {
|
|
3071
3071
|
id: string;
|
|
3072
3072
|
label: string;
|
|
3073
3073
|
description?: string;
|
|
3074
|
-
fields: Field[];
|
|
3075
3074
|
collapsible?: boolean;
|
|
3076
3075
|
collapsed?: boolean;
|
|
3077
3076
|
order?: number;
|
|
3078
3077
|
}
|
|
3078
|
+
/**
|
|
3079
|
+
* Group of fields for organizing forms (default group type)
|
|
3080
|
+
*/
|
|
3081
|
+
interface FieldGroup extends BaseGroup {
|
|
3082
|
+
/** Discriminant — optional for backward compatibility with existing data */
|
|
3083
|
+
type?: "fields";
|
|
3084
|
+
fields: Field[];
|
|
3085
|
+
}
|
|
3086
|
+
/**
|
|
3087
|
+
* Group that displays a RelationsView for a relation attribute
|
|
3088
|
+
*/
|
|
3089
|
+
interface RelationGroup extends BaseGroup {
|
|
3090
|
+
type: "relation";
|
|
3091
|
+
/** Relation attribute name on the source object */
|
|
3092
|
+
attribute: string;
|
|
3093
|
+
/** Columns to display (auto-detected from target object if empty) */
|
|
3094
|
+
columns?: string[];
|
|
3095
|
+
/** Read-only mode */
|
|
3096
|
+
readOnly?: boolean;
|
|
3097
|
+
/** Allow creating new related records */
|
|
3098
|
+
allowCreate?: boolean;
|
|
3099
|
+
/**
|
|
3100
|
+
* Two-level traversal — display records from the target's relation.
|
|
3101
|
+
* When set, parent rows become grouping headers and the sub-rows
|
|
3102
|
+
* (from `through.attribute`) are the primary display.
|
|
3103
|
+
*
|
|
3104
|
+
* @example attribute = "members", through.attribute = "companies"
|
|
3105
|
+
* → displays companies of each member
|
|
3106
|
+
*/
|
|
3107
|
+
through?: {
|
|
3108
|
+
/** Relation attribute on the first-level target object */
|
|
3109
|
+
attribute: string;
|
|
3110
|
+
};
|
|
3111
|
+
}
|
|
3112
|
+
/**
|
|
3113
|
+
* Discriminated union of all group types
|
|
3114
|
+
*/
|
|
3115
|
+
type Group = FieldGroup | RelationGroup;
|
|
3079
3116
|
type TabType = "form" | "table" | "custom" | "activity" | "richtext" | "flows" | "documents";
|
|
3080
3117
|
/**
|
|
3081
3118
|
* Base properties shared by all tab types
|
|
@@ -3454,6 +3491,14 @@ declare function isTimelineView(view: ViewDefinition): view is TimelineViewDefin
|
|
|
3454
3491
|
* Check if a view is a gallery view
|
|
3455
3492
|
*/
|
|
3456
3493
|
declare function isGalleryView(view: ViewDefinition): view is GalleryViewDefinition;
|
|
3494
|
+
/**
|
|
3495
|
+
* Check if a group is a field group (default type)
|
|
3496
|
+
*/
|
|
3497
|
+
declare function isFieldGroup(group: Group): group is FieldGroup;
|
|
3498
|
+
/**
|
|
3499
|
+
* Check if a group is a relation group
|
|
3500
|
+
*/
|
|
3501
|
+
declare function isRelationGroup(group: Group): group is RelationGroup;
|
|
3457
3502
|
/**
|
|
3458
3503
|
* Check if a tab is a form tab
|
|
3459
3504
|
*/
|
|
@@ -12711,4 +12756,4 @@ interface FullSyncOptions extends SyncOptions, ViewSyncOptions {
|
|
|
12711
12756
|
*/
|
|
12712
12757
|
declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof registry, nativeViewRegistry: typeof viewRegistry, options?: FullSyncOptions): Promise<FullSyncResult>;
|
|
12713
12758
|
|
|
12714
|
-
export { type AIToolCall as $, type AttributeGroupField as A, type BoundingBox as B, type CreateMode as C, type DetailViewLayout as D, type SignerRequest as E, type Field as F, type Group as G, type SignaturePosition as H, type InferAttributeValue as I, type SignatureRequestResult as J, type SignatureStatusResult as K, type ListViewDefinition as L, type SignerStatus as M, type SignatureStatus as N, type ObjectAction as O, type IdentityVerificationAdapter as P, type VerifyInput as Q, type VerificationResult as R, type SystemResource as S, type Tab as T, type DocumentData as U, type ViewType as V, type WorkflowTheme as W, type VerificationCheck as X, type AIMessageRole as Y, type AIThinkingLevel as Z, type AIToolCallStatus as _, type SystemAction as a, type File as a$, type AIChatMessagePartType as a0, type TextPartData as a1, type ToolPartData as a2, type ThinkingPartData as a3, type ReasoningPartData as a4, type AIChatMessagePart as a5, type AIChatMessage as a6, type AIQuestionType as a7, type AIQuestionOption as a8, type AIQuestion as a9, type DocumentGenerationTemplate as aA, type CreateDocumentGenerationTemplate as aB, type UpdateDocumentGenerationTemplate as aC, type PendingDocumentRequest as aD, type DocumentSlotDefinition as aE, type DocumentAutoProcessing as aF, type ExtractionMapping as aG, type ExtractionField as aH, type Document as aI, type DocumentStatus as aJ, type DocumentSlot as aK, type SlotStatus as aL, type ProcessingJob as aM, type ProcessingJobType as aN, type ProcessingJobStatus as aO, type CreateDocument as aP, type UpdateDocument as aQ, type CreateDocumentTemplate as aR, type UpdateDocumentTemplate as aS, type CreateDocumentSlot as aT, type UpdateDocumentSlot as aU, type CreateProcessingJob as aV, type UpdateProcessingJob as aW, type DocumentListOptions as aX, type DocumentTemplateListOptions as aY, type StorageProvider as aZ, type FileVisibility as a_, type AIQuestionAnswer as aa, type AIBatchQuestionOption as ab, type AIBatchQuestion as ac, type AIBatchQuestionAnswer as ad, type AITodoStatus as ae, type AITodoItem as af, type AITodoList as ag, type AIMessageAttachment as ah, type AIConversation as ai, type AIMessage as aj, type AIToolCallRecord as ak, type AIUserMemory as al, type AIUsageMetrics as am, type AIProviderMetrics as an, type CreateAIMessageInput as ao, type AuditResourceType as ap, type AuditAction as aq, type AuditActorType as ar, type AuditChange as as, type AuditLogEntry as at, type CreateAuditLogInput as au, type AuditListOptions as av, type AuditServiceOptions as aw, type VariableMapping as ax, type PdfTemplateField as ay, type TemplateSource as az, type SidePanelConfig as b, type PermissionScope as b$, type CreateFile as b0, type UpdateFile as b1, type TextFilterOperator as b2, type NumberFilterOperator as b3, type CheckboxFilterOperator as b4, type DateFilterOperator as b5, type SelectFilterOperator as b6, type MultiselectFilterOperator as b7, type RelationFilterOperator as b8, type FilterOperator as b9, type ReverseGeocodingParams as bA, type GeocodingParams as bB, type GeocodingAdapter as bC, NoopGeocodingAdapter as bD, type AttributeSchema as bE, type InferRecordFromSchema as bF, type InferRecordWithRequirements as bG, type TypedAttribute as bH, type AttributeMap as bI, type AddAttribute as bJ, type InferRecord as bK, type InferRecordInput as bL, type InferRecordUpdate as bM, type CustomAttributeValue as bN, type WithCustomAttributes as bO, type RecordMetadata as bP, type SystemFields as bQ, type ExtractRecord as bR, type ExtractRecordStrict as bS, type ExtractRecordInput as bT, type ExtractRecordInputStrict as bU, type ExtractRecordUpdate as bV, type ExtractRecordUpdateStrict as bW, type ExtractAttributes as bX, type TypedObjectRecord as bY, type ExtractObjectRecord as bZ, type ExtractObjectRecordWithCustom as b_, type RelativeDateValue as ba, type CurrencyFilterValue as bb, type PhoneFilterValue as bc, type FilterValue as bd, type FilterRule as be, type ExtendedFilterRule as bf, type FilterCombinator as bg, type FilterGroup as bh, type AdvancedFilterState as bi, type SortDirection as bj, type QueryState as bk, OPERATORS_BY_TYPE as bl, type NoValueOperator as bm, NO_VALUE_OPERATORS as bn, isNoValueOperator as bo, type FlowSlot as bp, type FlowRowField as bq, type FlowPage as br, type FlowRelation as bs, type FlowStatus as bt, type FlowDefinition as bu, isFlowDefinition as bv, isFlowPublished as bw, isSystemFlow as bx, type GeocodingSuggestion as by, type GeocodingAutocompleteParams as bz, type DetailViewDefinition as c, isAdvancedFormNode as c$, type Role as c0, type Permission as c1, type UserRoleAssignment as c2, type EffectivePermissions as c3, type ObjectPermissions as c4, type SystemPermissions as c5, type CreateRoleInput as c6, type UpdateRoleInput as c7, type CreatePermissionInput as c8, type AssignRoleInput as c9, type CalendarViewDefinition as cA, type TimelineViewDefinition as cB, type GalleryViewDefinition as cC, type ConfigOverrides as cD, type ViewOverlay as cE, isDetailView as cF, isListView as cG, isCalendarView as cH, isTimelineView as cI, isGalleryView as cJ, isFormTab as cK, isTableTab as cL, isRelationSourceTab as cM, isInverseSourceTab as cN, isCustomTab as cO, isActivityTab as cP, isRichtextTab as cQ, isFlowsTab as cR, isDocumentsTab as cS, type ConditionNode as cT, type DocumentNode as cU, type EndNode as cV, type FormFieldRef as cW, type FormNode as cX, type StartNode as cY, type WorkflowNodeType as cZ, getNodeOutputs as c_, type PolicyContext as ca, type RecordPolicy as cb, PolicyViolationError as cc, type UserRole as cd, type UserStatus as ce, type UserProfile as cf, type CreateUserProfile as cg, type UpdateUserProfile as ch, type InviteUserInput as ci, type TabType as cj, type FormDensity as ck, type FormTab as cl, type RelationSource as cm, type InverseSource as cn, type TableSource as co, type CustomTab as cp, type ActivityTab as cq, type RichtextTab as cr, type FlowsTab as cs, type DocumentsTab as ct, type ListViewLayout as cu, type DetailViewConfig as cv, type CalendarViewConfig as cw, type TimelineViewConfig as cx, type GalleryViewConfig as cy, type ViewConfig as cz, type InstanceStatus as d, viewRegistry as d$, isConditionNode as d0, isDocumentNode as d1, isEndNode as d2, isFormNode as d3, isSimpleFormNode as d4, isStartNode as d5, type ConditionOperator as d6, and as d7, eq as d8, inValues as d9, isInvitationExpired as dA, isInvitationValid as dB, type CreateGrantInput as dC, type WorkflowAccessGrant as dD, canAccessNode as dE, isGrantExpired as dF, isGrantRevoked as dG, isGrantValid as dH, isTokenRevoked as dI, type GeneratedDocument as dJ, type WorkflowExecutionContext as dK, createEmptyContext as dL, getContextValue as dM, setContextValue as dN, type FormContextResponse as dO, type FormFieldContext as dP, type FormFieldRow as dQ, type FormNodeInfo as dR, type ReadOnlyReason as dS, type WorkflowAccessMode as dT, type ThemeColors as dU, type ThemeLogo as dV, type ThemeTypography as dW, DEFAULT_THEME as dX, generateCssVariables as dY, mergeWithDefaults as dZ, registry as d_, isConditionGroup as da, isConditionRule as db, neq as dc, or as dd, type CanvasViewport as de, type NodePosition as df, type WorkflowLayout as dg, type WorkflowSlot as dh, type WorkflowStatus as di, isSystemWorkflow as dj, isWorkflowDefinition as dk, isWorkflowPublished as dl, type PendingAction as dm, type WorkflowError as dn, type WorkflowInstance as dp, type WorkflowTransition as dq, canResumeInstance as dr, createStartTransition as ds, isInstanceTerminal as dt, isInstanceWaiting as du, type CreateInvitationInput as dv, type CreateInvitationResult as dw, type InvitationStatus as dx, type WorkflowInvitation as dy, isInvitationAccepted as dz, type TableTab as e, runWithContext as e$, type ViewOverlaysRepository as e0, type RelationAttributeInput as e1, type RelationAttributeRow as e2, type RelationAttributesRepository as e3, type DatabaseAdapter as e4, WorkflowJwtService as e5, type JwtVerificationResult as e6, type MagicLinkPayload as e7, type WorkflowAccessPayload as e8, type WorkflowJwtConfig as e9, type EvaluationResult as eA, type EvaluationTrace as eB, evaluateCondition as eC, evaluate as eD, evaluateWithTrace as eE, TenantContextError as eF, FeatureFlagsContextError as eG, getFeatureFlags as eH, getFeatureValue as eI, hasFeatureFlagsContext as eJ, isFeatureEnabled as eK, runWithFeatureFlags as eL, tryGetFeatureValue as eM, withFeatureFlags as eN, type FeatureFlagsContext as eO, addSchemaToContext as eP, getSchemaByNameFromContext as eQ, getSchemaContext as eR, getSchemaFromContext as eS, hasSchemaContext as eT, runWithMergedSchemaContext as eU, runWithSchemaContext as eV, type SchemaContext as eW, getContext as eX, getTenantId as eY, getUserId as eZ, hasContext as e_, type WorkflowJwtPayload as ea, type CacheKeyType as eb, hashOptions as ec, type CacheAdapter as ed, type CacheOptions as ee, cacheKeys as ef, cacheTtl as eg, defaultTtl as eh, NoopCacheAdapter as ei, type FetchResult as ej, type FormattedRecord as ek, type GroupedFetchResult as el, type InsertOptions as em, type QueryBuilderState as en, type RegistryMap as eo, type RegistryObjectNames as ep, type ShortcutOperator as eq, createDefaultState as er, formatRecord as es, formatRecords as et, QueryMultipleResultsError as eu, QueryNoResultError as ev, SHORTCUT_TO_FILTER_OPERATOR as ew, createQueryBuilder as ex, QueryBuilder as ey, type QueryBuilderOptions as ez, type FilterState as f, type AIUsageMetricsRepository as f$, withTenantContext as f0, type TenantContext as f1, createDefaultExecutorRegistry as f2, getDefaultExecutorRegistry as f3, type ExecutorCompleteResult as f4, type ExecutorContext as f5, type ExecutorErrorResult as f6, type ExecutorResult as f7, type ExecutorSuccessResult as f8, type ExecutorWaitResult as f9, getTargetAttributeName as fA, InvalidPathError as fB, MaxDepthExceededError as fC, parsePath as fD, pathHasManyCardinality as fE, validatePath as fF, type PathCardinality as fG, type PathSegment as fH, type PathSegmentType as fI, type SchemaResolver as fJ, resolveMultiplePaths as fK, resolveSingleValue as fL, traversePath as fM, type TraversalOptions as fN, type TraversalResult as fO, type AttributeChange as fP, type HookContext as fQ, type HookDefinition as fR, type HookHandler as fS, type HookType as fT, NoopHookRegistry as fU, type HookRegistry as fV, createMockAdapter as fW, type MockStores as fX, defaultPolicyRegistry as fY, PolicyRegistry as fZ, type AIConversationsRepository as f_, type NodeExecutor as fa, complete as fb, error as fc, ExecutorRegistry as fd, success as fe, wait as ff, ConditionExecutor as fg, DocumentExecutor as fh, EndExecutor as fi, FormExecutor as fj, StartExecutor as fk, evaluateFormula as fl, evaluateFormulaAttribute as fm, evaluateFormulaAttributeWithRelations as fn, evaluateFormulaWithRelations as fo, evaluateFormulaWithResult as fp, extractFormulaVariables as fq, extractRelationNames as fr, extractRelationReferences as fs, flattenRelationsForEval as ft, formatFormulaResult as fu, hasRelationReferences as fv, validateFormulaExpression as fw, type FormulaResult as fx, getPathDepth as fy, getRelationPath as fz, type SortRule as g, checkRecordDeleteOrThrow as g$, type AIUserMemoryRepository as g0, type AttributesRepository as g1, type AuditRepository as g2, type DocumentGenerationTemplateListOptions as g3, type DocumentGenerationTemplatesRepository as g4, type DocumentJobsRepository as g5, type DocumentSlotsRepository as g6, type DocumentsRepository as g7, type DocumentTemplatesRepository as g8, type FilesRepository as g9, type RelationValidationError as gA, type RelationOption as gB, type RelationOptionsResponse as gC, type GetRelationOptionsParams as gD, type RelationServiceOptions as gE, type ResolveIdsBatchRequest as gF, type ResolveIdsBatchResponse as gG, RelationService as gH, type MultiRelationValue as gI, type SingleRelationValue as gJ, type HybridRelationValue as gK, RelationPropertiesService as gL, RecordResolverService as gM, type ResolvedRelations as gN, type FormulaResolverServiceOptions as gO, FormulaResolverService as gP, type RollupResult as gQ, type RollupServiceOptions as gR, RollupService as gS, type RollupSchedulerOptions as gT, RollupScheduler as gU, applyDefaultValues as gV, checkPermission as gW, getPolicy as gX, buildPolicyContext as gY, checkRecordAccess as gZ, checkRecordModifyOrThrow as g_, type ObjectRecordsRepository as ga, type ObjectsRepository as gb, type PermissionsRepository as gc, type UserProfilesRepository as gd, type ViewsRepository as ge, type WorkflowAccessGrantsRepository as gf, type WorkflowInstancesRepository as gg, type WorkflowInvitationsRepository as gh, type WorkflowsRepository as gi, BaseService as gj, BaseRepository as gk, type SchemaContextAware as gl, SchemaContextAwareRepository as gm, type CreateCustomObjectInput as gn, type AddAttributeInput as go, type UpdateObjectInput as gp, type ObjectSchemaServiceOptions as gq, ObjectSchemaService as gr, type RecordServiceOptions as gs, RecordService as gt, type RecordQueryServiceOptions as gu, type QueryOptions as gv, type SearchQueryOptions as gw, type QueryResult as gx, RecordQueryService as gy, type RelationValidationResult as gz, type WorkflowConfig as h, type PermissionServiceOptions as h$, checkSharedObjectWriteAccess 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 UserValidationError as hA, UserService as hB, type UserProfileServiceOptions as hC, UserProfileService as hD, AuditService as hE, buildAuditChanges as hF, DocumentGenerationTemplateNotFoundError as hG, DocumentGenerationNotConfiguredError as hH, DocumentGenerationService as hI, type DocumentProcessingConfig as hJ, DocumentProcessingService as hK, type RenderDocumentInput as hL, type DocumentRendererOptions as hM, type RenderDocumentResult as hN, DocumentRenderError as hO, StorageDownloadNotSupportedError as hP, DocumentRendererService as hQ, DocumentTemplateService as hR, type RecordDocumentsResult as hS, type CreateRecordDocumentInput as hT, type CreateRecordDocumentResult as hU, type DocumentServiceOptions as hV, DocumentService as hW, type FileServiceOptions as hX, FileService as hY, GeocodingService as hZ, GlobalSearchService as h_, type RollupCascadeContext as ha, type DocumentProcessingHookOptions as hb, DocumentProcessingHook as hc, GrantNotFoundError as hd, GrantExpiredError as he, GrantRevokedError as hf, TokenRevokedError as hg, type GrantServiceConfig as hh, type CreateGrantResult as hi, WorkflowAccessGrantService as hj, type StartWorkflowInput as hk, type ResumeWorkflowInput as hl, type WorkflowInstanceServiceOptions as hm, WorkflowInstanceService as hn, type InvitationServiceConfig as ho, InvitationNotFoundError as hp, InvitationExpiredError as hq, InvitationAlreadyAcceptedError as hr, InvitationRevokedError as hs, WorkflowInvitationService as ht, WorkflowRelationService as hu, type CreateWorkflowInput as hv, type UpdateWorkflowInput as hw, type WorkflowServiceOptions as hx, WorkflowService as hy, type UserValidationResult as hz, type SlotMode as i, type DBWorkflowAccessGrant as i$, PermissionService as i0, type CreateViewInput as i1, type UpdateViewInput as i2, type GetViewsOptions as i3, type GetViewOptions as i4, ViewService as i5, type FileContent as i6, type StorageUploadInput as i7, type StorageUploadResult as i8, type SignedUrlOptions as i9, type CreateDBAttribute as iA, type UpdateDBAttribute as iB, type UpsertDBAttribute as iC, type CreateObjectRecord as iD, type ListOptions as iE, type SearchOptions as iF, type GlobalSearchOptions as iG, type GlobalSearchGroupedOptions as iH, type GlobalSearchResultItem as iI, type GlobalSearchGroupedResult as iJ, type FileListOptions as iK, type DBView as iL, type CreateDBView as iM, type UpdateDBView as iN, type UpsertDBView as iO, type DBViewOverlay as iP, type CreateDBViewOverlay as iQ, type UpdateDBViewOverlay as iR, type DBWorkflow as iS, type CreateDBWorkflow as iT, type UpdateDBWorkflow as iU, type DBWorkflowInstance as iV, type CreateDBWorkflowInstance as iW, type UpdateDBWorkflowInstance as iX, type DBWorkflowInvitation as iY, type CreateDBWorkflowInvitation as iZ, type UpdateDBWorkflowInvitation as i_, type StorageAdapter as ia, type UploadFileInput as ib, type SyncResult as ic, type SyncOptions as id, syncNativeObjects as ie, verifyNativeObjectsSync as ig, getSyncPreview as ih, type FullSyncResult as ii, type FullSyncOptions as ij, syncAll as ik, DEFAULT_LABEL_FALLBACK as il, renderLabelExpression as im, isLabelExpression as io, extractAttributeNames as ip, enrichValuesForDisplay as iq, enrichValuesWithSelectLabels as ir, extractRelationIds as is, type RelationLabelResolver as it, computeLabelWithRelations as iu, type DBObject as iv, type CreateDBObject as iw, type UpdateDBObject as ix, type UpsertDBObject as iy, type DBAttribute as iz, type ConditionGroup as j, type CreateDBWorkflowAccessGrant as j0, type UpdateDBWorkflowAccessGrant as j1, type OperationResult as j2, type ViewSyncResult as j3, type ViewSyncLogger as j4, type ViewSyncOptions as j5, seedRegistryViews as j6, syncNativeViews as j7, verifyRegistryViewsSeeded as j8, verifyNativeViewsSync as j9, getViewSeedPreview as ja, getViewSyncPreview as jb, type ConditionRule as k, type WorkflowNode as l, type WorkflowDefinition as m, type FlowRow as n, type ListViewConfig as o, type ListViewTab as p, type ViewDefinition as q, type DocumentTemplate as r, type OcrAdapter as s, type OcrInput as t, type OcrOptions as u, type OcrResult as v, type OcrPage as w, type OcrTextBlock as x, type SignatureAdapter as y, type CreateSignatureInput as z };
|
|
12759
|
+
export { type AIThinkingLevel as $, type AttributeGroupField as A, type BoundingBox as B, type CreateMode as C, type DetailViewLayout as D, type CreateSignatureInput as E, type Field as F, type Group as G, type SignerRequest as H, type InferAttributeValue as I, type SignaturePosition as J, type SignatureRequestResult as K, type ListViewDefinition as L, type SignatureStatusResult as M, type SignerStatus as N, type ObjectAction as O, type SignatureStatus as P, type IdentityVerificationAdapter as Q, type RelationGroup as R, type SystemResource as S, type Tab as T, type VerifyInput as U, type ViewType as V, type WorkflowTheme as W, type VerificationResult as X, type DocumentData as Y, type VerificationCheck as Z, type AIMessageRole as _, type SystemAction as a, type StorageProvider as a$, type AIToolCallStatus as a0, type AIToolCall as a1, type AIChatMessagePartType as a2, type TextPartData as a3, type ToolPartData as a4, type ThinkingPartData as a5, type ReasoningPartData as a6, type AIChatMessagePart as a7, type AIChatMessage as a8, type AIQuestionType as a9, type PdfTemplateField as aA, type TemplateSource as aB, type DocumentGenerationTemplate as aC, type CreateDocumentGenerationTemplate as aD, type UpdateDocumentGenerationTemplate as aE, type PendingDocumentRequest as aF, type DocumentSlotDefinition as aG, type DocumentAutoProcessing as aH, type ExtractionMapping as aI, type ExtractionField as aJ, type Document as aK, type DocumentStatus as aL, type DocumentSlot as aM, type SlotStatus as aN, type ProcessingJob as aO, type ProcessingJobType as aP, type ProcessingJobStatus as aQ, type CreateDocument as aR, type UpdateDocument as aS, type CreateDocumentTemplate as aT, type UpdateDocumentTemplate as aU, type CreateDocumentSlot as aV, type UpdateDocumentSlot as aW, type CreateProcessingJob as aX, type UpdateProcessingJob as aY, type DocumentListOptions as aZ, type DocumentTemplateListOptions as a_, type AIQuestionOption as aa, type AIQuestion as ab, type AIQuestionAnswer as ac, type AIBatchQuestionOption as ad, type AIBatchQuestion as ae, type AIBatchQuestionAnswer as af, type AITodoStatus as ag, type AITodoItem as ah, type AITodoList as ai, type AIMessageAttachment as aj, type AIConversation as ak, type AIMessage as al, type AIToolCallRecord as am, type AIUserMemory as an, type AIUsageMetrics as ao, type AIProviderMetrics as ap, type CreateAIMessageInput as aq, type AuditResourceType as ar, type AuditAction as as, type AuditActorType as at, type AuditChange as au, type AuditLogEntry as av, type CreateAuditLogInput as aw, type AuditListOptions as ax, type AuditServiceOptions as ay, type VariableMapping as az, type FieldGroup as b, type ExtractObjectRecord as b$, type FileVisibility as b0, type File as b1, type CreateFile as b2, type UpdateFile as b3, type TextFilterOperator as b4, type NumberFilterOperator as b5, type CheckboxFilterOperator as b6, type DateFilterOperator as b7, type SelectFilterOperator as b8, type MultiselectFilterOperator as b9, type GeocodingSuggestion as bA, type GeocodingAutocompleteParams as bB, type ReverseGeocodingParams as bC, type GeocodingParams as bD, type GeocodingAdapter as bE, NoopGeocodingAdapter as bF, type AttributeSchema as bG, type InferRecordFromSchema as bH, type InferRecordWithRequirements as bI, type TypedAttribute as bJ, type AttributeMap as bK, type AddAttribute as bL, type InferRecord as bM, type InferRecordInput as bN, type InferRecordUpdate as bO, type CustomAttributeValue as bP, type WithCustomAttributes as bQ, type RecordMetadata as bR, type SystemFields as bS, type ExtractRecord as bT, type ExtractRecordStrict as bU, type ExtractRecordInput as bV, type ExtractRecordInputStrict as bW, type ExtractRecordUpdate as bX, type ExtractRecordUpdateStrict as bY, type ExtractAttributes as bZ, type TypedObjectRecord as b_, type RelationFilterOperator as ba, type FilterOperator as bb, type RelativeDateValue as bc, type CurrencyFilterValue as bd, type PhoneFilterValue as be, type FilterValue as bf, type FilterRule as bg, type ExtendedFilterRule as bh, type FilterCombinator as bi, type FilterGroup as bj, type AdvancedFilterState as bk, type SortDirection as bl, type QueryState as bm, OPERATORS_BY_TYPE as bn, type NoValueOperator as bo, NO_VALUE_OPERATORS as bp, isNoValueOperator as bq, type FlowSlot as br, type FlowRowField as bs, type FlowPage as bt, type FlowRelation as bu, type FlowStatus as bv, type FlowDefinition as bw, isFlowDefinition as bx, isFlowPublished as by, isSystemFlow as bz, type SidePanelConfig as c, type FormNode as c$, type ExtractObjectRecordWithCustom as c0, type PermissionScope as c1, type Role as c2, type Permission as c3, type UserRoleAssignment as c4, type EffectivePermissions as c5, type ObjectPermissions as c6, type SystemPermissions as c7, type CreateRoleInput as c8, type UpdateRoleInput as c9, type GalleryViewConfig as cA, type ViewConfig as cB, type CalendarViewDefinition as cC, type TimelineViewDefinition as cD, type GalleryViewDefinition as cE, type ConfigOverrides as cF, type ViewOverlay as cG, isDetailView as cH, isListView as cI, isCalendarView as cJ, isTimelineView as cK, isGalleryView as cL, isFieldGroup as cM, isRelationGroup as cN, isFormTab as cO, isTableTab as cP, isRelationSourceTab as cQ, isInverseSourceTab as cR, isCustomTab as cS, isActivityTab as cT, isRichtextTab as cU, isFlowsTab as cV, isDocumentsTab as cW, type ConditionNode as cX, type DocumentNode as cY, type EndNode as cZ, type FormFieldRef as c_, type CreatePermissionInput as ca, type AssignRoleInput as cb, type PolicyContext as cc, type RecordPolicy as cd, PolicyViolationError as ce, type UserRole as cf, type UserStatus as cg, type UserProfile as ch, type CreateUserProfile as ci, type UpdateUserProfile as cj, type InviteUserInput as ck, type TabType as cl, type FormDensity as cm, type FormTab as cn, type RelationSource as co, type InverseSource as cp, type TableSource as cq, type CustomTab as cr, type ActivityTab as cs, type RichtextTab as ct, type FlowsTab as cu, type DocumentsTab as cv, type ListViewLayout as cw, type DetailViewConfig as cx, type CalendarViewConfig as cy, type TimelineViewConfig as cz, type DetailViewDefinition as d, DEFAULT_THEME as d$, type StartNode as d0, type WorkflowNodeType as d1, getNodeOutputs as d2, isAdvancedFormNode as d3, isConditionNode as d4, isDocumentNode as d5, isEndNode as d6, isFormNode as d7, isSimpleFormNode as d8, isStartNode as d9, type CreateInvitationResult as dA, type InvitationStatus as dB, type WorkflowInvitation as dC, isInvitationAccepted as dD, isInvitationExpired as dE, isInvitationValid as dF, type CreateGrantInput as dG, type WorkflowAccessGrant as dH, canAccessNode as dI, isGrantExpired as dJ, isGrantRevoked as dK, isGrantValid as dL, isTokenRevoked as dM, type GeneratedDocument as dN, type WorkflowExecutionContext as dO, createEmptyContext as dP, getContextValue as dQ, setContextValue as dR, type FormContextResponse as dS, type FormFieldContext as dT, type FormFieldRow as dU, type FormNodeInfo as dV, type ReadOnlyReason as dW, type WorkflowAccessMode as dX, type ThemeColors as dY, type ThemeLogo as dZ, type ThemeTypography as d_, type ConditionOperator as da, and as db, eq as dc, inValues as dd, isConditionGroup as de, isConditionRule as df, neq as dg, or as dh, type CanvasViewport as di, type NodePosition as dj, type WorkflowLayout as dk, type WorkflowSlot as dl, type WorkflowStatus as dm, isSystemWorkflow as dn, isWorkflowDefinition as dp, isWorkflowPublished as dq, type PendingAction as dr, type WorkflowError as ds, type WorkflowInstance as dt, type WorkflowTransition as du, canResumeInstance as dv, createStartTransition as dw, isInstanceTerminal as dx, isInstanceWaiting as dy, type CreateInvitationInput as dz, type InstanceStatus as e, getContext as e$, generateCssVariables as e0, mergeWithDefaults as e1, registry as e2, viewRegistry as e3, type ViewOverlaysRepository as e4, type RelationAttributeInput as e5, type RelationAttributeRow as e6, type RelationAttributesRepository as e7, type DatabaseAdapter as e8, WorkflowJwtService as e9, SHORTCUT_TO_FILTER_OPERATOR as eA, createQueryBuilder as eB, QueryBuilder as eC, type QueryBuilderOptions as eD, type EvaluationResult as eE, type EvaluationTrace as eF, evaluateCondition as eG, evaluate as eH, evaluateWithTrace as eI, TenantContextError as eJ, FeatureFlagsContextError as eK, getFeatureFlags as eL, getFeatureValue as eM, hasFeatureFlagsContext as eN, isFeatureEnabled as eO, runWithFeatureFlags as eP, tryGetFeatureValue as eQ, withFeatureFlags as eR, type FeatureFlagsContext as eS, addSchemaToContext as eT, getSchemaByNameFromContext as eU, getSchemaContext as eV, getSchemaFromContext as eW, hasSchemaContext as eX, runWithMergedSchemaContext as eY, runWithSchemaContext as eZ, type SchemaContext as e_, type JwtVerificationResult as ea, type MagicLinkPayload as eb, type WorkflowAccessPayload as ec, type WorkflowJwtConfig as ed, type WorkflowJwtPayload as ee, type CacheKeyType as ef, hashOptions as eg, type CacheAdapter as eh, type CacheOptions as ei, cacheKeys as ej, cacheTtl as ek, defaultTtl as el, NoopCacheAdapter as em, type FetchResult as en, type FormattedRecord as eo, type GroupedFetchResult as ep, type InsertOptions as eq, type QueryBuilderState as er, type RegistryMap as es, type RegistryObjectNames as et, type ShortcutOperator as eu, createDefaultState as ev, formatRecord as ew, formatRecords as ex, QueryMultipleResultsError as ey, QueryNoResultError as ez, type TableTab as f, type MockStores as f$, getTenantId as f0, getUserId as f1, hasContext as f2, runWithContext as f3, withTenantContext as f4, type TenantContext as f5, createDefaultExecutorRegistry as f6, getDefaultExecutorRegistry as f7, type ExecutorCompleteResult as f8, type ExecutorContext as f9, validateFormulaExpression as fA, type FormulaResult as fB, getPathDepth as fC, getRelationPath as fD, getTargetAttributeName as fE, InvalidPathError as fF, MaxDepthExceededError as fG, parsePath as fH, pathHasManyCardinality as fI, validatePath as fJ, type PathCardinality as fK, type PathSegment as fL, type PathSegmentType as fM, type SchemaResolver as fN, resolveMultiplePaths as fO, resolveSingleValue as fP, traversePath as fQ, type TraversalOptions as fR, type TraversalResult as fS, type AttributeChange as fT, type HookContext as fU, type HookDefinition as fV, type HookHandler as fW, type HookType as fX, NoopHookRegistry as fY, type HookRegistry as fZ, createMockAdapter as f_, type ExecutorErrorResult as fa, type ExecutorResult as fb, type ExecutorSuccessResult as fc, type ExecutorWaitResult as fd, type NodeExecutor as fe, complete as ff, error as fg, ExecutorRegistry as fh, success as fi, wait as fj, ConditionExecutor as fk, DocumentExecutor as fl, EndExecutor as fm, FormExecutor as fn, StartExecutor as fo, evaluateFormula as fp, evaluateFormulaAttribute as fq, evaluateFormulaAttributeWithRelations as fr, evaluateFormulaWithRelations as fs, evaluateFormulaWithResult as ft, extractFormulaVariables as fu, extractRelationNames as fv, extractRelationReferences as fw, flattenRelationsForEval as fx, formatFormulaResult as fy, hasRelationReferences as fz, type FilterState as g, getPolicy as g$, defaultPolicyRegistry as g0, PolicyRegistry as g1, type AIConversationsRepository as g2, type AIUsageMetricsRepository as g3, type AIUserMemoryRepository as g4, type AttributesRepository as g5, type AuditRepository as g6, type DocumentGenerationTemplateListOptions as g7, type DocumentGenerationTemplatesRepository as g8, type DocumentJobsRepository as g9, type SearchQueryOptions as gA, type QueryResult as gB, RecordQueryService as gC, type RelationValidationResult as gD, type RelationValidationError as gE, type RelationOption as gF, type RelationOptionsResponse as gG, type GetRelationOptionsParams as gH, type RelationServiceOptions as gI, type ResolveIdsBatchRequest as gJ, type ResolveIdsBatchResponse as gK, RelationService as gL, type MultiRelationValue as gM, type SingleRelationValue as gN, type HybridRelationValue as gO, RelationPropertiesService as gP, RecordResolverService as gQ, type ResolvedRelations as gR, type FormulaResolverServiceOptions as gS, FormulaResolverService as gT, type RollupResult as gU, type RollupServiceOptions as gV, RollupService as gW, type RollupSchedulerOptions as gX, RollupScheduler as gY, applyDefaultValues as gZ, checkPermission as g_, type DocumentSlotsRepository as ga, type DocumentsRepository as gb, type DocumentTemplatesRepository as gc, type FilesRepository as gd, type ObjectRecordsRepository as ge, type ObjectsRepository as gf, type PermissionsRepository as gg, type UserProfilesRepository as gh, type ViewsRepository as gi, type WorkflowAccessGrantsRepository as gj, type WorkflowInstancesRepository as gk, type WorkflowInvitationsRepository as gl, type WorkflowsRepository as gm, BaseService as gn, BaseRepository as go, type SchemaContextAware as gp, SchemaContextAwareRepository as gq, type CreateCustomObjectInput as gr, type AddAttributeInput as gs, type UpdateObjectInput as gt, type ObjectSchemaServiceOptions as gu, ObjectSchemaService as gv, type RecordServiceOptions as gw, RecordService as gx, type RecordQueryServiceOptions as gy, type QueryOptions as gz, type SortRule as h, type FileServiceOptions as h$, buildPolicyContext as h0, checkRecordAccess as h1, checkRecordModifyOrThrow as h2, checkRecordDeleteOrThrow as h3, checkSharedObjectWriteAccess as h4, computeLabel as h5, type LabelResolver as h6, enrichWithFormulas as h7, enrichRecordsWithFormulas as h8, createContextForCreate as h9, type UpdateWorkflowInput as hA, type WorkflowServiceOptions as hB, WorkflowService as hC, type UserValidationResult as hD, type UserValidationError as hE, UserService as hF, type UserProfileServiceOptions as hG, UserProfileService as hH, AuditService as hI, buildAuditChanges as hJ, DocumentGenerationTemplateNotFoundError as hK, DocumentGenerationNotConfiguredError as hL, DocumentGenerationService as hM, type DocumentProcessingConfig as hN, DocumentProcessingService as hO, type RenderDocumentInput as hP, type DocumentRendererOptions as hQ, type RenderDocumentResult as hR, DocumentRenderError as hS, StorageDownloadNotSupportedError as hT, DocumentRendererService as hU, DocumentTemplateService as hV, type RecordDocumentsResult as hW, type CreateRecordDocumentInput as hX, type CreateRecordDocumentResult as hY, type DocumentServiceOptions as hZ, DocumentService as h_, createContextForUpdate as ha, createContextForDelete as hb, createContextForRestore as hc, recalculateParentRollups as hd, type RollupCascadeContext as he, type DocumentProcessingHookOptions as hf, DocumentProcessingHook as hg, GrantNotFoundError as hh, GrantExpiredError as hi, GrantRevokedError as hj, TokenRevokedError as hk, type GrantServiceConfig as hl, type CreateGrantResult as hm, WorkflowAccessGrantService as hn, type StartWorkflowInput as ho, type ResumeWorkflowInput as hp, type WorkflowInstanceServiceOptions as hq, WorkflowInstanceService as hr, type InvitationServiceConfig as hs, InvitationNotFoundError as ht, InvitationExpiredError as hu, InvitationAlreadyAcceptedError as hv, InvitationRevokedError as hw, WorkflowInvitationService as hx, WorkflowRelationService as hy, type CreateWorkflowInput as hz, type WorkflowConfig as i, type UpdateDBWorkflowInstance as i$, FileService as i0, GeocodingService as i1, GlobalSearchService as i2, type PermissionServiceOptions as i3, PermissionService as i4, type CreateViewInput as i5, type UpdateViewInput as i6, type GetViewsOptions as i7, type GetViewOptions as i8, ViewService as i9, type CreateDBObject as iA, type UpdateDBObject as iB, type UpsertDBObject as iC, type DBAttribute as iD, type CreateDBAttribute as iE, type UpdateDBAttribute as iF, type UpsertDBAttribute as iG, type CreateObjectRecord as iH, type ListOptions as iI, type SearchOptions as iJ, type GlobalSearchOptions as iK, type GlobalSearchGroupedOptions as iL, type GlobalSearchResultItem as iM, type GlobalSearchGroupedResult as iN, type FileListOptions as iO, type DBView as iP, type CreateDBView as iQ, type UpdateDBView as iR, type UpsertDBView as iS, type DBViewOverlay as iT, type CreateDBViewOverlay as iU, type UpdateDBViewOverlay as iV, type DBWorkflow as iW, type CreateDBWorkflow as iX, type UpdateDBWorkflow as iY, type DBWorkflowInstance as iZ, type CreateDBWorkflowInstance as i_, type FileContent as ia, type StorageUploadInput as ib, type StorageUploadResult as ic, type SignedUrlOptions as id, type StorageAdapter as ie, type UploadFileInput as ig, type SyncResult as ih, type SyncOptions as ii, syncNativeObjects as ij, verifyNativeObjectsSync as ik, getSyncPreview as il, type FullSyncResult as im, type FullSyncOptions as io, syncAll as ip, DEFAULT_LABEL_FALLBACK as iq, renderLabelExpression as ir, isLabelExpression as is, extractAttributeNames as it, enrichValuesForDisplay as iu, enrichValuesWithSelectLabels as iv, extractRelationIds as iw, type RelationLabelResolver as ix, computeLabelWithRelations as iy, type DBObject as iz, type SlotMode as j, type DBWorkflowInvitation as j0, type CreateDBWorkflowInvitation as j1, type UpdateDBWorkflowInvitation as j2, type DBWorkflowAccessGrant as j3, type CreateDBWorkflowAccessGrant as j4, type UpdateDBWorkflowAccessGrant as j5, type OperationResult as j6, type ViewSyncResult as j7, type ViewSyncLogger as j8, type ViewSyncOptions as j9, seedRegistryViews as ja, syncNativeViews as jb, verifyRegistryViewsSeeded as jc, verifyNativeViewsSync as jd, getViewSeedPreview as je, getViewSyncPreview as jf, type ConditionGroup as k, type ConditionRule as l, type WorkflowNode as m, type WorkflowDefinition as n, type FlowRow as o, type ListViewConfig as p, type ListViewTab as q, type ViewDefinition as r, type DocumentTemplate as s, type OcrAdapter as t, type OcrInput as u, type OcrOptions as v, type OcrResult as w, type OcrPage as x, type OcrTextBlock as y, type SignatureAdapter as z };
|
|
@@ -3065,17 +3065,54 @@ interface Field {
|
|
|
3065
3065
|
readOnly?: boolean;
|
|
3066
3066
|
}
|
|
3067
3067
|
/**
|
|
3068
|
-
*
|
|
3068
|
+
* Base properties shared by all group types
|
|
3069
3069
|
*/
|
|
3070
|
-
interface
|
|
3070
|
+
interface BaseGroup {
|
|
3071
3071
|
id: string;
|
|
3072
3072
|
label: string;
|
|
3073
3073
|
description?: string;
|
|
3074
|
-
fields: Field[];
|
|
3075
3074
|
collapsible?: boolean;
|
|
3076
3075
|
collapsed?: boolean;
|
|
3077
3076
|
order?: number;
|
|
3078
3077
|
}
|
|
3078
|
+
/**
|
|
3079
|
+
* Group of fields for organizing forms (default group type)
|
|
3080
|
+
*/
|
|
3081
|
+
interface FieldGroup extends BaseGroup {
|
|
3082
|
+
/** Discriminant — optional for backward compatibility with existing data */
|
|
3083
|
+
type?: "fields";
|
|
3084
|
+
fields: Field[];
|
|
3085
|
+
}
|
|
3086
|
+
/**
|
|
3087
|
+
* Group that displays a RelationsView for a relation attribute
|
|
3088
|
+
*/
|
|
3089
|
+
interface RelationGroup extends BaseGroup {
|
|
3090
|
+
type: "relation";
|
|
3091
|
+
/** Relation attribute name on the source object */
|
|
3092
|
+
attribute: string;
|
|
3093
|
+
/** Columns to display (auto-detected from target object if empty) */
|
|
3094
|
+
columns?: string[];
|
|
3095
|
+
/** Read-only mode */
|
|
3096
|
+
readOnly?: boolean;
|
|
3097
|
+
/** Allow creating new related records */
|
|
3098
|
+
allowCreate?: boolean;
|
|
3099
|
+
/**
|
|
3100
|
+
* Two-level traversal — display records from the target's relation.
|
|
3101
|
+
* When set, parent rows become grouping headers and the sub-rows
|
|
3102
|
+
* (from `through.attribute`) are the primary display.
|
|
3103
|
+
*
|
|
3104
|
+
* @example attribute = "members", through.attribute = "companies"
|
|
3105
|
+
* → displays companies of each member
|
|
3106
|
+
*/
|
|
3107
|
+
through?: {
|
|
3108
|
+
/** Relation attribute on the first-level target object */
|
|
3109
|
+
attribute: string;
|
|
3110
|
+
};
|
|
3111
|
+
}
|
|
3112
|
+
/**
|
|
3113
|
+
* Discriminated union of all group types
|
|
3114
|
+
*/
|
|
3115
|
+
type Group = FieldGroup | RelationGroup;
|
|
3079
3116
|
type TabType = "form" | "table" | "custom" | "activity" | "richtext" | "flows" | "documents";
|
|
3080
3117
|
/**
|
|
3081
3118
|
* Base properties shared by all tab types
|
|
@@ -3454,6 +3491,14 @@ declare function isTimelineView(view: ViewDefinition): view is TimelineViewDefin
|
|
|
3454
3491
|
* Check if a view is a gallery view
|
|
3455
3492
|
*/
|
|
3456
3493
|
declare function isGalleryView(view: ViewDefinition): view is GalleryViewDefinition;
|
|
3494
|
+
/**
|
|
3495
|
+
* Check if a group is a field group (default type)
|
|
3496
|
+
*/
|
|
3497
|
+
declare function isFieldGroup(group: Group): group is FieldGroup;
|
|
3498
|
+
/**
|
|
3499
|
+
* Check if a group is a relation group
|
|
3500
|
+
*/
|
|
3501
|
+
declare function isRelationGroup(group: Group): group is RelationGroup;
|
|
3457
3502
|
/**
|
|
3458
3503
|
* Check if a tab is a form tab
|
|
3459
3504
|
*/
|
|
@@ -12711,4 +12756,4 @@ interface FullSyncOptions extends SyncOptions, ViewSyncOptions {
|
|
|
12711
12756
|
*/
|
|
12712
12757
|
declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof registry, nativeViewRegistry: typeof viewRegistry, options?: FullSyncOptions): Promise<FullSyncResult>;
|
|
12713
12758
|
|
|
12714
|
-
export { type AIToolCall as $, type AttributeGroupField as A, type BoundingBox as B, type CreateMode as C, type DetailViewLayout as D, type SignerRequest as E, type Field as F, type Group as G, type SignaturePosition as H, type InferAttributeValue as I, type SignatureRequestResult as J, type SignatureStatusResult as K, type ListViewDefinition as L, type SignerStatus as M, type SignatureStatus as N, type ObjectAction as O, type IdentityVerificationAdapter as P, type VerifyInput as Q, type VerificationResult as R, type SystemResource as S, type Tab as T, type DocumentData as U, type ViewType as V, type WorkflowTheme as W, type VerificationCheck as X, type AIMessageRole as Y, type AIThinkingLevel as Z, type AIToolCallStatus as _, type SystemAction as a, type File as a$, type AIChatMessagePartType as a0, type TextPartData as a1, type ToolPartData as a2, type ThinkingPartData as a3, type ReasoningPartData as a4, type AIChatMessagePart as a5, type AIChatMessage as a6, type AIQuestionType as a7, type AIQuestionOption as a8, type AIQuestion as a9, type DocumentGenerationTemplate as aA, type CreateDocumentGenerationTemplate as aB, type UpdateDocumentGenerationTemplate as aC, type PendingDocumentRequest as aD, type DocumentSlotDefinition as aE, type DocumentAutoProcessing as aF, type ExtractionMapping as aG, type ExtractionField as aH, type Document as aI, type DocumentStatus as aJ, type DocumentSlot as aK, type SlotStatus as aL, type ProcessingJob as aM, type ProcessingJobType as aN, type ProcessingJobStatus as aO, type CreateDocument as aP, type UpdateDocument as aQ, type CreateDocumentTemplate as aR, type UpdateDocumentTemplate as aS, type CreateDocumentSlot as aT, type UpdateDocumentSlot as aU, type CreateProcessingJob as aV, type UpdateProcessingJob as aW, type DocumentListOptions as aX, type DocumentTemplateListOptions as aY, type StorageProvider as aZ, type FileVisibility as a_, type AIQuestionAnswer as aa, type AIBatchQuestionOption as ab, type AIBatchQuestion as ac, type AIBatchQuestionAnswer as ad, type AITodoStatus as ae, type AITodoItem as af, type AITodoList as ag, type AIMessageAttachment as ah, type AIConversation as ai, type AIMessage as aj, type AIToolCallRecord as ak, type AIUserMemory as al, type AIUsageMetrics as am, type AIProviderMetrics as an, type CreateAIMessageInput as ao, type AuditResourceType as ap, type AuditAction as aq, type AuditActorType as ar, type AuditChange as as, type AuditLogEntry as at, type CreateAuditLogInput as au, type AuditListOptions as av, type AuditServiceOptions as aw, type VariableMapping as ax, type PdfTemplateField as ay, type TemplateSource as az, type SidePanelConfig as b, type PermissionScope as b$, type CreateFile as b0, type UpdateFile as b1, type TextFilterOperator as b2, type NumberFilterOperator as b3, type CheckboxFilterOperator as b4, type DateFilterOperator as b5, type SelectFilterOperator as b6, type MultiselectFilterOperator as b7, type RelationFilterOperator as b8, type FilterOperator as b9, type ReverseGeocodingParams as bA, type GeocodingParams as bB, type GeocodingAdapter as bC, NoopGeocodingAdapter as bD, type AttributeSchema as bE, type InferRecordFromSchema as bF, type InferRecordWithRequirements as bG, type TypedAttribute as bH, type AttributeMap as bI, type AddAttribute as bJ, type InferRecord as bK, type InferRecordInput as bL, type InferRecordUpdate as bM, type CustomAttributeValue as bN, type WithCustomAttributes as bO, type RecordMetadata as bP, type SystemFields as bQ, type ExtractRecord as bR, type ExtractRecordStrict as bS, type ExtractRecordInput as bT, type ExtractRecordInputStrict as bU, type ExtractRecordUpdate as bV, type ExtractRecordUpdateStrict as bW, type ExtractAttributes as bX, type TypedObjectRecord as bY, type ExtractObjectRecord as bZ, type ExtractObjectRecordWithCustom as b_, type RelativeDateValue as ba, type CurrencyFilterValue as bb, type PhoneFilterValue as bc, type FilterValue as bd, type FilterRule as be, type ExtendedFilterRule as bf, type FilterCombinator as bg, type FilterGroup as bh, type AdvancedFilterState as bi, type SortDirection as bj, type QueryState as bk, OPERATORS_BY_TYPE as bl, type NoValueOperator as bm, NO_VALUE_OPERATORS as bn, isNoValueOperator as bo, type FlowSlot as bp, type FlowRowField as bq, type FlowPage as br, type FlowRelation as bs, type FlowStatus as bt, type FlowDefinition as bu, isFlowDefinition as bv, isFlowPublished as bw, isSystemFlow as bx, type GeocodingSuggestion as by, type GeocodingAutocompleteParams as bz, type DetailViewDefinition as c, isAdvancedFormNode as c$, type Role as c0, type Permission as c1, type UserRoleAssignment as c2, type EffectivePermissions as c3, type ObjectPermissions as c4, type SystemPermissions as c5, type CreateRoleInput as c6, type UpdateRoleInput as c7, type CreatePermissionInput as c8, type AssignRoleInput as c9, type CalendarViewDefinition as cA, type TimelineViewDefinition as cB, type GalleryViewDefinition as cC, type ConfigOverrides as cD, type ViewOverlay as cE, isDetailView as cF, isListView as cG, isCalendarView as cH, isTimelineView as cI, isGalleryView as cJ, isFormTab as cK, isTableTab as cL, isRelationSourceTab as cM, isInverseSourceTab as cN, isCustomTab as cO, isActivityTab as cP, isRichtextTab as cQ, isFlowsTab as cR, isDocumentsTab as cS, type ConditionNode as cT, type DocumentNode as cU, type EndNode as cV, type FormFieldRef as cW, type FormNode as cX, type StartNode as cY, type WorkflowNodeType as cZ, getNodeOutputs as c_, type PolicyContext as ca, type RecordPolicy as cb, PolicyViolationError as cc, type UserRole as cd, type UserStatus as ce, type UserProfile as cf, type CreateUserProfile as cg, type UpdateUserProfile as ch, type InviteUserInput as ci, type TabType as cj, type FormDensity as ck, type FormTab as cl, type RelationSource as cm, type InverseSource as cn, type TableSource as co, type CustomTab as cp, type ActivityTab as cq, type RichtextTab as cr, type FlowsTab as cs, type DocumentsTab as ct, type ListViewLayout as cu, type DetailViewConfig as cv, type CalendarViewConfig as cw, type TimelineViewConfig as cx, type GalleryViewConfig as cy, type ViewConfig as cz, type InstanceStatus as d, viewRegistry as d$, isConditionNode as d0, isDocumentNode as d1, isEndNode as d2, isFormNode as d3, isSimpleFormNode as d4, isStartNode as d5, type ConditionOperator as d6, and as d7, eq as d8, inValues as d9, isInvitationExpired as dA, isInvitationValid as dB, type CreateGrantInput as dC, type WorkflowAccessGrant as dD, canAccessNode as dE, isGrantExpired as dF, isGrantRevoked as dG, isGrantValid as dH, isTokenRevoked as dI, type GeneratedDocument as dJ, type WorkflowExecutionContext as dK, createEmptyContext as dL, getContextValue as dM, setContextValue as dN, type FormContextResponse as dO, type FormFieldContext as dP, type FormFieldRow as dQ, type FormNodeInfo as dR, type ReadOnlyReason as dS, type WorkflowAccessMode as dT, type ThemeColors as dU, type ThemeLogo as dV, type ThemeTypography as dW, DEFAULT_THEME as dX, generateCssVariables as dY, mergeWithDefaults as dZ, registry as d_, isConditionGroup as da, isConditionRule as db, neq as dc, or as dd, type CanvasViewport as de, type NodePosition as df, type WorkflowLayout as dg, type WorkflowSlot as dh, type WorkflowStatus as di, isSystemWorkflow as dj, isWorkflowDefinition as dk, isWorkflowPublished as dl, type PendingAction as dm, type WorkflowError as dn, type WorkflowInstance as dp, type WorkflowTransition as dq, canResumeInstance as dr, createStartTransition as ds, isInstanceTerminal as dt, isInstanceWaiting as du, type CreateInvitationInput as dv, type CreateInvitationResult as dw, type InvitationStatus as dx, type WorkflowInvitation as dy, isInvitationAccepted as dz, type TableTab as e, runWithContext as e$, type ViewOverlaysRepository as e0, type RelationAttributeInput as e1, type RelationAttributeRow as e2, type RelationAttributesRepository as e3, type DatabaseAdapter as e4, WorkflowJwtService as e5, type JwtVerificationResult as e6, type MagicLinkPayload as e7, type WorkflowAccessPayload as e8, type WorkflowJwtConfig as e9, type EvaluationResult as eA, type EvaluationTrace as eB, evaluateCondition as eC, evaluate as eD, evaluateWithTrace as eE, TenantContextError as eF, FeatureFlagsContextError as eG, getFeatureFlags as eH, getFeatureValue as eI, hasFeatureFlagsContext as eJ, isFeatureEnabled as eK, runWithFeatureFlags as eL, tryGetFeatureValue as eM, withFeatureFlags as eN, type FeatureFlagsContext as eO, addSchemaToContext as eP, getSchemaByNameFromContext as eQ, getSchemaContext as eR, getSchemaFromContext as eS, hasSchemaContext as eT, runWithMergedSchemaContext as eU, runWithSchemaContext as eV, type SchemaContext as eW, getContext as eX, getTenantId as eY, getUserId as eZ, hasContext as e_, type WorkflowJwtPayload as ea, type CacheKeyType as eb, hashOptions as ec, type CacheAdapter as ed, type CacheOptions as ee, cacheKeys as ef, cacheTtl as eg, defaultTtl as eh, NoopCacheAdapter as ei, type FetchResult as ej, type FormattedRecord as ek, type GroupedFetchResult as el, type InsertOptions as em, type QueryBuilderState as en, type RegistryMap as eo, type RegistryObjectNames as ep, type ShortcutOperator as eq, createDefaultState as er, formatRecord as es, formatRecords as et, QueryMultipleResultsError as eu, QueryNoResultError as ev, SHORTCUT_TO_FILTER_OPERATOR as ew, createQueryBuilder as ex, QueryBuilder as ey, type QueryBuilderOptions as ez, type FilterState as f, type AIUsageMetricsRepository as f$, withTenantContext as f0, type TenantContext as f1, createDefaultExecutorRegistry as f2, getDefaultExecutorRegistry as f3, type ExecutorCompleteResult as f4, type ExecutorContext as f5, type ExecutorErrorResult as f6, type ExecutorResult as f7, type ExecutorSuccessResult as f8, type ExecutorWaitResult as f9, getTargetAttributeName as fA, InvalidPathError as fB, MaxDepthExceededError as fC, parsePath as fD, pathHasManyCardinality as fE, validatePath as fF, type PathCardinality as fG, type PathSegment as fH, type PathSegmentType as fI, type SchemaResolver as fJ, resolveMultiplePaths as fK, resolveSingleValue as fL, traversePath as fM, type TraversalOptions as fN, type TraversalResult as fO, type AttributeChange as fP, type HookContext as fQ, type HookDefinition as fR, type HookHandler as fS, type HookType as fT, NoopHookRegistry as fU, type HookRegistry as fV, createMockAdapter as fW, type MockStores as fX, defaultPolicyRegistry as fY, PolicyRegistry as fZ, type AIConversationsRepository as f_, type NodeExecutor as fa, complete as fb, error as fc, ExecutorRegistry as fd, success as fe, wait as ff, ConditionExecutor as fg, DocumentExecutor as fh, EndExecutor as fi, FormExecutor as fj, StartExecutor as fk, evaluateFormula as fl, evaluateFormulaAttribute as fm, evaluateFormulaAttributeWithRelations as fn, evaluateFormulaWithRelations as fo, evaluateFormulaWithResult as fp, extractFormulaVariables as fq, extractRelationNames as fr, extractRelationReferences as fs, flattenRelationsForEval as ft, formatFormulaResult as fu, hasRelationReferences as fv, validateFormulaExpression as fw, type FormulaResult as fx, getPathDepth as fy, getRelationPath as fz, type SortRule as g, checkRecordDeleteOrThrow as g$, type AIUserMemoryRepository as g0, type AttributesRepository as g1, type AuditRepository as g2, type DocumentGenerationTemplateListOptions as g3, type DocumentGenerationTemplatesRepository as g4, type DocumentJobsRepository as g5, type DocumentSlotsRepository as g6, type DocumentsRepository as g7, type DocumentTemplatesRepository as g8, type FilesRepository as g9, type RelationValidationError as gA, type RelationOption as gB, type RelationOptionsResponse as gC, type GetRelationOptionsParams as gD, type RelationServiceOptions as gE, type ResolveIdsBatchRequest as gF, type ResolveIdsBatchResponse as gG, RelationService as gH, type MultiRelationValue as gI, type SingleRelationValue as gJ, type HybridRelationValue as gK, RelationPropertiesService as gL, RecordResolverService as gM, type ResolvedRelations as gN, type FormulaResolverServiceOptions as gO, FormulaResolverService as gP, type RollupResult as gQ, type RollupServiceOptions as gR, RollupService as gS, type RollupSchedulerOptions as gT, RollupScheduler as gU, applyDefaultValues as gV, checkPermission as gW, getPolicy as gX, buildPolicyContext as gY, checkRecordAccess as gZ, checkRecordModifyOrThrow as g_, type ObjectRecordsRepository as ga, type ObjectsRepository as gb, type PermissionsRepository as gc, type UserProfilesRepository as gd, type ViewsRepository as ge, type WorkflowAccessGrantsRepository as gf, type WorkflowInstancesRepository as gg, type WorkflowInvitationsRepository as gh, type WorkflowsRepository as gi, BaseService as gj, BaseRepository as gk, type SchemaContextAware as gl, SchemaContextAwareRepository as gm, type CreateCustomObjectInput as gn, type AddAttributeInput as go, type UpdateObjectInput as gp, type ObjectSchemaServiceOptions as gq, ObjectSchemaService as gr, type RecordServiceOptions as gs, RecordService as gt, type RecordQueryServiceOptions as gu, type QueryOptions as gv, type SearchQueryOptions as gw, type QueryResult as gx, RecordQueryService as gy, type RelationValidationResult as gz, type WorkflowConfig as h, type PermissionServiceOptions as h$, checkSharedObjectWriteAccess 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 UserValidationError as hA, UserService as hB, type UserProfileServiceOptions as hC, UserProfileService as hD, AuditService as hE, buildAuditChanges as hF, DocumentGenerationTemplateNotFoundError as hG, DocumentGenerationNotConfiguredError as hH, DocumentGenerationService as hI, type DocumentProcessingConfig as hJ, DocumentProcessingService as hK, type RenderDocumentInput as hL, type DocumentRendererOptions as hM, type RenderDocumentResult as hN, DocumentRenderError as hO, StorageDownloadNotSupportedError as hP, DocumentRendererService as hQ, DocumentTemplateService as hR, type RecordDocumentsResult as hS, type CreateRecordDocumentInput as hT, type CreateRecordDocumentResult as hU, type DocumentServiceOptions as hV, DocumentService as hW, type FileServiceOptions as hX, FileService as hY, GeocodingService as hZ, GlobalSearchService as h_, type RollupCascadeContext as ha, type DocumentProcessingHookOptions as hb, DocumentProcessingHook as hc, GrantNotFoundError as hd, GrantExpiredError as he, GrantRevokedError as hf, TokenRevokedError as hg, type GrantServiceConfig as hh, type CreateGrantResult as hi, WorkflowAccessGrantService as hj, type StartWorkflowInput as hk, type ResumeWorkflowInput as hl, type WorkflowInstanceServiceOptions as hm, WorkflowInstanceService as hn, type InvitationServiceConfig as ho, InvitationNotFoundError as hp, InvitationExpiredError as hq, InvitationAlreadyAcceptedError as hr, InvitationRevokedError as hs, WorkflowInvitationService as ht, WorkflowRelationService as hu, type CreateWorkflowInput as hv, type UpdateWorkflowInput as hw, type WorkflowServiceOptions as hx, WorkflowService as hy, type UserValidationResult as hz, type SlotMode as i, type DBWorkflowAccessGrant as i$, PermissionService as i0, type CreateViewInput as i1, type UpdateViewInput as i2, type GetViewsOptions as i3, type GetViewOptions as i4, ViewService as i5, type FileContent as i6, type StorageUploadInput as i7, type StorageUploadResult as i8, type SignedUrlOptions as i9, type CreateDBAttribute as iA, type UpdateDBAttribute as iB, type UpsertDBAttribute as iC, type CreateObjectRecord as iD, type ListOptions as iE, type SearchOptions as iF, type GlobalSearchOptions as iG, type GlobalSearchGroupedOptions as iH, type GlobalSearchResultItem as iI, type GlobalSearchGroupedResult as iJ, type FileListOptions as iK, type DBView as iL, type CreateDBView as iM, type UpdateDBView as iN, type UpsertDBView as iO, type DBViewOverlay as iP, type CreateDBViewOverlay as iQ, type UpdateDBViewOverlay as iR, type DBWorkflow as iS, type CreateDBWorkflow as iT, type UpdateDBWorkflow as iU, type DBWorkflowInstance as iV, type CreateDBWorkflowInstance as iW, type UpdateDBWorkflowInstance as iX, type DBWorkflowInvitation as iY, type CreateDBWorkflowInvitation as iZ, type UpdateDBWorkflowInvitation as i_, type StorageAdapter as ia, type UploadFileInput as ib, type SyncResult as ic, type SyncOptions as id, syncNativeObjects as ie, verifyNativeObjectsSync as ig, getSyncPreview as ih, type FullSyncResult as ii, type FullSyncOptions as ij, syncAll as ik, DEFAULT_LABEL_FALLBACK as il, renderLabelExpression as im, isLabelExpression as io, extractAttributeNames as ip, enrichValuesForDisplay as iq, enrichValuesWithSelectLabels as ir, extractRelationIds as is, type RelationLabelResolver as it, computeLabelWithRelations as iu, type DBObject as iv, type CreateDBObject as iw, type UpdateDBObject as ix, type UpsertDBObject as iy, type DBAttribute as iz, type ConditionGroup as j, type CreateDBWorkflowAccessGrant as j0, type UpdateDBWorkflowAccessGrant as j1, type OperationResult as j2, type ViewSyncResult as j3, type ViewSyncLogger as j4, type ViewSyncOptions as j5, seedRegistryViews as j6, syncNativeViews as j7, verifyRegistryViewsSeeded as j8, verifyNativeViewsSync as j9, getViewSeedPreview as ja, getViewSyncPreview as jb, type ConditionRule as k, type WorkflowNode as l, type WorkflowDefinition as m, type FlowRow as n, type ListViewConfig as o, type ListViewTab as p, type ViewDefinition as q, type DocumentTemplate as r, type OcrAdapter as s, type OcrInput as t, type OcrOptions as u, type OcrResult as v, type OcrPage as w, type OcrTextBlock as x, type SignatureAdapter as y, type CreateSignatureInput as z };
|
|
12759
|
+
export { type AIThinkingLevel as $, type AttributeGroupField as A, type BoundingBox as B, type CreateMode as C, type DetailViewLayout as D, type CreateSignatureInput as E, type Field as F, type Group as G, type SignerRequest as H, type InferAttributeValue as I, type SignaturePosition as J, type SignatureRequestResult as K, type ListViewDefinition as L, type SignatureStatusResult as M, type SignerStatus as N, type ObjectAction as O, type SignatureStatus as P, type IdentityVerificationAdapter as Q, type RelationGroup as R, type SystemResource as S, type Tab as T, type VerifyInput as U, type ViewType as V, type WorkflowTheme as W, type VerificationResult as X, type DocumentData as Y, type VerificationCheck as Z, type AIMessageRole as _, type SystemAction as a, type StorageProvider as a$, type AIToolCallStatus as a0, type AIToolCall as a1, type AIChatMessagePartType as a2, type TextPartData as a3, type ToolPartData as a4, type ThinkingPartData as a5, type ReasoningPartData as a6, type AIChatMessagePart as a7, type AIChatMessage as a8, type AIQuestionType as a9, type PdfTemplateField as aA, type TemplateSource as aB, type DocumentGenerationTemplate as aC, type CreateDocumentGenerationTemplate as aD, type UpdateDocumentGenerationTemplate as aE, type PendingDocumentRequest as aF, type DocumentSlotDefinition as aG, type DocumentAutoProcessing as aH, type ExtractionMapping as aI, type ExtractionField as aJ, type Document as aK, type DocumentStatus as aL, type DocumentSlot as aM, type SlotStatus as aN, type ProcessingJob as aO, type ProcessingJobType as aP, type ProcessingJobStatus as aQ, type CreateDocument as aR, type UpdateDocument as aS, type CreateDocumentTemplate as aT, type UpdateDocumentTemplate as aU, type CreateDocumentSlot as aV, type UpdateDocumentSlot as aW, type CreateProcessingJob as aX, type UpdateProcessingJob as aY, type DocumentListOptions as aZ, type DocumentTemplateListOptions as a_, type AIQuestionOption as aa, type AIQuestion as ab, type AIQuestionAnswer as ac, type AIBatchQuestionOption as ad, type AIBatchQuestion as ae, type AIBatchQuestionAnswer as af, type AITodoStatus as ag, type AITodoItem as ah, type AITodoList as ai, type AIMessageAttachment as aj, type AIConversation as ak, type AIMessage as al, type AIToolCallRecord as am, type AIUserMemory as an, type AIUsageMetrics as ao, type AIProviderMetrics as ap, type CreateAIMessageInput as aq, type AuditResourceType as ar, type AuditAction as as, type AuditActorType as at, type AuditChange as au, type AuditLogEntry as av, type CreateAuditLogInput as aw, type AuditListOptions as ax, type AuditServiceOptions as ay, type VariableMapping as az, type FieldGroup as b, type ExtractObjectRecord as b$, type FileVisibility as b0, type File as b1, type CreateFile as b2, type UpdateFile as b3, type TextFilterOperator as b4, type NumberFilterOperator as b5, type CheckboxFilterOperator as b6, type DateFilterOperator as b7, type SelectFilterOperator as b8, type MultiselectFilterOperator as b9, type GeocodingSuggestion as bA, type GeocodingAutocompleteParams as bB, type ReverseGeocodingParams as bC, type GeocodingParams as bD, type GeocodingAdapter as bE, NoopGeocodingAdapter as bF, type AttributeSchema as bG, type InferRecordFromSchema as bH, type InferRecordWithRequirements as bI, type TypedAttribute as bJ, type AttributeMap as bK, type AddAttribute as bL, type InferRecord as bM, type InferRecordInput as bN, type InferRecordUpdate as bO, type CustomAttributeValue as bP, type WithCustomAttributes as bQ, type RecordMetadata as bR, type SystemFields as bS, type ExtractRecord as bT, type ExtractRecordStrict as bU, type ExtractRecordInput as bV, type ExtractRecordInputStrict as bW, type ExtractRecordUpdate as bX, type ExtractRecordUpdateStrict as bY, type ExtractAttributes as bZ, type TypedObjectRecord as b_, type RelationFilterOperator as ba, type FilterOperator as bb, type RelativeDateValue as bc, type CurrencyFilterValue as bd, type PhoneFilterValue as be, type FilterValue as bf, type FilterRule as bg, type ExtendedFilterRule as bh, type FilterCombinator as bi, type FilterGroup as bj, type AdvancedFilterState as bk, type SortDirection as bl, type QueryState as bm, OPERATORS_BY_TYPE as bn, type NoValueOperator as bo, NO_VALUE_OPERATORS as bp, isNoValueOperator as bq, type FlowSlot as br, type FlowRowField as bs, type FlowPage as bt, type FlowRelation as bu, type FlowStatus as bv, type FlowDefinition as bw, isFlowDefinition as bx, isFlowPublished as by, isSystemFlow as bz, type SidePanelConfig as c, type FormNode as c$, type ExtractObjectRecordWithCustom as c0, type PermissionScope as c1, type Role as c2, type Permission as c3, type UserRoleAssignment as c4, type EffectivePermissions as c5, type ObjectPermissions as c6, type SystemPermissions as c7, type CreateRoleInput as c8, type UpdateRoleInput as c9, type GalleryViewConfig as cA, type ViewConfig as cB, type CalendarViewDefinition as cC, type TimelineViewDefinition as cD, type GalleryViewDefinition as cE, type ConfigOverrides as cF, type ViewOverlay as cG, isDetailView as cH, isListView as cI, isCalendarView as cJ, isTimelineView as cK, isGalleryView as cL, isFieldGroup as cM, isRelationGroup as cN, isFormTab as cO, isTableTab as cP, isRelationSourceTab as cQ, isInverseSourceTab as cR, isCustomTab as cS, isActivityTab as cT, isRichtextTab as cU, isFlowsTab as cV, isDocumentsTab as cW, type ConditionNode as cX, type DocumentNode as cY, type EndNode as cZ, type FormFieldRef as c_, type CreatePermissionInput as ca, type AssignRoleInput as cb, type PolicyContext as cc, type RecordPolicy as cd, PolicyViolationError as ce, type UserRole as cf, type UserStatus as cg, type UserProfile as ch, type CreateUserProfile as ci, type UpdateUserProfile as cj, type InviteUserInput as ck, type TabType as cl, type FormDensity as cm, type FormTab as cn, type RelationSource as co, type InverseSource as cp, type TableSource as cq, type CustomTab as cr, type ActivityTab as cs, type RichtextTab as ct, type FlowsTab as cu, type DocumentsTab as cv, type ListViewLayout as cw, type DetailViewConfig as cx, type CalendarViewConfig as cy, type TimelineViewConfig as cz, type DetailViewDefinition as d, DEFAULT_THEME as d$, type StartNode as d0, type WorkflowNodeType as d1, getNodeOutputs as d2, isAdvancedFormNode as d3, isConditionNode as d4, isDocumentNode as d5, isEndNode as d6, isFormNode as d7, isSimpleFormNode as d8, isStartNode as d9, type CreateInvitationResult as dA, type InvitationStatus as dB, type WorkflowInvitation as dC, isInvitationAccepted as dD, isInvitationExpired as dE, isInvitationValid as dF, type CreateGrantInput as dG, type WorkflowAccessGrant as dH, canAccessNode as dI, isGrantExpired as dJ, isGrantRevoked as dK, isGrantValid as dL, isTokenRevoked as dM, type GeneratedDocument as dN, type WorkflowExecutionContext as dO, createEmptyContext as dP, getContextValue as dQ, setContextValue as dR, type FormContextResponse as dS, type FormFieldContext as dT, type FormFieldRow as dU, type FormNodeInfo as dV, type ReadOnlyReason as dW, type WorkflowAccessMode as dX, type ThemeColors as dY, type ThemeLogo as dZ, type ThemeTypography as d_, type ConditionOperator as da, and as db, eq as dc, inValues as dd, isConditionGroup as de, isConditionRule as df, neq as dg, or as dh, type CanvasViewport as di, type NodePosition as dj, type WorkflowLayout as dk, type WorkflowSlot as dl, type WorkflowStatus as dm, isSystemWorkflow as dn, isWorkflowDefinition as dp, isWorkflowPublished as dq, type PendingAction as dr, type WorkflowError as ds, type WorkflowInstance as dt, type WorkflowTransition as du, canResumeInstance as dv, createStartTransition as dw, isInstanceTerminal as dx, isInstanceWaiting as dy, type CreateInvitationInput as dz, type InstanceStatus as e, getContext as e$, generateCssVariables as e0, mergeWithDefaults as e1, registry as e2, viewRegistry as e3, type ViewOverlaysRepository as e4, type RelationAttributeInput as e5, type RelationAttributeRow as e6, type RelationAttributesRepository as e7, type DatabaseAdapter as e8, WorkflowJwtService as e9, SHORTCUT_TO_FILTER_OPERATOR as eA, createQueryBuilder as eB, QueryBuilder as eC, type QueryBuilderOptions as eD, type EvaluationResult as eE, type EvaluationTrace as eF, evaluateCondition as eG, evaluate as eH, evaluateWithTrace as eI, TenantContextError as eJ, FeatureFlagsContextError as eK, getFeatureFlags as eL, getFeatureValue as eM, hasFeatureFlagsContext as eN, isFeatureEnabled as eO, runWithFeatureFlags as eP, tryGetFeatureValue as eQ, withFeatureFlags as eR, type FeatureFlagsContext as eS, addSchemaToContext as eT, getSchemaByNameFromContext as eU, getSchemaContext as eV, getSchemaFromContext as eW, hasSchemaContext as eX, runWithMergedSchemaContext as eY, runWithSchemaContext as eZ, type SchemaContext as e_, type JwtVerificationResult as ea, type MagicLinkPayload as eb, type WorkflowAccessPayload as ec, type WorkflowJwtConfig as ed, type WorkflowJwtPayload as ee, type CacheKeyType as ef, hashOptions as eg, type CacheAdapter as eh, type CacheOptions as ei, cacheKeys as ej, cacheTtl as ek, defaultTtl as el, NoopCacheAdapter as em, type FetchResult as en, type FormattedRecord as eo, type GroupedFetchResult as ep, type InsertOptions as eq, type QueryBuilderState as er, type RegistryMap as es, type RegistryObjectNames as et, type ShortcutOperator as eu, createDefaultState as ev, formatRecord as ew, formatRecords as ex, QueryMultipleResultsError as ey, QueryNoResultError as ez, type TableTab as f, type MockStores as f$, getTenantId as f0, getUserId as f1, hasContext as f2, runWithContext as f3, withTenantContext as f4, type TenantContext as f5, createDefaultExecutorRegistry as f6, getDefaultExecutorRegistry as f7, type ExecutorCompleteResult as f8, type ExecutorContext as f9, validateFormulaExpression as fA, type FormulaResult as fB, getPathDepth as fC, getRelationPath as fD, getTargetAttributeName as fE, InvalidPathError as fF, MaxDepthExceededError as fG, parsePath as fH, pathHasManyCardinality as fI, validatePath as fJ, type PathCardinality as fK, type PathSegment as fL, type PathSegmentType as fM, type SchemaResolver as fN, resolveMultiplePaths as fO, resolveSingleValue as fP, traversePath as fQ, type TraversalOptions as fR, type TraversalResult as fS, type AttributeChange as fT, type HookContext as fU, type HookDefinition as fV, type HookHandler as fW, type HookType as fX, NoopHookRegistry as fY, type HookRegistry as fZ, createMockAdapter as f_, type ExecutorErrorResult as fa, type ExecutorResult as fb, type ExecutorSuccessResult as fc, type ExecutorWaitResult as fd, type NodeExecutor as fe, complete as ff, error as fg, ExecutorRegistry as fh, success as fi, wait as fj, ConditionExecutor as fk, DocumentExecutor as fl, EndExecutor as fm, FormExecutor as fn, StartExecutor as fo, evaluateFormula as fp, evaluateFormulaAttribute as fq, evaluateFormulaAttributeWithRelations as fr, evaluateFormulaWithRelations as fs, evaluateFormulaWithResult as ft, extractFormulaVariables as fu, extractRelationNames as fv, extractRelationReferences as fw, flattenRelationsForEval as fx, formatFormulaResult as fy, hasRelationReferences as fz, type FilterState as g, getPolicy as g$, defaultPolicyRegistry as g0, PolicyRegistry as g1, type AIConversationsRepository as g2, type AIUsageMetricsRepository as g3, type AIUserMemoryRepository as g4, type AttributesRepository as g5, type AuditRepository as g6, type DocumentGenerationTemplateListOptions as g7, type DocumentGenerationTemplatesRepository as g8, type DocumentJobsRepository as g9, type SearchQueryOptions as gA, type QueryResult as gB, RecordQueryService as gC, type RelationValidationResult as gD, type RelationValidationError as gE, type RelationOption as gF, type RelationOptionsResponse as gG, type GetRelationOptionsParams as gH, type RelationServiceOptions as gI, type ResolveIdsBatchRequest as gJ, type ResolveIdsBatchResponse as gK, RelationService as gL, type MultiRelationValue as gM, type SingleRelationValue as gN, type HybridRelationValue as gO, RelationPropertiesService as gP, RecordResolverService as gQ, type ResolvedRelations as gR, type FormulaResolverServiceOptions as gS, FormulaResolverService as gT, type RollupResult as gU, type RollupServiceOptions as gV, RollupService as gW, type RollupSchedulerOptions as gX, RollupScheduler as gY, applyDefaultValues as gZ, checkPermission as g_, type DocumentSlotsRepository as ga, type DocumentsRepository as gb, type DocumentTemplatesRepository as gc, type FilesRepository as gd, type ObjectRecordsRepository as ge, type ObjectsRepository as gf, type PermissionsRepository as gg, type UserProfilesRepository as gh, type ViewsRepository as gi, type WorkflowAccessGrantsRepository as gj, type WorkflowInstancesRepository as gk, type WorkflowInvitationsRepository as gl, type WorkflowsRepository as gm, BaseService as gn, BaseRepository as go, type SchemaContextAware as gp, SchemaContextAwareRepository as gq, type CreateCustomObjectInput as gr, type AddAttributeInput as gs, type UpdateObjectInput as gt, type ObjectSchemaServiceOptions as gu, ObjectSchemaService as gv, type RecordServiceOptions as gw, RecordService as gx, type RecordQueryServiceOptions as gy, type QueryOptions as gz, type SortRule as h, type FileServiceOptions as h$, buildPolicyContext as h0, checkRecordAccess as h1, checkRecordModifyOrThrow as h2, checkRecordDeleteOrThrow as h3, checkSharedObjectWriteAccess as h4, computeLabel as h5, type LabelResolver as h6, enrichWithFormulas as h7, enrichRecordsWithFormulas as h8, createContextForCreate as h9, type UpdateWorkflowInput as hA, type WorkflowServiceOptions as hB, WorkflowService as hC, type UserValidationResult as hD, type UserValidationError as hE, UserService as hF, type UserProfileServiceOptions as hG, UserProfileService as hH, AuditService as hI, buildAuditChanges as hJ, DocumentGenerationTemplateNotFoundError as hK, DocumentGenerationNotConfiguredError as hL, DocumentGenerationService as hM, type DocumentProcessingConfig as hN, DocumentProcessingService as hO, type RenderDocumentInput as hP, type DocumentRendererOptions as hQ, type RenderDocumentResult as hR, DocumentRenderError as hS, StorageDownloadNotSupportedError as hT, DocumentRendererService as hU, DocumentTemplateService as hV, type RecordDocumentsResult as hW, type CreateRecordDocumentInput as hX, type CreateRecordDocumentResult as hY, type DocumentServiceOptions as hZ, DocumentService as h_, createContextForUpdate as ha, createContextForDelete as hb, createContextForRestore as hc, recalculateParentRollups as hd, type RollupCascadeContext as he, type DocumentProcessingHookOptions as hf, DocumentProcessingHook as hg, GrantNotFoundError as hh, GrantExpiredError as hi, GrantRevokedError as hj, TokenRevokedError as hk, type GrantServiceConfig as hl, type CreateGrantResult as hm, WorkflowAccessGrantService as hn, type StartWorkflowInput as ho, type ResumeWorkflowInput as hp, type WorkflowInstanceServiceOptions as hq, WorkflowInstanceService as hr, type InvitationServiceConfig as hs, InvitationNotFoundError as ht, InvitationExpiredError as hu, InvitationAlreadyAcceptedError as hv, InvitationRevokedError as hw, WorkflowInvitationService as hx, WorkflowRelationService as hy, type CreateWorkflowInput as hz, type WorkflowConfig as i, type UpdateDBWorkflowInstance as i$, FileService as i0, GeocodingService as i1, GlobalSearchService as i2, type PermissionServiceOptions as i3, PermissionService as i4, type CreateViewInput as i5, type UpdateViewInput as i6, type GetViewsOptions as i7, type GetViewOptions as i8, ViewService as i9, type CreateDBObject as iA, type UpdateDBObject as iB, type UpsertDBObject as iC, type DBAttribute as iD, type CreateDBAttribute as iE, type UpdateDBAttribute as iF, type UpsertDBAttribute as iG, type CreateObjectRecord as iH, type ListOptions as iI, type SearchOptions as iJ, type GlobalSearchOptions as iK, type GlobalSearchGroupedOptions as iL, type GlobalSearchResultItem as iM, type GlobalSearchGroupedResult as iN, type FileListOptions as iO, type DBView as iP, type CreateDBView as iQ, type UpdateDBView as iR, type UpsertDBView as iS, type DBViewOverlay as iT, type CreateDBViewOverlay as iU, type UpdateDBViewOverlay as iV, type DBWorkflow as iW, type CreateDBWorkflow as iX, type UpdateDBWorkflow as iY, type DBWorkflowInstance as iZ, type CreateDBWorkflowInstance as i_, type FileContent as ia, type StorageUploadInput as ib, type StorageUploadResult as ic, type SignedUrlOptions as id, type StorageAdapter as ie, type UploadFileInput as ig, type SyncResult as ih, type SyncOptions as ii, syncNativeObjects as ij, verifyNativeObjectsSync as ik, getSyncPreview as il, type FullSyncResult as im, type FullSyncOptions as io, syncAll as ip, DEFAULT_LABEL_FALLBACK as iq, renderLabelExpression as ir, isLabelExpression as is, extractAttributeNames as it, enrichValuesForDisplay as iu, enrichValuesWithSelectLabels as iv, extractRelationIds as iw, type RelationLabelResolver as ix, computeLabelWithRelations as iy, type DBObject as iz, type SlotMode as j, type DBWorkflowInvitation as j0, type CreateDBWorkflowInvitation as j1, type UpdateDBWorkflowInvitation as j2, type DBWorkflowAccessGrant as j3, type CreateDBWorkflowAccessGrant as j4, type UpdateDBWorkflowAccessGrant as j5, type OperationResult as j6, type ViewSyncResult as j7, type ViewSyncLogger as j8, type ViewSyncOptions as j9, seedRegistryViews as ja, syncNativeViews as jb, verifyRegistryViewsSeeded as jc, verifyNativeViewsSync as jd, getViewSeedPreview as je, getViewSyncPreview as jf, type ConditionGroup as k, type ConditionRule as l, type WorkflowNode as m, type WorkflowDefinition as n, type FlowRow as o, type ListViewConfig as p, type ListViewTab as q, type ViewDefinition as r, type DocumentTemplate as s, type OcrAdapter as t, type OcrInput as u, type OcrOptions as v, type OcrResult as w, type OcrPage as x, type OcrTextBlock as y, type SignatureAdapter as z };
|
package/dist/runtime.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { g2 as AIConversationsRepository, g3 as AIUsageMetricsRepository, g4 as AIUserMemoryRepository, gs as AddAttributeInput, fT as AttributeChange, g5 as AttributesRepository, g6 as AuditRepository, hI as AuditService, go as BaseRepository, gn as BaseService, eh as CacheAdapter, ef as CacheKeyType, ei as CacheOptions, fk as ConditionExecutor, gr as CreateCustomObjectInput, iE as CreateDBAttribute, iA as CreateDBObject, iQ as CreateDBView, iU as CreateDBViewOverlay, iX as CreateDBWorkflow, j4 as CreateDBWorkflowAccessGrant, i_ as CreateDBWorkflowInstance, j1 as CreateDBWorkflowInvitation, hm as CreateGrantResult, iH as CreateObjectRecord, hX as CreateRecordDocumentInput, hY as CreateRecordDocumentResult, i5 as CreateViewInput, hz as CreateWorkflowInput, iD as DBAttribute, iz as DBObject, iP as DBView, iT as DBViewOverlay, iW as DBWorkflow, j3 as DBWorkflowAccessGrant, iZ as DBWorkflowInstance, j0 as DBWorkflowInvitation, iq as DEFAULT_LABEL_FALLBACK, e8 as DatabaseAdapter, fl as DocumentExecutor, hL as DocumentGenerationNotConfiguredError, hM as DocumentGenerationService, g7 as DocumentGenerationTemplateListOptions, hK as DocumentGenerationTemplateNotFoundError, g8 as DocumentGenerationTemplatesRepository, g9 as DocumentJobsRepository, hN as DocumentProcessingConfig, hg as DocumentProcessingHook, hf as DocumentProcessingHookOptions, hO as DocumentProcessingService, hS as DocumentRenderError, hQ as DocumentRendererOptions, hU as DocumentRendererService, h_ as DocumentService, hZ as DocumentServiceOptions, ga as DocumentSlotsRepository, hV as DocumentTemplateService, gc as DocumentTemplatesRepository, gb as DocumentsRepository, fm as EndExecutor, eE as EvaluationResult, eF as EvaluationTrace, f8 as ExecutorCompleteResult, f9 as ExecutorContext, fa as ExecutorErrorResult, fh as ExecutorRegistry, fb as ExecutorResult, fc as ExecutorSuccessResult, fd as ExecutorWaitResult, eS as FeatureFlagsContext, eK as FeatureFlagsContextError, en as FetchResult, ia as FileContent, iO as FileListOptions, i0 as FileService, h$ as FileServiceOptions, gd as FilesRepository, fn as FormExecutor, eo as FormattedRecord, gT as FormulaResolverService, gS as FormulaResolverServiceOptions, fB as FormulaResult, io as FullSyncOptions, im as FullSyncResult, bE as GeocodingAdapter, bB as GeocodingAutocompleteParams, bD as GeocodingParams, i1 as GeocodingService, bA as GeocodingSuggestion, gH as GetRelationOptionsParams, i8 as GetViewOptions, i7 as GetViewsOptions, iL as GlobalSearchGroupedOptions, iN as GlobalSearchGroupedResult, iK as GlobalSearchOptions, iM as GlobalSearchResultItem, i2 as GlobalSearchService, hi as GrantExpiredError, hh as GrantNotFoundError, hj as GrantRevokedError, hl as GrantServiceConfig, ep as GroupedFetchResult, fU as HookContext, fV as HookDefinition, fW as HookHandler, fZ as HookRegistry, fX as HookType, gO as HybridRelationValue, eq as InsertOptions, fF as InvalidPathError, hv as InvitationAlreadyAcceptedError, hu as InvitationExpiredError, ht as InvitationNotFoundError, hw as InvitationRevokedError, hs as InvitationServiceConfig, ea as JwtVerificationResult, h6 as LabelResolver, iI as ListOptions, eb as MagicLinkPayload, fG as MaxDepthExceededError, f$ as MockStores, gM as MultiRelationValue, fe as NodeExecutor, em as NoopCacheAdapter, bF as NoopGeocodingAdapter, fY as NoopHookRegistry, ge as ObjectRecordsRepository, gv as ObjectSchemaService, gu as ObjectSchemaServiceOptions, gf as ObjectsRepository, j6 as OperationResult, fK as PathCardinality, fL as PathSegment, fM as PathSegmentType, i4 as PermissionService, i3 as PermissionServiceOptions, gg as PermissionsRepository, cc as PolicyContext, g1 as PolicyRegistry, ce as PolicyViolationError, eC as QueryBuilder, eD as QueryBuilderOptions, er as QueryBuilderState, ey as QueryMultipleResultsError, ez as QueryNoResultError, gz as QueryOptions, gB as QueryResult, hW as RecordDocumentsResult, cd as RecordPolicy, gC as RecordQueryService, gy as RecordQueryServiceOptions, gQ as RecordResolverService, gx as RecordService, gw as RecordServiceOptions, es as RegistryMap, et as RegistryObjectNames, e5 as RelationAttributeInput, e6 as RelationAttributeRow, e7 as RelationAttributesRepository, ix as RelationLabelResolver, gF as RelationOption, gG as RelationOptionsResponse, gP as RelationPropertiesService, gL as RelationService, gI as RelationServiceOptions, gE as RelationValidationError, gD as RelationValidationResult, hP as RenderDocumentInput, hR as RenderDocumentResult, gJ as ResolveIdsBatchRequest, gK as ResolveIdsBatchResponse, gR as ResolvedRelations, hp as ResumeWorkflowInput, bC as ReverseGeocodingParams, he as RollupCascadeContext, gU as RollupResult, gY as RollupScheduler, gX as RollupSchedulerOptions, gW as RollupService, gV as RollupServiceOptions, eA as SHORTCUT_TO_FILTER_OPERATOR, e_ as SchemaContext, gp as SchemaContextAware, gq as SchemaContextAwareRepository, fN as SchemaResolver, iJ as SearchOptions, gA as SearchQueryOptions, eu as ShortcutOperator, id as SignedUrlOptions, gN as SingleRelationValue, fo as StartExecutor, ho as StartWorkflowInput, ie as StorageAdapter, hT as StorageDownloadNotSupportedError, ib as StorageUploadInput, ic as StorageUploadResult, ii as SyncOptions, ih as SyncResult, f5 as TenantContext, eJ as TenantContextError, hk as TokenRevokedError, fR as TraversalOptions, fS as TraversalResult, iF as UpdateDBAttribute, iB as UpdateDBObject, iR as UpdateDBView, iV as UpdateDBViewOverlay, iY as UpdateDBWorkflow, j5 as UpdateDBWorkflowAccessGrant, i$ as UpdateDBWorkflowInstance, j2 as UpdateDBWorkflowInvitation, gt as UpdateObjectInput, i6 as UpdateViewInput, hA as UpdateWorkflowInput, ig as UploadFileInput, iG as UpsertDBAttribute, iC as UpsertDBObject, iS as UpsertDBView, hH as UserProfileService, hG as UserProfileServiceOptions, gh as UserProfilesRepository, hF as UserService, hE as UserValidationError, hD as UserValidationResult, e4 as ViewOverlaysRepository, i9 as ViewService, j8 as ViewSyncLogger, j9 as ViewSyncOptions, j7 as ViewSyncResult, gi as ViewsRepository, hn as WorkflowAccessGrantService, gj as WorkflowAccessGrantsRepository, ec as WorkflowAccessPayload, hr as WorkflowInstanceService, hq as WorkflowInstanceServiceOptions, gk as WorkflowInstancesRepository, hx as WorkflowInvitationService, gl as WorkflowInvitationsRepository, ed as WorkflowJwtConfig, ee as WorkflowJwtPayload, e9 as WorkflowJwtService, hy as WorkflowRelationService, hC as WorkflowService, hB as WorkflowServiceOptions, gm as WorkflowsRepository, eT as addSchemaToContext, gZ as applyDefaultValues, hJ as buildAuditChanges, h0 as buildPolicyContext, ej as cacheKeys, ek as cacheTtl, g_ as checkPermission, h1 as checkRecordAccess, h3 as checkRecordDeleteOrThrow, h2 as checkRecordModifyOrThrow, h4 as checkSharedObjectWriteAccess, ff as complete, h5 as computeLabel, iy as computeLabelWithRelations, h9 as createContextForCreate, hb as createContextForDelete, hc as createContextForRestore, ha as createContextForUpdate, f6 as createDefaultExecutorRegistry, ev as createDefaultState, f_ as createMockAdapter, eB as createQueryBuilder, g0 as defaultPolicyRegistry, el as defaultTtl, h8 as enrichRecordsWithFormulas, iu as enrichValuesForDisplay, iv as enrichValuesWithSelectLabels, h7 as enrichWithFormulas, fg as error, eH as evaluate, eG as evaluateCondition, fp as evaluateFormula, fq as evaluateFormulaAttribute, fr as evaluateFormulaAttributeWithRelations, fs as evaluateFormulaWithRelations, ft as evaluateFormulaWithResult, eI as evaluateWithTrace, it as extractAttributeNames, fu as extractFormulaVariables, iw as extractRelationIds, fv as extractRelationNames, fw as extractRelationReferences, fx as flattenRelationsForEval, fy as formatFormulaResult, ew as formatRecord, ex as formatRecords, e$ as getContext, f7 as getDefaultExecutorRegistry, eL as getFeatureFlags, eM as getFeatureValue, fC as getPathDepth, g$ as getPolicy, fD as getRelationPath, eU as getSchemaByNameFromContext, eV as getSchemaContext, eW as getSchemaFromContext, il as getSyncPreview, fE as getTargetAttributeName, f0 as getTenantId, f1 as getUserId, je as getViewSeedPreview, jf as getViewSyncPreview, f2 as hasContext, eN as hasFeatureFlagsContext, fz as hasRelationReferences, eX as hasSchemaContext, eg as hashOptions, eO as isFeatureEnabled, is as isLabelExpression, fH as parsePath, fI as pathHasManyCardinality, hd as recalculateParentRollups, ir as renderLabelExpression, fO as resolveMultiplePaths, fP as resolveSingleValue, f3 as runWithContext, eP as runWithFeatureFlags, eY as runWithMergedSchemaContext, eZ as runWithSchemaContext, ja as seedRegistryViews, fi as success, ip as syncAll, ij as syncNativeObjects, jb as syncNativeViews, fQ as traversePath, eQ as tryGetFeatureValue, fA as validateFormulaExpression, fJ as validatePath, ik as verifyNativeObjectsSync, jd as verifyNativeViewsSync, jc as verifyRegistryViewsSeeded, fj as wait, eR as withFeatureFlags, f4 as withTenantContext } from './runtime-DQlTgVZJ.mjs';
|
|
2
2
|
export { a6 as CompletionStatus } from './validators-BROsLGn4.mjs';
|
|
3
3
|
import '@stndrds/constants';
|
|
4
4
|
import './utils.mjs';
|
package/dist/runtime.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { g2 as AIConversationsRepository, g3 as AIUsageMetricsRepository, g4 as AIUserMemoryRepository, gs as AddAttributeInput, fT as AttributeChange, g5 as AttributesRepository, g6 as AuditRepository, hI as AuditService, go as BaseRepository, gn as BaseService, eh as CacheAdapter, ef as CacheKeyType, ei as CacheOptions, fk as ConditionExecutor, gr as CreateCustomObjectInput, iE as CreateDBAttribute, iA as CreateDBObject, iQ as CreateDBView, iU as CreateDBViewOverlay, iX as CreateDBWorkflow, j4 as CreateDBWorkflowAccessGrant, i_ as CreateDBWorkflowInstance, j1 as CreateDBWorkflowInvitation, hm as CreateGrantResult, iH as CreateObjectRecord, hX as CreateRecordDocumentInput, hY as CreateRecordDocumentResult, i5 as CreateViewInput, hz as CreateWorkflowInput, iD as DBAttribute, iz as DBObject, iP as DBView, iT as DBViewOverlay, iW as DBWorkflow, j3 as DBWorkflowAccessGrant, iZ as DBWorkflowInstance, j0 as DBWorkflowInvitation, iq as DEFAULT_LABEL_FALLBACK, e8 as DatabaseAdapter, fl as DocumentExecutor, hL as DocumentGenerationNotConfiguredError, hM as DocumentGenerationService, g7 as DocumentGenerationTemplateListOptions, hK as DocumentGenerationTemplateNotFoundError, g8 as DocumentGenerationTemplatesRepository, g9 as DocumentJobsRepository, hN as DocumentProcessingConfig, hg as DocumentProcessingHook, hf as DocumentProcessingHookOptions, hO as DocumentProcessingService, hS as DocumentRenderError, hQ as DocumentRendererOptions, hU as DocumentRendererService, h_ as DocumentService, hZ as DocumentServiceOptions, ga as DocumentSlotsRepository, hV as DocumentTemplateService, gc as DocumentTemplatesRepository, gb as DocumentsRepository, fm as EndExecutor, eE as EvaluationResult, eF as EvaluationTrace, f8 as ExecutorCompleteResult, f9 as ExecutorContext, fa as ExecutorErrorResult, fh as ExecutorRegistry, fb as ExecutorResult, fc as ExecutorSuccessResult, fd as ExecutorWaitResult, eS as FeatureFlagsContext, eK as FeatureFlagsContextError, en as FetchResult, ia as FileContent, iO as FileListOptions, i0 as FileService, h$ as FileServiceOptions, gd as FilesRepository, fn as FormExecutor, eo as FormattedRecord, gT as FormulaResolverService, gS as FormulaResolverServiceOptions, fB as FormulaResult, io as FullSyncOptions, im as FullSyncResult, bE as GeocodingAdapter, bB as GeocodingAutocompleteParams, bD as GeocodingParams, i1 as GeocodingService, bA as GeocodingSuggestion, gH as GetRelationOptionsParams, i8 as GetViewOptions, i7 as GetViewsOptions, iL as GlobalSearchGroupedOptions, iN as GlobalSearchGroupedResult, iK as GlobalSearchOptions, iM as GlobalSearchResultItem, i2 as GlobalSearchService, hi as GrantExpiredError, hh as GrantNotFoundError, hj as GrantRevokedError, hl as GrantServiceConfig, ep as GroupedFetchResult, fU as HookContext, fV as HookDefinition, fW as HookHandler, fZ as HookRegistry, fX as HookType, gO as HybridRelationValue, eq as InsertOptions, fF as InvalidPathError, hv as InvitationAlreadyAcceptedError, hu as InvitationExpiredError, ht as InvitationNotFoundError, hw as InvitationRevokedError, hs as InvitationServiceConfig, ea as JwtVerificationResult, h6 as LabelResolver, iI as ListOptions, eb as MagicLinkPayload, fG as MaxDepthExceededError, f$ as MockStores, gM as MultiRelationValue, fe as NodeExecutor, em as NoopCacheAdapter, bF as NoopGeocodingAdapter, fY as NoopHookRegistry, ge as ObjectRecordsRepository, gv as ObjectSchemaService, gu as ObjectSchemaServiceOptions, gf as ObjectsRepository, j6 as OperationResult, fK as PathCardinality, fL as PathSegment, fM as PathSegmentType, i4 as PermissionService, i3 as PermissionServiceOptions, gg as PermissionsRepository, cc as PolicyContext, g1 as PolicyRegistry, ce as PolicyViolationError, eC as QueryBuilder, eD as QueryBuilderOptions, er as QueryBuilderState, ey as QueryMultipleResultsError, ez as QueryNoResultError, gz as QueryOptions, gB as QueryResult, hW as RecordDocumentsResult, cd as RecordPolicy, gC as RecordQueryService, gy as RecordQueryServiceOptions, gQ as RecordResolverService, gx as RecordService, gw as RecordServiceOptions, es as RegistryMap, et as RegistryObjectNames, e5 as RelationAttributeInput, e6 as RelationAttributeRow, e7 as RelationAttributesRepository, ix as RelationLabelResolver, gF as RelationOption, gG as RelationOptionsResponse, gP as RelationPropertiesService, gL as RelationService, gI as RelationServiceOptions, gE as RelationValidationError, gD as RelationValidationResult, hP as RenderDocumentInput, hR as RenderDocumentResult, gJ as ResolveIdsBatchRequest, gK as ResolveIdsBatchResponse, gR as ResolvedRelations, hp as ResumeWorkflowInput, bC as ReverseGeocodingParams, he as RollupCascadeContext, gU as RollupResult, gY as RollupScheduler, gX as RollupSchedulerOptions, gW as RollupService, gV as RollupServiceOptions, eA as SHORTCUT_TO_FILTER_OPERATOR, e_ as SchemaContext, gp as SchemaContextAware, gq as SchemaContextAwareRepository, fN as SchemaResolver, iJ as SearchOptions, gA as SearchQueryOptions, eu as ShortcutOperator, id as SignedUrlOptions, gN as SingleRelationValue, fo as StartExecutor, ho as StartWorkflowInput, ie as StorageAdapter, hT as StorageDownloadNotSupportedError, ib as StorageUploadInput, ic as StorageUploadResult, ii as SyncOptions, ih as SyncResult, f5 as TenantContext, eJ as TenantContextError, hk as TokenRevokedError, fR as TraversalOptions, fS as TraversalResult, iF as UpdateDBAttribute, iB as UpdateDBObject, iR as UpdateDBView, iV as UpdateDBViewOverlay, iY as UpdateDBWorkflow, j5 as UpdateDBWorkflowAccessGrant, i$ as UpdateDBWorkflowInstance, j2 as UpdateDBWorkflowInvitation, gt as UpdateObjectInput, i6 as UpdateViewInput, hA as UpdateWorkflowInput, ig as UploadFileInput, iG as UpsertDBAttribute, iC as UpsertDBObject, iS as UpsertDBView, hH as UserProfileService, hG as UserProfileServiceOptions, gh as UserProfilesRepository, hF as UserService, hE as UserValidationError, hD as UserValidationResult, e4 as ViewOverlaysRepository, i9 as ViewService, j8 as ViewSyncLogger, j9 as ViewSyncOptions, j7 as ViewSyncResult, gi as ViewsRepository, hn as WorkflowAccessGrantService, gj as WorkflowAccessGrantsRepository, ec as WorkflowAccessPayload, hr as WorkflowInstanceService, hq as WorkflowInstanceServiceOptions, gk as WorkflowInstancesRepository, hx as WorkflowInvitationService, gl as WorkflowInvitationsRepository, ed as WorkflowJwtConfig, ee as WorkflowJwtPayload, e9 as WorkflowJwtService, hy as WorkflowRelationService, hC as WorkflowService, hB as WorkflowServiceOptions, gm as WorkflowsRepository, eT as addSchemaToContext, gZ as applyDefaultValues, hJ as buildAuditChanges, h0 as buildPolicyContext, ej as cacheKeys, ek as cacheTtl, g_ as checkPermission, h1 as checkRecordAccess, h3 as checkRecordDeleteOrThrow, h2 as checkRecordModifyOrThrow, h4 as checkSharedObjectWriteAccess, ff as complete, h5 as computeLabel, iy as computeLabelWithRelations, h9 as createContextForCreate, hb as createContextForDelete, hc as createContextForRestore, ha as createContextForUpdate, f6 as createDefaultExecutorRegistry, ev as createDefaultState, f_ as createMockAdapter, eB as createQueryBuilder, g0 as defaultPolicyRegistry, el as defaultTtl, h8 as enrichRecordsWithFormulas, iu as enrichValuesForDisplay, iv as enrichValuesWithSelectLabels, h7 as enrichWithFormulas, fg as error, eH as evaluate, eG as evaluateCondition, fp as evaluateFormula, fq as evaluateFormulaAttribute, fr as evaluateFormulaAttributeWithRelations, fs as evaluateFormulaWithRelations, ft as evaluateFormulaWithResult, eI as evaluateWithTrace, it as extractAttributeNames, fu as extractFormulaVariables, iw as extractRelationIds, fv as extractRelationNames, fw as extractRelationReferences, fx as flattenRelationsForEval, fy as formatFormulaResult, ew as formatRecord, ex as formatRecords, e$ as getContext, f7 as getDefaultExecutorRegistry, eL as getFeatureFlags, eM as getFeatureValue, fC as getPathDepth, g$ as getPolicy, fD as getRelationPath, eU as getSchemaByNameFromContext, eV as getSchemaContext, eW as getSchemaFromContext, il as getSyncPreview, fE as getTargetAttributeName, f0 as getTenantId, f1 as getUserId, je as getViewSeedPreview, jf as getViewSyncPreview, f2 as hasContext, eN as hasFeatureFlagsContext, fz as hasRelationReferences, eX as hasSchemaContext, eg as hashOptions, eO as isFeatureEnabled, is as isLabelExpression, fH as parsePath, fI as pathHasManyCardinality, hd as recalculateParentRollups, ir as renderLabelExpression, fO as resolveMultiplePaths, fP as resolveSingleValue, f3 as runWithContext, eP as runWithFeatureFlags, eY as runWithMergedSchemaContext, eZ as runWithSchemaContext, ja as seedRegistryViews, fi as success, ip as syncAll, ij as syncNativeObjects, jb as syncNativeViews, fQ as traversePath, eQ as tryGetFeatureValue, fA as validateFormulaExpression, fJ as validatePath, ik as verifyNativeObjectsSync, jd as verifyNativeViewsSync, jc as verifyRegistryViewsSeeded, fj as wait, eR as withFeatureFlags, f4 as withTenantContext } from './runtime-BgtwoMx5.js';
|
|
2
2
|
export { a6 as CompletionStatus } from './validators-CEzdvxEq.js';
|
|
3
3
|
import '@stndrds/constants';
|
|
4
4
|
import './utils.js';
|
package/dist/runtime.js
CHANGED
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
var
|
|
160
|
+
var _chunkTOTUS3YSjs = require('./chunk-TOTUS3YS.js');
|
|
161
161
|
require('./chunk-NEVERCM3.js');
|
|
162
162
|
require('./chunk-U4AB53AM.js');
|
|
163
163
|
require('./chunk-3RG5ZIWI.js');
|
|
@@ -320,4 +320,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
320
320
|
|
|
321
321
|
|
|
322
322
|
|
|
323
|
-
exports.AuditService = _chunk5IU6XTFAjs.AuditService; exports.BaseRepository = _chunk5IU6XTFAjs.BaseRepository; exports.BaseService = _chunk5IU6XTFAjs.BaseService; exports.ConditionExecutor = _chunk5IU6XTFAjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunk5IU6XTFAjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunk5IU6XTFAjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk5IU6XTFAjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk5IU6XTFAjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk5IU6XTFAjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunk5IU6XTFAjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk5IU6XTFAjs.DocumentProcessingService; exports.DocumentRenderError = _chunk5IU6XTFAjs.DocumentRenderError; exports.DocumentRendererService = _chunk5IU6XTFAjs.DocumentRendererService; exports.DocumentService = _chunk5IU6XTFAjs.DocumentService; exports.DocumentTemplateService = _chunk5IU6XTFAjs.DocumentTemplateService; exports.EndExecutor = _chunk5IU6XTFAjs.EndExecutor; exports.ExecutorRegistry = _chunk5IU6XTFAjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunk5IU6XTFAjs.FeatureFlagsContextError; exports.FileService = _chunk5IU6XTFAjs.FileService; exports.FormExecutor = _chunk5IU6XTFAjs.FormExecutor; exports.FormulaResolverService = _chunk5IU6XTFAjs.FormulaResolverService; exports.GeocodingService = _chunk5IU6XTFAjs.GeocodingService; exports.GlobalSearchService = _chunk5IU6XTFAjs.GlobalSearchService; exports.GrantExpiredError = _chunk5IU6XTFAjs.GrantExpiredError; exports.GrantNotFoundError = _chunk5IU6XTFAjs.GrantNotFoundError; exports.GrantRevokedError = _chunk5IU6XTFAjs.GrantRevokedError; exports.InvalidPathError = _chunk5IU6XTFAjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk5IU6XTFAjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk5IU6XTFAjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk5IU6XTFAjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk5IU6XTFAjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunk5IU6XTFAjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunk5IU6XTFAjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk5IU6XTFAjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk5IU6XTFAjs.NoopHookRegistry; exports.ObjectSchemaService = _chunk5IU6XTFAjs.ObjectSchemaService; exports.PermissionService = _chunk5IU6XTFAjs.PermissionService; exports.PolicyRegistry = _chunk5IU6XTFAjs.PolicyRegistry; exports.PolicyViolationError = _chunk5IU6XTFAjs.PolicyViolationError; exports.QueryBuilder = _chunk5IU6XTFAjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk5IU6XTFAjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk5IU6XTFAjs.QueryNoResultError; exports.RecordQueryService = _chunk5IU6XTFAjs.RecordQueryService; exports.RecordResolverService = _chunk5IU6XTFAjs.RecordResolverService; exports.RecordService = _chunk5IU6XTFAjs.RecordService; exports.RelationPropertiesService = _chunk5IU6XTFAjs.RelationPropertiesService; exports.RelationService = _chunk5IU6XTFAjs.RelationService; exports.RollupScheduler = _chunk5IU6XTFAjs.RollupScheduler; exports.RollupService = _chunk5IU6XTFAjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk5IU6XTFAjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunk5IU6XTFAjs.SchemaContextAwareRepository; exports.StartExecutor = _chunk5IU6XTFAjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunk5IU6XTFAjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunk5IU6XTFAjs.TenantContextError; exports.TokenRevokedError = _chunk5IU6XTFAjs.TokenRevokedError; exports.UserProfileService = _chunk5IU6XTFAjs.UserProfileService; exports.UserService = _chunk5IU6XTFAjs.UserService; exports.ViewService = _chunk5IU6XTFAjs.ViewService; exports.WorkflowAccessGrantService = _chunk5IU6XTFAjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunk5IU6XTFAjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk5IU6XTFAjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk5IU6XTFAjs.WorkflowJwtService; exports.WorkflowRelationService = _chunk5IU6XTFAjs.WorkflowRelationService; exports.WorkflowService = _chunk5IU6XTFAjs.WorkflowService; exports.addSchemaToContext = _chunk5IU6XTFAjs.addSchemaToContext; exports.applyDefaultValues = _chunk5IU6XTFAjs.applyDefaultValues; exports.buildAuditChanges = _chunk5IU6XTFAjs.buildAuditChanges; exports.buildPolicyContext = _chunk5IU6XTFAjs.buildPolicyContext; exports.cacheKeys = _chunk5IU6XTFAjs.cacheKeys; exports.cacheTtl = _chunk5IU6XTFAjs.cacheTtl; exports.checkPermission = _chunk5IU6XTFAjs.checkPermission; exports.checkRecordAccess = _chunk5IU6XTFAjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk5IU6XTFAjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk5IU6XTFAjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk5IU6XTFAjs.checkSharedObjectWriteAccess; exports.complete = _chunk5IU6XTFAjs.complete; exports.computeLabel = _chunk5IU6XTFAjs.computeLabel; exports.computeLabelWithRelations = _chunk5IU6XTFAjs.computeLabelWithRelations; exports.createContextForCreate = _chunk5IU6XTFAjs.createContextForCreate; exports.createContextForDelete = _chunk5IU6XTFAjs.createContextForDelete; exports.createContextForRestore = _chunk5IU6XTFAjs.createContextForRestore; exports.createContextForUpdate = _chunk5IU6XTFAjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunk5IU6XTFAjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk5IU6XTFAjs.createDefaultState; exports.createMockAdapter = _chunk5IU6XTFAjs.createMockAdapter; exports.createQueryBuilder = _chunk5IU6XTFAjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunk5IU6XTFAjs.defaultPolicyRegistry; exports.defaultTtl = _chunk5IU6XTFAjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunk5IU6XTFAjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk5IU6XTFAjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk5IU6XTFAjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk5IU6XTFAjs.enrichWithFormulas; exports.error = _chunk5IU6XTFAjs.error; exports.evaluate = _chunk5IU6XTFAjs.evaluate; exports.evaluateCondition = _chunk5IU6XTFAjs.evaluateCondition; exports.evaluateFormula = _chunk5IU6XTFAjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk5IU6XTFAjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk5IU6XTFAjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk5IU6XTFAjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk5IU6XTFAjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk5IU6XTFAjs.evaluateWithTrace; exports.extractAttributeNames = _chunk5IU6XTFAjs.extractAttributeNames; exports.extractFormulaVariables = _chunk5IU6XTFAjs.extractFormulaVariables; exports.extractRelationIds = _chunk5IU6XTFAjs.extractRelationIds; exports.extractRelationNames = _chunk5IU6XTFAjs.extractRelationNames; exports.extractRelationReferences = _chunk5IU6XTFAjs.extractRelationReferences; exports.flattenRelationsForEval = _chunk5IU6XTFAjs.flattenRelationsForEval; exports.formatFormulaResult = _chunk5IU6XTFAjs.formatFormulaResult; exports.formatRecord = _chunk5IU6XTFAjs.formatRecord; exports.formatRecords = _chunk5IU6XTFAjs.formatRecords; exports.getContext = _chunk5IU6XTFAjs.getContext; exports.getDefaultExecutorRegistry = _chunk5IU6XTFAjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunk5IU6XTFAjs.getFeatureFlags; exports.getFeatureValue = _chunk5IU6XTFAjs.getFeatureValue; exports.getPathDepth = _chunk5IU6XTFAjs.getPathDepth; exports.getPolicy = _chunk5IU6XTFAjs.getPolicy; exports.getRelationPath = _chunk5IU6XTFAjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk5IU6XTFAjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk5IU6XTFAjs.getSchemaContext; exports.getSchemaFromContext = _chunk5IU6XTFAjs.getSchemaFromContext; exports.getSyncPreview = _chunk5IU6XTFAjs.getSyncPreview; exports.getTargetAttributeName = _chunk5IU6XTFAjs.getTargetAttributeName; exports.getTenantId = _chunk5IU6XTFAjs.getTenantId; exports.getUserId = _chunk5IU6XTFAjs.getUserId; exports.getViewSeedPreview = _chunk5IU6XTFAjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk5IU6XTFAjs.getViewSyncPreview; exports.hasContext = _chunk5IU6XTFAjs.hasContext; exports.hasFeatureFlagsContext = _chunk5IU6XTFAjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunk5IU6XTFAjs.hasRelationReferences; exports.hasSchemaContext = _chunk5IU6XTFAjs.hasSchemaContext; exports.hashOptions = _chunk5IU6XTFAjs.hashOptions; exports.isFeatureEnabled = _chunk5IU6XTFAjs.isFeatureEnabled; exports.isLabelExpression = _chunk5IU6XTFAjs.isLabelExpression; exports.parsePath = _chunk5IU6XTFAjs.parsePath; exports.pathHasManyCardinality = _chunk5IU6XTFAjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunk5IU6XTFAjs.recalculateParentRollups; exports.renderLabelExpression = _chunk5IU6XTFAjs.renderLabelExpression; exports.resolveMultiplePaths = _chunk5IU6XTFAjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk5IU6XTFAjs.resolveSingleValue; exports.runWithContext = _chunk5IU6XTFAjs.runWithContext; exports.runWithFeatureFlags = _chunk5IU6XTFAjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk5IU6XTFAjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk5IU6XTFAjs.runWithSchemaContext; exports.seedRegistryViews = _chunk5IU6XTFAjs.seedRegistryViews; exports.success = _chunk5IU6XTFAjs.success; exports.syncAll = _chunk5IU6XTFAjs.syncAll; exports.syncNativeObjects = _chunk5IU6XTFAjs.syncNativeObjects; exports.syncNativeViews = _chunk5IU6XTFAjs.syncNativeViews; exports.traversePath = _chunk5IU6XTFAjs.traversePath; exports.tryGetFeatureValue = _chunk5IU6XTFAjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunk5IU6XTFAjs.validateFormulaExpression; exports.validatePath = _chunk5IU6XTFAjs.validatePath; exports.verifyNativeObjectsSync = _chunk5IU6XTFAjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk5IU6XTFAjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk5IU6XTFAjs.verifyRegistryViewsSeeded; exports.wait = _chunk5IU6XTFAjs.wait; exports.withFeatureFlags = _chunk5IU6XTFAjs.withFeatureFlags; exports.withTenantContext = _chunk5IU6XTFAjs.withTenantContext;
|
|
323
|
+
exports.AuditService = _chunkTOTUS3YSjs.AuditService; exports.BaseRepository = _chunkTOTUS3YSjs.BaseRepository; exports.BaseService = _chunkTOTUS3YSjs.BaseService; exports.ConditionExecutor = _chunkTOTUS3YSjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkTOTUS3YSjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunkTOTUS3YSjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkTOTUS3YSjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkTOTUS3YSjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkTOTUS3YSjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunkTOTUS3YSjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkTOTUS3YSjs.DocumentProcessingService; exports.DocumentRenderError = _chunkTOTUS3YSjs.DocumentRenderError; exports.DocumentRendererService = _chunkTOTUS3YSjs.DocumentRendererService; exports.DocumentService = _chunkTOTUS3YSjs.DocumentService; exports.DocumentTemplateService = _chunkTOTUS3YSjs.DocumentTemplateService; exports.EndExecutor = _chunkTOTUS3YSjs.EndExecutor; exports.ExecutorRegistry = _chunkTOTUS3YSjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkTOTUS3YSjs.FeatureFlagsContextError; exports.FileService = _chunkTOTUS3YSjs.FileService; exports.FormExecutor = _chunkTOTUS3YSjs.FormExecutor; exports.FormulaResolverService = _chunkTOTUS3YSjs.FormulaResolverService; exports.GeocodingService = _chunkTOTUS3YSjs.GeocodingService; exports.GlobalSearchService = _chunkTOTUS3YSjs.GlobalSearchService; exports.GrantExpiredError = _chunkTOTUS3YSjs.GrantExpiredError; exports.GrantNotFoundError = _chunkTOTUS3YSjs.GrantNotFoundError; exports.GrantRevokedError = _chunkTOTUS3YSjs.GrantRevokedError; exports.InvalidPathError = _chunkTOTUS3YSjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkTOTUS3YSjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkTOTUS3YSjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkTOTUS3YSjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkTOTUS3YSjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunkTOTUS3YSjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkTOTUS3YSjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkTOTUS3YSjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkTOTUS3YSjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkTOTUS3YSjs.ObjectSchemaService; exports.PermissionService = _chunkTOTUS3YSjs.PermissionService; exports.PolicyRegistry = _chunkTOTUS3YSjs.PolicyRegistry; exports.PolicyViolationError = _chunkTOTUS3YSjs.PolicyViolationError; exports.QueryBuilder = _chunkTOTUS3YSjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkTOTUS3YSjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkTOTUS3YSjs.QueryNoResultError; exports.RecordQueryService = _chunkTOTUS3YSjs.RecordQueryService; exports.RecordResolverService = _chunkTOTUS3YSjs.RecordResolverService; exports.RecordService = _chunkTOTUS3YSjs.RecordService; exports.RelationPropertiesService = _chunkTOTUS3YSjs.RelationPropertiesService; exports.RelationService = _chunkTOTUS3YSjs.RelationService; exports.RollupScheduler = _chunkTOTUS3YSjs.RollupScheduler; exports.RollupService = _chunkTOTUS3YSjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkTOTUS3YSjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunkTOTUS3YSjs.SchemaContextAwareRepository; exports.StartExecutor = _chunkTOTUS3YSjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunkTOTUS3YSjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunkTOTUS3YSjs.TenantContextError; exports.TokenRevokedError = _chunkTOTUS3YSjs.TokenRevokedError; exports.UserProfileService = _chunkTOTUS3YSjs.UserProfileService; exports.UserService = _chunkTOTUS3YSjs.UserService; exports.ViewService = _chunkTOTUS3YSjs.ViewService; exports.WorkflowAccessGrantService = _chunkTOTUS3YSjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkTOTUS3YSjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkTOTUS3YSjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkTOTUS3YSjs.WorkflowJwtService; exports.WorkflowRelationService = _chunkTOTUS3YSjs.WorkflowRelationService; exports.WorkflowService = _chunkTOTUS3YSjs.WorkflowService; exports.addSchemaToContext = _chunkTOTUS3YSjs.addSchemaToContext; exports.applyDefaultValues = _chunkTOTUS3YSjs.applyDefaultValues; exports.buildAuditChanges = _chunkTOTUS3YSjs.buildAuditChanges; exports.buildPolicyContext = _chunkTOTUS3YSjs.buildPolicyContext; exports.cacheKeys = _chunkTOTUS3YSjs.cacheKeys; exports.cacheTtl = _chunkTOTUS3YSjs.cacheTtl; exports.checkPermission = _chunkTOTUS3YSjs.checkPermission; exports.checkRecordAccess = _chunkTOTUS3YSjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkTOTUS3YSjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkTOTUS3YSjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkTOTUS3YSjs.checkSharedObjectWriteAccess; exports.complete = _chunkTOTUS3YSjs.complete; exports.computeLabel = _chunkTOTUS3YSjs.computeLabel; exports.computeLabelWithRelations = _chunkTOTUS3YSjs.computeLabelWithRelations; exports.createContextForCreate = _chunkTOTUS3YSjs.createContextForCreate; exports.createContextForDelete = _chunkTOTUS3YSjs.createContextForDelete; exports.createContextForRestore = _chunkTOTUS3YSjs.createContextForRestore; exports.createContextForUpdate = _chunkTOTUS3YSjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkTOTUS3YSjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkTOTUS3YSjs.createDefaultState; exports.createMockAdapter = _chunkTOTUS3YSjs.createMockAdapter; exports.createQueryBuilder = _chunkTOTUS3YSjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkTOTUS3YSjs.defaultPolicyRegistry; exports.defaultTtl = _chunkTOTUS3YSjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunkTOTUS3YSjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkTOTUS3YSjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkTOTUS3YSjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkTOTUS3YSjs.enrichWithFormulas; exports.error = _chunkTOTUS3YSjs.error; exports.evaluate = _chunkTOTUS3YSjs.evaluate; exports.evaluateCondition = _chunkTOTUS3YSjs.evaluateCondition; exports.evaluateFormula = _chunkTOTUS3YSjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkTOTUS3YSjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkTOTUS3YSjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkTOTUS3YSjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkTOTUS3YSjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkTOTUS3YSjs.evaluateWithTrace; exports.extractAttributeNames = _chunkTOTUS3YSjs.extractAttributeNames; exports.extractFormulaVariables = _chunkTOTUS3YSjs.extractFormulaVariables; exports.extractRelationIds = _chunkTOTUS3YSjs.extractRelationIds; exports.extractRelationNames = _chunkTOTUS3YSjs.extractRelationNames; exports.extractRelationReferences = _chunkTOTUS3YSjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkTOTUS3YSjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkTOTUS3YSjs.formatFormulaResult; exports.formatRecord = _chunkTOTUS3YSjs.formatRecord; exports.formatRecords = _chunkTOTUS3YSjs.formatRecords; exports.getContext = _chunkTOTUS3YSjs.getContext; exports.getDefaultExecutorRegistry = _chunkTOTUS3YSjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkTOTUS3YSjs.getFeatureFlags; exports.getFeatureValue = _chunkTOTUS3YSjs.getFeatureValue; exports.getPathDepth = _chunkTOTUS3YSjs.getPathDepth; exports.getPolicy = _chunkTOTUS3YSjs.getPolicy; exports.getRelationPath = _chunkTOTUS3YSjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkTOTUS3YSjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkTOTUS3YSjs.getSchemaContext; exports.getSchemaFromContext = _chunkTOTUS3YSjs.getSchemaFromContext; exports.getSyncPreview = _chunkTOTUS3YSjs.getSyncPreview; exports.getTargetAttributeName = _chunkTOTUS3YSjs.getTargetAttributeName; exports.getTenantId = _chunkTOTUS3YSjs.getTenantId; exports.getUserId = _chunkTOTUS3YSjs.getUserId; exports.getViewSeedPreview = _chunkTOTUS3YSjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkTOTUS3YSjs.getViewSyncPreview; exports.hasContext = _chunkTOTUS3YSjs.hasContext; exports.hasFeatureFlagsContext = _chunkTOTUS3YSjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkTOTUS3YSjs.hasRelationReferences; exports.hasSchemaContext = _chunkTOTUS3YSjs.hasSchemaContext; exports.hashOptions = _chunkTOTUS3YSjs.hashOptions; exports.isFeatureEnabled = _chunkTOTUS3YSjs.isFeatureEnabled; exports.isLabelExpression = _chunkTOTUS3YSjs.isLabelExpression; exports.parsePath = _chunkTOTUS3YSjs.parsePath; exports.pathHasManyCardinality = _chunkTOTUS3YSjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunkTOTUS3YSjs.recalculateParentRollups; exports.renderLabelExpression = _chunkTOTUS3YSjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkTOTUS3YSjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkTOTUS3YSjs.resolveSingleValue; exports.runWithContext = _chunkTOTUS3YSjs.runWithContext; exports.runWithFeatureFlags = _chunkTOTUS3YSjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkTOTUS3YSjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkTOTUS3YSjs.runWithSchemaContext; exports.seedRegistryViews = _chunkTOTUS3YSjs.seedRegistryViews; exports.success = _chunkTOTUS3YSjs.success; exports.syncAll = _chunkTOTUS3YSjs.syncAll; exports.syncNativeObjects = _chunkTOTUS3YSjs.syncNativeObjects; exports.syncNativeViews = _chunkTOTUS3YSjs.syncNativeViews; exports.traversePath = _chunkTOTUS3YSjs.traversePath; exports.tryGetFeatureValue = _chunkTOTUS3YSjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunkTOTUS3YSjs.validateFormulaExpression; exports.validatePath = _chunkTOTUS3YSjs.validatePath; exports.verifyNativeObjectsSync = _chunkTOTUS3YSjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkTOTUS3YSjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkTOTUS3YSjs.verifyRegistryViewsSeeded; exports.wait = _chunkTOTUS3YSjs.wait; exports.withFeatureFlags = _chunkTOTUS3YSjs.withFeatureFlags; exports.withTenantContext = _chunkTOTUS3YSjs.withTenantContext;
|
package/dist/runtime.mjs
CHANGED
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.66",
|
|
4
4
|
"description": "Standard schema definitions and utilities",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"jose": "^6.1.3",
|
|
36
36
|
"pdf-lib": "^1.17.1",
|
|
37
37
|
"zod": "^4.2.1",
|
|
38
|
-
"@stndrds/constants": "0.1.0-alpha.
|
|
38
|
+
"@stndrds/constants": "0.1.0-alpha.66"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/node": "^25.0.3",
|