@stndrds/schema 1.0.0-alpha.78 → 1.0.0-alpha.79
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-JYXUFVUD.mjs → chunk-K5MARJCD.mjs} +78 -12
- package/dist/{chunk-KGEV5PIT.js → chunk-Y4FDI32G.js} +79 -13
- package/dist/index.d.mts +84 -18
- package/dist/index.d.ts +84 -18
- package/dist/index.js +21 -23
- package/dist/index.mjs +17 -19
- package/dist/{runtime-ntcKC7g8.d.mts → runtime-BU3qnMH0.d.mts} +85 -7
- package/dist/{runtime-Df0uvz45.d.ts → runtime-CjZp8UsJ.d.ts} +85 -7
- package/dist/runtime.d.mts +2 -2
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.js +2 -2
- package/dist/runtime.mjs +1 -1
- package/dist/validation/validators.d.mts +1 -1
- package/dist/validation/validators.d.ts +1 -1
- package/dist/{validators-BxPuQ2GT.d.ts → validators-5RPbTlXa.d.ts} +2 -0
- package/dist/{validators-DUB0tEzp.d.mts → validators-DVfMzWfY.d.mts} +2 -0
- package/package.json +2 -2
|
@@ -1292,6 +1292,23 @@ function createQueryBuilder(recordService, adapter, objectName, options) {
|
|
|
1292
1292
|
return new QueryBuilder(recordService, adapter, objectName, initialState);
|
|
1293
1293
|
}
|
|
1294
1294
|
|
|
1295
|
+
// src/types/flows.ts
|
|
1296
|
+
function isFlowFieldsRow(row) {
|
|
1297
|
+
return !row.type || row.type === "fields";
|
|
1298
|
+
}
|
|
1299
|
+
function isLayoutRow(row) {
|
|
1300
|
+
return !!row.type && row.type !== "fields";
|
|
1301
|
+
}
|
|
1302
|
+
function isFlowDefinition(obj) {
|
|
1303
|
+
return typeof obj === "object" && obj !== null && "slots" in obj && "pages" in obj && "relations" in obj && "status" in obj;
|
|
1304
|
+
}
|
|
1305
|
+
function isFlowPublished(flow) {
|
|
1306
|
+
return flow.status === "published";
|
|
1307
|
+
}
|
|
1308
|
+
function isSystemFlow(flow) {
|
|
1309
|
+
return flow.system === true;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1295
1312
|
// src/types/workflows/nodes.ts
|
|
1296
1313
|
function isSimpleFormNode(node) {
|
|
1297
1314
|
return node.fields !== void 0 && node.rows === void 0;
|
|
@@ -1459,6 +1476,11 @@ function setContextValue(context, path, value) {
|
|
|
1459
1476
|
current[parts[parts.length - 1]] = value;
|
|
1460
1477
|
}
|
|
1461
1478
|
|
|
1479
|
+
// src/types/workflows/form-context.ts
|
|
1480
|
+
function isFormFieldsRow(row) {
|
|
1481
|
+
return !row.type || row.type === "fields";
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1462
1484
|
// src/types/workflows/theme.ts
|
|
1463
1485
|
var DEFAULT_THEME = {
|
|
1464
1486
|
borderRadius: 8,
|
|
@@ -1551,14 +1573,40 @@ var FlowRowFieldSchema = z.object({
|
|
|
1551
1573
|
id: z.string().min(1),
|
|
1552
1574
|
slotId: z.string().min(1),
|
|
1553
1575
|
attribute: z.string().min(1),
|
|
1554
|
-
label: z.string().optional(),
|
|
1576
|
+
label: z.string().max(200).optional(),
|
|
1577
|
+
tooltip: z.string().max(1e3).optional(),
|
|
1555
1578
|
required: z.boolean().optional()
|
|
1556
1579
|
});
|
|
1557
|
-
var
|
|
1580
|
+
var FlowFieldsRowSchema = z.object({
|
|
1558
1581
|
id: z.string().min(1),
|
|
1559
1582
|
order: z.number(),
|
|
1583
|
+
type: z.literal("fields").optional(),
|
|
1560
1584
|
fields: z.array(FlowRowFieldSchema)
|
|
1561
1585
|
});
|
|
1586
|
+
var FlowHeadingRowSchema = z.object({
|
|
1587
|
+
id: z.string().min(1),
|
|
1588
|
+
order: z.number(),
|
|
1589
|
+
type: z.literal("heading"),
|
|
1590
|
+
content: z.string().min(1).max(200),
|
|
1591
|
+
level: z.union([z.literal(1), z.literal(2), z.literal(3)]).optional()
|
|
1592
|
+
});
|
|
1593
|
+
var FlowSeparatorRowSchema = z.object({
|
|
1594
|
+
id: z.string().min(1),
|
|
1595
|
+
order: z.number(),
|
|
1596
|
+
type: z.literal("separator")
|
|
1597
|
+
});
|
|
1598
|
+
var FlowTextRowSchema = z.object({
|
|
1599
|
+
id: z.string().min(1),
|
|
1600
|
+
order: z.number(),
|
|
1601
|
+
type: z.literal("text"),
|
|
1602
|
+
content: z.string().min(1).max(5e3)
|
|
1603
|
+
});
|
|
1604
|
+
var FlowRowSchema = z.union([
|
|
1605
|
+
FlowHeadingRowSchema,
|
|
1606
|
+
FlowSeparatorRowSchema,
|
|
1607
|
+
FlowTextRowSchema,
|
|
1608
|
+
FlowFieldsRowSchema
|
|
1609
|
+
]);
|
|
1562
1610
|
var FormNodeSchema = z.object({
|
|
1563
1611
|
type: z.literal("form"),
|
|
1564
1612
|
id: z.string().min(1),
|
|
@@ -2234,9 +2282,11 @@ var FormExecutor = class {
|
|
|
2234
2282
|
}
|
|
2235
2283
|
if (node.rows) {
|
|
2236
2284
|
for (const row of node.rows) {
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2285
|
+
if (isFlowFieldsRow(row)) {
|
|
2286
|
+
for (const field of row.fields) {
|
|
2287
|
+
if (field.slotId) {
|
|
2288
|
+
slotIds.add(field.slotId);
|
|
2289
|
+
}
|
|
2240
2290
|
}
|
|
2241
2291
|
}
|
|
2242
2292
|
}
|
|
@@ -2301,9 +2351,11 @@ var FormExecutor = class {
|
|
|
2301
2351
|
}
|
|
2302
2352
|
if (node.rows) {
|
|
2303
2353
|
for (const row of node.rows) {
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2354
|
+
if (isFlowFieldsRow(row)) {
|
|
2355
|
+
for (const field of row.fields) {
|
|
2356
|
+
if (field.slotId && field.attribute) {
|
|
2357
|
+
refs.push({ slotId: field.slotId, attribute: field.attribute });
|
|
2358
|
+
}
|
|
2307
2359
|
}
|
|
2308
2360
|
}
|
|
2309
2361
|
}
|
|
@@ -4398,9 +4450,12 @@ function createMockUserProfilesRepository(stores) {
|
|
|
4398
4450
|
if (!existing) {
|
|
4399
4451
|
return Promise.reject(new Error(`UserProfile ${id} not found`));
|
|
4400
4452
|
}
|
|
4453
|
+
const sanitized = Object.fromEntries(
|
|
4454
|
+
Object.entries(data).map(([k, v]) => [k, v === null ? void 0 : v])
|
|
4455
|
+
);
|
|
4401
4456
|
const updated = {
|
|
4402
4457
|
...existing,
|
|
4403
|
-
...
|
|
4458
|
+
...sanitized,
|
|
4404
4459
|
updatedAt: /* @__PURE__ */ new Date()
|
|
4405
4460
|
};
|
|
4406
4461
|
stores.userProfiles.set(id, updated);
|
|
@@ -5631,7 +5686,10 @@ var NON_SORTABLE_TYPES = /* @__PURE__ */ new Set([
|
|
|
5631
5686
|
"richtext",
|
|
5632
5687
|
"file",
|
|
5633
5688
|
"document",
|
|
5634
|
-
"location"
|
|
5689
|
+
"location",
|
|
5690
|
+
"user",
|
|
5691
|
+
"multiselect",
|
|
5692
|
+
"relation"
|
|
5635
5693
|
]);
|
|
5636
5694
|
function isAttributeSortable(attr) {
|
|
5637
5695
|
return !NON_SORTABLE_TYPES.has(attr.type);
|
|
@@ -8366,8 +8424,10 @@ var WorkflowBuilder = class {
|
|
|
8366
8424
|
}
|
|
8367
8425
|
if (node.rows) {
|
|
8368
8426
|
for (const row of node.rows) {
|
|
8369
|
-
|
|
8370
|
-
|
|
8427
|
+
if (isFlowFieldsRow(row)) {
|
|
8428
|
+
for (const field of row.fields) {
|
|
8429
|
+
referencedSlots.add(field.slotId);
|
|
8430
|
+
}
|
|
8371
8431
|
}
|
|
8372
8432
|
}
|
|
8373
8433
|
}
|
|
@@ -18761,6 +18821,11 @@ export {
|
|
|
18761
18821
|
AttributeInUseError,
|
|
18762
18822
|
ObjectReferencedError,
|
|
18763
18823
|
getErrorMessage,
|
|
18824
|
+
isFlowFieldsRow,
|
|
18825
|
+
isLayoutRow,
|
|
18826
|
+
isFlowDefinition,
|
|
18827
|
+
isFlowPublished,
|
|
18828
|
+
isSystemFlow,
|
|
18764
18829
|
NoopGeocodingAdapter,
|
|
18765
18830
|
SYSTEM_FIELD_NAMES,
|
|
18766
18831
|
RESERVED_ATTRIBUTE_NAMES,
|
|
@@ -18803,6 +18868,7 @@ export {
|
|
|
18803
18868
|
createEmptyContext,
|
|
18804
18869
|
getContextValue,
|
|
18805
18870
|
setContextValue,
|
|
18871
|
+
isFormFieldsRow,
|
|
18806
18872
|
DEFAULT_THEME,
|
|
18807
18873
|
mergeWithDefaults,
|
|
18808
18874
|
generateCssVariables,
|
|
@@ -1292,6 +1292,23 @@ function createQueryBuilder(recordService, adapter, objectName, options) {
|
|
|
1292
1292
|
return new QueryBuilder(recordService, adapter, objectName, initialState);
|
|
1293
1293
|
}
|
|
1294
1294
|
|
|
1295
|
+
// src/types/flows.ts
|
|
1296
|
+
function isFlowFieldsRow(row) {
|
|
1297
|
+
return !row.type || row.type === "fields";
|
|
1298
|
+
}
|
|
1299
|
+
function isLayoutRow(row) {
|
|
1300
|
+
return !!row.type && row.type !== "fields";
|
|
1301
|
+
}
|
|
1302
|
+
function isFlowDefinition(obj) {
|
|
1303
|
+
return typeof obj === "object" && obj !== null && "slots" in obj && "pages" in obj && "relations" in obj && "status" in obj;
|
|
1304
|
+
}
|
|
1305
|
+
function isFlowPublished(flow) {
|
|
1306
|
+
return flow.status === "published";
|
|
1307
|
+
}
|
|
1308
|
+
function isSystemFlow(flow) {
|
|
1309
|
+
return flow.system === true;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1295
1312
|
// src/types/workflows/nodes.ts
|
|
1296
1313
|
function isSimpleFormNode(node) {
|
|
1297
1314
|
return node.fields !== void 0 && node.rows === void 0;
|
|
@@ -1459,6 +1476,11 @@ function setContextValue(context, path, value) {
|
|
|
1459
1476
|
current[parts[parts.length - 1]] = value;
|
|
1460
1477
|
}
|
|
1461
1478
|
|
|
1479
|
+
// src/types/workflows/form-context.ts
|
|
1480
|
+
function isFormFieldsRow(row) {
|
|
1481
|
+
return !row.type || row.type === "fields";
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1462
1484
|
// src/types/workflows/theme.ts
|
|
1463
1485
|
var DEFAULT_THEME = {
|
|
1464
1486
|
borderRadius: 8,
|
|
@@ -1551,14 +1573,40 @@ var FlowRowFieldSchema = _zod.z.object({
|
|
|
1551
1573
|
id: _zod.z.string().min(1),
|
|
1552
1574
|
slotId: _zod.z.string().min(1),
|
|
1553
1575
|
attribute: _zod.z.string().min(1),
|
|
1554
|
-
label: _zod.z.string().optional(),
|
|
1576
|
+
label: _zod.z.string().max(200).optional(),
|
|
1577
|
+
tooltip: _zod.z.string().max(1e3).optional(),
|
|
1555
1578
|
required: _zod.z.boolean().optional()
|
|
1556
1579
|
});
|
|
1557
|
-
var
|
|
1580
|
+
var FlowFieldsRowSchema = _zod.z.object({
|
|
1558
1581
|
id: _zod.z.string().min(1),
|
|
1559
1582
|
order: _zod.z.number(),
|
|
1583
|
+
type: _zod.z.literal("fields").optional(),
|
|
1560
1584
|
fields: _zod.z.array(FlowRowFieldSchema)
|
|
1561
1585
|
});
|
|
1586
|
+
var FlowHeadingRowSchema = _zod.z.object({
|
|
1587
|
+
id: _zod.z.string().min(1),
|
|
1588
|
+
order: _zod.z.number(),
|
|
1589
|
+
type: _zod.z.literal("heading"),
|
|
1590
|
+
content: _zod.z.string().min(1).max(200),
|
|
1591
|
+
level: _zod.z.union([_zod.z.literal(1), _zod.z.literal(2), _zod.z.literal(3)]).optional()
|
|
1592
|
+
});
|
|
1593
|
+
var FlowSeparatorRowSchema = _zod.z.object({
|
|
1594
|
+
id: _zod.z.string().min(1),
|
|
1595
|
+
order: _zod.z.number(),
|
|
1596
|
+
type: _zod.z.literal("separator")
|
|
1597
|
+
});
|
|
1598
|
+
var FlowTextRowSchema = _zod.z.object({
|
|
1599
|
+
id: _zod.z.string().min(1),
|
|
1600
|
+
order: _zod.z.number(),
|
|
1601
|
+
type: _zod.z.literal("text"),
|
|
1602
|
+
content: _zod.z.string().min(1).max(5e3)
|
|
1603
|
+
});
|
|
1604
|
+
var FlowRowSchema = _zod.z.union([
|
|
1605
|
+
FlowHeadingRowSchema,
|
|
1606
|
+
FlowSeparatorRowSchema,
|
|
1607
|
+
FlowTextRowSchema,
|
|
1608
|
+
FlowFieldsRowSchema
|
|
1609
|
+
]);
|
|
1562
1610
|
var FormNodeSchema = _zod.z.object({
|
|
1563
1611
|
type: _zod.z.literal("form"),
|
|
1564
1612
|
id: _zod.z.string().min(1),
|
|
@@ -2234,9 +2282,11 @@ var FormExecutor = class {
|
|
|
2234
2282
|
}
|
|
2235
2283
|
if (node.rows) {
|
|
2236
2284
|
for (const row of node.rows) {
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2285
|
+
if (isFlowFieldsRow(row)) {
|
|
2286
|
+
for (const field of row.fields) {
|
|
2287
|
+
if (field.slotId) {
|
|
2288
|
+
slotIds.add(field.slotId);
|
|
2289
|
+
}
|
|
2240
2290
|
}
|
|
2241
2291
|
}
|
|
2242
2292
|
}
|
|
@@ -2301,9 +2351,11 @@ var FormExecutor = class {
|
|
|
2301
2351
|
}
|
|
2302
2352
|
if (node.rows) {
|
|
2303
2353
|
for (const row of node.rows) {
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2354
|
+
if (isFlowFieldsRow(row)) {
|
|
2355
|
+
for (const field of row.fields) {
|
|
2356
|
+
if (field.slotId && field.attribute) {
|
|
2357
|
+
refs.push({ slotId: field.slotId, attribute: field.attribute });
|
|
2358
|
+
}
|
|
2307
2359
|
}
|
|
2308
2360
|
}
|
|
2309
2361
|
}
|
|
@@ -4398,9 +4450,12 @@ function createMockUserProfilesRepository(stores) {
|
|
|
4398
4450
|
if (!existing) {
|
|
4399
4451
|
return Promise.reject(new Error(`UserProfile ${id} not found`));
|
|
4400
4452
|
}
|
|
4453
|
+
const sanitized = Object.fromEntries(
|
|
4454
|
+
Object.entries(data).map(([k, v]) => [k, v === null ? void 0 : v])
|
|
4455
|
+
);
|
|
4401
4456
|
const updated = {
|
|
4402
4457
|
...existing,
|
|
4403
|
-
...
|
|
4458
|
+
...sanitized,
|
|
4404
4459
|
updatedAt: /* @__PURE__ */ new Date()
|
|
4405
4460
|
};
|
|
4406
4461
|
stores.userProfiles.set(id, updated);
|
|
@@ -5631,7 +5686,10 @@ var NON_SORTABLE_TYPES = /* @__PURE__ */ new Set([
|
|
|
5631
5686
|
"richtext",
|
|
5632
5687
|
"file",
|
|
5633
5688
|
"document",
|
|
5634
|
-
"location"
|
|
5689
|
+
"location",
|
|
5690
|
+
"user",
|
|
5691
|
+
"multiselect",
|
|
5692
|
+
"relation"
|
|
5635
5693
|
]);
|
|
5636
5694
|
function isAttributeSortable(attr) {
|
|
5637
5695
|
return !NON_SORTABLE_TYPES.has(attr.type);
|
|
@@ -8366,8 +8424,10 @@ var WorkflowBuilder = class {
|
|
|
8366
8424
|
}
|
|
8367
8425
|
if (node.rows) {
|
|
8368
8426
|
for (const row of node.rows) {
|
|
8369
|
-
|
|
8370
|
-
|
|
8427
|
+
if (isFlowFieldsRow(row)) {
|
|
8428
|
+
for (const field of row.fields) {
|
|
8429
|
+
referencedSlots.add(field.slotId);
|
|
8430
|
+
}
|
|
8371
8431
|
}
|
|
8372
8432
|
}
|
|
8373
8433
|
}
|
|
@@ -19079,4 +19139,10 @@ var NoopGeocodingAdapter = class {
|
|
|
19079
19139
|
|
|
19080
19140
|
|
|
19081
19141
|
|
|
19082
|
-
exports.IDENTITY_PROPERTIES = IDENTITY_PROPERTIES; exports.BEHAVIOR_PROPERTIES = BEHAVIOR_PROPERTIES; exports.PRESENTATION_PROPERTIES = PRESENTATION_PROPERTIES; exports.isIdentityProperty = isIdentityProperty; exports.isBehaviorProperty = isBehaviorProperty; exports.isPresentationProperty = isPresentationProperty; exports.RELATION_TARGET_ANY = RELATION_TARGET_ANY; exports.isUniversalRelation = isUniversalRelation; exports.isBilateralRelation = isBilateralRelation; exports.inferInverseCardinality = inferInverseCardinality; exports.NON_SORTABLE_TYPES = NON_SORTABLE_TYPES; exports.isAttributeSortable = isAttributeSortable; exports.RecordReferencedError = RecordReferencedError; exports.AttributeInUseError = AttributeInUseError; exports.ObjectReferencedError = ObjectReferencedError; exports.getErrorMessage = getErrorMessage; exports.NoopGeocodingAdapter = NoopGeocodingAdapter; exports.SYSTEM_FIELD_NAMES = SYSTEM_FIELD_NAMES; exports.RESERVED_ATTRIBUTE_NAMES = RESERVED_ATTRIBUTE_NAMES; exports.PolicyViolationError = PolicyViolationError; exports.FORBIDDEN_PROPERTY_TYPES = FORBIDDEN_PROPERTY_TYPES; exports.SYSTEM_ATTRIBUTES = SYSTEM_ATTRIBUTES; exports.getSystemAttributeList = getSystemAttributeList; exports.isSystemAttribute = isSystemAttribute; exports.isSystemAttributeObject = isSystemAttributeObject; exports.isSimpleFormNode = isSimpleFormNode; exports.isAdvancedFormNode = isAdvancedFormNode; exports.isStartNode = isStartNode; exports.isFormNode = isFormNode; exports.isConditionNode = isConditionNode; exports.isDocumentNode = isDocumentNode; exports.isEndNode = isEndNode; exports.getNodeOutputs = getNodeOutputs; exports.isConditionRule = isConditionRule; exports.isConditionGroup = isConditionGroup; exports.eq = eq; exports.neq = neq; exports.and = and; exports.or = or; exports.inValues = inValues; exports.isWorkflowDefinition = isWorkflowDefinition; exports.isWorkflowPublished = isWorkflowPublished; exports.isSystemWorkflow = isSystemWorkflow; exports.isInstanceTerminal = isInstanceTerminal; exports.isInstanceWaiting = isInstanceWaiting; exports.canResumeInstance = canResumeInstance; exports.createStartTransition = createStartTransition; exports.isInvitationValid = isInvitationValid; exports.isInvitationAccepted = isInvitationAccepted; exports.isInvitationExpired = isInvitationExpired; exports.isGrantValid = isGrantValid; exports.isGrantRevoked = isGrantRevoked; exports.isTokenRevoked = isTokenRevoked; exports.isGrantExpired = isGrantExpired; exports.canAccessNode = canAccessNode; exports.createEmptyContext = createEmptyContext; exports.getContextValue = getContextValue; exports.setContextValue = setContextValue; exports.DEFAULT_THEME = DEFAULT_THEME; exports.mergeWithDefaults = mergeWithDefaults; exports.generateCssVariables = generateCssVariables; exports.isInstanceEvent = isInstanceEvent; exports.isNodeEvent = isNodeEvent; exports.isInvitationOrGrantEvent = isInvitationOrGrantEvent; exports.ConditionOperatorSchema = ConditionOperatorSchema; exports.ConditionRuleSchema = ConditionRuleSchema; exports.ConditionGroupSchema = ConditionGroupSchema; exports.StartNodeSchema = StartNodeSchema; exports.FormFieldRefSchema = FormFieldRefSchema; exports.FlowRowFieldSchema = FlowRowFieldSchema; exports.FlowRowSchema = FlowRowSchema; exports.FormNodeSchema = FormNodeSchema; exports.ConditionNodeSchema = ConditionNodeSchema; exports.DocumentNodeSchema = DocumentNodeSchema; exports.EndNodeSchema = EndNodeSchema; exports.WorkflowNodeSchema = WorkflowNodeSchema; exports.SlotModeSchema = SlotModeSchema; exports.WorkflowSlotSchema = WorkflowSlotSchema; exports.AuthMethodSchema = AuthMethodSchema; exports.ShareStatusSchema = ShareStatusSchema; exports.WorkflowShareSchema = WorkflowShareSchema; exports.CreateShareInputSchema = CreateShareInputSchema; exports.NodePositionSchema = NodePositionSchema; exports.ViewportSchema = ViewportSchema; exports.WorkflowLayoutSchema = WorkflowLayoutSchema; exports.ThemeColorsSchema = ThemeColorsSchema; exports.ThemeLogoSchema = ThemeLogoSchema; exports.WorkflowThemeSchema = WorkflowThemeSchema; exports.WorkflowConfigSchema = WorkflowConfigSchema; exports.WorkflowStatusSchema = WorkflowStatusSchema; exports.WorkflowDefinitionSchema = WorkflowDefinitionSchema; exports.isEmpty = isEmpty; exports.isNotEmpty = isNotEmpty; exports.toUndefinedIfEmpty = toUndefinedIfEmpty; exports.hasProperties = hasProperties; exports.EMPTY_VALUE_PLACEHOLDER = EMPTY_VALUE_PLACEHOLDER; exports.formatAttributeValue = formatAttributeValue; exports.DEFAULT_LABEL_FALLBACK = DEFAULT_LABEL_FALLBACK; exports.renderLabelExpression = renderLabelExpression; exports.isLabelExpression = isLabelExpression; exports.extractAttributeNames = extractAttributeNames; exports.enrichValuesForDisplay = enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = enrichValuesWithSelectLabels; exports.extractRelationIds = extractRelationIds; exports.computeLabelWithRelations = computeLabelWithRelations; exports.SchemaErrorCode = SchemaErrorCode; exports.SchemaError = SchemaError; exports.NotFoundError = NotFoundError; exports.ObjectNotFoundError = ObjectNotFoundError; exports.AttributeNotFoundError = AttributeNotFoundError; exports.RecordNotFoundError = RecordNotFoundError; exports.UserProfileNotFoundError = UserProfileNotFoundError; exports.FileNotFoundError = FileNotFoundError; exports.ValidationError = ValidationError; exports.ProtectedResourceError = ProtectedResourceError; exports.SyncError = SyncError; exports.NotSystemObjectError = NotSystemObjectError; exports.DuplicateError = DuplicateError; exports.isSchemaError = isSchemaError; exports.isNotFoundError = isNotFoundError; exports.isValidationError = isValidationError; exports.isProtectedResourceError = isProtectedResourceError; exports.ForbiddenError = ForbiddenError; exports.ProtectedRoleError = ProtectedRoleError; exports.RoleNotFoundError = RoleNotFoundError; exports.isForbiddenError = isForbiddenError; exports.ConcurrentModificationError = ConcurrentModificationError; exports.text = text; exports.textarea = textarea; exports.richtext = richtext; exports.number = number; exports.checkbox = checkbox; exports.date = date; exports.phone = phone; exports.currency = currency; exports.status = status; exports.select = select; exports.multiselect = multiselect; exports.location = location; exports.file = file; exports.user = user; exports.relation = relation; exports.rating = rating; exports.formula = formula; exports.rollup = rollup; exports.document = document; exports.ObjectBuilder = ObjectBuilder; exports.object = object; exports.GroupBuilder = GroupBuilder; exports.RelationGroupBuilder = RelationGroupBuilder; exports.TableTabConfig = TableTabConfig; exports.CustomTabConfig = CustomTabConfig; exports.RichtextTabConfig = RichtextTabConfig; exports.ActivityTabConfig = ActivityTabConfig; exports.FlowsTabConfig = FlowsTabConfig; exports.DocumentsTabConfig = DocumentsTabConfig; exports.TabBuilder = TabBuilder; exports.DetailViewBuilder = DetailViewBuilder; exports.ViewBuilder = ViewBuilder; exports.detailView = detailView; exports.view = view; exports.ListViewBuilder = ListViewBuilder; exports.ListViewTabConfigBuilder = ListViewTabConfigBuilder; exports.listView = listView; exports.group = group; exports.relationGroup = relationGroup; exports.WorkflowFormRowBuilder = WorkflowFormRowBuilder; exports.WorkflowFormBuilder = WorkflowFormBuilder; exports.WorkflowSimpleFormBuilder = WorkflowSimpleFormBuilder; exports.WorkflowConditionBuilder = WorkflowConditionBuilder; exports.WorkflowEndBuilder = WorkflowEndBuilder; exports.WorkflowStartBuilder = WorkflowStartBuilder; exports.WorkflowBuilder = WorkflowBuilder; exports.workflow = workflow; exports.registry = registry; exports.SYSTEM_TEMPLATE_IDS = SYSTEM_TEMPLATE_IDS; exports.FRENCH_ID_CARD = FRENCH_ID_CARD; exports.PASSPORT = PASSPORT; exports.DRIVING_LICENSE = DRIVING_LICENSE; exports.PROOF_OF_ADDRESS = PROOF_OF_ADDRESS; exports.SIGNABLE_CONTRACT = SIGNABLE_CONTRACT; exports.GENERIC_DOCUMENT = GENERIC_DOCUMENT; exports.SYSTEM_TEMPLATES = SYSTEM_TEMPLATES; exports.getSystemTemplate = getSystemTemplate; exports.isSystemTemplate = isSystemTemplate; exports.WorkflowJwtService = WorkflowJwtService; exports.hashOptions = hashOptions; exports.cacheKeys = cacheKeys; exports.cacheTtl = cacheTtl; exports.defaultTtl = defaultTtl; exports.NoopCacheAdapter = NoopCacheAdapter; exports.formatRecord = formatRecord; exports.formatRecords = formatRecords; exports.createDefaultState = createDefaultState; exports.SHORTCUT_TO_FILTER_OPERATOR = SHORTCUT_TO_FILTER_OPERATOR; exports.QueryNoResultError = QueryNoResultError; exports.QueryMultipleResultsError = QueryMultipleResultsError; exports.TenantContextError = TenantContextError; exports.FeatureFlagsContextError = FeatureFlagsContextError; exports.isFeatureEnabled = isFeatureEnabled; exports.getFeatureValue = getFeatureValue; exports.getFeatureFlags = getFeatureFlags; exports.tryGetFeatureValue = tryGetFeatureValue; exports.hasFeatureFlagsContext = hasFeatureFlagsContext; exports.runWithFeatureFlags = runWithFeatureFlags; exports.withFeatureFlags = withFeatureFlags; exports.getSchemaFromContext = getSchemaFromContext; exports.getSchemaByNameFromContext = getSchemaByNameFromContext; exports.hasSchemaContext = hasSchemaContext; exports.getSchemaContext = getSchemaContext; exports.addSchemaToContext = addSchemaToContext; exports.runWithSchemaContext = runWithSchemaContext; exports.runWithMergedSchemaContext = runWithMergedSchemaContext; exports.getContext = getContext2; exports.getTenantId = getTenantId; exports.getUserId = getUserId; exports.hasContext = hasContext; exports.runWithContext = runWithContext; exports.withTenantContext = withTenantContext; exports.QueryBuilder = QueryBuilder; exports.createQueryBuilder = createQueryBuilder; exports.evaluateCondition = evaluateCondition; exports.evaluate = evaluate; exports.evaluateWithTrace = evaluateWithTrace; exports.ExecutorRegistry = ExecutorRegistry; exports.success = success; exports.wait = wait; exports.complete = complete; exports.error = error; exports.ConditionExecutor = ConditionExecutor; exports.DocumentExecutor = DocumentExecutor; exports.EndExecutor = EndExecutor; exports.FormExecutor = FormExecutor; exports.StartExecutor = StartExecutor; exports.createDefaultExecutorRegistry = createDefaultExecutorRegistry; exports.getDefaultExecutorRegistry = getDefaultExecutorRegistry; exports.evaluateFormula = evaluateFormula; exports.evaluateFormulaWithResult = evaluateFormulaWithResult; exports.formatFormulaResult = formatFormulaResult; exports.evaluateFormulaAttribute = evaluateFormulaAttribute; exports.validateFormulaExpression = validateFormulaExpression; exports.extractFormulaVariables = extractFormulaVariables; exports.extractRelationReferences = extractRelationReferences; exports.extractRelationNames = extractRelationNames; exports.hasRelationReferences = hasRelationReferences; exports.flattenRelationsForEval = flattenRelationsForEval; exports.evaluateFormulaWithRelations = evaluateFormulaWithRelations; exports.evaluateFormulaAttributeWithRelations = evaluateFormulaAttributeWithRelations; exports.InvalidPathError = InvalidPathError; exports.MaxDepthExceededError = MaxDepthExceededError; exports.parsePath = parsePath; exports.validatePath = validatePath; exports.pathHasManyCardinality = pathHasManyCardinality; exports.getPathDepth = getPathDepth; exports.getTargetAttributeName = getTargetAttributeName; exports.getRelationPath = getRelationPath; exports.traversePath = traversePath; exports.resolveSingleValue = resolveSingleValue; exports.resolveMultiplePaths = resolveMultiplePaths; exports.NoopHookRegistry = NoopHookRegistry; exports.createMockAdapter = createMockAdapter; exports.PolicyRegistry = PolicyRegistry; exports.defaultPolicyRegistry = defaultPolicyRegistry; exports.SORTABLE_ATTRIBUTE_TYPES = SORTABLE_ATTRIBUTE_TYPES; exports.BaseService = BaseService; exports.BaseRepository = BaseRepository; exports.SchemaContextAwareRepository = SchemaContextAwareRepository; exports.buildAuditChanges = buildAuditChanges; exports.ObjectSchemaService = ObjectSchemaService; exports.AuditService = AuditService; exports.UserService = UserService; exports.applyDefaultValues = applyDefaultValues; exports.checkPermission = checkPermission; exports.getPolicy = getPolicy; exports.buildPolicyContext = buildPolicyContext; exports.checkRecordAccess = checkRecordAccess; exports.checkRecordModifyOrThrow = checkRecordModifyOrThrow; exports.checkRecordDeleteOrThrow = checkRecordDeleteOrThrow; exports.checkSharedObjectWriteAccess = checkSharedObjectWriteAccess; exports.computeLabel = computeLabel; exports.enrichWithFormulas = enrichWithFormulas; exports.enrichRecordsWithFormulas = enrichRecordsWithFormulas; exports.createContextForCreate = createContextForCreate; exports.createContextForUpdate = createContextForUpdate; exports.createContextForDelete = createContextForDelete; exports.createContextForRestore = createContextForRestore; exports.recalculateParentRollups = recalculateParentRollups; exports.RelationPropertiesService = RelationPropertiesService; exports.RecordQueryService = RecordQueryService; exports.RecordResolverService = RecordResolverService; exports.RelationService = RelationService; exports.RollupService = RollupService; exports.RecordService = RecordService; exports.FormulaResolverService = FormulaResolverService; exports.RollupScheduler = RollupScheduler; exports.DocumentRenderError = DocumentRenderError; exports.StorageDownloadNotSupportedError = StorageDownloadNotSupportedError; exports.DocumentRendererService = DocumentRendererService; exports.DocumentProcessingHook = DocumentProcessingHook; exports.GrantNotFoundError = GrantNotFoundError; exports.GrantExpiredError = GrantExpiredError; exports.GrantRevokedError = GrantRevokedError; exports.TokenRevokedError = TokenRevokedError; exports.WorkflowAccessGrantService = WorkflowAccessGrantService; exports.WorkflowInstanceService = WorkflowInstanceService; exports.InvitationNotFoundError = InvitationNotFoundError; exports.InvitationExpiredError = InvitationExpiredError; exports.InvitationAlreadyAcceptedError = InvitationAlreadyAcceptedError; exports.InvitationRevokedError = InvitationRevokedError; exports.WorkflowInvitationService = WorkflowInvitationService; exports.WorkflowRelationService = WorkflowRelationService; exports.WorkflowService = WorkflowService; exports.UserProfileService = UserProfileService; exports.DocumentGenerationTemplateNotFoundError = DocumentGenerationTemplateNotFoundError; exports.DocumentGenerationNotConfiguredError = DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = DocumentGenerationService; exports.DocumentTemplateService = DocumentTemplateService; exports.DocumentService = DocumentService; exports.DocumentProcessingService = DocumentProcessingService; exports.FileService = FileService; exports.GeocodingService = GeocodingService; exports.GlobalSearchService = GlobalSearchService; exports.PermissionService = PermissionService; exports.ViewService = ViewService; exports.seedRegistryViews = seedRegistryViews; exports.syncNativeViews = syncNativeViews; exports.verifyRegistryViewsSeeded = verifyRegistryViewsSeeded; exports.verifyNativeViewsSync = verifyNativeViewsSync; exports.getViewSeedPreview = getViewSeedPreview; exports.getViewSyncPreview = getViewSyncPreview; exports.syncNativeObjects = syncNativeObjects; exports.verifyNativeObjectsSync = verifyNativeObjectsSync; exports.getSyncPreview = getSyncPreview; exports.syncAll = syncAll;
|
|
19142
|
+
|
|
19143
|
+
|
|
19144
|
+
|
|
19145
|
+
|
|
19146
|
+
|
|
19147
|
+
|
|
19148
|
+
exports.IDENTITY_PROPERTIES = IDENTITY_PROPERTIES; exports.BEHAVIOR_PROPERTIES = BEHAVIOR_PROPERTIES; exports.PRESENTATION_PROPERTIES = PRESENTATION_PROPERTIES; exports.isIdentityProperty = isIdentityProperty; exports.isBehaviorProperty = isBehaviorProperty; exports.isPresentationProperty = isPresentationProperty; exports.RELATION_TARGET_ANY = RELATION_TARGET_ANY; exports.isUniversalRelation = isUniversalRelation; exports.isBilateralRelation = isBilateralRelation; exports.inferInverseCardinality = inferInverseCardinality; exports.NON_SORTABLE_TYPES = NON_SORTABLE_TYPES; exports.isAttributeSortable = isAttributeSortable; exports.RecordReferencedError = RecordReferencedError; exports.AttributeInUseError = AttributeInUseError; exports.ObjectReferencedError = ObjectReferencedError; exports.getErrorMessage = getErrorMessage; exports.isFlowFieldsRow = isFlowFieldsRow; exports.isLayoutRow = isLayoutRow; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isSystemFlow = isSystemFlow; exports.NoopGeocodingAdapter = NoopGeocodingAdapter; exports.SYSTEM_FIELD_NAMES = SYSTEM_FIELD_NAMES; exports.RESERVED_ATTRIBUTE_NAMES = RESERVED_ATTRIBUTE_NAMES; exports.PolicyViolationError = PolicyViolationError; exports.FORBIDDEN_PROPERTY_TYPES = FORBIDDEN_PROPERTY_TYPES; exports.SYSTEM_ATTRIBUTES = SYSTEM_ATTRIBUTES; exports.getSystemAttributeList = getSystemAttributeList; exports.isSystemAttribute = isSystemAttribute; exports.isSystemAttributeObject = isSystemAttributeObject; exports.isSimpleFormNode = isSimpleFormNode; exports.isAdvancedFormNode = isAdvancedFormNode; exports.isStartNode = isStartNode; exports.isFormNode = isFormNode; exports.isConditionNode = isConditionNode; exports.isDocumentNode = isDocumentNode; exports.isEndNode = isEndNode; exports.getNodeOutputs = getNodeOutputs; exports.isConditionRule = isConditionRule; exports.isConditionGroup = isConditionGroup; exports.eq = eq; exports.neq = neq; exports.and = and; exports.or = or; exports.inValues = inValues; exports.isWorkflowDefinition = isWorkflowDefinition; exports.isWorkflowPublished = isWorkflowPublished; exports.isSystemWorkflow = isSystemWorkflow; exports.isInstanceTerminal = isInstanceTerminal; exports.isInstanceWaiting = isInstanceWaiting; exports.canResumeInstance = canResumeInstance; exports.createStartTransition = createStartTransition; exports.isInvitationValid = isInvitationValid; exports.isInvitationAccepted = isInvitationAccepted; exports.isInvitationExpired = isInvitationExpired; exports.isGrantValid = isGrantValid; exports.isGrantRevoked = isGrantRevoked; exports.isTokenRevoked = isTokenRevoked; exports.isGrantExpired = isGrantExpired; exports.canAccessNode = canAccessNode; exports.createEmptyContext = createEmptyContext; exports.getContextValue = getContextValue; exports.setContextValue = setContextValue; exports.isFormFieldsRow = isFormFieldsRow; exports.DEFAULT_THEME = DEFAULT_THEME; exports.mergeWithDefaults = mergeWithDefaults; exports.generateCssVariables = generateCssVariables; exports.isInstanceEvent = isInstanceEvent; exports.isNodeEvent = isNodeEvent; exports.isInvitationOrGrantEvent = isInvitationOrGrantEvent; exports.ConditionOperatorSchema = ConditionOperatorSchema; exports.ConditionRuleSchema = ConditionRuleSchema; exports.ConditionGroupSchema = ConditionGroupSchema; exports.StartNodeSchema = StartNodeSchema; exports.FormFieldRefSchema = FormFieldRefSchema; exports.FlowRowFieldSchema = FlowRowFieldSchema; exports.FlowRowSchema = FlowRowSchema; exports.FormNodeSchema = FormNodeSchema; exports.ConditionNodeSchema = ConditionNodeSchema; exports.DocumentNodeSchema = DocumentNodeSchema; exports.EndNodeSchema = EndNodeSchema; exports.WorkflowNodeSchema = WorkflowNodeSchema; exports.SlotModeSchema = SlotModeSchema; exports.WorkflowSlotSchema = WorkflowSlotSchema; exports.AuthMethodSchema = AuthMethodSchema; exports.ShareStatusSchema = ShareStatusSchema; exports.WorkflowShareSchema = WorkflowShareSchema; exports.CreateShareInputSchema = CreateShareInputSchema; exports.NodePositionSchema = NodePositionSchema; exports.ViewportSchema = ViewportSchema; exports.WorkflowLayoutSchema = WorkflowLayoutSchema; exports.ThemeColorsSchema = ThemeColorsSchema; exports.ThemeLogoSchema = ThemeLogoSchema; exports.WorkflowThemeSchema = WorkflowThemeSchema; exports.WorkflowConfigSchema = WorkflowConfigSchema; exports.WorkflowStatusSchema = WorkflowStatusSchema; exports.WorkflowDefinitionSchema = WorkflowDefinitionSchema; exports.isEmpty = isEmpty; exports.isNotEmpty = isNotEmpty; exports.toUndefinedIfEmpty = toUndefinedIfEmpty; exports.hasProperties = hasProperties; exports.EMPTY_VALUE_PLACEHOLDER = EMPTY_VALUE_PLACEHOLDER; exports.formatAttributeValue = formatAttributeValue; exports.DEFAULT_LABEL_FALLBACK = DEFAULT_LABEL_FALLBACK; exports.renderLabelExpression = renderLabelExpression; exports.isLabelExpression = isLabelExpression; exports.extractAttributeNames = extractAttributeNames; exports.enrichValuesForDisplay = enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = enrichValuesWithSelectLabels; exports.extractRelationIds = extractRelationIds; exports.computeLabelWithRelations = computeLabelWithRelations; exports.SchemaErrorCode = SchemaErrorCode; exports.SchemaError = SchemaError; exports.NotFoundError = NotFoundError; exports.ObjectNotFoundError = ObjectNotFoundError; exports.AttributeNotFoundError = AttributeNotFoundError; exports.RecordNotFoundError = RecordNotFoundError; exports.UserProfileNotFoundError = UserProfileNotFoundError; exports.FileNotFoundError = FileNotFoundError; exports.ValidationError = ValidationError; exports.ProtectedResourceError = ProtectedResourceError; exports.SyncError = SyncError; exports.NotSystemObjectError = NotSystemObjectError; exports.DuplicateError = DuplicateError; exports.isSchemaError = isSchemaError; exports.isNotFoundError = isNotFoundError; exports.isValidationError = isValidationError; exports.isProtectedResourceError = isProtectedResourceError; exports.ForbiddenError = ForbiddenError; exports.ProtectedRoleError = ProtectedRoleError; exports.RoleNotFoundError = RoleNotFoundError; exports.isForbiddenError = isForbiddenError; exports.ConcurrentModificationError = ConcurrentModificationError; exports.text = text; exports.textarea = textarea; exports.richtext = richtext; exports.number = number; exports.checkbox = checkbox; exports.date = date; exports.phone = phone; exports.currency = currency; exports.status = status; exports.select = select; exports.multiselect = multiselect; exports.location = location; exports.file = file; exports.user = user; exports.relation = relation; exports.rating = rating; exports.formula = formula; exports.rollup = rollup; exports.document = document; exports.ObjectBuilder = ObjectBuilder; exports.object = object; exports.GroupBuilder = GroupBuilder; exports.RelationGroupBuilder = RelationGroupBuilder; exports.TableTabConfig = TableTabConfig; exports.CustomTabConfig = CustomTabConfig; exports.RichtextTabConfig = RichtextTabConfig; exports.ActivityTabConfig = ActivityTabConfig; exports.FlowsTabConfig = FlowsTabConfig; exports.DocumentsTabConfig = DocumentsTabConfig; exports.TabBuilder = TabBuilder; exports.DetailViewBuilder = DetailViewBuilder; exports.ViewBuilder = ViewBuilder; exports.detailView = detailView; exports.view = view; exports.ListViewBuilder = ListViewBuilder; exports.ListViewTabConfigBuilder = ListViewTabConfigBuilder; exports.listView = listView; exports.group = group; exports.relationGroup = relationGroup; exports.WorkflowFormRowBuilder = WorkflowFormRowBuilder; exports.WorkflowFormBuilder = WorkflowFormBuilder; exports.WorkflowSimpleFormBuilder = WorkflowSimpleFormBuilder; exports.WorkflowConditionBuilder = WorkflowConditionBuilder; exports.WorkflowEndBuilder = WorkflowEndBuilder; exports.WorkflowStartBuilder = WorkflowStartBuilder; exports.WorkflowBuilder = WorkflowBuilder; exports.workflow = workflow; exports.registry = registry; exports.SYSTEM_TEMPLATE_IDS = SYSTEM_TEMPLATE_IDS; exports.FRENCH_ID_CARD = FRENCH_ID_CARD; exports.PASSPORT = PASSPORT; exports.DRIVING_LICENSE = DRIVING_LICENSE; exports.PROOF_OF_ADDRESS = PROOF_OF_ADDRESS; exports.SIGNABLE_CONTRACT = SIGNABLE_CONTRACT; exports.GENERIC_DOCUMENT = GENERIC_DOCUMENT; exports.SYSTEM_TEMPLATES = SYSTEM_TEMPLATES; exports.getSystemTemplate = getSystemTemplate; exports.isSystemTemplate = isSystemTemplate; exports.WorkflowJwtService = WorkflowJwtService; exports.hashOptions = hashOptions; exports.cacheKeys = cacheKeys; exports.cacheTtl = cacheTtl; exports.defaultTtl = defaultTtl; exports.NoopCacheAdapter = NoopCacheAdapter; exports.formatRecord = formatRecord; exports.formatRecords = formatRecords; exports.createDefaultState = createDefaultState; exports.SHORTCUT_TO_FILTER_OPERATOR = SHORTCUT_TO_FILTER_OPERATOR; exports.QueryNoResultError = QueryNoResultError; exports.QueryMultipleResultsError = QueryMultipleResultsError; exports.TenantContextError = TenantContextError; exports.FeatureFlagsContextError = FeatureFlagsContextError; exports.isFeatureEnabled = isFeatureEnabled; exports.getFeatureValue = getFeatureValue; exports.getFeatureFlags = getFeatureFlags; exports.tryGetFeatureValue = tryGetFeatureValue; exports.hasFeatureFlagsContext = hasFeatureFlagsContext; exports.runWithFeatureFlags = runWithFeatureFlags; exports.withFeatureFlags = withFeatureFlags; exports.getSchemaFromContext = getSchemaFromContext; exports.getSchemaByNameFromContext = getSchemaByNameFromContext; exports.hasSchemaContext = hasSchemaContext; exports.getSchemaContext = getSchemaContext; exports.addSchemaToContext = addSchemaToContext; exports.runWithSchemaContext = runWithSchemaContext; exports.runWithMergedSchemaContext = runWithMergedSchemaContext; exports.getContext = getContext2; exports.getTenantId = getTenantId; exports.getUserId = getUserId; exports.hasContext = hasContext; exports.runWithContext = runWithContext; exports.withTenantContext = withTenantContext; exports.QueryBuilder = QueryBuilder; exports.createQueryBuilder = createQueryBuilder; exports.evaluateCondition = evaluateCondition; exports.evaluate = evaluate; exports.evaluateWithTrace = evaluateWithTrace; exports.ExecutorRegistry = ExecutorRegistry; exports.success = success; exports.wait = wait; exports.complete = complete; exports.error = error; exports.ConditionExecutor = ConditionExecutor; exports.DocumentExecutor = DocumentExecutor; exports.EndExecutor = EndExecutor; exports.FormExecutor = FormExecutor; exports.StartExecutor = StartExecutor; exports.createDefaultExecutorRegistry = createDefaultExecutorRegistry; exports.getDefaultExecutorRegistry = getDefaultExecutorRegistry; exports.evaluateFormula = evaluateFormula; exports.evaluateFormulaWithResult = evaluateFormulaWithResult; exports.formatFormulaResult = formatFormulaResult; exports.evaluateFormulaAttribute = evaluateFormulaAttribute; exports.validateFormulaExpression = validateFormulaExpression; exports.extractFormulaVariables = extractFormulaVariables; exports.extractRelationReferences = extractRelationReferences; exports.extractRelationNames = extractRelationNames; exports.hasRelationReferences = hasRelationReferences; exports.flattenRelationsForEval = flattenRelationsForEval; exports.evaluateFormulaWithRelations = evaluateFormulaWithRelations; exports.evaluateFormulaAttributeWithRelations = evaluateFormulaAttributeWithRelations; exports.InvalidPathError = InvalidPathError; exports.MaxDepthExceededError = MaxDepthExceededError; exports.parsePath = parsePath; exports.validatePath = validatePath; exports.pathHasManyCardinality = pathHasManyCardinality; exports.getPathDepth = getPathDepth; exports.getTargetAttributeName = getTargetAttributeName; exports.getRelationPath = getRelationPath; exports.traversePath = traversePath; exports.resolveSingleValue = resolveSingleValue; exports.resolveMultiplePaths = resolveMultiplePaths; exports.NoopHookRegistry = NoopHookRegistry; exports.createMockAdapter = createMockAdapter; exports.PolicyRegistry = PolicyRegistry; exports.defaultPolicyRegistry = defaultPolicyRegistry; exports.SORTABLE_ATTRIBUTE_TYPES = SORTABLE_ATTRIBUTE_TYPES; exports.BaseService = BaseService; exports.BaseRepository = BaseRepository; exports.SchemaContextAwareRepository = SchemaContextAwareRepository; exports.buildAuditChanges = buildAuditChanges; exports.ObjectSchemaService = ObjectSchemaService; exports.AuditService = AuditService; exports.UserService = UserService; exports.applyDefaultValues = applyDefaultValues; exports.checkPermission = checkPermission; exports.getPolicy = getPolicy; exports.buildPolicyContext = buildPolicyContext; exports.checkRecordAccess = checkRecordAccess; exports.checkRecordModifyOrThrow = checkRecordModifyOrThrow; exports.checkRecordDeleteOrThrow = checkRecordDeleteOrThrow; exports.checkSharedObjectWriteAccess = checkSharedObjectWriteAccess; exports.computeLabel = computeLabel; exports.enrichWithFormulas = enrichWithFormulas; exports.enrichRecordsWithFormulas = enrichRecordsWithFormulas; exports.createContextForCreate = createContextForCreate; exports.createContextForUpdate = createContextForUpdate; exports.createContextForDelete = createContextForDelete; exports.createContextForRestore = createContextForRestore; exports.recalculateParentRollups = recalculateParentRollups; exports.RelationPropertiesService = RelationPropertiesService; exports.RecordQueryService = RecordQueryService; exports.RecordResolverService = RecordResolverService; exports.RelationService = RelationService; exports.RollupService = RollupService; exports.RecordService = RecordService; exports.FormulaResolverService = FormulaResolverService; exports.RollupScheduler = RollupScheduler; exports.DocumentRenderError = DocumentRenderError; exports.StorageDownloadNotSupportedError = StorageDownloadNotSupportedError; exports.DocumentRendererService = DocumentRendererService; exports.DocumentProcessingHook = DocumentProcessingHook; exports.GrantNotFoundError = GrantNotFoundError; exports.GrantExpiredError = GrantExpiredError; exports.GrantRevokedError = GrantRevokedError; exports.TokenRevokedError = TokenRevokedError; exports.WorkflowAccessGrantService = WorkflowAccessGrantService; exports.WorkflowInstanceService = WorkflowInstanceService; exports.InvitationNotFoundError = InvitationNotFoundError; exports.InvitationExpiredError = InvitationExpiredError; exports.InvitationAlreadyAcceptedError = InvitationAlreadyAcceptedError; exports.InvitationRevokedError = InvitationRevokedError; exports.WorkflowInvitationService = WorkflowInvitationService; exports.WorkflowRelationService = WorkflowRelationService; exports.WorkflowService = WorkflowService; exports.UserProfileService = UserProfileService; exports.DocumentGenerationTemplateNotFoundError = DocumentGenerationTemplateNotFoundError; exports.DocumentGenerationNotConfiguredError = DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = DocumentGenerationService; exports.DocumentTemplateService = DocumentTemplateService; exports.DocumentService = DocumentService; exports.DocumentProcessingService = DocumentProcessingService; exports.FileService = FileService; exports.GeocodingService = GeocodingService; exports.GlobalSearchService = GlobalSearchService; exports.PermissionService = PermissionService; exports.ViewService = ViewService; exports.seedRegistryViews = seedRegistryViews; exports.syncNativeViews = syncNativeViews; exports.verifyRegistryViewsSeeded = verifyRegistryViewsSeeded; exports.verifyNativeViewsSync = verifyNativeViewsSync; exports.getViewSeedPreview = getViewSeedPreview; exports.getViewSyncPreview = getViewSyncPreview; exports.syncNativeObjects = syncNativeObjects; exports.verifyNativeObjectsSync = verifyNativeObjectsSync; exports.getSyncPreview = getSyncPreview; exports.syncAll = syncAll;
|