@stndrds/schema 0.1.0-alpha.39 → 0.1.0-alpha.41
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-RYBKW22L.mjs → chunk-4ZUAND4E.mjs} +244 -40
- package/dist/{chunk-OGBGOFRX.js → chunk-6ID63D4M.js} +425 -221
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +24 -6
- package/dist/index.mjs +19 -1
- package/dist/{runtime-B3RCubTj.d.mts → runtime-Vg_IW6IO.d.mts} +218 -44
- package/dist/{runtime-B3RCubTj.d.ts → runtime-Vg_IW6IO.d.ts} +218 -44
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +20 -2
- package/dist/runtime.mjs +19 -1
- package/package.json +2 -2
|
@@ -4825,7 +4825,7 @@ declare function createRichtextValidator(attr: RichtextAttribute, messages?: Val
|
|
|
4825
4825
|
declare function createAttributeValidator(attr: Attribute, messages?: ValidationMessages): z.ZodTypeAny;
|
|
4826
4826
|
/**
|
|
4827
4827
|
* Create a Zod schema for form validation.
|
|
4828
|
-
* -
|
|
4828
|
+
* - Normalizes empty values (empty strings, empty objects) to null for optional fields
|
|
4829
4829
|
* - Accepts custom messages for i18n support
|
|
4830
4830
|
*
|
|
4831
4831
|
* Use this in UI forms where optional fields may have null/undefined values.
|
|
@@ -6491,6 +6491,7 @@ declare const defaultPolicyRegistry: PolicyRegistry;
|
|
|
6491
6491
|
*
|
|
6492
6492
|
* Provides abstract base classes for services and repositories
|
|
6493
6493
|
* that require tenant context from AsyncLocalStorage.
|
|
6494
|
+
* Also provides interfaces for schema context awareness.
|
|
6494
6495
|
*/
|
|
6495
6496
|
|
|
6496
6497
|
/**
|
|
@@ -6579,6 +6580,73 @@ declare abstract class TenantAwareRepository {
|
|
|
6579
6580
|
*/
|
|
6580
6581
|
protected get userId(): UserId | undefined;
|
|
6581
6582
|
}
|
|
6583
|
+
/**
|
|
6584
|
+
* Interface for repositories that can leverage schema context from AsyncLocalStorage.
|
|
6585
|
+
*
|
|
6586
|
+
* This interface follows the Interface Segregation Principle (ISP) -
|
|
6587
|
+
* it's separate from TenantAwareRepository to allow repositories to
|
|
6588
|
+
* opt-in to schema context awareness independently.
|
|
6589
|
+
*
|
|
6590
|
+
* Repositories implementing this interface can access ObjectDefinitions
|
|
6591
|
+
* (including attributes) from the execution context, avoiding redundant
|
|
6592
|
+
* database queries when the schema was already fetched by a higher-level service.
|
|
6593
|
+
*
|
|
6594
|
+
* @example
|
|
6595
|
+
* ```typescript
|
|
6596
|
+
* export class SupabaseObjectRecordsRepository
|
|
6597
|
+
* extends TenantAwareRepository
|
|
6598
|
+
* implements ObjectRecordsRepository, SchemaContextAware
|
|
6599
|
+
* {
|
|
6600
|
+
* getSchemaFromContext(objectId: string): ObjectDefinition | undefined {
|
|
6601
|
+
* return getSchemaFromContext(objectId);
|
|
6602
|
+
* }
|
|
6603
|
+
*
|
|
6604
|
+
* private async getAttributes(objectId: string): Promise<Attribute[]> {
|
|
6605
|
+
* const schema = this.getSchemaFromContext(objectId);
|
|
6606
|
+
* if (schema) return schema.attributes;
|
|
6607
|
+
* return this.fetchAttributeDefinitions(objectId);
|
|
6608
|
+
* }
|
|
6609
|
+
* }
|
|
6610
|
+
* ```
|
|
6611
|
+
*/
|
|
6612
|
+
interface SchemaContextAware {
|
|
6613
|
+
/**
|
|
6614
|
+
* Get an ObjectDefinition from context by its ID.
|
|
6615
|
+
* Returns undefined if no context is set or schema not found.
|
|
6616
|
+
*/
|
|
6617
|
+
getSchemaFromContext(objectId: string): ObjectDefinition | undefined;
|
|
6618
|
+
/**
|
|
6619
|
+
* Get an ObjectDefinition from context by its name.
|
|
6620
|
+
* Returns undefined if no context is set or schema not found.
|
|
6621
|
+
*/
|
|
6622
|
+
getSchemaByNameFromContext(objectName: string): ObjectDefinition | undefined;
|
|
6623
|
+
}
|
|
6624
|
+
/**
|
|
6625
|
+
* Mixin class that provides schema context awareness.
|
|
6626
|
+
*
|
|
6627
|
+
* Use this as a base class (along with TenantAwareRepository) for repositories
|
|
6628
|
+
* that need to access schema context.
|
|
6629
|
+
*
|
|
6630
|
+
* @example
|
|
6631
|
+
* ```typescript
|
|
6632
|
+
* export class SupabaseObjectRecordsRepository
|
|
6633
|
+
* extends SchemaContextAwareMixin(TenantAwareRepository)
|
|
6634
|
+
* implements ObjectRecordsRepository
|
|
6635
|
+
* {
|
|
6636
|
+
* // getSchemaFromContext and getSchemaByNameFromContext are available
|
|
6637
|
+
* }
|
|
6638
|
+
* ```
|
|
6639
|
+
*/
|
|
6640
|
+
declare abstract class SchemaContextAwareRepository extends TenantAwareRepository {
|
|
6641
|
+
/**
|
|
6642
|
+
* Get an ObjectDefinition from context by its ID.
|
|
6643
|
+
*/
|
|
6644
|
+
protected getSchemaFromContext(objectId: string): ObjectDefinition | undefined;
|
|
6645
|
+
/**
|
|
6646
|
+
* Get an ObjectDefinition from context by its name.
|
|
6647
|
+
*/
|
|
6648
|
+
protected getSchemaByNameFromContext(objectName: string): ObjectDefinition | undefined;
|
|
6649
|
+
}
|
|
6582
6650
|
|
|
6583
6651
|
/**
|
|
6584
6652
|
* Service for audit logging.
|
|
@@ -7751,6 +7819,138 @@ declare class TenantContextError extends Error {
|
|
|
7751
7819
|
constructor(message?: string);
|
|
7752
7820
|
}
|
|
7753
7821
|
|
|
7822
|
+
/**
|
|
7823
|
+
* Schema Context Module
|
|
7824
|
+
*
|
|
7825
|
+
* Provides schema propagation using Node.js AsyncLocalStorage.
|
|
7826
|
+
* This allows repositories to access ObjectDefinition (including attributes)
|
|
7827
|
+
* without redundant database queries when the schema was already fetched
|
|
7828
|
+
* by a higher-level service.
|
|
7829
|
+
*
|
|
7830
|
+
* @example
|
|
7831
|
+
* ```typescript
|
|
7832
|
+
* // In RecordService.listRecords
|
|
7833
|
+
* const schema = await this.schemaService.getObjectSchema(objectId);
|
|
7834
|
+
*
|
|
7835
|
+
* return runWithSchemaContext([schema], async () => {
|
|
7836
|
+
* // ObjectRecordsRepository can now access schema via getSchemaFromContext()
|
|
7837
|
+
* return this.adapter.objectRecords.list(objectId, options);
|
|
7838
|
+
* });
|
|
7839
|
+
* ```
|
|
7840
|
+
*/
|
|
7841
|
+
|
|
7842
|
+
/**
|
|
7843
|
+
* Schema context stored in AsyncLocalStorage.
|
|
7844
|
+
*
|
|
7845
|
+
* Contains bi-directional maps for efficient lookups by both ID and name.
|
|
7846
|
+
* The context is mutable to allow enrichment during execution.
|
|
7847
|
+
*/
|
|
7848
|
+
interface SchemaContext {
|
|
7849
|
+
/** Object definitions indexed by ID */
|
|
7850
|
+
readonly objectsById: Map<string, ObjectDefinition>;
|
|
7851
|
+
/** Object definitions indexed by name */
|
|
7852
|
+
readonly objectsByName: Map<string, ObjectDefinition>;
|
|
7853
|
+
}
|
|
7854
|
+
/**
|
|
7855
|
+
* Get an ObjectDefinition from context by its ID.
|
|
7856
|
+
*
|
|
7857
|
+
* Returns undefined if no context is set or schema not found.
|
|
7858
|
+
* This allows repositories to fallback to database fetch when needed.
|
|
7859
|
+
*
|
|
7860
|
+
* @param objectId - Object UUID
|
|
7861
|
+
* @returns ObjectDefinition or undefined
|
|
7862
|
+
*
|
|
7863
|
+
* @example
|
|
7864
|
+
* ```typescript
|
|
7865
|
+
* const schema = getSchemaFromContext(objectId);
|
|
7866
|
+
* if (schema) {
|
|
7867
|
+
* // Use cached attributes
|
|
7868
|
+
* return schema.attributes;
|
|
7869
|
+
* }
|
|
7870
|
+
* // Fallback to DB fetch
|
|
7871
|
+
* return this.fetchAttributeDefinitions(objectId);
|
|
7872
|
+
* ```
|
|
7873
|
+
*/
|
|
7874
|
+
declare function getSchemaFromContext(objectId: string): ObjectDefinition | undefined;
|
|
7875
|
+
/**
|
|
7876
|
+
* Get an ObjectDefinition from context by its name.
|
|
7877
|
+
*
|
|
7878
|
+
* Returns undefined if no context is set or schema not found.
|
|
7879
|
+
*
|
|
7880
|
+
* @param objectName - Object name (e.g., "products", "contacts")
|
|
7881
|
+
* @returns ObjectDefinition or undefined
|
|
7882
|
+
*/
|
|
7883
|
+
declare function getSchemaByNameFromContext(objectName: string): ObjectDefinition | undefined;
|
|
7884
|
+
/**
|
|
7885
|
+
* Check if a schema context is currently set.
|
|
7886
|
+
*
|
|
7887
|
+
* @returns true if a context is set, false otherwise
|
|
7888
|
+
*/
|
|
7889
|
+
declare function hasSchemaContext(): boolean;
|
|
7890
|
+
/**
|
|
7891
|
+
* Get the current schema context.
|
|
7892
|
+
*
|
|
7893
|
+
* @returns SchemaContext or undefined if not set
|
|
7894
|
+
*/
|
|
7895
|
+
declare function getSchemaContext(): SchemaContext | undefined;
|
|
7896
|
+
/**
|
|
7897
|
+
* Add a schema to the current context.
|
|
7898
|
+
*
|
|
7899
|
+
* This allows enriching the context with additional schemas discovered
|
|
7900
|
+
* during execution (e.g., when RollupService finds related objects).
|
|
7901
|
+
*
|
|
7902
|
+
* No-op if no context is set.
|
|
7903
|
+
*
|
|
7904
|
+
* @param schema - ObjectDefinition to add
|
|
7905
|
+
*
|
|
7906
|
+
* @example
|
|
7907
|
+
* ```typescript
|
|
7908
|
+
* // In RollupService when discovering a related object
|
|
7909
|
+
* const relatedSchema = await this.schemaService.getObjectSchema(relatedId);
|
|
7910
|
+
* addSchemaToContext(relatedSchema);
|
|
7911
|
+
* ```
|
|
7912
|
+
*/
|
|
7913
|
+
declare function addSchemaToContext(schema: ObjectDefinition): void;
|
|
7914
|
+
/**
|
|
7915
|
+
* Execute a function within a schema context.
|
|
7916
|
+
*
|
|
7917
|
+
* The context contains all provided schemas indexed by both ID and name
|
|
7918
|
+
* for efficient lookups.
|
|
7919
|
+
*
|
|
7920
|
+
* Supports both sync and async functions with proper type inference.
|
|
7921
|
+
*
|
|
7922
|
+
* @param schemas - ObjectDefinitions to include in context
|
|
7923
|
+
* @param fn - The function to execute within the context
|
|
7924
|
+
* @returns The return value of the function (or Promise if async)
|
|
7925
|
+
*
|
|
7926
|
+
* @example
|
|
7927
|
+
* ```typescript
|
|
7928
|
+
* // Async usage
|
|
7929
|
+
* const result = await runWithSchemaContext([productSchema], async () => {
|
|
7930
|
+
* return this.adapter.objectRecords.list(objectId, options);
|
|
7931
|
+
* });
|
|
7932
|
+
*
|
|
7933
|
+
* // Sync usage
|
|
7934
|
+
* const value = runWithSchemaContext([schema], () => computeLabel(schema));
|
|
7935
|
+
* ```
|
|
7936
|
+
*/
|
|
7937
|
+
declare function runWithSchemaContext<T>(schemas: ObjectDefinition[], fn: () => Promise<T>): Promise<T>;
|
|
7938
|
+
declare function runWithSchemaContext<T>(schemas: ObjectDefinition[], fn: () => T): T;
|
|
7939
|
+
/**
|
|
7940
|
+
* Execute a function within a schema context, merging with existing context.
|
|
7941
|
+
*
|
|
7942
|
+
* If there's already a schema context, the new schemas are merged into it.
|
|
7943
|
+
* This is useful for nested operations that need additional schemas.
|
|
7944
|
+
*
|
|
7945
|
+
* Supports both sync and async functions with proper type inference.
|
|
7946
|
+
*
|
|
7947
|
+
* @param schemas - Additional ObjectDefinitions to include
|
|
7948
|
+
* @param fn - The function to execute
|
|
7949
|
+
* @returns The return value of the function (or Promise if async)
|
|
7950
|
+
*/
|
|
7951
|
+
declare function runWithMergedSchemaContext<T>(schemas: ObjectDefinition[], fn: () => Promise<T>): Promise<T>;
|
|
7952
|
+
declare function runWithMergedSchemaContext<T>(schemas: ObjectDefinition[], fn: () => T): T;
|
|
7953
|
+
|
|
7754
7954
|
/**
|
|
7755
7955
|
* Tenant Context Module
|
|
7756
7956
|
*
|
|
@@ -9304,6 +9504,8 @@ declare class RelationService extends TenantAwareService {
|
|
|
9304
9504
|
validateRelations(schema: ObjectDefinition, data: Record<string, unknown>): Promise<RelationValidationResult>;
|
|
9305
9505
|
/**
|
|
9306
9506
|
* Validate a single relation attribute value
|
|
9507
|
+
*
|
|
9508
|
+
* Uses batch fetching (findByIds) to avoid N+1 query pattern.
|
|
9307
9509
|
*/
|
|
9308
9510
|
private validateRelationAttribute;
|
|
9309
9511
|
/**
|
|
@@ -10536,35 +10738,6 @@ declare function syncAll(adapter: DatabaseAdapter, objectRegistry: typeof regist
|
|
|
10536
10738
|
* Default fallback value when expression resolves to empty string
|
|
10537
10739
|
*/
|
|
10538
10740
|
declare const DEFAULT_LABEL_FALLBACK = "(Untitled)";
|
|
10539
|
-
/**
|
|
10540
|
-
* Render a label expression template with values
|
|
10541
|
-
*
|
|
10542
|
-
* Supports:
|
|
10543
|
-
* - Variable interpolation: `{{ fieldName }}`
|
|
10544
|
-
* - Dot notation: `{{ user.firstName }}`
|
|
10545
|
-
* - Pipes: `{{ name | UPPER }}`, `{{ name | capitalize | trim }}`
|
|
10546
|
-
*
|
|
10547
|
-
* @param template - The label expression template (e.g., "{{ firstName }} {{ lastName }}")
|
|
10548
|
-
* @param values - Record values to interpolate
|
|
10549
|
-
* @param fallback - Fallback value if result is empty (default: "(Untitled)")
|
|
10550
|
-
* @returns The rendered label string
|
|
10551
|
-
*
|
|
10552
|
-
* @example
|
|
10553
|
-
* ```typescript
|
|
10554
|
-
* const label = renderLabelExpression(
|
|
10555
|
-
* "{{ firstName }} {{ lastName | UPPER }}",
|
|
10556
|
-
* { firstName: "John", lastName: "Doe" }
|
|
10557
|
-
* );
|
|
10558
|
-
* // → "John DOE"
|
|
10559
|
-
*
|
|
10560
|
-
* // With missing values
|
|
10561
|
-
* const label = renderLabelExpression(
|
|
10562
|
-
* "{{ name }}",
|
|
10563
|
-
* { }
|
|
10564
|
-
* );
|
|
10565
|
-
* // → "(Untitled)"
|
|
10566
|
-
* ```
|
|
10567
|
-
*/
|
|
10568
10741
|
declare function renderLabelExpression(template: string, values: Record<string, unknown>, fallback?: string): string;
|
|
10569
10742
|
/**
|
|
10570
10743
|
* Check if a string is a valid label expression template
|
|
@@ -10581,31 +10754,32 @@ declare function isLabelExpression(value: string): boolean;
|
|
|
10581
10754
|
*/
|
|
10582
10755
|
declare function extractAttributeNames(template: string): string[];
|
|
10583
10756
|
/**
|
|
10584
|
-
* Enrich record values by
|
|
10757
|
+
* Enrich record values by formatting complex types for display
|
|
10585
10758
|
*
|
|
10586
|
-
*
|
|
10759
|
+
* Transforms raw values (objects, dates, etc.) into human-readable strings
|
|
10587
10760
|
* for use in label expression rendering. Uses formatAttributeValue internally.
|
|
10588
10761
|
*
|
|
10589
|
-
* @param values - Record values containing raw
|
|
10590
|
-
* @param attributes - Attribute definitions
|
|
10591
|
-
* @returns New object with
|
|
10762
|
+
* @param values - Record values containing raw attribute values
|
|
10763
|
+
* @param attributes - Attribute definitions for formatting
|
|
10764
|
+
* @returns New object with complex values formatted as strings
|
|
10592
10765
|
*
|
|
10593
10766
|
* @example
|
|
10594
10767
|
* ```typescript
|
|
10595
|
-
* const enriched =
|
|
10596
|
-
* { status: "active",
|
|
10768
|
+
* const enriched = enrichValuesForDisplay(
|
|
10769
|
+
* { status: "active", price: { value: 1500, code: "EUR" } },
|
|
10597
10770
|
* [
|
|
10598
10771
|
* { type: "select", name: "status", options: [{ value: "active", label: "Active" }] },
|
|
10599
|
-
* { type: "
|
|
10600
|
-
* { value: "urgent", label: "Urgent" },
|
|
10601
|
-
* { value: "new", label: "New" }
|
|
10602
|
-
* ]}
|
|
10772
|
+
* { type: "currency", name: "price" }
|
|
10603
10773
|
* ]
|
|
10604
10774
|
* );
|
|
10605
|
-
* // → { status: "Active",
|
|
10775
|
+
* // → { status: "Active", price: "1,500.00 EUR" }
|
|
10606
10776
|
* ```
|
|
10607
10777
|
*/
|
|
10608
|
-
declare function
|
|
10778
|
+
declare function enrichValuesForDisplay(values: Record<string, unknown>, attributes: Attribute[]): Record<string, unknown>;
|
|
10779
|
+
/**
|
|
10780
|
+
* @deprecated Use `enrichValuesForDisplay` instead
|
|
10781
|
+
*/
|
|
10782
|
+
declare const enrichValuesWithSelectLabels: typeof enrichValuesForDisplay;
|
|
10609
10783
|
/**
|
|
10610
10784
|
* Extract relation IDs from a value (string or array)
|
|
10611
10785
|
* For cardinality "many", only the first ID is extracted for label display
|
|
@@ -10654,4 +10828,4 @@ type RelationLabelResolver = (ids: string[]) => Promise<Map<string, string>>;
|
|
|
10654
10828
|
*/
|
|
10655
10829
|
declare function computeLabelWithRelations(template: string, values: Record<string, unknown>, attributes: Attribute[], resolveRelationIds: RelationLabelResolver): Promise<string>;
|
|
10656
10830
|
|
|
10657
|
-
export { type FlowRow as $, type Attribute as A, type DirectTableTab as B, type CheckboxAttribute as C, type DateAttribute as D, type WorkflowConfig as E, type FileAttribute as F, type Group as G, type SlotMode as H, type InferAttributeValue as I, type AuthMethod as J, type AuthChannel as K, type LocationAttribute as L, type MultiselectAttribute as M, type NumberAttribute as N, type ObjectAction as O, type PhoneAttribute as P, type ParticipantTemplate as Q, type RichtextAttribute as R, type SystemResource as S, type TextAttribute as T, type UserAttribute as U, type ViewLayout as V, type WorkflowTheme as W, type ConditionGroup as X, type ConditionRule as Y, type WorkflowNode as Z, type WorkflowDefinition as _, type SystemAction as a, toSimpleFilterState as a$, type BlockNoteContent as a0, type StatusGroup as a1, type AttributeGroup as a2, type BaseAttribute as a3, type NumberUnit as a4, type DateFormat as a5, type DateValue as a6, type Phone as a7, type Currency as a8, type Location as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type StorageProvider as aD, type FileVisibility as aE, type File as aF, type CreateFile as aG, type UpdateFile as aH, type TextFilterOperator as aI, type NumberFilterOperator as aJ, type CheckboxFilterOperator as aK, type DateFilterOperator as aL, type SelectFilterOperator as aM, type MultiselectFilterOperator as aN, type RelationFilterOperator as aO, type FilterOperator as aP, type RelativeDateValue as aQ, type CurrencyFilterValue as aR, type PhoneFilterValue as aS, type FilterValue as aT, type FilterRule as aU, type ExtendedFilterRule as aV, type FilterCombinator as aW, type FilterGroup as aX, type AdvancedFilterState as aY, isAdvancedFilterState as aZ, toAdvancedFilterState as a_, type LocationGranularity as aa, RELATION_TARGET_ANY as ab, type RelationAttribute as ac, isUniversalRelation as ad, type BlockNoteBlock as ae, type BlockNoteCustomInlineContent as af, type BlockNoteDefaultProps as ag, type BlockNoteInlineContent as ah, type BlockNoteLink as ai, type BlockNoteStyledText as aj, type BlockNoteStyles as ak, type BlockNoteTableCell as al, type BlockNoteTableCellProps as am, type BlockNoteTableContent as an, type PartialBlockNoteBlock as ao, type PartialBlockNoteContent as ap, type PartialBlockNoteInlineContent as aq, type PartialBlockNoteLink as ar, type PartialBlockNoteStyledText as as, type PartialBlockNoteTableCell as at, type PartialBlockNoteTableContent as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type TextAreaAttribute as b, type UserRole as b$, type SortDirection as b0, type QueryState as b1, OPERATORS_BY_TYPE as b2, type NoValueOperator as b3, NO_VALUE_OPERATORS as b4, isNoValueOperator as b5, type FlowSlot as b6, type FlowRowField as b7, type FlowPage as b8, type FlowRelation as b9, type ExtractRecordInput as bA, type ExtractRecordInputStrict as bB, type ExtractRecordUpdate as bC, type ExtractRecordUpdateStrict as bD, type ExtractAttributes as bE, RESERVED_ATTRIBUTE_NAMES as bF, SYSTEM_FIELD_NAMES as bG, type ReservedAttributeName as bH, type SystemFieldName as bI, type Timestamps as bJ, type ObjectAttribute as bK, type CompletionStatus as bL, type ObjectRecord as bM, type PermissionScope as bN, type Role as bO, type Permission as bP, type UserRoleAssignment as bQ, type EffectivePermissions as bR, type ObjectPermissions as bS, type SystemPermissions as bT, type CreateRoleInput as bU, type UpdateRoleInput as bV, type CreatePermissionInput as bW, type AssignRoleInput as bX, type PolicyContext as bY, type RecordPolicy as bZ, PolicyViolationError as b_, type FlowStatus as ba, type FlowDefinition as bb, isFlowDefinition as bc, isFlowPublished as bd, isSystemFlow as be, type GeocodingSuggestion as bf, type GeocodingAutocompleteParams as bg, type ReverseGeocodingParams as bh, type GeocodingParams as bi, type GeocodingAdapter as bj, NoopGeocodingAdapter as bk, type AttributeSchema as bl, type InferRecordFromSchema as bm, type InferRecordWithRequirements as bn, type TypedAttribute as bo, type AttributeMap as bp, type AddAttribute as bq, type InferRecord as br, type InferRecordInput as bs, type InferRecordUpdate as bt, type CustomAttributeValue as bu, type WithCustomAttributes as bv, type RecordMetadata as bw, type SystemFields as bx, type ExtractRecord as by, type ExtractRecordStrict as bz, type RichtextFeature as c, type WorkflowParticipation as c$, type UserStatus as c0, type UserProfile as c1, type CreateUserProfile as c2, type UpdateUserProfile as c3, type InviteUserInput as c4, type TabType as c5, type FormTab as c6, type CustomTab as c7, type ActivityTab as c8, type NotesTab as c9, neq as cA, and as cB, or as cC, inValues as cD, isEmpty as cE, isNotEmpty as cF, type WorkflowSlot as cG, type NodePosition as cH, type CanvasViewport as cI, type WorkflowLayout as cJ, type ParticipantAuthConfig as cK, type WorkflowStatus as cL, isWorkflowDefinition as cM, isWorkflowPublished as cN, isSystemWorkflow as cO, type WorkflowTransition as cP, type WorkflowError as cQ, type PendingAction as cR, type WorkflowInstance as cS, isInstanceTerminal as cT, isInstanceWaiting as cU, canResumeInstance as cV, createStartTransition as cW, type ParticipationStatus as cX, type SignedLinkAuth as cY, type PinCodeAuth as cZ, type ParticipationAuth as c_, type FlowsTab as ca, isFormTab as cb, isTableTab as cc, isDirectTableTab as cd, isInverseTableTab as ce, isCustomTab as cf, isActivityTab as cg, isNotesTab as ch, isFlowsTab as ci, type StartNode as cj, type FormNode as ck, type FormFieldRef as cl, type ConditionNode as cm, type EndNode as cn, type WorkflowNodeType as co, isStartNode as cp, isFormNode as cq, isConditionNode as cr, isEndNode as cs, isSimpleFormNode as ct, isAdvancedFormNode as cu, getNodeOutputs as cv, type ConditionOperator as cw, isConditionRule as cx, isConditionGroup as cy, eq as cz, type CurrencyAttribute as d, createCurrencyValidator as d$, isSignedLinkAuth as d0, isPinCodeAuth as d1, canParticipate as d2, canAuthenticate as d3, canExecuteNode as d4, type GeneratedDocument as d5, type WorkflowExecutionContext as d6, createEmptyContext as d7, getContextValue as d8, setContextValue as d9, textareaConfigSchema as dA, richtextConfigSchema as dB, numberConfigSchema as dC, checkboxConfigSchema as dD, dateConfigSchema as dE, phoneConfigSchema as dF, currencyConfigSchema as dG, statusConfigSchema as dH, locationConfigSchema as dI, selectConfigSchema as dJ, multiselectConfigSchema as dK, fileConfigSchema as dL, userConfigSchema as dM, relationConfigSchema as dN, ratingConfigSchema as dO, formulaConfigSchema as dP, rollupConfigSchema as dQ, attributeConfigSchemas as dR, getAttributeConfigSchema as dS, validateAttributeConfig as dT, parseAttributeConfig as dU, safeParseAttributeConfig as dV, createTextValidator as dW, createNumberValidator as dX, createCheckboxValidator as dY, createDateValidator as dZ, createPhoneValidator as d_, mergeFormToSlot as da, type WorkflowAccessMode as db, type ReadOnlyReason as dc, type FormFieldContext as dd, type FormFieldRow as de, type FormNodeInfo as df, type FormContextResponse as dg, type ThemeLogo as dh, type ThemeColors as di, type ThemeTypography as dj, DEFAULT_THEME as dk, mergeWithDefaults as dl, generateCssVariables as dm, type Uuid as dn, type TenantId as dp, type UserId as dq, asTenantId as dr, asUserId as ds, generateId as dt, generatePrefixedId as du, registry as dv, viewRegistry as dw, type ValidationMessages as dx, DEFAULT_VALIDATION_MESSAGES as dy, textConfigSchema as dz, type Option as e, evaluateCondition as e$, createStatusValidator as e0, createSelectValidator as e1, createMultiselectValidator as e2, createLocationValidator as e3, createFileValidator as e4, createUserValidator as e5, createSingleRelationValidator as e6, createMultiRelationValidator as e7, createRelationValidator as e8, createRatingValidator as e9, initializePinCodeService as eA, type PinCodeGenerationOptions as eB, type PinCodeVerificationResult as eC, type CacheAdapter as eD, type CacheOptions as eE, cacheKeys as eF, cacheTtl as eG, NoopCacheAdapter as eH, type FetchResult as eI, type FormattedRecord as eJ, type GroupedFetchResult as eK, type InsertOptions as eL, type QueryBuilderState as eM, type RegistryMap as eN, type RegistryObjectNames as eO, type ShortcutOperator as eP, createDefaultState as eQ, formatRecord as eR, formatRecords as eS, QueryMultipleResultsError as eT, QueryNoResultError as eU, SHORTCUT_TO_FILTER_OPERATOR as eV, createQueryBuilder as eW, QueryBuilder as eX, type QueryBuilderOptions as eY, type EvaluationResult as eZ, type EvaluationTrace as e_, createFormulaValidator as ea, createRollupValidator as eb, createTextAreaValidator as ec, createRichtextValidator as ed, createAttributeValidator as ee, createFormAttributeValidator as ef, createObjectValidator as eg, type ValidationResult as eh, validateAttribute as ei, validateObject as ej, validateObjectOrThrow as ek, createDraftValidator as el, validateDraft as em, validateDraftOrThrow as en, getMissingRequiredAttributes as eo, isRecordComplete as ep, computeRecordStatus as eq, type DatabaseAdapter as er, ParticipationTokenService as es, getDefaultTokenService as et, initializeTokenService as eu, type ParticipationTokenPayload as ev, type TokenGenerationOptions as ew, type TokenVerificationResult as ex, PinCodeService as ey, getDefaultPinCodeService as ez, type StatusAttribute as f, NoopHookRegistry as f$, evaluate as f0, evaluateWithTrace as f1, TenantContextError as f2, getContext as f3, getTenantId as f4, getUserId as f5, hasContext as f6, runWithContext as f7, withTenantContext as f8, type TenantContext as f9, flattenRelationsForEval as fA, formatFormulaResult as fB, hasRelationReferences as fC, validateFormulaExpression as fD, type FormulaResult as fE, getPathDepth as fF, getRelationPath as fG, getTargetAttributeName as fH, InvalidPathError as fI, MaxDepthExceededError as fJ, parsePath as fK, pathHasManyCardinality as fL, validatePath as fM, type PathCardinality as fN, type PathSegment as fO, type PathSegmentType as fP, type SchemaResolver as fQ, resolveMultiplePaths as fR, resolveSingleValue as fS, traversePath as fT, type TraversalOptions as fU, type TraversalResult as fV, type AttributeChange as fW, type HookContext as fX, type HookDefinition as fY, type HookHandler as fZ, type HookType as f_, createDefaultExecutorRegistry as fa, getDefaultExecutorRegistry as fb, type ExecutorCompleteResult as fc, type ExecutorContext as fd, type ExecutorErrorResult as fe, type ExecutorResult as ff, type ExecutorSuccessResult as fg, type ExecutorWaitResult as fh, type NodeExecutor as fi, complete as fj, error as fk, ExecutorRegistry as fl, success as fm, wait as fn, ConditionExecutor as fo, EndExecutor as fp, FormExecutor as fq, StartExecutor as fr, evaluateFormula as fs, evaluateFormulaAttribute as ft, evaluateFormulaAttributeWithRelations as fu, evaluateFormulaWithRelations as fv, evaluateFormulaWithResult as fw, extractFormulaVariables as fx, extractRelationNames as fy, extractRelationReferences as fz, type SelectAttribute as g, type FieldReadOnlyResult as g$, type HookRegistry as g0, createMockAdapter as g1, defaultPolicyRegistry as g2, PolicyRegistry as g3, notesPolicy as g4, type ObjectsRepository as g5, type AttributesRepository as g6, type UserProfilesRepository as g7, type FilesRepository as g8, type ObjectRecordsRepository as g9, type RelationValidationError as gA, type RelationOption as gB, type RelationOptionsResponse as gC, type GetRelationOptionsParams as gD, type RelationServiceOptions as gE, RelationService as gF, type RollupSchedulerOptions as gG, RollupScheduler as gH, type RollupResult as gI, type RollupServiceOptions as gJ, RollupService as gK, type UserProfileServiceOptions as gL, UserProfileService as gM, type UserValidationResult as gN, type UserValidationError as gO, UserService as gP, type CreateViewInput as gQ, type UpdateViewInput as gR, ViewService as gS, type StartWorkflowInput as gT, type ResumeWorkflowInput as gU, type WorkflowInstanceServiceOptions as gV, WorkflowInstanceService as gW, type CreateParticipationInput as gX, type CreateParticipationResult as gY, type AuthenticationResult as gZ, WorkflowParticipationService as g_, type ViewsRepository as ga, type WorkflowsRepository as gb, type WorkflowInstancesRepository as gc, type WorkflowParticipationsRepository as gd, type AuditRepository as ge, type PermissionsRepository as gf, buildAuditChanges as gg, AuditService as gh, TenantAwareService as gi, TenantAwareRepository as gj, type FileServiceOptions as gk, FileService as gl, GeocodingService as gm, GlobalSearchService as gn, type CreateCustomObjectInput as go, type AddAttributeInput as gp, type UpdateObjectInput as gq, type ObjectSchemaServiceOptions as gr, ObjectSchemaService as gs, type PermissionServiceOptions as gt, PermissionService as gu, type RecordServiceOptions as gv, RecordService as gw, type ResolvedRelations as gx, RelationResolverService as gy, type RelationValidationResult as gz, type SingleRelationAttribute as h, WorkflowRelationService as h0, type CreateWorkflowInput as h1, type UpdateWorkflowInput as h2, WorkflowService as h3, type FileContent as h4, type StorageUploadInput as h5, type StorageUploadResult as h6, type SignedUrlOptions as h7, type StorageAdapter as h8, type UploadFileInput as h9, type SearchOptions as hA, type GlobalSearchOptions as hB, type GlobalSearchResultItem as hC, type FileListOptions as hD, type DBView as hE, type CreateDBView as hF, type UpdateDBView as hG, type UpsertDBView as hH, type DBWorkflow as hI, type CreateDBWorkflow as hJ, type UpdateDBWorkflow as hK, type DBWorkflowInstance as hL, type CreateDBWorkflowInstance as hM, type UpdateDBWorkflowInstance as hN, type DBWorkflowParticipation as hO, type CreateDBWorkflowParticipation as hP, type UpdateDBWorkflowParticipation as hQ, type OperationResult as hR, type ViewSyncResult as hS, type ViewSyncOptions as hT, syncNativeViews as hU, verifyNativeViewsSync as hV, getViewSyncPreview as hW, type SyncResult as ha, type SyncOptions as hb, syncNativeObjects as hc, verifyNativeObjectsSync as hd, getSyncPreview as he, type FullSyncResult as hf, type FullSyncOptions as hg, syncAll as hh, DEFAULT_LABEL_FALLBACK as hi, renderLabelExpression as hj, isLabelExpression as hk, extractAttributeNames as hl, enrichValuesWithSelectLabels as hm, extractRelationIds as hn, type RelationLabelResolver as ho, computeLabelWithRelations as hp, type DBObject as hq, type CreateDBObject as hr, type UpdateDBObject as hs, type UpsertDBObject as ht, type DBAttribute as hu, type CreateDBAttribute as hv, type UpdateDBAttribute as hw, type UpsertDBAttribute as hx, type CreateObjectRecord as hy, type ListOptions as hz, type MultiRelationAttribute as i, type RelationTarget as j, type RatingAttribute as k, type FormulaAttribute as l, type FormulaReturnType as m, type RollupAttribute as n, type RollupFunction as o, type AttributeType as p, type ObjectDefinition as q, type Field as r, type AttributeGroupField as s, type TableTab as t, type InverseTableTab as u, type ViewDefinition as v, type InstanceStatus as w, type Tab as x, type FilterState as y, type SortRule as z };
|
|
10831
|
+
export { type FlowRow as $, type Attribute as A, type DirectTableTab as B, type CheckboxAttribute as C, type DateAttribute as D, type WorkflowConfig as E, type FileAttribute as F, type Group as G, type SlotMode as H, type InferAttributeValue as I, type AuthMethod as J, type AuthChannel as K, type LocationAttribute as L, type MultiselectAttribute as M, type NumberAttribute as N, type ObjectAction as O, type PhoneAttribute as P, type ParticipantTemplate as Q, type RichtextAttribute as R, type SystemResource as S, type TextAttribute as T, type UserAttribute as U, type ViewLayout as V, type WorkflowTheme as W, type ConditionGroup as X, type ConditionRule as Y, type WorkflowNode as Z, type WorkflowDefinition as _, type SystemAction as a, toSimpleFilterState as a$, type BlockNoteContent as a0, type StatusGroup as a1, type AttributeGroup as a2, type BaseAttribute as a3, type NumberUnit as a4, type DateFormat as a5, type DateValue as a6, type Phone as a7, type Currency as a8, type Location as a9, type CreateAuditLogInput as aA, type AuditListOptions as aB, type AuditServiceOptions as aC, type StorageProvider as aD, type FileVisibility as aE, type File as aF, type CreateFile as aG, type UpdateFile as aH, type TextFilterOperator as aI, type NumberFilterOperator as aJ, type CheckboxFilterOperator as aK, type DateFilterOperator as aL, type SelectFilterOperator as aM, type MultiselectFilterOperator as aN, type RelationFilterOperator as aO, type FilterOperator as aP, type RelativeDateValue as aQ, type CurrencyFilterValue as aR, type PhoneFilterValue as aS, type FilterValue as aT, type FilterRule as aU, type ExtendedFilterRule as aV, type FilterCombinator as aW, type FilterGroup as aX, type AdvancedFilterState as aY, isAdvancedFilterState as aZ, toAdvancedFilterState as a_, type LocationGranularity as aa, RELATION_TARGET_ANY as ab, type RelationAttribute as ac, isUniversalRelation as ad, type BlockNoteBlock as ae, type BlockNoteCustomInlineContent as af, type BlockNoteDefaultProps as ag, type BlockNoteInlineContent as ah, type BlockNoteLink as ai, type BlockNoteStyledText as aj, type BlockNoteStyles as ak, type BlockNoteTableCell as al, type BlockNoteTableCellProps as am, type BlockNoteTableContent as an, type PartialBlockNoteBlock as ao, type PartialBlockNoteContent as ap, type PartialBlockNoteInlineContent as aq, type PartialBlockNoteLink as ar, type PartialBlockNoteStyledText as as, type PartialBlockNoteTableCell as at, type PartialBlockNoteTableContent as au, type AuditResourceType as av, type AuditAction as aw, type AuditActorType as ax, type AuditChange as ay, type AuditLogEntry as az, type TextAreaAttribute as b, type UserRole as b$, type SortDirection as b0, type QueryState as b1, OPERATORS_BY_TYPE as b2, type NoValueOperator as b3, NO_VALUE_OPERATORS as b4, isNoValueOperator as b5, type FlowSlot as b6, type FlowRowField as b7, type FlowPage as b8, type FlowRelation as b9, type ExtractRecordInput as bA, type ExtractRecordInputStrict as bB, type ExtractRecordUpdate as bC, type ExtractRecordUpdateStrict as bD, type ExtractAttributes as bE, RESERVED_ATTRIBUTE_NAMES as bF, SYSTEM_FIELD_NAMES as bG, type ReservedAttributeName as bH, type SystemFieldName as bI, type Timestamps as bJ, type ObjectAttribute as bK, type CompletionStatus as bL, type ObjectRecord as bM, type PermissionScope as bN, type Role as bO, type Permission as bP, type UserRoleAssignment as bQ, type EffectivePermissions as bR, type ObjectPermissions as bS, type SystemPermissions as bT, type CreateRoleInput as bU, type UpdateRoleInput as bV, type CreatePermissionInput as bW, type AssignRoleInput as bX, type PolicyContext as bY, type RecordPolicy as bZ, PolicyViolationError as b_, type FlowStatus as ba, type FlowDefinition as bb, isFlowDefinition as bc, isFlowPublished as bd, isSystemFlow as be, type GeocodingSuggestion as bf, type GeocodingAutocompleteParams as bg, type ReverseGeocodingParams as bh, type GeocodingParams as bi, type GeocodingAdapter as bj, NoopGeocodingAdapter as bk, type AttributeSchema as bl, type InferRecordFromSchema as bm, type InferRecordWithRequirements as bn, type TypedAttribute as bo, type AttributeMap as bp, type AddAttribute as bq, type InferRecord as br, type InferRecordInput as bs, type InferRecordUpdate as bt, type CustomAttributeValue as bu, type WithCustomAttributes as bv, type RecordMetadata as bw, type SystemFields as bx, type ExtractRecord as by, type ExtractRecordStrict as bz, type RichtextFeature as c, type WorkflowParticipation as c$, type UserStatus as c0, type UserProfile as c1, type CreateUserProfile as c2, type UpdateUserProfile as c3, type InviteUserInput as c4, type TabType as c5, type FormTab as c6, type CustomTab as c7, type ActivityTab as c8, type NotesTab as c9, neq as cA, and as cB, or as cC, inValues as cD, isEmpty as cE, isNotEmpty as cF, type WorkflowSlot as cG, type NodePosition as cH, type CanvasViewport as cI, type WorkflowLayout as cJ, type ParticipantAuthConfig as cK, type WorkflowStatus as cL, isWorkflowDefinition as cM, isWorkflowPublished as cN, isSystemWorkflow as cO, type WorkflowTransition as cP, type WorkflowError as cQ, type PendingAction as cR, type WorkflowInstance as cS, isInstanceTerminal as cT, isInstanceWaiting as cU, canResumeInstance as cV, createStartTransition as cW, type ParticipationStatus as cX, type SignedLinkAuth as cY, type PinCodeAuth as cZ, type ParticipationAuth as c_, type FlowsTab as ca, isFormTab as cb, isTableTab as cc, isDirectTableTab as cd, isInverseTableTab as ce, isCustomTab as cf, isActivityTab as cg, isNotesTab as ch, isFlowsTab as ci, type StartNode as cj, type FormNode as ck, type FormFieldRef as cl, type ConditionNode as cm, type EndNode as cn, type WorkflowNodeType as co, isStartNode as cp, isFormNode as cq, isConditionNode as cr, isEndNode as cs, isSimpleFormNode as ct, isAdvancedFormNode as cu, getNodeOutputs as cv, type ConditionOperator as cw, isConditionRule as cx, isConditionGroup as cy, eq as cz, type CurrencyAttribute as d, createCurrencyValidator as d$, isSignedLinkAuth as d0, isPinCodeAuth as d1, canParticipate as d2, canAuthenticate as d3, canExecuteNode as d4, type GeneratedDocument as d5, type WorkflowExecutionContext as d6, createEmptyContext as d7, getContextValue as d8, setContextValue as d9, textareaConfigSchema as dA, richtextConfigSchema as dB, numberConfigSchema as dC, checkboxConfigSchema as dD, dateConfigSchema as dE, phoneConfigSchema as dF, currencyConfigSchema as dG, statusConfigSchema as dH, locationConfigSchema as dI, selectConfigSchema as dJ, multiselectConfigSchema as dK, fileConfigSchema as dL, userConfigSchema as dM, relationConfigSchema as dN, ratingConfigSchema as dO, formulaConfigSchema as dP, rollupConfigSchema as dQ, attributeConfigSchemas as dR, getAttributeConfigSchema as dS, validateAttributeConfig as dT, parseAttributeConfig as dU, safeParseAttributeConfig as dV, createTextValidator as dW, createNumberValidator as dX, createCheckboxValidator as dY, createDateValidator as dZ, createPhoneValidator as d_, mergeFormToSlot as da, type WorkflowAccessMode as db, type ReadOnlyReason as dc, type FormFieldContext as dd, type FormFieldRow as de, type FormNodeInfo as df, type FormContextResponse as dg, type ThemeLogo as dh, type ThemeColors as di, type ThemeTypography as dj, DEFAULT_THEME as dk, mergeWithDefaults as dl, generateCssVariables as dm, type Uuid as dn, type TenantId as dp, type UserId as dq, asTenantId as dr, asUserId as ds, generateId as dt, generatePrefixedId as du, registry as dv, viewRegistry as dw, type ValidationMessages as dx, DEFAULT_VALIDATION_MESSAGES as dy, textConfigSchema as dz, type Option as e, evaluateCondition as e$, createStatusValidator as e0, createSelectValidator as e1, createMultiselectValidator as e2, createLocationValidator as e3, createFileValidator as e4, createUserValidator as e5, createSingleRelationValidator as e6, createMultiRelationValidator as e7, createRelationValidator as e8, createRatingValidator as e9, initializePinCodeService as eA, type PinCodeGenerationOptions as eB, type PinCodeVerificationResult as eC, type CacheAdapter as eD, type CacheOptions as eE, cacheKeys as eF, cacheTtl as eG, NoopCacheAdapter as eH, type FetchResult as eI, type FormattedRecord as eJ, type GroupedFetchResult as eK, type InsertOptions as eL, type QueryBuilderState as eM, type RegistryMap as eN, type RegistryObjectNames as eO, type ShortcutOperator as eP, createDefaultState as eQ, formatRecord as eR, formatRecords as eS, QueryMultipleResultsError as eT, QueryNoResultError as eU, SHORTCUT_TO_FILTER_OPERATOR as eV, createQueryBuilder as eW, QueryBuilder as eX, type QueryBuilderOptions as eY, type EvaluationResult as eZ, type EvaluationTrace as e_, createFormulaValidator as ea, createRollupValidator as eb, createTextAreaValidator as ec, createRichtextValidator as ed, createAttributeValidator as ee, createFormAttributeValidator as ef, createObjectValidator as eg, type ValidationResult as eh, validateAttribute as ei, validateObject as ej, validateObjectOrThrow as ek, createDraftValidator as el, validateDraft as em, validateDraftOrThrow as en, getMissingRequiredAttributes as eo, isRecordComplete as ep, computeRecordStatus as eq, type DatabaseAdapter as er, ParticipationTokenService as es, getDefaultTokenService as et, initializeTokenService as eu, type ParticipationTokenPayload as ev, type TokenGenerationOptions as ew, type TokenVerificationResult as ex, PinCodeService as ey, getDefaultPinCodeService as ez, type StatusAttribute as f, traversePath as f$, evaluate as f0, evaluateWithTrace as f1, TenantContextError as f2, addSchemaToContext as f3, getSchemaByNameFromContext as f4, getSchemaContext as f5, getSchemaFromContext as f6, hasSchemaContext as f7, runWithMergedSchemaContext as f8, runWithSchemaContext as f9, evaluateFormula as fA, evaluateFormulaAttribute as fB, evaluateFormulaAttributeWithRelations as fC, evaluateFormulaWithRelations as fD, evaluateFormulaWithResult as fE, extractFormulaVariables as fF, extractRelationNames as fG, extractRelationReferences as fH, flattenRelationsForEval as fI, formatFormulaResult as fJ, hasRelationReferences as fK, validateFormulaExpression as fL, type FormulaResult as fM, getPathDepth as fN, getRelationPath as fO, getTargetAttributeName as fP, InvalidPathError as fQ, MaxDepthExceededError as fR, parsePath as fS, pathHasManyCardinality as fT, validatePath as fU, type PathCardinality as fV, type PathSegment as fW, type PathSegmentType as fX, type SchemaResolver as fY, resolveMultiplePaths as fZ, resolveSingleValue as f_, type SchemaContext as fa, getContext as fb, getTenantId as fc, getUserId as fd, hasContext as fe, runWithContext as ff, withTenantContext as fg, type TenantContext as fh, createDefaultExecutorRegistry as fi, getDefaultExecutorRegistry as fj, type ExecutorCompleteResult as fk, type ExecutorContext as fl, type ExecutorErrorResult as fm, type ExecutorResult as fn, type ExecutorSuccessResult as fo, type ExecutorWaitResult as fp, type NodeExecutor as fq, complete as fr, error as fs, ExecutorRegistry as ft, success as fu, wait as fv, ConditionExecutor as fw, EndExecutor as fx, FormExecutor as fy, StartExecutor as fz, type SelectAttribute as g, type UpdateViewInput as g$, type TraversalOptions as g0, type TraversalResult as g1, type AttributeChange as g2, type HookContext as g3, type HookDefinition as g4, type HookHandler as g5, type HookType as g6, NoopHookRegistry as g7, type HookRegistry as g8, createMockAdapter as g9, type UpdateObjectInput as gA, type ObjectSchemaServiceOptions as gB, ObjectSchemaService as gC, type PermissionServiceOptions as gD, PermissionService as gE, type RecordServiceOptions as gF, RecordService as gG, type ResolvedRelations as gH, RelationResolverService as gI, type RelationValidationResult as gJ, type RelationValidationError as gK, type RelationOption as gL, type RelationOptionsResponse as gM, type GetRelationOptionsParams as gN, type RelationServiceOptions as gO, RelationService as gP, type RollupSchedulerOptions as gQ, RollupScheduler as gR, type RollupResult as gS, type RollupServiceOptions as gT, RollupService as gU, type UserProfileServiceOptions as gV, UserProfileService as gW, type UserValidationResult as gX, type UserValidationError as gY, UserService as gZ, type CreateViewInput as g_, defaultPolicyRegistry as ga, PolicyRegistry as gb, notesPolicy as gc, type ObjectsRepository as gd, type AttributesRepository as ge, type UserProfilesRepository as gf, type FilesRepository as gg, type ObjectRecordsRepository as gh, type ViewsRepository as gi, type WorkflowsRepository as gj, type WorkflowInstancesRepository as gk, type WorkflowParticipationsRepository as gl, type AuditRepository as gm, type PermissionsRepository as gn, buildAuditChanges as go, AuditService as gp, TenantAwareService as gq, TenantAwareRepository as gr, type SchemaContextAware as gs, SchemaContextAwareRepository as gt, type FileServiceOptions as gu, FileService as gv, GeocodingService as gw, GlobalSearchService as gx, type CreateCustomObjectInput as gy, type AddAttributeInput as gz, type SingleRelationAttribute as h, type UpdateDBWorkflowParticipation as h$, ViewService as h0, type StartWorkflowInput as h1, type ResumeWorkflowInput as h2, type WorkflowInstanceServiceOptions as h3, WorkflowInstanceService as h4, type CreateParticipationInput as h5, type CreateParticipationResult as h6, type AuthenticationResult as h7, WorkflowParticipationService as h8, type FieldReadOnlyResult as h9, computeLabelWithRelations as hA, type DBObject as hB, type CreateDBObject as hC, type UpdateDBObject as hD, type UpsertDBObject as hE, type DBAttribute as hF, type CreateDBAttribute as hG, type UpdateDBAttribute as hH, type UpsertDBAttribute as hI, type CreateObjectRecord as hJ, type ListOptions as hK, type SearchOptions as hL, type GlobalSearchOptions as hM, type GlobalSearchResultItem as hN, type FileListOptions as hO, type DBView as hP, type CreateDBView as hQ, type UpdateDBView as hR, type UpsertDBView as hS, type DBWorkflow as hT, type CreateDBWorkflow as hU, type UpdateDBWorkflow as hV, type DBWorkflowInstance as hW, type CreateDBWorkflowInstance as hX, type UpdateDBWorkflowInstance as hY, type DBWorkflowParticipation as hZ, type CreateDBWorkflowParticipation as h_, WorkflowRelationService as ha, type CreateWorkflowInput as hb, type UpdateWorkflowInput as hc, WorkflowService as hd, type FileContent as he, type StorageUploadInput as hf, type StorageUploadResult as hg, type SignedUrlOptions as hh, type StorageAdapter as hi, type UploadFileInput as hj, type SyncResult as hk, type SyncOptions as hl, syncNativeObjects as hm, verifyNativeObjectsSync as hn, getSyncPreview as ho, type FullSyncResult as hp, type FullSyncOptions as hq, syncAll as hr, DEFAULT_LABEL_FALLBACK as hs, renderLabelExpression as ht, isLabelExpression as hu, extractAttributeNames as hv, enrichValuesForDisplay as hw, enrichValuesWithSelectLabels as hx, extractRelationIds as hy, type RelationLabelResolver as hz, type MultiRelationAttribute as i, type OperationResult as i0, type ViewSyncResult as i1, type ViewSyncOptions as i2, syncNativeViews as i3, verifyNativeViewsSync as i4, getViewSyncPreview as i5, type RelationTarget as j, type RatingAttribute as k, type FormulaAttribute as l, type FormulaReturnType as m, type RollupAttribute as n, type RollupFunction as o, type AttributeType as p, type ObjectDefinition as q, type Field as r, type AttributeGroupField as s, type TableTab as t, type InverseTableTab as u, type ViewDefinition as v, type InstanceStatus as w, type Tab as x, type FilterState as y, type SortRule as z };
|