@stndrds/schema 0.1.0-alpha.58 → 0.1.0-alpha.59
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-2OS63USQ.js → chunk-DCTLP3ZD.js} +982 -154
- package/dist/{chunk-JRY236AO.mjs → chunk-O7FGYLYG.mjs} +853 -25
- package/dist/index.d.mts +177 -6
- package/dist/index.d.ts +177 -6
- package/dist/index.js +42 -6
- package/dist/index.mjs +37 -1
- package/dist/{runtime-C4vB_EcQ.d.ts → runtime-BRkoIwsC.d.ts} +258 -2
- package/dist/{runtime-SCsDOQi0.d.mts → runtime-Chz-bTNq.d.mts} +258 -2
- package/dist/runtime.d.mts +2 -2
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.js +4 -2
- package/dist/runtime.mjs +3 -1
- package/dist/validation/validators.d.mts +1 -1
- package/dist/validation/validators.d.ts +1 -1
- package/dist/{validators-BgmWgr-G.d.mts → validators-BIAmz0CD.d.mts} +145 -2
- package/dist/{validators-miARInAq.d.ts → validators-BPIB7Miq.d.ts} +145 -2
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ae as Timestamps, A as Attribute, H as AttributeType, a3 as Location, a4 as LocationGranularity, q as StatusAttribute, r as SelectAttribute, s as MultiselectAttribute, a1 as Phone, a2 as Currency, z as FormulaAttribute, E as RollupAttribute, ah as CompletionStatus, af as SharingMode, ai as ObjectRecord, I as ObjectDefinition, V as FeatureFlagsRepository, b8 as ValidationResult, a6 as RelationAttribute, h as PropertySchema, B as FormulaReturnType } from './validators-BIAmz0CD.mjs';
|
|
2
2
|
import { IconName, MimeType, ColorId, CountryIso3 } from '@stndrds/constants';
|
|
3
3
|
import { Uuid, TenantId, UserId } from './utils.mjs';
|
|
4
4
|
import { JWTPayload } from 'jose';
|
|
@@ -3840,6 +3840,12 @@ interface ListOptions {
|
|
|
3840
3840
|
* @default false
|
|
3841
3841
|
*/
|
|
3842
3842
|
includeDeleted?: boolean;
|
|
3843
|
+
/**
|
|
3844
|
+
* Include related records in results.
|
|
3845
|
+
* For qualified relations (with properties), returns format: Array<{ id, props }>
|
|
3846
|
+
* For normal relations (without properties), returns legacy format: string[]
|
|
3847
|
+
*/
|
|
3848
|
+
include?: string[];
|
|
3843
3849
|
}
|
|
3844
3850
|
/**
|
|
3845
3851
|
* Search options for full-text search
|
|
@@ -5687,6 +5693,110 @@ interface AIUsageMetricsRepository {
|
|
|
5687
5693
|
}>;
|
|
5688
5694
|
}
|
|
5689
5695
|
|
|
5696
|
+
/**
|
|
5697
|
+
* Represents a relation attribute row in the database
|
|
5698
|
+
*/
|
|
5699
|
+
interface RelationAttributeRow {
|
|
5700
|
+
id: Uuid;
|
|
5701
|
+
tenantId: Uuid;
|
|
5702
|
+
fromObject: string;
|
|
5703
|
+
fromId: Uuid;
|
|
5704
|
+
fromAttribute: string;
|
|
5705
|
+
toId: Uuid;
|
|
5706
|
+
properties: Record<string, unknown>;
|
|
5707
|
+
createdAt: Date;
|
|
5708
|
+
updatedAt: Date;
|
|
5709
|
+
createdBy: Uuid | null;
|
|
5710
|
+
updatedBy: Uuid | null;
|
|
5711
|
+
}
|
|
5712
|
+
/**
|
|
5713
|
+
* Input for creating/updating a relation attribute
|
|
5714
|
+
*/
|
|
5715
|
+
interface RelationAttributeInput {
|
|
5716
|
+
fromObject: string;
|
|
5717
|
+
fromId: Uuid;
|
|
5718
|
+
fromAttribute: string;
|
|
5719
|
+
toId: Uuid;
|
|
5720
|
+
properties?: Record<string, unknown>;
|
|
5721
|
+
createdBy?: Uuid;
|
|
5722
|
+
updatedBy?: Uuid;
|
|
5723
|
+
}
|
|
5724
|
+
/**
|
|
5725
|
+
* Repository for relation_attributes table.
|
|
5726
|
+
*
|
|
5727
|
+
* Manages properties of qualified relations without requiring intermediate objects.
|
|
5728
|
+
* All operations are automatically scoped to the current tenant from execution context.
|
|
5729
|
+
*
|
|
5730
|
+
* @example
|
|
5731
|
+
* ```typescript
|
|
5732
|
+
* // Upsert relation properties
|
|
5733
|
+
* await relationAttributes.upsertBatch([
|
|
5734
|
+
* {
|
|
5735
|
+
* fromObject: "contacts",
|
|
5736
|
+
* fromId: contactId,
|
|
5737
|
+
* fromAttribute: "companies",
|
|
5738
|
+
* toId: companyId,
|
|
5739
|
+
* properties: { role: "CEO", shares: 1000, percentage: 25 }
|
|
5740
|
+
* }
|
|
5741
|
+
* ]);
|
|
5742
|
+
*
|
|
5743
|
+
* // Find relations by source
|
|
5744
|
+
* const relations = await relationAttributes.findBySource(
|
|
5745
|
+
* "contacts",
|
|
5746
|
+
* contactId,
|
|
5747
|
+
* "companies"
|
|
5748
|
+
* );
|
|
5749
|
+
* ```
|
|
5750
|
+
*/
|
|
5751
|
+
interface RelationAttributesRepository {
|
|
5752
|
+
/**
|
|
5753
|
+
* Upsert (insert or update) a batch of relation attributes.
|
|
5754
|
+
* Uses UNIQUE constraint (tenant_id, from_object, from_id, from_attribute, to_id)
|
|
5755
|
+
* to determine if record exists.
|
|
5756
|
+
*
|
|
5757
|
+
* Automatically sets tenant_id from execution context.
|
|
5758
|
+
*
|
|
5759
|
+
* @param items - Array of relation attributes to upsert
|
|
5760
|
+
* @returns Created/updated relation attribute rows
|
|
5761
|
+
*/
|
|
5762
|
+
upsertBatch(items: RelationAttributeInput[]): Promise<RelationAttributeRow[]>;
|
|
5763
|
+
/**
|
|
5764
|
+
* Find all relation attributes for a specific source.
|
|
5765
|
+
* Automatically filtered by current tenant context.
|
|
5766
|
+
*
|
|
5767
|
+
* @param fromObject - Source object name (e.g., "contacts")
|
|
5768
|
+
* @param fromId - Source record ID
|
|
5769
|
+
* @param fromAttribute - Source attribute name (e.g., "companies")
|
|
5770
|
+
* @returns All relation attributes matching the source
|
|
5771
|
+
*/
|
|
5772
|
+
findBySource(fromObject: string, fromId: Uuid, fromAttribute: string): Promise<RelationAttributeRow[]>;
|
|
5773
|
+
/**
|
|
5774
|
+
* Find all relation attributes targeting a specific record.
|
|
5775
|
+
* Useful for reverse lookups.
|
|
5776
|
+
* Automatically filtered by current tenant context.
|
|
5777
|
+
*
|
|
5778
|
+
* @param toId - Target record ID
|
|
5779
|
+
* @returns All relation attributes targeting this record
|
|
5780
|
+
*/
|
|
5781
|
+
findByTarget(toId: Uuid): Promise<RelationAttributeRow[]>;
|
|
5782
|
+
/**
|
|
5783
|
+
* Delete all relation attributes for a specific source.
|
|
5784
|
+
* Automatically filtered by current tenant context.
|
|
5785
|
+
*
|
|
5786
|
+
* @param fromObject - Source object name
|
|
5787
|
+
* @param fromId - Source record ID
|
|
5788
|
+
* @param fromAttribute - Source attribute name
|
|
5789
|
+
*/
|
|
5790
|
+
deleteBySource(fromObject: string, fromId: Uuid, fromAttribute: string): Promise<void>;
|
|
5791
|
+
/**
|
|
5792
|
+
* Delete all relation attributes targeting a specific record.
|
|
5793
|
+
* Automatically filtered by current tenant context.
|
|
5794
|
+
*
|
|
5795
|
+
* @param toId - Target record ID
|
|
5796
|
+
*/
|
|
5797
|
+
deleteByTarget(toId: Uuid): Promise<void>;
|
|
5798
|
+
}
|
|
5799
|
+
|
|
5690
5800
|
/**
|
|
5691
5801
|
* File content type - supports various formats
|
|
5692
5802
|
* Use Uint8Array for cross-platform compatibility
|
|
@@ -5942,6 +6052,7 @@ interface DatabaseAdapter {
|
|
|
5942
6052
|
documentSlots?: DocumentSlotsRepository;
|
|
5943
6053
|
documentJobs?: DocumentJobsRepository;
|
|
5944
6054
|
documentGenerationTemplates?: DocumentGenerationTemplatesRepository;
|
|
6055
|
+
relationAttributes?: RelationAttributesRepository;
|
|
5945
6056
|
featureFlags?: FeatureFlagsRepository;
|
|
5946
6057
|
transaction<T>(callback: (adapter: DatabaseAdapter) => Promise<T>): Promise<T>;
|
|
5947
6058
|
}
|
|
@@ -7390,6 +7501,22 @@ declare class RecordQueryService extends BaseService {
|
|
|
7390
7501
|
* Internal search query execution
|
|
7391
7502
|
*/
|
|
7392
7503
|
private executeSearchQuery;
|
|
7504
|
+
/**
|
|
7505
|
+
* Include relation properties in records.
|
|
7506
|
+
*
|
|
7507
|
+
* For each requested relation attribute:
|
|
7508
|
+
* - If attribute has properties → Fetch from relation_attributes and return hybrid format
|
|
7509
|
+
* - If attribute has NO properties → Return legacy format (string[] or string)
|
|
7510
|
+
*
|
|
7511
|
+
* Uses batch loading to avoid N+1 queries.
|
|
7512
|
+
*
|
|
7513
|
+
* @param records - Records to enrich with relation properties
|
|
7514
|
+
* @param schema - Object schema
|
|
7515
|
+
* @param includes - Array of relation attribute names to include
|
|
7516
|
+
* @returns Records enriched with relation properties in hybrid format
|
|
7517
|
+
* @private
|
|
7518
|
+
*/
|
|
7519
|
+
private includeRelationsWithProperties;
|
|
7393
7520
|
}
|
|
7394
7521
|
|
|
7395
7522
|
/**
|
|
@@ -7435,6 +7562,7 @@ declare class RecordService extends BaseService {
|
|
|
7435
7562
|
private queryService;
|
|
7436
7563
|
private recordResolver;
|
|
7437
7564
|
private relationService;
|
|
7565
|
+
private relationPropertiesService;
|
|
7438
7566
|
private userService;
|
|
7439
7567
|
private rollupService;
|
|
7440
7568
|
private hookRegistry;
|
|
@@ -8163,6 +8291,133 @@ declare class RelationService extends BaseService {
|
|
|
8163
8291
|
private fetchAttributeById;
|
|
8164
8292
|
}
|
|
8165
8293
|
|
|
8294
|
+
/**
|
|
8295
|
+
* Normalized relation value format (internal representation)
|
|
8296
|
+
*/
|
|
8297
|
+
interface NormalizedRelationItem {
|
|
8298
|
+
id: Uuid;
|
|
8299
|
+
props?: Record<string, unknown>;
|
|
8300
|
+
}
|
|
8301
|
+
/**
|
|
8302
|
+
* Hybrid relation value format (API input)
|
|
8303
|
+
*
|
|
8304
|
+
* Supports both:
|
|
8305
|
+
* - Legacy: string[] (backward compatible, no properties)
|
|
8306
|
+
* - New: Array<{ id, props }> (with properties)
|
|
8307
|
+
*/
|
|
8308
|
+
type MultiRelationValue = string[] | NormalizedRelationItem[];
|
|
8309
|
+
/**
|
|
8310
|
+
* Hybrid single relation value format (API input)
|
|
8311
|
+
*
|
|
8312
|
+
* Supports both:
|
|
8313
|
+
* - Legacy: string | null (backward compatible, no properties)
|
|
8314
|
+
* - New: { id, props } | null (with properties)
|
|
8315
|
+
*/
|
|
8316
|
+
type SingleRelationValue = string | NormalizedRelationItem | null;
|
|
8317
|
+
/**
|
|
8318
|
+
* Union type for all hybrid relation value formats
|
|
8319
|
+
*/
|
|
8320
|
+
type HybridRelationValue = MultiRelationValue | SingleRelationValue;
|
|
8321
|
+
/**
|
|
8322
|
+
* Service for managing properties of qualified relations.
|
|
8323
|
+
*
|
|
8324
|
+
* Handles sync (upsert/delete) and validation of relation properties
|
|
8325
|
+
* stored in the relation_attributes table.
|
|
8326
|
+
*
|
|
8327
|
+
* Supports hybrid format for backward compatibility:
|
|
8328
|
+
* - Legacy: string[] or string (no properties)
|
|
8329
|
+
* - New: Array<{ id, props }> or { id, props } (with properties)
|
|
8330
|
+
*
|
|
8331
|
+
* @example
|
|
8332
|
+
* ```typescript
|
|
8333
|
+
* // Create record with qualified relation (new format)
|
|
8334
|
+
* await recordService.createRecord(objectId, {
|
|
8335
|
+
* companies: [
|
|
8336
|
+
* { id: "company-1", props: { role: "CEO", shares: 1000 } },
|
|
8337
|
+
* { id: "company-2", props: { role: "CTO", shares: 500 } }
|
|
8338
|
+
* ]
|
|
8339
|
+
* });
|
|
8340
|
+
*
|
|
8341
|
+
* // Update with legacy format (still supported)
|
|
8342
|
+
* await recordService.updateRecord(recordId, {
|
|
8343
|
+
* companies: ["company-1", "company-3"]
|
|
8344
|
+
* });
|
|
8345
|
+
* ```
|
|
8346
|
+
*/
|
|
8347
|
+
declare class RelationPropertiesService extends BaseService {
|
|
8348
|
+
constructor(adapter: DatabaseAdapter);
|
|
8349
|
+
/**
|
|
8350
|
+
* Normalize relation values for storage in object_records table.
|
|
8351
|
+
*
|
|
8352
|
+
* Extracts IDs from hybrid format ({ id, props }) and returns legacy format (string[] or string).
|
|
8353
|
+
* This ensures object_records.values only contains IDs, while properties are in relation_attributes.
|
|
8354
|
+
*
|
|
8355
|
+
* @param schema - Object schema
|
|
8356
|
+
* @param data - Record data with hybrid relation values
|
|
8357
|
+
* @returns Data with relation values normalized to ID-only format
|
|
8358
|
+
*/
|
|
8359
|
+
normalizeRelationValuesForStorage(schema: ObjectDefinition, data: Record<string, unknown>): Record<string, unknown>;
|
|
8360
|
+
/**
|
|
8361
|
+
* Synchronize relation properties for a given attribute.
|
|
8362
|
+
*
|
|
8363
|
+
* Handles:
|
|
8364
|
+
* - Format normalization (legacy → new)
|
|
8365
|
+
* - Validation of properties
|
|
8366
|
+
* - Upsert for present IDs
|
|
8367
|
+
* - Delete for absent IDs
|
|
8368
|
+
*
|
|
8369
|
+
* @param schema - Object schema
|
|
8370
|
+
* @param recordId - Source record ID
|
|
8371
|
+
* @param attributeName - Relation attribute name
|
|
8372
|
+
* @param relationValue - Relation value (hybrid format)
|
|
8373
|
+
* @param adapter - Database adapter
|
|
8374
|
+
*/
|
|
8375
|
+
syncRelationProperties(schema: ObjectDefinition, recordId: Uuid, attributeName: string, relationValue: HybridRelationValue, adapter: DatabaseAdapter): Promise<void>;
|
|
8376
|
+
/**
|
|
8377
|
+
* Validate relation properties against PropertySchema.
|
|
8378
|
+
*
|
|
8379
|
+
* Uses Zod for runtime validation based on PropertyDefinition types.
|
|
8380
|
+
*
|
|
8381
|
+
* @param propertySchema - Schema defining allowed properties
|
|
8382
|
+
* @param properties - Properties to validate
|
|
8383
|
+
* @throws {z.ZodError} if validation fails
|
|
8384
|
+
*/
|
|
8385
|
+
validateProperties(propertySchema: PropertySchema, properties: Record<string, unknown>): void;
|
|
8386
|
+
/**
|
|
8387
|
+
* Normalize relation value to unified internal format.
|
|
8388
|
+
*
|
|
8389
|
+
* Converts:
|
|
8390
|
+
* - string[] → Array<{ id, props?: undefined }>
|
|
8391
|
+
* - string → [{ id, props?: undefined }]
|
|
8392
|
+
* - null → []
|
|
8393
|
+
* - Array<{ id, props }> → Array<{ id, props }> (passthrough)
|
|
8394
|
+
* - { id, props } → [{ id, props }] (single to array)
|
|
8395
|
+
*
|
|
8396
|
+
* @param value - Relation value in hybrid format
|
|
8397
|
+
* @returns Normalized array of relation items
|
|
8398
|
+
* @private
|
|
8399
|
+
*/
|
|
8400
|
+
private normalizeRelationValue;
|
|
8401
|
+
/**
|
|
8402
|
+
* Build Zod schema from PropertySchema definition.
|
|
8403
|
+
*
|
|
8404
|
+
* Dynamically generates validation schema based on PropertyDefinition types.
|
|
8405
|
+
*
|
|
8406
|
+
* @param propertySchema - PropertySchema with definitions
|
|
8407
|
+
* @returns Zod schema for validation
|
|
8408
|
+
* @private
|
|
8409
|
+
*/
|
|
8410
|
+
private buildZodSchema;
|
|
8411
|
+
/**
|
|
8412
|
+
* Build Zod schema for a single property field.
|
|
8413
|
+
*
|
|
8414
|
+
* @param def - PropertyDefinition
|
|
8415
|
+
* @returns Zod schema for the field
|
|
8416
|
+
* @private
|
|
8417
|
+
*/
|
|
8418
|
+
private buildFieldSchema;
|
|
8419
|
+
}
|
|
8420
|
+
|
|
8166
8421
|
/**
|
|
8167
8422
|
* Resolved relation values for a record
|
|
8168
8423
|
* Maps relation attribute name to the resolved record's values
|
|
@@ -9845,6 +10100,7 @@ interface MockStores {
|
|
|
9845
10100
|
aiMessages: Map<Uuid, AIMessage>;
|
|
9846
10101
|
aiUserMemory: Map<string, AIUserMemory>;
|
|
9847
10102
|
aiUsageMetrics: Map<string, AIUsageMetrics>;
|
|
10103
|
+
relationAttributes: Map<Uuid, RelationAttributeRow>;
|
|
9848
10104
|
}
|
|
9849
10105
|
|
|
9850
10106
|
/**
|
|
@@ -12324,4 +12580,4 @@ interface FullSyncOptions extends SyncOptions, ViewSyncOptions {
|
|
|
12324
12580
|
*/
|
|
12325
12581
|
declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof registry, nativeViewRegistry: typeof viewRegistry, options?: FullSyncOptions): Promise<FullSyncResult>;
|
|
12326
12582
|
|
|
12327
|
-
export { type TextPartData as $, type AttributeGroupField as A, type BoundingBox as B, type ConditionGroup as C, type DetailViewLayout as D, type SignatureRequestResult as E, type Field as F, type Group as G, type SignatureStatusResult as H, type InferAttributeValue as I, type SignerStatus as J, type SignatureStatus as K, type ListViewDefinition as L, type IdentityVerificationAdapter as M, type VerifyInput as N, type ObjectAction as O, type VerificationResult as P, type DocumentData as Q, type VerificationCheck as R, type SystemResource as S, type TableTab as T, type AIMessageRole as U, type ViewType as V, type WorkflowTheme as W, type AIThinkingLevel as X, type AIToolCallStatus as Y, type AIToolCall as Z, type AIChatMessagePartType as _, type SystemAction as a, type UpdateFile as a$, type ToolPartData as a0, type ThinkingPartData as a1, type ReasoningPartData as a2, type AIChatMessagePart as a3, type AIChatMessage as a4, type AIQuestionType as a5, type AIQuestionOption as a6, type AIQuestion as a7, type AIQuestionAnswer as a8, type AIBatchQuestionOption as a9, type UpdateDocumentGenerationTemplate as aA, type PendingDocumentRequest as aB, type DocumentSlotDefinition as aC, type DocumentAutoProcessing as aD, type ExtractionMapping as aE, type ExtractionField as aF, type Document as aG, type DocumentStatus as aH, type DocumentSlot as aI, type SlotStatus as aJ, type ProcessingJob as aK, type ProcessingJobType as aL, type ProcessingJobStatus as aM, type CreateDocument as aN, type UpdateDocument as aO, type CreateDocumentTemplate as aP, type UpdateDocumentTemplate as aQ, type CreateDocumentSlot as aR, type UpdateDocumentSlot as aS, type CreateProcessingJob as aT, type UpdateProcessingJob as aU, type DocumentListOptions as aV, type DocumentTemplateListOptions as aW, type StorageProvider as aX, type FileVisibility as aY, type File as aZ, type CreateFile as a_, type AIBatchQuestion as aa, type AIBatchQuestionAnswer as ab, type AITodoStatus as ac, type AITodoItem as ad, type AITodoList as ae, type AIMessageAttachment as af, type AIConversation as ag, type AIMessage as ah, type AIToolCallRecord as ai, type AIUserMemory as aj, type AIUsageMetrics as ak, type AIProviderMetrics as al, type CreateAIMessageInput as am, type AuditResourceType as an, type AuditAction as ao, type AuditActorType as ap, type AuditChange as aq, type AuditLogEntry as ar, type CreateAuditLogInput as as, type AuditListOptions as at, type AuditServiceOptions as au, type VariableMapping as av, type PdfTemplateField as aw, type TemplateSource as ax, type DocumentGenerationTemplate as ay, type CreateDocumentGenerationTemplate as az, type InverseTableTab as b, type Permission as b$, type TextFilterOperator as b0, type NumberFilterOperator as b1, type CheckboxFilterOperator as b2, type DateFilterOperator as b3, type SelectFilterOperator as b4, type MultiselectFilterOperator as b5, type RelationFilterOperator as b6, type FilterOperator as b7, type RelativeDateValue as b8, type CurrencyFilterValue as b9, type GeocodingAdapter as bA, NoopGeocodingAdapter as bB, type AttributeSchema as bC, type InferRecordFromSchema as bD, type InferRecordWithRequirements as bE, type TypedAttribute as bF, type AttributeMap as bG, type AddAttribute as bH, type InferRecord as bI, type InferRecordInput as bJ, type InferRecordUpdate as bK, type CustomAttributeValue as bL, type WithCustomAttributes as bM, type RecordMetadata as bN, type SystemFields as bO, type ExtractRecord as bP, type ExtractRecordStrict as bQ, type ExtractRecordInput as bR, type ExtractRecordInputStrict as bS, type ExtractRecordUpdate as bT, type ExtractRecordUpdateStrict as bU, type ExtractAttributes as bV, type TypedObjectRecord as bW, type ExtractObjectRecord as bX, type ExtractObjectRecordWithCustom as bY, type PermissionScope as bZ, type Role as b_, type PhoneFilterValue as ba, type FilterValue as bb, type FilterRule as bc, type ExtendedFilterRule as bd, type FilterCombinator as be, type FilterGroup as bf, type AdvancedFilterState as bg, type SortDirection as bh, type QueryState as bi, OPERATORS_BY_TYPE as bj, type NoValueOperator as bk, NO_VALUE_OPERATORS as bl, isNoValueOperator as bm, type FlowSlot as bn, type FlowRowField as bo, type FlowPage as bp, type FlowRelation as bq, type FlowStatus as br, type FlowDefinition as bs, isFlowDefinition as bt, isFlowPublished as bu, isSystemFlow as bv, type GeocodingSuggestion as bw, type GeocodingAutocompleteParams as bx, type ReverseGeocodingParams as by, type GeocodingParams as bz, type DetailViewDefinition as c, isEndNode as c$, type UserRoleAssignment as c0, type EffectivePermissions as c1, type ObjectPermissions as c2, type SystemPermissions as c3, type CreateRoleInput as c4, type UpdateRoleInput as c5, type CreatePermissionInput as c6, type AssignRoleInput as c7, type PolicyContext as c8, type RecordPolicy as c9, type ConfigOverrides as cA, type ViewOverlay as cB, isDetailView as cC, isListView as cD, isCalendarView as cE, isTimelineView as cF, isGalleryView as cG, isFormTab as cH, isTableTab as cI, isDirectTableTab as cJ, isInverseTableTab as cK, isCustomTab as cL, isActivityTab as cM, isNotesTab as cN, isFlowsTab as cO, isDocumentsTab as cP, type ConditionNode as cQ, type DocumentNode as cR, type EndNode as cS, type FormFieldRef as cT, type FormNode as cU, type StartNode as cV, type WorkflowNodeType as cW, getNodeOutputs as cX, isAdvancedFormNode as cY, isConditionNode as cZ, isDocumentNode as c_, PolicyViolationError as ca, type UserRole as cb, type UserStatus as cc, type UserProfile as cd, type CreateUserProfile as ce, type UpdateUserProfile as cf, type InviteUserInput as cg, type TabType as ch, type FormTab as ci, type CustomTab as cj, type ActivityTab as ck, type NotesTab as cl, type FlowsTab as cm, type DocumentsTab as cn, type ListViewLayout as co, type ViewLayout as cp, type ViewTab as cq, type DetailViewConfig as cr, type ListViewConfig as cs, type CalendarViewConfig as ct, type TimelineViewConfig as cu, type GalleryViewConfig as cv, type ViewConfig as cw, type CalendarViewDefinition as cx, type TimelineViewDefinition as cy, type GalleryViewDefinition as cz, type InstanceStatus as d, WorkflowJwtService as d$, isFormNode as d0, isSimpleFormNode as d1, isStartNode as d2, type ConditionOperator as d3, and as d4, eq as d5, inValues as d6, isConditionGroup as d7, isConditionRule as d8, neq as d9, type WorkflowAccessGrant as dA, canAccessNode as dB, isGrantExpired as dC, isGrantRevoked as dD, isGrantValid as dE, isTokenRevoked as dF, type GeneratedDocument as dG, type WorkflowExecutionContext as dH, createEmptyContext as dI, getContextValue as dJ, setContextValue as dK, type FormContextResponse as dL, type FormFieldContext as dM, type FormFieldRow as dN, type FormNodeInfo as dO, type ReadOnlyReason as dP, type WorkflowAccessMode as dQ, type ThemeColors as dR, type ThemeLogo as dS, type ThemeTypography as dT, DEFAULT_THEME as dU, generateCssVariables as dV, mergeWithDefaults as dW, registry as dX, viewRegistry as dY, type ViewOverlaysRepository as dZ, type DatabaseAdapter as d_, or as da, type CanvasViewport as db, type NodePosition as dc, type WorkflowLayout as dd, type WorkflowSlot as de, type WorkflowStatus as df, isSystemWorkflow as dg, isWorkflowDefinition as dh, isWorkflowPublished as di, type PendingAction as dj, type WorkflowError as dk, type WorkflowInstance as dl, type WorkflowTransition as dm, canResumeInstance as dn, createStartTransition as dp, isInstanceTerminal as dq, isInstanceWaiting as dr, type CreateInvitationInput as ds, type CreateInvitationResult as dt, type InvitationStatus as du, type WorkflowInvitation as dv, isInvitationAccepted as dw, isInvitationExpired as dx, isInvitationValid as dy, type CreateGrantInput as dz, type Tab as e, type ExecutorContext as e$, type JwtVerificationResult as e0, type MagicLinkPayload as e1, type WorkflowAccessPayload as e2, type WorkflowJwtConfig as e3, type WorkflowJwtPayload as e4, type CacheKeyType as e5, hashOptions as e6, type CacheAdapter as e7, type CacheOptions as e8, cacheKeys as e9, FeatureFlagsContextError as eA, getFeatureFlags as eB, getFeatureValue as eC, hasFeatureFlagsContext as eD, isFeatureEnabled as eE, runWithFeatureFlags as eF, tryGetFeatureValue as eG, withFeatureFlags as eH, type FeatureFlagsContext as eI, addSchemaToContext as eJ, getSchemaByNameFromContext as eK, getSchemaContext as eL, getSchemaFromContext as eM, hasSchemaContext as eN, runWithMergedSchemaContext as eO, runWithSchemaContext as eP, type SchemaContext as eQ, getContext as eR, getTenantId as eS, getUserId as eT, hasContext as eU, runWithContext as eV, withTenantContext as eW, type TenantContext as eX, createDefaultExecutorRegistry as eY, getDefaultExecutorRegistry as eZ, type ExecutorCompleteResult as e_, cacheTtl as ea, defaultTtl as eb, NoopCacheAdapter as ec, type FetchResult as ed, type FormattedRecord as ee, type GroupedFetchResult as ef, type InsertOptions as eg, type QueryBuilderState as eh, type RegistryMap as ei, type RegistryObjectNames as ej, type ShortcutOperator as ek, createDefaultState as el, formatRecord as em, formatRecords as en, QueryMultipleResultsError as eo, QueryNoResultError as ep, SHORTCUT_TO_FILTER_OPERATOR as eq, createQueryBuilder as er, QueryBuilder as es, type QueryBuilderOptions as et, type EvaluationResult as eu, type EvaluationTrace as ev, evaluateCondition as ew, evaluate as ex, evaluateWithTrace as ey, TenantContextError as ez, type FilterState as f, type DocumentGenerationTemplatesRepository as f$, type ExecutorErrorResult as f0, type ExecutorResult as f1, type ExecutorSuccessResult as f2, type ExecutorWaitResult as f3, type NodeExecutor as f4, complete as f5, error as f6, ExecutorRegistry as f7, success as f8, wait as f9, type PathCardinality as fA, type PathSegment as fB, type PathSegmentType as fC, type SchemaResolver as fD, resolveMultiplePaths as fE, resolveSingleValue as fF, traversePath as fG, type TraversalOptions as fH, type TraversalResult as fI, type AttributeChange as fJ, type HookContext as fK, type HookDefinition as fL, type HookHandler as fM, type HookType as fN, NoopHookRegistry as fO, type HookRegistry as fP, createMockAdapter as fQ, type MockStores as fR, defaultPolicyRegistry as fS, PolicyRegistry as fT, notesPolicy as fU, type AIConversationsRepository as fV, type AIUsageMetricsRepository as fW, type AIUserMemoryRepository as fX, type AttributesRepository as fY, type AuditRepository as fZ, type DocumentGenerationTemplateListOptions as f_, ConditionExecutor as fa, DocumentExecutor as fb, EndExecutor as fc, FormExecutor as fd, StartExecutor as fe, evaluateFormula as ff, evaluateFormulaAttribute as fg, evaluateFormulaAttributeWithRelations as fh, evaluateFormulaWithRelations as fi, evaluateFormulaWithResult as fj, extractFormulaVariables as fk, extractRelationNames as fl, extractRelationReferences as fm, flattenRelationsForEval as fn, formatFormulaResult as fo, hasRelationReferences as fp, validateFormulaExpression as fq, type FormulaResult as fr, getPathDepth as fs, getRelationPath as ft, getTargetAttributeName as fu, InvalidPathError as fv, MaxDepthExceededError as fw, parsePath as fx, pathHasManyCardinality as fy, validatePath as fz, type SortRule as g, createContextForRestore as g$, type DocumentJobsRepository as g0, type DocumentSlotsRepository as g1, type DocumentsRepository as g2, type DocumentTemplatesRepository as g3, type FilesRepository as g4, type ObjectRecordsRepository as g5, type ObjectsRepository as g6, type PermissionsRepository as g7, type UserProfilesRepository as g8, type ViewsRepository as g9, type ResolveIdsBatchRequest as gA, type ResolveIdsBatchResponse as gB, RelationService as gC, RecordResolverService as gD, type ResolvedRelations as gE, type FormulaResolverServiceOptions as gF, FormulaResolverService as gG, type RollupResult as gH, type RollupServiceOptions as gI, RollupService as gJ, type RollupSchedulerOptions as gK, RollupScheduler as gL, applyDefaultValues as gM, checkPermission as gN, getPolicy as gO, buildPolicyContext as gP, checkRecordAccess as gQ, checkRecordModifyOrThrow as gR, checkRecordDeleteOrThrow as gS, checkSharedObjectWriteAccess as gT, computeLabel as gU, type LabelResolver as gV, enrichWithFormulas as gW, enrichRecordsWithFormulas as gX, createContextForCreate as gY, createContextForUpdate as gZ, createContextForDelete as g_, type WorkflowAccessGrantsRepository as ga, type WorkflowInstancesRepository as gb, type WorkflowInvitationsRepository as gc, type WorkflowsRepository as gd, BaseService as ge, BaseRepository as gf, type SchemaContextAware as gg, SchemaContextAwareRepository as gh, type CreateCustomObjectInput as gi, type AddAttributeInput as gj, type UpdateObjectInput as gk, type ObjectSchemaServiceOptions as gl, ObjectSchemaService as gm, type RecordServiceOptions as gn, RecordService as go, type RecordQueryServiceOptions as gp, type QueryOptions as gq, type SearchQueryOptions as gr, type QueryResult as gs, RecordQueryService as gt, type RelationValidationResult as gu, type RelationValidationError as gv, type RelationOption as gw, type RelationOptionsResponse as gx, type GetRelationOptionsParams as gy, type RelationServiceOptions as gz, type DirectTableTab as h, type StorageUploadResult as h$, recalculateParentRollups as h0, type RollupCascadeContext as h1, type DocumentProcessingHookOptions as h2, DocumentProcessingHook as h3, GrantNotFoundError as h4, GrantExpiredError as h5, GrantRevokedError as h6, TokenRevokedError as h7, type GrantServiceConfig as h8, type CreateGrantResult as h9, type DocumentProcessingConfig as hA, DocumentProcessingService as hB, type RenderDocumentInput as hC, type DocumentRendererOptions as hD, type RenderDocumentResult as hE, DocumentRenderError as hF, StorageDownloadNotSupportedError as hG, DocumentRendererService as hH, DocumentTemplateService as hI, type RecordDocumentsResult as hJ, type CreateRecordDocumentInput as hK, type CreateRecordDocumentResult as hL, type DocumentServiceOptions as hM, DocumentService as hN, type FileServiceOptions as hO, FileService as hP, GeocodingService as hQ, GlobalSearchService as hR, type PermissionServiceOptions as hS, PermissionService as hT, type CreateViewInput as hU, type UpdateViewInput as hV, type GetViewsOptions as hW, type GetViewOptions as hX, ViewService as hY, type FileContent as hZ, type StorageUploadInput as h_, WorkflowAccessGrantService as ha, type StartWorkflowInput as hb, type ResumeWorkflowInput as hc, type WorkflowInstanceServiceOptions as hd, WorkflowInstanceService as he, type InvitationServiceConfig as hf, InvitationNotFoundError as hg, InvitationExpiredError as hh, InvitationAlreadyAcceptedError as hi, InvitationRevokedError as hj, WorkflowInvitationService as hk, WorkflowRelationService as hl, type CreateWorkflowInput as hm, type UpdateWorkflowInput as hn, type WorkflowServiceOptions as ho, WorkflowService as hp, type UserValidationResult as hq, type UserValidationError as hr, UserService as hs, type UserProfileServiceOptions as ht, UserProfileService as hu, AuditService as hv, buildAuditChanges as hw, DocumentGenerationTemplateNotFoundError as hx, DocumentGenerationNotConfiguredError as hy, DocumentGenerationService as hz, type WorkflowConfig as i, getViewSeedPreview as i$, type SignedUrlOptions as i0, type StorageAdapter as i1, type UploadFileInput as i2, type SyncResult as i3, type SyncOptions as i4, syncNativeObjects as i5, verifyNativeObjectsSync as i6, getSyncPreview as i7, type FullSyncResult as i8, type FullSyncOptions as i9, type DBView as iA, type CreateDBView as iB, type UpdateDBView as iC, type UpsertDBView as iD, type DBViewOverlay as iE, type CreateDBViewOverlay as iF, type UpdateDBViewOverlay as iG, type DBWorkflow as iH, type CreateDBWorkflow as iI, type UpdateDBWorkflow as iJ, type DBWorkflowInstance as iK, type CreateDBWorkflowInstance as iL, type UpdateDBWorkflowInstance as iM, type DBWorkflowInvitation as iN, type CreateDBWorkflowInvitation as iO, type UpdateDBWorkflowInvitation as iP, type DBWorkflowAccessGrant as iQ, type CreateDBWorkflowAccessGrant as iR, type UpdateDBWorkflowAccessGrant as iS, type OperationResult as iT, type ViewSyncResult as iU, type ViewSyncLogger as iV, type ViewSyncOptions as iW, seedRegistryViews as iX, syncNativeViews as iY, verifyRegistryViewsSeeded as iZ, verifyNativeViewsSync as i_, syncAll as ia, DEFAULT_LABEL_FALLBACK as ib, renderLabelExpression as ic, isLabelExpression as id, extractAttributeNames as ie, enrichValuesForDisplay as ig, enrichValuesWithSelectLabels as ih, extractRelationIds as ii, type RelationLabelResolver as ij, computeLabelWithRelations as ik, type DBObject as il, type CreateDBObject as im, type UpdateDBObject as io, type UpsertDBObject as ip, type DBAttribute as iq, type CreateDBAttribute as ir, type UpdateDBAttribute as is, type UpsertDBAttribute as it, type CreateObjectRecord as iu, type ListOptions as iv, type SearchOptions as iw, type GlobalSearchOptions as ix, type GlobalSearchResultItem as iy, type FileListOptions as iz, type SlotMode as j, getViewSyncPreview as j0, type ConditionRule as k, type WorkflowNode as l, type WorkflowDefinition as m, type FlowRow as n, type ViewDefinition as o, type DocumentTemplate as p, type OcrAdapter as q, type OcrInput as r, type OcrOptions as s, type OcrResult as t, type OcrPage as u, type OcrTextBlock as v, type SignatureAdapter as w, type CreateSignatureInput as x, type SignerRequest as y, type SignaturePosition as z };
|
|
12583
|
+
export { type TextPartData as $, type AttributeGroupField as A, type BoundingBox as B, type ConditionGroup as C, type DetailViewLayout as D, type SignatureRequestResult as E, type Field as F, type Group as G, type SignatureStatusResult as H, type InferAttributeValue as I, type SignerStatus as J, type SignatureStatus as K, type ListViewDefinition as L, type IdentityVerificationAdapter as M, type VerifyInput as N, type ObjectAction as O, type VerificationResult as P, type DocumentData as Q, type VerificationCheck as R, type SystemResource as S, type TableTab as T, type AIMessageRole as U, type ViewType as V, type WorkflowTheme as W, type AIThinkingLevel as X, type AIToolCallStatus as Y, type AIToolCall as Z, type AIChatMessagePartType as _, type SystemAction as a, type UpdateFile as a$, type ToolPartData as a0, type ThinkingPartData as a1, type ReasoningPartData as a2, type AIChatMessagePart as a3, type AIChatMessage as a4, type AIQuestionType as a5, type AIQuestionOption as a6, type AIQuestion as a7, type AIQuestionAnswer as a8, type AIBatchQuestionOption as a9, type UpdateDocumentGenerationTemplate as aA, type PendingDocumentRequest as aB, type DocumentSlotDefinition as aC, type DocumentAutoProcessing as aD, type ExtractionMapping as aE, type ExtractionField as aF, type Document as aG, type DocumentStatus as aH, type DocumentSlot as aI, type SlotStatus as aJ, type ProcessingJob as aK, type ProcessingJobType as aL, type ProcessingJobStatus as aM, type CreateDocument as aN, type UpdateDocument as aO, type CreateDocumentTemplate as aP, type UpdateDocumentTemplate as aQ, type CreateDocumentSlot as aR, type UpdateDocumentSlot as aS, type CreateProcessingJob as aT, type UpdateProcessingJob as aU, type DocumentListOptions as aV, type DocumentTemplateListOptions as aW, type StorageProvider as aX, type FileVisibility as aY, type File as aZ, type CreateFile as a_, type AIBatchQuestion as aa, type AIBatchQuestionAnswer as ab, type AITodoStatus as ac, type AITodoItem as ad, type AITodoList as ae, type AIMessageAttachment as af, type AIConversation as ag, type AIMessage as ah, type AIToolCallRecord as ai, type AIUserMemory as aj, type AIUsageMetrics as ak, type AIProviderMetrics as al, type CreateAIMessageInput as am, type AuditResourceType as an, type AuditAction as ao, type AuditActorType as ap, type AuditChange as aq, type AuditLogEntry as ar, type CreateAuditLogInput as as, type AuditListOptions as at, type AuditServiceOptions as au, type VariableMapping as av, type PdfTemplateField as aw, type TemplateSource as ax, type DocumentGenerationTemplate as ay, type CreateDocumentGenerationTemplate as az, type InverseTableTab as b, type Permission as b$, type TextFilterOperator as b0, type NumberFilterOperator as b1, type CheckboxFilterOperator as b2, type DateFilterOperator as b3, type SelectFilterOperator as b4, type MultiselectFilterOperator as b5, type RelationFilterOperator as b6, type FilterOperator as b7, type RelativeDateValue as b8, type CurrencyFilterValue as b9, type GeocodingAdapter as bA, NoopGeocodingAdapter as bB, type AttributeSchema as bC, type InferRecordFromSchema as bD, type InferRecordWithRequirements as bE, type TypedAttribute as bF, type AttributeMap as bG, type AddAttribute as bH, type InferRecord as bI, type InferRecordInput as bJ, type InferRecordUpdate as bK, type CustomAttributeValue as bL, type WithCustomAttributes as bM, type RecordMetadata as bN, type SystemFields as bO, type ExtractRecord as bP, type ExtractRecordStrict as bQ, type ExtractRecordInput as bR, type ExtractRecordInputStrict as bS, type ExtractRecordUpdate as bT, type ExtractRecordUpdateStrict as bU, type ExtractAttributes as bV, type TypedObjectRecord as bW, type ExtractObjectRecord as bX, type ExtractObjectRecordWithCustom as bY, type PermissionScope as bZ, type Role as b_, type PhoneFilterValue as ba, type FilterValue as bb, type FilterRule as bc, type ExtendedFilterRule as bd, type FilterCombinator as be, type FilterGroup as bf, type AdvancedFilterState as bg, type SortDirection as bh, type QueryState as bi, OPERATORS_BY_TYPE as bj, type NoValueOperator as bk, NO_VALUE_OPERATORS as bl, isNoValueOperator as bm, type FlowSlot as bn, type FlowRowField as bo, type FlowPage as bp, type FlowRelation as bq, type FlowStatus as br, type FlowDefinition as bs, isFlowDefinition as bt, isFlowPublished as bu, isSystemFlow as bv, type GeocodingSuggestion as bw, type GeocodingAutocompleteParams as bx, type ReverseGeocodingParams as by, type GeocodingParams as bz, type DetailViewDefinition as c, isEndNode as c$, type UserRoleAssignment as c0, type EffectivePermissions as c1, type ObjectPermissions as c2, type SystemPermissions as c3, type CreateRoleInput as c4, type UpdateRoleInput as c5, type CreatePermissionInput as c6, type AssignRoleInput as c7, type PolicyContext as c8, type RecordPolicy as c9, type ConfigOverrides as cA, type ViewOverlay as cB, isDetailView as cC, isListView as cD, isCalendarView as cE, isTimelineView as cF, isGalleryView as cG, isFormTab as cH, isTableTab as cI, isDirectTableTab as cJ, isInverseTableTab as cK, isCustomTab as cL, isActivityTab as cM, isNotesTab as cN, isFlowsTab as cO, isDocumentsTab as cP, type ConditionNode as cQ, type DocumentNode as cR, type EndNode as cS, type FormFieldRef as cT, type FormNode as cU, type StartNode as cV, type WorkflowNodeType as cW, getNodeOutputs as cX, isAdvancedFormNode as cY, isConditionNode as cZ, isDocumentNode as c_, PolicyViolationError as ca, type UserRole as cb, type UserStatus as cc, type UserProfile as cd, type CreateUserProfile as ce, type UpdateUserProfile as cf, type InviteUserInput as cg, type TabType as ch, type FormTab as ci, type CustomTab as cj, type ActivityTab as ck, type NotesTab as cl, type FlowsTab as cm, type DocumentsTab as cn, type ListViewLayout as co, type ViewLayout as cp, type ViewTab as cq, type DetailViewConfig as cr, type ListViewConfig as cs, type CalendarViewConfig as ct, type TimelineViewConfig as cu, type GalleryViewConfig as cv, type ViewConfig as cw, type CalendarViewDefinition as cx, type TimelineViewDefinition as cy, type GalleryViewDefinition as cz, type InstanceStatus as d, type RelationAttributeRow as d$, isFormNode as d0, isSimpleFormNode as d1, isStartNode as d2, type ConditionOperator as d3, and as d4, eq as d5, inValues as d6, isConditionGroup as d7, isConditionRule as d8, neq as d9, type WorkflowAccessGrant as dA, canAccessNode as dB, isGrantExpired as dC, isGrantRevoked as dD, isGrantValid as dE, isTokenRevoked as dF, type GeneratedDocument as dG, type WorkflowExecutionContext as dH, createEmptyContext as dI, getContextValue as dJ, setContextValue as dK, type FormContextResponse as dL, type FormFieldContext as dM, type FormFieldRow as dN, type FormNodeInfo as dO, type ReadOnlyReason as dP, type WorkflowAccessMode as dQ, type ThemeColors as dR, type ThemeLogo as dS, type ThemeTypography as dT, DEFAULT_THEME as dU, generateCssVariables as dV, mergeWithDefaults as dW, registry as dX, viewRegistry as dY, type ViewOverlaysRepository as dZ, type RelationAttributeInput as d_, or as da, type CanvasViewport as db, type NodePosition as dc, type WorkflowLayout as dd, type WorkflowSlot as de, type WorkflowStatus as df, isSystemWorkflow as dg, isWorkflowDefinition as dh, isWorkflowPublished as di, type PendingAction as dj, type WorkflowError as dk, type WorkflowInstance as dl, type WorkflowTransition as dm, canResumeInstance as dn, createStartTransition as dp, isInstanceTerminal as dq, isInstanceWaiting as dr, type CreateInvitationInput as ds, type CreateInvitationResult as dt, type InvitationStatus as du, type WorkflowInvitation as dv, isInvitationAccepted as dw, isInvitationExpired as dx, isInvitationValid as dy, type CreateGrantInput as dz, type Tab as e, createDefaultExecutorRegistry as e$, type RelationAttributesRepository as e0, type DatabaseAdapter as e1, WorkflowJwtService as e2, type JwtVerificationResult as e3, type MagicLinkPayload as e4, type WorkflowAccessPayload as e5, type WorkflowJwtConfig as e6, type WorkflowJwtPayload as e7, type CacheKeyType as e8, hashOptions as e9, evaluate as eA, evaluateWithTrace as eB, TenantContextError as eC, FeatureFlagsContextError as eD, getFeatureFlags as eE, getFeatureValue as eF, hasFeatureFlagsContext as eG, isFeatureEnabled as eH, runWithFeatureFlags as eI, tryGetFeatureValue as eJ, withFeatureFlags as eK, type FeatureFlagsContext as eL, addSchemaToContext as eM, getSchemaByNameFromContext as eN, getSchemaContext as eO, getSchemaFromContext as eP, hasSchemaContext as eQ, runWithMergedSchemaContext as eR, runWithSchemaContext as eS, type SchemaContext as eT, getContext as eU, getTenantId as eV, getUserId as eW, hasContext as eX, runWithContext as eY, withTenantContext as eZ, type TenantContext as e_, type CacheAdapter as ea, type CacheOptions as eb, cacheKeys as ec, cacheTtl as ed, defaultTtl as ee, NoopCacheAdapter as ef, type FetchResult as eg, type FormattedRecord as eh, type GroupedFetchResult as ei, type InsertOptions as ej, type QueryBuilderState as ek, type RegistryMap as el, type RegistryObjectNames as em, type ShortcutOperator as en, createDefaultState as eo, formatRecord as ep, formatRecords as eq, QueryMultipleResultsError as er, QueryNoResultError as es, SHORTCUT_TO_FILTER_OPERATOR as et, createQueryBuilder as eu, QueryBuilder as ev, type QueryBuilderOptions as ew, type EvaluationResult as ex, type EvaluationTrace as ey, evaluateCondition as ez, type FilterState as f, type AttributesRepository as f$, getDefaultExecutorRegistry as f0, type ExecutorCompleteResult as f1, type ExecutorContext as f2, type ExecutorErrorResult as f3, type ExecutorResult as f4, type ExecutorSuccessResult as f5, type ExecutorWaitResult as f6, type NodeExecutor as f7, complete as f8, error as f9, parsePath as fA, pathHasManyCardinality as fB, validatePath as fC, type PathCardinality as fD, type PathSegment as fE, type PathSegmentType as fF, type SchemaResolver as fG, resolveMultiplePaths as fH, resolveSingleValue as fI, traversePath as fJ, type TraversalOptions as fK, type TraversalResult as fL, type AttributeChange as fM, type HookContext as fN, type HookDefinition as fO, type HookHandler as fP, type HookType as fQ, NoopHookRegistry as fR, type HookRegistry as fS, createMockAdapter as fT, type MockStores as fU, defaultPolicyRegistry as fV, PolicyRegistry as fW, notesPolicy as fX, type AIConversationsRepository as fY, type AIUsageMetricsRepository as fZ, type AIUserMemoryRepository as f_, ExecutorRegistry as fa, success as fb, wait as fc, ConditionExecutor as fd, DocumentExecutor as fe, EndExecutor as ff, FormExecutor as fg, StartExecutor as fh, evaluateFormula as fi, evaluateFormulaAttribute as fj, evaluateFormulaAttributeWithRelations as fk, evaluateFormulaWithRelations as fl, evaluateFormulaWithResult as fm, extractFormulaVariables as fn, extractRelationNames as fo, extractRelationReferences as fp, flattenRelationsForEval as fq, formatFormulaResult as fr, hasRelationReferences as fs, validateFormulaExpression as ft, type FormulaResult as fu, getPathDepth as fv, getRelationPath as fw, getTargetAttributeName as fx, InvalidPathError as fy, MaxDepthExceededError as fz, type SortRule as g, computeLabel as g$, type AuditRepository as g0, type DocumentGenerationTemplateListOptions as g1, type DocumentGenerationTemplatesRepository as g2, type DocumentJobsRepository as g3, type DocumentSlotsRepository as g4, type DocumentsRepository as g5, type DocumentTemplatesRepository as g6, type FilesRepository as g7, type ObjectRecordsRepository as g8, type ObjectsRepository as g9, type RelationOptionsResponse as gA, type GetRelationOptionsParams as gB, type RelationServiceOptions as gC, type ResolveIdsBatchRequest as gD, type ResolveIdsBatchResponse as gE, RelationService as gF, type MultiRelationValue as gG, type SingleRelationValue as gH, type HybridRelationValue as gI, RelationPropertiesService as gJ, RecordResolverService as gK, type ResolvedRelations as gL, type FormulaResolverServiceOptions as gM, FormulaResolverService as gN, type RollupResult as gO, type RollupServiceOptions as gP, RollupService as gQ, type RollupSchedulerOptions as gR, RollupScheduler as gS, applyDefaultValues as gT, checkPermission as gU, getPolicy as gV, buildPolicyContext as gW, checkRecordAccess as gX, checkRecordModifyOrThrow as gY, checkRecordDeleteOrThrow as gZ, checkSharedObjectWriteAccess as g_, type PermissionsRepository as ga, type UserProfilesRepository as gb, type ViewsRepository as gc, type WorkflowAccessGrantsRepository as gd, type WorkflowInstancesRepository as ge, type WorkflowInvitationsRepository as gf, type WorkflowsRepository as gg, BaseService as gh, BaseRepository as gi, type SchemaContextAware as gj, SchemaContextAwareRepository as gk, type CreateCustomObjectInput as gl, type AddAttributeInput as gm, type UpdateObjectInput as gn, type ObjectSchemaServiceOptions as go, ObjectSchemaService as gp, type RecordServiceOptions as gq, RecordService as gr, type RecordQueryServiceOptions as gs, type QueryOptions as gt, type SearchQueryOptions as gu, type QueryResult as gv, RecordQueryService as gw, type RelationValidationResult as gx, type RelationValidationError as gy, type RelationOption as gz, type DirectTableTab as h, type CreateViewInput as h$, type LabelResolver as h0, enrichWithFormulas as h1, enrichRecordsWithFormulas as h2, createContextForCreate as h3, createContextForUpdate as h4, createContextForDelete as h5, createContextForRestore as h6, recalculateParentRollups as h7, type RollupCascadeContext as h8, type DocumentProcessingHookOptions as h9, type UserProfileServiceOptions as hA, UserProfileService as hB, AuditService as hC, buildAuditChanges as hD, DocumentGenerationTemplateNotFoundError as hE, DocumentGenerationNotConfiguredError as hF, DocumentGenerationService as hG, type DocumentProcessingConfig as hH, DocumentProcessingService as hI, type RenderDocumentInput as hJ, type DocumentRendererOptions as hK, type RenderDocumentResult as hL, DocumentRenderError as hM, StorageDownloadNotSupportedError as hN, DocumentRendererService as hO, DocumentTemplateService as hP, type RecordDocumentsResult as hQ, type CreateRecordDocumentInput as hR, type CreateRecordDocumentResult as hS, type DocumentServiceOptions as hT, DocumentService as hU, type FileServiceOptions as hV, FileService as hW, GeocodingService as hX, GlobalSearchService as hY, type PermissionServiceOptions as hZ, PermissionService as h_, DocumentProcessingHook as ha, GrantNotFoundError as hb, GrantExpiredError as hc, GrantRevokedError as hd, TokenRevokedError as he, type GrantServiceConfig as hf, type CreateGrantResult as hg, WorkflowAccessGrantService as hh, type StartWorkflowInput as hi, type ResumeWorkflowInput as hj, type WorkflowInstanceServiceOptions as hk, WorkflowInstanceService as hl, type InvitationServiceConfig as hm, InvitationNotFoundError as hn, InvitationExpiredError as ho, InvitationAlreadyAcceptedError as hp, InvitationRevokedError as hq, WorkflowInvitationService as hr, WorkflowRelationService as hs, type CreateWorkflowInput as ht, type UpdateWorkflowInput as hu, type WorkflowServiceOptions as hv, WorkflowService as hw, type UserValidationResult as hx, type UserValidationError as hy, UserService as hz, type WorkflowConfig as i, type ViewSyncResult as i$, type UpdateViewInput as i0, type GetViewsOptions as i1, type GetViewOptions as i2, ViewService as i3, type FileContent as i4, type StorageUploadInput as i5, type StorageUploadResult as i6, type SignedUrlOptions as i7, type StorageAdapter as i8, type UploadFileInput as i9, type UpsertDBAttribute as iA, type CreateObjectRecord as iB, type ListOptions as iC, type SearchOptions as iD, type GlobalSearchOptions as iE, type GlobalSearchResultItem as iF, type FileListOptions as iG, type DBView as iH, type CreateDBView as iI, type UpdateDBView as iJ, type UpsertDBView as iK, type DBViewOverlay as iL, type CreateDBViewOverlay as iM, type UpdateDBViewOverlay as iN, type DBWorkflow as iO, type CreateDBWorkflow as iP, type UpdateDBWorkflow as iQ, type DBWorkflowInstance as iR, type CreateDBWorkflowInstance as iS, type UpdateDBWorkflowInstance as iT, type DBWorkflowInvitation as iU, type CreateDBWorkflowInvitation as iV, type UpdateDBWorkflowInvitation as iW, type DBWorkflowAccessGrant as iX, type CreateDBWorkflowAccessGrant as iY, type UpdateDBWorkflowAccessGrant as iZ, type OperationResult as i_, type SyncResult as ia, type SyncOptions as ib, syncNativeObjects as ic, verifyNativeObjectsSync as id, getSyncPreview as ie, type FullSyncResult as ig, type FullSyncOptions as ih, syncAll as ii, DEFAULT_LABEL_FALLBACK as ij, renderLabelExpression as ik, isLabelExpression as il, extractAttributeNames as im, enrichValuesForDisplay as io, enrichValuesWithSelectLabels as ip, extractRelationIds as iq, type RelationLabelResolver as ir, computeLabelWithRelations as is, type DBObject as it, type CreateDBObject as iu, type UpdateDBObject as iv, type UpsertDBObject as iw, type DBAttribute as ix, type CreateDBAttribute as iy, type UpdateDBAttribute as iz, type SlotMode as j, type ViewSyncLogger as j0, type ViewSyncOptions as j1, seedRegistryViews as j2, syncNativeViews as j3, verifyRegistryViewsSeeded as j4, verifyNativeViewsSync as j5, getViewSeedPreview as j6, getViewSyncPreview as j7, type ConditionRule as k, type WorkflowNode as l, type WorkflowDefinition as m, type FlowRow as n, type ViewDefinition as o, type DocumentTemplate as p, type OcrAdapter as q, type OcrInput as r, type OcrOptions as s, type OcrResult as t, type OcrPage as u, type OcrTextBlock as v, type SignatureAdapter as w, type CreateSignatureInput as x, type SignerRequest as y, type SignaturePosition as z };
|
package/dist/runtime.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { fY as AIConversationsRepository, fZ as AIUsageMetricsRepository, f_ as AIUserMemoryRepository, gm as AddAttributeInput, fM as AttributeChange, f$ as AttributesRepository, g0 as AuditRepository, hC as AuditService, gi as BaseRepository, gh as BaseService, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, fd as ConditionExecutor, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iI as CreateDBView, iM as CreateDBViewOverlay, iP as CreateDBWorkflow, iY as CreateDBWorkflowAccessGrant, iS as CreateDBWorkflowInstance, iV as CreateDBWorkflowInvitation, hg as CreateGrantResult, iB as CreateObjectRecord, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, h$ as CreateViewInput, ht as CreateWorkflowInput, ix as DBAttribute, it as DBObject, iH as DBView, iL as DBViewOverlay, iO as DBWorkflow, iX as DBWorkflowAccessGrant, iR as DBWorkflowInstance, iU as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, e1 as DatabaseAdapter, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, g4 as DocumentSlotsRepository, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, ff as EndExecutor, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, i4 as FileContent, iG as FileListOptions, hW as FileService, hV as FileServiceOptions, g7 as FilesRepository, fg as FormExecutor, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iE as GlobalSearchOptions, iF as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, f7 as NodeExecutor, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, i_ as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, hQ as RecordDocumentsResult, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, en as ShortcutOperator, i7 as SignedUrlOptions, gH as SingleRelationValue, fh as StartExecutor, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, e_ as TenantContext, eC as TenantContextError, he as TokenRevokedError, fK as TraversalOptions, fL as TraversalResult, iz as UpdateDBAttribute, iv as UpdateDBObject, iJ as UpdateDBView, iN as UpdateDBViewOverlay, iQ as UpdateDBWorkflow, iZ as UpdateDBWorkflowAccessGrant, iT as UpdateDBWorkflowInstance, iW as UpdateDBWorkflowInvitation, gn as UpdateObjectInput, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iK as UpsertDBView, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, hz as UserService, hy as UserValidationError, hx as UserValidationResult, dZ as ViewOverlaysRepository, i3 as ViewService, j0 as ViewSyncLogger, j1 as ViewSyncOptions, i$ as ViewSyncResult, gc as ViewsRepository, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, e5 as WorkflowAccessPayload, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, gg as WorkflowsRepository, eM as addSchemaToContext, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, fT as createMockAdapter, eu as createQueryBuilder, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, eU as getContext, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j6 as getViewSeedPreview, j7 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, eH as isFeatureEnabled, il as isLabelExpression, fX as notesPolicy, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j2 as seedRegistryViews, fb as success, ii as syncAll, ic as syncNativeObjects, j3 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j5 as verifyNativeViewsSync, j4 as verifyRegistryViewsSeeded, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-Chz-bTNq.mjs';
|
|
2
|
+
export { ah as CompletionStatus } from './validators-BIAmz0CD.mjs';
|
|
3
3
|
import '@stndrds/constants';
|
|
4
4
|
import './utils.mjs';
|
|
5
5
|
import 'jose';
|
package/dist/runtime.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { fY as AIConversationsRepository, fZ as AIUsageMetricsRepository, f_ as AIUserMemoryRepository, gm as AddAttributeInput, fM as AttributeChange, f$ as AttributesRepository, g0 as AuditRepository, hC as AuditService, gi as BaseRepository, gh as BaseService, ea as CacheAdapter, e8 as CacheKeyType, eb as CacheOptions, fd as ConditionExecutor, gl as CreateCustomObjectInput, iy as CreateDBAttribute, iu as CreateDBObject, iI as CreateDBView, iM as CreateDBViewOverlay, iP as CreateDBWorkflow, iY as CreateDBWorkflowAccessGrant, iS as CreateDBWorkflowInstance, iV as CreateDBWorkflowInvitation, hg as CreateGrantResult, iB as CreateObjectRecord, hR as CreateRecordDocumentInput, hS as CreateRecordDocumentResult, h$ as CreateViewInput, ht as CreateWorkflowInput, ix as DBAttribute, it as DBObject, iH as DBView, iL as DBViewOverlay, iO as DBWorkflow, iX as DBWorkflowAccessGrant, iR as DBWorkflowInstance, iU as DBWorkflowInvitation, ij as DEFAULT_LABEL_FALLBACK, e1 as DatabaseAdapter, fe as DocumentExecutor, hF as DocumentGenerationNotConfiguredError, hG as DocumentGenerationService, g1 as DocumentGenerationTemplateListOptions, hE as DocumentGenerationTemplateNotFoundError, g2 as DocumentGenerationTemplatesRepository, g3 as DocumentJobsRepository, hH as DocumentProcessingConfig, ha as DocumentProcessingHook, h9 as DocumentProcessingHookOptions, hI as DocumentProcessingService, hM as DocumentRenderError, hK as DocumentRendererOptions, hO as DocumentRendererService, hU as DocumentService, hT as DocumentServiceOptions, g4 as DocumentSlotsRepository, hP as DocumentTemplateService, g6 as DocumentTemplatesRepository, g5 as DocumentsRepository, ff as EndExecutor, ex as EvaluationResult, ey as EvaluationTrace, f1 as ExecutorCompleteResult, f2 as ExecutorContext, f3 as ExecutorErrorResult, fa as ExecutorRegistry, f4 as ExecutorResult, f5 as ExecutorSuccessResult, f6 as ExecutorWaitResult, eL as FeatureFlagsContext, eD as FeatureFlagsContextError, eg as FetchResult, i4 as FileContent, iG as FileListOptions, hW as FileService, hV as FileServiceOptions, g7 as FilesRepository, fg as FormExecutor, eh as FormattedRecord, gN as FormulaResolverService, gM as FormulaResolverServiceOptions, fu as FormulaResult, ih as FullSyncOptions, ig as FullSyncResult, bA as GeocodingAdapter, bx as GeocodingAutocompleteParams, bz as GeocodingParams, hX as GeocodingService, bw as GeocodingSuggestion, gB as GetRelationOptionsParams, i2 as GetViewOptions, i1 as GetViewsOptions, iE as GlobalSearchOptions, iF as GlobalSearchResultItem, hY as GlobalSearchService, hc as GrantExpiredError, hb as GrantNotFoundError, hd as GrantRevokedError, hf as GrantServiceConfig, ei as GroupedFetchResult, fN as HookContext, fO as HookDefinition, fP as HookHandler, fS as HookRegistry, fQ as HookType, gI as HybridRelationValue, ej as InsertOptions, fy as InvalidPathError, hp as InvitationAlreadyAcceptedError, ho as InvitationExpiredError, hn as InvitationNotFoundError, hq as InvitationRevokedError, hm as InvitationServiceConfig, e3 as JwtVerificationResult, h0 as LabelResolver, iC as ListOptions, e4 as MagicLinkPayload, fz as MaxDepthExceededError, fU as MockStores, gG as MultiRelationValue, f7 as NodeExecutor, ef as NoopCacheAdapter, bB as NoopGeocodingAdapter, fR as NoopHookRegistry, g8 as ObjectRecordsRepository, gp as ObjectSchemaService, go as ObjectSchemaServiceOptions, g9 as ObjectsRepository, i_ as OperationResult, fD as PathCardinality, fE as PathSegment, fF as PathSegmentType, h_ as PermissionService, hZ as PermissionServiceOptions, ga as PermissionsRepository, c8 as PolicyContext, fW as PolicyRegistry, ca as PolicyViolationError, ev as QueryBuilder, ew as QueryBuilderOptions, ek as QueryBuilderState, er as QueryMultipleResultsError, es as QueryNoResultError, gt as QueryOptions, gv as QueryResult, hQ as RecordDocumentsResult, c9 as RecordPolicy, gw as RecordQueryService, gs as RecordQueryServiceOptions, gK as RecordResolverService, gr as RecordService, gq as RecordServiceOptions, el as RegistryMap, em as RegistryObjectNames, d_ as RelationAttributeInput, d$ as RelationAttributeRow, e0 as RelationAttributesRepository, ir as RelationLabelResolver, gz as RelationOption, gA as RelationOptionsResponse, gJ as RelationPropertiesService, gF as RelationService, gC as RelationServiceOptions, gy as RelationValidationError, gx as RelationValidationResult, hJ as RenderDocumentInput, hL as RenderDocumentResult, gD as ResolveIdsBatchRequest, gE as ResolveIdsBatchResponse, gL as ResolvedRelations, hj as ResumeWorkflowInput, by as ReverseGeocodingParams, h8 as RollupCascadeContext, gO as RollupResult, gS as RollupScheduler, gR as RollupSchedulerOptions, gQ as RollupService, gP as RollupServiceOptions, et as SHORTCUT_TO_FILTER_OPERATOR, eT as SchemaContext, gj as SchemaContextAware, gk as SchemaContextAwareRepository, fG as SchemaResolver, iD as SearchOptions, gu as SearchQueryOptions, en as ShortcutOperator, i7 as SignedUrlOptions, gH as SingleRelationValue, fh as StartExecutor, hi as StartWorkflowInput, i8 as StorageAdapter, hN as StorageDownloadNotSupportedError, i5 as StorageUploadInput, i6 as StorageUploadResult, ib as SyncOptions, ia as SyncResult, e_ as TenantContext, eC as TenantContextError, he as TokenRevokedError, fK as TraversalOptions, fL as TraversalResult, iz as UpdateDBAttribute, iv as UpdateDBObject, iJ as UpdateDBView, iN as UpdateDBViewOverlay, iQ as UpdateDBWorkflow, iZ as UpdateDBWorkflowAccessGrant, iT as UpdateDBWorkflowInstance, iW as UpdateDBWorkflowInvitation, gn as UpdateObjectInput, i0 as UpdateViewInput, hu as UpdateWorkflowInput, i9 as UploadFileInput, iA as UpsertDBAttribute, iw as UpsertDBObject, iK as UpsertDBView, hB as UserProfileService, hA as UserProfileServiceOptions, gb as UserProfilesRepository, hz as UserService, hy as UserValidationError, hx as UserValidationResult, dZ as ViewOverlaysRepository, i3 as ViewService, j0 as ViewSyncLogger, j1 as ViewSyncOptions, i$ as ViewSyncResult, gc as ViewsRepository, hh as WorkflowAccessGrantService, gd as WorkflowAccessGrantsRepository, e5 as WorkflowAccessPayload, hl as WorkflowInstanceService, hk as WorkflowInstanceServiceOptions, ge as WorkflowInstancesRepository, hr as WorkflowInvitationService, gf as WorkflowInvitationsRepository, e6 as WorkflowJwtConfig, e7 as WorkflowJwtPayload, e2 as WorkflowJwtService, hs as WorkflowRelationService, hw as WorkflowService, hv as WorkflowServiceOptions, gg as WorkflowsRepository, eM as addSchemaToContext, gT as applyDefaultValues, hD as buildAuditChanges, gW as buildPolicyContext, ec as cacheKeys, ed as cacheTtl, gU as checkPermission, gX as checkRecordAccess, gZ as checkRecordDeleteOrThrow, gY as checkRecordModifyOrThrow, g_ as checkSharedObjectWriteAccess, f8 as complete, g$ as computeLabel, is as computeLabelWithRelations, h3 as createContextForCreate, h5 as createContextForDelete, h6 as createContextForRestore, h4 as createContextForUpdate, e$ as createDefaultExecutorRegistry, eo as createDefaultState, fT as createMockAdapter, eu as createQueryBuilder, fV as defaultPolicyRegistry, ee as defaultTtl, h2 as enrichRecordsWithFormulas, io as enrichValuesForDisplay, ip as enrichValuesWithSelectLabels, h1 as enrichWithFormulas, f9 as error, eA as evaluate, ez as evaluateCondition, fi as evaluateFormula, fj as evaluateFormulaAttribute, fk as evaluateFormulaAttributeWithRelations, fl as evaluateFormulaWithRelations, fm as evaluateFormulaWithResult, eB as evaluateWithTrace, im as extractAttributeNames, fn as extractFormulaVariables, iq as extractRelationIds, fo as extractRelationNames, fp as extractRelationReferences, fq as flattenRelationsForEval, fr as formatFormulaResult, ep as formatRecord, eq as formatRecords, eU as getContext, f0 as getDefaultExecutorRegistry, eE as getFeatureFlags, eF as getFeatureValue, fv as getPathDepth, gV as getPolicy, fw as getRelationPath, eN as getSchemaByNameFromContext, eO as getSchemaContext, eP as getSchemaFromContext, ie as getSyncPreview, fx as getTargetAttributeName, eV as getTenantId, eW as getUserId, j6 as getViewSeedPreview, j7 as getViewSyncPreview, eX as hasContext, eG as hasFeatureFlagsContext, fs as hasRelationReferences, eQ as hasSchemaContext, e9 as hashOptions, eH as isFeatureEnabled, il as isLabelExpression, fX as notesPolicy, fA as parsePath, fB as pathHasManyCardinality, h7 as recalculateParentRollups, ik as renderLabelExpression, fH as resolveMultiplePaths, fI as resolveSingleValue, eY as runWithContext, eI as runWithFeatureFlags, eR as runWithMergedSchemaContext, eS as runWithSchemaContext, j2 as seedRegistryViews, fb as success, ii as syncAll, ic as syncNativeObjects, j3 as syncNativeViews, fJ as traversePath, eJ as tryGetFeatureValue, ft as validateFormulaExpression, fC as validatePath, id as verifyNativeObjectsSync, j5 as verifyNativeViewsSync, j4 as verifyRegistryViewsSeeded, fc as wait, eK as withFeatureFlags, eZ as withTenantContext } from './runtime-BRkoIwsC.js';
|
|
2
|
+
export { ah as CompletionStatus } from './validators-BPIB7Miq.js';
|
|
3
3
|
import '@stndrds/constants';
|
|
4
4
|
import './utils.js';
|
|
5
5
|
import 'jose';
|
package/dist/runtime.js
CHANGED
|
@@ -157,7 +157,8 @@
|
|
|
157
157
|
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
|
|
160
|
+
|
|
161
|
+
var _chunkDCTLP3ZDjs = require('./chunk-DCTLP3ZD.js');
|
|
161
162
|
require('./chunk-NEVERCM3.js');
|
|
162
163
|
require('./chunk-U4AB53AM.js');
|
|
163
164
|
require('./chunk-3RG5ZIWI.js');
|
|
@@ -320,4 +321,5 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
320
321
|
|
|
321
322
|
|
|
322
323
|
|
|
323
|
-
exports.AuditService = _chunk2OS63USQjs.AuditService; exports.BaseRepository = _chunk2OS63USQjs.BaseRepository; exports.BaseService = _chunk2OS63USQjs.BaseService; exports.ConditionExecutor = _chunk2OS63USQjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunk2OS63USQjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunk2OS63USQjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk2OS63USQjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk2OS63USQjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk2OS63USQjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunk2OS63USQjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk2OS63USQjs.DocumentProcessingService; exports.DocumentRenderError = _chunk2OS63USQjs.DocumentRenderError; exports.DocumentRendererService = _chunk2OS63USQjs.DocumentRendererService; exports.DocumentService = _chunk2OS63USQjs.DocumentService; exports.DocumentTemplateService = _chunk2OS63USQjs.DocumentTemplateService; exports.EndExecutor = _chunk2OS63USQjs.EndExecutor; exports.ExecutorRegistry = _chunk2OS63USQjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunk2OS63USQjs.FeatureFlagsContextError; exports.FileService = _chunk2OS63USQjs.FileService; exports.FormExecutor = _chunk2OS63USQjs.FormExecutor; exports.FormulaResolverService = _chunk2OS63USQjs.FormulaResolverService; exports.GeocodingService = _chunk2OS63USQjs.GeocodingService; exports.GlobalSearchService = _chunk2OS63USQjs.GlobalSearchService; exports.GrantExpiredError = _chunk2OS63USQjs.GrantExpiredError; exports.GrantNotFoundError = _chunk2OS63USQjs.GrantNotFoundError; exports.GrantRevokedError = _chunk2OS63USQjs.GrantRevokedError; exports.InvalidPathError = _chunk2OS63USQjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk2OS63USQjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk2OS63USQjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk2OS63USQjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk2OS63USQjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunk2OS63USQjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunk2OS63USQjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk2OS63USQjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk2OS63USQjs.NoopHookRegistry; exports.ObjectSchemaService = _chunk2OS63USQjs.ObjectSchemaService; exports.PermissionService = _chunk2OS63USQjs.PermissionService; exports.PolicyRegistry = _chunk2OS63USQjs.PolicyRegistry; exports.PolicyViolationError = _chunk2OS63USQjs.PolicyViolationError; exports.QueryBuilder = _chunk2OS63USQjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk2OS63USQjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk2OS63USQjs.QueryNoResultError; exports.RecordQueryService = _chunk2OS63USQjs.RecordQueryService; exports.RecordResolverService = _chunk2OS63USQjs.RecordResolverService; exports.RecordService = _chunk2OS63USQjs.RecordService; exports.RelationService = _chunk2OS63USQjs.RelationService; exports.RollupScheduler = _chunk2OS63USQjs.RollupScheduler; exports.RollupService = _chunk2OS63USQjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk2OS63USQjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunk2OS63USQjs.SchemaContextAwareRepository; exports.StartExecutor = _chunk2OS63USQjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunk2OS63USQjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunk2OS63USQjs.TenantContextError; exports.TokenRevokedError = _chunk2OS63USQjs.TokenRevokedError; exports.UserProfileService = _chunk2OS63USQjs.UserProfileService; exports.UserService = _chunk2OS63USQjs.UserService; exports.ViewService = _chunk2OS63USQjs.ViewService; exports.WorkflowAccessGrantService = _chunk2OS63USQjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunk2OS63USQjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk2OS63USQjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk2OS63USQjs.WorkflowJwtService; exports.WorkflowRelationService = _chunk2OS63USQjs.WorkflowRelationService; exports.WorkflowService = _chunk2OS63USQjs.WorkflowService; exports.addSchemaToContext = _chunk2OS63USQjs.addSchemaToContext; exports.applyDefaultValues = _chunk2OS63USQjs.applyDefaultValues; exports.buildAuditChanges = _chunk2OS63USQjs.buildAuditChanges; exports.buildPolicyContext = _chunk2OS63USQjs.buildPolicyContext; exports.cacheKeys = _chunk2OS63USQjs.cacheKeys; exports.cacheTtl = _chunk2OS63USQjs.cacheTtl; exports.checkPermission = _chunk2OS63USQjs.checkPermission; exports.checkRecordAccess = _chunk2OS63USQjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk2OS63USQjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk2OS63USQjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk2OS63USQjs.checkSharedObjectWriteAccess; exports.complete = _chunk2OS63USQjs.complete; exports.computeLabel = _chunk2OS63USQjs.computeLabel; exports.computeLabelWithRelations = _chunk2OS63USQjs.computeLabelWithRelations; exports.createContextForCreate = _chunk2OS63USQjs.createContextForCreate; exports.createContextForDelete = _chunk2OS63USQjs.createContextForDelete; exports.createContextForRestore = _chunk2OS63USQjs.createContextForRestore; exports.createContextForUpdate = _chunk2OS63USQjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunk2OS63USQjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk2OS63USQjs.createDefaultState; exports.createMockAdapter = _chunk2OS63USQjs.createMockAdapter; exports.createQueryBuilder = _chunk2OS63USQjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunk2OS63USQjs.defaultPolicyRegistry; exports.defaultTtl = _chunk2OS63USQjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunk2OS63USQjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk2OS63USQjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk2OS63USQjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk2OS63USQjs.enrichWithFormulas; exports.error = _chunk2OS63USQjs.error; exports.evaluate = _chunk2OS63USQjs.evaluate; exports.evaluateCondition = _chunk2OS63USQjs.evaluateCondition; exports.evaluateFormula = _chunk2OS63USQjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk2OS63USQjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk2OS63USQjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk2OS63USQjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk2OS63USQjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk2OS63USQjs.evaluateWithTrace; exports.extractAttributeNames = _chunk2OS63USQjs.extractAttributeNames; exports.extractFormulaVariables = _chunk2OS63USQjs.extractFormulaVariables; exports.extractRelationIds = _chunk2OS63USQjs.extractRelationIds; exports.extractRelationNames = _chunk2OS63USQjs.extractRelationNames; exports.extractRelationReferences = _chunk2OS63USQjs.extractRelationReferences; exports.flattenRelationsForEval = _chunk2OS63USQjs.flattenRelationsForEval; exports.formatFormulaResult = _chunk2OS63USQjs.formatFormulaResult; exports.formatRecord = _chunk2OS63USQjs.formatRecord; exports.formatRecords = _chunk2OS63USQjs.formatRecords; exports.getContext = _chunk2OS63USQjs.getContext; exports.getDefaultExecutorRegistry = _chunk2OS63USQjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunk2OS63USQjs.getFeatureFlags; exports.getFeatureValue = _chunk2OS63USQjs.getFeatureValue; exports.getPathDepth = _chunk2OS63USQjs.getPathDepth; exports.getPolicy = _chunk2OS63USQjs.getPolicy; exports.getRelationPath = _chunk2OS63USQjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk2OS63USQjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk2OS63USQjs.getSchemaContext; exports.getSchemaFromContext = _chunk2OS63USQjs.getSchemaFromContext; exports.getSyncPreview = _chunk2OS63USQjs.getSyncPreview; exports.getTargetAttributeName = _chunk2OS63USQjs.getTargetAttributeName; exports.getTenantId = _chunk2OS63USQjs.getTenantId; exports.getUserId = _chunk2OS63USQjs.getUserId; exports.getViewSeedPreview = _chunk2OS63USQjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk2OS63USQjs.getViewSyncPreview; exports.hasContext = _chunk2OS63USQjs.hasContext; exports.hasFeatureFlagsContext = _chunk2OS63USQjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunk2OS63USQjs.hasRelationReferences; exports.hasSchemaContext = _chunk2OS63USQjs.hasSchemaContext; exports.hashOptions = _chunk2OS63USQjs.hashOptions; exports.isFeatureEnabled = _chunk2OS63USQjs.isFeatureEnabled; exports.isLabelExpression = _chunk2OS63USQjs.isLabelExpression; exports.notesPolicy = _chunk2OS63USQjs.notesPolicy; exports.parsePath = _chunk2OS63USQjs.parsePath; exports.pathHasManyCardinality = _chunk2OS63USQjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunk2OS63USQjs.recalculateParentRollups; exports.renderLabelExpression = _chunk2OS63USQjs.renderLabelExpression; exports.resolveMultiplePaths = _chunk2OS63USQjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk2OS63USQjs.resolveSingleValue; exports.runWithContext = _chunk2OS63USQjs.runWithContext; exports.runWithFeatureFlags = _chunk2OS63USQjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk2OS63USQjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk2OS63USQjs.runWithSchemaContext; exports.seedRegistryViews = _chunk2OS63USQjs.seedRegistryViews; exports.success = _chunk2OS63USQjs.success; exports.syncAll = _chunk2OS63USQjs.syncAll; exports.syncNativeObjects = _chunk2OS63USQjs.syncNativeObjects; exports.syncNativeViews = _chunk2OS63USQjs.syncNativeViews; exports.traversePath = _chunk2OS63USQjs.traversePath; exports.tryGetFeatureValue = _chunk2OS63USQjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunk2OS63USQjs.validateFormulaExpression; exports.validatePath = _chunk2OS63USQjs.validatePath; exports.verifyNativeObjectsSync = _chunk2OS63USQjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk2OS63USQjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk2OS63USQjs.verifyRegistryViewsSeeded; exports.wait = _chunk2OS63USQjs.wait; exports.withFeatureFlags = _chunk2OS63USQjs.withFeatureFlags; exports.withTenantContext = _chunk2OS63USQjs.withTenantContext;
|
|
324
|
+
|
|
325
|
+
exports.AuditService = _chunkDCTLP3ZDjs.AuditService; exports.BaseRepository = _chunkDCTLP3ZDjs.BaseRepository; exports.BaseService = _chunkDCTLP3ZDjs.BaseService; exports.ConditionExecutor = _chunkDCTLP3ZDjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkDCTLP3ZDjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunkDCTLP3ZDjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkDCTLP3ZDjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkDCTLP3ZDjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkDCTLP3ZDjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunkDCTLP3ZDjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkDCTLP3ZDjs.DocumentProcessingService; exports.DocumentRenderError = _chunkDCTLP3ZDjs.DocumentRenderError; exports.DocumentRendererService = _chunkDCTLP3ZDjs.DocumentRendererService; exports.DocumentService = _chunkDCTLP3ZDjs.DocumentService; exports.DocumentTemplateService = _chunkDCTLP3ZDjs.DocumentTemplateService; exports.EndExecutor = _chunkDCTLP3ZDjs.EndExecutor; exports.ExecutorRegistry = _chunkDCTLP3ZDjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkDCTLP3ZDjs.FeatureFlagsContextError; exports.FileService = _chunkDCTLP3ZDjs.FileService; exports.FormExecutor = _chunkDCTLP3ZDjs.FormExecutor; exports.FormulaResolverService = _chunkDCTLP3ZDjs.FormulaResolverService; exports.GeocodingService = _chunkDCTLP3ZDjs.GeocodingService; exports.GlobalSearchService = _chunkDCTLP3ZDjs.GlobalSearchService; exports.GrantExpiredError = _chunkDCTLP3ZDjs.GrantExpiredError; exports.GrantNotFoundError = _chunkDCTLP3ZDjs.GrantNotFoundError; exports.GrantRevokedError = _chunkDCTLP3ZDjs.GrantRevokedError; exports.InvalidPathError = _chunkDCTLP3ZDjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkDCTLP3ZDjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkDCTLP3ZDjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkDCTLP3ZDjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkDCTLP3ZDjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunkDCTLP3ZDjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkDCTLP3ZDjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkDCTLP3ZDjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkDCTLP3ZDjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkDCTLP3ZDjs.ObjectSchemaService; exports.PermissionService = _chunkDCTLP3ZDjs.PermissionService; exports.PolicyRegistry = _chunkDCTLP3ZDjs.PolicyRegistry; exports.PolicyViolationError = _chunkDCTLP3ZDjs.PolicyViolationError; exports.QueryBuilder = _chunkDCTLP3ZDjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkDCTLP3ZDjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkDCTLP3ZDjs.QueryNoResultError; exports.RecordQueryService = _chunkDCTLP3ZDjs.RecordQueryService; exports.RecordResolverService = _chunkDCTLP3ZDjs.RecordResolverService; exports.RecordService = _chunkDCTLP3ZDjs.RecordService; exports.RelationPropertiesService = _chunkDCTLP3ZDjs.RelationPropertiesService; exports.RelationService = _chunkDCTLP3ZDjs.RelationService; exports.RollupScheduler = _chunkDCTLP3ZDjs.RollupScheduler; exports.RollupService = _chunkDCTLP3ZDjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkDCTLP3ZDjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunkDCTLP3ZDjs.SchemaContextAwareRepository; exports.StartExecutor = _chunkDCTLP3ZDjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunkDCTLP3ZDjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunkDCTLP3ZDjs.TenantContextError; exports.TokenRevokedError = _chunkDCTLP3ZDjs.TokenRevokedError; exports.UserProfileService = _chunkDCTLP3ZDjs.UserProfileService; exports.UserService = _chunkDCTLP3ZDjs.UserService; exports.ViewService = _chunkDCTLP3ZDjs.ViewService; exports.WorkflowAccessGrantService = _chunkDCTLP3ZDjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkDCTLP3ZDjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkDCTLP3ZDjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkDCTLP3ZDjs.WorkflowJwtService; exports.WorkflowRelationService = _chunkDCTLP3ZDjs.WorkflowRelationService; exports.WorkflowService = _chunkDCTLP3ZDjs.WorkflowService; exports.addSchemaToContext = _chunkDCTLP3ZDjs.addSchemaToContext; exports.applyDefaultValues = _chunkDCTLP3ZDjs.applyDefaultValues; exports.buildAuditChanges = _chunkDCTLP3ZDjs.buildAuditChanges; exports.buildPolicyContext = _chunkDCTLP3ZDjs.buildPolicyContext; exports.cacheKeys = _chunkDCTLP3ZDjs.cacheKeys; exports.cacheTtl = _chunkDCTLP3ZDjs.cacheTtl; exports.checkPermission = _chunkDCTLP3ZDjs.checkPermission; exports.checkRecordAccess = _chunkDCTLP3ZDjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkDCTLP3ZDjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkDCTLP3ZDjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkDCTLP3ZDjs.checkSharedObjectWriteAccess; exports.complete = _chunkDCTLP3ZDjs.complete; exports.computeLabel = _chunkDCTLP3ZDjs.computeLabel; exports.computeLabelWithRelations = _chunkDCTLP3ZDjs.computeLabelWithRelations; exports.createContextForCreate = _chunkDCTLP3ZDjs.createContextForCreate; exports.createContextForDelete = _chunkDCTLP3ZDjs.createContextForDelete; exports.createContextForRestore = _chunkDCTLP3ZDjs.createContextForRestore; exports.createContextForUpdate = _chunkDCTLP3ZDjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkDCTLP3ZDjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkDCTLP3ZDjs.createDefaultState; exports.createMockAdapter = _chunkDCTLP3ZDjs.createMockAdapter; exports.createQueryBuilder = _chunkDCTLP3ZDjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkDCTLP3ZDjs.defaultPolicyRegistry; exports.defaultTtl = _chunkDCTLP3ZDjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunkDCTLP3ZDjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkDCTLP3ZDjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkDCTLP3ZDjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkDCTLP3ZDjs.enrichWithFormulas; exports.error = _chunkDCTLP3ZDjs.error; exports.evaluate = _chunkDCTLP3ZDjs.evaluate; exports.evaluateCondition = _chunkDCTLP3ZDjs.evaluateCondition; exports.evaluateFormula = _chunkDCTLP3ZDjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkDCTLP3ZDjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkDCTLP3ZDjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkDCTLP3ZDjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkDCTLP3ZDjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkDCTLP3ZDjs.evaluateWithTrace; exports.extractAttributeNames = _chunkDCTLP3ZDjs.extractAttributeNames; exports.extractFormulaVariables = _chunkDCTLP3ZDjs.extractFormulaVariables; exports.extractRelationIds = _chunkDCTLP3ZDjs.extractRelationIds; exports.extractRelationNames = _chunkDCTLP3ZDjs.extractRelationNames; exports.extractRelationReferences = _chunkDCTLP3ZDjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkDCTLP3ZDjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkDCTLP3ZDjs.formatFormulaResult; exports.formatRecord = _chunkDCTLP3ZDjs.formatRecord; exports.formatRecords = _chunkDCTLP3ZDjs.formatRecords; exports.getContext = _chunkDCTLP3ZDjs.getContext; exports.getDefaultExecutorRegistry = _chunkDCTLP3ZDjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkDCTLP3ZDjs.getFeatureFlags; exports.getFeatureValue = _chunkDCTLP3ZDjs.getFeatureValue; exports.getPathDepth = _chunkDCTLP3ZDjs.getPathDepth; exports.getPolicy = _chunkDCTLP3ZDjs.getPolicy; exports.getRelationPath = _chunkDCTLP3ZDjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkDCTLP3ZDjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkDCTLP3ZDjs.getSchemaContext; exports.getSchemaFromContext = _chunkDCTLP3ZDjs.getSchemaFromContext; exports.getSyncPreview = _chunkDCTLP3ZDjs.getSyncPreview; exports.getTargetAttributeName = _chunkDCTLP3ZDjs.getTargetAttributeName; exports.getTenantId = _chunkDCTLP3ZDjs.getTenantId; exports.getUserId = _chunkDCTLP3ZDjs.getUserId; exports.getViewSeedPreview = _chunkDCTLP3ZDjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkDCTLP3ZDjs.getViewSyncPreview; exports.hasContext = _chunkDCTLP3ZDjs.hasContext; exports.hasFeatureFlagsContext = _chunkDCTLP3ZDjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkDCTLP3ZDjs.hasRelationReferences; exports.hasSchemaContext = _chunkDCTLP3ZDjs.hasSchemaContext; exports.hashOptions = _chunkDCTLP3ZDjs.hashOptions; exports.isFeatureEnabled = _chunkDCTLP3ZDjs.isFeatureEnabled; exports.isLabelExpression = _chunkDCTLP3ZDjs.isLabelExpression; exports.notesPolicy = _chunkDCTLP3ZDjs.notesPolicy; exports.parsePath = _chunkDCTLP3ZDjs.parsePath; exports.pathHasManyCardinality = _chunkDCTLP3ZDjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunkDCTLP3ZDjs.recalculateParentRollups; exports.renderLabelExpression = _chunkDCTLP3ZDjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkDCTLP3ZDjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkDCTLP3ZDjs.resolveSingleValue; exports.runWithContext = _chunkDCTLP3ZDjs.runWithContext; exports.runWithFeatureFlags = _chunkDCTLP3ZDjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkDCTLP3ZDjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkDCTLP3ZDjs.runWithSchemaContext; exports.seedRegistryViews = _chunkDCTLP3ZDjs.seedRegistryViews; exports.success = _chunkDCTLP3ZDjs.success; exports.syncAll = _chunkDCTLP3ZDjs.syncAll; exports.syncNativeObjects = _chunkDCTLP3ZDjs.syncNativeObjects; exports.syncNativeViews = _chunkDCTLP3ZDjs.syncNativeViews; exports.traversePath = _chunkDCTLP3ZDjs.traversePath; exports.tryGetFeatureValue = _chunkDCTLP3ZDjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunkDCTLP3ZDjs.validateFormulaExpression; exports.validatePath = _chunkDCTLP3ZDjs.validatePath; exports.verifyNativeObjectsSync = _chunkDCTLP3ZDjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkDCTLP3ZDjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkDCTLP3ZDjs.verifyRegistryViewsSeeded; exports.wait = _chunkDCTLP3ZDjs.wait; exports.withFeatureFlags = _chunkDCTLP3ZDjs.withFeatureFlags; exports.withTenantContext = _chunkDCTLP3ZDjs.withTenantContext;
|
package/dist/runtime.mjs
CHANGED
|
@@ -44,6 +44,7 @@ import {
|
|
|
44
44
|
RecordQueryService,
|
|
45
45
|
RecordResolverService,
|
|
46
46
|
RecordService,
|
|
47
|
+
RelationPropertiesService,
|
|
47
48
|
RelationService,
|
|
48
49
|
RollupScheduler,
|
|
49
50
|
RollupService,
|
|
@@ -157,7 +158,7 @@ import {
|
|
|
157
158
|
wait,
|
|
158
159
|
withFeatureFlags,
|
|
159
160
|
withTenantContext
|
|
160
|
-
} from "./chunk-
|
|
161
|
+
} from "./chunk-O7FGYLYG.mjs";
|
|
161
162
|
import "./chunk-V2RPPE2Y.mjs";
|
|
162
163
|
import "./chunk-SV4BCGQU.mjs";
|
|
163
164
|
import "./chunk-Y6FXYEAI.mjs";
|
|
@@ -207,6 +208,7 @@ export {
|
|
|
207
208
|
RecordQueryService,
|
|
208
209
|
RecordResolverService,
|
|
209
210
|
RecordService,
|
|
211
|
+
RelationPropertiesService,
|
|
210
212
|
RelationService,
|
|
211
213
|
RollupScheduler,
|
|
212
214
|
RollupService,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import 'zod';
|
|
2
|
-
export {
|
|
2
|
+
export { ao as DEFAULT_VALIDATION_MESSAGES, an as ValidationMessages, b8 as ValidationResult, aI as attributeConfigSchemas, at as checkboxConfigSchema, bh as computeRecordStatus, b5 as createAttributeValidator, aP as createCheckboxValidator, aS as createCurrencyValidator, aQ as createDateValidator, bc as createDraftValidator, aX as createFileValidator, b6 as createFormAttributeValidator, b1 as createFormulaValidator, aW as createLocationValidator, a_ as createMultiRelationValidator, aV as createMultiselectValidator, aO as createNumberValidator, b7 as createObjectValidator, aR as createPhoneValidator, b0 as createRatingValidator, a$ as createRelationValidator, b4 as createRichtextValidator, b2 as createRollupValidator, aU as createSelectValidator, aZ as createSingleRelationValidator, aT as createStatusValidator, b3 as createTextAreaValidator, aN as createTextValidator, aY as createUserValidator, aw as currencyConfigSchema, au as dateConfigSchema, aH as documentConfigSchema, aB as fileConfigSchema, am as formatZodErrors, aF as formulaConfigSchema, aJ as getAttributeConfigSchema, bf as getMissingRequiredAttributes, bg as isRecordComplete, ay as locationConfigSchema, aA as multiselectConfigSchema, as as numberConfigSchema, aL as parseAttributeConfig, av as phoneConfigSchema, aE as ratingConfigSchema, aD as relationConfigSchema, ar as richtextConfigSchema, aG as rollupConfigSchema, aM as safeParseAttributeConfig, az as selectConfigSchema, ax as statusConfigSchema, ap as textConfigSchema, aq as textareaConfigSchema, aC as userConfigSchema, b9 as validateAttribute, aK as validateAttributeConfig, bd as validateDraft, be as validateDraftOrThrow, ba as validateObject, bb as validateObjectOrThrow } from '../validators-BIAmz0CD.mjs';
|
|
3
3
|
import '@stndrds/constants';
|
|
4
4
|
import '../utils.mjs';
|