@stndrds/schema 1.0.0-alpha.70 → 1.0.0-alpha.71
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-V32FQLWX.js → chunk-3WTK7ESH.js} +26 -5
- package/dist/{chunk-XGFBT4K2.js → chunk-4GHZ6AUF.js} +21 -19
- package/dist/{chunk-IXHWBBIY.mjs → chunk-5SZ5OISG.mjs} +26 -5
- package/dist/{chunk-KG75T7MA.mjs → chunk-INXFKM4S.mjs} +5 -3
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +6 -6
- package/dist/index.mjs +2 -2
- package/dist/{runtime-B0G6eBXO.d.ts → runtime-BV9XBP1p.d.ts} +1 -1
- package/dist/{runtime-fj4EKCWH.d.mts → runtime-DzpQ5gRG.d.mts} +1 -1
- package/dist/runtime.d.mts +2 -2
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.js +3 -3
- package/dist/runtime.mjs +2 -2
- package/dist/validation/validators.d.mts +1 -1
- package/dist/validation/validators.d.ts +1 -1
- package/dist/validation/validators.js +2 -2
- package/dist/validation/validators.mjs +1 -1
- package/dist/{validators-CgiGGhyH.d.mts → validators-CzHCpxVj.d.mts} +2 -0
- package/dist/{validators-B6L_hVBw.d.ts → validators-DEfgr14O.d.ts} +2 -0
- package/package.json +2 -2
|
@@ -435,22 +435,43 @@ function createSingleRelationValidator(attr, messages = DEFAULT_VALIDATION_MESSA
|
|
|
435
435
|
const uuidSchema = _zod.z.uuid({
|
|
436
436
|
message: messages.invalidId(attr)
|
|
437
437
|
});
|
|
438
|
-
|
|
438
|
+
const nullableUuidSchema = _zod.z.union([uuidSchema, _zod.z.null()]);
|
|
439
|
+
return _zod.z.union([
|
|
440
|
+
nullableUuidSchema,
|
|
441
|
+
_zod.z.object({
|
|
442
|
+
id: uuidSchema,
|
|
443
|
+
props: _zod.z.record(_zod.z.string(), _zod.z.unknown()).optional()
|
|
444
|
+
}).passthrough()
|
|
445
|
+
// Allow additional properties (bilateral relations may have extra metadata)
|
|
446
|
+
]);
|
|
439
447
|
}
|
|
440
448
|
function createMultiRelationValidator(attr, messages = DEFAULT_VALIDATION_MESSAGES) {
|
|
441
449
|
const uuidSchema = _zod.z.uuid({
|
|
442
450
|
message: messages.invalidId(attr)
|
|
443
451
|
});
|
|
444
|
-
|
|
452
|
+
const itemSchema = _zod.z.union([
|
|
453
|
+
uuidSchema,
|
|
454
|
+
_zod.z.object({
|
|
455
|
+
id: uuidSchema,
|
|
456
|
+
props: _zod.z.record(_zod.z.string(), _zod.z.unknown()).optional()
|
|
457
|
+
}).passthrough()
|
|
458
|
+
// Allow additional properties
|
|
459
|
+
]);
|
|
460
|
+
let arraySchema = _zod.z.array(itemSchema);
|
|
445
461
|
if (attr.minItems !== void 0) {
|
|
446
462
|
arraySchema = arraySchema.min(attr.minItems, messages.minItems(attr, attr.minItems));
|
|
447
463
|
}
|
|
448
464
|
if (attr.maxItems !== void 0) {
|
|
449
465
|
arraySchema = arraySchema.max(attr.maxItems, messages.maxItems(attr, attr.maxItems));
|
|
450
466
|
}
|
|
451
|
-
return
|
|
452
|
-
(
|
|
453
|
-
|
|
467
|
+
return arraySchema.refine(
|
|
468
|
+
(items) => {
|
|
469
|
+
return items.every((item) => {
|
|
470
|
+
const id = extractRelationId(item);
|
|
471
|
+
return typeof id === "string" && uuidSchema.safeParse(id).success;
|
|
472
|
+
});
|
|
473
|
+
},
|
|
474
|
+
{ message: messages.invalidId(attr) }
|
|
454
475
|
);
|
|
455
476
|
}
|
|
456
477
|
function createRelationValidator(attr, messages = DEFAULT_VALIDATION_MESSAGES) {
|
|
@@ -12,7 +12,7 @@ var _chunkNEVERCM3js = require('./chunk-NEVERCM3.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
15
|
+
var _chunk3WTK7ESHjs = require('./chunk-3WTK7ESH.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
var _chunk3RG5ZIWIjs = require('./chunk-3RG5ZIWI.js');
|
|
@@ -3553,7 +3553,7 @@ function formatPhone(value) {
|
|
|
3553
3553
|
if (!("phoneNumber" in phone2)) return String(value);
|
|
3554
3554
|
if (!phone2.phoneNumber) return "";
|
|
3555
3555
|
if (!phone2.countryCode) return phone2.phoneNumber;
|
|
3556
|
-
return
|
|
3556
|
+
return _chunk3WTK7ESHjs.formatPhoneForDisplay.call(void 0, phone2);
|
|
3557
3557
|
}
|
|
3558
3558
|
function formatLocation(value, attribute) {
|
|
3559
3559
|
if (typeof value !== "object" || value === null) return String(value);
|
|
@@ -8760,7 +8760,7 @@ var ObjectSchemaService = class extends BaseService {
|
|
|
8760
8760
|
const schema = await this.getObjectSchema(dbAttr.objectId);
|
|
8761
8761
|
await this.adapter.objectRecords.batchRefreshStatus(
|
|
8762
8762
|
dbAttr.objectId,
|
|
8763
|
-
(values) =>
|
|
8763
|
+
(values) => _chunk3WTK7ESHjs.computeRecordStatus.call(void 0, schema, values)
|
|
8764
8764
|
);
|
|
8765
8765
|
}
|
|
8766
8766
|
return this.convertDBAttributeToAttribute(updatedDbAttr);
|
|
@@ -9224,7 +9224,7 @@ Reserved names: ${RESERVED_ATTRIBUTE_NAMES.join(", ")}`
|
|
|
9224
9224
|
}
|
|
9225
9225
|
}
|
|
9226
9226
|
try {
|
|
9227
|
-
return
|
|
9227
|
+
return _chunk3WTK7ESHjs.parseAttributeConfig.call(void 0, attribute.type, configInput);
|
|
9228
9228
|
} catch (error2) {
|
|
9229
9229
|
if (error2 instanceof Error) {
|
|
9230
9230
|
throw new Error(`Invalid config for ${attribute.type} attribute: ${error2.message}`);
|
|
@@ -10764,7 +10764,7 @@ var RelationPropertiesService = class extends BaseService {
|
|
|
10764
10764
|
buildZodSchema(propertySchema) {
|
|
10765
10765
|
const shape = {};
|
|
10766
10766
|
for (const def of propertySchema.definitions) {
|
|
10767
|
-
shape[def.name] =
|
|
10767
|
+
shape[def.name] = _chunk3WTK7ESHjs.createFormAttributeValidator.call(void 0, def);
|
|
10768
10768
|
}
|
|
10769
10769
|
return _zod.z.object(shape);
|
|
10770
10770
|
}
|
|
@@ -11957,9 +11957,9 @@ var RecordService = class extends BaseService {
|
|
|
11957
11957
|
);
|
|
11958
11958
|
if (_optionalChain([options, 'optionalAccess', _243 => _243.validate]) !== false) {
|
|
11959
11959
|
if (_optionalChain([options, 'optionalAccess', _244 => _244.allowDraft])) {
|
|
11960
|
-
|
|
11960
|
+
_chunk3WTK7ESHjs.validateDraftOrThrow.call(void 0, schema, normalizedData);
|
|
11961
11961
|
} else {
|
|
11962
|
-
|
|
11962
|
+
_chunk3WTK7ESHjs.validateObjectOrThrow.call(void 0, schema, normalizedData);
|
|
11963
11963
|
}
|
|
11964
11964
|
if (!_optionalChain([options, 'optionalAccess', _245 => _245.skipRelationValidation])) {
|
|
11965
11965
|
await this.relationService.validateRelationsOrThrow(schema, normalizedData);
|
|
@@ -11968,7 +11968,7 @@ var RecordService = class extends BaseService {
|
|
|
11968
11968
|
await this.userService.validateUsersOrThrow(schema, normalizedData);
|
|
11969
11969
|
}
|
|
11970
11970
|
}
|
|
11971
|
-
const completionStatus =
|
|
11971
|
+
const completionStatus = _chunk3WTK7ESHjs.computeRecordStatus.call(void 0, schema, normalizedData);
|
|
11972
11972
|
const label = await computeLabel(schema, normalizedData, this.labelResolver);
|
|
11973
11973
|
const record = await this.adapter.objectRecords.create({
|
|
11974
11974
|
objectId,
|
|
@@ -12029,7 +12029,8 @@ var RecordService = class extends BaseService {
|
|
|
12029
12029
|
}).catch(() => {
|
|
12030
12030
|
});
|
|
12031
12031
|
}
|
|
12032
|
-
|
|
12032
|
+
const enriched = await this.relationPropertiesService.enrichRecordsBatch([record], schema);
|
|
12033
|
+
return enriched[0];
|
|
12033
12034
|
}
|
|
12034
12035
|
// ============================================================================
|
|
12035
12036
|
// READ
|
|
@@ -12142,9 +12143,9 @@ var RecordService = class extends BaseService {
|
|
|
12142
12143
|
const normalizedMergedData = { ...existing.values, ...normalizedUpdate };
|
|
12143
12144
|
if (_optionalChain([options, 'optionalAccess', _257 => _257.validate]) !== false) {
|
|
12144
12145
|
if (_optionalChain([options, 'optionalAccess', _258 => _258.partial])) {
|
|
12145
|
-
|
|
12146
|
+
_chunk3WTK7ESHjs.validateDraftOrThrow.call(void 0, schema, normalizedMergedData);
|
|
12146
12147
|
} else {
|
|
12147
|
-
|
|
12148
|
+
_chunk3WTK7ESHjs.validateObjectOrThrow.call(void 0, schema, normalizedMergedData);
|
|
12148
12149
|
}
|
|
12149
12150
|
if (!_optionalChain([options, 'optionalAccess', _259 => _259.skipRelationValidation])) {
|
|
12150
12151
|
await this.relationService.validateRelationsOrThrow(schema, normalizedUpdate);
|
|
@@ -12153,7 +12154,7 @@ var RecordService = class extends BaseService {
|
|
|
12153
12154
|
await this.userService.validateUsersOrThrow(schema, normalizedUpdate);
|
|
12154
12155
|
}
|
|
12155
12156
|
}
|
|
12156
|
-
const completionStatus =
|
|
12157
|
+
const completionStatus = _chunk3WTK7ESHjs.computeRecordStatus.call(void 0, schema, normalizedMergedData);
|
|
12157
12158
|
const label = await computeLabel(schema, normalizedMergedData, this.labelResolver);
|
|
12158
12159
|
const updatePayload = {
|
|
12159
12160
|
...normalizedUpdate,
|
|
@@ -12238,7 +12239,8 @@ var RecordService = class extends BaseService {
|
|
|
12238
12239
|
}).catch(() => {
|
|
12239
12240
|
});
|
|
12240
12241
|
}
|
|
12241
|
-
|
|
12242
|
+
const enriched = await this.relationPropertiesService.enrichRecordsBatch([updated], schema);
|
|
12243
|
+
return enriched[0];
|
|
12242
12244
|
}
|
|
12243
12245
|
// ============================================================================
|
|
12244
12246
|
// DELETE
|
|
@@ -12486,14 +12488,14 @@ var RecordService = class extends BaseService {
|
|
|
12486
12488
|
*/
|
|
12487
12489
|
async validateData(objectId, data) {
|
|
12488
12490
|
const schema = await this.schemaService.getObjectSchema(objectId);
|
|
12489
|
-
return
|
|
12491
|
+
return _chunk3WTK7ESHjs.validateObject.call(void 0, schema, data);
|
|
12490
12492
|
}
|
|
12491
12493
|
/**
|
|
12492
12494
|
* Compute the completion status for given data without saving
|
|
12493
12495
|
*/
|
|
12494
12496
|
async computeStatus(objectId, data) {
|
|
12495
12497
|
const schema = await this.schemaService.getObjectSchema(objectId);
|
|
12496
|
-
return
|
|
12498
|
+
return _chunk3WTK7ESHjs.computeRecordStatus.call(void 0, schema, data);
|
|
12497
12499
|
}
|
|
12498
12500
|
/**
|
|
12499
12501
|
* Refresh the completion status of an existing record
|
|
@@ -12501,7 +12503,7 @@ var RecordService = class extends BaseService {
|
|
|
12501
12503
|
async refreshRecordStatus(recordId) {
|
|
12502
12504
|
const record = await this.getRecordOrThrow(recordId);
|
|
12503
12505
|
const schema = await this.schemaService.getObjectSchema(record.objectId);
|
|
12504
|
-
const newStatus =
|
|
12506
|
+
const newStatus = _chunk3WTK7ESHjs.computeRecordStatus.call(void 0, schema, record.values);
|
|
12505
12507
|
if (record.completionStatus !== newStatus) {
|
|
12506
12508
|
await this.adapter.objectRecords.update(recordId, {
|
|
12507
12509
|
__completionStatus: newStatus
|
|
@@ -14657,7 +14659,7 @@ var WorkflowService = class extends BaseService {
|
|
|
14657
14659
|
};
|
|
14658
14660
|
const validationResult = WorkflowDefinitionSchema.safeParse(definition);
|
|
14659
14661
|
if (!validationResult.success) {
|
|
14660
|
-
const errors =
|
|
14662
|
+
const errors = _chunk3WTK7ESHjs.formatZodErrors.call(void 0, validationResult.error).map((err) => err.message);
|
|
14661
14663
|
throw new SchemaError(
|
|
14662
14664
|
`Invalid workflow definition: ${errors.join(", ")}`,
|
|
14663
14665
|
SchemaErrorCode.VALIDATION_FAILED
|
|
@@ -14699,7 +14701,7 @@ var WorkflowService = class extends BaseService {
|
|
|
14699
14701
|
};
|
|
14700
14702
|
const validationResult = WorkflowDefinitionSchema.safeParse(updated);
|
|
14701
14703
|
if (!validationResult.success) {
|
|
14702
|
-
const errors =
|
|
14704
|
+
const errors = _chunk3WTK7ESHjs.formatZodErrors.call(void 0, validationResult.error).map((err) => err.message);
|
|
14703
14705
|
throw new SchemaError(
|
|
14704
14706
|
`Invalid workflow definition: ${errors.join(", ")}`,
|
|
14705
14707
|
SchemaErrorCode.VALIDATION_FAILED
|
|
@@ -14728,7 +14730,7 @@ var WorkflowService = class extends BaseService {
|
|
|
14728
14730
|
}
|
|
14729
14731
|
const validationResult = WorkflowDefinitionSchema.safeParse(existing);
|
|
14730
14732
|
if (!validationResult.success) {
|
|
14731
|
-
const errors =
|
|
14733
|
+
const errors = _chunk3WTK7ESHjs.formatZodErrors.call(void 0, validationResult.error).map((err) => err.message);
|
|
14732
14734
|
throw new SchemaError(
|
|
14733
14735
|
`Cannot publish invalid workflow: ${errors.join(", ")}`,
|
|
14734
14736
|
SchemaErrorCode.VALIDATION_FAILED
|
|
@@ -435,22 +435,43 @@ function createSingleRelationValidator(attr, messages = DEFAULT_VALIDATION_MESSA
|
|
|
435
435
|
const uuidSchema = z.uuid({
|
|
436
436
|
message: messages.invalidId(attr)
|
|
437
437
|
});
|
|
438
|
-
|
|
438
|
+
const nullableUuidSchema = z.union([uuidSchema, z.null()]);
|
|
439
|
+
return z.union([
|
|
440
|
+
nullableUuidSchema,
|
|
441
|
+
z.object({
|
|
442
|
+
id: uuidSchema,
|
|
443
|
+
props: z.record(z.string(), z.unknown()).optional()
|
|
444
|
+
}).passthrough()
|
|
445
|
+
// Allow additional properties (bilateral relations may have extra metadata)
|
|
446
|
+
]);
|
|
439
447
|
}
|
|
440
448
|
function createMultiRelationValidator(attr, messages = DEFAULT_VALIDATION_MESSAGES) {
|
|
441
449
|
const uuidSchema = z.uuid({
|
|
442
450
|
message: messages.invalidId(attr)
|
|
443
451
|
});
|
|
444
|
-
|
|
452
|
+
const itemSchema = z.union([
|
|
453
|
+
uuidSchema,
|
|
454
|
+
z.object({
|
|
455
|
+
id: uuidSchema,
|
|
456
|
+
props: z.record(z.string(), z.unknown()).optional()
|
|
457
|
+
}).passthrough()
|
|
458
|
+
// Allow additional properties
|
|
459
|
+
]);
|
|
460
|
+
let arraySchema = z.array(itemSchema);
|
|
445
461
|
if (attr.minItems !== void 0) {
|
|
446
462
|
arraySchema = arraySchema.min(attr.minItems, messages.minItems(attr, attr.minItems));
|
|
447
463
|
}
|
|
448
464
|
if (attr.maxItems !== void 0) {
|
|
449
465
|
arraySchema = arraySchema.max(attr.maxItems, messages.maxItems(attr, attr.maxItems));
|
|
450
466
|
}
|
|
451
|
-
return
|
|
452
|
-
(
|
|
453
|
-
|
|
467
|
+
return arraySchema.refine(
|
|
468
|
+
(items) => {
|
|
469
|
+
return items.every((item) => {
|
|
470
|
+
const id = extractRelationId(item);
|
|
471
|
+
return typeof id === "string" && uuidSchema.safeParse(id).success;
|
|
472
|
+
});
|
|
473
|
+
},
|
|
474
|
+
{ message: messages.invalidId(attr) }
|
|
454
475
|
);
|
|
455
476
|
}
|
|
456
477
|
function createRelationValidator(attr, messages = DEFAULT_VALIDATION_MESSAGES) {
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
validateDraftOrThrow,
|
|
13
13
|
validateObject,
|
|
14
14
|
validateObjectOrThrow
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-5SZ5OISG.mjs";
|
|
16
16
|
import {
|
|
17
17
|
__require
|
|
18
18
|
} from "./chunk-Y6FXYEAI.mjs";
|
|
@@ -12029,7 +12029,8 @@ var RecordService = class extends BaseService {
|
|
|
12029
12029
|
}).catch(() => {
|
|
12030
12030
|
});
|
|
12031
12031
|
}
|
|
12032
|
-
|
|
12032
|
+
const enriched = await this.relationPropertiesService.enrichRecordsBatch([record], schema);
|
|
12033
|
+
return enriched[0];
|
|
12033
12034
|
}
|
|
12034
12035
|
// ============================================================================
|
|
12035
12036
|
// READ
|
|
@@ -12238,7 +12239,8 @@ var RecordService = class extends BaseService {
|
|
|
12238
12239
|
}).catch(() => {
|
|
12239
12240
|
});
|
|
12240
12241
|
}
|
|
12241
|
-
|
|
12242
|
+
const enriched = await this.relationPropertiesService.enrichRecordsBatch([updated], schema);
|
|
12243
|
+
return enriched[0];
|
|
12242
12244
|
}
|
|
12243
12245
|
// ============================================================================
|
|
12244
12246
|
// DELETE
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField, b as FieldGroup, R as RelationGroup, D as DetailViewLayout, c as SidePanelConfig, G as Group, d as DetailViewDefinition, e as InstanceStatus, T as Tab, f as TableTab, C as CreateMode, g as FilterState, h as SortRule, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, k as ConditionGroup, l as ConditionRule, m as WorkflowNode, n as WorkflowDefinition, o as FlowRow, p as ListViewConfig, q as ListViewTab, V as ViewType, r as ViewDefinition, s as DocumentTemplate } from './runtime-
|
|
2
|
-
export { ae as AIBatchQuestion, af as AIBatchQuestionAnswer, ad as AIBatchQuestionOption, a8 as AIChatMessage, a7 as AIChatMessagePart, a2 as AIChatMessagePartType, au as AICompactionSummary, ak as AIConversation, g6 as AIConversationsRepository, as as AIMemoryEntry, ar as AIMemoryType, al as AIMessage, aj as AIMessageAttachment, _ as AIMessageRole, ap as AIProviderMetrics, ab as AIQuestion, ac as AIQuestionAnswer, aa as AIQuestionOption, a9 as AIQuestionType, at as AITenantPersona, $ as AIThinkingLevel, ah as AITodoItem, ai as AITodoList, ag as AITodoStatus, a1 as AIToolCall, am as AIToolCallRecord, a0 as AIToolCallStatus, ao as AIUsageMetrics, g7 as AIUsageMetricsRepository, an as AIUserMemory, g8 as AIUserMemoryRepository, cw as ActivityTab, bP as AddAttribute, gw as AddAttributeInput, bo as AdvancedFilterState, cf as AssignRoleInput, fX as AttributeChange, bO as AttributeMap, bK as AttributeSchema, g9 as AttributesRepository, aw as AuditAction, ax as AuditActorType, ay as AuditChange, aB as AuditListOptions, az as AuditLogEntry, ga as AuditRepository, av as AuditResourceType, hM as AuditService, aC as AuditServiceOptions, gs as BaseRepository, gr as BaseService, B as BoundingBox, el as CacheAdapter, ej as CacheKeyType, em as CacheOptions, cC as CalendarViewConfig, cG as CalendarViewDefinition, dm as CanvasViewport, ba as CheckboxFilterOperator, fo as ConditionExecutor, c$ as ConditionNode, de as ConditionOperator, cJ as ConfigOverrides, aq as CreateAIMessageInput, aA as CreateAuditLogInput, gv as CreateCustomObjectInput, iI as CreateDBAttribute, iE as CreateDBObject, iU as CreateDBView, iY as CreateDBViewOverlay, i$ as CreateDBWorkflow, j8 as CreateDBWorkflowAccessGrant, j2 as CreateDBWorkflowInstance, j5 as CreateDBWorkflowInvitation, aV as CreateDocument, aH as CreateDocumentGenerationTemplate, aZ as CreateDocumentSlot, aX as CreateDocumentTemplate, b6 as CreateFile, dK as CreateGrantInput, hq as CreateGrantResult, dD as CreateInvitationInput, dE as CreateInvitationResult, iL as CreateObjectRecord, ce as CreatePermissionInput, a$ as CreateProcessingJob, h$ as CreateRecordDocumentInput, i0 as CreateRecordDocumentResult, cc as CreateRoleInput, E as CreateSignatureInput, cm as CreateUserProfile, i9 as CreateViewInput, hD as CreateWorkflowInput, bh as CurrencyFilterValue, bT as CustomAttributeValue, cv as CustomTab, iH as DBAttribute, iD as DBObject, iT as DBView, iX as DBViewOverlay, i_ as DBWorkflow, j7 as DBWorkflowAccessGrant, j1 as DBWorkflowInstance, j4 as DBWorkflowInvitation, iu as DEFAULT_LABEL_FALLBACK, e3 as DEFAULT_THEME, ec as DatabaseAdapter, bb as DateFilterOperator, cB as DetailViewConfig, aO as Document, aL as DocumentAutoProcessing, Y as DocumentData, fp as DocumentExecutor, hP as DocumentGenerationNotConfiguredError, hQ as DocumentGenerationService, aG as DocumentGenerationTemplate, gb as DocumentGenerationTemplateListOptions, hO as DocumentGenerationTemplateNotFoundError, gc as DocumentGenerationTemplatesRepository, gd as DocumentJobsRepository, b1 as DocumentListOptions, d0 as DocumentNode, hR as DocumentProcessingConfig, hk as DocumentProcessingHook, hj as DocumentProcessingHookOptions, hS as DocumentProcessingService, hW as DocumentRenderError, hU as DocumentRendererOptions, hY as DocumentRendererService, i2 as DocumentService, i1 as DocumentServiceOptions, aQ as DocumentSlot, aK as DocumentSlotDefinition, ge as DocumentSlotsRepository, aP as DocumentStatus, b2 as DocumentTemplateListOptions, hZ as DocumentTemplateService, gg as DocumentTemplatesRepository, gf as DocumentsRepository, cz as DocumentsTab, c9 as EffectivePermissions, fq as EndExecutor, d1 as EndNode, eI as EvaluationResult, eJ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, bl as ExtendedFilterRule, c1 as ExtractAttributes, c3 as ExtractObjectRecord, c4 as ExtractObjectRecordWithCustom, bX as ExtractRecord, bZ as ExtractRecordInput, b_ as ExtractRecordInputStrict, bY as ExtractRecordStrict, b$ as ExtractRecordUpdate, c0 as ExtractRecordUpdateStrict, aN as ExtractionField, aM as ExtractionMapping, eW as FeatureFlagsContext, eO as FeatureFlagsContextError, er as FetchResult, b5 as File, ie as FileContent, iS as FileListOptions, i4 as FileService, i3 as FileServiceOptions, b4 as FileVisibility, gh as FilesRepository, bm as FilterCombinator, bn as FilterGroup, bf as FilterOperator, bk as FilterRule, bj as FilterValue, bA as FlowDefinition, bx as FlowPage, by as FlowRelation, bw as FlowRowField, bv as FlowSlot, bz as FlowStatus, cy as FlowsTab, dW as FormContextResponse, cq as FormDensity, fr as FormExecutor, dX as FormFieldContext, d2 as FormFieldRef, dY as FormFieldRow, d3 as FormNode, dZ as FormNodeInfo, cr as FormTab, es as FormattedRecord, gX as FormulaResolverService, gW as FormulaResolverServiceOptions, fF as FormulaResult, is as FullSyncOptions, ir as FullSyncResult, cE as GalleryViewConfig, cI as GalleryViewDefinition, dR as GeneratedDocument, bI as GeocodingAdapter, bF as GeocodingAutocompleteParams, bH as GeocodingParams, i5 as GeocodingService, bE as GeocodingSuggestion, gL as GetRelationOptionsParams, ic as GetViewOptions, ib as GetViewsOptions, iP as GlobalSearchGroupedOptions, iR as GlobalSearchGroupedResult, iO as GlobalSearchOptions, iQ as GlobalSearchResultItem, i6 as GlobalSearchService, hm as GrantExpiredError, hl as GrantNotFoundError, hn as GrantRevokedError, hp as GrantServiceConfig, et as GroupedFetchResult, fY as HookContext, fZ as HookDefinition, f_ as HookHandler, g1 as HookRegistry, f$ as HookType, gS as HybridRelationValue, Q as IdentityVerificationAdapter, bQ as InferRecord, bL as InferRecordFromSchema, bR as InferRecordInput, bS as InferRecordUpdate, bM as InferRecordWithRequirements, eu as InsertOptions, fJ as InvalidPathError, ct as InverseSource, hz as InvitationAlreadyAcceptedError, hy as InvitationExpiredError, hx as InvitationNotFoundError, hA as InvitationRevokedError, hw as InvitationServiceConfig, dF as InvitationStatus, co as InviteUserInput, ee as JwtVerificationResult, ha as LabelResolver, iM as ListOptions, cA as ListViewLayout, ef as MagicLinkPayload, fK as MaxDepthExceededError, g3 as MockStores, gQ as MultiRelationValue, bd as MultiselectFilterOperator, bt as NO_VALUE_OPERATORS, bs as NoValueOperator, fi as NodeExecutor, dn as NodePosition, eq as NoopCacheAdapter, bJ as NoopGeocodingAdapter, g0 as NoopHookRegistry, b9 as NumberFilterOperator, br as OPERATORS_BY_TYPE, ca as ObjectPermissions, gi as ObjectRecordsRepository, gz as ObjectSchemaService, gy as ObjectSchemaServiceOptions, gj as ObjectsRepository, t as OcrAdapter, u as OcrInput, v as OcrOptions, x as OcrPage, w as OcrResult, y as OcrTextBlock, ja as OperationResult, fO as PathCardinality, fP as PathSegment, fQ as PathSegmentType, aE as PdfTemplateField, dv as PendingAction, aJ as PendingDocumentRequest, c7 as Permission, c5 as PermissionScope, i8 as PermissionService, i7 as PermissionServiceOptions, gk as PermissionsRepository, bi as PhoneFilterValue, cg as PolicyContext, g5 as PolicyRegistry, ci as PolicyViolationError, aS as ProcessingJob, aU as ProcessingJobStatus, aT as ProcessingJobType, eG as QueryBuilder, eH as QueryBuilderOptions, ev as QueryBuilderState, eC as QueryMultipleResultsError, eD as QueryNoResultError, gD as QueryOptions, gF as QueryResult, bq as QueryState, d_ as ReadOnlyReason, a6 as ReasoningPartData, h_ as RecordDocumentsResult, bV as RecordMetadata, ch as RecordPolicy, gG as RecordQueryService, gC as RecordQueryServiceOptions, gU as RecordResolverService, gB as RecordService, gA as RecordServiceOptions, ew as RegistryMap, ex as RegistryObjectNames, e9 as RelationAttributeInput, ea as RelationAttributeRow, eb as RelationAttributesRepository, be as RelationFilterOperator, iB as RelationLabelResolver, gJ as RelationOption, gK as RelationOptionsResponse, gT as RelationPropertiesService, gP as RelationService, gM as RelationServiceOptions, cs as RelationSource, gI as RelationValidationError, gH as RelationValidationResult, bg as RelativeDateValue, hT as RenderDocumentInput, hV as RenderDocumentResult, gN as ResolveIdsBatchRequest, gO as ResolveIdsBatchResponse, gV as ResolvedRelations, ht as ResumeWorkflowInput, bG as ReverseGeocodingParams, cx as RichtextTab, c6 as Role, hi as RollupCascadeContext, gY as RollupResult, h0 as RollupScheduler, g$ as RollupSchedulerOptions, g_ as RollupService, gZ as RollupServiceOptions, eE as SHORTCUT_TO_FILTER_OPERATOR, f2 as SchemaContext, gt as SchemaContextAware, gu as SchemaContextAwareRepository, fR as SchemaResolver, iN as SearchOptions, gE as SearchQueryOptions, bc as SelectFilterOperator, ey as ShortcutOperator, z as SignatureAdapter, J as SignaturePosition, K as SignatureRequestResult, P as SignatureStatus, M as SignatureStatusResult, ii as SignedUrlOptions, H as SignerRequest, N as SignerStatus, gR as SingleRelationValue, aR as SlotStatus, bp as SortDirection, fs as StartExecutor, d4 as StartNode, hs as StartWorkflowInput, ij as StorageAdapter, hX as StorageDownloadNotSupportedError, b3 as StorageProvider, ig as StorageUploadInput, ih as StorageUploadResult, im as SyncOptions, il as SyncResult, bW as SystemFields, cb as SystemPermissions, cp as TabType, cu as TableSource, aF as TemplateSource, f9 as TenantContext, eN as TenantContextError, b8 as TextFilterOperator, a3 as TextPartData, e0 as ThemeColors, e1 as ThemeLogo, e2 as ThemeTypography, a5 as ThinkingPartData, cD as TimelineViewConfig, cH as TimelineViewDefinition, ho as TokenRevokedError, a4 as ToolPartData, fV as TraversalOptions, fW as TraversalResult, bN as TypedAttribute, c2 as TypedObjectRecord, iJ as UpdateDBAttribute, iF as UpdateDBObject, iV as UpdateDBView, iZ as UpdateDBViewOverlay, j0 as UpdateDBWorkflow, j9 as UpdateDBWorkflowAccessGrant, j3 as UpdateDBWorkflowInstance, j6 as UpdateDBWorkflowInvitation, aW as UpdateDocument, aI as UpdateDocumentGenerationTemplate, a_ as UpdateDocumentSlot, aY as UpdateDocumentTemplate, b7 as UpdateFile, gx as UpdateObjectInput, b0 as UpdateProcessingJob, cd as UpdateRoleInput, cn as UpdateUserProfile, ia as UpdateViewInput, hE as UpdateWorkflowInput, ik as UploadFileInput, iK as UpsertDBAttribute, iG as UpsertDBObject, iW as UpsertDBView, cl as UserProfile, hL as UserProfileService, hK as UserProfileServiceOptions, gl as UserProfilesRepository, cj as UserRole, c8 as UserRoleAssignment, hJ as UserService, ck as UserStatus, hI as UserValidationError, hH as UserValidationResult, aD as VariableMapping, Z as VerificationCheck, X as VerificationResult, U as VerifyInput, cF as ViewConfig, cK as ViewOverlay, e8 as ViewOverlaysRepository, id as ViewService, jc as ViewSyncLogger, jd as ViewSyncOptions, jb as ViewSyncResult, gm as ViewsRepository, bU as WithCustomAttributes, dL as WorkflowAccessGrant, hr as WorkflowAccessGrantService, gn as WorkflowAccessGrantsRepository, d$ as WorkflowAccessMode, eg as WorkflowAccessPayload, dw as WorkflowError, dS as WorkflowExecutionContext, dx as WorkflowInstance, hv as WorkflowInstanceService, hu as WorkflowInstanceServiceOptions, go as WorkflowInstancesRepository, dG as WorkflowInvitation, hB as WorkflowInvitationService, gp as WorkflowInvitationsRepository, eh as WorkflowJwtConfig, ei as WorkflowJwtPayload, ed as WorkflowJwtService, dp as WorkflowLayout, d5 as WorkflowNodeType, hC as WorkflowRelationService, hG as WorkflowService, hF as WorkflowServiceOptions, dq as WorkflowSlot, dr as WorkflowStatus, dy as WorkflowTransition, gq as WorkflowsRepository, eX as addSchemaToContext, df as and, h1 as applyDefaultValues, hN as buildAuditChanges, h4 as buildPolicyContext, en as cacheKeys, eo as cacheTtl, dM as canAccessNode, dz as canResumeInstance, h2 as checkPermission, h5 as checkRecordAccess, h7 as checkRecordDeleteOrThrow, h6 as checkRecordModifyOrThrow, h8 as checkSharedObjectWriteAccess, fj as complete, h9 as computeLabel, iC as computeLabelWithRelations, hd as createContextForCreate, hf as createContextForDelete, hg as createContextForRestore, he as createContextForUpdate, fa as createDefaultExecutorRegistry, ez as createDefaultState, dT as createEmptyContext, g2 as createMockAdapter, eF as createQueryBuilder, dA as createStartTransition, g4 as defaultPolicyRegistry, ep as defaultTtl, hc as enrichRecordsWithFormulas, iy as enrichValuesForDisplay, iz as enrichValuesWithSelectLabels, hb as enrichWithFormulas, dg as eq, fk as error, eL as evaluate, eK as evaluateCondition, ft as evaluateFormula, fu as evaluateFormulaAttribute, fv as evaluateFormulaAttributeWithRelations, fw as evaluateFormulaWithRelations, fx as evaluateFormulaWithResult, eM as evaluateWithTrace, ix as extractAttributeNames, fy as extractFormulaVariables, iA as extractRelationIds, fz as extractRelationNames, fA as extractRelationReferences, fB as flattenRelationsForEval, fC as formatFormulaResult, eA as formatRecord, eB as formatRecords, e4 as generateCssVariables, f3 as getContext, dU as getContextValue, fb as getDefaultExecutorRegistry, eP as getFeatureFlags, eQ as getFeatureValue, d6 as getNodeOutputs, fG as getPathDepth, h3 as getPolicy, fH as getRelationPath, eY as getSchemaByNameFromContext, eZ as getSchemaContext, e_ as getSchemaFromContext, iq as getSyncPreview, fI as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, ji as getViewSeedPreview, jj as getViewSyncPreview, f6 as hasContext, eR as hasFeatureFlagsContext, fD as hasRelationReferences, e$ as hasSchemaContext, ek as hashOptions, dh as inValues, cX as isActivityTab, d7 as isAdvancedFormNode, cN as isCalendarView, di as isConditionGroup, d8 as isConditionNode, dj as isConditionRule, cW as isCustomTab, cL as isDetailView, d9 as isDocumentNode, c_ as isDocumentsTab, da as isEndNode, eS as isFeatureEnabled, cQ as isFieldGroup, bB as isFlowDefinition, bC as isFlowPublished, cZ as isFlowsTab, db as isFormNode, cS as isFormTab, cP as isGalleryView, dN as isGrantExpired, dO as isGrantRevoked, dP as isGrantValid, dB as isInstanceTerminal, dC as isInstanceWaiting, cV as isInverseSourceTab, dH as isInvitationAccepted, dI as isInvitationExpired, dJ as isInvitationValid, iw as isLabelExpression, cM as isListView, bu as isNoValueOperator, cR as isRelationGroup, cU as isRelationSourceTab, cY as isRichtextTab, dc as isSimpleFormNode, dd as isStartNode, bD as isSystemFlow, ds as isSystemWorkflow, cT as isTableTab, cO as isTimelineView, dQ as isTokenRevoked, dt as isWorkflowDefinition, du as isWorkflowPublished, e5 as mergeWithDefaults, dk as neq, dl as or, fL as parsePath, fM as pathHasManyCardinality, hh as recalculateParentRollups, e6 as registry, iv as renderLabelExpression, fS as resolveMultiplePaths, fT as resolveSingleValue, f7 as runWithContext, eT as runWithFeatureFlags, f0 as runWithMergedSchemaContext, f1 as runWithSchemaContext, je as seedRegistryViews, dV as setContextValue, fm as success, it as syncAll, io as syncNativeObjects, jf as syncNativeViews, fU as traversePath, eU as tryGetFeatureValue, fE as validateFormulaExpression, fN as validatePath, ip as verifyNativeObjectsSync, jh as verifyNativeViewsSync, jg as verifyRegistryViewsSeeded, e7 as viewRegistry, fn as wait, eV as withFeatureFlags, f8 as withTenantContext } from './runtime-fj4EKCWH.mjs';
|
|
3
|
-
import { D as DateAttribute, U as UserAttribute, a as DocumentAttribute, A as Attribute, P as Phone, F as FeatureGate, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, d as PhoneAttribute, e as CurrencyAttribute, O as Option, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, g as FileAttribute, h as RatingAttribute, i as RelationAttribute, B as BilateralConfig, j as SingleRelationAttribute, k as MultiRelationAttribute, l as RelationTarget, m as FormulaAttribute, n as FormulaReturnType, o as RollupAttribute, p as RollupFunction, q as AttributeType, r as ObjectDefinition, s as FlagValueType, t as FeatureFlagDefinition, u as FlagLevel, v as FeatureFlagsRepository, w as StaticFlagDefault, x as ResolvedFlag } from './validators-
|
|
4
|
-
export { z as AttributeGroup, E as BaseAttribute, a6 as CompletionStatus, J as Currency, af as DEFAULT_VALIDATION_MESSAGES, H as DateFormat, I as DateValue, a9 as FORBIDDEN_PROPERTY_TYPES, _ as FeatureFlagsConfig, Z as FlagOverride, aa as ForbiddenPropertyType, K as Location, Q as LocationGranularity, G as NumberUnit, a5 as ObjectAttribute, a7 as ObjectRecord, ab as PropertyAttribute, ac as PropertySchema, a8 as PropertyType, V as RELATION_TARGET_ANY, $ as RESERVED_ATTRIBUTE_NAMES, a1 as ReservedAttributeName, a0 as SYSTEM_FIELD_NAMES, a4 as SharingMode, y as StatusGroup, a2 as SystemFieldName, a3 as Timestamps, ae as ValidationMessages, a$ as ValidationResult, az as attributeConfigSchemas, ak as checkboxConfigSchema, b8 as computeRecordStatus, aY as createAttributeValidator, aG as createCheckboxValidator, aJ as createCurrencyValidator, aH as createDateValidator, b3 as createDraftValidator, aO as createFileValidator, aZ as createFormAttributeValidator, aU as createFormulaValidator, aN as createLocationValidator, aR as createMultiRelationValidator, aM as createMultiselectValidator, aF as createNumberValidator, a_ as createObjectValidator, aI as createPhoneValidator, aT as createRatingValidator, aS as createRelationValidator, aX as createRichtextValidator, aV as createRollupValidator, aL as createSelectValidator, aQ as createSingleRelationValidator, aK as createStatusValidator, aW as createTextAreaValidator, aE as createTextValidator, aP as createUserValidator, an as currencyConfigSchema, al as dateConfigSchema, ay as documentConfigSchema, as as fileConfigSchema, ad as formatZodErrors, aw as formulaConfigSchema, aA as getAttributeConfigSchema, b6 as getMissingRequiredAttributes, Y as inferInverseCardinality, X as isBilateralRelation, b7 as isRecordComplete, W as isUniversalRelation, ap as locationConfigSchema, ar as multiselectConfigSchema, aj as numberConfigSchema, aC as parseAttributeConfig, am as phoneConfigSchema, av as ratingConfigSchema, au as relationConfigSchema, ai as richtextConfigSchema, ax as rollupConfigSchema, aD as safeParseAttributeConfig, aq as selectConfigSchema, ao as statusConfigSchema, ag as textConfigSchema, ah as textareaConfigSchema, at as userConfigSchema, b0 as validateAttribute, aB as validateAttributeConfig, b4 as validateDraft, b5 as validateDraftOrThrow, b1 as validateObject, b2 as validateObjectOrThrow } from './validators-
|
|
1
|
+
import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField, b as FieldGroup, R as RelationGroup, D as DetailViewLayout, c as SidePanelConfig, G as Group, d as DetailViewDefinition, e as InstanceStatus, T as Tab, f as TableTab, C as CreateMode, g as FilterState, h as SortRule, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, k as ConditionGroup, l as ConditionRule, m as WorkflowNode, n as WorkflowDefinition, o as FlowRow, p as ListViewConfig, q as ListViewTab, V as ViewType, r as ViewDefinition, s as DocumentTemplate } from './runtime-DzpQ5gRG.mjs';
|
|
2
|
+
export { ae as AIBatchQuestion, af as AIBatchQuestionAnswer, ad as AIBatchQuestionOption, a8 as AIChatMessage, a7 as AIChatMessagePart, a2 as AIChatMessagePartType, au as AICompactionSummary, ak as AIConversation, g6 as AIConversationsRepository, as as AIMemoryEntry, ar as AIMemoryType, al as AIMessage, aj as AIMessageAttachment, _ as AIMessageRole, ap as AIProviderMetrics, ab as AIQuestion, ac as AIQuestionAnswer, aa as AIQuestionOption, a9 as AIQuestionType, at as AITenantPersona, $ as AIThinkingLevel, ah as AITodoItem, ai as AITodoList, ag as AITodoStatus, a1 as AIToolCall, am as AIToolCallRecord, a0 as AIToolCallStatus, ao as AIUsageMetrics, g7 as AIUsageMetricsRepository, an as AIUserMemory, g8 as AIUserMemoryRepository, cw as ActivityTab, bP as AddAttribute, gw as AddAttributeInput, bo as AdvancedFilterState, cf as AssignRoleInput, fX as AttributeChange, bO as AttributeMap, bK as AttributeSchema, g9 as AttributesRepository, aw as AuditAction, ax as AuditActorType, ay as AuditChange, aB as AuditListOptions, az as AuditLogEntry, ga as AuditRepository, av as AuditResourceType, hM as AuditService, aC as AuditServiceOptions, gs as BaseRepository, gr as BaseService, B as BoundingBox, el as CacheAdapter, ej as CacheKeyType, em as CacheOptions, cC as CalendarViewConfig, cG as CalendarViewDefinition, dm as CanvasViewport, ba as CheckboxFilterOperator, fo as ConditionExecutor, c$ as ConditionNode, de as ConditionOperator, cJ as ConfigOverrides, aq as CreateAIMessageInput, aA as CreateAuditLogInput, gv as CreateCustomObjectInput, iI as CreateDBAttribute, iE as CreateDBObject, iU as CreateDBView, iY as CreateDBViewOverlay, i$ as CreateDBWorkflow, j8 as CreateDBWorkflowAccessGrant, j2 as CreateDBWorkflowInstance, j5 as CreateDBWorkflowInvitation, aV as CreateDocument, aH as CreateDocumentGenerationTemplate, aZ as CreateDocumentSlot, aX as CreateDocumentTemplate, b6 as CreateFile, dK as CreateGrantInput, hq as CreateGrantResult, dD as CreateInvitationInput, dE as CreateInvitationResult, iL as CreateObjectRecord, ce as CreatePermissionInput, a$ as CreateProcessingJob, h$ as CreateRecordDocumentInput, i0 as CreateRecordDocumentResult, cc as CreateRoleInput, E as CreateSignatureInput, cm as CreateUserProfile, i9 as CreateViewInput, hD as CreateWorkflowInput, bh as CurrencyFilterValue, bT as CustomAttributeValue, cv as CustomTab, iH as DBAttribute, iD as DBObject, iT as DBView, iX as DBViewOverlay, i_ as DBWorkflow, j7 as DBWorkflowAccessGrant, j1 as DBWorkflowInstance, j4 as DBWorkflowInvitation, iu as DEFAULT_LABEL_FALLBACK, e3 as DEFAULT_THEME, ec as DatabaseAdapter, bb as DateFilterOperator, cB as DetailViewConfig, aO as Document, aL as DocumentAutoProcessing, Y as DocumentData, fp as DocumentExecutor, hP as DocumentGenerationNotConfiguredError, hQ as DocumentGenerationService, aG as DocumentGenerationTemplate, gb as DocumentGenerationTemplateListOptions, hO as DocumentGenerationTemplateNotFoundError, gc as DocumentGenerationTemplatesRepository, gd as DocumentJobsRepository, b1 as DocumentListOptions, d0 as DocumentNode, hR as DocumentProcessingConfig, hk as DocumentProcessingHook, hj as DocumentProcessingHookOptions, hS as DocumentProcessingService, hW as DocumentRenderError, hU as DocumentRendererOptions, hY as DocumentRendererService, i2 as DocumentService, i1 as DocumentServiceOptions, aQ as DocumentSlot, aK as DocumentSlotDefinition, ge as DocumentSlotsRepository, aP as DocumentStatus, b2 as DocumentTemplateListOptions, hZ as DocumentTemplateService, gg as DocumentTemplatesRepository, gf as DocumentsRepository, cz as DocumentsTab, c9 as EffectivePermissions, fq as EndExecutor, d1 as EndNode, eI as EvaluationResult, eJ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, bl as ExtendedFilterRule, c1 as ExtractAttributes, c3 as ExtractObjectRecord, c4 as ExtractObjectRecordWithCustom, bX as ExtractRecord, bZ as ExtractRecordInput, b_ as ExtractRecordInputStrict, bY as ExtractRecordStrict, b$ as ExtractRecordUpdate, c0 as ExtractRecordUpdateStrict, aN as ExtractionField, aM as ExtractionMapping, eW as FeatureFlagsContext, eO as FeatureFlagsContextError, er as FetchResult, b5 as File, ie as FileContent, iS as FileListOptions, i4 as FileService, i3 as FileServiceOptions, b4 as FileVisibility, gh as FilesRepository, bm as FilterCombinator, bn as FilterGroup, bf as FilterOperator, bk as FilterRule, bj as FilterValue, bA as FlowDefinition, bx as FlowPage, by as FlowRelation, bw as FlowRowField, bv as FlowSlot, bz as FlowStatus, cy as FlowsTab, dW as FormContextResponse, cq as FormDensity, fr as FormExecutor, dX as FormFieldContext, d2 as FormFieldRef, dY as FormFieldRow, d3 as FormNode, dZ as FormNodeInfo, cr as FormTab, es as FormattedRecord, gX as FormulaResolverService, gW as FormulaResolverServiceOptions, fF as FormulaResult, is as FullSyncOptions, ir as FullSyncResult, cE as GalleryViewConfig, cI as GalleryViewDefinition, dR as GeneratedDocument, bI as GeocodingAdapter, bF as GeocodingAutocompleteParams, bH as GeocodingParams, i5 as GeocodingService, bE as GeocodingSuggestion, gL as GetRelationOptionsParams, ic as GetViewOptions, ib as GetViewsOptions, iP as GlobalSearchGroupedOptions, iR as GlobalSearchGroupedResult, iO as GlobalSearchOptions, iQ as GlobalSearchResultItem, i6 as GlobalSearchService, hm as GrantExpiredError, hl as GrantNotFoundError, hn as GrantRevokedError, hp as GrantServiceConfig, et as GroupedFetchResult, fY as HookContext, fZ as HookDefinition, f_ as HookHandler, g1 as HookRegistry, f$ as HookType, gS as HybridRelationValue, Q as IdentityVerificationAdapter, bQ as InferRecord, bL as InferRecordFromSchema, bR as InferRecordInput, bS as InferRecordUpdate, bM as InferRecordWithRequirements, eu as InsertOptions, fJ as InvalidPathError, ct as InverseSource, hz as InvitationAlreadyAcceptedError, hy as InvitationExpiredError, hx as InvitationNotFoundError, hA as InvitationRevokedError, hw as InvitationServiceConfig, dF as InvitationStatus, co as InviteUserInput, ee as JwtVerificationResult, ha as LabelResolver, iM as ListOptions, cA as ListViewLayout, ef as MagicLinkPayload, fK as MaxDepthExceededError, g3 as MockStores, gQ as MultiRelationValue, bd as MultiselectFilterOperator, bt as NO_VALUE_OPERATORS, bs as NoValueOperator, fi as NodeExecutor, dn as NodePosition, eq as NoopCacheAdapter, bJ as NoopGeocodingAdapter, g0 as NoopHookRegistry, b9 as NumberFilterOperator, br as OPERATORS_BY_TYPE, ca as ObjectPermissions, gi as ObjectRecordsRepository, gz as ObjectSchemaService, gy as ObjectSchemaServiceOptions, gj as ObjectsRepository, t as OcrAdapter, u as OcrInput, v as OcrOptions, x as OcrPage, w as OcrResult, y as OcrTextBlock, ja as OperationResult, fO as PathCardinality, fP as PathSegment, fQ as PathSegmentType, aE as PdfTemplateField, dv as PendingAction, aJ as PendingDocumentRequest, c7 as Permission, c5 as PermissionScope, i8 as PermissionService, i7 as PermissionServiceOptions, gk as PermissionsRepository, bi as PhoneFilterValue, cg as PolicyContext, g5 as PolicyRegistry, ci as PolicyViolationError, aS as ProcessingJob, aU as ProcessingJobStatus, aT as ProcessingJobType, eG as QueryBuilder, eH as QueryBuilderOptions, ev as QueryBuilderState, eC as QueryMultipleResultsError, eD as QueryNoResultError, gD as QueryOptions, gF as QueryResult, bq as QueryState, d_ as ReadOnlyReason, a6 as ReasoningPartData, h_ as RecordDocumentsResult, bV as RecordMetadata, ch as RecordPolicy, gG as RecordQueryService, gC as RecordQueryServiceOptions, gU as RecordResolverService, gB as RecordService, gA as RecordServiceOptions, ew as RegistryMap, ex as RegistryObjectNames, e9 as RelationAttributeInput, ea as RelationAttributeRow, eb as RelationAttributesRepository, be as RelationFilterOperator, iB as RelationLabelResolver, gJ as RelationOption, gK as RelationOptionsResponse, gT as RelationPropertiesService, gP as RelationService, gM as RelationServiceOptions, cs as RelationSource, gI as RelationValidationError, gH as RelationValidationResult, bg as RelativeDateValue, hT as RenderDocumentInput, hV as RenderDocumentResult, gN as ResolveIdsBatchRequest, gO as ResolveIdsBatchResponse, gV as ResolvedRelations, ht as ResumeWorkflowInput, bG as ReverseGeocodingParams, cx as RichtextTab, c6 as Role, hi as RollupCascadeContext, gY as RollupResult, h0 as RollupScheduler, g$ as RollupSchedulerOptions, g_ as RollupService, gZ as RollupServiceOptions, eE as SHORTCUT_TO_FILTER_OPERATOR, f2 as SchemaContext, gt as SchemaContextAware, gu as SchemaContextAwareRepository, fR as SchemaResolver, iN as SearchOptions, gE as SearchQueryOptions, bc as SelectFilterOperator, ey as ShortcutOperator, z as SignatureAdapter, J as SignaturePosition, K as SignatureRequestResult, P as SignatureStatus, M as SignatureStatusResult, ii as SignedUrlOptions, H as SignerRequest, N as SignerStatus, gR as SingleRelationValue, aR as SlotStatus, bp as SortDirection, fs as StartExecutor, d4 as StartNode, hs as StartWorkflowInput, ij as StorageAdapter, hX as StorageDownloadNotSupportedError, b3 as StorageProvider, ig as StorageUploadInput, ih as StorageUploadResult, im as SyncOptions, il as SyncResult, bW as SystemFields, cb as SystemPermissions, cp as TabType, cu as TableSource, aF as TemplateSource, f9 as TenantContext, eN as TenantContextError, b8 as TextFilterOperator, a3 as TextPartData, e0 as ThemeColors, e1 as ThemeLogo, e2 as ThemeTypography, a5 as ThinkingPartData, cD as TimelineViewConfig, cH as TimelineViewDefinition, ho as TokenRevokedError, a4 as ToolPartData, fV as TraversalOptions, fW as TraversalResult, bN as TypedAttribute, c2 as TypedObjectRecord, iJ as UpdateDBAttribute, iF as UpdateDBObject, iV as UpdateDBView, iZ as UpdateDBViewOverlay, j0 as UpdateDBWorkflow, j9 as UpdateDBWorkflowAccessGrant, j3 as UpdateDBWorkflowInstance, j6 as UpdateDBWorkflowInvitation, aW as UpdateDocument, aI as UpdateDocumentGenerationTemplate, a_ as UpdateDocumentSlot, aY as UpdateDocumentTemplate, b7 as UpdateFile, gx as UpdateObjectInput, b0 as UpdateProcessingJob, cd as UpdateRoleInput, cn as UpdateUserProfile, ia as UpdateViewInput, hE as UpdateWorkflowInput, ik as UploadFileInput, iK as UpsertDBAttribute, iG as UpsertDBObject, iW as UpsertDBView, cl as UserProfile, hL as UserProfileService, hK as UserProfileServiceOptions, gl as UserProfilesRepository, cj as UserRole, c8 as UserRoleAssignment, hJ as UserService, ck as UserStatus, hI as UserValidationError, hH as UserValidationResult, aD as VariableMapping, Z as VerificationCheck, X as VerificationResult, U as VerifyInput, cF as ViewConfig, cK as ViewOverlay, e8 as ViewOverlaysRepository, id as ViewService, jc as ViewSyncLogger, jd as ViewSyncOptions, jb as ViewSyncResult, gm as ViewsRepository, bU as WithCustomAttributes, dL as WorkflowAccessGrant, hr as WorkflowAccessGrantService, gn as WorkflowAccessGrantsRepository, d$ as WorkflowAccessMode, eg as WorkflowAccessPayload, dw as WorkflowError, dS as WorkflowExecutionContext, dx as WorkflowInstance, hv as WorkflowInstanceService, hu as WorkflowInstanceServiceOptions, go as WorkflowInstancesRepository, dG as WorkflowInvitation, hB as WorkflowInvitationService, gp as WorkflowInvitationsRepository, eh as WorkflowJwtConfig, ei as WorkflowJwtPayload, ed as WorkflowJwtService, dp as WorkflowLayout, d5 as WorkflowNodeType, hC as WorkflowRelationService, hG as WorkflowService, hF as WorkflowServiceOptions, dq as WorkflowSlot, dr as WorkflowStatus, dy as WorkflowTransition, gq as WorkflowsRepository, eX as addSchemaToContext, df as and, h1 as applyDefaultValues, hN as buildAuditChanges, h4 as buildPolicyContext, en as cacheKeys, eo as cacheTtl, dM as canAccessNode, dz as canResumeInstance, h2 as checkPermission, h5 as checkRecordAccess, h7 as checkRecordDeleteOrThrow, h6 as checkRecordModifyOrThrow, h8 as checkSharedObjectWriteAccess, fj as complete, h9 as computeLabel, iC as computeLabelWithRelations, hd as createContextForCreate, hf as createContextForDelete, hg as createContextForRestore, he as createContextForUpdate, fa as createDefaultExecutorRegistry, ez as createDefaultState, dT as createEmptyContext, g2 as createMockAdapter, eF as createQueryBuilder, dA as createStartTransition, g4 as defaultPolicyRegistry, ep as defaultTtl, hc as enrichRecordsWithFormulas, iy as enrichValuesForDisplay, iz as enrichValuesWithSelectLabels, hb as enrichWithFormulas, dg as eq, fk as error, eL as evaluate, eK as evaluateCondition, ft as evaluateFormula, fu as evaluateFormulaAttribute, fv as evaluateFormulaAttributeWithRelations, fw as evaluateFormulaWithRelations, fx as evaluateFormulaWithResult, eM as evaluateWithTrace, ix as extractAttributeNames, fy as extractFormulaVariables, iA as extractRelationIds, fz as extractRelationNames, fA as extractRelationReferences, fB as flattenRelationsForEval, fC as formatFormulaResult, eA as formatRecord, eB as formatRecords, e4 as generateCssVariables, f3 as getContext, dU as getContextValue, fb as getDefaultExecutorRegistry, eP as getFeatureFlags, eQ as getFeatureValue, d6 as getNodeOutputs, fG as getPathDepth, h3 as getPolicy, fH as getRelationPath, eY as getSchemaByNameFromContext, eZ as getSchemaContext, e_ as getSchemaFromContext, iq as getSyncPreview, fI as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, ji as getViewSeedPreview, jj as getViewSyncPreview, f6 as hasContext, eR as hasFeatureFlagsContext, fD as hasRelationReferences, e$ as hasSchemaContext, ek as hashOptions, dh as inValues, cX as isActivityTab, d7 as isAdvancedFormNode, cN as isCalendarView, di as isConditionGroup, d8 as isConditionNode, dj as isConditionRule, cW as isCustomTab, cL as isDetailView, d9 as isDocumentNode, c_ as isDocumentsTab, da as isEndNode, eS as isFeatureEnabled, cQ as isFieldGroup, bB as isFlowDefinition, bC as isFlowPublished, cZ as isFlowsTab, db as isFormNode, cS as isFormTab, cP as isGalleryView, dN as isGrantExpired, dO as isGrantRevoked, dP as isGrantValid, dB as isInstanceTerminal, dC as isInstanceWaiting, cV as isInverseSourceTab, dH as isInvitationAccepted, dI as isInvitationExpired, dJ as isInvitationValid, iw as isLabelExpression, cM as isListView, bu as isNoValueOperator, cR as isRelationGroup, cU as isRelationSourceTab, cY as isRichtextTab, dc as isSimpleFormNode, dd as isStartNode, bD as isSystemFlow, ds as isSystemWorkflow, cT as isTableTab, cO as isTimelineView, dQ as isTokenRevoked, dt as isWorkflowDefinition, du as isWorkflowPublished, e5 as mergeWithDefaults, dk as neq, dl as or, fL as parsePath, fM as pathHasManyCardinality, hh as recalculateParentRollups, e6 as registry, iv as renderLabelExpression, fS as resolveMultiplePaths, fT as resolveSingleValue, f7 as runWithContext, eT as runWithFeatureFlags, f0 as runWithMergedSchemaContext, f1 as runWithSchemaContext, je as seedRegistryViews, dV as setContextValue, fm as success, it as syncAll, io as syncNativeObjects, jf as syncNativeViews, fU as traversePath, eU as tryGetFeatureValue, fE as validateFormulaExpression, fN as validatePath, ip as verifyNativeObjectsSync, jh as verifyNativeViewsSync, jg as verifyRegistryViewsSeeded, e7 as viewRegistry, fn as wait, eV as withFeatureFlags, f8 as withTenantContext } from './runtime-DzpQ5gRG.mjs';
|
|
3
|
+
import { D as DateAttribute, U as UserAttribute, a as DocumentAttribute, A as Attribute, P as Phone, F as FeatureGate, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, d as PhoneAttribute, e as CurrencyAttribute, O as Option, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, g as FileAttribute, h as RatingAttribute, i as RelationAttribute, B as BilateralConfig, j as SingleRelationAttribute, k as MultiRelationAttribute, l as RelationTarget, m as FormulaAttribute, n as FormulaReturnType, o as RollupAttribute, p as RollupFunction, q as AttributeType, r as ObjectDefinition, s as FlagValueType, t as FeatureFlagDefinition, u as FlagLevel, v as FeatureFlagsRepository, w as StaticFlagDefault, x as ResolvedFlag } from './validators-CzHCpxVj.mjs';
|
|
4
|
+
export { z as AttributeGroup, E as BaseAttribute, a6 as CompletionStatus, J as Currency, af as DEFAULT_VALIDATION_MESSAGES, H as DateFormat, I as DateValue, a9 as FORBIDDEN_PROPERTY_TYPES, _ as FeatureFlagsConfig, Z as FlagOverride, aa as ForbiddenPropertyType, K as Location, Q as LocationGranularity, G as NumberUnit, a5 as ObjectAttribute, a7 as ObjectRecord, ab as PropertyAttribute, ac as PropertySchema, a8 as PropertyType, V as RELATION_TARGET_ANY, $ as RESERVED_ATTRIBUTE_NAMES, a1 as ReservedAttributeName, a0 as SYSTEM_FIELD_NAMES, a4 as SharingMode, y as StatusGroup, a2 as SystemFieldName, a3 as Timestamps, ae as ValidationMessages, a$ as ValidationResult, az as attributeConfigSchemas, ak as checkboxConfigSchema, b8 as computeRecordStatus, aY as createAttributeValidator, aG as createCheckboxValidator, aJ as createCurrencyValidator, aH as createDateValidator, b3 as createDraftValidator, aO as createFileValidator, aZ as createFormAttributeValidator, aU as createFormulaValidator, aN as createLocationValidator, aR as createMultiRelationValidator, aM as createMultiselectValidator, aF as createNumberValidator, a_ as createObjectValidator, aI as createPhoneValidator, aT as createRatingValidator, aS as createRelationValidator, aX as createRichtextValidator, aV as createRollupValidator, aL as createSelectValidator, aQ as createSingleRelationValidator, aK as createStatusValidator, aW as createTextAreaValidator, aE as createTextValidator, aP as createUserValidator, an as currencyConfigSchema, al as dateConfigSchema, ay as documentConfigSchema, as as fileConfigSchema, ad as formatZodErrors, aw as formulaConfigSchema, aA as getAttributeConfigSchema, b6 as getMissingRequiredAttributes, Y as inferInverseCardinality, X as isBilateralRelation, b7 as isRecordComplete, W as isUniversalRelation, ap as locationConfigSchema, ar as multiselectConfigSchema, aj as numberConfigSchema, aC as parseAttributeConfig, am as phoneConfigSchema, av as ratingConfigSchema, au as relationConfigSchema, ai as richtextConfigSchema, ax as rollupConfigSchema, aD as safeParseAttributeConfig, aq as selectConfigSchema, ao as statusConfigSchema, ag as textConfigSchema, ah as textareaConfigSchema, at as userConfigSchema, b0 as validateAttribute, aB as validateAttributeConfig, b4 as validateDraft, b5 as validateDraftOrThrow, b1 as validateObject, b2 as validateObjectOrThrow } from './validators-CzHCpxVj.mjs';
|
|
5
5
|
import { z } from 'zod';
|
|
6
6
|
export { TenantId, UserId, Uuid, asTenantId, asUserId, generateId, generatePrefixedId, generateTemplateName, indexBy, slugify } from './utils.mjs';
|
|
7
7
|
import { CountryIso3, IconName, CurrencyCode, MimeType, ColorId } from '@stndrds/constants';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField, b as FieldGroup, R as RelationGroup, D as DetailViewLayout, c as SidePanelConfig, G as Group, d as DetailViewDefinition, e as InstanceStatus, T as Tab, f as TableTab, C as CreateMode, g as FilterState, h as SortRule, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, k as ConditionGroup, l as ConditionRule, m as WorkflowNode, n as WorkflowDefinition, o as FlowRow, p as ListViewConfig, q as ListViewTab, V as ViewType, r as ViewDefinition, s as DocumentTemplate } from './runtime-
|
|
2
|
-
export { ae as AIBatchQuestion, af as AIBatchQuestionAnswer, ad as AIBatchQuestionOption, a8 as AIChatMessage, a7 as AIChatMessagePart, a2 as AIChatMessagePartType, au as AICompactionSummary, ak as AIConversation, g6 as AIConversationsRepository, as as AIMemoryEntry, ar as AIMemoryType, al as AIMessage, aj as AIMessageAttachment, _ as AIMessageRole, ap as AIProviderMetrics, ab as AIQuestion, ac as AIQuestionAnswer, aa as AIQuestionOption, a9 as AIQuestionType, at as AITenantPersona, $ as AIThinkingLevel, ah as AITodoItem, ai as AITodoList, ag as AITodoStatus, a1 as AIToolCall, am as AIToolCallRecord, a0 as AIToolCallStatus, ao as AIUsageMetrics, g7 as AIUsageMetricsRepository, an as AIUserMemory, g8 as AIUserMemoryRepository, cw as ActivityTab, bP as AddAttribute, gw as AddAttributeInput, bo as AdvancedFilterState, cf as AssignRoleInput, fX as AttributeChange, bO as AttributeMap, bK as AttributeSchema, g9 as AttributesRepository, aw as AuditAction, ax as AuditActorType, ay as AuditChange, aB as AuditListOptions, az as AuditLogEntry, ga as AuditRepository, av as AuditResourceType, hM as AuditService, aC as AuditServiceOptions, gs as BaseRepository, gr as BaseService, B as BoundingBox, el as CacheAdapter, ej as CacheKeyType, em as CacheOptions, cC as CalendarViewConfig, cG as CalendarViewDefinition, dm as CanvasViewport, ba as CheckboxFilterOperator, fo as ConditionExecutor, c$ as ConditionNode, de as ConditionOperator, cJ as ConfigOverrides, aq as CreateAIMessageInput, aA as CreateAuditLogInput, gv as CreateCustomObjectInput, iI as CreateDBAttribute, iE as CreateDBObject, iU as CreateDBView, iY as CreateDBViewOverlay, i$ as CreateDBWorkflow, j8 as CreateDBWorkflowAccessGrant, j2 as CreateDBWorkflowInstance, j5 as CreateDBWorkflowInvitation, aV as CreateDocument, aH as CreateDocumentGenerationTemplate, aZ as CreateDocumentSlot, aX as CreateDocumentTemplate, b6 as CreateFile, dK as CreateGrantInput, hq as CreateGrantResult, dD as CreateInvitationInput, dE as CreateInvitationResult, iL as CreateObjectRecord, ce as CreatePermissionInput, a$ as CreateProcessingJob, h$ as CreateRecordDocumentInput, i0 as CreateRecordDocumentResult, cc as CreateRoleInput, E as CreateSignatureInput, cm as CreateUserProfile, i9 as CreateViewInput, hD as CreateWorkflowInput, bh as CurrencyFilterValue, bT as CustomAttributeValue, cv as CustomTab, iH as DBAttribute, iD as DBObject, iT as DBView, iX as DBViewOverlay, i_ as DBWorkflow, j7 as DBWorkflowAccessGrant, j1 as DBWorkflowInstance, j4 as DBWorkflowInvitation, iu as DEFAULT_LABEL_FALLBACK, e3 as DEFAULT_THEME, ec as DatabaseAdapter, bb as DateFilterOperator, cB as DetailViewConfig, aO as Document, aL as DocumentAutoProcessing, Y as DocumentData, fp as DocumentExecutor, hP as DocumentGenerationNotConfiguredError, hQ as DocumentGenerationService, aG as DocumentGenerationTemplate, gb as DocumentGenerationTemplateListOptions, hO as DocumentGenerationTemplateNotFoundError, gc as DocumentGenerationTemplatesRepository, gd as DocumentJobsRepository, b1 as DocumentListOptions, d0 as DocumentNode, hR as DocumentProcessingConfig, hk as DocumentProcessingHook, hj as DocumentProcessingHookOptions, hS as DocumentProcessingService, hW as DocumentRenderError, hU as DocumentRendererOptions, hY as DocumentRendererService, i2 as DocumentService, i1 as DocumentServiceOptions, aQ as DocumentSlot, aK as DocumentSlotDefinition, ge as DocumentSlotsRepository, aP as DocumentStatus, b2 as DocumentTemplateListOptions, hZ as DocumentTemplateService, gg as DocumentTemplatesRepository, gf as DocumentsRepository, cz as DocumentsTab, c9 as EffectivePermissions, fq as EndExecutor, d1 as EndNode, eI as EvaluationResult, eJ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, bl as ExtendedFilterRule, c1 as ExtractAttributes, c3 as ExtractObjectRecord, c4 as ExtractObjectRecordWithCustom, bX as ExtractRecord, bZ as ExtractRecordInput, b_ as ExtractRecordInputStrict, bY as ExtractRecordStrict, b$ as ExtractRecordUpdate, c0 as ExtractRecordUpdateStrict, aN as ExtractionField, aM as ExtractionMapping, eW as FeatureFlagsContext, eO as FeatureFlagsContextError, er as FetchResult, b5 as File, ie as FileContent, iS as FileListOptions, i4 as FileService, i3 as FileServiceOptions, b4 as FileVisibility, gh as FilesRepository, bm as FilterCombinator, bn as FilterGroup, bf as FilterOperator, bk as FilterRule, bj as FilterValue, bA as FlowDefinition, bx as FlowPage, by as FlowRelation, bw as FlowRowField, bv as FlowSlot, bz as FlowStatus, cy as FlowsTab, dW as FormContextResponse, cq as FormDensity, fr as FormExecutor, dX as FormFieldContext, d2 as FormFieldRef, dY as FormFieldRow, d3 as FormNode, dZ as FormNodeInfo, cr as FormTab, es as FormattedRecord, gX as FormulaResolverService, gW as FormulaResolverServiceOptions, fF as FormulaResult, is as FullSyncOptions, ir as FullSyncResult, cE as GalleryViewConfig, cI as GalleryViewDefinition, dR as GeneratedDocument, bI as GeocodingAdapter, bF as GeocodingAutocompleteParams, bH as GeocodingParams, i5 as GeocodingService, bE as GeocodingSuggestion, gL as GetRelationOptionsParams, ic as GetViewOptions, ib as GetViewsOptions, iP as GlobalSearchGroupedOptions, iR as GlobalSearchGroupedResult, iO as GlobalSearchOptions, iQ as GlobalSearchResultItem, i6 as GlobalSearchService, hm as GrantExpiredError, hl as GrantNotFoundError, hn as GrantRevokedError, hp as GrantServiceConfig, et as GroupedFetchResult, fY as HookContext, fZ as HookDefinition, f_ as HookHandler, g1 as HookRegistry, f$ as HookType, gS as HybridRelationValue, Q as IdentityVerificationAdapter, bQ as InferRecord, bL as InferRecordFromSchema, bR as InferRecordInput, bS as InferRecordUpdate, bM as InferRecordWithRequirements, eu as InsertOptions, fJ as InvalidPathError, ct as InverseSource, hz as InvitationAlreadyAcceptedError, hy as InvitationExpiredError, hx as InvitationNotFoundError, hA as InvitationRevokedError, hw as InvitationServiceConfig, dF as InvitationStatus, co as InviteUserInput, ee as JwtVerificationResult, ha as LabelResolver, iM as ListOptions, cA as ListViewLayout, ef as MagicLinkPayload, fK as MaxDepthExceededError, g3 as MockStores, gQ as MultiRelationValue, bd as MultiselectFilterOperator, bt as NO_VALUE_OPERATORS, bs as NoValueOperator, fi as NodeExecutor, dn as NodePosition, eq as NoopCacheAdapter, bJ as NoopGeocodingAdapter, g0 as NoopHookRegistry, b9 as NumberFilterOperator, br as OPERATORS_BY_TYPE, ca as ObjectPermissions, gi as ObjectRecordsRepository, gz as ObjectSchemaService, gy as ObjectSchemaServiceOptions, gj as ObjectsRepository, t as OcrAdapter, u as OcrInput, v as OcrOptions, x as OcrPage, w as OcrResult, y as OcrTextBlock, ja as OperationResult, fO as PathCardinality, fP as PathSegment, fQ as PathSegmentType, aE as PdfTemplateField, dv as PendingAction, aJ as PendingDocumentRequest, c7 as Permission, c5 as PermissionScope, i8 as PermissionService, i7 as PermissionServiceOptions, gk as PermissionsRepository, bi as PhoneFilterValue, cg as PolicyContext, g5 as PolicyRegistry, ci as PolicyViolationError, aS as ProcessingJob, aU as ProcessingJobStatus, aT as ProcessingJobType, eG as QueryBuilder, eH as QueryBuilderOptions, ev as QueryBuilderState, eC as QueryMultipleResultsError, eD as QueryNoResultError, gD as QueryOptions, gF as QueryResult, bq as QueryState, d_ as ReadOnlyReason, a6 as ReasoningPartData, h_ as RecordDocumentsResult, bV as RecordMetadata, ch as RecordPolicy, gG as RecordQueryService, gC as RecordQueryServiceOptions, gU as RecordResolverService, gB as RecordService, gA as RecordServiceOptions, ew as RegistryMap, ex as RegistryObjectNames, e9 as RelationAttributeInput, ea as RelationAttributeRow, eb as RelationAttributesRepository, be as RelationFilterOperator, iB as RelationLabelResolver, gJ as RelationOption, gK as RelationOptionsResponse, gT as RelationPropertiesService, gP as RelationService, gM as RelationServiceOptions, cs as RelationSource, gI as RelationValidationError, gH as RelationValidationResult, bg as RelativeDateValue, hT as RenderDocumentInput, hV as RenderDocumentResult, gN as ResolveIdsBatchRequest, gO as ResolveIdsBatchResponse, gV as ResolvedRelations, ht as ResumeWorkflowInput, bG as ReverseGeocodingParams, cx as RichtextTab, c6 as Role, hi as RollupCascadeContext, gY as RollupResult, h0 as RollupScheduler, g$ as RollupSchedulerOptions, g_ as RollupService, gZ as RollupServiceOptions, eE as SHORTCUT_TO_FILTER_OPERATOR, f2 as SchemaContext, gt as SchemaContextAware, gu as SchemaContextAwareRepository, fR as SchemaResolver, iN as SearchOptions, gE as SearchQueryOptions, bc as SelectFilterOperator, ey as ShortcutOperator, z as SignatureAdapter, J as SignaturePosition, K as SignatureRequestResult, P as SignatureStatus, M as SignatureStatusResult, ii as SignedUrlOptions, H as SignerRequest, N as SignerStatus, gR as SingleRelationValue, aR as SlotStatus, bp as SortDirection, fs as StartExecutor, d4 as StartNode, hs as StartWorkflowInput, ij as StorageAdapter, hX as StorageDownloadNotSupportedError, b3 as StorageProvider, ig as StorageUploadInput, ih as StorageUploadResult, im as SyncOptions, il as SyncResult, bW as SystemFields, cb as SystemPermissions, cp as TabType, cu as TableSource, aF as TemplateSource, f9 as TenantContext, eN as TenantContextError, b8 as TextFilterOperator, a3 as TextPartData, e0 as ThemeColors, e1 as ThemeLogo, e2 as ThemeTypography, a5 as ThinkingPartData, cD as TimelineViewConfig, cH as TimelineViewDefinition, ho as TokenRevokedError, a4 as ToolPartData, fV as TraversalOptions, fW as TraversalResult, bN as TypedAttribute, c2 as TypedObjectRecord, iJ as UpdateDBAttribute, iF as UpdateDBObject, iV as UpdateDBView, iZ as UpdateDBViewOverlay, j0 as UpdateDBWorkflow, j9 as UpdateDBWorkflowAccessGrant, j3 as UpdateDBWorkflowInstance, j6 as UpdateDBWorkflowInvitation, aW as UpdateDocument, aI as UpdateDocumentGenerationTemplate, a_ as UpdateDocumentSlot, aY as UpdateDocumentTemplate, b7 as UpdateFile, gx as UpdateObjectInput, b0 as UpdateProcessingJob, cd as UpdateRoleInput, cn as UpdateUserProfile, ia as UpdateViewInput, hE as UpdateWorkflowInput, ik as UploadFileInput, iK as UpsertDBAttribute, iG as UpsertDBObject, iW as UpsertDBView, cl as UserProfile, hL as UserProfileService, hK as UserProfileServiceOptions, gl as UserProfilesRepository, cj as UserRole, c8 as UserRoleAssignment, hJ as UserService, ck as UserStatus, hI as UserValidationError, hH as UserValidationResult, aD as VariableMapping, Z as VerificationCheck, X as VerificationResult, U as VerifyInput, cF as ViewConfig, cK as ViewOverlay, e8 as ViewOverlaysRepository, id as ViewService, jc as ViewSyncLogger, jd as ViewSyncOptions, jb as ViewSyncResult, gm as ViewsRepository, bU as WithCustomAttributes, dL as WorkflowAccessGrant, hr as WorkflowAccessGrantService, gn as WorkflowAccessGrantsRepository, d$ as WorkflowAccessMode, eg as WorkflowAccessPayload, dw as WorkflowError, dS as WorkflowExecutionContext, dx as WorkflowInstance, hv as WorkflowInstanceService, hu as WorkflowInstanceServiceOptions, go as WorkflowInstancesRepository, dG as WorkflowInvitation, hB as WorkflowInvitationService, gp as WorkflowInvitationsRepository, eh as WorkflowJwtConfig, ei as WorkflowJwtPayload, ed as WorkflowJwtService, dp as WorkflowLayout, d5 as WorkflowNodeType, hC as WorkflowRelationService, hG as WorkflowService, hF as WorkflowServiceOptions, dq as WorkflowSlot, dr as WorkflowStatus, dy as WorkflowTransition, gq as WorkflowsRepository, eX as addSchemaToContext, df as and, h1 as applyDefaultValues, hN as buildAuditChanges, h4 as buildPolicyContext, en as cacheKeys, eo as cacheTtl, dM as canAccessNode, dz as canResumeInstance, h2 as checkPermission, h5 as checkRecordAccess, h7 as checkRecordDeleteOrThrow, h6 as checkRecordModifyOrThrow, h8 as checkSharedObjectWriteAccess, fj as complete, h9 as computeLabel, iC as computeLabelWithRelations, hd as createContextForCreate, hf as createContextForDelete, hg as createContextForRestore, he as createContextForUpdate, fa as createDefaultExecutorRegistry, ez as createDefaultState, dT as createEmptyContext, g2 as createMockAdapter, eF as createQueryBuilder, dA as createStartTransition, g4 as defaultPolicyRegistry, ep as defaultTtl, hc as enrichRecordsWithFormulas, iy as enrichValuesForDisplay, iz as enrichValuesWithSelectLabels, hb as enrichWithFormulas, dg as eq, fk as error, eL as evaluate, eK as evaluateCondition, ft as evaluateFormula, fu as evaluateFormulaAttribute, fv as evaluateFormulaAttributeWithRelations, fw as evaluateFormulaWithRelations, fx as evaluateFormulaWithResult, eM as evaluateWithTrace, ix as extractAttributeNames, fy as extractFormulaVariables, iA as extractRelationIds, fz as extractRelationNames, fA as extractRelationReferences, fB as flattenRelationsForEval, fC as formatFormulaResult, eA as formatRecord, eB as formatRecords, e4 as generateCssVariables, f3 as getContext, dU as getContextValue, fb as getDefaultExecutorRegistry, eP as getFeatureFlags, eQ as getFeatureValue, d6 as getNodeOutputs, fG as getPathDepth, h3 as getPolicy, fH as getRelationPath, eY as getSchemaByNameFromContext, eZ as getSchemaContext, e_ as getSchemaFromContext, iq as getSyncPreview, fI as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, ji as getViewSeedPreview, jj as getViewSyncPreview, f6 as hasContext, eR as hasFeatureFlagsContext, fD as hasRelationReferences, e$ as hasSchemaContext, ek as hashOptions, dh as inValues, cX as isActivityTab, d7 as isAdvancedFormNode, cN as isCalendarView, di as isConditionGroup, d8 as isConditionNode, dj as isConditionRule, cW as isCustomTab, cL as isDetailView, d9 as isDocumentNode, c_ as isDocumentsTab, da as isEndNode, eS as isFeatureEnabled, cQ as isFieldGroup, bB as isFlowDefinition, bC as isFlowPublished, cZ as isFlowsTab, db as isFormNode, cS as isFormTab, cP as isGalleryView, dN as isGrantExpired, dO as isGrantRevoked, dP as isGrantValid, dB as isInstanceTerminal, dC as isInstanceWaiting, cV as isInverseSourceTab, dH as isInvitationAccepted, dI as isInvitationExpired, dJ as isInvitationValid, iw as isLabelExpression, cM as isListView, bu as isNoValueOperator, cR as isRelationGroup, cU as isRelationSourceTab, cY as isRichtextTab, dc as isSimpleFormNode, dd as isStartNode, bD as isSystemFlow, ds as isSystemWorkflow, cT as isTableTab, cO as isTimelineView, dQ as isTokenRevoked, dt as isWorkflowDefinition, du as isWorkflowPublished, e5 as mergeWithDefaults, dk as neq, dl as or, fL as parsePath, fM as pathHasManyCardinality, hh as recalculateParentRollups, e6 as registry, iv as renderLabelExpression, fS as resolveMultiplePaths, fT as resolveSingleValue, f7 as runWithContext, eT as runWithFeatureFlags, f0 as runWithMergedSchemaContext, f1 as runWithSchemaContext, je as seedRegistryViews, dV as setContextValue, fm as success, it as syncAll, io as syncNativeObjects, jf as syncNativeViews, fU as traversePath, eU as tryGetFeatureValue, fE as validateFormulaExpression, fN as validatePath, ip as verifyNativeObjectsSync, jh as verifyNativeViewsSync, jg as verifyRegistryViewsSeeded, e7 as viewRegistry, fn as wait, eV as withFeatureFlags, f8 as withTenantContext } from './runtime-B0G6eBXO.js';
|
|
3
|
-
import { D as DateAttribute, U as UserAttribute, a as DocumentAttribute, A as Attribute, P as Phone, F as FeatureGate, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, d as PhoneAttribute, e as CurrencyAttribute, O as Option, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, g as FileAttribute, h as RatingAttribute, i as RelationAttribute, B as BilateralConfig, j as SingleRelationAttribute, k as MultiRelationAttribute, l as RelationTarget, m as FormulaAttribute, n as FormulaReturnType, o as RollupAttribute, p as RollupFunction, q as AttributeType, r as ObjectDefinition, s as FlagValueType, t as FeatureFlagDefinition, u as FlagLevel, v as FeatureFlagsRepository, w as StaticFlagDefault, x as ResolvedFlag } from './validators-
|
|
4
|
-
export { z as AttributeGroup, E as BaseAttribute, a6 as CompletionStatus, J as Currency, af as DEFAULT_VALIDATION_MESSAGES, H as DateFormat, I as DateValue, a9 as FORBIDDEN_PROPERTY_TYPES, _ as FeatureFlagsConfig, Z as FlagOverride, aa as ForbiddenPropertyType, K as Location, Q as LocationGranularity, G as NumberUnit, a5 as ObjectAttribute, a7 as ObjectRecord, ab as PropertyAttribute, ac as PropertySchema, a8 as PropertyType, V as RELATION_TARGET_ANY, $ as RESERVED_ATTRIBUTE_NAMES, a1 as ReservedAttributeName, a0 as SYSTEM_FIELD_NAMES, a4 as SharingMode, y as StatusGroup, a2 as SystemFieldName, a3 as Timestamps, ae as ValidationMessages, a$ as ValidationResult, az as attributeConfigSchemas, ak as checkboxConfigSchema, b8 as computeRecordStatus, aY as createAttributeValidator, aG as createCheckboxValidator, aJ as createCurrencyValidator, aH as createDateValidator, b3 as createDraftValidator, aO as createFileValidator, aZ as createFormAttributeValidator, aU as createFormulaValidator, aN as createLocationValidator, aR as createMultiRelationValidator, aM as createMultiselectValidator, aF as createNumberValidator, a_ as createObjectValidator, aI as createPhoneValidator, aT as createRatingValidator, aS as createRelationValidator, aX as createRichtextValidator, aV as createRollupValidator, aL as createSelectValidator, aQ as createSingleRelationValidator, aK as createStatusValidator, aW as createTextAreaValidator, aE as createTextValidator, aP as createUserValidator, an as currencyConfigSchema, al as dateConfigSchema, ay as documentConfigSchema, as as fileConfigSchema, ad as formatZodErrors, aw as formulaConfigSchema, aA as getAttributeConfigSchema, b6 as getMissingRequiredAttributes, Y as inferInverseCardinality, X as isBilateralRelation, b7 as isRecordComplete, W as isUniversalRelation, ap as locationConfigSchema, ar as multiselectConfigSchema, aj as numberConfigSchema, aC as parseAttributeConfig, am as phoneConfigSchema, av as ratingConfigSchema, au as relationConfigSchema, ai as richtextConfigSchema, ax as rollupConfigSchema, aD as safeParseAttributeConfig, aq as selectConfigSchema, ao as statusConfigSchema, ag as textConfigSchema, ah as textareaConfigSchema, at as userConfigSchema, b0 as validateAttribute, aB as validateAttributeConfig, b4 as validateDraft, b5 as validateDraftOrThrow, b1 as validateObject, b2 as validateObjectOrThrow } from './validators-
|
|
1
|
+
import { S as SystemResource, a as SystemAction, O as ObjectAction, I as InferAttributeValue, F as Field, A as AttributeGroupField, b as FieldGroup, R as RelationGroup, D as DetailViewLayout, c as SidePanelConfig, G as Group, d as DetailViewDefinition, e as InstanceStatus, T as Tab, f as TableTab, C as CreateMode, g as FilterState, h as SortRule, L as ListViewDefinition, W as WorkflowTheme, i as WorkflowConfig, j as SlotMode, k as ConditionGroup, l as ConditionRule, m as WorkflowNode, n as WorkflowDefinition, o as FlowRow, p as ListViewConfig, q as ListViewTab, V as ViewType, r as ViewDefinition, s as DocumentTemplate } from './runtime-BV9XBP1p.js';
|
|
2
|
+
export { ae as AIBatchQuestion, af as AIBatchQuestionAnswer, ad as AIBatchQuestionOption, a8 as AIChatMessage, a7 as AIChatMessagePart, a2 as AIChatMessagePartType, au as AICompactionSummary, ak as AIConversation, g6 as AIConversationsRepository, as as AIMemoryEntry, ar as AIMemoryType, al as AIMessage, aj as AIMessageAttachment, _ as AIMessageRole, ap as AIProviderMetrics, ab as AIQuestion, ac as AIQuestionAnswer, aa as AIQuestionOption, a9 as AIQuestionType, at as AITenantPersona, $ as AIThinkingLevel, ah as AITodoItem, ai as AITodoList, ag as AITodoStatus, a1 as AIToolCall, am as AIToolCallRecord, a0 as AIToolCallStatus, ao as AIUsageMetrics, g7 as AIUsageMetricsRepository, an as AIUserMemory, g8 as AIUserMemoryRepository, cw as ActivityTab, bP as AddAttribute, gw as AddAttributeInput, bo as AdvancedFilterState, cf as AssignRoleInput, fX as AttributeChange, bO as AttributeMap, bK as AttributeSchema, g9 as AttributesRepository, aw as AuditAction, ax as AuditActorType, ay as AuditChange, aB as AuditListOptions, az as AuditLogEntry, ga as AuditRepository, av as AuditResourceType, hM as AuditService, aC as AuditServiceOptions, gs as BaseRepository, gr as BaseService, B as BoundingBox, el as CacheAdapter, ej as CacheKeyType, em as CacheOptions, cC as CalendarViewConfig, cG as CalendarViewDefinition, dm as CanvasViewport, ba as CheckboxFilterOperator, fo as ConditionExecutor, c$ as ConditionNode, de as ConditionOperator, cJ as ConfigOverrides, aq as CreateAIMessageInput, aA as CreateAuditLogInput, gv as CreateCustomObjectInput, iI as CreateDBAttribute, iE as CreateDBObject, iU as CreateDBView, iY as CreateDBViewOverlay, i$ as CreateDBWorkflow, j8 as CreateDBWorkflowAccessGrant, j2 as CreateDBWorkflowInstance, j5 as CreateDBWorkflowInvitation, aV as CreateDocument, aH as CreateDocumentGenerationTemplate, aZ as CreateDocumentSlot, aX as CreateDocumentTemplate, b6 as CreateFile, dK as CreateGrantInput, hq as CreateGrantResult, dD as CreateInvitationInput, dE as CreateInvitationResult, iL as CreateObjectRecord, ce as CreatePermissionInput, a$ as CreateProcessingJob, h$ as CreateRecordDocumentInput, i0 as CreateRecordDocumentResult, cc as CreateRoleInput, E as CreateSignatureInput, cm as CreateUserProfile, i9 as CreateViewInput, hD as CreateWorkflowInput, bh as CurrencyFilterValue, bT as CustomAttributeValue, cv as CustomTab, iH as DBAttribute, iD as DBObject, iT as DBView, iX as DBViewOverlay, i_ as DBWorkflow, j7 as DBWorkflowAccessGrant, j1 as DBWorkflowInstance, j4 as DBWorkflowInvitation, iu as DEFAULT_LABEL_FALLBACK, e3 as DEFAULT_THEME, ec as DatabaseAdapter, bb as DateFilterOperator, cB as DetailViewConfig, aO as Document, aL as DocumentAutoProcessing, Y as DocumentData, fp as DocumentExecutor, hP as DocumentGenerationNotConfiguredError, hQ as DocumentGenerationService, aG as DocumentGenerationTemplate, gb as DocumentGenerationTemplateListOptions, hO as DocumentGenerationTemplateNotFoundError, gc as DocumentGenerationTemplatesRepository, gd as DocumentJobsRepository, b1 as DocumentListOptions, d0 as DocumentNode, hR as DocumentProcessingConfig, hk as DocumentProcessingHook, hj as DocumentProcessingHookOptions, hS as DocumentProcessingService, hW as DocumentRenderError, hU as DocumentRendererOptions, hY as DocumentRendererService, i2 as DocumentService, i1 as DocumentServiceOptions, aQ as DocumentSlot, aK as DocumentSlotDefinition, ge as DocumentSlotsRepository, aP as DocumentStatus, b2 as DocumentTemplateListOptions, hZ as DocumentTemplateService, gg as DocumentTemplatesRepository, gf as DocumentsRepository, cz as DocumentsTab, c9 as EffectivePermissions, fq as EndExecutor, d1 as EndNode, eI as EvaluationResult, eJ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, bl as ExtendedFilterRule, c1 as ExtractAttributes, c3 as ExtractObjectRecord, c4 as ExtractObjectRecordWithCustom, bX as ExtractRecord, bZ as ExtractRecordInput, b_ as ExtractRecordInputStrict, bY as ExtractRecordStrict, b$ as ExtractRecordUpdate, c0 as ExtractRecordUpdateStrict, aN as ExtractionField, aM as ExtractionMapping, eW as FeatureFlagsContext, eO as FeatureFlagsContextError, er as FetchResult, b5 as File, ie as FileContent, iS as FileListOptions, i4 as FileService, i3 as FileServiceOptions, b4 as FileVisibility, gh as FilesRepository, bm as FilterCombinator, bn as FilterGroup, bf as FilterOperator, bk as FilterRule, bj as FilterValue, bA as FlowDefinition, bx as FlowPage, by as FlowRelation, bw as FlowRowField, bv as FlowSlot, bz as FlowStatus, cy as FlowsTab, dW as FormContextResponse, cq as FormDensity, fr as FormExecutor, dX as FormFieldContext, d2 as FormFieldRef, dY as FormFieldRow, d3 as FormNode, dZ as FormNodeInfo, cr as FormTab, es as FormattedRecord, gX as FormulaResolverService, gW as FormulaResolverServiceOptions, fF as FormulaResult, is as FullSyncOptions, ir as FullSyncResult, cE as GalleryViewConfig, cI as GalleryViewDefinition, dR as GeneratedDocument, bI as GeocodingAdapter, bF as GeocodingAutocompleteParams, bH as GeocodingParams, i5 as GeocodingService, bE as GeocodingSuggestion, gL as GetRelationOptionsParams, ic as GetViewOptions, ib as GetViewsOptions, iP as GlobalSearchGroupedOptions, iR as GlobalSearchGroupedResult, iO as GlobalSearchOptions, iQ as GlobalSearchResultItem, i6 as GlobalSearchService, hm as GrantExpiredError, hl as GrantNotFoundError, hn as GrantRevokedError, hp as GrantServiceConfig, et as GroupedFetchResult, fY as HookContext, fZ as HookDefinition, f_ as HookHandler, g1 as HookRegistry, f$ as HookType, gS as HybridRelationValue, Q as IdentityVerificationAdapter, bQ as InferRecord, bL as InferRecordFromSchema, bR as InferRecordInput, bS as InferRecordUpdate, bM as InferRecordWithRequirements, eu as InsertOptions, fJ as InvalidPathError, ct as InverseSource, hz as InvitationAlreadyAcceptedError, hy as InvitationExpiredError, hx as InvitationNotFoundError, hA as InvitationRevokedError, hw as InvitationServiceConfig, dF as InvitationStatus, co as InviteUserInput, ee as JwtVerificationResult, ha as LabelResolver, iM as ListOptions, cA as ListViewLayout, ef as MagicLinkPayload, fK as MaxDepthExceededError, g3 as MockStores, gQ as MultiRelationValue, bd as MultiselectFilterOperator, bt as NO_VALUE_OPERATORS, bs as NoValueOperator, fi as NodeExecutor, dn as NodePosition, eq as NoopCacheAdapter, bJ as NoopGeocodingAdapter, g0 as NoopHookRegistry, b9 as NumberFilterOperator, br as OPERATORS_BY_TYPE, ca as ObjectPermissions, gi as ObjectRecordsRepository, gz as ObjectSchemaService, gy as ObjectSchemaServiceOptions, gj as ObjectsRepository, t as OcrAdapter, u as OcrInput, v as OcrOptions, x as OcrPage, w as OcrResult, y as OcrTextBlock, ja as OperationResult, fO as PathCardinality, fP as PathSegment, fQ as PathSegmentType, aE as PdfTemplateField, dv as PendingAction, aJ as PendingDocumentRequest, c7 as Permission, c5 as PermissionScope, i8 as PermissionService, i7 as PermissionServiceOptions, gk as PermissionsRepository, bi as PhoneFilterValue, cg as PolicyContext, g5 as PolicyRegistry, ci as PolicyViolationError, aS as ProcessingJob, aU as ProcessingJobStatus, aT as ProcessingJobType, eG as QueryBuilder, eH as QueryBuilderOptions, ev as QueryBuilderState, eC as QueryMultipleResultsError, eD as QueryNoResultError, gD as QueryOptions, gF as QueryResult, bq as QueryState, d_ as ReadOnlyReason, a6 as ReasoningPartData, h_ as RecordDocumentsResult, bV as RecordMetadata, ch as RecordPolicy, gG as RecordQueryService, gC as RecordQueryServiceOptions, gU as RecordResolverService, gB as RecordService, gA as RecordServiceOptions, ew as RegistryMap, ex as RegistryObjectNames, e9 as RelationAttributeInput, ea as RelationAttributeRow, eb as RelationAttributesRepository, be as RelationFilterOperator, iB as RelationLabelResolver, gJ as RelationOption, gK as RelationOptionsResponse, gT as RelationPropertiesService, gP as RelationService, gM as RelationServiceOptions, cs as RelationSource, gI as RelationValidationError, gH as RelationValidationResult, bg as RelativeDateValue, hT as RenderDocumentInput, hV as RenderDocumentResult, gN as ResolveIdsBatchRequest, gO as ResolveIdsBatchResponse, gV as ResolvedRelations, ht as ResumeWorkflowInput, bG as ReverseGeocodingParams, cx as RichtextTab, c6 as Role, hi as RollupCascadeContext, gY as RollupResult, h0 as RollupScheduler, g$ as RollupSchedulerOptions, g_ as RollupService, gZ as RollupServiceOptions, eE as SHORTCUT_TO_FILTER_OPERATOR, f2 as SchemaContext, gt as SchemaContextAware, gu as SchemaContextAwareRepository, fR as SchemaResolver, iN as SearchOptions, gE as SearchQueryOptions, bc as SelectFilterOperator, ey as ShortcutOperator, z as SignatureAdapter, J as SignaturePosition, K as SignatureRequestResult, P as SignatureStatus, M as SignatureStatusResult, ii as SignedUrlOptions, H as SignerRequest, N as SignerStatus, gR as SingleRelationValue, aR as SlotStatus, bp as SortDirection, fs as StartExecutor, d4 as StartNode, hs as StartWorkflowInput, ij as StorageAdapter, hX as StorageDownloadNotSupportedError, b3 as StorageProvider, ig as StorageUploadInput, ih as StorageUploadResult, im as SyncOptions, il as SyncResult, bW as SystemFields, cb as SystemPermissions, cp as TabType, cu as TableSource, aF as TemplateSource, f9 as TenantContext, eN as TenantContextError, b8 as TextFilterOperator, a3 as TextPartData, e0 as ThemeColors, e1 as ThemeLogo, e2 as ThemeTypography, a5 as ThinkingPartData, cD as TimelineViewConfig, cH as TimelineViewDefinition, ho as TokenRevokedError, a4 as ToolPartData, fV as TraversalOptions, fW as TraversalResult, bN as TypedAttribute, c2 as TypedObjectRecord, iJ as UpdateDBAttribute, iF as UpdateDBObject, iV as UpdateDBView, iZ as UpdateDBViewOverlay, j0 as UpdateDBWorkflow, j9 as UpdateDBWorkflowAccessGrant, j3 as UpdateDBWorkflowInstance, j6 as UpdateDBWorkflowInvitation, aW as UpdateDocument, aI as UpdateDocumentGenerationTemplate, a_ as UpdateDocumentSlot, aY as UpdateDocumentTemplate, b7 as UpdateFile, gx as UpdateObjectInput, b0 as UpdateProcessingJob, cd as UpdateRoleInput, cn as UpdateUserProfile, ia as UpdateViewInput, hE as UpdateWorkflowInput, ik as UploadFileInput, iK as UpsertDBAttribute, iG as UpsertDBObject, iW as UpsertDBView, cl as UserProfile, hL as UserProfileService, hK as UserProfileServiceOptions, gl as UserProfilesRepository, cj as UserRole, c8 as UserRoleAssignment, hJ as UserService, ck as UserStatus, hI as UserValidationError, hH as UserValidationResult, aD as VariableMapping, Z as VerificationCheck, X as VerificationResult, U as VerifyInput, cF as ViewConfig, cK as ViewOverlay, e8 as ViewOverlaysRepository, id as ViewService, jc as ViewSyncLogger, jd as ViewSyncOptions, jb as ViewSyncResult, gm as ViewsRepository, bU as WithCustomAttributes, dL as WorkflowAccessGrant, hr as WorkflowAccessGrantService, gn as WorkflowAccessGrantsRepository, d$ as WorkflowAccessMode, eg as WorkflowAccessPayload, dw as WorkflowError, dS as WorkflowExecutionContext, dx as WorkflowInstance, hv as WorkflowInstanceService, hu as WorkflowInstanceServiceOptions, go as WorkflowInstancesRepository, dG as WorkflowInvitation, hB as WorkflowInvitationService, gp as WorkflowInvitationsRepository, eh as WorkflowJwtConfig, ei as WorkflowJwtPayload, ed as WorkflowJwtService, dp as WorkflowLayout, d5 as WorkflowNodeType, hC as WorkflowRelationService, hG as WorkflowService, hF as WorkflowServiceOptions, dq as WorkflowSlot, dr as WorkflowStatus, dy as WorkflowTransition, gq as WorkflowsRepository, eX as addSchemaToContext, df as and, h1 as applyDefaultValues, hN as buildAuditChanges, h4 as buildPolicyContext, en as cacheKeys, eo as cacheTtl, dM as canAccessNode, dz as canResumeInstance, h2 as checkPermission, h5 as checkRecordAccess, h7 as checkRecordDeleteOrThrow, h6 as checkRecordModifyOrThrow, h8 as checkSharedObjectWriteAccess, fj as complete, h9 as computeLabel, iC as computeLabelWithRelations, hd as createContextForCreate, hf as createContextForDelete, hg as createContextForRestore, he as createContextForUpdate, fa as createDefaultExecutorRegistry, ez as createDefaultState, dT as createEmptyContext, g2 as createMockAdapter, eF as createQueryBuilder, dA as createStartTransition, g4 as defaultPolicyRegistry, ep as defaultTtl, hc as enrichRecordsWithFormulas, iy as enrichValuesForDisplay, iz as enrichValuesWithSelectLabels, hb as enrichWithFormulas, dg as eq, fk as error, eL as evaluate, eK as evaluateCondition, ft as evaluateFormula, fu as evaluateFormulaAttribute, fv as evaluateFormulaAttributeWithRelations, fw as evaluateFormulaWithRelations, fx as evaluateFormulaWithResult, eM as evaluateWithTrace, ix as extractAttributeNames, fy as extractFormulaVariables, iA as extractRelationIds, fz as extractRelationNames, fA as extractRelationReferences, fB as flattenRelationsForEval, fC as formatFormulaResult, eA as formatRecord, eB as formatRecords, e4 as generateCssVariables, f3 as getContext, dU as getContextValue, fb as getDefaultExecutorRegistry, eP as getFeatureFlags, eQ as getFeatureValue, d6 as getNodeOutputs, fG as getPathDepth, h3 as getPolicy, fH as getRelationPath, eY as getSchemaByNameFromContext, eZ as getSchemaContext, e_ as getSchemaFromContext, iq as getSyncPreview, fI as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, ji as getViewSeedPreview, jj as getViewSyncPreview, f6 as hasContext, eR as hasFeatureFlagsContext, fD as hasRelationReferences, e$ as hasSchemaContext, ek as hashOptions, dh as inValues, cX as isActivityTab, d7 as isAdvancedFormNode, cN as isCalendarView, di as isConditionGroup, d8 as isConditionNode, dj as isConditionRule, cW as isCustomTab, cL as isDetailView, d9 as isDocumentNode, c_ as isDocumentsTab, da as isEndNode, eS as isFeatureEnabled, cQ as isFieldGroup, bB as isFlowDefinition, bC as isFlowPublished, cZ as isFlowsTab, db as isFormNode, cS as isFormTab, cP as isGalleryView, dN as isGrantExpired, dO as isGrantRevoked, dP as isGrantValid, dB as isInstanceTerminal, dC as isInstanceWaiting, cV as isInverseSourceTab, dH as isInvitationAccepted, dI as isInvitationExpired, dJ as isInvitationValid, iw as isLabelExpression, cM as isListView, bu as isNoValueOperator, cR as isRelationGroup, cU as isRelationSourceTab, cY as isRichtextTab, dc as isSimpleFormNode, dd as isStartNode, bD as isSystemFlow, ds as isSystemWorkflow, cT as isTableTab, cO as isTimelineView, dQ as isTokenRevoked, dt as isWorkflowDefinition, du as isWorkflowPublished, e5 as mergeWithDefaults, dk as neq, dl as or, fL as parsePath, fM as pathHasManyCardinality, hh as recalculateParentRollups, e6 as registry, iv as renderLabelExpression, fS as resolveMultiplePaths, fT as resolveSingleValue, f7 as runWithContext, eT as runWithFeatureFlags, f0 as runWithMergedSchemaContext, f1 as runWithSchemaContext, je as seedRegistryViews, dV as setContextValue, fm as success, it as syncAll, io as syncNativeObjects, jf as syncNativeViews, fU as traversePath, eU as tryGetFeatureValue, fE as validateFormulaExpression, fN as validatePath, ip as verifyNativeObjectsSync, jh as verifyNativeViewsSync, jg as verifyRegistryViewsSeeded, e7 as viewRegistry, fn as wait, eV as withFeatureFlags, f8 as withTenantContext } from './runtime-BV9XBP1p.js';
|
|
3
|
+
import { D as DateAttribute, U as UserAttribute, a as DocumentAttribute, A as Attribute, P as Phone, F as FeatureGate, T as TextAttribute, b as TextAreaAttribute, R as RichtextAttribute, c as RichtextFeature, N as NumberAttribute, C as CheckboxAttribute, d as PhoneAttribute, e as CurrencyAttribute, O as Option, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, L as LocationAttribute, g as FileAttribute, h as RatingAttribute, i as RelationAttribute, B as BilateralConfig, j as SingleRelationAttribute, k as MultiRelationAttribute, l as RelationTarget, m as FormulaAttribute, n as FormulaReturnType, o as RollupAttribute, p as RollupFunction, q as AttributeType, r as ObjectDefinition, s as FlagValueType, t as FeatureFlagDefinition, u as FlagLevel, v as FeatureFlagsRepository, w as StaticFlagDefault, x as ResolvedFlag } from './validators-DEfgr14O.js';
|
|
4
|
+
export { z as AttributeGroup, E as BaseAttribute, a6 as CompletionStatus, J as Currency, af as DEFAULT_VALIDATION_MESSAGES, H as DateFormat, I as DateValue, a9 as FORBIDDEN_PROPERTY_TYPES, _ as FeatureFlagsConfig, Z as FlagOverride, aa as ForbiddenPropertyType, K as Location, Q as LocationGranularity, G as NumberUnit, a5 as ObjectAttribute, a7 as ObjectRecord, ab as PropertyAttribute, ac as PropertySchema, a8 as PropertyType, V as RELATION_TARGET_ANY, $ as RESERVED_ATTRIBUTE_NAMES, a1 as ReservedAttributeName, a0 as SYSTEM_FIELD_NAMES, a4 as SharingMode, y as StatusGroup, a2 as SystemFieldName, a3 as Timestamps, ae as ValidationMessages, a$ as ValidationResult, az as attributeConfigSchemas, ak as checkboxConfigSchema, b8 as computeRecordStatus, aY as createAttributeValidator, aG as createCheckboxValidator, aJ as createCurrencyValidator, aH as createDateValidator, b3 as createDraftValidator, aO as createFileValidator, aZ as createFormAttributeValidator, aU as createFormulaValidator, aN as createLocationValidator, aR as createMultiRelationValidator, aM as createMultiselectValidator, aF as createNumberValidator, a_ as createObjectValidator, aI as createPhoneValidator, aT as createRatingValidator, aS as createRelationValidator, aX as createRichtextValidator, aV as createRollupValidator, aL as createSelectValidator, aQ as createSingleRelationValidator, aK as createStatusValidator, aW as createTextAreaValidator, aE as createTextValidator, aP as createUserValidator, an as currencyConfigSchema, al as dateConfigSchema, ay as documentConfigSchema, as as fileConfigSchema, ad as formatZodErrors, aw as formulaConfigSchema, aA as getAttributeConfigSchema, b6 as getMissingRequiredAttributes, Y as inferInverseCardinality, X as isBilateralRelation, b7 as isRecordComplete, W as isUniversalRelation, ap as locationConfigSchema, ar as multiselectConfigSchema, aj as numberConfigSchema, aC as parseAttributeConfig, am as phoneConfigSchema, av as ratingConfigSchema, au as relationConfigSchema, ai as richtextConfigSchema, ax as rollupConfigSchema, aD as safeParseAttributeConfig, aq as selectConfigSchema, ao as statusConfigSchema, ag as textConfigSchema, ah as textareaConfigSchema, at as userConfigSchema, b0 as validateAttribute, aB as validateAttributeConfig, b4 as validateDraft, b5 as validateDraftOrThrow, b1 as validateObject, b2 as validateObjectOrThrow } from './validators-DEfgr14O.js';
|
|
5
5
|
import { z } from 'zod';
|
|
6
6
|
export { TenantId, UserId, Uuid, asTenantId, asUserId, generateId, generatePrefixedId, generateTemplateName, indexBy, slugify } from './utils.js';
|
|
7
7
|
import { CountryIso3, IconName, CurrencyCode, MimeType, ColorId } from '@stndrds/constants';
|
package/dist/index.js
CHANGED
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
|
|
331
331
|
|
|
332
332
|
|
|
333
|
-
var
|
|
333
|
+
var _chunk4GHZ6AUFjs = require('./chunk-4GHZ6AUF.js');
|
|
334
334
|
|
|
335
335
|
|
|
336
336
|
|
|
@@ -403,7 +403,7 @@ var _chunkNEVERCM3js = require('./chunk-NEVERCM3.js');
|
|
|
403
403
|
|
|
404
404
|
|
|
405
405
|
|
|
406
|
-
var
|
|
406
|
+
var _chunk3WTK7ESHjs = require('./chunk-3WTK7ESH.js');
|
|
407
407
|
|
|
408
408
|
|
|
409
409
|
|
|
@@ -564,14 +564,14 @@ function applyRelationProps(label, props, propertyDefs) {
|
|
|
564
564
|
if (value == null) continue;
|
|
565
565
|
const def = defMap.get(key);
|
|
566
566
|
if (def) {
|
|
567
|
-
const formatted =
|
|
568
|
-
formattedProps[key] = formatted ===
|
|
567
|
+
const formatted = _chunk4GHZ6AUFjs.formatAttributeValue.call(void 0, value, def);
|
|
568
|
+
formattedProps[key] = formatted === _chunk4GHZ6AUFjs.EMPTY_VALUE_PLACEHOLDER ? "" : formatted;
|
|
569
569
|
} else {
|
|
570
570
|
formattedProps[key] = value;
|
|
571
571
|
}
|
|
572
572
|
}
|
|
573
573
|
}
|
|
574
|
-
const result =
|
|
574
|
+
const result = _chunk4GHZ6AUFjs.renderLabelExpression.call(void 0, label, { props: formattedProps }, "");
|
|
575
575
|
return result.replace(/\(\s*\)/g, "").replace(/\[\s*\]/g, "").replace(/\s*[-\u2014|:]\s*$/g, "").replace(/\s{2,}/g, " ").trim();
|
|
576
576
|
}
|
|
577
577
|
|
|
@@ -1990,4 +1990,4 @@ function isViewCustomized(view2, object2) {
|
|
|
1990
1990
|
|
|
1991
1991
|
|
|
1992
1992
|
|
|
1993
|
-
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkXGFBT4K2js.ActivityTabConfig; exports.AttributeInUseError = _chunkXGFBT4K2js.AttributeInUseError; exports.AttributeNotFoundError = _chunkXGFBT4K2js.AttributeNotFoundError; exports.AuditService = _chunkXGFBT4K2js.AuditService; exports.AuthMethodSchema = _chunkXGFBT4K2js.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkXGFBT4K2js.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunkXGFBT4K2js.BaseRepository; exports.BaseService = _chunkXGFBT4K2js.BaseService; exports.ConcurrentModificationError = _chunkXGFBT4K2js.ConcurrentModificationError; exports.ConditionExecutor = _chunkXGFBT4K2js.ConditionExecutor; exports.ConditionGroupSchema = _chunkXGFBT4K2js.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkXGFBT4K2js.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkXGFBT4K2js.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkXGFBT4K2js.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkXGFBT4K2js.CreateShareInputSchema; exports.CustomTabConfig = _chunkXGFBT4K2js.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkXGFBT4K2js.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk36UBIXJNjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunk36UBIXJNjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunkXGFBT4K2js.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkV32FQLWXjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkXGFBT4K2js.DRIVING_LICENSE; exports.DetailViewBuilder = _chunkXGFBT4K2js.DetailViewBuilder; exports.DocumentExecutor = _chunkXGFBT4K2js.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkXGFBT4K2js.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkXGFBT4K2js.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkXGFBT4K2js.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkXGFBT4K2js.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkXGFBT4K2js.DocumentProcessingHook; exports.DocumentProcessingService = _chunkXGFBT4K2js.DocumentProcessingService; exports.DocumentRenderError = _chunkXGFBT4K2js.DocumentRenderError; exports.DocumentRendererService = _chunkXGFBT4K2js.DocumentRendererService; exports.DocumentService = _chunkXGFBT4K2js.DocumentService; exports.DocumentTemplateService = _chunkXGFBT4K2js.DocumentTemplateService; exports.DocumentsTabConfig = _chunkXGFBT4K2js.DocumentsTabConfig; exports.DuplicateError = _chunkXGFBT4K2js.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkXGFBT4K2js.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkXGFBT4K2js.EndExecutor; exports.EndNodeSchema = _chunkXGFBT4K2js.EndNodeSchema; exports.ExecutorRegistry = _chunkXGFBT4K2js.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkXGFBT4K2js.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkXGFBT4K2js.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkXGFBT4K2js.FeatureFlagsContextError; exports.FileNotFoundError = _chunkXGFBT4K2js.FileNotFoundError; exports.FileService = _chunkXGFBT4K2js.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkXGFBT4K2js.FlowRowFieldSchema; exports.FlowRowSchema = _chunkXGFBT4K2js.FlowRowSchema; exports.FlowsTabConfig = _chunkXGFBT4K2js.FlowsTabConfig; exports.ForbiddenError = _chunkXGFBT4K2js.ForbiddenError; exports.FormExecutor = _chunkXGFBT4K2js.FormExecutor; exports.FormFieldRefSchema = _chunkXGFBT4K2js.FormFieldRefSchema; exports.FormNodeSchema = _chunkXGFBT4K2js.FormNodeSchema; exports.FormulaResolverService = _chunkXGFBT4K2js.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkXGFBT4K2js.GENERIC_DOCUMENT; exports.GeocodingService = _chunkXGFBT4K2js.GeocodingService; exports.GlobalSearchService = _chunkXGFBT4K2js.GlobalSearchService; exports.GrantExpiredError = _chunkXGFBT4K2js.GrantExpiredError; exports.GrantNotFoundError = _chunkXGFBT4K2js.GrantNotFoundError; exports.GrantRevokedError = _chunkXGFBT4K2js.GrantRevokedError; exports.GroupBuilder = _chunkXGFBT4K2js.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkXGFBT4K2js.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkXGFBT4K2js.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkXGFBT4K2js.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkXGFBT4K2js.InvitationExpiredError; exports.InvitationNotFoundError = _chunkXGFBT4K2js.InvitationNotFoundError; exports.InvitationRevokedError = _chunkXGFBT4K2js.InvitationRevokedError; exports.ListViewBuilder = _chunkXGFBT4K2js.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkXGFBT4K2js.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunkXGFBT4K2js.MaxDepthExceededError; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkXGFBT4K2js.NodePositionSchema; exports.NoopCacheAdapter = _chunkXGFBT4K2js.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkXGFBT4K2js.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkXGFBT4K2js.NoopHookRegistry; exports.NotFoundError = _chunkXGFBT4K2js.NotFoundError; exports.NotSystemObjectError = _chunkXGFBT4K2js.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkXGFBT4K2js.ObjectBuilder; exports.ObjectNotFoundError = _chunkXGFBT4K2js.ObjectNotFoundError; exports.ObjectReferencedError = _chunkXGFBT4K2js.ObjectReferencedError; exports.ObjectSchemaService = _chunkXGFBT4K2js.ObjectSchemaService; exports.PASSPORT = _chunkXGFBT4K2js.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkXGFBT4K2js.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkXGFBT4K2js.PROOF_OF_ADDRESS; exports.PermissionService = _chunkXGFBT4K2js.PermissionService; exports.PolicyRegistry = _chunkXGFBT4K2js.PolicyRegistry; exports.PolicyViolationError = _chunkXGFBT4K2js.PolicyViolationError; exports.ProtectedResourceError = _chunkXGFBT4K2js.ProtectedResourceError; exports.ProtectedRoleError = _chunkXGFBT4K2js.ProtectedRoleError; exports.QueryBuilder = _chunkXGFBT4K2js.QueryBuilder; exports.QueryMultipleResultsError = _chunkXGFBT4K2js.QueryMultipleResultsError; exports.QueryNoResultError = _chunkXGFBT4K2js.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkXGFBT4K2js.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkXGFBT4K2js.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunkXGFBT4K2js.RecordNotFoundError; exports.RecordQueryService = _chunkXGFBT4K2js.RecordQueryService; exports.RecordReferencedError = _chunkXGFBT4K2js.RecordReferencedError; exports.RecordResolverService = _chunkXGFBT4K2js.RecordResolverService; exports.RecordService = _chunkXGFBT4K2js.RecordService; exports.RelationGroupBuilder = _chunkXGFBT4K2js.RelationGroupBuilder; exports.RelationPropertiesService = _chunkXGFBT4K2js.RelationPropertiesService; exports.RelationService = _chunkXGFBT4K2js.RelationService; exports.RichtextTabConfig = _chunkXGFBT4K2js.RichtextTabConfig; exports.RoleNotFoundError = _chunkXGFBT4K2js.RoleNotFoundError; exports.RollupScheduler = _chunkXGFBT4K2js.RollupScheduler; exports.RollupService = _chunkXGFBT4K2js.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkXGFBT4K2js.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkXGFBT4K2js.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkXGFBT4K2js.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkXGFBT4K2js.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkXGFBT4K2js.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkXGFBT4K2js.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkXGFBT4K2js.SchemaContextAwareRepository; exports.SchemaError = _chunkXGFBT4K2js.SchemaError; exports.SchemaErrorCode = _chunkXGFBT4K2js.SchemaErrorCode; exports.ShareStatusSchema = _chunkXGFBT4K2js.ShareStatusSchema; exports.SlotModeSchema = _chunkXGFBT4K2js.SlotModeSchema; exports.StartExecutor = _chunkXGFBT4K2js.StartExecutor; exports.StartNodeSchema = _chunkXGFBT4K2js.StartNodeSchema; exports.StorageDownloadNotSupportedError = _chunkXGFBT4K2js.StorageDownloadNotSupportedError; exports.SyncError = _chunkXGFBT4K2js.SyncError; exports.TabBuilder = _chunkXGFBT4K2js.TabBuilder; exports.TableTabConfig = _chunkXGFBT4K2js.TableTabConfig; exports.TenantContextError = _chunkXGFBT4K2js.TenantContextError; exports.ThemeColorsSchema = _chunkXGFBT4K2js.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkXGFBT4K2js.ThemeLogoSchema; exports.TokenRevokedError = _chunkXGFBT4K2js.TokenRevokedError; exports.UserProfileNotFoundError = _chunkXGFBT4K2js.UserProfileNotFoundError; exports.UserProfileService = _chunkXGFBT4K2js.UserProfileService; exports.UserService = _chunkXGFBT4K2js.UserService; exports.ValidationError = _chunkXGFBT4K2js.ValidationError; exports.ViewBuilder = _chunkXGFBT4K2js.ViewBuilder; exports.ViewService = _chunkXGFBT4K2js.ViewService; exports.ViewportSchema = _chunkXGFBT4K2js.ViewportSchema; exports.WorkflowAccessGrantService = _chunkXGFBT4K2js.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkXGFBT4K2js.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkXGFBT4K2js.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkXGFBT4K2js.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkXGFBT4K2js.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkXGFBT4K2js.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkXGFBT4K2js.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkXGFBT4K2js.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkXGFBT4K2js.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkXGFBT4K2js.WorkflowInvitationService; exports.WorkflowJwtService = _chunkXGFBT4K2js.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkXGFBT4K2js.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkXGFBT4K2js.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkXGFBT4K2js.WorkflowRelationService; exports.WorkflowService = _chunkXGFBT4K2js.WorkflowService; exports.WorkflowShareSchema = _chunkXGFBT4K2js.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkXGFBT4K2js.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkXGFBT4K2js.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkXGFBT4K2js.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkXGFBT4K2js.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkXGFBT4K2js.WorkflowThemeSchema; exports.addSchemaToContext = _chunkXGFBT4K2js.addSchemaToContext; exports.and = _chunkXGFBT4K2js.and; exports.applyDefaultValues = _chunkXGFBT4K2js.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunkV32FQLWXjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkXGFBT4K2js.buildAuditChanges; exports.buildPolicyContext = _chunkXGFBT4K2js.buildPolicyContext; exports.cacheKeys = _chunkXGFBT4K2js.cacheKeys; exports.cacheTtl = _chunkXGFBT4K2js.cacheTtl; exports.canAccessNode = _chunkXGFBT4K2js.canAccessNode; exports.canResumeInstance = _chunkXGFBT4K2js.canResumeInstance; exports.checkPermission = _chunkXGFBT4K2js.checkPermission; exports.checkRecordAccess = _chunkXGFBT4K2js.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkXGFBT4K2js.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkXGFBT4K2js.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkXGFBT4K2js.checkSharedObjectWriteAccess; exports.checkbox = _chunkXGFBT4K2js.checkbox; exports.checkboxConfigSchema = _chunkV32FQLWXjs.checkboxConfigSchema; exports.complete = _chunkXGFBT4K2js.complete; exports.computeLabel = _chunkXGFBT4K2js.computeLabel; exports.computeLabelWithRelations = _chunkXGFBT4K2js.computeLabelWithRelations; exports.computeRecordStatus = _chunkV32FQLWXjs.computeRecordStatus; exports.createAttributeValidator = _chunkV32FQLWXjs.createAttributeValidator; exports.createCheckboxValidator = _chunkV32FQLWXjs.createCheckboxValidator; exports.createContextForCreate = _chunkXGFBT4K2js.createContextForCreate; exports.createContextForDelete = _chunkXGFBT4K2js.createContextForDelete; exports.createContextForRestore = _chunkXGFBT4K2js.createContextForRestore; exports.createContextForUpdate = _chunkXGFBT4K2js.createContextForUpdate; exports.createCurrencyValidator = _chunkV32FQLWXjs.createCurrencyValidator; exports.createDateValidator = _chunkV32FQLWXjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkXGFBT4K2js.createDefaultExecutorRegistry; exports.createDefaultState = _chunkXGFBT4K2js.createDefaultState; exports.createDraftValidator = _chunkV32FQLWXjs.createDraftValidator; exports.createEmptyContext = _chunkXGFBT4K2js.createEmptyContext; exports.createFileValidator = _chunkV32FQLWXjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkV32FQLWXjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkV32FQLWXjs.createFormulaValidator; exports.createLocationValidator = _chunkV32FQLWXjs.createLocationValidator; exports.createMockAdapter = _chunkXGFBT4K2js.createMockAdapter; exports.createMultiRelationValidator = _chunkV32FQLWXjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkV32FQLWXjs.createMultiselectValidator; exports.createNumberValidator = _chunkV32FQLWXjs.createNumberValidator; exports.createObjectValidator = _chunkV32FQLWXjs.createObjectValidator; exports.createPhoneValidator = _chunkV32FQLWXjs.createPhoneValidator; exports.createQueryBuilder = _chunkXGFBT4K2js.createQueryBuilder; exports.createRatingValidator = _chunkV32FQLWXjs.createRatingValidator; exports.createRelationValidator = _chunkV32FQLWXjs.createRelationValidator; exports.createRichtextValidator = _chunkV32FQLWXjs.createRichtextValidator; exports.createRollupValidator = _chunkV32FQLWXjs.createRollupValidator; exports.createSelectValidator = _chunkV32FQLWXjs.createSelectValidator; exports.createSingleRelationValidator = _chunkV32FQLWXjs.createSingleRelationValidator; exports.createStartTransition = _chunkXGFBT4K2js.createStartTransition; exports.createStatusValidator = _chunkV32FQLWXjs.createStatusValidator; exports.createTextAreaValidator = _chunkV32FQLWXjs.createTextAreaValidator; exports.createTextValidator = _chunkV32FQLWXjs.createTextValidator; exports.createUserValidator = _chunkV32FQLWXjs.createUserValidator; exports.currency = _chunkXGFBT4K2js.currency; exports.currencyConfigSchema = _chunkV32FQLWXjs.currencyConfigSchema; exports.date = _chunkXGFBT4K2js.date; exports.dateConfigSchema = _chunkV32FQLWXjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkXGFBT4K2js.defaultPolicyRegistry; exports.defaultTtl = _chunkXGFBT4K2js.defaultTtl; exports.detailView = _chunkXGFBT4K2js.detailView; exports.document = _chunkXGFBT4K2js.document; exports.documentConfigSchema = _chunkV32FQLWXjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkXGFBT4K2js.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkXGFBT4K2js.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkXGFBT4K2js.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkXGFBT4K2js.enrichWithFormulas; exports.eq = _chunkXGFBT4K2js.eq; exports.error = _chunkXGFBT4K2js.error; exports.evaluate = _chunkXGFBT4K2js.evaluate; exports.evaluateCondition = _chunkXGFBT4K2js.evaluateCondition; exports.evaluateFormula = _chunkXGFBT4K2js.evaluateFormula; exports.evaluateFormulaAttribute = _chunkXGFBT4K2js.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkXGFBT4K2js.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkXGFBT4K2js.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkXGFBT4K2js.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkXGFBT4K2js.evaluateWithTrace; exports.extractAttributeNames = _chunkXGFBT4K2js.extractAttributeNames; exports.extractFormulaVariables = _chunkXGFBT4K2js.extractFormulaVariables; exports.extractRelationIds = _chunkXGFBT4K2js.extractRelationIds; exports.extractRelationNames = _chunkXGFBT4K2js.extractRelationNames; exports.extractRelationReferences = _chunkXGFBT4K2js.extractRelationReferences; exports.file = _chunkXGFBT4K2js.file; exports.fileConfigSchema = _chunkV32FQLWXjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkXGFBT4K2js.flattenRelationsForEval; exports.formatAttributeValue = _chunkXGFBT4K2js.formatAttributeValue; exports.formatFormulaResult = _chunkXGFBT4K2js.formatFormulaResult; exports.formatPhoneForDisplay = _chunkV32FQLWXjs.formatPhoneForDisplay; exports.formatRecord = _chunkXGFBT4K2js.formatRecord; exports.formatRecords = _chunkXGFBT4K2js.formatRecords; exports.formatZodErrors = _chunkV32FQLWXjs.formatZodErrors; exports.formula = _chunkXGFBT4K2js.formula; exports.formulaConfigSchema = _chunkV32FQLWXjs.formulaConfigSchema; exports.generateCssVariables = _chunkXGFBT4K2js.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getActiveTab = getActiveTab; exports.getAttributeConfigSchema = _chunkV32FQLWXjs.getAttributeConfigSchema; exports.getContext = _chunkXGFBT4K2js.getContext; exports.getContextValue = _chunkXGFBT4K2js.getContextValue; exports.getDefaultExecutorRegistry = _chunkXGFBT4K2js.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkXGFBT4K2js.getErrorMessage; exports.getFeatureFlags = _chunkXGFBT4K2js.getFeatureFlags; exports.getFeatureValue = _chunkXGFBT4K2js.getFeatureValue; exports.getMissingRequiredAttributes = _chunkV32FQLWXjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkXGFBT4K2js.getNodeOutputs; exports.getPathDepth = _chunkXGFBT4K2js.getPathDepth; exports.getPolicy = _chunkXGFBT4K2js.getPolicy; exports.getRelationPath = _chunkXGFBT4K2js.getRelationPath; exports.getSchemaByNameFromContext = _chunkXGFBT4K2js.getSchemaByNameFromContext; exports.getSchemaContext = _chunkXGFBT4K2js.getSchemaContext; exports.getSchemaFromContext = _chunkXGFBT4K2js.getSchemaFromContext; exports.getSyncPreview = _chunkXGFBT4K2js.getSyncPreview; exports.getSystemAttributeList = _chunkXGFBT4K2js.getSystemAttributeList; exports.getSystemTemplate = _chunkXGFBT4K2js.getSystemTemplate; exports.getTargetAttributeName = _chunkXGFBT4K2js.getTargetAttributeName; exports.getTenantId = _chunkXGFBT4K2js.getTenantId; exports.getUserId = _chunkXGFBT4K2js.getUserId; exports.getViewSeedPreview = _chunkXGFBT4K2js.getViewSeedPreview; exports.getViewSyncPreview = _chunkXGFBT4K2js.getViewSyncPreview; exports.group = _chunkXGFBT4K2js.group; exports.hasContext = _chunkXGFBT4K2js.hasContext; exports.hasFeatureFlagsContext = _chunkXGFBT4K2js.hasFeatureFlagsContext; exports.hasProperties = _chunkXGFBT4K2js.hasProperties; exports.hasRelationReferences = _chunkXGFBT4K2js.hasRelationReferences; exports.hasSchemaContext = _chunkXGFBT4K2js.hasSchemaContext; exports.hashOptions = _chunkXGFBT4K2js.hashOptions; exports.inValues = _chunkXGFBT4K2js.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.inferInverseCardinality = _chunkXGFBT4K2js.inferInverseCardinality; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkXGFBT4K2js.isAdvancedFormNode; exports.isBehaviorProperty = _chunkXGFBT4K2js.isBehaviorProperty; exports.isBilateralRelation = _chunkXGFBT4K2js.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkXGFBT4K2js.isConditionGroup; exports.isConditionNode = _chunkXGFBT4K2js.isConditionNode; exports.isConditionRule = _chunkXGFBT4K2js.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentNode = _chunkXGFBT4K2js.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkXGFBT4K2js.isEmpty; exports.isEndNode = _chunkXGFBT4K2js.isEndNode; exports.isFeatureEnabled = _chunkXGFBT4K2js.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkXGFBT4K2js.isForbiddenError; exports.isFormNode = _chunkXGFBT4K2js.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkXGFBT4K2js.isGrantExpired; exports.isGrantRevoked = _chunkXGFBT4K2js.isGrantRevoked; exports.isGrantValid = _chunkXGFBT4K2js.isGrantValid; exports.isIdentityProperty = _chunkXGFBT4K2js.isIdentityProperty; exports.isInstanceEvent = _chunkXGFBT4K2js.isInstanceEvent; exports.isInstanceTerminal = _chunkXGFBT4K2js.isInstanceTerminal; exports.isInstanceWaiting = _chunkXGFBT4K2js.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunkXGFBT4K2js.isInvitationAccepted; exports.isInvitationExpired = _chunkXGFBT4K2js.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkXGFBT4K2js.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkXGFBT4K2js.isInvitationValid; exports.isLabelExpression = _chunkXGFBT4K2js.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkXGFBT4K2js.isNodeEvent; exports.isNotEmpty = _chunkXGFBT4K2js.isNotEmpty; exports.isNotFoundError = _chunkXGFBT4K2js.isNotFoundError; exports.isPresentationProperty = _chunkXGFBT4K2js.isPresentationProperty; exports.isProtectedResourceError = _chunkXGFBT4K2js.isProtectedResourceError; exports.isRecordComplete = _chunkV32FQLWXjs.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunkXGFBT4K2js.isSchemaError; exports.isSimpleFormNode = _chunkXGFBT4K2js.isSimpleFormNode; exports.isStartNode = _chunkXGFBT4K2js.isStartNode; exports.isSystemAttribute = _chunkXGFBT4K2js.isSystemAttribute; exports.isSystemAttributeObject = _chunkXGFBT4K2js.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkXGFBT4K2js.isSystemTemplate; exports.isSystemWorkflow = _chunkXGFBT4K2js.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkXGFBT4K2js.isTokenRevoked; exports.isUniversalRelation = _chunkXGFBT4K2js.isUniversalRelation; exports.isValidationError = _chunkXGFBT4K2js.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkXGFBT4K2js.isWorkflowDefinition; exports.isWorkflowPublished = _chunkXGFBT4K2js.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkXGFBT4K2js.listView; exports.location = _chunkXGFBT4K2js.location; exports.locationConfigSchema = _chunkV32FQLWXjs.locationConfigSchema; exports.mergeWithDefaults = _chunkXGFBT4K2js.mergeWithDefaults; exports.multiselect = _chunkXGFBT4K2js.multiselect; exports.multiselectConfigSchema = _chunkV32FQLWXjs.multiselectConfigSchema; exports.neq = _chunkXGFBT4K2js.neq; exports.normalizePhoneNumber = _chunkV32FQLWXjs.normalizePhoneNumber; exports.number = _chunkXGFBT4K2js.number; exports.numberConfigSchema = _chunkV32FQLWXjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkXGFBT4K2js.object; exports.or = _chunkXGFBT4K2js.or; exports.parseAttributeConfig = _chunkV32FQLWXjs.parseAttributeConfig; exports.parsePath = _chunkXGFBT4K2js.parsePath; exports.parseRawPhoneInput = _chunkV32FQLWXjs.parseRawPhoneInput; exports.pathHasManyCardinality = _chunkXGFBT4K2js.pathHasManyCardinality; exports.phone = _chunkXGFBT4K2js.phone; exports.phoneConfigSchema = _chunkV32FQLWXjs.phoneConfigSchema; exports.rating = _chunkXGFBT4K2js.rating; exports.ratingConfigSchema = _chunkV32FQLWXjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkXGFBT4K2js.recalculateParentRollups; exports.registry = _chunkXGFBT4K2js.registry; exports.relation = _chunkXGFBT4K2js.relation; exports.relationConfigSchema = _chunkV32FQLWXjs.relationConfigSchema; exports.relationGroup = _chunkXGFBT4K2js.relationGroup; exports.renderLabelExpression = _chunkXGFBT4K2js.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkXGFBT4K2js.resolveMultiplePaths; exports.resolveSingleValue = _chunkXGFBT4K2js.resolveSingleValue; exports.richtext = _chunkXGFBT4K2js.richtext; exports.richtextConfigSchema = _chunkV32FQLWXjs.richtextConfigSchema; exports.rollup = _chunkXGFBT4K2js.rollup; exports.rollupConfigSchema = _chunkV32FQLWXjs.rollupConfigSchema; exports.runWithContext = _chunkXGFBT4K2js.runWithContext; exports.runWithFeatureFlags = _chunkXGFBT4K2js.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkXGFBT4K2js.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkXGFBT4K2js.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkV32FQLWXjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkXGFBT4K2js.seedRegistryViews; exports.select = _chunkXGFBT4K2js.select; exports.selectConfigSchema = _chunkV32FQLWXjs.selectConfigSchema; exports.setContextValue = _chunkXGFBT4K2js.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkXGFBT4K2js.status; exports.statusConfigSchema = _chunkV32FQLWXjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkXGFBT4K2js.success; exports.syncAll = _chunkXGFBT4K2js.syncAll; exports.syncNativeObjects = _chunkXGFBT4K2js.syncNativeObjects; exports.syncNativeViews = _chunkXGFBT4K2js.syncNativeViews; exports.text = _chunkXGFBT4K2js.text; exports.textConfigSchema = _chunkV32FQLWXjs.textConfigSchema; exports.textarea = _chunkXGFBT4K2js.textarea; exports.textareaConfigSchema = _chunkV32FQLWXjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkXGFBT4K2js.toUndefinedIfEmpty; exports.traversePath = _chunkXGFBT4K2js.traversePath; exports.tryGetFeatureValue = _chunkXGFBT4K2js.tryGetFeatureValue; exports.user = _chunkXGFBT4K2js.user; exports.userConfigSchema = _chunkV32FQLWXjs.userConfigSchema; exports.validateAttribute = _chunkV32FQLWXjs.validateAttribute; exports.validateAttributeConfig = _chunkV32FQLWXjs.validateAttributeConfig; exports.validateDraft = _chunkV32FQLWXjs.validateDraft; exports.validateDraftOrThrow = _chunkV32FQLWXjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkXGFBT4K2js.validateFormulaExpression; exports.validateObject = _chunkV32FQLWXjs.validateObject; exports.validateObjectOrThrow = _chunkV32FQLWXjs.validateObjectOrThrow; exports.validatePath = _chunkXGFBT4K2js.validatePath; exports.validatePhoneNumber = _chunkV32FQLWXjs.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunkXGFBT4K2js.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkXGFBT4K2js.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkXGFBT4K2js.verifyRegistryViewsSeeded; exports.view = _chunkXGFBT4K2js.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkXGFBT4K2js.wait; exports.withFeatureFlags = _chunkXGFBT4K2js.withFeatureFlags; exports.withTenantContext = _chunkXGFBT4K2js.withTenantContext; exports.workflow = _chunkXGFBT4K2js.workflow;
|
|
1993
|
+
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunk4GHZ6AUFjs.ActivityTabConfig; exports.AttributeInUseError = _chunk4GHZ6AUFjs.AttributeInUseError; exports.AttributeNotFoundError = _chunk4GHZ6AUFjs.AttributeNotFoundError; exports.AuditService = _chunk4GHZ6AUFjs.AuditService; exports.AuthMethodSchema = _chunk4GHZ6AUFjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunk4GHZ6AUFjs.BEHAVIOR_PROPERTIES; exports.BaseRepository = _chunk4GHZ6AUFjs.BaseRepository; exports.BaseService = _chunk4GHZ6AUFjs.BaseService; exports.ConcurrentModificationError = _chunk4GHZ6AUFjs.ConcurrentModificationError; exports.ConditionExecutor = _chunk4GHZ6AUFjs.ConditionExecutor; exports.ConditionGroupSchema = _chunk4GHZ6AUFjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunk4GHZ6AUFjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunk4GHZ6AUFjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunk4GHZ6AUFjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunk4GHZ6AUFjs.CreateShareInputSchema; exports.CustomTabConfig = _chunk4GHZ6AUFjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunk4GHZ6AUFjs.DEFAULT_LABEL_FALLBACK; exports.DEFAULT_ROLES = _chunk36UBIXJNjs.DEFAULT_ROLES; exports.DEFAULT_ROLE_DESCRIPTIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_DESCRIPTIONS; exports.DEFAULT_ROLE_LABELS = _chunk36UBIXJNjs.DEFAULT_ROLE_LABELS; exports.DEFAULT_ROLE_PERMISSIONS = _chunk36UBIXJNjs.DEFAULT_ROLE_PERMISSIONS; exports.DEFAULT_THEME = _chunk4GHZ6AUFjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunk3WTK7ESHjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunk4GHZ6AUFjs.DRIVING_LICENSE; exports.DetailViewBuilder = _chunk4GHZ6AUFjs.DetailViewBuilder; exports.DocumentExecutor = _chunk4GHZ6AUFjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk4GHZ6AUFjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk4GHZ6AUFjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk4GHZ6AUFjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunk4GHZ6AUFjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunk4GHZ6AUFjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk4GHZ6AUFjs.DocumentProcessingService; exports.DocumentRenderError = _chunk4GHZ6AUFjs.DocumentRenderError; exports.DocumentRendererService = _chunk4GHZ6AUFjs.DocumentRendererService; exports.DocumentService = _chunk4GHZ6AUFjs.DocumentService; exports.DocumentTemplateService = _chunk4GHZ6AUFjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunk4GHZ6AUFjs.DocumentsTabConfig; exports.DuplicateError = _chunk4GHZ6AUFjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunk4GHZ6AUFjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunk4GHZ6AUFjs.EndExecutor; exports.EndNodeSchema = _chunk4GHZ6AUFjs.EndNodeSchema; exports.ExecutorRegistry = _chunk4GHZ6AUFjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunk4GHZ6AUFjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunk4GHZ6AUFjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunk4GHZ6AUFjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunk4GHZ6AUFjs.FileNotFoundError; exports.FileService = _chunk4GHZ6AUFjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunk4GHZ6AUFjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunk4GHZ6AUFjs.FlowRowSchema; exports.FlowsTabConfig = _chunk4GHZ6AUFjs.FlowsTabConfig; exports.ForbiddenError = _chunk4GHZ6AUFjs.ForbiddenError; exports.FormExecutor = _chunk4GHZ6AUFjs.FormExecutor; exports.FormFieldRefSchema = _chunk4GHZ6AUFjs.FormFieldRefSchema; exports.FormNodeSchema = _chunk4GHZ6AUFjs.FormNodeSchema; exports.FormulaResolverService = _chunk4GHZ6AUFjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunk4GHZ6AUFjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunk4GHZ6AUFjs.GeocodingService; exports.GlobalSearchService = _chunk4GHZ6AUFjs.GlobalSearchService; exports.GrantExpiredError = _chunk4GHZ6AUFjs.GrantExpiredError; exports.GrantNotFoundError = _chunk4GHZ6AUFjs.GrantNotFoundError; exports.GrantRevokedError = _chunk4GHZ6AUFjs.GrantRevokedError; exports.GroupBuilder = _chunk4GHZ6AUFjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunk4GHZ6AUFjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunk4GHZ6AUFjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk4GHZ6AUFjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk4GHZ6AUFjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk4GHZ6AUFjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk4GHZ6AUFjs.InvitationRevokedError; exports.ListViewBuilder = _chunk4GHZ6AUFjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunk4GHZ6AUFjs.ListViewTabConfigBuilder; exports.MaxDepthExceededError = _chunk4GHZ6AUFjs.MaxDepthExceededError; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunk4GHZ6AUFjs.NodePositionSchema; exports.NoopCacheAdapter = _chunk4GHZ6AUFjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk4GHZ6AUFjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk4GHZ6AUFjs.NoopHookRegistry; exports.NotFoundError = _chunk4GHZ6AUFjs.NotFoundError; exports.NotSystemObjectError = _chunk4GHZ6AUFjs.NotSystemObjectError; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunk4GHZ6AUFjs.ObjectBuilder; exports.ObjectNotFoundError = _chunk4GHZ6AUFjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunk4GHZ6AUFjs.ObjectReferencedError; exports.ObjectSchemaService = _chunk4GHZ6AUFjs.ObjectSchemaService; exports.PASSPORT = _chunk4GHZ6AUFjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunk4GHZ6AUFjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunk4GHZ6AUFjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunk4GHZ6AUFjs.PermissionService; exports.PolicyRegistry = _chunk4GHZ6AUFjs.PolicyRegistry; exports.PolicyViolationError = _chunk4GHZ6AUFjs.PolicyViolationError; exports.ProtectedResourceError = _chunk4GHZ6AUFjs.ProtectedResourceError; exports.ProtectedRoleError = _chunk4GHZ6AUFjs.ProtectedRoleError; exports.QueryBuilder = _chunk4GHZ6AUFjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk4GHZ6AUFjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk4GHZ6AUFjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunk4GHZ6AUFjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunk4GHZ6AUFjs.RESERVED_ATTRIBUTE_NAMES; exports.RecordNotFoundError = _chunk4GHZ6AUFjs.RecordNotFoundError; exports.RecordQueryService = _chunk4GHZ6AUFjs.RecordQueryService; exports.RecordReferencedError = _chunk4GHZ6AUFjs.RecordReferencedError; exports.RecordResolverService = _chunk4GHZ6AUFjs.RecordResolverService; exports.RecordService = _chunk4GHZ6AUFjs.RecordService; exports.RelationGroupBuilder = _chunk4GHZ6AUFjs.RelationGroupBuilder; exports.RelationPropertiesService = _chunk4GHZ6AUFjs.RelationPropertiesService; exports.RelationService = _chunk4GHZ6AUFjs.RelationService; exports.RichtextTabConfig = _chunk4GHZ6AUFjs.RichtextTabConfig; exports.RoleNotFoundError = _chunk4GHZ6AUFjs.RoleNotFoundError; exports.RollupScheduler = _chunk4GHZ6AUFjs.RollupScheduler; exports.RollupService = _chunk4GHZ6AUFjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk4GHZ6AUFjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunk4GHZ6AUFjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunk4GHZ6AUFjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunk4GHZ6AUFjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunk4GHZ6AUFjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunk4GHZ6AUFjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunk4GHZ6AUFjs.SchemaContextAwareRepository; exports.SchemaError = _chunk4GHZ6AUFjs.SchemaError; exports.SchemaErrorCode = _chunk4GHZ6AUFjs.SchemaErrorCode; exports.ShareStatusSchema = _chunk4GHZ6AUFjs.ShareStatusSchema; exports.SlotModeSchema = _chunk4GHZ6AUFjs.SlotModeSchema; exports.StartExecutor = _chunk4GHZ6AUFjs.StartExecutor; exports.StartNodeSchema = _chunk4GHZ6AUFjs.StartNodeSchema; exports.StorageDownloadNotSupportedError = _chunk4GHZ6AUFjs.StorageDownloadNotSupportedError; exports.SyncError = _chunk4GHZ6AUFjs.SyncError; exports.TabBuilder = _chunk4GHZ6AUFjs.TabBuilder; exports.TableTabConfig = _chunk4GHZ6AUFjs.TableTabConfig; exports.TenantContextError = _chunk4GHZ6AUFjs.TenantContextError; exports.ThemeColorsSchema = _chunk4GHZ6AUFjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunk4GHZ6AUFjs.ThemeLogoSchema; exports.TokenRevokedError = _chunk4GHZ6AUFjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunk4GHZ6AUFjs.UserProfileNotFoundError; exports.UserProfileService = _chunk4GHZ6AUFjs.UserProfileService; exports.UserService = _chunk4GHZ6AUFjs.UserService; exports.ValidationError = _chunk4GHZ6AUFjs.ValidationError; exports.ViewBuilder = _chunk4GHZ6AUFjs.ViewBuilder; exports.ViewService = _chunk4GHZ6AUFjs.ViewService; exports.ViewportSchema = _chunk4GHZ6AUFjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunk4GHZ6AUFjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunk4GHZ6AUFjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunk4GHZ6AUFjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunk4GHZ6AUFjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunk4GHZ6AUFjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunk4GHZ6AUFjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunk4GHZ6AUFjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunk4GHZ6AUFjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunk4GHZ6AUFjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk4GHZ6AUFjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk4GHZ6AUFjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunk4GHZ6AUFjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunk4GHZ6AUFjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunk4GHZ6AUFjs.WorkflowRelationService; exports.WorkflowService = _chunk4GHZ6AUFjs.WorkflowService; exports.WorkflowShareSchema = _chunk4GHZ6AUFjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunk4GHZ6AUFjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunk4GHZ6AUFjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunk4GHZ6AUFjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunk4GHZ6AUFjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunk4GHZ6AUFjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunk4GHZ6AUFjs.addSchemaToContext; exports.and = _chunk4GHZ6AUFjs.and; exports.applyDefaultValues = _chunk4GHZ6AUFjs.applyDefaultValues; exports.applyRelationProps = applyRelationProps; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunk3WTK7ESHjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunk4GHZ6AUFjs.buildAuditChanges; exports.buildPolicyContext = _chunk4GHZ6AUFjs.buildPolicyContext; exports.cacheKeys = _chunk4GHZ6AUFjs.cacheKeys; exports.cacheTtl = _chunk4GHZ6AUFjs.cacheTtl; exports.canAccessNode = _chunk4GHZ6AUFjs.canAccessNode; exports.canResumeInstance = _chunk4GHZ6AUFjs.canResumeInstance; exports.checkPermission = _chunk4GHZ6AUFjs.checkPermission; exports.checkRecordAccess = _chunk4GHZ6AUFjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk4GHZ6AUFjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk4GHZ6AUFjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk4GHZ6AUFjs.checkSharedObjectWriteAccess; exports.checkbox = _chunk4GHZ6AUFjs.checkbox; exports.checkboxConfigSchema = _chunk3WTK7ESHjs.checkboxConfigSchema; exports.complete = _chunk4GHZ6AUFjs.complete; exports.computeLabel = _chunk4GHZ6AUFjs.computeLabel; exports.computeLabelWithRelations = _chunk4GHZ6AUFjs.computeLabelWithRelations; exports.computeRecordStatus = _chunk3WTK7ESHjs.computeRecordStatus; exports.createAttributeValidator = _chunk3WTK7ESHjs.createAttributeValidator; exports.createCheckboxValidator = _chunk3WTK7ESHjs.createCheckboxValidator; exports.createContextForCreate = _chunk4GHZ6AUFjs.createContextForCreate; exports.createContextForDelete = _chunk4GHZ6AUFjs.createContextForDelete; exports.createContextForRestore = _chunk4GHZ6AUFjs.createContextForRestore; exports.createContextForUpdate = _chunk4GHZ6AUFjs.createContextForUpdate; exports.createCurrencyValidator = _chunk3WTK7ESHjs.createCurrencyValidator; exports.createDateValidator = _chunk3WTK7ESHjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunk4GHZ6AUFjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk4GHZ6AUFjs.createDefaultState; exports.createDraftValidator = _chunk3WTK7ESHjs.createDraftValidator; exports.createEmptyContext = _chunk4GHZ6AUFjs.createEmptyContext; exports.createFileValidator = _chunk3WTK7ESHjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunk3WTK7ESHjs.createFormAttributeValidator; exports.createFormulaValidator = _chunk3WTK7ESHjs.createFormulaValidator; exports.createLocationValidator = _chunk3WTK7ESHjs.createLocationValidator; exports.createMockAdapter = _chunk4GHZ6AUFjs.createMockAdapter; exports.createMultiRelationValidator = _chunk3WTK7ESHjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk3WTK7ESHjs.createMultiselectValidator; exports.createNumberValidator = _chunk3WTK7ESHjs.createNumberValidator; exports.createObjectValidator = _chunk3WTK7ESHjs.createObjectValidator; exports.createPhoneValidator = _chunk3WTK7ESHjs.createPhoneValidator; exports.createQueryBuilder = _chunk4GHZ6AUFjs.createQueryBuilder; exports.createRatingValidator = _chunk3WTK7ESHjs.createRatingValidator; exports.createRelationValidator = _chunk3WTK7ESHjs.createRelationValidator; exports.createRichtextValidator = _chunk3WTK7ESHjs.createRichtextValidator; exports.createRollupValidator = _chunk3WTK7ESHjs.createRollupValidator; exports.createSelectValidator = _chunk3WTK7ESHjs.createSelectValidator; exports.createSingleRelationValidator = _chunk3WTK7ESHjs.createSingleRelationValidator; exports.createStartTransition = _chunk4GHZ6AUFjs.createStartTransition; exports.createStatusValidator = _chunk3WTK7ESHjs.createStatusValidator; exports.createTextAreaValidator = _chunk3WTK7ESHjs.createTextAreaValidator; exports.createTextValidator = _chunk3WTK7ESHjs.createTextValidator; exports.createUserValidator = _chunk3WTK7ESHjs.createUserValidator; exports.currency = _chunk4GHZ6AUFjs.currency; exports.currencyConfigSchema = _chunk3WTK7ESHjs.currencyConfigSchema; exports.date = _chunk4GHZ6AUFjs.date; exports.dateConfigSchema = _chunk3WTK7ESHjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunk4GHZ6AUFjs.defaultPolicyRegistry; exports.defaultTtl = _chunk4GHZ6AUFjs.defaultTtl; exports.detailView = _chunk4GHZ6AUFjs.detailView; exports.document = _chunk4GHZ6AUFjs.document; exports.documentConfigSchema = _chunk3WTK7ESHjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunk4GHZ6AUFjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk4GHZ6AUFjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk4GHZ6AUFjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk4GHZ6AUFjs.enrichWithFormulas; exports.eq = _chunk4GHZ6AUFjs.eq; exports.error = _chunk4GHZ6AUFjs.error; exports.evaluate = _chunk4GHZ6AUFjs.evaluate; exports.evaluateCondition = _chunk4GHZ6AUFjs.evaluateCondition; exports.evaluateFormula = _chunk4GHZ6AUFjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk4GHZ6AUFjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk4GHZ6AUFjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk4GHZ6AUFjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk4GHZ6AUFjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk4GHZ6AUFjs.evaluateWithTrace; exports.extractAttributeNames = _chunk4GHZ6AUFjs.extractAttributeNames; exports.extractFormulaVariables = _chunk4GHZ6AUFjs.extractFormulaVariables; exports.extractRelationIds = _chunk4GHZ6AUFjs.extractRelationIds; exports.extractRelationNames = _chunk4GHZ6AUFjs.extractRelationNames; exports.extractRelationReferences = _chunk4GHZ6AUFjs.extractRelationReferences; exports.file = _chunk4GHZ6AUFjs.file; exports.fileConfigSchema = _chunk3WTK7ESHjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunk4GHZ6AUFjs.flattenRelationsForEval; exports.formatAttributeValue = _chunk4GHZ6AUFjs.formatAttributeValue; exports.formatFormulaResult = _chunk4GHZ6AUFjs.formatFormulaResult; exports.formatPhoneForDisplay = _chunk3WTK7ESHjs.formatPhoneForDisplay; exports.formatRecord = _chunk4GHZ6AUFjs.formatRecord; exports.formatRecords = _chunk4GHZ6AUFjs.formatRecords; exports.formatZodErrors = _chunk3WTK7ESHjs.formatZodErrors; exports.formula = _chunk4GHZ6AUFjs.formula; exports.formulaConfigSchema = _chunk3WTK7ESHjs.formulaConfigSchema; exports.generateCssVariables = _chunk4GHZ6AUFjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getActiveTab = getActiveTab; exports.getAttributeConfigSchema = _chunk3WTK7ESHjs.getAttributeConfigSchema; exports.getContext = _chunk4GHZ6AUFjs.getContext; exports.getContextValue = _chunk4GHZ6AUFjs.getContextValue; exports.getDefaultExecutorRegistry = _chunk4GHZ6AUFjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunk4GHZ6AUFjs.getErrorMessage; exports.getFeatureFlags = _chunk4GHZ6AUFjs.getFeatureFlags; exports.getFeatureValue = _chunk4GHZ6AUFjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunk3WTK7ESHjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunk4GHZ6AUFjs.getNodeOutputs; exports.getPathDepth = _chunk4GHZ6AUFjs.getPathDepth; exports.getPolicy = _chunk4GHZ6AUFjs.getPolicy; exports.getRelationPath = _chunk4GHZ6AUFjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk4GHZ6AUFjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk4GHZ6AUFjs.getSchemaContext; exports.getSchemaFromContext = _chunk4GHZ6AUFjs.getSchemaFromContext; exports.getSyncPreview = _chunk4GHZ6AUFjs.getSyncPreview; exports.getSystemAttributeList = _chunk4GHZ6AUFjs.getSystemAttributeList; exports.getSystemTemplate = _chunk4GHZ6AUFjs.getSystemTemplate; exports.getTargetAttributeName = _chunk4GHZ6AUFjs.getTargetAttributeName; exports.getTenantId = _chunk4GHZ6AUFjs.getTenantId; exports.getUserId = _chunk4GHZ6AUFjs.getUserId; exports.getViewSeedPreview = _chunk4GHZ6AUFjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk4GHZ6AUFjs.getViewSyncPreview; exports.group = _chunk4GHZ6AUFjs.group; exports.hasContext = _chunk4GHZ6AUFjs.hasContext; exports.hasFeatureFlagsContext = _chunk4GHZ6AUFjs.hasFeatureFlagsContext; exports.hasProperties = _chunk4GHZ6AUFjs.hasProperties; exports.hasRelationReferences = _chunk4GHZ6AUFjs.hasRelationReferences; exports.hasSchemaContext = _chunk4GHZ6AUFjs.hasSchemaContext; exports.hashOptions = _chunk4GHZ6AUFjs.hashOptions; exports.inValues = _chunk4GHZ6AUFjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.inferInverseCardinality = _chunk4GHZ6AUFjs.inferInverseCardinality; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunk4GHZ6AUFjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunk4GHZ6AUFjs.isBehaviorProperty; exports.isBilateralRelation = _chunk4GHZ6AUFjs.isBilateralRelation; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunk4GHZ6AUFjs.isConditionGroup; exports.isConditionNode = _chunk4GHZ6AUFjs.isConditionNode; exports.isConditionRule = _chunk4GHZ6AUFjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDocumentNode = _chunk4GHZ6AUFjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunk4GHZ6AUFjs.isEmpty; exports.isEndNode = _chunk4GHZ6AUFjs.isEndNode; exports.isFeatureEnabled = _chunk4GHZ6AUFjs.isFeatureEnabled; exports.isFieldGroup = isFieldGroup; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunk4GHZ6AUFjs.isForbiddenError; exports.isFormNode = _chunk4GHZ6AUFjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunk4GHZ6AUFjs.isGrantExpired; exports.isGrantRevoked = _chunk4GHZ6AUFjs.isGrantRevoked; exports.isGrantValid = _chunk4GHZ6AUFjs.isGrantValid; exports.isIdentityProperty = _chunk4GHZ6AUFjs.isIdentityProperty; exports.isInstanceEvent = _chunk4GHZ6AUFjs.isInstanceEvent; exports.isInstanceTerminal = _chunk4GHZ6AUFjs.isInstanceTerminal; exports.isInstanceWaiting = _chunk4GHZ6AUFjs.isInstanceWaiting; exports.isInverseSourceTab = isInverseSourceTab; exports.isInvitationAccepted = _chunk4GHZ6AUFjs.isInvitationAccepted; exports.isInvitationExpired = _chunk4GHZ6AUFjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunk4GHZ6AUFjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunk4GHZ6AUFjs.isInvitationValid; exports.isLabelExpression = _chunk4GHZ6AUFjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunk4GHZ6AUFjs.isNodeEvent; exports.isNotEmpty = _chunk4GHZ6AUFjs.isNotEmpty; exports.isNotFoundError = _chunk4GHZ6AUFjs.isNotFoundError; exports.isPresentationProperty = _chunk4GHZ6AUFjs.isPresentationProperty; exports.isProtectedResourceError = _chunk4GHZ6AUFjs.isProtectedResourceError; exports.isRecordComplete = _chunk3WTK7ESHjs.isRecordComplete; exports.isRelationGroup = isRelationGroup; exports.isRelationSourceTab = isRelationSourceTab; exports.isRichtextTab = isRichtextTab; exports.isSchemaError = _chunk4GHZ6AUFjs.isSchemaError; exports.isSimpleFormNode = _chunk4GHZ6AUFjs.isSimpleFormNode; exports.isStartNode = _chunk4GHZ6AUFjs.isStartNode; exports.isSystemAttribute = _chunk4GHZ6AUFjs.isSystemAttribute; exports.isSystemAttributeObject = _chunk4GHZ6AUFjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunk4GHZ6AUFjs.isSystemTemplate; exports.isSystemWorkflow = _chunk4GHZ6AUFjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunk4GHZ6AUFjs.isTokenRevoked; exports.isUniversalRelation = _chunk4GHZ6AUFjs.isUniversalRelation; exports.isValidationError = _chunk4GHZ6AUFjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunk4GHZ6AUFjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunk4GHZ6AUFjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunk4GHZ6AUFjs.listView; exports.location = _chunk4GHZ6AUFjs.location; exports.locationConfigSchema = _chunk3WTK7ESHjs.locationConfigSchema; exports.mergeWithDefaults = _chunk4GHZ6AUFjs.mergeWithDefaults; exports.multiselect = _chunk4GHZ6AUFjs.multiselect; exports.multiselectConfigSchema = _chunk3WTK7ESHjs.multiselectConfigSchema; exports.neq = _chunk4GHZ6AUFjs.neq; exports.normalizePhoneNumber = _chunk3WTK7ESHjs.normalizePhoneNumber; exports.number = _chunk4GHZ6AUFjs.number; exports.numberConfigSchema = _chunk3WTK7ESHjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunk4GHZ6AUFjs.object; exports.or = _chunk4GHZ6AUFjs.or; exports.parseAttributeConfig = _chunk3WTK7ESHjs.parseAttributeConfig; exports.parsePath = _chunk4GHZ6AUFjs.parsePath; exports.parseRawPhoneInput = _chunk3WTK7ESHjs.parseRawPhoneInput; exports.pathHasManyCardinality = _chunk4GHZ6AUFjs.pathHasManyCardinality; exports.phone = _chunk4GHZ6AUFjs.phone; exports.phoneConfigSchema = _chunk3WTK7ESHjs.phoneConfigSchema; exports.rating = _chunk4GHZ6AUFjs.rating; exports.ratingConfigSchema = _chunk3WTK7ESHjs.ratingConfigSchema; exports.recalculateParentRollups = _chunk4GHZ6AUFjs.recalculateParentRollups; exports.registry = _chunk4GHZ6AUFjs.registry; exports.relation = _chunk4GHZ6AUFjs.relation; exports.relationConfigSchema = _chunk3WTK7ESHjs.relationConfigSchema; exports.relationGroup = _chunk4GHZ6AUFjs.relationGroup; exports.renderLabelExpression = _chunk4GHZ6AUFjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunk4GHZ6AUFjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk4GHZ6AUFjs.resolveSingleValue; exports.richtext = _chunk4GHZ6AUFjs.richtext; exports.richtextConfigSchema = _chunk3WTK7ESHjs.richtextConfigSchema; exports.rollup = _chunk4GHZ6AUFjs.rollup; exports.rollupConfigSchema = _chunk3WTK7ESHjs.rollupConfigSchema; exports.runWithContext = _chunk4GHZ6AUFjs.runWithContext; exports.runWithFeatureFlags = _chunk4GHZ6AUFjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk4GHZ6AUFjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk4GHZ6AUFjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunk3WTK7ESHjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunk4GHZ6AUFjs.seedRegistryViews; exports.select = _chunk4GHZ6AUFjs.select; exports.selectConfigSchema = _chunk3WTK7ESHjs.selectConfigSchema; exports.setContextValue = _chunk4GHZ6AUFjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunk4GHZ6AUFjs.status; exports.statusConfigSchema = _chunk3WTK7ESHjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunk4GHZ6AUFjs.success; exports.syncAll = _chunk4GHZ6AUFjs.syncAll; exports.syncNativeObjects = _chunk4GHZ6AUFjs.syncNativeObjects; exports.syncNativeViews = _chunk4GHZ6AUFjs.syncNativeViews; exports.text = _chunk4GHZ6AUFjs.text; exports.textConfigSchema = _chunk3WTK7ESHjs.textConfigSchema; exports.textarea = _chunk4GHZ6AUFjs.textarea; exports.textareaConfigSchema = _chunk3WTK7ESHjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunk4GHZ6AUFjs.toUndefinedIfEmpty; exports.traversePath = _chunk4GHZ6AUFjs.traversePath; exports.tryGetFeatureValue = _chunk4GHZ6AUFjs.tryGetFeatureValue; exports.user = _chunk4GHZ6AUFjs.user; exports.userConfigSchema = _chunk3WTK7ESHjs.userConfigSchema; exports.validateAttribute = _chunk3WTK7ESHjs.validateAttribute; exports.validateAttributeConfig = _chunk3WTK7ESHjs.validateAttributeConfig; exports.validateDraft = _chunk3WTK7ESHjs.validateDraft; exports.validateDraftOrThrow = _chunk3WTK7ESHjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunk4GHZ6AUFjs.validateFormulaExpression; exports.validateObject = _chunk3WTK7ESHjs.validateObject; exports.validateObjectOrThrow = _chunk3WTK7ESHjs.validateObjectOrThrow; exports.validatePath = _chunk4GHZ6AUFjs.validatePath; exports.validatePhoneNumber = _chunk3WTK7ESHjs.validatePhoneNumber; exports.verifyNativeObjectsSync = _chunk4GHZ6AUFjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk4GHZ6AUFjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk4GHZ6AUFjs.verifyRegistryViewsSeeded; exports.view = _chunk4GHZ6AUFjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunk4GHZ6AUFjs.wait; exports.withFeatureFlags = _chunk4GHZ6AUFjs.withFeatureFlags; exports.withTenantContext = _chunk4GHZ6AUFjs.withTenantContext; exports.workflow = _chunk4GHZ6AUFjs.workflow;
|
package/dist/index.mjs
CHANGED
|
@@ -330,7 +330,7 @@ import {
|
|
|
330
330
|
withFeatureFlags,
|
|
331
331
|
withTenantContext,
|
|
332
332
|
workflow
|
|
333
|
-
} from "./chunk-
|
|
333
|
+
} from "./chunk-INXFKM4S.mjs";
|
|
334
334
|
import {
|
|
335
335
|
asTenantId,
|
|
336
336
|
asUserId,
|
|
@@ -403,7 +403,7 @@ import {
|
|
|
403
403
|
validateObject,
|
|
404
404
|
validateObjectOrThrow,
|
|
405
405
|
validatePhoneNumber
|
|
406
|
-
} from "./chunk-
|
|
406
|
+
} from "./chunk-5SZ5OISG.mjs";
|
|
407
407
|
import {
|
|
408
408
|
ALL_SYSTEM_RESOURCES,
|
|
409
409
|
DEFAULT_ROLES,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a3 as Timestamps, A as Attribute, q as AttributeType, K as Location, Q as LocationGranularity, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, P as Phone, J as Currency, m as FormulaAttribute, o as RollupAttribute, a6 as CompletionStatus, a4 as SharingMode, a7 as ObjectRecord, r as ObjectDefinition, v as FeatureFlagsRepository, a$ as ValidationResult, ac as PropertySchema, i as RelationAttribute, n as FormulaReturnType } from './validators-
|
|
1
|
+
import { a3 as Timestamps, A as Attribute, q as AttributeType, K as Location, Q as LocationGranularity, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, P as Phone, J as Currency, m as FormulaAttribute, o as RollupAttribute, a6 as CompletionStatus, a4 as SharingMode, a7 as ObjectRecord, r as ObjectDefinition, v as FeatureFlagsRepository, a$ as ValidationResult, ac as PropertySchema, i as RelationAttribute, n as FormulaReturnType } from './validators-DEfgr14O.js';
|
|
2
2
|
import { IconName, MimeType, ColorId, CountryIso3 } from '@stndrds/constants';
|
|
3
3
|
import { Uuid, TenantId, UserId } from './utils.js';
|
|
4
4
|
import { JWTPayload } from 'jose';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a3 as Timestamps, A as Attribute, q as AttributeType, K as Location, Q as LocationGranularity, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, P as Phone, J as Currency, m as FormulaAttribute, o as RollupAttribute, a6 as CompletionStatus, a4 as SharingMode, a7 as ObjectRecord, r as ObjectDefinition, v as FeatureFlagsRepository, a$ as ValidationResult, ac as PropertySchema, i as RelationAttribute, n as FormulaReturnType } from './validators-
|
|
1
|
+
import { a3 as Timestamps, A as Attribute, q as AttributeType, K as Location, Q as LocationGranularity, S as StatusAttribute, f as SelectAttribute, M as MultiselectAttribute, P as Phone, J as Currency, m as FormulaAttribute, o as RollupAttribute, a6 as CompletionStatus, a4 as SharingMode, a7 as ObjectRecord, r as ObjectDefinition, v as FeatureFlagsRepository, a$ as ValidationResult, ac as PropertySchema, i as RelationAttribute, n as FormulaReturnType } from './validators-CzHCpxVj.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';
|
package/dist/runtime.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { g6 as AIConversationsRepository, g7 as AIUsageMetricsRepository, g8 as AIUserMemoryRepository, gw as AddAttributeInput, fX as AttributeChange, g9 as AttributesRepository, ga as AuditRepository, hM as AuditService, gs as BaseRepository, gr as BaseService, el as CacheAdapter, ej as CacheKeyType, em as CacheOptions, fo as ConditionExecutor, gv as CreateCustomObjectInput, iI as CreateDBAttribute, iE as CreateDBObject, iU as CreateDBView, iY as CreateDBViewOverlay, i$ as CreateDBWorkflow, j8 as CreateDBWorkflowAccessGrant, j2 as CreateDBWorkflowInstance, j5 as CreateDBWorkflowInvitation, hq as CreateGrantResult, iL as CreateObjectRecord, h$ as CreateRecordDocumentInput, i0 as CreateRecordDocumentResult, i9 as CreateViewInput, hD as CreateWorkflowInput, iH as DBAttribute, iD as DBObject, iT as DBView, iX as DBViewOverlay, i_ as DBWorkflow, j7 as DBWorkflowAccessGrant, j1 as DBWorkflowInstance, j4 as DBWorkflowInvitation, iu as DEFAULT_LABEL_FALLBACK, ec as DatabaseAdapter, fp as DocumentExecutor, hP as DocumentGenerationNotConfiguredError, hQ as DocumentGenerationService, gb as DocumentGenerationTemplateListOptions, hO as DocumentGenerationTemplateNotFoundError, gc as DocumentGenerationTemplatesRepository, gd as DocumentJobsRepository, hR as DocumentProcessingConfig, hk as DocumentProcessingHook, hj as DocumentProcessingHookOptions, hS as DocumentProcessingService, hW as DocumentRenderError, hU as DocumentRendererOptions, hY as DocumentRendererService, i2 as DocumentService, i1 as DocumentServiceOptions, ge as DocumentSlotsRepository, hZ as DocumentTemplateService, gg as DocumentTemplatesRepository, gf as DocumentsRepository, fq as EndExecutor, eI as EvaluationResult, eJ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, eW as FeatureFlagsContext, eO as FeatureFlagsContextError, er as FetchResult, ie as FileContent, iS as FileListOptions, i4 as FileService, i3 as FileServiceOptions, gh as FilesRepository, fr as FormExecutor, es as FormattedRecord, gX as FormulaResolverService, gW as FormulaResolverServiceOptions, fF as FormulaResult, is as FullSyncOptions, ir as FullSyncResult, bI as GeocodingAdapter, bF as GeocodingAutocompleteParams, bH as GeocodingParams, i5 as GeocodingService, bE as GeocodingSuggestion, gL as GetRelationOptionsParams, ic as GetViewOptions, ib as GetViewsOptions, iP as GlobalSearchGroupedOptions, iR as GlobalSearchGroupedResult, iO as GlobalSearchOptions, iQ as GlobalSearchResultItem, i6 as GlobalSearchService, hm as GrantExpiredError, hl as GrantNotFoundError, hn as GrantRevokedError, hp as GrantServiceConfig, et as GroupedFetchResult, fY as HookContext, fZ as HookDefinition, f_ as HookHandler, g1 as HookRegistry, f$ as HookType, gS as HybridRelationValue, eu as InsertOptions, fJ as InvalidPathError, hz as InvitationAlreadyAcceptedError, hy as InvitationExpiredError, hx as InvitationNotFoundError, hA as InvitationRevokedError, hw as InvitationServiceConfig, ee as JwtVerificationResult, ha as LabelResolver, iM as ListOptions, ef as MagicLinkPayload, fK as MaxDepthExceededError, g3 as MockStores, gQ as MultiRelationValue, fi as NodeExecutor, eq as NoopCacheAdapter, bJ as NoopGeocodingAdapter, g0 as NoopHookRegistry, gi as ObjectRecordsRepository, gz as ObjectSchemaService, gy as ObjectSchemaServiceOptions, gj as ObjectsRepository, ja as OperationResult, fO as PathCardinality, fP as PathSegment, fQ as PathSegmentType, i8 as PermissionService, i7 as PermissionServiceOptions, gk as PermissionsRepository, cg as PolicyContext, g5 as PolicyRegistry, ci as PolicyViolationError, eG as QueryBuilder, eH as QueryBuilderOptions, ev as QueryBuilderState, eC as QueryMultipleResultsError, eD as QueryNoResultError, gD as QueryOptions, gF as QueryResult, h_ as RecordDocumentsResult, ch as RecordPolicy, gG as RecordQueryService, gC as RecordQueryServiceOptions, gU as RecordResolverService, gB as RecordService, gA as RecordServiceOptions, ew as RegistryMap, ex as RegistryObjectNames, e9 as RelationAttributeInput, ea as RelationAttributeRow, eb as RelationAttributesRepository, iB as RelationLabelResolver, gJ as RelationOption, gK as RelationOptionsResponse, gT as RelationPropertiesService, gP as RelationService, gM as RelationServiceOptions, gI as RelationValidationError, gH as RelationValidationResult, hT as RenderDocumentInput, hV as RenderDocumentResult, gN as ResolveIdsBatchRequest, gO as ResolveIdsBatchResponse, gV as ResolvedRelations, ht as ResumeWorkflowInput, bG as ReverseGeocodingParams, hi as RollupCascadeContext, gY as RollupResult, h0 as RollupScheduler, g$ as RollupSchedulerOptions, g_ as RollupService, gZ as RollupServiceOptions, eE as SHORTCUT_TO_FILTER_OPERATOR, f2 as SchemaContext, gt as SchemaContextAware, gu as SchemaContextAwareRepository, fR as SchemaResolver, iN as SearchOptions, gE as SearchQueryOptions, ey as ShortcutOperator, ii as SignedUrlOptions, gR as SingleRelationValue, fs as StartExecutor, hs as StartWorkflowInput, ij as StorageAdapter, hX as StorageDownloadNotSupportedError, ig as StorageUploadInput, ih as StorageUploadResult, im as SyncOptions, il as SyncResult, f9 as TenantContext, eN as TenantContextError, ho as TokenRevokedError, fV as TraversalOptions, fW as TraversalResult, iJ as UpdateDBAttribute, iF as UpdateDBObject, iV as UpdateDBView, iZ as UpdateDBViewOverlay, j0 as UpdateDBWorkflow, j9 as UpdateDBWorkflowAccessGrant, j3 as UpdateDBWorkflowInstance, j6 as UpdateDBWorkflowInvitation, gx as UpdateObjectInput, ia as UpdateViewInput, hE as UpdateWorkflowInput, ik as UploadFileInput, iK as UpsertDBAttribute, iG as UpsertDBObject, iW as UpsertDBView, hL as UserProfileService, hK as UserProfileServiceOptions, gl as UserProfilesRepository, hJ as UserService, hI as UserValidationError, hH as UserValidationResult, e8 as ViewOverlaysRepository, id as ViewService, jc as ViewSyncLogger, jd as ViewSyncOptions, jb as ViewSyncResult, gm as ViewsRepository, hr as WorkflowAccessGrantService, gn as WorkflowAccessGrantsRepository, eg as WorkflowAccessPayload, hv as WorkflowInstanceService, hu as WorkflowInstanceServiceOptions, go as WorkflowInstancesRepository, hB as WorkflowInvitationService, gp as WorkflowInvitationsRepository, eh as WorkflowJwtConfig, ei as WorkflowJwtPayload, ed as WorkflowJwtService, hC as WorkflowRelationService, hG as WorkflowService, hF as WorkflowServiceOptions, gq as WorkflowsRepository, eX as addSchemaToContext, h1 as applyDefaultValues, hN as buildAuditChanges, h4 as buildPolicyContext, en as cacheKeys, eo as cacheTtl, h2 as checkPermission, h5 as checkRecordAccess, h7 as checkRecordDeleteOrThrow, h6 as checkRecordModifyOrThrow, h8 as checkSharedObjectWriteAccess, fj as complete, h9 as computeLabel, iC as computeLabelWithRelations, hd as createContextForCreate, hf as createContextForDelete, hg as createContextForRestore, he as createContextForUpdate, fa as createDefaultExecutorRegistry, ez as createDefaultState, g2 as createMockAdapter, eF as createQueryBuilder, g4 as defaultPolicyRegistry, ep as defaultTtl, hc as enrichRecordsWithFormulas, iy as enrichValuesForDisplay, iz as enrichValuesWithSelectLabels, hb as enrichWithFormulas, fk as error, eL as evaluate, eK as evaluateCondition, ft as evaluateFormula, fu as evaluateFormulaAttribute, fv as evaluateFormulaAttributeWithRelations, fw as evaluateFormulaWithRelations, fx as evaluateFormulaWithResult, eM as evaluateWithTrace, ix as extractAttributeNames, fy as extractFormulaVariables, iA as extractRelationIds, fz as extractRelationNames, fA as extractRelationReferences, fB as flattenRelationsForEval, fC as formatFormulaResult, eA as formatRecord, eB as formatRecords, f3 as getContext, fb as getDefaultExecutorRegistry, eP as getFeatureFlags, eQ as getFeatureValue, fG as getPathDepth, h3 as getPolicy, fH as getRelationPath, eY as getSchemaByNameFromContext, eZ as getSchemaContext, e_ as getSchemaFromContext, iq as getSyncPreview, fI as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, ji as getViewSeedPreview, jj as getViewSyncPreview, f6 as hasContext, eR as hasFeatureFlagsContext, fD as hasRelationReferences, e$ as hasSchemaContext, ek as hashOptions, eS as isFeatureEnabled, iw as isLabelExpression, fL as parsePath, fM as pathHasManyCardinality, hh as recalculateParentRollups, iv as renderLabelExpression, fS as resolveMultiplePaths, fT as resolveSingleValue, f7 as runWithContext, eT as runWithFeatureFlags, f0 as runWithMergedSchemaContext, f1 as runWithSchemaContext, je as seedRegistryViews, fm as success, it as syncAll, io as syncNativeObjects, jf as syncNativeViews, fU as traversePath, eU as tryGetFeatureValue, fE as validateFormulaExpression, fN as validatePath, ip as verifyNativeObjectsSync, jh as verifyNativeViewsSync, jg as verifyRegistryViewsSeeded, fn as wait, eV as withFeatureFlags, f8 as withTenantContext } from './runtime-
|
|
2
|
-
export { a6 as CompletionStatus } from './validators-
|
|
1
|
+
export { g6 as AIConversationsRepository, g7 as AIUsageMetricsRepository, g8 as AIUserMemoryRepository, gw as AddAttributeInput, fX as AttributeChange, g9 as AttributesRepository, ga as AuditRepository, hM as AuditService, gs as BaseRepository, gr as BaseService, el as CacheAdapter, ej as CacheKeyType, em as CacheOptions, fo as ConditionExecutor, gv as CreateCustomObjectInput, iI as CreateDBAttribute, iE as CreateDBObject, iU as CreateDBView, iY as CreateDBViewOverlay, i$ as CreateDBWorkflow, j8 as CreateDBWorkflowAccessGrant, j2 as CreateDBWorkflowInstance, j5 as CreateDBWorkflowInvitation, hq as CreateGrantResult, iL as CreateObjectRecord, h$ as CreateRecordDocumentInput, i0 as CreateRecordDocumentResult, i9 as CreateViewInput, hD as CreateWorkflowInput, iH as DBAttribute, iD as DBObject, iT as DBView, iX as DBViewOverlay, i_ as DBWorkflow, j7 as DBWorkflowAccessGrant, j1 as DBWorkflowInstance, j4 as DBWorkflowInvitation, iu as DEFAULT_LABEL_FALLBACK, ec as DatabaseAdapter, fp as DocumentExecutor, hP as DocumentGenerationNotConfiguredError, hQ as DocumentGenerationService, gb as DocumentGenerationTemplateListOptions, hO as DocumentGenerationTemplateNotFoundError, gc as DocumentGenerationTemplatesRepository, gd as DocumentJobsRepository, hR as DocumentProcessingConfig, hk as DocumentProcessingHook, hj as DocumentProcessingHookOptions, hS as DocumentProcessingService, hW as DocumentRenderError, hU as DocumentRendererOptions, hY as DocumentRendererService, i2 as DocumentService, i1 as DocumentServiceOptions, ge as DocumentSlotsRepository, hZ as DocumentTemplateService, gg as DocumentTemplatesRepository, gf as DocumentsRepository, fq as EndExecutor, eI as EvaluationResult, eJ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, eW as FeatureFlagsContext, eO as FeatureFlagsContextError, er as FetchResult, ie as FileContent, iS as FileListOptions, i4 as FileService, i3 as FileServiceOptions, gh as FilesRepository, fr as FormExecutor, es as FormattedRecord, gX as FormulaResolverService, gW as FormulaResolverServiceOptions, fF as FormulaResult, is as FullSyncOptions, ir as FullSyncResult, bI as GeocodingAdapter, bF as GeocodingAutocompleteParams, bH as GeocodingParams, i5 as GeocodingService, bE as GeocodingSuggestion, gL as GetRelationOptionsParams, ic as GetViewOptions, ib as GetViewsOptions, iP as GlobalSearchGroupedOptions, iR as GlobalSearchGroupedResult, iO as GlobalSearchOptions, iQ as GlobalSearchResultItem, i6 as GlobalSearchService, hm as GrantExpiredError, hl as GrantNotFoundError, hn as GrantRevokedError, hp as GrantServiceConfig, et as GroupedFetchResult, fY as HookContext, fZ as HookDefinition, f_ as HookHandler, g1 as HookRegistry, f$ as HookType, gS as HybridRelationValue, eu as InsertOptions, fJ as InvalidPathError, hz as InvitationAlreadyAcceptedError, hy as InvitationExpiredError, hx as InvitationNotFoundError, hA as InvitationRevokedError, hw as InvitationServiceConfig, ee as JwtVerificationResult, ha as LabelResolver, iM as ListOptions, ef as MagicLinkPayload, fK as MaxDepthExceededError, g3 as MockStores, gQ as MultiRelationValue, fi as NodeExecutor, eq as NoopCacheAdapter, bJ as NoopGeocodingAdapter, g0 as NoopHookRegistry, gi as ObjectRecordsRepository, gz as ObjectSchemaService, gy as ObjectSchemaServiceOptions, gj as ObjectsRepository, ja as OperationResult, fO as PathCardinality, fP as PathSegment, fQ as PathSegmentType, i8 as PermissionService, i7 as PermissionServiceOptions, gk as PermissionsRepository, cg as PolicyContext, g5 as PolicyRegistry, ci as PolicyViolationError, eG as QueryBuilder, eH as QueryBuilderOptions, ev as QueryBuilderState, eC as QueryMultipleResultsError, eD as QueryNoResultError, gD as QueryOptions, gF as QueryResult, h_ as RecordDocumentsResult, ch as RecordPolicy, gG as RecordQueryService, gC as RecordQueryServiceOptions, gU as RecordResolverService, gB as RecordService, gA as RecordServiceOptions, ew as RegistryMap, ex as RegistryObjectNames, e9 as RelationAttributeInput, ea as RelationAttributeRow, eb as RelationAttributesRepository, iB as RelationLabelResolver, gJ as RelationOption, gK as RelationOptionsResponse, gT as RelationPropertiesService, gP as RelationService, gM as RelationServiceOptions, gI as RelationValidationError, gH as RelationValidationResult, hT as RenderDocumentInput, hV as RenderDocumentResult, gN as ResolveIdsBatchRequest, gO as ResolveIdsBatchResponse, gV as ResolvedRelations, ht as ResumeWorkflowInput, bG as ReverseGeocodingParams, hi as RollupCascadeContext, gY as RollupResult, h0 as RollupScheduler, g$ as RollupSchedulerOptions, g_ as RollupService, gZ as RollupServiceOptions, eE as SHORTCUT_TO_FILTER_OPERATOR, f2 as SchemaContext, gt as SchemaContextAware, gu as SchemaContextAwareRepository, fR as SchemaResolver, iN as SearchOptions, gE as SearchQueryOptions, ey as ShortcutOperator, ii as SignedUrlOptions, gR as SingleRelationValue, fs as StartExecutor, hs as StartWorkflowInput, ij as StorageAdapter, hX as StorageDownloadNotSupportedError, ig as StorageUploadInput, ih as StorageUploadResult, im as SyncOptions, il as SyncResult, f9 as TenantContext, eN as TenantContextError, ho as TokenRevokedError, fV as TraversalOptions, fW as TraversalResult, iJ as UpdateDBAttribute, iF as UpdateDBObject, iV as UpdateDBView, iZ as UpdateDBViewOverlay, j0 as UpdateDBWorkflow, j9 as UpdateDBWorkflowAccessGrant, j3 as UpdateDBWorkflowInstance, j6 as UpdateDBWorkflowInvitation, gx as UpdateObjectInput, ia as UpdateViewInput, hE as UpdateWorkflowInput, ik as UploadFileInput, iK as UpsertDBAttribute, iG as UpsertDBObject, iW as UpsertDBView, hL as UserProfileService, hK as UserProfileServiceOptions, gl as UserProfilesRepository, hJ as UserService, hI as UserValidationError, hH as UserValidationResult, e8 as ViewOverlaysRepository, id as ViewService, jc as ViewSyncLogger, jd as ViewSyncOptions, jb as ViewSyncResult, gm as ViewsRepository, hr as WorkflowAccessGrantService, gn as WorkflowAccessGrantsRepository, eg as WorkflowAccessPayload, hv as WorkflowInstanceService, hu as WorkflowInstanceServiceOptions, go as WorkflowInstancesRepository, hB as WorkflowInvitationService, gp as WorkflowInvitationsRepository, eh as WorkflowJwtConfig, ei as WorkflowJwtPayload, ed as WorkflowJwtService, hC as WorkflowRelationService, hG as WorkflowService, hF as WorkflowServiceOptions, gq as WorkflowsRepository, eX as addSchemaToContext, h1 as applyDefaultValues, hN as buildAuditChanges, h4 as buildPolicyContext, en as cacheKeys, eo as cacheTtl, h2 as checkPermission, h5 as checkRecordAccess, h7 as checkRecordDeleteOrThrow, h6 as checkRecordModifyOrThrow, h8 as checkSharedObjectWriteAccess, fj as complete, h9 as computeLabel, iC as computeLabelWithRelations, hd as createContextForCreate, hf as createContextForDelete, hg as createContextForRestore, he as createContextForUpdate, fa as createDefaultExecutorRegistry, ez as createDefaultState, g2 as createMockAdapter, eF as createQueryBuilder, g4 as defaultPolicyRegistry, ep as defaultTtl, hc as enrichRecordsWithFormulas, iy as enrichValuesForDisplay, iz as enrichValuesWithSelectLabels, hb as enrichWithFormulas, fk as error, eL as evaluate, eK as evaluateCondition, ft as evaluateFormula, fu as evaluateFormulaAttribute, fv as evaluateFormulaAttributeWithRelations, fw as evaluateFormulaWithRelations, fx as evaluateFormulaWithResult, eM as evaluateWithTrace, ix as extractAttributeNames, fy as extractFormulaVariables, iA as extractRelationIds, fz as extractRelationNames, fA as extractRelationReferences, fB as flattenRelationsForEval, fC as formatFormulaResult, eA as formatRecord, eB as formatRecords, f3 as getContext, fb as getDefaultExecutorRegistry, eP as getFeatureFlags, eQ as getFeatureValue, fG as getPathDepth, h3 as getPolicy, fH as getRelationPath, eY as getSchemaByNameFromContext, eZ as getSchemaContext, e_ as getSchemaFromContext, iq as getSyncPreview, fI as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, ji as getViewSeedPreview, jj as getViewSyncPreview, f6 as hasContext, eR as hasFeatureFlagsContext, fD as hasRelationReferences, e$ as hasSchemaContext, ek as hashOptions, eS as isFeatureEnabled, iw as isLabelExpression, fL as parsePath, fM as pathHasManyCardinality, hh as recalculateParentRollups, iv as renderLabelExpression, fS as resolveMultiplePaths, fT as resolveSingleValue, f7 as runWithContext, eT as runWithFeatureFlags, f0 as runWithMergedSchemaContext, f1 as runWithSchemaContext, je as seedRegistryViews, fm as success, it as syncAll, io as syncNativeObjects, jf as syncNativeViews, fU as traversePath, eU as tryGetFeatureValue, fE as validateFormulaExpression, fN as validatePath, ip as verifyNativeObjectsSync, jh as verifyNativeViewsSync, jg as verifyRegistryViewsSeeded, fn as wait, eV as withFeatureFlags, f8 as withTenantContext } from './runtime-DzpQ5gRG.mjs';
|
|
2
|
+
export { a6 as CompletionStatus } from './validators-CzHCpxVj.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 { g6 as AIConversationsRepository, g7 as AIUsageMetricsRepository, g8 as AIUserMemoryRepository, gw as AddAttributeInput, fX as AttributeChange, g9 as AttributesRepository, ga as AuditRepository, hM as AuditService, gs as BaseRepository, gr as BaseService, el as CacheAdapter, ej as CacheKeyType, em as CacheOptions, fo as ConditionExecutor, gv as CreateCustomObjectInput, iI as CreateDBAttribute, iE as CreateDBObject, iU as CreateDBView, iY as CreateDBViewOverlay, i$ as CreateDBWorkflow, j8 as CreateDBWorkflowAccessGrant, j2 as CreateDBWorkflowInstance, j5 as CreateDBWorkflowInvitation, hq as CreateGrantResult, iL as CreateObjectRecord, h$ as CreateRecordDocumentInput, i0 as CreateRecordDocumentResult, i9 as CreateViewInput, hD as CreateWorkflowInput, iH as DBAttribute, iD as DBObject, iT as DBView, iX as DBViewOverlay, i_ as DBWorkflow, j7 as DBWorkflowAccessGrant, j1 as DBWorkflowInstance, j4 as DBWorkflowInvitation, iu as DEFAULT_LABEL_FALLBACK, ec as DatabaseAdapter, fp as DocumentExecutor, hP as DocumentGenerationNotConfiguredError, hQ as DocumentGenerationService, gb as DocumentGenerationTemplateListOptions, hO as DocumentGenerationTemplateNotFoundError, gc as DocumentGenerationTemplatesRepository, gd as DocumentJobsRepository, hR as DocumentProcessingConfig, hk as DocumentProcessingHook, hj as DocumentProcessingHookOptions, hS as DocumentProcessingService, hW as DocumentRenderError, hU as DocumentRendererOptions, hY as DocumentRendererService, i2 as DocumentService, i1 as DocumentServiceOptions, ge as DocumentSlotsRepository, hZ as DocumentTemplateService, gg as DocumentTemplatesRepository, gf as DocumentsRepository, fq as EndExecutor, eI as EvaluationResult, eJ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, eW as FeatureFlagsContext, eO as FeatureFlagsContextError, er as FetchResult, ie as FileContent, iS as FileListOptions, i4 as FileService, i3 as FileServiceOptions, gh as FilesRepository, fr as FormExecutor, es as FormattedRecord, gX as FormulaResolverService, gW as FormulaResolverServiceOptions, fF as FormulaResult, is as FullSyncOptions, ir as FullSyncResult, bI as GeocodingAdapter, bF as GeocodingAutocompleteParams, bH as GeocodingParams, i5 as GeocodingService, bE as GeocodingSuggestion, gL as GetRelationOptionsParams, ic as GetViewOptions, ib as GetViewsOptions, iP as GlobalSearchGroupedOptions, iR as GlobalSearchGroupedResult, iO as GlobalSearchOptions, iQ as GlobalSearchResultItem, i6 as GlobalSearchService, hm as GrantExpiredError, hl as GrantNotFoundError, hn as GrantRevokedError, hp as GrantServiceConfig, et as GroupedFetchResult, fY as HookContext, fZ as HookDefinition, f_ as HookHandler, g1 as HookRegistry, f$ as HookType, gS as HybridRelationValue, eu as InsertOptions, fJ as InvalidPathError, hz as InvitationAlreadyAcceptedError, hy as InvitationExpiredError, hx as InvitationNotFoundError, hA as InvitationRevokedError, hw as InvitationServiceConfig, ee as JwtVerificationResult, ha as LabelResolver, iM as ListOptions, ef as MagicLinkPayload, fK as MaxDepthExceededError, g3 as MockStores, gQ as MultiRelationValue, fi as NodeExecutor, eq as NoopCacheAdapter, bJ as NoopGeocodingAdapter, g0 as NoopHookRegistry, gi as ObjectRecordsRepository, gz as ObjectSchemaService, gy as ObjectSchemaServiceOptions, gj as ObjectsRepository, ja as OperationResult, fO as PathCardinality, fP as PathSegment, fQ as PathSegmentType, i8 as PermissionService, i7 as PermissionServiceOptions, gk as PermissionsRepository, cg as PolicyContext, g5 as PolicyRegistry, ci as PolicyViolationError, eG as QueryBuilder, eH as QueryBuilderOptions, ev as QueryBuilderState, eC as QueryMultipleResultsError, eD as QueryNoResultError, gD as QueryOptions, gF as QueryResult, h_ as RecordDocumentsResult, ch as RecordPolicy, gG as RecordQueryService, gC as RecordQueryServiceOptions, gU as RecordResolverService, gB as RecordService, gA as RecordServiceOptions, ew as RegistryMap, ex as RegistryObjectNames, e9 as RelationAttributeInput, ea as RelationAttributeRow, eb as RelationAttributesRepository, iB as RelationLabelResolver, gJ as RelationOption, gK as RelationOptionsResponse, gT as RelationPropertiesService, gP as RelationService, gM as RelationServiceOptions, gI as RelationValidationError, gH as RelationValidationResult, hT as RenderDocumentInput, hV as RenderDocumentResult, gN as ResolveIdsBatchRequest, gO as ResolveIdsBatchResponse, gV as ResolvedRelations, ht as ResumeWorkflowInput, bG as ReverseGeocodingParams, hi as RollupCascadeContext, gY as RollupResult, h0 as RollupScheduler, g$ as RollupSchedulerOptions, g_ as RollupService, gZ as RollupServiceOptions, eE as SHORTCUT_TO_FILTER_OPERATOR, f2 as SchemaContext, gt as SchemaContextAware, gu as SchemaContextAwareRepository, fR as SchemaResolver, iN as SearchOptions, gE as SearchQueryOptions, ey as ShortcutOperator, ii as SignedUrlOptions, gR as SingleRelationValue, fs as StartExecutor, hs as StartWorkflowInput, ij as StorageAdapter, hX as StorageDownloadNotSupportedError, ig as StorageUploadInput, ih as StorageUploadResult, im as SyncOptions, il as SyncResult, f9 as TenantContext, eN as TenantContextError, ho as TokenRevokedError, fV as TraversalOptions, fW as TraversalResult, iJ as UpdateDBAttribute, iF as UpdateDBObject, iV as UpdateDBView, iZ as UpdateDBViewOverlay, j0 as UpdateDBWorkflow, j9 as UpdateDBWorkflowAccessGrant, j3 as UpdateDBWorkflowInstance, j6 as UpdateDBWorkflowInvitation, gx as UpdateObjectInput, ia as UpdateViewInput, hE as UpdateWorkflowInput, ik as UploadFileInput, iK as UpsertDBAttribute, iG as UpsertDBObject, iW as UpsertDBView, hL as UserProfileService, hK as UserProfileServiceOptions, gl as UserProfilesRepository, hJ as UserService, hI as UserValidationError, hH as UserValidationResult, e8 as ViewOverlaysRepository, id as ViewService, jc as ViewSyncLogger, jd as ViewSyncOptions, jb as ViewSyncResult, gm as ViewsRepository, hr as WorkflowAccessGrantService, gn as WorkflowAccessGrantsRepository, eg as WorkflowAccessPayload, hv as WorkflowInstanceService, hu as WorkflowInstanceServiceOptions, go as WorkflowInstancesRepository, hB as WorkflowInvitationService, gp as WorkflowInvitationsRepository, eh as WorkflowJwtConfig, ei as WorkflowJwtPayload, ed as WorkflowJwtService, hC as WorkflowRelationService, hG as WorkflowService, hF as WorkflowServiceOptions, gq as WorkflowsRepository, eX as addSchemaToContext, h1 as applyDefaultValues, hN as buildAuditChanges, h4 as buildPolicyContext, en as cacheKeys, eo as cacheTtl, h2 as checkPermission, h5 as checkRecordAccess, h7 as checkRecordDeleteOrThrow, h6 as checkRecordModifyOrThrow, h8 as checkSharedObjectWriteAccess, fj as complete, h9 as computeLabel, iC as computeLabelWithRelations, hd as createContextForCreate, hf as createContextForDelete, hg as createContextForRestore, he as createContextForUpdate, fa as createDefaultExecutorRegistry, ez as createDefaultState, g2 as createMockAdapter, eF as createQueryBuilder, g4 as defaultPolicyRegistry, ep as defaultTtl, hc as enrichRecordsWithFormulas, iy as enrichValuesForDisplay, iz as enrichValuesWithSelectLabels, hb as enrichWithFormulas, fk as error, eL as evaluate, eK as evaluateCondition, ft as evaluateFormula, fu as evaluateFormulaAttribute, fv as evaluateFormulaAttributeWithRelations, fw as evaluateFormulaWithRelations, fx as evaluateFormulaWithResult, eM as evaluateWithTrace, ix as extractAttributeNames, fy as extractFormulaVariables, iA as extractRelationIds, fz as extractRelationNames, fA as extractRelationReferences, fB as flattenRelationsForEval, fC as formatFormulaResult, eA as formatRecord, eB as formatRecords, f3 as getContext, fb as getDefaultExecutorRegistry, eP as getFeatureFlags, eQ as getFeatureValue, fG as getPathDepth, h3 as getPolicy, fH as getRelationPath, eY as getSchemaByNameFromContext, eZ as getSchemaContext, e_ as getSchemaFromContext, iq as getSyncPreview, fI as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, ji as getViewSeedPreview, jj as getViewSyncPreview, f6 as hasContext, eR as hasFeatureFlagsContext, fD as hasRelationReferences, e$ as hasSchemaContext, ek as hashOptions, eS as isFeatureEnabled, iw as isLabelExpression, fL as parsePath, fM as pathHasManyCardinality, hh as recalculateParentRollups, iv as renderLabelExpression, fS as resolveMultiplePaths, fT as resolveSingleValue, f7 as runWithContext, eT as runWithFeatureFlags, f0 as runWithMergedSchemaContext, f1 as runWithSchemaContext, je as seedRegistryViews, fm as success, it as syncAll, io as syncNativeObjects, jf as syncNativeViews, fU as traversePath, eU as tryGetFeatureValue, fE as validateFormulaExpression, fN as validatePath, ip as verifyNativeObjectsSync, jh as verifyNativeViewsSync, jg as verifyRegistryViewsSeeded, fn as wait, eV as withFeatureFlags, f8 as withTenantContext } from './runtime-
|
|
2
|
-
export { a6 as CompletionStatus } from './validators-
|
|
1
|
+
export { g6 as AIConversationsRepository, g7 as AIUsageMetricsRepository, g8 as AIUserMemoryRepository, gw as AddAttributeInput, fX as AttributeChange, g9 as AttributesRepository, ga as AuditRepository, hM as AuditService, gs as BaseRepository, gr as BaseService, el as CacheAdapter, ej as CacheKeyType, em as CacheOptions, fo as ConditionExecutor, gv as CreateCustomObjectInput, iI as CreateDBAttribute, iE as CreateDBObject, iU as CreateDBView, iY as CreateDBViewOverlay, i$ as CreateDBWorkflow, j8 as CreateDBWorkflowAccessGrant, j2 as CreateDBWorkflowInstance, j5 as CreateDBWorkflowInvitation, hq as CreateGrantResult, iL as CreateObjectRecord, h$ as CreateRecordDocumentInput, i0 as CreateRecordDocumentResult, i9 as CreateViewInput, hD as CreateWorkflowInput, iH as DBAttribute, iD as DBObject, iT as DBView, iX as DBViewOverlay, i_ as DBWorkflow, j7 as DBWorkflowAccessGrant, j1 as DBWorkflowInstance, j4 as DBWorkflowInvitation, iu as DEFAULT_LABEL_FALLBACK, ec as DatabaseAdapter, fp as DocumentExecutor, hP as DocumentGenerationNotConfiguredError, hQ as DocumentGenerationService, gb as DocumentGenerationTemplateListOptions, hO as DocumentGenerationTemplateNotFoundError, gc as DocumentGenerationTemplatesRepository, gd as DocumentJobsRepository, hR as DocumentProcessingConfig, hk as DocumentProcessingHook, hj as DocumentProcessingHookOptions, hS as DocumentProcessingService, hW as DocumentRenderError, hU as DocumentRendererOptions, hY as DocumentRendererService, i2 as DocumentService, i1 as DocumentServiceOptions, ge as DocumentSlotsRepository, hZ as DocumentTemplateService, gg as DocumentTemplatesRepository, gf as DocumentsRepository, fq as EndExecutor, eI as EvaluationResult, eJ as EvaluationTrace, fc as ExecutorCompleteResult, fd as ExecutorContext, fe as ExecutorErrorResult, fl as ExecutorRegistry, ff as ExecutorResult, fg as ExecutorSuccessResult, fh as ExecutorWaitResult, eW as FeatureFlagsContext, eO as FeatureFlagsContextError, er as FetchResult, ie as FileContent, iS as FileListOptions, i4 as FileService, i3 as FileServiceOptions, gh as FilesRepository, fr as FormExecutor, es as FormattedRecord, gX as FormulaResolverService, gW as FormulaResolverServiceOptions, fF as FormulaResult, is as FullSyncOptions, ir as FullSyncResult, bI as GeocodingAdapter, bF as GeocodingAutocompleteParams, bH as GeocodingParams, i5 as GeocodingService, bE as GeocodingSuggestion, gL as GetRelationOptionsParams, ic as GetViewOptions, ib as GetViewsOptions, iP as GlobalSearchGroupedOptions, iR as GlobalSearchGroupedResult, iO as GlobalSearchOptions, iQ as GlobalSearchResultItem, i6 as GlobalSearchService, hm as GrantExpiredError, hl as GrantNotFoundError, hn as GrantRevokedError, hp as GrantServiceConfig, et as GroupedFetchResult, fY as HookContext, fZ as HookDefinition, f_ as HookHandler, g1 as HookRegistry, f$ as HookType, gS as HybridRelationValue, eu as InsertOptions, fJ as InvalidPathError, hz as InvitationAlreadyAcceptedError, hy as InvitationExpiredError, hx as InvitationNotFoundError, hA as InvitationRevokedError, hw as InvitationServiceConfig, ee as JwtVerificationResult, ha as LabelResolver, iM as ListOptions, ef as MagicLinkPayload, fK as MaxDepthExceededError, g3 as MockStores, gQ as MultiRelationValue, fi as NodeExecutor, eq as NoopCacheAdapter, bJ as NoopGeocodingAdapter, g0 as NoopHookRegistry, gi as ObjectRecordsRepository, gz as ObjectSchemaService, gy as ObjectSchemaServiceOptions, gj as ObjectsRepository, ja as OperationResult, fO as PathCardinality, fP as PathSegment, fQ as PathSegmentType, i8 as PermissionService, i7 as PermissionServiceOptions, gk as PermissionsRepository, cg as PolicyContext, g5 as PolicyRegistry, ci as PolicyViolationError, eG as QueryBuilder, eH as QueryBuilderOptions, ev as QueryBuilderState, eC as QueryMultipleResultsError, eD as QueryNoResultError, gD as QueryOptions, gF as QueryResult, h_ as RecordDocumentsResult, ch as RecordPolicy, gG as RecordQueryService, gC as RecordQueryServiceOptions, gU as RecordResolverService, gB as RecordService, gA as RecordServiceOptions, ew as RegistryMap, ex as RegistryObjectNames, e9 as RelationAttributeInput, ea as RelationAttributeRow, eb as RelationAttributesRepository, iB as RelationLabelResolver, gJ as RelationOption, gK as RelationOptionsResponse, gT as RelationPropertiesService, gP as RelationService, gM as RelationServiceOptions, gI as RelationValidationError, gH as RelationValidationResult, hT as RenderDocumentInput, hV as RenderDocumentResult, gN as ResolveIdsBatchRequest, gO as ResolveIdsBatchResponse, gV as ResolvedRelations, ht as ResumeWorkflowInput, bG as ReverseGeocodingParams, hi as RollupCascadeContext, gY as RollupResult, h0 as RollupScheduler, g$ as RollupSchedulerOptions, g_ as RollupService, gZ as RollupServiceOptions, eE as SHORTCUT_TO_FILTER_OPERATOR, f2 as SchemaContext, gt as SchemaContextAware, gu as SchemaContextAwareRepository, fR as SchemaResolver, iN as SearchOptions, gE as SearchQueryOptions, ey as ShortcutOperator, ii as SignedUrlOptions, gR as SingleRelationValue, fs as StartExecutor, hs as StartWorkflowInput, ij as StorageAdapter, hX as StorageDownloadNotSupportedError, ig as StorageUploadInput, ih as StorageUploadResult, im as SyncOptions, il as SyncResult, f9 as TenantContext, eN as TenantContextError, ho as TokenRevokedError, fV as TraversalOptions, fW as TraversalResult, iJ as UpdateDBAttribute, iF as UpdateDBObject, iV as UpdateDBView, iZ as UpdateDBViewOverlay, j0 as UpdateDBWorkflow, j9 as UpdateDBWorkflowAccessGrant, j3 as UpdateDBWorkflowInstance, j6 as UpdateDBWorkflowInvitation, gx as UpdateObjectInput, ia as UpdateViewInput, hE as UpdateWorkflowInput, ik as UploadFileInput, iK as UpsertDBAttribute, iG as UpsertDBObject, iW as UpsertDBView, hL as UserProfileService, hK as UserProfileServiceOptions, gl as UserProfilesRepository, hJ as UserService, hI as UserValidationError, hH as UserValidationResult, e8 as ViewOverlaysRepository, id as ViewService, jc as ViewSyncLogger, jd as ViewSyncOptions, jb as ViewSyncResult, gm as ViewsRepository, hr as WorkflowAccessGrantService, gn as WorkflowAccessGrantsRepository, eg as WorkflowAccessPayload, hv as WorkflowInstanceService, hu as WorkflowInstanceServiceOptions, go as WorkflowInstancesRepository, hB as WorkflowInvitationService, gp as WorkflowInvitationsRepository, eh as WorkflowJwtConfig, ei as WorkflowJwtPayload, ed as WorkflowJwtService, hC as WorkflowRelationService, hG as WorkflowService, hF as WorkflowServiceOptions, gq as WorkflowsRepository, eX as addSchemaToContext, h1 as applyDefaultValues, hN as buildAuditChanges, h4 as buildPolicyContext, en as cacheKeys, eo as cacheTtl, h2 as checkPermission, h5 as checkRecordAccess, h7 as checkRecordDeleteOrThrow, h6 as checkRecordModifyOrThrow, h8 as checkSharedObjectWriteAccess, fj as complete, h9 as computeLabel, iC as computeLabelWithRelations, hd as createContextForCreate, hf as createContextForDelete, hg as createContextForRestore, he as createContextForUpdate, fa as createDefaultExecutorRegistry, ez as createDefaultState, g2 as createMockAdapter, eF as createQueryBuilder, g4 as defaultPolicyRegistry, ep as defaultTtl, hc as enrichRecordsWithFormulas, iy as enrichValuesForDisplay, iz as enrichValuesWithSelectLabels, hb as enrichWithFormulas, fk as error, eL as evaluate, eK as evaluateCondition, ft as evaluateFormula, fu as evaluateFormulaAttribute, fv as evaluateFormulaAttributeWithRelations, fw as evaluateFormulaWithRelations, fx as evaluateFormulaWithResult, eM as evaluateWithTrace, ix as extractAttributeNames, fy as extractFormulaVariables, iA as extractRelationIds, fz as extractRelationNames, fA as extractRelationReferences, fB as flattenRelationsForEval, fC as formatFormulaResult, eA as formatRecord, eB as formatRecords, f3 as getContext, fb as getDefaultExecutorRegistry, eP as getFeatureFlags, eQ as getFeatureValue, fG as getPathDepth, h3 as getPolicy, fH as getRelationPath, eY as getSchemaByNameFromContext, eZ as getSchemaContext, e_ as getSchemaFromContext, iq as getSyncPreview, fI as getTargetAttributeName, f4 as getTenantId, f5 as getUserId, ji as getViewSeedPreview, jj as getViewSyncPreview, f6 as hasContext, eR as hasFeatureFlagsContext, fD as hasRelationReferences, e$ as hasSchemaContext, ek as hashOptions, eS as isFeatureEnabled, iw as isLabelExpression, fL as parsePath, fM as pathHasManyCardinality, hh as recalculateParentRollups, iv as renderLabelExpression, fS as resolveMultiplePaths, fT as resolveSingleValue, f7 as runWithContext, eT as runWithFeatureFlags, f0 as runWithMergedSchemaContext, f1 as runWithSchemaContext, je as seedRegistryViews, fm as success, it as syncAll, io as syncNativeObjects, jf as syncNativeViews, fU as traversePath, eU as tryGetFeatureValue, fE as validateFormulaExpression, fN as validatePath, ip as verifyNativeObjectsSync, jh as verifyNativeViewsSync, jg as verifyRegistryViewsSeeded, fn as wait, eV as withFeatureFlags, f8 as withTenantContext } from './runtime-BV9XBP1p.js';
|
|
2
|
+
export { a6 as CompletionStatus } from './validators-DEfgr14O.js';
|
|
3
3
|
import '@stndrds/constants';
|
|
4
4
|
import './utils.js';
|
|
5
5
|
import 'jose';
|
package/dist/runtime.js
CHANGED
|
@@ -157,9 +157,9 @@
|
|
|
157
157
|
|
|
158
158
|
|
|
159
159
|
|
|
160
|
-
var
|
|
160
|
+
var _chunk4GHZ6AUFjs = require('./chunk-4GHZ6AUF.js');
|
|
161
161
|
require('./chunk-NEVERCM3.js');
|
|
162
|
-
require('./chunk-
|
|
162
|
+
require('./chunk-3WTK7ESH.js');
|
|
163
163
|
require('./chunk-3RG5ZIWI.js');
|
|
164
164
|
|
|
165
165
|
|
|
@@ -320,4 +320,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
320
320
|
|
|
321
321
|
|
|
322
322
|
|
|
323
|
-
exports.AuditService = _chunkXGFBT4K2js.AuditService; exports.BaseRepository = _chunkXGFBT4K2js.BaseRepository; exports.BaseService = _chunkXGFBT4K2js.BaseService; exports.ConditionExecutor = _chunkXGFBT4K2js.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkXGFBT4K2js.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunkXGFBT4K2js.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkXGFBT4K2js.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkXGFBT4K2js.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkXGFBT4K2js.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunkXGFBT4K2js.DocumentProcessingHook; exports.DocumentProcessingService = _chunkXGFBT4K2js.DocumentProcessingService; exports.DocumentRenderError = _chunkXGFBT4K2js.DocumentRenderError; exports.DocumentRendererService = _chunkXGFBT4K2js.DocumentRendererService; exports.DocumentService = _chunkXGFBT4K2js.DocumentService; exports.DocumentTemplateService = _chunkXGFBT4K2js.DocumentTemplateService; exports.EndExecutor = _chunkXGFBT4K2js.EndExecutor; exports.ExecutorRegistry = _chunkXGFBT4K2js.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkXGFBT4K2js.FeatureFlagsContextError; exports.FileService = _chunkXGFBT4K2js.FileService; exports.FormExecutor = _chunkXGFBT4K2js.FormExecutor; exports.FormulaResolverService = _chunkXGFBT4K2js.FormulaResolverService; exports.GeocodingService = _chunkXGFBT4K2js.GeocodingService; exports.GlobalSearchService = _chunkXGFBT4K2js.GlobalSearchService; exports.GrantExpiredError = _chunkXGFBT4K2js.GrantExpiredError; exports.GrantNotFoundError = _chunkXGFBT4K2js.GrantNotFoundError; exports.GrantRevokedError = _chunkXGFBT4K2js.GrantRevokedError; exports.InvalidPathError = _chunkXGFBT4K2js.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkXGFBT4K2js.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkXGFBT4K2js.InvitationExpiredError; exports.InvitationNotFoundError = _chunkXGFBT4K2js.InvitationNotFoundError; exports.InvitationRevokedError = _chunkXGFBT4K2js.InvitationRevokedError; exports.MaxDepthExceededError = _chunkXGFBT4K2js.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkXGFBT4K2js.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkXGFBT4K2js.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkXGFBT4K2js.NoopHookRegistry; exports.ObjectSchemaService = _chunkXGFBT4K2js.ObjectSchemaService; exports.PermissionService = _chunkXGFBT4K2js.PermissionService; exports.PolicyRegistry = _chunkXGFBT4K2js.PolicyRegistry; exports.PolicyViolationError = _chunkXGFBT4K2js.PolicyViolationError; exports.QueryBuilder = _chunkXGFBT4K2js.QueryBuilder; exports.QueryMultipleResultsError = _chunkXGFBT4K2js.QueryMultipleResultsError; exports.QueryNoResultError = _chunkXGFBT4K2js.QueryNoResultError; exports.RecordQueryService = _chunkXGFBT4K2js.RecordQueryService; exports.RecordResolverService = _chunkXGFBT4K2js.RecordResolverService; exports.RecordService = _chunkXGFBT4K2js.RecordService; exports.RelationPropertiesService = _chunkXGFBT4K2js.RelationPropertiesService; exports.RelationService = _chunkXGFBT4K2js.RelationService; exports.RollupScheduler = _chunkXGFBT4K2js.RollupScheduler; exports.RollupService = _chunkXGFBT4K2js.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkXGFBT4K2js.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunkXGFBT4K2js.SchemaContextAwareRepository; exports.StartExecutor = _chunkXGFBT4K2js.StartExecutor; exports.StorageDownloadNotSupportedError = _chunkXGFBT4K2js.StorageDownloadNotSupportedError; exports.TenantContextError = _chunkXGFBT4K2js.TenantContextError; exports.TokenRevokedError = _chunkXGFBT4K2js.TokenRevokedError; exports.UserProfileService = _chunkXGFBT4K2js.UserProfileService; exports.UserService = _chunkXGFBT4K2js.UserService; exports.ViewService = _chunkXGFBT4K2js.ViewService; exports.WorkflowAccessGrantService = _chunkXGFBT4K2js.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkXGFBT4K2js.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkXGFBT4K2js.WorkflowInvitationService; exports.WorkflowJwtService = _chunkXGFBT4K2js.WorkflowJwtService; exports.WorkflowRelationService = _chunkXGFBT4K2js.WorkflowRelationService; exports.WorkflowService = _chunkXGFBT4K2js.WorkflowService; exports.addSchemaToContext = _chunkXGFBT4K2js.addSchemaToContext; exports.applyDefaultValues = _chunkXGFBT4K2js.applyDefaultValues; exports.buildAuditChanges = _chunkXGFBT4K2js.buildAuditChanges; exports.buildPolicyContext = _chunkXGFBT4K2js.buildPolicyContext; exports.cacheKeys = _chunkXGFBT4K2js.cacheKeys; exports.cacheTtl = _chunkXGFBT4K2js.cacheTtl; exports.checkPermission = _chunkXGFBT4K2js.checkPermission; exports.checkRecordAccess = _chunkXGFBT4K2js.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkXGFBT4K2js.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkXGFBT4K2js.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkXGFBT4K2js.checkSharedObjectWriteAccess; exports.complete = _chunkXGFBT4K2js.complete; exports.computeLabel = _chunkXGFBT4K2js.computeLabel; exports.computeLabelWithRelations = _chunkXGFBT4K2js.computeLabelWithRelations; exports.createContextForCreate = _chunkXGFBT4K2js.createContextForCreate; exports.createContextForDelete = _chunkXGFBT4K2js.createContextForDelete; exports.createContextForRestore = _chunkXGFBT4K2js.createContextForRestore; exports.createContextForUpdate = _chunkXGFBT4K2js.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkXGFBT4K2js.createDefaultExecutorRegistry; exports.createDefaultState = _chunkXGFBT4K2js.createDefaultState; exports.createMockAdapter = _chunkXGFBT4K2js.createMockAdapter; exports.createQueryBuilder = _chunkXGFBT4K2js.createQueryBuilder; exports.defaultPolicyRegistry = _chunkXGFBT4K2js.defaultPolicyRegistry; exports.defaultTtl = _chunkXGFBT4K2js.defaultTtl; exports.enrichRecordsWithFormulas = _chunkXGFBT4K2js.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkXGFBT4K2js.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkXGFBT4K2js.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkXGFBT4K2js.enrichWithFormulas; exports.error = _chunkXGFBT4K2js.error; exports.evaluate = _chunkXGFBT4K2js.evaluate; exports.evaluateCondition = _chunkXGFBT4K2js.evaluateCondition; exports.evaluateFormula = _chunkXGFBT4K2js.evaluateFormula; exports.evaluateFormulaAttribute = _chunkXGFBT4K2js.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkXGFBT4K2js.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkXGFBT4K2js.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkXGFBT4K2js.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkXGFBT4K2js.evaluateWithTrace; exports.extractAttributeNames = _chunkXGFBT4K2js.extractAttributeNames; exports.extractFormulaVariables = _chunkXGFBT4K2js.extractFormulaVariables; exports.extractRelationIds = _chunkXGFBT4K2js.extractRelationIds; exports.extractRelationNames = _chunkXGFBT4K2js.extractRelationNames; exports.extractRelationReferences = _chunkXGFBT4K2js.extractRelationReferences; exports.flattenRelationsForEval = _chunkXGFBT4K2js.flattenRelationsForEval; exports.formatFormulaResult = _chunkXGFBT4K2js.formatFormulaResult; exports.formatRecord = _chunkXGFBT4K2js.formatRecord; exports.formatRecords = _chunkXGFBT4K2js.formatRecords; exports.getContext = _chunkXGFBT4K2js.getContext; exports.getDefaultExecutorRegistry = _chunkXGFBT4K2js.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkXGFBT4K2js.getFeatureFlags; exports.getFeatureValue = _chunkXGFBT4K2js.getFeatureValue; exports.getPathDepth = _chunkXGFBT4K2js.getPathDepth; exports.getPolicy = _chunkXGFBT4K2js.getPolicy; exports.getRelationPath = _chunkXGFBT4K2js.getRelationPath; exports.getSchemaByNameFromContext = _chunkXGFBT4K2js.getSchemaByNameFromContext; exports.getSchemaContext = _chunkXGFBT4K2js.getSchemaContext; exports.getSchemaFromContext = _chunkXGFBT4K2js.getSchemaFromContext; exports.getSyncPreview = _chunkXGFBT4K2js.getSyncPreview; exports.getTargetAttributeName = _chunkXGFBT4K2js.getTargetAttributeName; exports.getTenantId = _chunkXGFBT4K2js.getTenantId; exports.getUserId = _chunkXGFBT4K2js.getUserId; exports.getViewSeedPreview = _chunkXGFBT4K2js.getViewSeedPreview; exports.getViewSyncPreview = _chunkXGFBT4K2js.getViewSyncPreview; exports.hasContext = _chunkXGFBT4K2js.hasContext; exports.hasFeatureFlagsContext = _chunkXGFBT4K2js.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkXGFBT4K2js.hasRelationReferences; exports.hasSchemaContext = _chunkXGFBT4K2js.hasSchemaContext; exports.hashOptions = _chunkXGFBT4K2js.hashOptions; exports.isFeatureEnabled = _chunkXGFBT4K2js.isFeatureEnabled; exports.isLabelExpression = _chunkXGFBT4K2js.isLabelExpression; exports.parsePath = _chunkXGFBT4K2js.parsePath; exports.pathHasManyCardinality = _chunkXGFBT4K2js.pathHasManyCardinality; exports.recalculateParentRollups = _chunkXGFBT4K2js.recalculateParentRollups; exports.renderLabelExpression = _chunkXGFBT4K2js.renderLabelExpression; exports.resolveMultiplePaths = _chunkXGFBT4K2js.resolveMultiplePaths; exports.resolveSingleValue = _chunkXGFBT4K2js.resolveSingleValue; exports.runWithContext = _chunkXGFBT4K2js.runWithContext; exports.runWithFeatureFlags = _chunkXGFBT4K2js.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkXGFBT4K2js.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkXGFBT4K2js.runWithSchemaContext; exports.seedRegistryViews = _chunkXGFBT4K2js.seedRegistryViews; exports.success = _chunkXGFBT4K2js.success; exports.syncAll = _chunkXGFBT4K2js.syncAll; exports.syncNativeObjects = _chunkXGFBT4K2js.syncNativeObjects; exports.syncNativeViews = _chunkXGFBT4K2js.syncNativeViews; exports.traversePath = _chunkXGFBT4K2js.traversePath; exports.tryGetFeatureValue = _chunkXGFBT4K2js.tryGetFeatureValue; exports.validateFormulaExpression = _chunkXGFBT4K2js.validateFormulaExpression; exports.validatePath = _chunkXGFBT4K2js.validatePath; exports.verifyNativeObjectsSync = _chunkXGFBT4K2js.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkXGFBT4K2js.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkXGFBT4K2js.verifyRegistryViewsSeeded; exports.wait = _chunkXGFBT4K2js.wait; exports.withFeatureFlags = _chunkXGFBT4K2js.withFeatureFlags; exports.withTenantContext = _chunkXGFBT4K2js.withTenantContext;
|
|
323
|
+
exports.AuditService = _chunk4GHZ6AUFjs.AuditService; exports.BaseRepository = _chunk4GHZ6AUFjs.BaseRepository; exports.BaseService = _chunk4GHZ6AUFjs.BaseService; exports.ConditionExecutor = _chunk4GHZ6AUFjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunk4GHZ6AUFjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunk4GHZ6AUFjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunk4GHZ6AUFjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunk4GHZ6AUFjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunk4GHZ6AUFjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunk4GHZ6AUFjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunk4GHZ6AUFjs.DocumentProcessingService; exports.DocumentRenderError = _chunk4GHZ6AUFjs.DocumentRenderError; exports.DocumentRendererService = _chunk4GHZ6AUFjs.DocumentRendererService; exports.DocumentService = _chunk4GHZ6AUFjs.DocumentService; exports.DocumentTemplateService = _chunk4GHZ6AUFjs.DocumentTemplateService; exports.EndExecutor = _chunk4GHZ6AUFjs.EndExecutor; exports.ExecutorRegistry = _chunk4GHZ6AUFjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunk4GHZ6AUFjs.FeatureFlagsContextError; exports.FileService = _chunk4GHZ6AUFjs.FileService; exports.FormExecutor = _chunk4GHZ6AUFjs.FormExecutor; exports.FormulaResolverService = _chunk4GHZ6AUFjs.FormulaResolverService; exports.GeocodingService = _chunk4GHZ6AUFjs.GeocodingService; exports.GlobalSearchService = _chunk4GHZ6AUFjs.GlobalSearchService; exports.GrantExpiredError = _chunk4GHZ6AUFjs.GrantExpiredError; exports.GrantNotFoundError = _chunk4GHZ6AUFjs.GrantNotFoundError; exports.GrantRevokedError = _chunk4GHZ6AUFjs.GrantRevokedError; exports.InvalidPathError = _chunk4GHZ6AUFjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunk4GHZ6AUFjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunk4GHZ6AUFjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunk4GHZ6AUFjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunk4GHZ6AUFjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunk4GHZ6AUFjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunk4GHZ6AUFjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunk4GHZ6AUFjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunk4GHZ6AUFjs.NoopHookRegistry; exports.ObjectSchemaService = _chunk4GHZ6AUFjs.ObjectSchemaService; exports.PermissionService = _chunk4GHZ6AUFjs.PermissionService; exports.PolicyRegistry = _chunk4GHZ6AUFjs.PolicyRegistry; exports.PolicyViolationError = _chunk4GHZ6AUFjs.PolicyViolationError; exports.QueryBuilder = _chunk4GHZ6AUFjs.QueryBuilder; exports.QueryMultipleResultsError = _chunk4GHZ6AUFjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunk4GHZ6AUFjs.QueryNoResultError; exports.RecordQueryService = _chunk4GHZ6AUFjs.RecordQueryService; exports.RecordResolverService = _chunk4GHZ6AUFjs.RecordResolverService; exports.RecordService = _chunk4GHZ6AUFjs.RecordService; exports.RelationPropertiesService = _chunk4GHZ6AUFjs.RelationPropertiesService; exports.RelationService = _chunk4GHZ6AUFjs.RelationService; exports.RollupScheduler = _chunk4GHZ6AUFjs.RollupScheduler; exports.RollupService = _chunk4GHZ6AUFjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunk4GHZ6AUFjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunk4GHZ6AUFjs.SchemaContextAwareRepository; exports.StartExecutor = _chunk4GHZ6AUFjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunk4GHZ6AUFjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunk4GHZ6AUFjs.TenantContextError; exports.TokenRevokedError = _chunk4GHZ6AUFjs.TokenRevokedError; exports.UserProfileService = _chunk4GHZ6AUFjs.UserProfileService; exports.UserService = _chunk4GHZ6AUFjs.UserService; exports.ViewService = _chunk4GHZ6AUFjs.ViewService; exports.WorkflowAccessGrantService = _chunk4GHZ6AUFjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunk4GHZ6AUFjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunk4GHZ6AUFjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunk4GHZ6AUFjs.WorkflowJwtService; exports.WorkflowRelationService = _chunk4GHZ6AUFjs.WorkflowRelationService; exports.WorkflowService = _chunk4GHZ6AUFjs.WorkflowService; exports.addSchemaToContext = _chunk4GHZ6AUFjs.addSchemaToContext; exports.applyDefaultValues = _chunk4GHZ6AUFjs.applyDefaultValues; exports.buildAuditChanges = _chunk4GHZ6AUFjs.buildAuditChanges; exports.buildPolicyContext = _chunk4GHZ6AUFjs.buildPolicyContext; exports.cacheKeys = _chunk4GHZ6AUFjs.cacheKeys; exports.cacheTtl = _chunk4GHZ6AUFjs.cacheTtl; exports.checkPermission = _chunk4GHZ6AUFjs.checkPermission; exports.checkRecordAccess = _chunk4GHZ6AUFjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunk4GHZ6AUFjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunk4GHZ6AUFjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunk4GHZ6AUFjs.checkSharedObjectWriteAccess; exports.complete = _chunk4GHZ6AUFjs.complete; exports.computeLabel = _chunk4GHZ6AUFjs.computeLabel; exports.computeLabelWithRelations = _chunk4GHZ6AUFjs.computeLabelWithRelations; exports.createContextForCreate = _chunk4GHZ6AUFjs.createContextForCreate; exports.createContextForDelete = _chunk4GHZ6AUFjs.createContextForDelete; exports.createContextForRestore = _chunk4GHZ6AUFjs.createContextForRestore; exports.createContextForUpdate = _chunk4GHZ6AUFjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunk4GHZ6AUFjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunk4GHZ6AUFjs.createDefaultState; exports.createMockAdapter = _chunk4GHZ6AUFjs.createMockAdapter; exports.createQueryBuilder = _chunk4GHZ6AUFjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunk4GHZ6AUFjs.defaultPolicyRegistry; exports.defaultTtl = _chunk4GHZ6AUFjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunk4GHZ6AUFjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunk4GHZ6AUFjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunk4GHZ6AUFjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunk4GHZ6AUFjs.enrichWithFormulas; exports.error = _chunk4GHZ6AUFjs.error; exports.evaluate = _chunk4GHZ6AUFjs.evaluate; exports.evaluateCondition = _chunk4GHZ6AUFjs.evaluateCondition; exports.evaluateFormula = _chunk4GHZ6AUFjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunk4GHZ6AUFjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunk4GHZ6AUFjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunk4GHZ6AUFjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunk4GHZ6AUFjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunk4GHZ6AUFjs.evaluateWithTrace; exports.extractAttributeNames = _chunk4GHZ6AUFjs.extractAttributeNames; exports.extractFormulaVariables = _chunk4GHZ6AUFjs.extractFormulaVariables; exports.extractRelationIds = _chunk4GHZ6AUFjs.extractRelationIds; exports.extractRelationNames = _chunk4GHZ6AUFjs.extractRelationNames; exports.extractRelationReferences = _chunk4GHZ6AUFjs.extractRelationReferences; exports.flattenRelationsForEval = _chunk4GHZ6AUFjs.flattenRelationsForEval; exports.formatFormulaResult = _chunk4GHZ6AUFjs.formatFormulaResult; exports.formatRecord = _chunk4GHZ6AUFjs.formatRecord; exports.formatRecords = _chunk4GHZ6AUFjs.formatRecords; exports.getContext = _chunk4GHZ6AUFjs.getContext; exports.getDefaultExecutorRegistry = _chunk4GHZ6AUFjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunk4GHZ6AUFjs.getFeatureFlags; exports.getFeatureValue = _chunk4GHZ6AUFjs.getFeatureValue; exports.getPathDepth = _chunk4GHZ6AUFjs.getPathDepth; exports.getPolicy = _chunk4GHZ6AUFjs.getPolicy; exports.getRelationPath = _chunk4GHZ6AUFjs.getRelationPath; exports.getSchemaByNameFromContext = _chunk4GHZ6AUFjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunk4GHZ6AUFjs.getSchemaContext; exports.getSchemaFromContext = _chunk4GHZ6AUFjs.getSchemaFromContext; exports.getSyncPreview = _chunk4GHZ6AUFjs.getSyncPreview; exports.getTargetAttributeName = _chunk4GHZ6AUFjs.getTargetAttributeName; exports.getTenantId = _chunk4GHZ6AUFjs.getTenantId; exports.getUserId = _chunk4GHZ6AUFjs.getUserId; exports.getViewSeedPreview = _chunk4GHZ6AUFjs.getViewSeedPreview; exports.getViewSyncPreview = _chunk4GHZ6AUFjs.getViewSyncPreview; exports.hasContext = _chunk4GHZ6AUFjs.hasContext; exports.hasFeatureFlagsContext = _chunk4GHZ6AUFjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunk4GHZ6AUFjs.hasRelationReferences; exports.hasSchemaContext = _chunk4GHZ6AUFjs.hasSchemaContext; exports.hashOptions = _chunk4GHZ6AUFjs.hashOptions; exports.isFeatureEnabled = _chunk4GHZ6AUFjs.isFeatureEnabled; exports.isLabelExpression = _chunk4GHZ6AUFjs.isLabelExpression; exports.parsePath = _chunk4GHZ6AUFjs.parsePath; exports.pathHasManyCardinality = _chunk4GHZ6AUFjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunk4GHZ6AUFjs.recalculateParentRollups; exports.renderLabelExpression = _chunk4GHZ6AUFjs.renderLabelExpression; exports.resolveMultiplePaths = _chunk4GHZ6AUFjs.resolveMultiplePaths; exports.resolveSingleValue = _chunk4GHZ6AUFjs.resolveSingleValue; exports.runWithContext = _chunk4GHZ6AUFjs.runWithContext; exports.runWithFeatureFlags = _chunk4GHZ6AUFjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunk4GHZ6AUFjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunk4GHZ6AUFjs.runWithSchemaContext; exports.seedRegistryViews = _chunk4GHZ6AUFjs.seedRegistryViews; exports.success = _chunk4GHZ6AUFjs.success; exports.syncAll = _chunk4GHZ6AUFjs.syncAll; exports.syncNativeObjects = _chunk4GHZ6AUFjs.syncNativeObjects; exports.syncNativeViews = _chunk4GHZ6AUFjs.syncNativeViews; exports.traversePath = _chunk4GHZ6AUFjs.traversePath; exports.tryGetFeatureValue = _chunk4GHZ6AUFjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunk4GHZ6AUFjs.validateFormulaExpression; exports.validatePath = _chunk4GHZ6AUFjs.validatePath; exports.verifyNativeObjectsSync = _chunk4GHZ6AUFjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunk4GHZ6AUFjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunk4GHZ6AUFjs.verifyRegistryViewsSeeded; exports.wait = _chunk4GHZ6AUFjs.wait; exports.withFeatureFlags = _chunk4GHZ6AUFjs.withFeatureFlags; exports.withTenantContext = _chunk4GHZ6AUFjs.withTenantContext;
|
package/dist/runtime.mjs
CHANGED
|
@@ -157,9 +157,9 @@ import {
|
|
|
157
157
|
wait,
|
|
158
158
|
withFeatureFlags,
|
|
159
159
|
withTenantContext
|
|
160
|
-
} from "./chunk-
|
|
160
|
+
} from "./chunk-INXFKM4S.mjs";
|
|
161
161
|
import "./chunk-V2RPPE2Y.mjs";
|
|
162
|
-
import "./chunk-
|
|
162
|
+
import "./chunk-5SZ5OISG.mjs";
|
|
163
163
|
import "./chunk-Y6FXYEAI.mjs";
|
|
164
164
|
export {
|
|
165
165
|
AuditService,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import 'zod';
|
|
2
|
-
export { af as DEFAULT_VALIDATION_MESSAGES, ae as ValidationMessages, a$ as ValidationResult, az as attributeConfigSchemas, ak as checkboxConfigSchema, b8 as computeRecordStatus, aY as createAttributeValidator, aG as createCheckboxValidator, aJ as createCurrencyValidator, aH as createDateValidator, b3 as createDraftValidator, aO as createFileValidator, aZ as createFormAttributeValidator, aU as createFormulaValidator, aN as createLocationValidator, aR as createMultiRelationValidator, aM as createMultiselectValidator, aF as createNumberValidator, a_ as createObjectValidator, aI as createPhoneValidator, aT as createRatingValidator, aS as createRelationValidator, aX as createRichtextValidator, aV as createRollupValidator, aL as createSelectValidator, aQ as createSingleRelationValidator, aK as createStatusValidator, aW as createTextAreaValidator, aE as createTextValidator, aP as createUserValidator, an as currencyConfigSchema, al as dateConfigSchema, ay as documentConfigSchema, as as fileConfigSchema, ad as formatZodErrors, aw as formulaConfigSchema, aA as getAttributeConfigSchema, b6 as getMissingRequiredAttributes, b7 as isRecordComplete, ap as locationConfigSchema, ar as multiselectConfigSchema, aj as numberConfigSchema, aC as parseAttributeConfig, am as phoneConfigSchema, av as ratingConfigSchema, au as relationConfigSchema, ai as richtextConfigSchema, ax as rollupConfigSchema, aD as safeParseAttributeConfig, aq as selectConfigSchema, ao as statusConfigSchema, ag as textConfigSchema, ah as textareaConfigSchema, at as userConfigSchema, b0 as validateAttribute, aB as validateAttributeConfig, b4 as validateDraft, b5 as validateDraftOrThrow, b1 as validateObject, b2 as validateObjectOrThrow } from '../validators-
|
|
2
|
+
export { af as DEFAULT_VALIDATION_MESSAGES, ae as ValidationMessages, a$ as ValidationResult, az as attributeConfigSchemas, ak as checkboxConfigSchema, b8 as computeRecordStatus, aY as createAttributeValidator, aG as createCheckboxValidator, aJ as createCurrencyValidator, aH as createDateValidator, b3 as createDraftValidator, aO as createFileValidator, aZ as createFormAttributeValidator, aU as createFormulaValidator, aN as createLocationValidator, aR as createMultiRelationValidator, aM as createMultiselectValidator, aF as createNumberValidator, a_ as createObjectValidator, aI as createPhoneValidator, aT as createRatingValidator, aS as createRelationValidator, aX as createRichtextValidator, aV as createRollupValidator, aL as createSelectValidator, aQ as createSingleRelationValidator, aK as createStatusValidator, aW as createTextAreaValidator, aE as createTextValidator, aP as createUserValidator, an as currencyConfigSchema, al as dateConfigSchema, ay as documentConfigSchema, as as fileConfigSchema, ad as formatZodErrors, aw as formulaConfigSchema, aA as getAttributeConfigSchema, b6 as getMissingRequiredAttributes, b7 as isRecordComplete, ap as locationConfigSchema, ar as multiselectConfigSchema, aj as numberConfigSchema, aC as parseAttributeConfig, am as phoneConfigSchema, av as ratingConfigSchema, au as relationConfigSchema, ai as richtextConfigSchema, ax as rollupConfigSchema, aD as safeParseAttributeConfig, aq as selectConfigSchema, ao as statusConfigSchema, ag as textConfigSchema, ah as textareaConfigSchema, at as userConfigSchema, b0 as validateAttribute, aB as validateAttributeConfig, b4 as validateDraft, b5 as validateDraftOrThrow, b1 as validateObject, b2 as validateObjectOrThrow } from '../validators-CzHCpxVj.mjs';
|
|
3
3
|
import '@stndrds/constants';
|
|
4
4
|
import '../utils.mjs';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import 'zod';
|
|
2
|
-
export { af as DEFAULT_VALIDATION_MESSAGES, ae as ValidationMessages, a$ as ValidationResult, az as attributeConfigSchemas, ak as checkboxConfigSchema, b8 as computeRecordStatus, aY as createAttributeValidator, aG as createCheckboxValidator, aJ as createCurrencyValidator, aH as createDateValidator, b3 as createDraftValidator, aO as createFileValidator, aZ as createFormAttributeValidator, aU as createFormulaValidator, aN as createLocationValidator, aR as createMultiRelationValidator, aM as createMultiselectValidator, aF as createNumberValidator, a_ as createObjectValidator, aI as createPhoneValidator, aT as createRatingValidator, aS as createRelationValidator, aX as createRichtextValidator, aV as createRollupValidator, aL as createSelectValidator, aQ as createSingleRelationValidator, aK as createStatusValidator, aW as createTextAreaValidator, aE as createTextValidator, aP as createUserValidator, an as currencyConfigSchema, al as dateConfigSchema, ay as documentConfigSchema, as as fileConfigSchema, ad as formatZodErrors, aw as formulaConfigSchema, aA as getAttributeConfigSchema, b6 as getMissingRequiredAttributes, b7 as isRecordComplete, ap as locationConfigSchema, ar as multiselectConfigSchema, aj as numberConfigSchema, aC as parseAttributeConfig, am as phoneConfigSchema, av as ratingConfigSchema, au as relationConfigSchema, ai as richtextConfigSchema, ax as rollupConfigSchema, aD as safeParseAttributeConfig, aq as selectConfigSchema, ao as statusConfigSchema, ag as textConfigSchema, ah as textareaConfigSchema, at as userConfigSchema, b0 as validateAttribute, aB as validateAttributeConfig, b4 as validateDraft, b5 as validateDraftOrThrow, b1 as validateObject, b2 as validateObjectOrThrow } from '../validators-
|
|
2
|
+
export { af as DEFAULT_VALIDATION_MESSAGES, ae as ValidationMessages, a$ as ValidationResult, az as attributeConfigSchemas, ak as checkboxConfigSchema, b8 as computeRecordStatus, aY as createAttributeValidator, aG as createCheckboxValidator, aJ as createCurrencyValidator, aH as createDateValidator, b3 as createDraftValidator, aO as createFileValidator, aZ as createFormAttributeValidator, aU as createFormulaValidator, aN as createLocationValidator, aR as createMultiRelationValidator, aM as createMultiselectValidator, aF as createNumberValidator, a_ as createObjectValidator, aI as createPhoneValidator, aT as createRatingValidator, aS as createRelationValidator, aX as createRichtextValidator, aV as createRollupValidator, aL as createSelectValidator, aQ as createSingleRelationValidator, aK as createStatusValidator, aW as createTextAreaValidator, aE as createTextValidator, aP as createUserValidator, an as currencyConfigSchema, al as dateConfigSchema, ay as documentConfigSchema, as as fileConfigSchema, ad as formatZodErrors, aw as formulaConfigSchema, aA as getAttributeConfigSchema, b6 as getMissingRequiredAttributes, b7 as isRecordComplete, ap as locationConfigSchema, ar as multiselectConfigSchema, aj as numberConfigSchema, aC as parseAttributeConfig, am as phoneConfigSchema, av as ratingConfigSchema, au as relationConfigSchema, ai as richtextConfigSchema, ax as rollupConfigSchema, aD as safeParseAttributeConfig, aq as selectConfigSchema, ao as statusConfigSchema, ag as textConfigSchema, ah as textareaConfigSchema, at as userConfigSchema, b0 as validateAttribute, aB as validateAttributeConfig, b4 as validateDraft, b5 as validateDraftOrThrow, b1 as validateObject, b2 as validateObjectOrThrow } from '../validators-DEfgr14O.js';
|
|
3
3
|
import '@stndrds/constants';
|
|
4
4
|
import '../utils.js';
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
|
|
60
|
-
var
|
|
60
|
+
var _chunk3WTK7ESHjs = require('../chunk-3WTK7ESH.js');
|
|
61
61
|
require('../chunk-3RG5ZIWI.js');
|
|
62
62
|
|
|
63
63
|
|
|
@@ -118,4 +118,4 @@ require('../chunk-3RG5ZIWI.js');
|
|
|
118
118
|
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
exports.DEFAULT_VALIDATION_MESSAGES =
|
|
121
|
+
exports.DEFAULT_VALIDATION_MESSAGES = _chunk3WTK7ESHjs.DEFAULT_VALIDATION_MESSAGES; exports.attributeConfigSchemas = _chunk3WTK7ESHjs.attributeConfigSchemas; exports.checkboxConfigSchema = _chunk3WTK7ESHjs.checkboxConfigSchema; exports.computeRecordStatus = _chunk3WTK7ESHjs.computeRecordStatus; exports.createAttributeValidator = _chunk3WTK7ESHjs.createAttributeValidator; exports.createCheckboxValidator = _chunk3WTK7ESHjs.createCheckboxValidator; exports.createCurrencyValidator = _chunk3WTK7ESHjs.createCurrencyValidator; exports.createDateValidator = _chunk3WTK7ESHjs.createDateValidator; exports.createDraftValidator = _chunk3WTK7ESHjs.createDraftValidator; exports.createFileValidator = _chunk3WTK7ESHjs.createFileValidator; exports.createFormAttributeValidator = _chunk3WTK7ESHjs.createFormAttributeValidator; exports.createFormulaValidator = _chunk3WTK7ESHjs.createFormulaValidator; exports.createLocationValidator = _chunk3WTK7ESHjs.createLocationValidator; exports.createMultiRelationValidator = _chunk3WTK7ESHjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunk3WTK7ESHjs.createMultiselectValidator; exports.createNumberValidator = _chunk3WTK7ESHjs.createNumberValidator; exports.createObjectValidator = _chunk3WTK7ESHjs.createObjectValidator; exports.createPhoneValidator = _chunk3WTK7ESHjs.createPhoneValidator; exports.createRatingValidator = _chunk3WTK7ESHjs.createRatingValidator; exports.createRelationValidator = _chunk3WTK7ESHjs.createRelationValidator; exports.createRichtextValidator = _chunk3WTK7ESHjs.createRichtextValidator; exports.createRollupValidator = _chunk3WTK7ESHjs.createRollupValidator; exports.createSelectValidator = _chunk3WTK7ESHjs.createSelectValidator; exports.createSingleRelationValidator = _chunk3WTK7ESHjs.createSingleRelationValidator; exports.createStatusValidator = _chunk3WTK7ESHjs.createStatusValidator; exports.createTextAreaValidator = _chunk3WTK7ESHjs.createTextAreaValidator; exports.createTextValidator = _chunk3WTK7ESHjs.createTextValidator; exports.createUserValidator = _chunk3WTK7ESHjs.createUserValidator; exports.currencyConfigSchema = _chunk3WTK7ESHjs.currencyConfigSchema; exports.dateConfigSchema = _chunk3WTK7ESHjs.dateConfigSchema; exports.documentConfigSchema = _chunk3WTK7ESHjs.documentConfigSchema; exports.fileConfigSchema = _chunk3WTK7ESHjs.fileConfigSchema; exports.formatZodErrors = _chunk3WTK7ESHjs.formatZodErrors; exports.formulaConfigSchema = _chunk3WTK7ESHjs.formulaConfigSchema; exports.getAttributeConfigSchema = _chunk3WTK7ESHjs.getAttributeConfigSchema; exports.getMissingRequiredAttributes = _chunk3WTK7ESHjs.getMissingRequiredAttributes; exports.isRecordComplete = _chunk3WTK7ESHjs.isRecordComplete; exports.locationConfigSchema = _chunk3WTK7ESHjs.locationConfigSchema; exports.multiselectConfigSchema = _chunk3WTK7ESHjs.multiselectConfigSchema; exports.numberConfigSchema = _chunk3WTK7ESHjs.numberConfigSchema; exports.parseAttributeConfig = _chunk3WTK7ESHjs.parseAttributeConfig; exports.phoneConfigSchema = _chunk3WTK7ESHjs.phoneConfigSchema; exports.ratingConfigSchema = _chunk3WTK7ESHjs.ratingConfigSchema; exports.relationConfigSchema = _chunk3WTK7ESHjs.relationConfigSchema; exports.richtextConfigSchema = _chunk3WTK7ESHjs.richtextConfigSchema; exports.rollupConfigSchema = _chunk3WTK7ESHjs.rollupConfigSchema; exports.safeParseAttributeConfig = _chunk3WTK7ESHjs.safeParseAttributeConfig; exports.selectConfigSchema = _chunk3WTK7ESHjs.selectConfigSchema; exports.statusConfigSchema = _chunk3WTK7ESHjs.statusConfigSchema; exports.textConfigSchema = _chunk3WTK7ESHjs.textConfigSchema; exports.textareaConfigSchema = _chunk3WTK7ESHjs.textareaConfigSchema; exports.userConfigSchema = _chunk3WTK7ESHjs.userConfigSchema; exports.validateAttribute = _chunk3WTK7ESHjs.validateAttribute; exports.validateAttributeConfig = _chunk3WTK7ESHjs.validateAttributeConfig; exports.validateDraft = _chunk3WTK7ESHjs.validateDraft; exports.validateDraftOrThrow = _chunk3WTK7ESHjs.validateDraftOrThrow; exports.validateObject = _chunk3WTK7ESHjs.validateObject; exports.validateObjectOrThrow = _chunk3WTK7ESHjs.validateObjectOrThrow;
|
|
@@ -1392,11 +1392,13 @@ declare function createUserValidator(attr: UserAttribute, messages?: ValidationM
|
|
|
1392
1392
|
/**
|
|
1393
1393
|
* Create a Zod schema for a single relation attribute (cardinality: "one")
|
|
1394
1394
|
* Supports hybrid format `{ id, props }` from qualified relations.
|
|
1395
|
+
* IMPORTANT: Validates the ID but preserves the original format (keeps props).
|
|
1395
1396
|
*/
|
|
1396
1397
|
declare function createSingleRelationValidator(attr: SingleRelationAttribute, messages?: ValidationMessages): z.ZodTypeAny;
|
|
1397
1398
|
/**
|
|
1398
1399
|
* Create a Zod schema for a multi relation attribute (cardinality: "many")
|
|
1399
1400
|
* Supports hybrid format arrays with `{ id, props }` items from qualified relations.
|
|
1401
|
+
* IMPORTANT: Validates the IDs but preserves the original format (keeps props).
|
|
1400
1402
|
*/
|
|
1401
1403
|
declare function createMultiRelationValidator(attr: MultiRelationAttribute, messages?: ValidationMessages): z.ZodTypeAny;
|
|
1402
1404
|
/**
|
|
@@ -1392,11 +1392,13 @@ declare function createUserValidator(attr: UserAttribute, messages?: ValidationM
|
|
|
1392
1392
|
/**
|
|
1393
1393
|
* Create a Zod schema for a single relation attribute (cardinality: "one")
|
|
1394
1394
|
* Supports hybrid format `{ id, props }` from qualified relations.
|
|
1395
|
+
* IMPORTANT: Validates the ID but preserves the original format (keeps props).
|
|
1395
1396
|
*/
|
|
1396
1397
|
declare function createSingleRelationValidator(attr: SingleRelationAttribute, messages?: ValidationMessages): z.ZodTypeAny;
|
|
1397
1398
|
/**
|
|
1398
1399
|
* Create a Zod schema for a multi relation attribute (cardinality: "many")
|
|
1399
1400
|
* Supports hybrid format arrays with `{ id, props }` items from qualified relations.
|
|
1401
|
+
* IMPORTANT: Validates the IDs but preserves the original format (keeps props).
|
|
1400
1402
|
*/
|
|
1401
1403
|
declare function createMultiRelationValidator(attr: MultiRelationAttribute, messages?: ValidationMessages): z.ZodTypeAny;
|
|
1402
1404
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stndrds/schema",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.71",
|
|
4
4
|
"description": "Standard schema definitions and utilities",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"libphonenumber-js": "^1.12.31",
|
|
37
37
|
"pdf-lib": "^1.17.1",
|
|
38
38
|
"zod": "^4.2.1",
|
|
39
|
-
"@stndrds/constants": "1.0.0-alpha.
|
|
39
|
+
"@stndrds/constants": "1.0.0-alpha.71"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/node": "^25.0.3",
|