@stndrds/schema 0.1.0-alpha.60 → 0.1.0-alpha.61
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-RRCPZUSK.mjs → chunk-533TTNPT.mjs} +54 -52
- package/dist/{chunk-KN6UXXVU.js → chunk-W7A7AQUF.js} +55 -53
- package/dist/index.d.mts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +8 -6
- package/dist/index.mjs +3 -1
- package/dist/runtime.js +2 -2
- package/dist/runtime.mjs +1 -1
- package/package.json +2 -2
|
@@ -1885,6 +1885,41 @@ function evaluateWithTrace(condition, context) {
|
|
|
1885
1885
|
return evaluateCondition(condition, context, true);
|
|
1886
1886
|
}
|
|
1887
1887
|
|
|
1888
|
+
// src/types/errors.ts
|
|
1889
|
+
var RecordReferencedError = class extends Error {
|
|
1890
|
+
constructor(recordId, references) {
|
|
1891
|
+
const total = references.reduce((sum, r) => sum + r.count, 0);
|
|
1892
|
+
super(`Cannot delete record: referenced by ${total} record${total > 1 ? "s" : ""}`);
|
|
1893
|
+
this.recordId = recordId;
|
|
1894
|
+
this.references = references;
|
|
1895
|
+
this.code = "RECORD_REFERENCED";
|
|
1896
|
+
this.name = "RecordReferencedError";
|
|
1897
|
+
}
|
|
1898
|
+
};
|
|
1899
|
+
var AttributeInUseError = class extends Error {
|
|
1900
|
+
constructor(attributeName, usage) {
|
|
1901
|
+
super(`Cannot delete attribute "${attributeName}": used in ${usage}`);
|
|
1902
|
+
this.attributeName = attributeName;
|
|
1903
|
+
this.usage = usage;
|
|
1904
|
+
this.code = "ATTRIBUTE_IN_USE";
|
|
1905
|
+
this.name = "AttributeInUseError";
|
|
1906
|
+
}
|
|
1907
|
+
};
|
|
1908
|
+
var ObjectReferencedError = class extends Error {
|
|
1909
|
+
constructor(objectName, referencingObjects) {
|
|
1910
|
+
super(
|
|
1911
|
+
`Cannot delete object "${objectName}": target of relations in ${referencingObjects.join(", ")}`
|
|
1912
|
+
);
|
|
1913
|
+
this.objectName = objectName;
|
|
1914
|
+
this.referencingObjects = referencingObjects;
|
|
1915
|
+
this.code = "OBJECT_REFERENCED";
|
|
1916
|
+
this.name = "ObjectReferencedError";
|
|
1917
|
+
}
|
|
1918
|
+
};
|
|
1919
|
+
function getErrorMessage(error2) {
|
|
1920
|
+
return error2 instanceof Error ? error2.message : String(error2);
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1888
1923
|
// src/runtime/executors/types.ts
|
|
1889
1924
|
var ExecutorRegistry = class {
|
|
1890
1925
|
constructor() {
|
|
@@ -1927,7 +1962,7 @@ var ExecutorRegistry = class {
|
|
|
1927
1962
|
return {
|
|
1928
1963
|
status: "error",
|
|
1929
1964
|
code: "EXECUTOR_ERROR",
|
|
1930
|
-
message: error2
|
|
1965
|
+
message: getErrorMessage(error2),
|
|
1931
1966
|
retryable: true
|
|
1932
1967
|
};
|
|
1933
1968
|
}
|
|
@@ -2418,7 +2453,7 @@ function evaluateFormulaWithResult(expression, values) {
|
|
|
2418
2453
|
} catch (error2) {
|
|
2419
2454
|
return {
|
|
2420
2455
|
value: null,
|
|
2421
|
-
error: error2
|
|
2456
|
+
error: getErrorMessage(error2)
|
|
2422
2457
|
};
|
|
2423
2458
|
}
|
|
2424
2459
|
}
|
|
@@ -2458,7 +2493,7 @@ function validateFormulaExpression(expression) {
|
|
|
2458
2493
|
} catch (error2) {
|
|
2459
2494
|
return {
|
|
2460
2495
|
valid: false,
|
|
2461
|
-
error: error2
|
|
2496
|
+
error: getErrorMessage(error2)
|
|
2462
2497
|
};
|
|
2463
2498
|
}
|
|
2464
2499
|
}
|
|
@@ -4089,7 +4124,6 @@ function createMockObjectRecordsRepository(stores) {
|
|
|
4089
4124
|
}
|
|
4090
4125
|
|
|
4091
4126
|
// src/runtime/mock/mock-relation-attributes.ts
|
|
4092
|
-
import { randomUUID } from "crypto";
|
|
4093
4127
|
function createMockRelationAttributesRepository(stores) {
|
|
4094
4128
|
return {
|
|
4095
4129
|
async upsertBatch(items) {
|
|
@@ -4110,7 +4144,7 @@ function createMockRelationAttributesRepository(stores) {
|
|
|
4110
4144
|
results.push(existing);
|
|
4111
4145
|
} else {
|
|
4112
4146
|
const row = {
|
|
4113
|
-
id:
|
|
4147
|
+
id: generateId(),
|
|
4114
4148
|
tenantId: context.tenantId,
|
|
4115
4149
|
fromObject: item.fromObject,
|
|
4116
4150
|
fromId: item.fromId,
|
|
@@ -6956,7 +6990,6 @@ function object(config) {
|
|
|
6956
6990
|
}
|
|
6957
6991
|
|
|
6958
6992
|
// src/builders/view-builder.ts
|
|
6959
|
-
import { randomUUID as randomUUID2 } from "crypto";
|
|
6960
6993
|
import { z as z3 } from "zod";
|
|
6961
6994
|
var GroupBuilder = class {
|
|
6962
6995
|
constructor(id, label) {
|
|
@@ -7816,7 +7849,7 @@ var ListViewBuilder = class {
|
|
|
7816
7849
|
columns: this.data.columns,
|
|
7817
7850
|
columnSizing: this.data.columnSizing,
|
|
7818
7851
|
defaultFilters: this.data.defaultFilters ? {
|
|
7819
|
-
id:
|
|
7852
|
+
id: generateId(),
|
|
7820
7853
|
combinator: this.data.defaultFilters.combinator,
|
|
7821
7854
|
rules: this.data.defaultFilters.rules
|
|
7822
7855
|
} : void 0,
|
|
@@ -7827,7 +7860,7 @@ var ListViewBuilder = class {
|
|
|
7827
7860
|
label: tab.label,
|
|
7828
7861
|
icon: tab.icon,
|
|
7829
7862
|
filters: tab.filters ? {
|
|
7830
|
-
id:
|
|
7863
|
+
id: generateId(),
|
|
7831
7864
|
combinator: tab.filters.combinator,
|
|
7832
7865
|
rules: tab.filters.rules
|
|
7833
7866
|
} : void 0,
|
|
@@ -8484,38 +8517,6 @@ function isPresentationProperty(property) {
|
|
|
8484
8517
|
return PRESENTATION_PROPERTIES.includes(property);
|
|
8485
8518
|
}
|
|
8486
8519
|
|
|
8487
|
-
// src/types/errors.ts
|
|
8488
|
-
var RecordReferencedError = class extends Error {
|
|
8489
|
-
constructor(recordId, references) {
|
|
8490
|
-
const total = references.reduce((sum, r) => sum + r.count, 0);
|
|
8491
|
-
super(`Cannot delete record: referenced by ${total} record${total > 1 ? "s" : ""}`);
|
|
8492
|
-
this.recordId = recordId;
|
|
8493
|
-
this.references = references;
|
|
8494
|
-
this.code = "RECORD_REFERENCED";
|
|
8495
|
-
this.name = "RecordReferencedError";
|
|
8496
|
-
}
|
|
8497
|
-
};
|
|
8498
|
-
var AttributeInUseError = class extends Error {
|
|
8499
|
-
constructor(attributeName, usage) {
|
|
8500
|
-
super(`Cannot delete attribute "${attributeName}": used in ${usage}`);
|
|
8501
|
-
this.attributeName = attributeName;
|
|
8502
|
-
this.usage = usage;
|
|
8503
|
-
this.code = "ATTRIBUTE_IN_USE";
|
|
8504
|
-
this.name = "AttributeInUseError";
|
|
8505
|
-
}
|
|
8506
|
-
};
|
|
8507
|
-
var ObjectReferencedError = class extends Error {
|
|
8508
|
-
constructor(objectName, referencingObjects) {
|
|
8509
|
-
super(
|
|
8510
|
-
`Cannot delete object "${objectName}": target of relations in ${referencingObjects.join(", ")}`
|
|
8511
|
-
);
|
|
8512
|
-
this.objectName = objectName;
|
|
8513
|
-
this.referencingObjects = referencingObjects;
|
|
8514
|
-
this.code = "OBJECT_REFERENCED";
|
|
8515
|
-
this.name = "ObjectReferencedError";
|
|
8516
|
-
}
|
|
8517
|
-
};
|
|
8518
|
-
|
|
8519
8520
|
// src/types/system-attributes.ts
|
|
8520
8521
|
var SYSTEM_ATTRIBUTES = {
|
|
8521
8522
|
createdAt: {
|
|
@@ -12387,7 +12388,7 @@ var DocumentRendererService = class {
|
|
|
12387
12388
|
throw error2;
|
|
12388
12389
|
}
|
|
12389
12390
|
throw new DocumentRenderError(
|
|
12390
|
-
`Failed to render document: ${
|
|
12391
|
+
`Failed to render document: ${getErrorMessage(error2)}`,
|
|
12391
12392
|
template.id,
|
|
12392
12393
|
error2
|
|
12393
12394
|
);
|
|
@@ -12659,7 +12660,7 @@ var DocumentProcessingHook = class extends BaseService {
|
|
|
12659
12660
|
metadata: { ...metadata, status: "completed" }
|
|
12660
12661
|
};
|
|
12661
12662
|
} catch (error2) {
|
|
12662
|
-
const errorMessage =
|
|
12663
|
+
const errorMessage = getErrorMessage(error2);
|
|
12663
12664
|
updatedDocuments[nodeId] = {
|
|
12664
12665
|
...doc,
|
|
12665
12666
|
metadata: { ...metadata, status: "failed", error: errorMessage }
|
|
@@ -13126,7 +13127,7 @@ var WorkflowInstanceService = class extends BaseService {
|
|
|
13126
13127
|
status: "failed",
|
|
13127
13128
|
error: {
|
|
13128
13129
|
code: "UNEXPECTED_ERROR",
|
|
13129
|
-
message:
|
|
13130
|
+
message: getErrorMessage(error2),
|
|
13130
13131
|
nodeId: instance.currentNodeId,
|
|
13131
13132
|
timestamp: /* @__PURE__ */ new Date()
|
|
13132
13133
|
},
|
|
@@ -13172,7 +13173,7 @@ var WorkflowInstanceService = class extends BaseService {
|
|
|
13172
13173
|
status: "failed",
|
|
13173
13174
|
error: {
|
|
13174
13175
|
code: "UNEXPECTED_ERROR",
|
|
13175
|
-
message:
|
|
13176
|
+
message: getErrorMessage(error2),
|
|
13176
13177
|
nodeId: updatedInstance.currentNodeId,
|
|
13177
13178
|
timestamp: /* @__PURE__ */ new Date()
|
|
13178
13179
|
},
|
|
@@ -13613,7 +13614,7 @@ var WorkflowInstanceService = class extends BaseService {
|
|
|
13613
13614
|
const rolledBackSlots = await this.rollbackSlotOperations(completedOperations);
|
|
13614
13615
|
const rollbackInfo = rolledBackSlots.length > 0 ? ` Rolled back slots: [${rolledBackSlots.join(", ")}].` : "";
|
|
13615
13616
|
throw new SchemaError(
|
|
13616
|
-
`Failed to persist slot "${slot.id}" (${slot.objectName}): ${
|
|
13617
|
+
`Failed to persist slot "${slot.id}" (${slot.objectName}): ${getErrorMessage(error2)}.${rollbackInfo}`,
|
|
13617
13618
|
SchemaErrorCode.VALIDATION_FAILED
|
|
13618
13619
|
);
|
|
13619
13620
|
}
|
|
@@ -15652,7 +15653,7 @@ var DocumentProcessingService = class extends BaseService {
|
|
|
15652
15653
|
await this.documentService.recalculateStatus(job.documentId);
|
|
15653
15654
|
return completedJob;
|
|
15654
15655
|
} catch (error2) {
|
|
15655
|
-
const errorMessage = error2
|
|
15656
|
+
const errorMessage = getErrorMessage(error2);
|
|
15656
15657
|
const failedJob = await this.adapter.documentJobs.markFailed(jobId, errorMessage);
|
|
15657
15658
|
if (job.slotName) {
|
|
15658
15659
|
const slot = await this.adapter.documentSlots.findByDocumentAndSlot(
|
|
@@ -15747,7 +15748,7 @@ var DocumentProcessingService = class extends BaseService {
|
|
|
15747
15748
|
await this.documentService.updateStatus(job.documentId, "processing");
|
|
15748
15749
|
return updatedJob;
|
|
15749
15750
|
} catch (error2) {
|
|
15750
|
-
const errorMessage = error2
|
|
15751
|
+
const errorMessage = getErrorMessage(error2);
|
|
15751
15752
|
const failedJob = await this.adapter.documentJobs.markFailed(jobId, errorMessage);
|
|
15752
15753
|
await this.documentService.recalculateStatus(job.documentId);
|
|
15753
15754
|
return failedJob;
|
|
@@ -15916,7 +15917,7 @@ var DocumentProcessingService = class extends BaseService {
|
|
|
15916
15917
|
await this.documentService.recalculateStatus(job.documentId);
|
|
15917
15918
|
return completedJob;
|
|
15918
15919
|
} catch (error2) {
|
|
15919
|
-
const errorMessage = error2
|
|
15920
|
+
const errorMessage = getErrorMessage(error2);
|
|
15920
15921
|
const failedJob = await this.adapter.documentJobs.markFailed(jobId, errorMessage);
|
|
15921
15922
|
await this.documentService.recalculateStatus(job.documentId);
|
|
15922
15923
|
return failedJob;
|
|
@@ -17647,7 +17648,7 @@ function handleViewSyncError(result, view2, error2) {
|
|
|
17647
17648
|
result.errors.push({
|
|
17648
17649
|
viewName: view2.name,
|
|
17649
17650
|
objectName: view2.object,
|
|
17650
|
-
error:
|
|
17651
|
+
error: getErrorMessage(error2)
|
|
17651
17652
|
});
|
|
17652
17653
|
}
|
|
17653
17654
|
async function cleanupOrphanViews(tx, viewsByObjectAndType, result, options) {
|
|
@@ -17668,7 +17669,7 @@ function handleTransactionError(result, error2) {
|
|
|
17668
17669
|
result.errors.push({
|
|
17669
17670
|
viewName: "transaction",
|
|
17670
17671
|
objectName: "",
|
|
17671
|
-
error:
|
|
17672
|
+
error: getErrorMessage(error2)
|
|
17672
17673
|
});
|
|
17673
17674
|
}
|
|
17674
17675
|
function logSyncComplete(result, options) {
|
|
@@ -17739,7 +17740,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
|
|
|
17739
17740
|
result.success = false;
|
|
17740
17741
|
result.errors.push({
|
|
17741
17742
|
objectName: nativeObject.name,
|
|
17742
|
-
error:
|
|
17743
|
+
error: getErrorMessage(error2)
|
|
17743
17744
|
});
|
|
17744
17745
|
}
|
|
17745
17746
|
}
|
|
@@ -17748,7 +17749,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
|
|
|
17748
17749
|
result.success = false;
|
|
17749
17750
|
result.errors.push({
|
|
17750
17751
|
objectName: "transaction",
|
|
17751
|
-
error:
|
|
17752
|
+
error: getErrorMessage(error2)
|
|
17752
17753
|
});
|
|
17753
17754
|
}
|
|
17754
17755
|
if (options.verbose) {
|
|
@@ -17928,6 +17929,7 @@ export {
|
|
|
17928
17929
|
RecordReferencedError,
|
|
17929
17930
|
AttributeInUseError,
|
|
17930
17931
|
ObjectReferencedError,
|
|
17932
|
+
getErrorMessage,
|
|
17931
17933
|
NoopGeocodingAdapter,
|
|
17932
17934
|
SYSTEM_FIELD_NAMES,
|
|
17933
17935
|
RESERVED_ATTRIBUTE_NAMES,
|
|
@@ -1885,6 +1885,41 @@ function evaluateWithTrace(condition, context) {
|
|
|
1885
1885
|
return evaluateCondition(condition, context, true);
|
|
1886
1886
|
}
|
|
1887
1887
|
|
|
1888
|
+
// src/types/errors.ts
|
|
1889
|
+
var RecordReferencedError = class extends Error {
|
|
1890
|
+
constructor(recordId, references) {
|
|
1891
|
+
const total = references.reduce((sum, r) => sum + r.count, 0);
|
|
1892
|
+
super(`Cannot delete record: referenced by ${total} record${total > 1 ? "s" : ""}`);
|
|
1893
|
+
this.recordId = recordId;
|
|
1894
|
+
this.references = references;
|
|
1895
|
+
this.code = "RECORD_REFERENCED";
|
|
1896
|
+
this.name = "RecordReferencedError";
|
|
1897
|
+
}
|
|
1898
|
+
};
|
|
1899
|
+
var AttributeInUseError = class extends Error {
|
|
1900
|
+
constructor(attributeName, usage) {
|
|
1901
|
+
super(`Cannot delete attribute "${attributeName}": used in ${usage}`);
|
|
1902
|
+
this.attributeName = attributeName;
|
|
1903
|
+
this.usage = usage;
|
|
1904
|
+
this.code = "ATTRIBUTE_IN_USE";
|
|
1905
|
+
this.name = "AttributeInUseError";
|
|
1906
|
+
}
|
|
1907
|
+
};
|
|
1908
|
+
var ObjectReferencedError = class extends Error {
|
|
1909
|
+
constructor(objectName, referencingObjects) {
|
|
1910
|
+
super(
|
|
1911
|
+
`Cannot delete object "${objectName}": target of relations in ${referencingObjects.join(", ")}`
|
|
1912
|
+
);
|
|
1913
|
+
this.objectName = objectName;
|
|
1914
|
+
this.referencingObjects = referencingObjects;
|
|
1915
|
+
this.code = "OBJECT_REFERENCED";
|
|
1916
|
+
this.name = "ObjectReferencedError";
|
|
1917
|
+
}
|
|
1918
|
+
};
|
|
1919
|
+
function getErrorMessage(error2) {
|
|
1920
|
+
return error2 instanceof Error ? error2.message : String(error2);
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1888
1923
|
// src/runtime/executors/types.ts
|
|
1889
1924
|
var ExecutorRegistry = class {
|
|
1890
1925
|
constructor() {
|
|
@@ -1927,7 +1962,7 @@ var ExecutorRegistry = class {
|
|
|
1927
1962
|
return {
|
|
1928
1963
|
status: "error",
|
|
1929
1964
|
code: "EXECUTOR_ERROR",
|
|
1930
|
-
message: error2
|
|
1965
|
+
message: getErrorMessage(error2),
|
|
1931
1966
|
retryable: true
|
|
1932
1967
|
};
|
|
1933
1968
|
}
|
|
@@ -2418,7 +2453,7 @@ function evaluateFormulaWithResult(expression, values) {
|
|
|
2418
2453
|
} catch (error2) {
|
|
2419
2454
|
return {
|
|
2420
2455
|
value: null,
|
|
2421
|
-
error: error2
|
|
2456
|
+
error: getErrorMessage(error2)
|
|
2422
2457
|
};
|
|
2423
2458
|
}
|
|
2424
2459
|
}
|
|
@@ -2458,7 +2493,7 @@ function validateFormulaExpression(expression) {
|
|
|
2458
2493
|
} catch (error2) {
|
|
2459
2494
|
return {
|
|
2460
2495
|
valid: false,
|
|
2461
|
-
error: error2
|
|
2496
|
+
error: getErrorMessage(error2)
|
|
2462
2497
|
};
|
|
2463
2498
|
}
|
|
2464
2499
|
}
|
|
@@ -4089,7 +4124,6 @@ function createMockObjectRecordsRepository(stores) {
|
|
|
4089
4124
|
}
|
|
4090
4125
|
|
|
4091
4126
|
// src/runtime/mock/mock-relation-attributes.ts
|
|
4092
|
-
var _crypto = require('crypto');
|
|
4093
4127
|
function createMockRelationAttributesRepository(stores) {
|
|
4094
4128
|
return {
|
|
4095
4129
|
async upsertBatch(items) {
|
|
@@ -4110,7 +4144,7 @@ function createMockRelationAttributesRepository(stores) {
|
|
|
4110
4144
|
results.push(existing);
|
|
4111
4145
|
} else {
|
|
4112
4146
|
const row = {
|
|
4113
|
-
id:
|
|
4147
|
+
id: _chunkNEVERCM3js.generateId.call(void 0, ),
|
|
4114
4148
|
tenantId: context.tenantId,
|
|
4115
4149
|
fromObject: item.fromObject,
|
|
4116
4150
|
fromId: item.fromId,
|
|
@@ -6957,7 +6991,6 @@ function object(config) {
|
|
|
6957
6991
|
|
|
6958
6992
|
// src/builders/view-builder.ts
|
|
6959
6993
|
|
|
6960
|
-
|
|
6961
6994
|
var GroupBuilder = class {
|
|
6962
6995
|
constructor(id, label) {
|
|
6963
6996
|
this.data = { fields: [] };
|
|
@@ -7816,7 +7849,7 @@ var ListViewBuilder = class {
|
|
|
7816
7849
|
columns: this.data.columns,
|
|
7817
7850
|
columnSizing: this.data.columnSizing,
|
|
7818
7851
|
defaultFilters: this.data.defaultFilters ? {
|
|
7819
|
-
id:
|
|
7852
|
+
id: _chunkNEVERCM3js.generateId.call(void 0, ),
|
|
7820
7853
|
combinator: this.data.defaultFilters.combinator,
|
|
7821
7854
|
rules: this.data.defaultFilters.rules
|
|
7822
7855
|
} : void 0,
|
|
@@ -7827,7 +7860,7 @@ var ListViewBuilder = class {
|
|
|
7827
7860
|
label: tab.label,
|
|
7828
7861
|
icon: tab.icon,
|
|
7829
7862
|
filters: tab.filters ? {
|
|
7830
|
-
id:
|
|
7863
|
+
id: _chunkNEVERCM3js.generateId.call(void 0, ),
|
|
7831
7864
|
combinator: tab.filters.combinator,
|
|
7832
7865
|
rules: tab.filters.rules
|
|
7833
7866
|
} : void 0,
|
|
@@ -8484,38 +8517,6 @@ function isPresentationProperty(property) {
|
|
|
8484
8517
|
return PRESENTATION_PROPERTIES.includes(property);
|
|
8485
8518
|
}
|
|
8486
8519
|
|
|
8487
|
-
// src/types/errors.ts
|
|
8488
|
-
var RecordReferencedError = class extends Error {
|
|
8489
|
-
constructor(recordId, references) {
|
|
8490
|
-
const total = references.reduce((sum, r) => sum + r.count, 0);
|
|
8491
|
-
super(`Cannot delete record: referenced by ${total} record${total > 1 ? "s" : ""}`);
|
|
8492
|
-
this.recordId = recordId;
|
|
8493
|
-
this.references = references;
|
|
8494
|
-
this.code = "RECORD_REFERENCED";
|
|
8495
|
-
this.name = "RecordReferencedError";
|
|
8496
|
-
}
|
|
8497
|
-
};
|
|
8498
|
-
var AttributeInUseError = class extends Error {
|
|
8499
|
-
constructor(attributeName, usage) {
|
|
8500
|
-
super(`Cannot delete attribute "${attributeName}": used in ${usage}`);
|
|
8501
|
-
this.attributeName = attributeName;
|
|
8502
|
-
this.usage = usage;
|
|
8503
|
-
this.code = "ATTRIBUTE_IN_USE";
|
|
8504
|
-
this.name = "AttributeInUseError";
|
|
8505
|
-
}
|
|
8506
|
-
};
|
|
8507
|
-
var ObjectReferencedError = class extends Error {
|
|
8508
|
-
constructor(objectName, referencingObjects) {
|
|
8509
|
-
super(
|
|
8510
|
-
`Cannot delete object "${objectName}": target of relations in ${referencingObjects.join(", ")}`
|
|
8511
|
-
);
|
|
8512
|
-
this.objectName = objectName;
|
|
8513
|
-
this.referencingObjects = referencingObjects;
|
|
8514
|
-
this.code = "OBJECT_REFERENCED";
|
|
8515
|
-
this.name = "ObjectReferencedError";
|
|
8516
|
-
}
|
|
8517
|
-
};
|
|
8518
|
-
|
|
8519
8520
|
// src/types/system-attributes.ts
|
|
8520
8521
|
var SYSTEM_ATTRIBUTES = {
|
|
8521
8522
|
createdAt: {
|
|
@@ -12387,7 +12388,7 @@ var DocumentRendererService = class {
|
|
|
12387
12388
|
throw error2;
|
|
12388
12389
|
}
|
|
12389
12390
|
throw new DocumentRenderError(
|
|
12390
|
-
`Failed to render document: ${
|
|
12391
|
+
`Failed to render document: ${getErrorMessage(error2)}`,
|
|
12391
12392
|
template.id,
|
|
12392
12393
|
error2
|
|
12393
12394
|
);
|
|
@@ -12659,7 +12660,7 @@ var DocumentProcessingHook = class extends BaseService {
|
|
|
12659
12660
|
metadata: { ...metadata, status: "completed" }
|
|
12660
12661
|
};
|
|
12661
12662
|
} catch (error2) {
|
|
12662
|
-
const errorMessage =
|
|
12663
|
+
const errorMessage = getErrorMessage(error2);
|
|
12663
12664
|
updatedDocuments[nodeId] = {
|
|
12664
12665
|
...doc,
|
|
12665
12666
|
metadata: { ...metadata, status: "failed", error: errorMessage }
|
|
@@ -13126,7 +13127,7 @@ var WorkflowInstanceService = class extends BaseService {
|
|
|
13126
13127
|
status: "failed",
|
|
13127
13128
|
error: {
|
|
13128
13129
|
code: "UNEXPECTED_ERROR",
|
|
13129
|
-
message:
|
|
13130
|
+
message: getErrorMessage(error2),
|
|
13130
13131
|
nodeId: instance.currentNodeId,
|
|
13131
13132
|
timestamp: /* @__PURE__ */ new Date()
|
|
13132
13133
|
},
|
|
@@ -13172,7 +13173,7 @@ var WorkflowInstanceService = class extends BaseService {
|
|
|
13172
13173
|
status: "failed",
|
|
13173
13174
|
error: {
|
|
13174
13175
|
code: "UNEXPECTED_ERROR",
|
|
13175
|
-
message:
|
|
13176
|
+
message: getErrorMessage(error2),
|
|
13176
13177
|
nodeId: updatedInstance.currentNodeId,
|
|
13177
13178
|
timestamp: /* @__PURE__ */ new Date()
|
|
13178
13179
|
},
|
|
@@ -13613,7 +13614,7 @@ var WorkflowInstanceService = class extends BaseService {
|
|
|
13613
13614
|
const rolledBackSlots = await this.rollbackSlotOperations(completedOperations);
|
|
13614
13615
|
const rollbackInfo = rolledBackSlots.length > 0 ? ` Rolled back slots: [${rolledBackSlots.join(", ")}].` : "";
|
|
13615
13616
|
throw new SchemaError(
|
|
13616
|
-
`Failed to persist slot "${slot.id}" (${slot.objectName}): ${
|
|
13617
|
+
`Failed to persist slot "${slot.id}" (${slot.objectName}): ${getErrorMessage(error2)}.${rollbackInfo}`,
|
|
13617
13618
|
SchemaErrorCode.VALIDATION_FAILED
|
|
13618
13619
|
);
|
|
13619
13620
|
}
|
|
@@ -15652,7 +15653,7 @@ var DocumentProcessingService = class extends BaseService {
|
|
|
15652
15653
|
await this.documentService.recalculateStatus(job.documentId);
|
|
15653
15654
|
return completedJob;
|
|
15654
15655
|
} catch (error2) {
|
|
15655
|
-
const errorMessage = error2
|
|
15656
|
+
const errorMessage = getErrorMessage(error2);
|
|
15656
15657
|
const failedJob = await this.adapter.documentJobs.markFailed(jobId, errorMessage);
|
|
15657
15658
|
if (job.slotName) {
|
|
15658
15659
|
const slot = await this.adapter.documentSlots.findByDocumentAndSlot(
|
|
@@ -15747,7 +15748,7 @@ var DocumentProcessingService = class extends BaseService {
|
|
|
15747
15748
|
await this.documentService.updateStatus(job.documentId, "processing");
|
|
15748
15749
|
return updatedJob;
|
|
15749
15750
|
} catch (error2) {
|
|
15750
|
-
const errorMessage = error2
|
|
15751
|
+
const errorMessage = getErrorMessage(error2);
|
|
15751
15752
|
const failedJob = await this.adapter.documentJobs.markFailed(jobId, errorMessage);
|
|
15752
15753
|
await this.documentService.recalculateStatus(job.documentId);
|
|
15753
15754
|
return failedJob;
|
|
@@ -15916,7 +15917,7 @@ var DocumentProcessingService = class extends BaseService {
|
|
|
15916
15917
|
await this.documentService.recalculateStatus(job.documentId);
|
|
15917
15918
|
return completedJob;
|
|
15918
15919
|
} catch (error2) {
|
|
15919
|
-
const errorMessage = error2
|
|
15920
|
+
const errorMessage = getErrorMessage(error2);
|
|
15920
15921
|
const failedJob = await this.adapter.documentJobs.markFailed(jobId, errorMessage);
|
|
15921
15922
|
await this.documentService.recalculateStatus(job.documentId);
|
|
15922
15923
|
return failedJob;
|
|
@@ -17647,7 +17648,7 @@ function handleViewSyncError(result, view2, error2) {
|
|
|
17647
17648
|
result.errors.push({
|
|
17648
17649
|
viewName: view2.name,
|
|
17649
17650
|
objectName: view2.object,
|
|
17650
|
-
error:
|
|
17651
|
+
error: getErrorMessage(error2)
|
|
17651
17652
|
});
|
|
17652
17653
|
}
|
|
17653
17654
|
async function cleanupOrphanViews(tx, viewsByObjectAndType, result, options) {
|
|
@@ -17668,7 +17669,7 @@ function handleTransactionError(result, error2) {
|
|
|
17668
17669
|
result.errors.push({
|
|
17669
17670
|
viewName: "transaction",
|
|
17670
17671
|
objectName: "",
|
|
17671
|
-
error:
|
|
17672
|
+
error: getErrorMessage(error2)
|
|
17672
17673
|
});
|
|
17673
17674
|
}
|
|
17674
17675
|
function logSyncComplete(result, options) {
|
|
@@ -17739,7 +17740,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
|
|
|
17739
17740
|
result.success = false;
|
|
17740
17741
|
result.errors.push({
|
|
17741
17742
|
objectName: nativeObject.name,
|
|
17742
|
-
error:
|
|
17743
|
+
error: getErrorMessage(error2)
|
|
17743
17744
|
});
|
|
17744
17745
|
}
|
|
17745
17746
|
}
|
|
@@ -17748,7 +17749,7 @@ async function syncNativeObjects(adapter, nativeRegistry, options = {}) {
|
|
|
17748
17749
|
result.success = false;
|
|
17749
17750
|
result.errors.push({
|
|
17750
17751
|
objectName: "transaction",
|
|
17751
|
-
error:
|
|
17752
|
+
error: getErrorMessage(error2)
|
|
17752
17753
|
});
|
|
17753
17754
|
}
|
|
17754
17755
|
if (options.verbose) {
|
|
@@ -18261,4 +18262,5 @@ var NoopGeocodingAdapter = class {
|
|
|
18261
18262
|
|
|
18262
18263
|
|
|
18263
18264
|
|
|
18264
|
-
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.RecordReferencedError = RecordReferencedError; exports.AttributeInUseError = AttributeInUseError; exports.ObjectReferencedError = ObjectReferencedError; 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.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.PropertySchemaBuilder = PropertySchemaBuilder; exports.PropertyTypeBuilder = PropertyTypeBuilder; exports.BasePropertyBuilder = BasePropertyBuilder; exports.TextPropertyBuilder = TextPropertyBuilder; exports.TextareaPropertyBuilder = TextareaPropertyBuilder; exports.NumberPropertyBuilder = NumberPropertyBuilder; exports.CheckboxPropertyBuilder = CheckboxPropertyBuilder; exports.DatePropertyBuilder = DatePropertyBuilder; exports.PhonePropertyBuilder = PhonePropertyBuilder; exports.CurrencyPropertyBuilder = CurrencyPropertyBuilder; exports.StatusPropertyBuilder = StatusPropertyBuilder; exports.SelectPropertyBuilder = SelectPropertyBuilder; exports.MultiselectPropertyBuilder = MultiselectPropertyBuilder; exports.RatingPropertyBuilder = RatingPropertyBuilder; exports.LocationPropertyBuilder = LocationPropertyBuilder; exports.validatePropertyType = validatePropertyType; 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.DirectTableTabConfig = DirectTableTabConfig; exports.InverseTableTabConfig = InverseTableTabConfig; exports.CustomTabConfig = CustomTabConfig; exports.NotesTabConfig = NotesTabConfig; 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.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.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.createMockAdapter = createMockAdapter; exports.PolicyRegistry = PolicyRegistry; exports.defaultPolicyRegistry = defaultPolicyRegistry; exports.notesPolicy = notesPolicy; 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.RecordQueryService = RecordQueryService; exports.RecordResolverService = RecordResolverService; exports.RelationPropertiesService = RelationPropertiesService; 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;
|
|
18265
|
+
|
|
18266
|
+
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.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.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.PropertySchemaBuilder = PropertySchemaBuilder; exports.PropertyTypeBuilder = PropertyTypeBuilder; exports.BasePropertyBuilder = BasePropertyBuilder; exports.TextPropertyBuilder = TextPropertyBuilder; exports.TextareaPropertyBuilder = TextareaPropertyBuilder; exports.NumberPropertyBuilder = NumberPropertyBuilder; exports.CheckboxPropertyBuilder = CheckboxPropertyBuilder; exports.DatePropertyBuilder = DatePropertyBuilder; exports.PhonePropertyBuilder = PhonePropertyBuilder; exports.CurrencyPropertyBuilder = CurrencyPropertyBuilder; exports.StatusPropertyBuilder = StatusPropertyBuilder; exports.SelectPropertyBuilder = SelectPropertyBuilder; exports.MultiselectPropertyBuilder = MultiselectPropertyBuilder; exports.RatingPropertyBuilder = RatingPropertyBuilder; exports.LocationPropertyBuilder = LocationPropertyBuilder; exports.validatePropertyType = validatePropertyType; 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.DirectTableTabConfig = DirectTableTabConfig; exports.InverseTableTabConfig = InverseTableTabConfig; exports.CustomTabConfig = CustomTabConfig; exports.NotesTabConfig = NotesTabConfig; 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.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.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.createMockAdapter = createMockAdapter; exports.PolicyRegistry = PolicyRegistry; exports.defaultPolicyRegistry = defaultPolicyRegistry; exports.notesPolicy = notesPolicy; 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.RecordQueryService = RecordQueryService; exports.RecordResolverService = RecordResolverService; exports.RelationPropertiesService = RelationPropertiesService; 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;
|
package/dist/index.d.mts
CHANGED
|
@@ -218,6 +218,23 @@ declare class ObjectReferencedError extends Error {
|
|
|
218
218
|
readonly code: "OBJECT_REFERENCED";
|
|
219
219
|
constructor(objectName: string, referencingObjects: string[]);
|
|
220
220
|
}
|
|
221
|
+
/**
|
|
222
|
+
* Extracts a safe error message from an unknown error value.
|
|
223
|
+
*
|
|
224
|
+
* @param error - The error value (can be Error, string, unknown)
|
|
225
|
+
* @returns A string message suitable for logging or display
|
|
226
|
+
*
|
|
227
|
+
* @example
|
|
228
|
+
* ```typescript
|
|
229
|
+
* try {
|
|
230
|
+
* await riskyOperation();
|
|
231
|
+
* } catch (error) {
|
|
232
|
+
* const message = getErrorMessage(error);
|
|
233
|
+
* console.error(`Failed: ${message}`);
|
|
234
|
+
* }
|
|
235
|
+
* ```
|
|
236
|
+
*/
|
|
237
|
+
declare function getErrorMessage(error: unknown): string;
|
|
221
238
|
|
|
222
239
|
/**
|
|
223
240
|
* Base event interface with common properties
|
|
@@ -4173,4 +4190,4 @@ declare function getSystemTemplate(name: string): DocumentTemplate | undefined;
|
|
|
4173
4190
|
*/
|
|
4174
4191
|
declare function isSystemTemplate(name: string): boolean;
|
|
4175
4192
|
|
|
4176
|
-
export { ALL_SYSTEM_RESOURCES, ActivityTabConfig, type AgentContentPart, type AgentMessage, type AnyAttributeBuilder, Attribute, AttributeGroupField, AttributeInUseError, AttributeNotFoundError, AttributeType, type AttributeUsage, AuthMethodSchema, BEHAVIOR_PROPERTIES, BasePropertyBuilder, type BehaviorProperty, type BuilderConfig, type ChatFileAttachment, CheckboxAttribute, CheckboxPropertyBuilder, CheckboxPropertyDefinition, ConcurrentModificationError, ConditionGroup, ConditionGroupSchema, ConditionNodeSchema, ConditionOperatorSchema, ConditionRule, ConditionRuleSchema, CreateShareInputSchema, CurrencyAttribute, CurrencyPropertyBuilder, CurrencyPropertyDefinition, CustomTabConfig, DEFAULT_ROLES, DEFAULT_ROLE_DESCRIPTIONS, DEFAULT_ROLE_LABELS, DEFAULT_ROLE_PERMISSIONS, DRIVING_LICENSE, DateAttribute, DatePropertyBuilder, DatePropertyDefinition, type DefaultRoleName, type DefaultRolePermissionConfig, DetailViewBuilder, DetailViewDefinition, DetailViewLayout, DirectTableTab, DirectTableTabConfig, DocumentAttribute, DocumentNodeSchema, DocumentTemplate, DocumentsTabConfig, DuplicateError, EMPTY_VALUE_PLACEHOLDER, EndNodeSchema, type ExtractAttributeName, type ExtractAttributeRequired, FRENCH_ID_CARD, FeatureFlagDefinition, FeatureFlagsRepository, FeatureGate, Field, FileAttribute, FileNotFoundError, FilterState, FlagLevel, FlagRegistry, type FlagResolutionContext, FlagService, type FlagServiceOptions, FlagValueType, FlowRow, FlowRowFieldSchema, FlowRowSchema, FlowsTabConfig, ForbiddenError, FormFieldRefSchema, FormNodeSchema, FormulaAttribute, FormulaReturnType, GENERIC_DOCUMENT, type GenerateFallbackViewOptions, Group, GroupBuilder, IDENTITY_PROPERTIES, type IdentityProperty, InferAttributeValue, InstanceStatus, InverseTableTab, InverseTableTabConfig, ListViewBuilder, ListViewDefinition, ListViewTabConfigBuilder, LocationAttribute, LocationPropertyBuilder, LocationPropertyDefinition, MultiRelationAttribute, MultiselectAttribute, MultiselectPropertyBuilder, MultiselectPropertyDefinition, NOTES, NodePositionSchema, NotFoundError, NotSystemObjectError, NotesTabConfig, NumberAttribute, NumberPropertyBuilder, NumberPropertyDefinition, ObjectAction, ObjectBuilder, ObjectDefinition, ObjectNotFoundError, ObjectReferencedError, Option, PASSPORT, PRESENTATION_PROPERTIES, PROOF_OF_ADDRESS, PhoneAttribute, PhonePropertyBuilder, PhonePropertyDefinition, type PresentationProperty, PropertyDefinition, PropertySchema, PropertySchemaBuilder, PropertyTypeBuilder, ProtectedResourceError, ProtectedRoleError, RatingAttribute, RatingPropertyBuilder, RatingPropertyDefinition, RecordNotFoundError, type RecordReference, RecordReferencedError, RelationTarget, type ResetViewOptions, ResolvedFlag, type ResumeWorkflowApiInput, RichtextAttribute, RichtextFeature, RoleNotFoundError, RollupAttribute, RollupFunction, SIGNABLE_CONTRACT, SYSTEM_ATTRIBUTES, SYSTEM_RESOURCES, SYSTEM_RESOURCE_LABELS, SYSTEM_TEMPLATES, SYSTEM_TEMPLATE_IDS, SchemaError, SchemaErrorCode, SelectAttribute, SelectPropertyBuilder, SelectPropertyDefinition, ShareStatusSchema, SingleRelationAttribute, SlotMode, SlotModeSchema, SortRule, StartNodeSchema, type StartWorkflowApiInput, StaticFlagDefault, StatusAttribute, StatusGroup, StatusPropertyBuilder, StatusPropertyDefinition, SyncError, SystemAction, type SystemAttribute, type SystemAttributeName, SystemResource, Tab, TabBuilder, TableTab, TextAreaAttribute, TextAttribute, TextPropertyBuilder, TextPropertyDefinition, TextareaPropertyBuilder, TextareaPropertyDefinition, ThemeColorsSchema, ThemeLogoSchema, type TypedBuilderConfig, UserAttribute, UserProfileNotFoundError, type ValidatedConditionGroup, type ValidatedWorkflowDefinition, type ValidatedWorkflowNode, ValidationError, type ValidationErrorDetail, ViewBuilder, ViewDefinition, ViewType, ViewportSchema, WorkflowBuilder, WorkflowConditionBuilder, WorkflowConfig, WorkflowConfigSchema, WorkflowDefinition, WorkflowDefinitionSchema, WorkflowEndBuilder, type WorkflowEvent, type WorkflowEventType, WorkflowFormBuilder, WorkflowFormRowBuilder, type WorkflowGrantRevokedEvent, type WorkflowInstanceCancelledEvent, type WorkflowInstanceCompletedEvent, type WorkflowInstanceFailedEvent, type WorkflowInstanceStartedEvent, type WorkflowInvitationAcceptedEvent, type WorkflowInvitationCreatedEvent, type WorkflowInvitationExpiredEvent, WorkflowLayoutSchema, WorkflowNode, type WorkflowNodeCompletedEvent, type WorkflowNodeEnteredEvent, type WorkflowNodeFailedEvent, WorkflowNodeSchema, WorkflowShareSchema, WorkflowSimpleFormBuilder, WorkflowSlotSchema, WorkflowStartBuilder, WorkflowStatusSchema, WorkflowTheme, WorkflowThemeSchema, booleanFlag, checkbox, createFlagRegistry, createFlagService, currency, date, detailView, document, file, flagRegistry, formatAttributeValue, formula, generateDefaultDetailView, generateDefaultListView, generateFallbackView, getSystemAttributeList, getSystemTemplate, group, hasProperties, isBehaviorProperty, isDefaultRole, isEmpty, isForbiddenError, isIdentityProperty, isInstanceEvent, isInvitationOrGrantEvent, isNodeEvent, isNotEmpty, isNotFoundError, isPresentationProperty, isProtectedResourceError, isSchemaError, isSystemAttribute, isSystemAttributeObject, isSystemTemplate, isValidationError, isViewCustomized, jsonFlag, listView, location, multiselect, number, numberFlag, object, phone, rating, relation, resetViewToDefault, richtext, rollup, select, status, stringFlag, text, textarea, toUndefinedIfEmpty, user, validatePropertyType, view, workflow };
|
|
4193
|
+
export { ALL_SYSTEM_RESOURCES, ActivityTabConfig, type AgentContentPart, type AgentMessage, type AnyAttributeBuilder, Attribute, AttributeGroupField, AttributeInUseError, AttributeNotFoundError, AttributeType, type AttributeUsage, AuthMethodSchema, BEHAVIOR_PROPERTIES, BasePropertyBuilder, type BehaviorProperty, type BuilderConfig, type ChatFileAttachment, CheckboxAttribute, CheckboxPropertyBuilder, CheckboxPropertyDefinition, ConcurrentModificationError, ConditionGroup, ConditionGroupSchema, ConditionNodeSchema, ConditionOperatorSchema, ConditionRule, ConditionRuleSchema, CreateShareInputSchema, CurrencyAttribute, CurrencyPropertyBuilder, CurrencyPropertyDefinition, CustomTabConfig, DEFAULT_ROLES, DEFAULT_ROLE_DESCRIPTIONS, DEFAULT_ROLE_LABELS, DEFAULT_ROLE_PERMISSIONS, DRIVING_LICENSE, DateAttribute, DatePropertyBuilder, DatePropertyDefinition, type DefaultRoleName, type DefaultRolePermissionConfig, DetailViewBuilder, DetailViewDefinition, DetailViewLayout, DirectTableTab, DirectTableTabConfig, DocumentAttribute, DocumentNodeSchema, DocumentTemplate, DocumentsTabConfig, DuplicateError, EMPTY_VALUE_PLACEHOLDER, EndNodeSchema, type ExtractAttributeName, type ExtractAttributeRequired, FRENCH_ID_CARD, FeatureFlagDefinition, FeatureFlagsRepository, FeatureGate, Field, FileAttribute, FileNotFoundError, FilterState, FlagLevel, FlagRegistry, type FlagResolutionContext, FlagService, type FlagServiceOptions, FlagValueType, FlowRow, FlowRowFieldSchema, FlowRowSchema, FlowsTabConfig, ForbiddenError, FormFieldRefSchema, FormNodeSchema, FormulaAttribute, FormulaReturnType, GENERIC_DOCUMENT, type GenerateFallbackViewOptions, Group, GroupBuilder, IDENTITY_PROPERTIES, type IdentityProperty, InferAttributeValue, InstanceStatus, InverseTableTab, InverseTableTabConfig, ListViewBuilder, ListViewDefinition, ListViewTabConfigBuilder, LocationAttribute, LocationPropertyBuilder, LocationPropertyDefinition, MultiRelationAttribute, MultiselectAttribute, MultiselectPropertyBuilder, MultiselectPropertyDefinition, NOTES, NodePositionSchema, NotFoundError, NotSystemObjectError, NotesTabConfig, NumberAttribute, NumberPropertyBuilder, NumberPropertyDefinition, ObjectAction, ObjectBuilder, ObjectDefinition, ObjectNotFoundError, ObjectReferencedError, Option, PASSPORT, PRESENTATION_PROPERTIES, PROOF_OF_ADDRESS, PhoneAttribute, PhonePropertyBuilder, PhonePropertyDefinition, type PresentationProperty, PropertyDefinition, PropertySchema, PropertySchemaBuilder, PropertyTypeBuilder, ProtectedResourceError, ProtectedRoleError, RatingAttribute, RatingPropertyBuilder, RatingPropertyDefinition, RecordNotFoundError, type RecordReference, RecordReferencedError, RelationTarget, type ResetViewOptions, ResolvedFlag, type ResumeWorkflowApiInput, RichtextAttribute, RichtextFeature, RoleNotFoundError, RollupAttribute, RollupFunction, SIGNABLE_CONTRACT, SYSTEM_ATTRIBUTES, SYSTEM_RESOURCES, SYSTEM_RESOURCE_LABELS, SYSTEM_TEMPLATES, SYSTEM_TEMPLATE_IDS, SchemaError, SchemaErrorCode, SelectAttribute, SelectPropertyBuilder, SelectPropertyDefinition, ShareStatusSchema, SingleRelationAttribute, SlotMode, SlotModeSchema, SortRule, StartNodeSchema, type StartWorkflowApiInput, StaticFlagDefault, StatusAttribute, StatusGroup, StatusPropertyBuilder, StatusPropertyDefinition, SyncError, SystemAction, type SystemAttribute, type SystemAttributeName, SystemResource, Tab, TabBuilder, TableTab, TextAreaAttribute, TextAttribute, TextPropertyBuilder, TextPropertyDefinition, TextareaPropertyBuilder, TextareaPropertyDefinition, ThemeColorsSchema, ThemeLogoSchema, type TypedBuilderConfig, UserAttribute, UserProfileNotFoundError, type ValidatedConditionGroup, type ValidatedWorkflowDefinition, type ValidatedWorkflowNode, ValidationError, type ValidationErrorDetail, ViewBuilder, ViewDefinition, ViewType, ViewportSchema, WorkflowBuilder, WorkflowConditionBuilder, WorkflowConfig, WorkflowConfigSchema, WorkflowDefinition, WorkflowDefinitionSchema, WorkflowEndBuilder, type WorkflowEvent, type WorkflowEventType, WorkflowFormBuilder, WorkflowFormRowBuilder, type WorkflowGrantRevokedEvent, type WorkflowInstanceCancelledEvent, type WorkflowInstanceCompletedEvent, type WorkflowInstanceFailedEvent, type WorkflowInstanceStartedEvent, type WorkflowInvitationAcceptedEvent, type WorkflowInvitationCreatedEvent, type WorkflowInvitationExpiredEvent, WorkflowLayoutSchema, WorkflowNode, type WorkflowNodeCompletedEvent, type WorkflowNodeEnteredEvent, type WorkflowNodeFailedEvent, WorkflowNodeSchema, WorkflowShareSchema, WorkflowSimpleFormBuilder, WorkflowSlotSchema, WorkflowStartBuilder, WorkflowStatusSchema, WorkflowTheme, WorkflowThemeSchema, booleanFlag, checkbox, createFlagRegistry, createFlagService, currency, date, detailView, document, file, flagRegistry, formatAttributeValue, formula, generateDefaultDetailView, generateDefaultListView, generateFallbackView, getErrorMessage, getSystemAttributeList, getSystemTemplate, group, hasProperties, isBehaviorProperty, isDefaultRole, isEmpty, isForbiddenError, isIdentityProperty, isInstanceEvent, isInvitationOrGrantEvent, isNodeEvent, isNotEmpty, isNotFoundError, isPresentationProperty, isProtectedResourceError, isSchemaError, isSystemAttribute, isSystemAttributeObject, isSystemTemplate, isValidationError, isViewCustomized, jsonFlag, listView, location, multiselect, number, numberFlag, object, phone, rating, relation, resetViewToDefault, richtext, rollup, select, status, stringFlag, text, textarea, toUndefinedIfEmpty, user, validatePropertyType, view, workflow };
|
package/dist/index.d.ts
CHANGED
|
@@ -218,6 +218,23 @@ declare class ObjectReferencedError extends Error {
|
|
|
218
218
|
readonly code: "OBJECT_REFERENCED";
|
|
219
219
|
constructor(objectName: string, referencingObjects: string[]);
|
|
220
220
|
}
|
|
221
|
+
/**
|
|
222
|
+
* Extracts a safe error message from an unknown error value.
|
|
223
|
+
*
|
|
224
|
+
* @param error - The error value (can be Error, string, unknown)
|
|
225
|
+
* @returns A string message suitable for logging or display
|
|
226
|
+
*
|
|
227
|
+
* @example
|
|
228
|
+
* ```typescript
|
|
229
|
+
* try {
|
|
230
|
+
* await riskyOperation();
|
|
231
|
+
* } catch (error) {
|
|
232
|
+
* const message = getErrorMessage(error);
|
|
233
|
+
* console.error(`Failed: ${message}`);
|
|
234
|
+
* }
|
|
235
|
+
* ```
|
|
236
|
+
*/
|
|
237
|
+
declare function getErrorMessage(error: unknown): string;
|
|
221
238
|
|
|
222
239
|
/**
|
|
223
240
|
* Base event interface with common properties
|
|
@@ -4173,4 +4190,4 @@ declare function getSystemTemplate(name: string): DocumentTemplate | undefined;
|
|
|
4173
4190
|
*/
|
|
4174
4191
|
declare function isSystemTemplate(name: string): boolean;
|
|
4175
4192
|
|
|
4176
|
-
export { ALL_SYSTEM_RESOURCES, ActivityTabConfig, type AgentContentPart, type AgentMessage, type AnyAttributeBuilder, Attribute, AttributeGroupField, AttributeInUseError, AttributeNotFoundError, AttributeType, type AttributeUsage, AuthMethodSchema, BEHAVIOR_PROPERTIES, BasePropertyBuilder, type BehaviorProperty, type BuilderConfig, type ChatFileAttachment, CheckboxAttribute, CheckboxPropertyBuilder, CheckboxPropertyDefinition, ConcurrentModificationError, ConditionGroup, ConditionGroupSchema, ConditionNodeSchema, ConditionOperatorSchema, ConditionRule, ConditionRuleSchema, CreateShareInputSchema, CurrencyAttribute, CurrencyPropertyBuilder, CurrencyPropertyDefinition, CustomTabConfig, DEFAULT_ROLES, DEFAULT_ROLE_DESCRIPTIONS, DEFAULT_ROLE_LABELS, DEFAULT_ROLE_PERMISSIONS, DRIVING_LICENSE, DateAttribute, DatePropertyBuilder, DatePropertyDefinition, type DefaultRoleName, type DefaultRolePermissionConfig, DetailViewBuilder, DetailViewDefinition, DetailViewLayout, DirectTableTab, DirectTableTabConfig, DocumentAttribute, DocumentNodeSchema, DocumentTemplate, DocumentsTabConfig, DuplicateError, EMPTY_VALUE_PLACEHOLDER, EndNodeSchema, type ExtractAttributeName, type ExtractAttributeRequired, FRENCH_ID_CARD, FeatureFlagDefinition, FeatureFlagsRepository, FeatureGate, Field, FileAttribute, FileNotFoundError, FilterState, FlagLevel, FlagRegistry, type FlagResolutionContext, FlagService, type FlagServiceOptions, FlagValueType, FlowRow, FlowRowFieldSchema, FlowRowSchema, FlowsTabConfig, ForbiddenError, FormFieldRefSchema, FormNodeSchema, FormulaAttribute, FormulaReturnType, GENERIC_DOCUMENT, type GenerateFallbackViewOptions, Group, GroupBuilder, IDENTITY_PROPERTIES, type IdentityProperty, InferAttributeValue, InstanceStatus, InverseTableTab, InverseTableTabConfig, ListViewBuilder, ListViewDefinition, ListViewTabConfigBuilder, LocationAttribute, LocationPropertyBuilder, LocationPropertyDefinition, MultiRelationAttribute, MultiselectAttribute, MultiselectPropertyBuilder, MultiselectPropertyDefinition, NOTES, NodePositionSchema, NotFoundError, NotSystemObjectError, NotesTabConfig, NumberAttribute, NumberPropertyBuilder, NumberPropertyDefinition, ObjectAction, ObjectBuilder, ObjectDefinition, ObjectNotFoundError, ObjectReferencedError, Option, PASSPORT, PRESENTATION_PROPERTIES, PROOF_OF_ADDRESS, PhoneAttribute, PhonePropertyBuilder, PhonePropertyDefinition, type PresentationProperty, PropertyDefinition, PropertySchema, PropertySchemaBuilder, PropertyTypeBuilder, ProtectedResourceError, ProtectedRoleError, RatingAttribute, RatingPropertyBuilder, RatingPropertyDefinition, RecordNotFoundError, type RecordReference, RecordReferencedError, RelationTarget, type ResetViewOptions, ResolvedFlag, type ResumeWorkflowApiInput, RichtextAttribute, RichtextFeature, RoleNotFoundError, RollupAttribute, RollupFunction, SIGNABLE_CONTRACT, SYSTEM_ATTRIBUTES, SYSTEM_RESOURCES, SYSTEM_RESOURCE_LABELS, SYSTEM_TEMPLATES, SYSTEM_TEMPLATE_IDS, SchemaError, SchemaErrorCode, SelectAttribute, SelectPropertyBuilder, SelectPropertyDefinition, ShareStatusSchema, SingleRelationAttribute, SlotMode, SlotModeSchema, SortRule, StartNodeSchema, type StartWorkflowApiInput, StaticFlagDefault, StatusAttribute, StatusGroup, StatusPropertyBuilder, StatusPropertyDefinition, SyncError, SystemAction, type SystemAttribute, type SystemAttributeName, SystemResource, Tab, TabBuilder, TableTab, TextAreaAttribute, TextAttribute, TextPropertyBuilder, TextPropertyDefinition, TextareaPropertyBuilder, TextareaPropertyDefinition, ThemeColorsSchema, ThemeLogoSchema, type TypedBuilderConfig, UserAttribute, UserProfileNotFoundError, type ValidatedConditionGroup, type ValidatedWorkflowDefinition, type ValidatedWorkflowNode, ValidationError, type ValidationErrorDetail, ViewBuilder, ViewDefinition, ViewType, ViewportSchema, WorkflowBuilder, WorkflowConditionBuilder, WorkflowConfig, WorkflowConfigSchema, WorkflowDefinition, WorkflowDefinitionSchema, WorkflowEndBuilder, type WorkflowEvent, type WorkflowEventType, WorkflowFormBuilder, WorkflowFormRowBuilder, type WorkflowGrantRevokedEvent, type WorkflowInstanceCancelledEvent, type WorkflowInstanceCompletedEvent, type WorkflowInstanceFailedEvent, type WorkflowInstanceStartedEvent, type WorkflowInvitationAcceptedEvent, type WorkflowInvitationCreatedEvent, type WorkflowInvitationExpiredEvent, WorkflowLayoutSchema, WorkflowNode, type WorkflowNodeCompletedEvent, type WorkflowNodeEnteredEvent, type WorkflowNodeFailedEvent, WorkflowNodeSchema, WorkflowShareSchema, WorkflowSimpleFormBuilder, WorkflowSlotSchema, WorkflowStartBuilder, WorkflowStatusSchema, WorkflowTheme, WorkflowThemeSchema, booleanFlag, checkbox, createFlagRegistry, createFlagService, currency, date, detailView, document, file, flagRegistry, formatAttributeValue, formula, generateDefaultDetailView, generateDefaultListView, generateFallbackView, getSystemAttributeList, getSystemTemplate, group, hasProperties, isBehaviorProperty, isDefaultRole, isEmpty, isForbiddenError, isIdentityProperty, isInstanceEvent, isInvitationOrGrantEvent, isNodeEvent, isNotEmpty, isNotFoundError, isPresentationProperty, isProtectedResourceError, isSchemaError, isSystemAttribute, isSystemAttributeObject, isSystemTemplate, isValidationError, isViewCustomized, jsonFlag, listView, location, multiselect, number, numberFlag, object, phone, rating, relation, resetViewToDefault, richtext, rollup, select, status, stringFlag, text, textarea, toUndefinedIfEmpty, user, validatePropertyType, view, workflow };
|
|
4193
|
+
export { ALL_SYSTEM_RESOURCES, ActivityTabConfig, type AgentContentPart, type AgentMessage, type AnyAttributeBuilder, Attribute, AttributeGroupField, AttributeInUseError, AttributeNotFoundError, AttributeType, type AttributeUsage, AuthMethodSchema, BEHAVIOR_PROPERTIES, BasePropertyBuilder, type BehaviorProperty, type BuilderConfig, type ChatFileAttachment, CheckboxAttribute, CheckboxPropertyBuilder, CheckboxPropertyDefinition, ConcurrentModificationError, ConditionGroup, ConditionGroupSchema, ConditionNodeSchema, ConditionOperatorSchema, ConditionRule, ConditionRuleSchema, CreateShareInputSchema, CurrencyAttribute, CurrencyPropertyBuilder, CurrencyPropertyDefinition, CustomTabConfig, DEFAULT_ROLES, DEFAULT_ROLE_DESCRIPTIONS, DEFAULT_ROLE_LABELS, DEFAULT_ROLE_PERMISSIONS, DRIVING_LICENSE, DateAttribute, DatePropertyBuilder, DatePropertyDefinition, type DefaultRoleName, type DefaultRolePermissionConfig, DetailViewBuilder, DetailViewDefinition, DetailViewLayout, DirectTableTab, DirectTableTabConfig, DocumentAttribute, DocumentNodeSchema, DocumentTemplate, DocumentsTabConfig, DuplicateError, EMPTY_VALUE_PLACEHOLDER, EndNodeSchema, type ExtractAttributeName, type ExtractAttributeRequired, FRENCH_ID_CARD, FeatureFlagDefinition, FeatureFlagsRepository, FeatureGate, Field, FileAttribute, FileNotFoundError, FilterState, FlagLevel, FlagRegistry, type FlagResolutionContext, FlagService, type FlagServiceOptions, FlagValueType, FlowRow, FlowRowFieldSchema, FlowRowSchema, FlowsTabConfig, ForbiddenError, FormFieldRefSchema, FormNodeSchema, FormulaAttribute, FormulaReturnType, GENERIC_DOCUMENT, type GenerateFallbackViewOptions, Group, GroupBuilder, IDENTITY_PROPERTIES, type IdentityProperty, InferAttributeValue, InstanceStatus, InverseTableTab, InverseTableTabConfig, ListViewBuilder, ListViewDefinition, ListViewTabConfigBuilder, LocationAttribute, LocationPropertyBuilder, LocationPropertyDefinition, MultiRelationAttribute, MultiselectAttribute, MultiselectPropertyBuilder, MultiselectPropertyDefinition, NOTES, NodePositionSchema, NotFoundError, NotSystemObjectError, NotesTabConfig, NumberAttribute, NumberPropertyBuilder, NumberPropertyDefinition, ObjectAction, ObjectBuilder, ObjectDefinition, ObjectNotFoundError, ObjectReferencedError, Option, PASSPORT, PRESENTATION_PROPERTIES, PROOF_OF_ADDRESS, PhoneAttribute, PhonePropertyBuilder, PhonePropertyDefinition, type PresentationProperty, PropertyDefinition, PropertySchema, PropertySchemaBuilder, PropertyTypeBuilder, ProtectedResourceError, ProtectedRoleError, RatingAttribute, RatingPropertyBuilder, RatingPropertyDefinition, RecordNotFoundError, type RecordReference, RecordReferencedError, RelationTarget, type ResetViewOptions, ResolvedFlag, type ResumeWorkflowApiInput, RichtextAttribute, RichtextFeature, RoleNotFoundError, RollupAttribute, RollupFunction, SIGNABLE_CONTRACT, SYSTEM_ATTRIBUTES, SYSTEM_RESOURCES, SYSTEM_RESOURCE_LABELS, SYSTEM_TEMPLATES, SYSTEM_TEMPLATE_IDS, SchemaError, SchemaErrorCode, SelectAttribute, SelectPropertyBuilder, SelectPropertyDefinition, ShareStatusSchema, SingleRelationAttribute, SlotMode, SlotModeSchema, SortRule, StartNodeSchema, type StartWorkflowApiInput, StaticFlagDefault, StatusAttribute, StatusGroup, StatusPropertyBuilder, StatusPropertyDefinition, SyncError, SystemAction, type SystemAttribute, type SystemAttributeName, SystemResource, Tab, TabBuilder, TableTab, TextAreaAttribute, TextAttribute, TextPropertyBuilder, TextPropertyDefinition, TextareaPropertyBuilder, TextareaPropertyDefinition, ThemeColorsSchema, ThemeLogoSchema, type TypedBuilderConfig, UserAttribute, UserProfileNotFoundError, type ValidatedConditionGroup, type ValidatedWorkflowDefinition, type ValidatedWorkflowNode, ValidationError, type ValidationErrorDetail, ViewBuilder, ViewDefinition, ViewType, ViewportSchema, WorkflowBuilder, WorkflowConditionBuilder, WorkflowConfig, WorkflowConfigSchema, WorkflowDefinition, WorkflowDefinitionSchema, WorkflowEndBuilder, type WorkflowEvent, type WorkflowEventType, WorkflowFormBuilder, WorkflowFormRowBuilder, type WorkflowGrantRevokedEvent, type WorkflowInstanceCancelledEvent, type WorkflowInstanceCompletedEvent, type WorkflowInstanceFailedEvent, type WorkflowInstanceStartedEvent, type WorkflowInvitationAcceptedEvent, type WorkflowInvitationCreatedEvent, type WorkflowInvitationExpiredEvent, WorkflowLayoutSchema, WorkflowNode, type WorkflowNodeCompletedEvent, type WorkflowNodeEnteredEvent, type WorkflowNodeFailedEvent, WorkflowNodeSchema, WorkflowShareSchema, WorkflowSimpleFormBuilder, WorkflowSlotSchema, WorkflowStartBuilder, WorkflowStatusSchema, WorkflowTheme, WorkflowThemeSchema, booleanFlag, checkbox, createFlagRegistry, createFlagService, currency, date, detailView, document, file, flagRegistry, formatAttributeValue, formula, generateDefaultDetailView, generateDefaultListView, generateFallbackView, getErrorMessage, getSystemAttributeList, getSystemTemplate, group, hasProperties, isBehaviorProperty, isDefaultRole, isEmpty, isForbiddenError, isIdentityProperty, isInstanceEvent, isInvitationOrGrantEvent, isNodeEvent, isNotEmpty, isNotFoundError, isPresentationProperty, isProtectedResourceError, isSchemaError, isSystemAttribute, isSystemAttributeObject, isSystemTemplate, isValidationError, isViewCustomized, jsonFlag, listView, location, multiselect, number, numberFlag, object, phone, rating, relation, resetViewToDefault, richtext, rollup, select, status, stringFlag, text, textarea, toUndefinedIfEmpty, user, validatePropertyType, view, workflow };
|
package/dist/index.js
CHANGED
|
@@ -343,7 +343,8 @@
|
|
|
343
343
|
|
|
344
344
|
|
|
345
345
|
|
|
346
|
-
|
|
346
|
+
|
|
347
|
+
var _chunkW7A7AQUFjs = require('./chunk-W7A7AQUF.js');
|
|
347
348
|
|
|
348
349
|
|
|
349
350
|
|
|
@@ -1074,13 +1075,13 @@ function createFlagService(options) {
|
|
|
1074
1075
|
}
|
|
1075
1076
|
|
|
1076
1077
|
// src/native/notes.ts
|
|
1077
|
-
var NOTES =
|
|
1078
|
-
|
|
1078
|
+
var NOTES = _chunkW7A7AQUFjs.object.call(void 0, { name: "notes", label: "Note" }).pluralLabel("Notes").icon("file-text").description("Notes that can be linked to any record or used globally").system().labelExpression("{{ title }}").attribute(_chunkW7A7AQUFjs.text.call(void 0, { name: "title", label: "Title" }).placeholder("Untitled").required()).attribute(_chunkW7A7AQUFjs.richtext.call(void 0, { name: "content", label: "Content" }).required()).attribute(
|
|
1079
|
+
_chunkW7A7AQUFjs.select.call(void 0, { name: "visibility", label: "Visibility" }).options([
|
|
1079
1080
|
{ id: "private", label: "Private", value: "private", icon: "lock" },
|
|
1080
1081
|
{ id: "shared", label: "Shared", value: "shared", icon: "users" }
|
|
1081
1082
|
]).defaultValue("private").required()
|
|
1082
|
-
).attribute(
|
|
1083
|
-
|
|
1083
|
+
).attribute(_chunkW7A7AQUFjs.relation.call(void 0, { name: "linkedTo", label: "Linked To" }).toAny().hidden());
|
|
1084
|
+
_chunkW7A7AQUFjs.registry.register(NOTES);
|
|
1084
1085
|
|
|
1085
1086
|
// src/views/registry.ts
|
|
1086
1087
|
var ViewRegistry = class {
|
|
@@ -1964,4 +1965,5 @@ function isViewCustomized(view2, object2) {
|
|
|
1964
1965
|
|
|
1965
1966
|
|
|
1966
1967
|
|
|
1967
|
-
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkKN6UXXVUjs.ActivityTabConfig; exports.AttributeInUseError = _chunkKN6UXXVUjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkKN6UXXVUjs.AttributeNotFoundError; exports.AuditService = _chunkKN6UXXVUjs.AuditService; exports.AuthMethodSchema = _chunkKN6UXXVUjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkKN6UXXVUjs.BEHAVIOR_PROPERTIES; exports.BasePropertyBuilder = _chunkKN6UXXVUjs.BasePropertyBuilder; exports.BaseRepository = _chunkKN6UXXVUjs.BaseRepository; exports.BaseService = _chunkKN6UXXVUjs.BaseService; exports.CheckboxPropertyBuilder = _chunkKN6UXXVUjs.CheckboxPropertyBuilder; exports.ConcurrentModificationError = _chunkKN6UXXVUjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkKN6UXXVUjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkKN6UXXVUjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkKN6UXXVUjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkKN6UXXVUjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkKN6UXXVUjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkKN6UXXVUjs.CreateShareInputSchema; exports.CurrencyPropertyBuilder = _chunkKN6UXXVUjs.CurrencyPropertyBuilder; exports.CustomTabConfig = _chunkKN6UXXVUjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkKN6UXXVUjs.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 = _chunkKN6UXXVUjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkU4AB53AMjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkKN6UXXVUjs.DRIVING_LICENSE; exports.DatePropertyBuilder = _chunkKN6UXXVUjs.DatePropertyBuilder; exports.DetailViewBuilder = _chunkKN6UXXVUjs.DetailViewBuilder; exports.DirectTableTabConfig = _chunkKN6UXXVUjs.DirectTableTabConfig; exports.DocumentExecutor = _chunkKN6UXXVUjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkKN6UXXVUjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkKN6UXXVUjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkKN6UXXVUjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkKN6UXXVUjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkKN6UXXVUjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkKN6UXXVUjs.DocumentProcessingService; exports.DocumentRenderError = _chunkKN6UXXVUjs.DocumentRenderError; exports.DocumentRendererService = _chunkKN6UXXVUjs.DocumentRendererService; exports.DocumentService = _chunkKN6UXXVUjs.DocumentService; exports.DocumentTemplateService = _chunkKN6UXXVUjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkKN6UXXVUjs.DocumentsTabConfig; exports.DuplicateError = _chunkKN6UXXVUjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkKN6UXXVUjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkKN6UXXVUjs.EndExecutor; exports.EndNodeSchema = _chunkKN6UXXVUjs.EndNodeSchema; exports.ExecutorRegistry = _chunkKN6UXXVUjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkKN6UXXVUjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkKN6UXXVUjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkKN6UXXVUjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkKN6UXXVUjs.FileNotFoundError; exports.FileService = _chunkKN6UXXVUjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkKN6UXXVUjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkKN6UXXVUjs.FlowRowSchema; exports.FlowsTabConfig = _chunkKN6UXXVUjs.FlowsTabConfig; exports.ForbiddenError = _chunkKN6UXXVUjs.ForbiddenError; exports.FormExecutor = _chunkKN6UXXVUjs.FormExecutor; exports.FormFieldRefSchema = _chunkKN6UXXVUjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkKN6UXXVUjs.FormNodeSchema; exports.FormulaResolverService = _chunkKN6UXXVUjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkKN6UXXVUjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkKN6UXXVUjs.GeocodingService; exports.GlobalSearchService = _chunkKN6UXXVUjs.GlobalSearchService; exports.GrantExpiredError = _chunkKN6UXXVUjs.GrantExpiredError; exports.GrantNotFoundError = _chunkKN6UXXVUjs.GrantNotFoundError; exports.GrantRevokedError = _chunkKN6UXXVUjs.GrantRevokedError; exports.GroupBuilder = _chunkKN6UXXVUjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkKN6UXXVUjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkKN6UXXVUjs.InvalidPathError; exports.InverseTableTabConfig = _chunkKN6UXXVUjs.InverseTableTabConfig; exports.InvitationAlreadyAcceptedError = _chunkKN6UXXVUjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkKN6UXXVUjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkKN6UXXVUjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkKN6UXXVUjs.InvitationRevokedError; exports.ListViewBuilder = _chunkKN6UXXVUjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkKN6UXXVUjs.ListViewTabConfigBuilder; exports.LocationPropertyBuilder = _chunkKN6UXXVUjs.LocationPropertyBuilder; exports.MaxDepthExceededError = _chunkKN6UXXVUjs.MaxDepthExceededError; exports.MultiselectPropertyBuilder = _chunkKN6UXXVUjs.MultiselectPropertyBuilder; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkKN6UXXVUjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkKN6UXXVUjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkKN6UXXVUjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkKN6UXXVUjs.NoopHookRegistry; exports.NotFoundError = _chunkKN6UXXVUjs.NotFoundError; exports.NotSystemObjectError = _chunkKN6UXXVUjs.NotSystemObjectError; exports.NotesTabConfig = _chunkKN6UXXVUjs.NotesTabConfig; exports.NumberPropertyBuilder = _chunkKN6UXXVUjs.NumberPropertyBuilder; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkKN6UXXVUjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkKN6UXXVUjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkKN6UXXVUjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkKN6UXXVUjs.ObjectSchemaService; exports.PASSPORT = _chunkKN6UXXVUjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkKN6UXXVUjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkKN6UXXVUjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkKN6UXXVUjs.PermissionService; exports.PhonePropertyBuilder = _chunkKN6UXXVUjs.PhonePropertyBuilder; exports.PolicyRegistry = _chunkKN6UXXVUjs.PolicyRegistry; exports.PolicyViolationError = _chunkKN6UXXVUjs.PolicyViolationError; exports.PropertySchemaBuilder = _chunkKN6UXXVUjs.PropertySchemaBuilder; exports.PropertyTypeBuilder = _chunkKN6UXXVUjs.PropertyTypeBuilder; exports.ProtectedResourceError = _chunkKN6UXXVUjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkKN6UXXVUjs.ProtectedRoleError; exports.QueryBuilder = _chunkKN6UXXVUjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkKN6UXXVUjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkKN6UXXVUjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkKN6UXXVUjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkKN6UXXVUjs.RESERVED_ATTRIBUTE_NAMES; exports.RatingPropertyBuilder = _chunkKN6UXXVUjs.RatingPropertyBuilder; exports.RecordNotFoundError = _chunkKN6UXXVUjs.RecordNotFoundError; exports.RecordQueryService = _chunkKN6UXXVUjs.RecordQueryService; exports.RecordReferencedError = _chunkKN6UXXVUjs.RecordReferencedError; exports.RecordResolverService = _chunkKN6UXXVUjs.RecordResolverService; exports.RecordService = _chunkKN6UXXVUjs.RecordService; exports.RelationPropertiesService = _chunkKN6UXXVUjs.RelationPropertiesService; exports.RelationService = _chunkKN6UXXVUjs.RelationService; exports.RoleNotFoundError = _chunkKN6UXXVUjs.RoleNotFoundError; exports.RollupScheduler = _chunkKN6UXXVUjs.RollupScheduler; exports.RollupService = _chunkKN6UXXVUjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkKN6UXXVUjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkKN6UXXVUjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkKN6UXXVUjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkKN6UXXVUjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkKN6UXXVUjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkKN6UXXVUjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkKN6UXXVUjs.SchemaContextAwareRepository; exports.SchemaError = _chunkKN6UXXVUjs.SchemaError; exports.SchemaErrorCode = _chunkKN6UXXVUjs.SchemaErrorCode; exports.SelectPropertyBuilder = _chunkKN6UXXVUjs.SelectPropertyBuilder; exports.ShareStatusSchema = _chunkKN6UXXVUjs.ShareStatusSchema; exports.SlotModeSchema = _chunkKN6UXXVUjs.SlotModeSchema; exports.StartExecutor = _chunkKN6UXXVUjs.StartExecutor; exports.StartNodeSchema = _chunkKN6UXXVUjs.StartNodeSchema; exports.StatusPropertyBuilder = _chunkKN6UXXVUjs.StatusPropertyBuilder; exports.StorageDownloadNotSupportedError = _chunkKN6UXXVUjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkKN6UXXVUjs.SyncError; exports.TabBuilder = _chunkKN6UXXVUjs.TabBuilder; exports.TenantContextError = _chunkKN6UXXVUjs.TenantContextError; exports.TextPropertyBuilder = _chunkKN6UXXVUjs.TextPropertyBuilder; exports.TextareaPropertyBuilder = _chunkKN6UXXVUjs.TextareaPropertyBuilder; exports.ThemeColorsSchema = _chunkKN6UXXVUjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkKN6UXXVUjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkKN6UXXVUjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunkKN6UXXVUjs.UserProfileNotFoundError; exports.UserProfileService = _chunkKN6UXXVUjs.UserProfileService; exports.UserService = _chunkKN6UXXVUjs.UserService; exports.ValidationError = _chunkKN6UXXVUjs.ValidationError; exports.ViewBuilder = _chunkKN6UXXVUjs.ViewBuilder; exports.ViewService = _chunkKN6UXXVUjs.ViewService; exports.ViewportSchema = _chunkKN6UXXVUjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkKN6UXXVUjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkKN6UXXVUjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkKN6UXXVUjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkKN6UXXVUjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkKN6UXXVUjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkKN6UXXVUjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkKN6UXXVUjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkKN6UXXVUjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkKN6UXXVUjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkKN6UXXVUjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkKN6UXXVUjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkKN6UXXVUjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkKN6UXXVUjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkKN6UXXVUjs.WorkflowRelationService; exports.WorkflowService = _chunkKN6UXXVUjs.WorkflowService; exports.WorkflowShareSchema = _chunkKN6UXXVUjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkKN6UXXVUjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkKN6UXXVUjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkKN6UXXVUjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkKN6UXXVUjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkKN6UXXVUjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunkKN6UXXVUjs.addSchemaToContext; exports.and = _chunkKN6UXXVUjs.and; exports.applyDefaultValues = _chunkKN6UXXVUjs.applyDefaultValues; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunkU4AB53AMjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkKN6UXXVUjs.buildAuditChanges; exports.buildPolicyContext = _chunkKN6UXXVUjs.buildPolicyContext; exports.cacheKeys = _chunkKN6UXXVUjs.cacheKeys; exports.cacheTtl = _chunkKN6UXXVUjs.cacheTtl; exports.canAccessNode = _chunkKN6UXXVUjs.canAccessNode; exports.canResumeInstance = _chunkKN6UXXVUjs.canResumeInstance; exports.checkPermission = _chunkKN6UXXVUjs.checkPermission; exports.checkRecordAccess = _chunkKN6UXXVUjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkKN6UXXVUjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkKN6UXXVUjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkKN6UXXVUjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkKN6UXXVUjs.checkbox; exports.checkboxConfigSchema = _chunkU4AB53AMjs.checkboxConfigSchema; exports.complete = _chunkKN6UXXVUjs.complete; exports.computeLabel = _chunkKN6UXXVUjs.computeLabel; exports.computeLabelWithRelations = _chunkKN6UXXVUjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkU4AB53AMjs.computeRecordStatus; exports.createAttributeValidator = _chunkU4AB53AMjs.createAttributeValidator; exports.createCheckboxValidator = _chunkU4AB53AMjs.createCheckboxValidator; exports.createContextForCreate = _chunkKN6UXXVUjs.createContextForCreate; exports.createContextForDelete = _chunkKN6UXXVUjs.createContextForDelete; exports.createContextForRestore = _chunkKN6UXXVUjs.createContextForRestore; exports.createContextForUpdate = _chunkKN6UXXVUjs.createContextForUpdate; exports.createCurrencyValidator = _chunkU4AB53AMjs.createCurrencyValidator; exports.createDateValidator = _chunkU4AB53AMjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkKN6UXXVUjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkKN6UXXVUjs.createDefaultState; exports.createDraftValidator = _chunkU4AB53AMjs.createDraftValidator; exports.createEmptyContext = _chunkKN6UXXVUjs.createEmptyContext; exports.createFileValidator = _chunkU4AB53AMjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkU4AB53AMjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkU4AB53AMjs.createFormulaValidator; exports.createLocationValidator = _chunkU4AB53AMjs.createLocationValidator; exports.createMockAdapter = _chunkKN6UXXVUjs.createMockAdapter; exports.createMultiRelationValidator = _chunkU4AB53AMjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkU4AB53AMjs.createMultiselectValidator; exports.createNumberValidator = _chunkU4AB53AMjs.createNumberValidator; exports.createObjectValidator = _chunkU4AB53AMjs.createObjectValidator; exports.createPhoneValidator = _chunkU4AB53AMjs.createPhoneValidator; exports.createQueryBuilder = _chunkKN6UXXVUjs.createQueryBuilder; exports.createRatingValidator = _chunkU4AB53AMjs.createRatingValidator; exports.createRelationValidator = _chunkU4AB53AMjs.createRelationValidator; exports.createRichtextValidator = _chunkU4AB53AMjs.createRichtextValidator; exports.createRollupValidator = _chunkU4AB53AMjs.createRollupValidator; exports.createSelectValidator = _chunkU4AB53AMjs.createSelectValidator; exports.createSingleRelationValidator = _chunkU4AB53AMjs.createSingleRelationValidator; exports.createStartTransition = _chunkKN6UXXVUjs.createStartTransition; exports.createStatusValidator = _chunkU4AB53AMjs.createStatusValidator; exports.createTextAreaValidator = _chunkU4AB53AMjs.createTextAreaValidator; exports.createTextValidator = _chunkU4AB53AMjs.createTextValidator; exports.createUserValidator = _chunkU4AB53AMjs.createUserValidator; exports.currency = _chunkKN6UXXVUjs.currency; exports.currencyConfigSchema = _chunkU4AB53AMjs.currencyConfigSchema; exports.date = _chunkKN6UXXVUjs.date; exports.dateConfigSchema = _chunkU4AB53AMjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkKN6UXXVUjs.defaultPolicyRegistry; exports.defaultTtl = _chunkKN6UXXVUjs.defaultTtl; exports.detailView = _chunkKN6UXXVUjs.detailView; exports.document = _chunkKN6UXXVUjs.document; exports.documentConfigSchema = _chunkU4AB53AMjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkKN6UXXVUjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkKN6UXXVUjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkKN6UXXVUjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkKN6UXXVUjs.enrichWithFormulas; exports.eq = _chunkKN6UXXVUjs.eq; exports.error = _chunkKN6UXXVUjs.error; exports.evaluate = _chunkKN6UXXVUjs.evaluate; exports.evaluateCondition = _chunkKN6UXXVUjs.evaluateCondition; exports.evaluateFormula = _chunkKN6UXXVUjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkKN6UXXVUjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkKN6UXXVUjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkKN6UXXVUjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkKN6UXXVUjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkKN6UXXVUjs.evaluateWithTrace; exports.extractAttributeNames = _chunkKN6UXXVUjs.extractAttributeNames; exports.extractFormulaVariables = _chunkKN6UXXVUjs.extractFormulaVariables; exports.extractRelationIds = _chunkKN6UXXVUjs.extractRelationIds; exports.extractRelationNames = _chunkKN6UXXVUjs.extractRelationNames; exports.extractRelationReferences = _chunkKN6UXXVUjs.extractRelationReferences; exports.file = _chunkKN6UXXVUjs.file; exports.fileConfigSchema = _chunkU4AB53AMjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkKN6UXXVUjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkKN6UXXVUjs.formatAttributeValue; exports.formatFormulaResult = _chunkKN6UXXVUjs.formatFormulaResult; exports.formatRecord = _chunkKN6UXXVUjs.formatRecord; exports.formatRecords = _chunkKN6UXXVUjs.formatRecords; exports.formatZodErrors = _chunkU4AB53AMjs.formatZodErrors; exports.formula = _chunkKN6UXXVUjs.formula; exports.formulaConfigSchema = _chunkU4AB53AMjs.formulaConfigSchema; exports.generateCssVariables = _chunkKN6UXXVUjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getAttributeConfigSchema = _chunkU4AB53AMjs.getAttributeConfigSchema; exports.getContext = _chunkKN6UXXVUjs.getContext; exports.getContextValue = _chunkKN6UXXVUjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkKN6UXXVUjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkKN6UXXVUjs.getFeatureFlags; exports.getFeatureValue = _chunkKN6UXXVUjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunkU4AB53AMjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkKN6UXXVUjs.getNodeOutputs; exports.getPathDepth = _chunkKN6UXXVUjs.getPathDepth; exports.getPolicy = _chunkKN6UXXVUjs.getPolicy; exports.getRelationPath = _chunkKN6UXXVUjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkKN6UXXVUjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkKN6UXXVUjs.getSchemaContext; exports.getSchemaFromContext = _chunkKN6UXXVUjs.getSchemaFromContext; exports.getSyncPreview = _chunkKN6UXXVUjs.getSyncPreview; exports.getSystemAttributeList = _chunkKN6UXXVUjs.getSystemAttributeList; exports.getSystemTemplate = _chunkKN6UXXVUjs.getSystemTemplate; exports.getTargetAttributeName = _chunkKN6UXXVUjs.getTargetAttributeName; exports.getTenantId = _chunkKN6UXXVUjs.getTenantId; exports.getUserId = _chunkKN6UXXVUjs.getUserId; exports.getViewSeedPreview = _chunkKN6UXXVUjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkKN6UXXVUjs.getViewSyncPreview; exports.group = _chunkKN6UXXVUjs.group; exports.hasContext = _chunkKN6UXXVUjs.hasContext; exports.hasFeatureFlagsContext = _chunkKN6UXXVUjs.hasFeatureFlagsContext; exports.hasProperties = _chunkKN6UXXVUjs.hasProperties; exports.hasRelationReferences = _chunkKN6UXXVUjs.hasRelationReferences; exports.hasSchemaContext = _chunkKN6UXXVUjs.hasSchemaContext; exports.hashOptions = _chunkKN6UXXVUjs.hashOptions; exports.inValues = _chunkKN6UXXVUjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkKN6UXXVUjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunkKN6UXXVUjs.isBehaviorProperty; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkKN6UXXVUjs.isConditionGroup; exports.isConditionNode = _chunkKN6UXXVUjs.isConditionNode; exports.isConditionRule = _chunkKN6UXXVUjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDirectTableTab = isDirectTableTab; exports.isDocumentNode = _chunkKN6UXXVUjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkKN6UXXVUjs.isEmpty; exports.isEndNode = _chunkKN6UXXVUjs.isEndNode; exports.isFeatureEnabled = _chunkKN6UXXVUjs.isFeatureEnabled; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkKN6UXXVUjs.isForbiddenError; exports.isFormNode = _chunkKN6UXXVUjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkKN6UXXVUjs.isGrantExpired; exports.isGrantRevoked = _chunkKN6UXXVUjs.isGrantRevoked; exports.isGrantValid = _chunkKN6UXXVUjs.isGrantValid; exports.isIdentityProperty = _chunkKN6UXXVUjs.isIdentityProperty; exports.isInstanceEvent = _chunkKN6UXXVUjs.isInstanceEvent; exports.isInstanceTerminal = _chunkKN6UXXVUjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkKN6UXXVUjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isInvitationAccepted = _chunkKN6UXXVUjs.isInvitationAccepted; exports.isInvitationExpired = _chunkKN6UXXVUjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkKN6UXXVUjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkKN6UXXVUjs.isInvitationValid; exports.isLabelExpression = _chunkKN6UXXVUjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkKN6UXXVUjs.isNodeEvent; exports.isNotEmpty = _chunkKN6UXXVUjs.isNotEmpty; exports.isNotFoundError = _chunkKN6UXXVUjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isPresentationProperty = _chunkKN6UXXVUjs.isPresentationProperty; exports.isProtectedResourceError = _chunkKN6UXXVUjs.isProtectedResourceError; exports.isRecordComplete = _chunkU4AB53AMjs.isRecordComplete; exports.isSchemaError = _chunkKN6UXXVUjs.isSchemaError; exports.isSimpleFormNode = _chunkKN6UXXVUjs.isSimpleFormNode; exports.isStartNode = _chunkKN6UXXVUjs.isStartNode; exports.isSystemAttribute = _chunkKN6UXXVUjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkKN6UXXVUjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkKN6UXXVUjs.isSystemTemplate; exports.isSystemWorkflow = _chunkKN6UXXVUjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkKN6UXXVUjs.isTokenRevoked; exports.isUniversalRelation = _chunkKN6UXXVUjs.isUniversalRelation; exports.isValidationError = _chunkKN6UXXVUjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkKN6UXXVUjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkKN6UXXVUjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkKN6UXXVUjs.listView; exports.location = _chunkKN6UXXVUjs.location; exports.locationConfigSchema = _chunkU4AB53AMjs.locationConfigSchema; exports.mergeWithDefaults = _chunkKN6UXXVUjs.mergeWithDefaults; exports.multiselect = _chunkKN6UXXVUjs.multiselect; exports.multiselectConfigSchema = _chunkU4AB53AMjs.multiselectConfigSchema; exports.neq = _chunkKN6UXXVUjs.neq; exports.notesPolicy = _chunkKN6UXXVUjs.notesPolicy; exports.number = _chunkKN6UXXVUjs.number; exports.numberConfigSchema = _chunkU4AB53AMjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkKN6UXXVUjs.object; exports.or = _chunkKN6UXXVUjs.or; exports.parseAttributeConfig = _chunkU4AB53AMjs.parseAttributeConfig; exports.parsePath = _chunkKN6UXXVUjs.parsePath; exports.pathHasManyCardinality = _chunkKN6UXXVUjs.pathHasManyCardinality; exports.phone = _chunkKN6UXXVUjs.phone; exports.phoneConfigSchema = _chunkU4AB53AMjs.phoneConfigSchema; exports.rating = _chunkKN6UXXVUjs.rating; exports.ratingConfigSchema = _chunkU4AB53AMjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkKN6UXXVUjs.recalculateParentRollups; exports.registry = _chunkKN6UXXVUjs.registry; exports.relation = _chunkKN6UXXVUjs.relation; exports.relationConfigSchema = _chunkU4AB53AMjs.relationConfigSchema; exports.renderLabelExpression = _chunkKN6UXXVUjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkKN6UXXVUjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkKN6UXXVUjs.resolveSingleValue; exports.richtext = _chunkKN6UXXVUjs.richtext; exports.richtextConfigSchema = _chunkU4AB53AMjs.richtextConfigSchema; exports.rollup = _chunkKN6UXXVUjs.rollup; exports.rollupConfigSchema = _chunkU4AB53AMjs.rollupConfigSchema; exports.runWithContext = _chunkKN6UXXVUjs.runWithContext; exports.runWithFeatureFlags = _chunkKN6UXXVUjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkKN6UXXVUjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkKN6UXXVUjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkU4AB53AMjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkKN6UXXVUjs.seedRegistryViews; exports.select = _chunkKN6UXXVUjs.select; exports.selectConfigSchema = _chunkU4AB53AMjs.selectConfigSchema; exports.setContextValue = _chunkKN6UXXVUjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkKN6UXXVUjs.status; exports.statusConfigSchema = _chunkU4AB53AMjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkKN6UXXVUjs.success; exports.syncAll = _chunkKN6UXXVUjs.syncAll; exports.syncNativeObjects = _chunkKN6UXXVUjs.syncNativeObjects; exports.syncNativeViews = _chunkKN6UXXVUjs.syncNativeViews; exports.text = _chunkKN6UXXVUjs.text; exports.textConfigSchema = _chunkU4AB53AMjs.textConfigSchema; exports.textarea = _chunkKN6UXXVUjs.textarea; exports.textareaConfigSchema = _chunkU4AB53AMjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkKN6UXXVUjs.toUndefinedIfEmpty; exports.traversePath = _chunkKN6UXXVUjs.traversePath; exports.tryGetFeatureValue = _chunkKN6UXXVUjs.tryGetFeatureValue; exports.user = _chunkKN6UXXVUjs.user; exports.userConfigSchema = _chunkU4AB53AMjs.userConfigSchema; exports.validateAttribute = _chunkU4AB53AMjs.validateAttribute; exports.validateAttributeConfig = _chunkU4AB53AMjs.validateAttributeConfig; exports.validateDraft = _chunkU4AB53AMjs.validateDraft; exports.validateDraftOrThrow = _chunkU4AB53AMjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkKN6UXXVUjs.validateFormulaExpression; exports.validateObject = _chunkU4AB53AMjs.validateObject; exports.validateObjectOrThrow = _chunkU4AB53AMjs.validateObjectOrThrow; exports.validatePath = _chunkKN6UXXVUjs.validatePath; exports.validatePropertyType = _chunkKN6UXXVUjs.validatePropertyType; exports.verifyNativeObjectsSync = _chunkKN6UXXVUjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkKN6UXXVUjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkKN6UXXVUjs.verifyRegistryViewsSeeded; exports.view = _chunkKN6UXXVUjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkKN6UXXVUjs.wait; exports.withFeatureFlags = _chunkKN6UXXVUjs.withFeatureFlags; exports.withTenantContext = _chunkKN6UXXVUjs.withTenantContext; exports.workflow = _chunkKN6UXXVUjs.workflow;
|
|
1968
|
+
|
|
1969
|
+
exports.ALL_SYSTEM_RESOURCES = _chunk36UBIXJNjs.ALL_SYSTEM_RESOURCES; exports.ActivityTabConfig = _chunkW7A7AQUFjs.ActivityTabConfig; exports.AttributeInUseError = _chunkW7A7AQUFjs.AttributeInUseError; exports.AttributeNotFoundError = _chunkW7A7AQUFjs.AttributeNotFoundError; exports.AuditService = _chunkW7A7AQUFjs.AuditService; exports.AuthMethodSchema = _chunkW7A7AQUFjs.AuthMethodSchema; exports.BEHAVIOR_PROPERTIES = _chunkW7A7AQUFjs.BEHAVIOR_PROPERTIES; exports.BasePropertyBuilder = _chunkW7A7AQUFjs.BasePropertyBuilder; exports.BaseRepository = _chunkW7A7AQUFjs.BaseRepository; exports.BaseService = _chunkW7A7AQUFjs.BaseService; exports.CheckboxPropertyBuilder = _chunkW7A7AQUFjs.CheckboxPropertyBuilder; exports.ConcurrentModificationError = _chunkW7A7AQUFjs.ConcurrentModificationError; exports.ConditionExecutor = _chunkW7A7AQUFjs.ConditionExecutor; exports.ConditionGroupSchema = _chunkW7A7AQUFjs.ConditionGroupSchema; exports.ConditionNodeSchema = _chunkW7A7AQUFjs.ConditionNodeSchema; exports.ConditionOperatorSchema = _chunkW7A7AQUFjs.ConditionOperatorSchema; exports.ConditionRuleSchema = _chunkW7A7AQUFjs.ConditionRuleSchema; exports.CreateShareInputSchema = _chunkW7A7AQUFjs.CreateShareInputSchema; exports.CurrencyPropertyBuilder = _chunkW7A7AQUFjs.CurrencyPropertyBuilder; exports.CustomTabConfig = _chunkW7A7AQUFjs.CustomTabConfig; exports.DEFAULT_LABEL_FALLBACK = _chunkW7A7AQUFjs.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 = _chunkW7A7AQUFjs.DEFAULT_THEME; exports.DEFAULT_VALIDATION_MESSAGES = _chunkU4AB53AMjs.DEFAULT_VALIDATION_MESSAGES; exports.DRIVING_LICENSE = _chunkW7A7AQUFjs.DRIVING_LICENSE; exports.DatePropertyBuilder = _chunkW7A7AQUFjs.DatePropertyBuilder; exports.DetailViewBuilder = _chunkW7A7AQUFjs.DetailViewBuilder; exports.DirectTableTabConfig = _chunkW7A7AQUFjs.DirectTableTabConfig; exports.DocumentExecutor = _chunkW7A7AQUFjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkW7A7AQUFjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkW7A7AQUFjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkW7A7AQUFjs.DocumentGenerationTemplateNotFoundError; exports.DocumentNodeSchema = _chunkW7A7AQUFjs.DocumentNodeSchema; exports.DocumentProcessingHook = _chunkW7A7AQUFjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkW7A7AQUFjs.DocumentProcessingService; exports.DocumentRenderError = _chunkW7A7AQUFjs.DocumentRenderError; exports.DocumentRendererService = _chunkW7A7AQUFjs.DocumentRendererService; exports.DocumentService = _chunkW7A7AQUFjs.DocumentService; exports.DocumentTemplateService = _chunkW7A7AQUFjs.DocumentTemplateService; exports.DocumentsTabConfig = _chunkW7A7AQUFjs.DocumentsTabConfig; exports.DuplicateError = _chunkW7A7AQUFjs.DuplicateError; exports.EMPTY_VALUE_PLACEHOLDER = _chunkW7A7AQUFjs.EMPTY_VALUE_PLACEHOLDER; exports.EndExecutor = _chunkW7A7AQUFjs.EndExecutor; exports.EndNodeSchema = _chunkW7A7AQUFjs.EndNodeSchema; exports.ExecutorRegistry = _chunkW7A7AQUFjs.ExecutorRegistry; exports.FORBIDDEN_PROPERTY_TYPES = _chunkW7A7AQUFjs.FORBIDDEN_PROPERTY_TYPES; exports.FRENCH_ID_CARD = _chunkW7A7AQUFjs.FRENCH_ID_CARD; exports.FeatureFlagsContextError = _chunkW7A7AQUFjs.FeatureFlagsContextError; exports.FileNotFoundError = _chunkW7A7AQUFjs.FileNotFoundError; exports.FileService = _chunkW7A7AQUFjs.FileService; exports.FlagRegistry = FlagRegistry; exports.FlagService = FlagService; exports.FlowRowFieldSchema = _chunkW7A7AQUFjs.FlowRowFieldSchema; exports.FlowRowSchema = _chunkW7A7AQUFjs.FlowRowSchema; exports.FlowsTabConfig = _chunkW7A7AQUFjs.FlowsTabConfig; exports.ForbiddenError = _chunkW7A7AQUFjs.ForbiddenError; exports.FormExecutor = _chunkW7A7AQUFjs.FormExecutor; exports.FormFieldRefSchema = _chunkW7A7AQUFjs.FormFieldRefSchema; exports.FormNodeSchema = _chunkW7A7AQUFjs.FormNodeSchema; exports.FormulaResolverService = _chunkW7A7AQUFjs.FormulaResolverService; exports.GENERIC_DOCUMENT = _chunkW7A7AQUFjs.GENERIC_DOCUMENT; exports.GeocodingService = _chunkW7A7AQUFjs.GeocodingService; exports.GlobalSearchService = _chunkW7A7AQUFjs.GlobalSearchService; exports.GrantExpiredError = _chunkW7A7AQUFjs.GrantExpiredError; exports.GrantNotFoundError = _chunkW7A7AQUFjs.GrantNotFoundError; exports.GrantRevokedError = _chunkW7A7AQUFjs.GrantRevokedError; exports.GroupBuilder = _chunkW7A7AQUFjs.GroupBuilder; exports.IDENTITY_PROPERTIES = _chunkW7A7AQUFjs.IDENTITY_PROPERTIES; exports.InvalidPathError = _chunkW7A7AQUFjs.InvalidPathError; exports.InverseTableTabConfig = _chunkW7A7AQUFjs.InverseTableTabConfig; exports.InvitationAlreadyAcceptedError = _chunkW7A7AQUFjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkW7A7AQUFjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkW7A7AQUFjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkW7A7AQUFjs.InvitationRevokedError; exports.ListViewBuilder = _chunkW7A7AQUFjs.ListViewBuilder; exports.ListViewTabConfigBuilder = _chunkW7A7AQUFjs.ListViewTabConfigBuilder; exports.LocationPropertyBuilder = _chunkW7A7AQUFjs.LocationPropertyBuilder; exports.MaxDepthExceededError = _chunkW7A7AQUFjs.MaxDepthExceededError; exports.MultiselectPropertyBuilder = _chunkW7A7AQUFjs.MultiselectPropertyBuilder; exports.NOTES = NOTES; exports.NO_VALUE_OPERATORS = NO_VALUE_OPERATORS; exports.NodePositionSchema = _chunkW7A7AQUFjs.NodePositionSchema; exports.NoopCacheAdapter = _chunkW7A7AQUFjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkW7A7AQUFjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkW7A7AQUFjs.NoopHookRegistry; exports.NotFoundError = _chunkW7A7AQUFjs.NotFoundError; exports.NotSystemObjectError = _chunkW7A7AQUFjs.NotSystemObjectError; exports.NotesTabConfig = _chunkW7A7AQUFjs.NotesTabConfig; exports.NumberPropertyBuilder = _chunkW7A7AQUFjs.NumberPropertyBuilder; exports.OPERATORS_BY_TYPE = OPERATORS_BY_TYPE; exports.ObjectBuilder = _chunkW7A7AQUFjs.ObjectBuilder; exports.ObjectNotFoundError = _chunkW7A7AQUFjs.ObjectNotFoundError; exports.ObjectReferencedError = _chunkW7A7AQUFjs.ObjectReferencedError; exports.ObjectSchemaService = _chunkW7A7AQUFjs.ObjectSchemaService; exports.PASSPORT = _chunkW7A7AQUFjs.PASSPORT; exports.PRESENTATION_PROPERTIES = _chunkW7A7AQUFjs.PRESENTATION_PROPERTIES; exports.PROOF_OF_ADDRESS = _chunkW7A7AQUFjs.PROOF_OF_ADDRESS; exports.PermissionService = _chunkW7A7AQUFjs.PermissionService; exports.PhonePropertyBuilder = _chunkW7A7AQUFjs.PhonePropertyBuilder; exports.PolicyRegistry = _chunkW7A7AQUFjs.PolicyRegistry; exports.PolicyViolationError = _chunkW7A7AQUFjs.PolicyViolationError; exports.PropertySchemaBuilder = _chunkW7A7AQUFjs.PropertySchemaBuilder; exports.PropertyTypeBuilder = _chunkW7A7AQUFjs.PropertyTypeBuilder; exports.ProtectedResourceError = _chunkW7A7AQUFjs.ProtectedResourceError; exports.ProtectedRoleError = _chunkW7A7AQUFjs.ProtectedRoleError; exports.QueryBuilder = _chunkW7A7AQUFjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkW7A7AQUFjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkW7A7AQUFjs.QueryNoResultError; exports.RELATION_TARGET_ANY = _chunkW7A7AQUFjs.RELATION_TARGET_ANY; exports.RESERVED_ATTRIBUTE_NAMES = _chunkW7A7AQUFjs.RESERVED_ATTRIBUTE_NAMES; exports.RatingPropertyBuilder = _chunkW7A7AQUFjs.RatingPropertyBuilder; exports.RecordNotFoundError = _chunkW7A7AQUFjs.RecordNotFoundError; exports.RecordQueryService = _chunkW7A7AQUFjs.RecordQueryService; exports.RecordReferencedError = _chunkW7A7AQUFjs.RecordReferencedError; exports.RecordResolverService = _chunkW7A7AQUFjs.RecordResolverService; exports.RecordService = _chunkW7A7AQUFjs.RecordService; exports.RelationPropertiesService = _chunkW7A7AQUFjs.RelationPropertiesService; exports.RelationService = _chunkW7A7AQUFjs.RelationService; exports.RoleNotFoundError = _chunkW7A7AQUFjs.RoleNotFoundError; exports.RollupScheduler = _chunkW7A7AQUFjs.RollupScheduler; exports.RollupService = _chunkW7A7AQUFjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkW7A7AQUFjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SIGNABLE_CONTRACT = _chunkW7A7AQUFjs.SIGNABLE_CONTRACT; exports.SYSTEM_ATTRIBUTES = _chunkW7A7AQUFjs.SYSTEM_ATTRIBUTES; exports.SYSTEM_FIELD_NAMES = _chunkW7A7AQUFjs.SYSTEM_FIELD_NAMES; exports.SYSTEM_RESOURCES = _chunk36UBIXJNjs.SYSTEM_RESOURCES; exports.SYSTEM_RESOURCE_LABELS = _chunk36UBIXJNjs.SYSTEM_RESOURCE_LABELS; exports.SYSTEM_TEMPLATES = _chunkW7A7AQUFjs.SYSTEM_TEMPLATES; exports.SYSTEM_TEMPLATE_IDS = _chunkW7A7AQUFjs.SYSTEM_TEMPLATE_IDS; exports.SchemaContextAwareRepository = _chunkW7A7AQUFjs.SchemaContextAwareRepository; exports.SchemaError = _chunkW7A7AQUFjs.SchemaError; exports.SchemaErrorCode = _chunkW7A7AQUFjs.SchemaErrorCode; exports.SelectPropertyBuilder = _chunkW7A7AQUFjs.SelectPropertyBuilder; exports.ShareStatusSchema = _chunkW7A7AQUFjs.ShareStatusSchema; exports.SlotModeSchema = _chunkW7A7AQUFjs.SlotModeSchema; exports.StartExecutor = _chunkW7A7AQUFjs.StartExecutor; exports.StartNodeSchema = _chunkW7A7AQUFjs.StartNodeSchema; exports.StatusPropertyBuilder = _chunkW7A7AQUFjs.StatusPropertyBuilder; exports.StorageDownloadNotSupportedError = _chunkW7A7AQUFjs.StorageDownloadNotSupportedError; exports.SyncError = _chunkW7A7AQUFjs.SyncError; exports.TabBuilder = _chunkW7A7AQUFjs.TabBuilder; exports.TenantContextError = _chunkW7A7AQUFjs.TenantContextError; exports.TextPropertyBuilder = _chunkW7A7AQUFjs.TextPropertyBuilder; exports.TextareaPropertyBuilder = _chunkW7A7AQUFjs.TextareaPropertyBuilder; exports.ThemeColorsSchema = _chunkW7A7AQUFjs.ThemeColorsSchema; exports.ThemeLogoSchema = _chunkW7A7AQUFjs.ThemeLogoSchema; exports.TokenRevokedError = _chunkW7A7AQUFjs.TokenRevokedError; exports.UserProfileNotFoundError = _chunkW7A7AQUFjs.UserProfileNotFoundError; exports.UserProfileService = _chunkW7A7AQUFjs.UserProfileService; exports.UserService = _chunkW7A7AQUFjs.UserService; exports.ValidationError = _chunkW7A7AQUFjs.ValidationError; exports.ViewBuilder = _chunkW7A7AQUFjs.ViewBuilder; exports.ViewService = _chunkW7A7AQUFjs.ViewService; exports.ViewportSchema = _chunkW7A7AQUFjs.ViewportSchema; exports.WorkflowAccessGrantService = _chunkW7A7AQUFjs.WorkflowAccessGrantService; exports.WorkflowBuilder = _chunkW7A7AQUFjs.WorkflowBuilder; exports.WorkflowConditionBuilder = _chunkW7A7AQUFjs.WorkflowConditionBuilder; exports.WorkflowConfigSchema = _chunkW7A7AQUFjs.WorkflowConfigSchema; exports.WorkflowDefinitionSchema = _chunkW7A7AQUFjs.WorkflowDefinitionSchema; exports.WorkflowEndBuilder = _chunkW7A7AQUFjs.WorkflowEndBuilder; exports.WorkflowFormBuilder = _chunkW7A7AQUFjs.WorkflowFormBuilder; exports.WorkflowFormRowBuilder = _chunkW7A7AQUFjs.WorkflowFormRowBuilder; exports.WorkflowInstanceService = _chunkW7A7AQUFjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkW7A7AQUFjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkW7A7AQUFjs.WorkflowJwtService; exports.WorkflowLayoutSchema = _chunkW7A7AQUFjs.WorkflowLayoutSchema; exports.WorkflowNodeSchema = _chunkW7A7AQUFjs.WorkflowNodeSchema; exports.WorkflowRelationService = _chunkW7A7AQUFjs.WorkflowRelationService; exports.WorkflowService = _chunkW7A7AQUFjs.WorkflowService; exports.WorkflowShareSchema = _chunkW7A7AQUFjs.WorkflowShareSchema; exports.WorkflowSimpleFormBuilder = _chunkW7A7AQUFjs.WorkflowSimpleFormBuilder; exports.WorkflowSlotSchema = _chunkW7A7AQUFjs.WorkflowSlotSchema; exports.WorkflowStartBuilder = _chunkW7A7AQUFjs.WorkflowStartBuilder; exports.WorkflowStatusSchema = _chunkW7A7AQUFjs.WorkflowStatusSchema; exports.WorkflowThemeSchema = _chunkW7A7AQUFjs.WorkflowThemeSchema; exports.addSchemaToContext = _chunkW7A7AQUFjs.addSchemaToContext; exports.and = _chunkW7A7AQUFjs.and; exports.applyDefaultValues = _chunkW7A7AQUFjs.applyDefaultValues; exports.asTenantId = _chunkNEVERCM3js.asTenantId; exports.asUserId = _chunkNEVERCM3js.asUserId; exports.attributeConfigSchemas = _chunkU4AB53AMjs.attributeConfigSchemas; exports.booleanFlag = booleanFlag; exports.buildAuditChanges = _chunkW7A7AQUFjs.buildAuditChanges; exports.buildPolicyContext = _chunkW7A7AQUFjs.buildPolicyContext; exports.cacheKeys = _chunkW7A7AQUFjs.cacheKeys; exports.cacheTtl = _chunkW7A7AQUFjs.cacheTtl; exports.canAccessNode = _chunkW7A7AQUFjs.canAccessNode; exports.canResumeInstance = _chunkW7A7AQUFjs.canResumeInstance; exports.checkPermission = _chunkW7A7AQUFjs.checkPermission; exports.checkRecordAccess = _chunkW7A7AQUFjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkW7A7AQUFjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkW7A7AQUFjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkW7A7AQUFjs.checkSharedObjectWriteAccess; exports.checkbox = _chunkW7A7AQUFjs.checkbox; exports.checkboxConfigSchema = _chunkU4AB53AMjs.checkboxConfigSchema; exports.complete = _chunkW7A7AQUFjs.complete; exports.computeLabel = _chunkW7A7AQUFjs.computeLabel; exports.computeLabelWithRelations = _chunkW7A7AQUFjs.computeLabelWithRelations; exports.computeRecordStatus = _chunkU4AB53AMjs.computeRecordStatus; exports.createAttributeValidator = _chunkU4AB53AMjs.createAttributeValidator; exports.createCheckboxValidator = _chunkU4AB53AMjs.createCheckboxValidator; exports.createContextForCreate = _chunkW7A7AQUFjs.createContextForCreate; exports.createContextForDelete = _chunkW7A7AQUFjs.createContextForDelete; exports.createContextForRestore = _chunkW7A7AQUFjs.createContextForRestore; exports.createContextForUpdate = _chunkW7A7AQUFjs.createContextForUpdate; exports.createCurrencyValidator = _chunkU4AB53AMjs.createCurrencyValidator; exports.createDateValidator = _chunkU4AB53AMjs.createDateValidator; exports.createDefaultExecutorRegistry = _chunkW7A7AQUFjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkW7A7AQUFjs.createDefaultState; exports.createDraftValidator = _chunkU4AB53AMjs.createDraftValidator; exports.createEmptyContext = _chunkW7A7AQUFjs.createEmptyContext; exports.createFileValidator = _chunkU4AB53AMjs.createFileValidator; exports.createFlagRegistry = createFlagRegistry; exports.createFlagService = createFlagService; exports.createFormAttributeValidator = _chunkU4AB53AMjs.createFormAttributeValidator; exports.createFormulaValidator = _chunkU4AB53AMjs.createFormulaValidator; exports.createLocationValidator = _chunkU4AB53AMjs.createLocationValidator; exports.createMockAdapter = _chunkW7A7AQUFjs.createMockAdapter; exports.createMultiRelationValidator = _chunkU4AB53AMjs.createMultiRelationValidator; exports.createMultiselectValidator = _chunkU4AB53AMjs.createMultiselectValidator; exports.createNumberValidator = _chunkU4AB53AMjs.createNumberValidator; exports.createObjectValidator = _chunkU4AB53AMjs.createObjectValidator; exports.createPhoneValidator = _chunkU4AB53AMjs.createPhoneValidator; exports.createQueryBuilder = _chunkW7A7AQUFjs.createQueryBuilder; exports.createRatingValidator = _chunkU4AB53AMjs.createRatingValidator; exports.createRelationValidator = _chunkU4AB53AMjs.createRelationValidator; exports.createRichtextValidator = _chunkU4AB53AMjs.createRichtextValidator; exports.createRollupValidator = _chunkU4AB53AMjs.createRollupValidator; exports.createSelectValidator = _chunkU4AB53AMjs.createSelectValidator; exports.createSingleRelationValidator = _chunkU4AB53AMjs.createSingleRelationValidator; exports.createStartTransition = _chunkW7A7AQUFjs.createStartTransition; exports.createStatusValidator = _chunkU4AB53AMjs.createStatusValidator; exports.createTextAreaValidator = _chunkU4AB53AMjs.createTextAreaValidator; exports.createTextValidator = _chunkU4AB53AMjs.createTextValidator; exports.createUserValidator = _chunkU4AB53AMjs.createUserValidator; exports.currency = _chunkW7A7AQUFjs.currency; exports.currencyConfigSchema = _chunkU4AB53AMjs.currencyConfigSchema; exports.date = _chunkW7A7AQUFjs.date; exports.dateConfigSchema = _chunkU4AB53AMjs.dateConfigSchema; exports.defaultPolicyRegistry = _chunkW7A7AQUFjs.defaultPolicyRegistry; exports.defaultTtl = _chunkW7A7AQUFjs.defaultTtl; exports.detailView = _chunkW7A7AQUFjs.detailView; exports.document = _chunkW7A7AQUFjs.document; exports.documentConfigSchema = _chunkU4AB53AMjs.documentConfigSchema; exports.enrichRecordsWithFormulas = _chunkW7A7AQUFjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkW7A7AQUFjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkW7A7AQUFjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkW7A7AQUFjs.enrichWithFormulas; exports.eq = _chunkW7A7AQUFjs.eq; exports.error = _chunkW7A7AQUFjs.error; exports.evaluate = _chunkW7A7AQUFjs.evaluate; exports.evaluateCondition = _chunkW7A7AQUFjs.evaluateCondition; exports.evaluateFormula = _chunkW7A7AQUFjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkW7A7AQUFjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkW7A7AQUFjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkW7A7AQUFjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkW7A7AQUFjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkW7A7AQUFjs.evaluateWithTrace; exports.extractAttributeNames = _chunkW7A7AQUFjs.extractAttributeNames; exports.extractFormulaVariables = _chunkW7A7AQUFjs.extractFormulaVariables; exports.extractRelationIds = _chunkW7A7AQUFjs.extractRelationIds; exports.extractRelationNames = _chunkW7A7AQUFjs.extractRelationNames; exports.extractRelationReferences = _chunkW7A7AQUFjs.extractRelationReferences; exports.file = _chunkW7A7AQUFjs.file; exports.fileConfigSchema = _chunkU4AB53AMjs.fileConfigSchema; exports.flagRegistry = flagRegistry; exports.flattenRelationsForEval = _chunkW7A7AQUFjs.flattenRelationsForEval; exports.formatAttributeValue = _chunkW7A7AQUFjs.formatAttributeValue; exports.formatFormulaResult = _chunkW7A7AQUFjs.formatFormulaResult; exports.formatRecord = _chunkW7A7AQUFjs.formatRecord; exports.formatRecords = _chunkW7A7AQUFjs.formatRecords; exports.formatZodErrors = _chunkU4AB53AMjs.formatZodErrors; exports.formula = _chunkW7A7AQUFjs.formula; exports.formulaConfigSchema = _chunkU4AB53AMjs.formulaConfigSchema; exports.generateCssVariables = _chunkW7A7AQUFjs.generateCssVariables; exports.generateDefaultDetailView = generateDefaultDetailView; exports.generateDefaultListView = generateDefaultListView; exports.generateFallbackView = generateFallbackView; exports.generateId = _chunkNEVERCM3js.generateId; exports.generatePrefixedId = _chunkNEVERCM3js.generatePrefixedId; exports.generateTemplateName = _chunkNEVERCM3js.generateTemplateName; exports.getAttributeConfigSchema = _chunkU4AB53AMjs.getAttributeConfigSchema; exports.getContext = _chunkW7A7AQUFjs.getContext; exports.getContextValue = _chunkW7A7AQUFjs.getContextValue; exports.getDefaultExecutorRegistry = _chunkW7A7AQUFjs.getDefaultExecutorRegistry; exports.getErrorMessage = _chunkW7A7AQUFjs.getErrorMessage; exports.getFeatureFlags = _chunkW7A7AQUFjs.getFeatureFlags; exports.getFeatureValue = _chunkW7A7AQUFjs.getFeatureValue; exports.getMissingRequiredAttributes = _chunkU4AB53AMjs.getMissingRequiredAttributes; exports.getNodeOutputs = _chunkW7A7AQUFjs.getNodeOutputs; exports.getPathDepth = _chunkW7A7AQUFjs.getPathDepth; exports.getPolicy = _chunkW7A7AQUFjs.getPolicy; exports.getRelationPath = _chunkW7A7AQUFjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkW7A7AQUFjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkW7A7AQUFjs.getSchemaContext; exports.getSchemaFromContext = _chunkW7A7AQUFjs.getSchemaFromContext; exports.getSyncPreview = _chunkW7A7AQUFjs.getSyncPreview; exports.getSystemAttributeList = _chunkW7A7AQUFjs.getSystemAttributeList; exports.getSystemTemplate = _chunkW7A7AQUFjs.getSystemTemplate; exports.getTargetAttributeName = _chunkW7A7AQUFjs.getTargetAttributeName; exports.getTenantId = _chunkW7A7AQUFjs.getTenantId; exports.getUserId = _chunkW7A7AQUFjs.getUserId; exports.getViewSeedPreview = _chunkW7A7AQUFjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkW7A7AQUFjs.getViewSyncPreview; exports.group = _chunkW7A7AQUFjs.group; exports.hasContext = _chunkW7A7AQUFjs.hasContext; exports.hasFeatureFlagsContext = _chunkW7A7AQUFjs.hasFeatureFlagsContext; exports.hasProperties = _chunkW7A7AQUFjs.hasProperties; exports.hasRelationReferences = _chunkW7A7AQUFjs.hasRelationReferences; exports.hasSchemaContext = _chunkW7A7AQUFjs.hasSchemaContext; exports.hashOptions = _chunkW7A7AQUFjs.hashOptions; exports.inValues = _chunkW7A7AQUFjs.inValues; exports.indexBy = _chunkNEVERCM3js.indexBy; exports.isActivityTab = isActivityTab; exports.isAdvancedFormNode = _chunkW7A7AQUFjs.isAdvancedFormNode; exports.isBehaviorProperty = _chunkW7A7AQUFjs.isBehaviorProperty; exports.isCalendarView = isCalendarView; exports.isConditionGroup = _chunkW7A7AQUFjs.isConditionGroup; exports.isConditionNode = _chunkW7A7AQUFjs.isConditionNode; exports.isConditionRule = _chunkW7A7AQUFjs.isConditionRule; exports.isCustomTab = isCustomTab; exports.isDefaultRole = _chunk36UBIXJNjs.isDefaultRole; exports.isDetailView = isDetailView; exports.isDirectTableTab = isDirectTableTab; exports.isDocumentNode = _chunkW7A7AQUFjs.isDocumentNode; exports.isDocumentsTab = isDocumentsTab; exports.isEmpty = _chunkW7A7AQUFjs.isEmpty; exports.isEndNode = _chunkW7A7AQUFjs.isEndNode; exports.isFeatureEnabled = _chunkW7A7AQUFjs.isFeatureEnabled; exports.isFlowDefinition = isFlowDefinition; exports.isFlowPublished = isFlowPublished; exports.isFlowsTab = isFlowsTab; exports.isForbiddenError = _chunkW7A7AQUFjs.isForbiddenError; exports.isFormNode = _chunkW7A7AQUFjs.isFormNode; exports.isFormTab = isFormTab; exports.isGalleryView = isGalleryView; exports.isGrantExpired = _chunkW7A7AQUFjs.isGrantExpired; exports.isGrantRevoked = _chunkW7A7AQUFjs.isGrantRevoked; exports.isGrantValid = _chunkW7A7AQUFjs.isGrantValid; exports.isIdentityProperty = _chunkW7A7AQUFjs.isIdentityProperty; exports.isInstanceEvent = _chunkW7A7AQUFjs.isInstanceEvent; exports.isInstanceTerminal = _chunkW7A7AQUFjs.isInstanceTerminal; exports.isInstanceWaiting = _chunkW7A7AQUFjs.isInstanceWaiting; exports.isInverseTableTab = isInverseTableTab; exports.isInvitationAccepted = _chunkW7A7AQUFjs.isInvitationAccepted; exports.isInvitationExpired = _chunkW7A7AQUFjs.isInvitationExpired; exports.isInvitationOrGrantEvent = _chunkW7A7AQUFjs.isInvitationOrGrantEvent; exports.isInvitationValid = _chunkW7A7AQUFjs.isInvitationValid; exports.isLabelExpression = _chunkW7A7AQUFjs.isLabelExpression; exports.isListView = isListView; exports.isNoValueOperator = isNoValueOperator; exports.isNodeEvent = _chunkW7A7AQUFjs.isNodeEvent; exports.isNotEmpty = _chunkW7A7AQUFjs.isNotEmpty; exports.isNotFoundError = _chunkW7A7AQUFjs.isNotFoundError; exports.isNotesTab = isNotesTab; exports.isPresentationProperty = _chunkW7A7AQUFjs.isPresentationProperty; exports.isProtectedResourceError = _chunkW7A7AQUFjs.isProtectedResourceError; exports.isRecordComplete = _chunkU4AB53AMjs.isRecordComplete; exports.isSchemaError = _chunkW7A7AQUFjs.isSchemaError; exports.isSimpleFormNode = _chunkW7A7AQUFjs.isSimpleFormNode; exports.isStartNode = _chunkW7A7AQUFjs.isStartNode; exports.isSystemAttribute = _chunkW7A7AQUFjs.isSystemAttribute; exports.isSystemAttributeObject = _chunkW7A7AQUFjs.isSystemAttributeObject; exports.isSystemFlow = isSystemFlow; exports.isSystemTemplate = _chunkW7A7AQUFjs.isSystemTemplate; exports.isSystemWorkflow = _chunkW7A7AQUFjs.isSystemWorkflow; exports.isTableTab = isTableTab; exports.isTimelineView = isTimelineView; exports.isTokenRevoked = _chunkW7A7AQUFjs.isTokenRevoked; exports.isUniversalRelation = _chunkW7A7AQUFjs.isUniversalRelation; exports.isValidationError = _chunkW7A7AQUFjs.isValidationError; exports.isViewCustomized = isViewCustomized; exports.isWorkflowDefinition = _chunkW7A7AQUFjs.isWorkflowDefinition; exports.isWorkflowPublished = _chunkW7A7AQUFjs.isWorkflowPublished; exports.jsonFlag = jsonFlag; exports.listView = _chunkW7A7AQUFjs.listView; exports.location = _chunkW7A7AQUFjs.location; exports.locationConfigSchema = _chunkU4AB53AMjs.locationConfigSchema; exports.mergeWithDefaults = _chunkW7A7AQUFjs.mergeWithDefaults; exports.multiselect = _chunkW7A7AQUFjs.multiselect; exports.multiselectConfigSchema = _chunkU4AB53AMjs.multiselectConfigSchema; exports.neq = _chunkW7A7AQUFjs.neq; exports.notesPolicy = _chunkW7A7AQUFjs.notesPolicy; exports.number = _chunkW7A7AQUFjs.number; exports.numberConfigSchema = _chunkU4AB53AMjs.numberConfigSchema; exports.numberFlag = numberFlag; exports.object = _chunkW7A7AQUFjs.object; exports.or = _chunkW7A7AQUFjs.or; exports.parseAttributeConfig = _chunkU4AB53AMjs.parseAttributeConfig; exports.parsePath = _chunkW7A7AQUFjs.parsePath; exports.pathHasManyCardinality = _chunkW7A7AQUFjs.pathHasManyCardinality; exports.phone = _chunkW7A7AQUFjs.phone; exports.phoneConfigSchema = _chunkU4AB53AMjs.phoneConfigSchema; exports.rating = _chunkW7A7AQUFjs.rating; exports.ratingConfigSchema = _chunkU4AB53AMjs.ratingConfigSchema; exports.recalculateParentRollups = _chunkW7A7AQUFjs.recalculateParentRollups; exports.registry = _chunkW7A7AQUFjs.registry; exports.relation = _chunkW7A7AQUFjs.relation; exports.relationConfigSchema = _chunkU4AB53AMjs.relationConfigSchema; exports.renderLabelExpression = _chunkW7A7AQUFjs.renderLabelExpression; exports.resetViewToDefault = resetViewToDefault; exports.resolveMultiplePaths = _chunkW7A7AQUFjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkW7A7AQUFjs.resolveSingleValue; exports.richtext = _chunkW7A7AQUFjs.richtext; exports.richtextConfigSchema = _chunkU4AB53AMjs.richtextConfigSchema; exports.rollup = _chunkW7A7AQUFjs.rollup; exports.rollupConfigSchema = _chunkU4AB53AMjs.rollupConfigSchema; exports.runWithContext = _chunkW7A7AQUFjs.runWithContext; exports.runWithFeatureFlags = _chunkW7A7AQUFjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkW7A7AQUFjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkW7A7AQUFjs.runWithSchemaContext; exports.safeParseAttributeConfig = _chunkU4AB53AMjs.safeParseAttributeConfig; exports.seedRegistryViews = _chunkW7A7AQUFjs.seedRegistryViews; exports.select = _chunkW7A7AQUFjs.select; exports.selectConfigSchema = _chunkU4AB53AMjs.selectConfigSchema; exports.setContextValue = _chunkW7A7AQUFjs.setContextValue; exports.slugify = _chunkNEVERCM3js.slugify; exports.status = _chunkW7A7AQUFjs.status; exports.statusConfigSchema = _chunkU4AB53AMjs.statusConfigSchema; exports.stringFlag = stringFlag; exports.success = _chunkW7A7AQUFjs.success; exports.syncAll = _chunkW7A7AQUFjs.syncAll; exports.syncNativeObjects = _chunkW7A7AQUFjs.syncNativeObjects; exports.syncNativeViews = _chunkW7A7AQUFjs.syncNativeViews; exports.text = _chunkW7A7AQUFjs.text; exports.textConfigSchema = _chunkU4AB53AMjs.textConfigSchema; exports.textarea = _chunkW7A7AQUFjs.textarea; exports.textareaConfigSchema = _chunkU4AB53AMjs.textareaConfigSchema; exports.toUndefinedIfEmpty = _chunkW7A7AQUFjs.toUndefinedIfEmpty; exports.traversePath = _chunkW7A7AQUFjs.traversePath; exports.tryGetFeatureValue = _chunkW7A7AQUFjs.tryGetFeatureValue; exports.user = _chunkW7A7AQUFjs.user; exports.userConfigSchema = _chunkU4AB53AMjs.userConfigSchema; exports.validateAttribute = _chunkU4AB53AMjs.validateAttribute; exports.validateAttributeConfig = _chunkU4AB53AMjs.validateAttributeConfig; exports.validateDraft = _chunkU4AB53AMjs.validateDraft; exports.validateDraftOrThrow = _chunkU4AB53AMjs.validateDraftOrThrow; exports.validateFormulaExpression = _chunkW7A7AQUFjs.validateFormulaExpression; exports.validateObject = _chunkU4AB53AMjs.validateObject; exports.validateObjectOrThrow = _chunkU4AB53AMjs.validateObjectOrThrow; exports.validatePath = _chunkW7A7AQUFjs.validatePath; exports.validatePropertyType = _chunkW7A7AQUFjs.validatePropertyType; exports.verifyNativeObjectsSync = _chunkW7A7AQUFjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkW7A7AQUFjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkW7A7AQUFjs.verifyRegistryViewsSeeded; exports.view = _chunkW7A7AQUFjs.view; exports.viewRegistry = viewRegistry; exports.wait = _chunkW7A7AQUFjs.wait; exports.withFeatureFlags = _chunkW7A7AQUFjs.withFeatureFlags; exports.withTenantContext = _chunkW7A7AQUFjs.withTenantContext; exports.workflow = _chunkW7A7AQUFjs.workflow;
|
package/dist/index.mjs
CHANGED
|
@@ -228,6 +228,7 @@ import {
|
|
|
228
228
|
getContext,
|
|
229
229
|
getContextValue,
|
|
230
230
|
getDefaultExecutorRegistry,
|
|
231
|
+
getErrorMessage,
|
|
231
232
|
getFeatureFlags,
|
|
232
233
|
getFeatureValue,
|
|
233
234
|
getNodeOutputs,
|
|
@@ -343,7 +344,7 @@ import {
|
|
|
343
344
|
withFeatureFlags,
|
|
344
345
|
withTenantContext,
|
|
345
346
|
workflow
|
|
346
|
-
} from "./chunk-
|
|
347
|
+
} from "./chunk-533TTNPT.mjs";
|
|
347
348
|
import {
|
|
348
349
|
asTenantId,
|
|
349
350
|
asUserId,
|
|
@@ -1799,6 +1800,7 @@ export {
|
|
|
1799
1800
|
getContext,
|
|
1800
1801
|
getContextValue,
|
|
1801
1802
|
getDefaultExecutorRegistry,
|
|
1803
|
+
getErrorMessage,
|
|
1802
1804
|
getFeatureFlags,
|
|
1803
1805
|
getFeatureValue,
|
|
1804
1806
|
getMissingRequiredAttributes,
|
package/dist/runtime.js
CHANGED
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
|
|
159
159
|
|
|
160
160
|
|
|
161
|
-
var
|
|
161
|
+
var _chunkW7A7AQUFjs = require('./chunk-W7A7AQUF.js');
|
|
162
162
|
require('./chunk-NEVERCM3.js');
|
|
163
163
|
require('./chunk-U4AB53AM.js');
|
|
164
164
|
require('./chunk-3RG5ZIWI.js');
|
|
@@ -322,4 +322,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
322
322
|
|
|
323
323
|
|
|
324
324
|
|
|
325
|
-
exports.AuditService = _chunkKN6UXXVUjs.AuditService; exports.BaseRepository = _chunkKN6UXXVUjs.BaseRepository; exports.BaseService = _chunkKN6UXXVUjs.BaseService; exports.ConditionExecutor = _chunkKN6UXXVUjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkKN6UXXVUjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunkKN6UXXVUjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkKN6UXXVUjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkKN6UXXVUjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkKN6UXXVUjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunkKN6UXXVUjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkKN6UXXVUjs.DocumentProcessingService; exports.DocumentRenderError = _chunkKN6UXXVUjs.DocumentRenderError; exports.DocumentRendererService = _chunkKN6UXXVUjs.DocumentRendererService; exports.DocumentService = _chunkKN6UXXVUjs.DocumentService; exports.DocumentTemplateService = _chunkKN6UXXVUjs.DocumentTemplateService; exports.EndExecutor = _chunkKN6UXXVUjs.EndExecutor; exports.ExecutorRegistry = _chunkKN6UXXVUjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkKN6UXXVUjs.FeatureFlagsContextError; exports.FileService = _chunkKN6UXXVUjs.FileService; exports.FormExecutor = _chunkKN6UXXVUjs.FormExecutor; exports.FormulaResolverService = _chunkKN6UXXVUjs.FormulaResolverService; exports.GeocodingService = _chunkKN6UXXVUjs.GeocodingService; exports.GlobalSearchService = _chunkKN6UXXVUjs.GlobalSearchService; exports.GrantExpiredError = _chunkKN6UXXVUjs.GrantExpiredError; exports.GrantNotFoundError = _chunkKN6UXXVUjs.GrantNotFoundError; exports.GrantRevokedError = _chunkKN6UXXVUjs.GrantRevokedError; exports.InvalidPathError = _chunkKN6UXXVUjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkKN6UXXVUjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkKN6UXXVUjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkKN6UXXVUjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkKN6UXXVUjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunkKN6UXXVUjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkKN6UXXVUjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkKN6UXXVUjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkKN6UXXVUjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkKN6UXXVUjs.ObjectSchemaService; exports.PermissionService = _chunkKN6UXXVUjs.PermissionService; exports.PolicyRegistry = _chunkKN6UXXVUjs.PolicyRegistry; exports.PolicyViolationError = _chunkKN6UXXVUjs.PolicyViolationError; exports.QueryBuilder = _chunkKN6UXXVUjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkKN6UXXVUjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkKN6UXXVUjs.QueryNoResultError; exports.RecordQueryService = _chunkKN6UXXVUjs.RecordQueryService; exports.RecordResolverService = _chunkKN6UXXVUjs.RecordResolverService; exports.RecordService = _chunkKN6UXXVUjs.RecordService; exports.RelationPropertiesService = _chunkKN6UXXVUjs.RelationPropertiesService; exports.RelationService = _chunkKN6UXXVUjs.RelationService; exports.RollupScheduler = _chunkKN6UXXVUjs.RollupScheduler; exports.RollupService = _chunkKN6UXXVUjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkKN6UXXVUjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunkKN6UXXVUjs.SchemaContextAwareRepository; exports.StartExecutor = _chunkKN6UXXVUjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunkKN6UXXVUjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunkKN6UXXVUjs.TenantContextError; exports.TokenRevokedError = _chunkKN6UXXVUjs.TokenRevokedError; exports.UserProfileService = _chunkKN6UXXVUjs.UserProfileService; exports.UserService = _chunkKN6UXXVUjs.UserService; exports.ViewService = _chunkKN6UXXVUjs.ViewService; exports.WorkflowAccessGrantService = _chunkKN6UXXVUjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkKN6UXXVUjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkKN6UXXVUjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkKN6UXXVUjs.WorkflowJwtService; exports.WorkflowRelationService = _chunkKN6UXXVUjs.WorkflowRelationService; exports.WorkflowService = _chunkKN6UXXVUjs.WorkflowService; exports.addSchemaToContext = _chunkKN6UXXVUjs.addSchemaToContext; exports.applyDefaultValues = _chunkKN6UXXVUjs.applyDefaultValues; exports.buildAuditChanges = _chunkKN6UXXVUjs.buildAuditChanges; exports.buildPolicyContext = _chunkKN6UXXVUjs.buildPolicyContext; exports.cacheKeys = _chunkKN6UXXVUjs.cacheKeys; exports.cacheTtl = _chunkKN6UXXVUjs.cacheTtl; exports.checkPermission = _chunkKN6UXXVUjs.checkPermission; exports.checkRecordAccess = _chunkKN6UXXVUjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkKN6UXXVUjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkKN6UXXVUjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkKN6UXXVUjs.checkSharedObjectWriteAccess; exports.complete = _chunkKN6UXXVUjs.complete; exports.computeLabel = _chunkKN6UXXVUjs.computeLabel; exports.computeLabelWithRelations = _chunkKN6UXXVUjs.computeLabelWithRelations; exports.createContextForCreate = _chunkKN6UXXVUjs.createContextForCreate; exports.createContextForDelete = _chunkKN6UXXVUjs.createContextForDelete; exports.createContextForRestore = _chunkKN6UXXVUjs.createContextForRestore; exports.createContextForUpdate = _chunkKN6UXXVUjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkKN6UXXVUjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkKN6UXXVUjs.createDefaultState; exports.createMockAdapter = _chunkKN6UXXVUjs.createMockAdapter; exports.createQueryBuilder = _chunkKN6UXXVUjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkKN6UXXVUjs.defaultPolicyRegistry; exports.defaultTtl = _chunkKN6UXXVUjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunkKN6UXXVUjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkKN6UXXVUjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkKN6UXXVUjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkKN6UXXVUjs.enrichWithFormulas; exports.error = _chunkKN6UXXVUjs.error; exports.evaluate = _chunkKN6UXXVUjs.evaluate; exports.evaluateCondition = _chunkKN6UXXVUjs.evaluateCondition; exports.evaluateFormula = _chunkKN6UXXVUjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkKN6UXXVUjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkKN6UXXVUjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkKN6UXXVUjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkKN6UXXVUjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkKN6UXXVUjs.evaluateWithTrace; exports.extractAttributeNames = _chunkKN6UXXVUjs.extractAttributeNames; exports.extractFormulaVariables = _chunkKN6UXXVUjs.extractFormulaVariables; exports.extractRelationIds = _chunkKN6UXXVUjs.extractRelationIds; exports.extractRelationNames = _chunkKN6UXXVUjs.extractRelationNames; exports.extractRelationReferences = _chunkKN6UXXVUjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkKN6UXXVUjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkKN6UXXVUjs.formatFormulaResult; exports.formatRecord = _chunkKN6UXXVUjs.formatRecord; exports.formatRecords = _chunkKN6UXXVUjs.formatRecords; exports.getContext = _chunkKN6UXXVUjs.getContext; exports.getDefaultExecutorRegistry = _chunkKN6UXXVUjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkKN6UXXVUjs.getFeatureFlags; exports.getFeatureValue = _chunkKN6UXXVUjs.getFeatureValue; exports.getPathDepth = _chunkKN6UXXVUjs.getPathDepth; exports.getPolicy = _chunkKN6UXXVUjs.getPolicy; exports.getRelationPath = _chunkKN6UXXVUjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkKN6UXXVUjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkKN6UXXVUjs.getSchemaContext; exports.getSchemaFromContext = _chunkKN6UXXVUjs.getSchemaFromContext; exports.getSyncPreview = _chunkKN6UXXVUjs.getSyncPreview; exports.getTargetAttributeName = _chunkKN6UXXVUjs.getTargetAttributeName; exports.getTenantId = _chunkKN6UXXVUjs.getTenantId; exports.getUserId = _chunkKN6UXXVUjs.getUserId; exports.getViewSeedPreview = _chunkKN6UXXVUjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkKN6UXXVUjs.getViewSyncPreview; exports.hasContext = _chunkKN6UXXVUjs.hasContext; exports.hasFeatureFlagsContext = _chunkKN6UXXVUjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkKN6UXXVUjs.hasRelationReferences; exports.hasSchemaContext = _chunkKN6UXXVUjs.hasSchemaContext; exports.hashOptions = _chunkKN6UXXVUjs.hashOptions; exports.isFeatureEnabled = _chunkKN6UXXVUjs.isFeatureEnabled; exports.isLabelExpression = _chunkKN6UXXVUjs.isLabelExpression; exports.notesPolicy = _chunkKN6UXXVUjs.notesPolicy; exports.parsePath = _chunkKN6UXXVUjs.parsePath; exports.pathHasManyCardinality = _chunkKN6UXXVUjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunkKN6UXXVUjs.recalculateParentRollups; exports.renderLabelExpression = _chunkKN6UXXVUjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkKN6UXXVUjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkKN6UXXVUjs.resolveSingleValue; exports.runWithContext = _chunkKN6UXXVUjs.runWithContext; exports.runWithFeatureFlags = _chunkKN6UXXVUjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkKN6UXXVUjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkKN6UXXVUjs.runWithSchemaContext; exports.seedRegistryViews = _chunkKN6UXXVUjs.seedRegistryViews; exports.success = _chunkKN6UXXVUjs.success; exports.syncAll = _chunkKN6UXXVUjs.syncAll; exports.syncNativeObjects = _chunkKN6UXXVUjs.syncNativeObjects; exports.syncNativeViews = _chunkKN6UXXVUjs.syncNativeViews; exports.traversePath = _chunkKN6UXXVUjs.traversePath; exports.tryGetFeatureValue = _chunkKN6UXXVUjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunkKN6UXXVUjs.validateFormulaExpression; exports.validatePath = _chunkKN6UXXVUjs.validatePath; exports.verifyNativeObjectsSync = _chunkKN6UXXVUjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkKN6UXXVUjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkKN6UXXVUjs.verifyRegistryViewsSeeded; exports.wait = _chunkKN6UXXVUjs.wait; exports.withFeatureFlags = _chunkKN6UXXVUjs.withFeatureFlags; exports.withTenantContext = _chunkKN6UXXVUjs.withTenantContext;
|
|
325
|
+
exports.AuditService = _chunkW7A7AQUFjs.AuditService; exports.BaseRepository = _chunkW7A7AQUFjs.BaseRepository; exports.BaseService = _chunkW7A7AQUFjs.BaseService; exports.ConditionExecutor = _chunkW7A7AQUFjs.ConditionExecutor; exports.DEFAULT_LABEL_FALLBACK = _chunkW7A7AQUFjs.DEFAULT_LABEL_FALLBACK; exports.DocumentExecutor = _chunkW7A7AQUFjs.DocumentExecutor; exports.DocumentGenerationNotConfiguredError = _chunkW7A7AQUFjs.DocumentGenerationNotConfiguredError; exports.DocumentGenerationService = _chunkW7A7AQUFjs.DocumentGenerationService; exports.DocumentGenerationTemplateNotFoundError = _chunkW7A7AQUFjs.DocumentGenerationTemplateNotFoundError; exports.DocumentProcessingHook = _chunkW7A7AQUFjs.DocumentProcessingHook; exports.DocumentProcessingService = _chunkW7A7AQUFjs.DocumentProcessingService; exports.DocumentRenderError = _chunkW7A7AQUFjs.DocumentRenderError; exports.DocumentRendererService = _chunkW7A7AQUFjs.DocumentRendererService; exports.DocumentService = _chunkW7A7AQUFjs.DocumentService; exports.DocumentTemplateService = _chunkW7A7AQUFjs.DocumentTemplateService; exports.EndExecutor = _chunkW7A7AQUFjs.EndExecutor; exports.ExecutorRegistry = _chunkW7A7AQUFjs.ExecutorRegistry; exports.FeatureFlagsContextError = _chunkW7A7AQUFjs.FeatureFlagsContextError; exports.FileService = _chunkW7A7AQUFjs.FileService; exports.FormExecutor = _chunkW7A7AQUFjs.FormExecutor; exports.FormulaResolverService = _chunkW7A7AQUFjs.FormulaResolverService; exports.GeocodingService = _chunkW7A7AQUFjs.GeocodingService; exports.GlobalSearchService = _chunkW7A7AQUFjs.GlobalSearchService; exports.GrantExpiredError = _chunkW7A7AQUFjs.GrantExpiredError; exports.GrantNotFoundError = _chunkW7A7AQUFjs.GrantNotFoundError; exports.GrantRevokedError = _chunkW7A7AQUFjs.GrantRevokedError; exports.InvalidPathError = _chunkW7A7AQUFjs.InvalidPathError; exports.InvitationAlreadyAcceptedError = _chunkW7A7AQUFjs.InvitationAlreadyAcceptedError; exports.InvitationExpiredError = _chunkW7A7AQUFjs.InvitationExpiredError; exports.InvitationNotFoundError = _chunkW7A7AQUFjs.InvitationNotFoundError; exports.InvitationRevokedError = _chunkW7A7AQUFjs.InvitationRevokedError; exports.MaxDepthExceededError = _chunkW7A7AQUFjs.MaxDepthExceededError; exports.NoopCacheAdapter = _chunkW7A7AQUFjs.NoopCacheAdapter; exports.NoopGeocodingAdapter = _chunkW7A7AQUFjs.NoopGeocodingAdapter; exports.NoopHookRegistry = _chunkW7A7AQUFjs.NoopHookRegistry; exports.ObjectSchemaService = _chunkW7A7AQUFjs.ObjectSchemaService; exports.PermissionService = _chunkW7A7AQUFjs.PermissionService; exports.PolicyRegistry = _chunkW7A7AQUFjs.PolicyRegistry; exports.PolicyViolationError = _chunkW7A7AQUFjs.PolicyViolationError; exports.QueryBuilder = _chunkW7A7AQUFjs.QueryBuilder; exports.QueryMultipleResultsError = _chunkW7A7AQUFjs.QueryMultipleResultsError; exports.QueryNoResultError = _chunkW7A7AQUFjs.QueryNoResultError; exports.RecordQueryService = _chunkW7A7AQUFjs.RecordQueryService; exports.RecordResolverService = _chunkW7A7AQUFjs.RecordResolverService; exports.RecordService = _chunkW7A7AQUFjs.RecordService; exports.RelationPropertiesService = _chunkW7A7AQUFjs.RelationPropertiesService; exports.RelationService = _chunkW7A7AQUFjs.RelationService; exports.RollupScheduler = _chunkW7A7AQUFjs.RollupScheduler; exports.RollupService = _chunkW7A7AQUFjs.RollupService; exports.SHORTCUT_TO_FILTER_OPERATOR = _chunkW7A7AQUFjs.SHORTCUT_TO_FILTER_OPERATOR; exports.SchemaContextAwareRepository = _chunkW7A7AQUFjs.SchemaContextAwareRepository; exports.StartExecutor = _chunkW7A7AQUFjs.StartExecutor; exports.StorageDownloadNotSupportedError = _chunkW7A7AQUFjs.StorageDownloadNotSupportedError; exports.TenantContextError = _chunkW7A7AQUFjs.TenantContextError; exports.TokenRevokedError = _chunkW7A7AQUFjs.TokenRevokedError; exports.UserProfileService = _chunkW7A7AQUFjs.UserProfileService; exports.UserService = _chunkW7A7AQUFjs.UserService; exports.ViewService = _chunkW7A7AQUFjs.ViewService; exports.WorkflowAccessGrantService = _chunkW7A7AQUFjs.WorkflowAccessGrantService; exports.WorkflowInstanceService = _chunkW7A7AQUFjs.WorkflowInstanceService; exports.WorkflowInvitationService = _chunkW7A7AQUFjs.WorkflowInvitationService; exports.WorkflowJwtService = _chunkW7A7AQUFjs.WorkflowJwtService; exports.WorkflowRelationService = _chunkW7A7AQUFjs.WorkflowRelationService; exports.WorkflowService = _chunkW7A7AQUFjs.WorkflowService; exports.addSchemaToContext = _chunkW7A7AQUFjs.addSchemaToContext; exports.applyDefaultValues = _chunkW7A7AQUFjs.applyDefaultValues; exports.buildAuditChanges = _chunkW7A7AQUFjs.buildAuditChanges; exports.buildPolicyContext = _chunkW7A7AQUFjs.buildPolicyContext; exports.cacheKeys = _chunkW7A7AQUFjs.cacheKeys; exports.cacheTtl = _chunkW7A7AQUFjs.cacheTtl; exports.checkPermission = _chunkW7A7AQUFjs.checkPermission; exports.checkRecordAccess = _chunkW7A7AQUFjs.checkRecordAccess; exports.checkRecordDeleteOrThrow = _chunkW7A7AQUFjs.checkRecordDeleteOrThrow; exports.checkRecordModifyOrThrow = _chunkW7A7AQUFjs.checkRecordModifyOrThrow; exports.checkSharedObjectWriteAccess = _chunkW7A7AQUFjs.checkSharedObjectWriteAccess; exports.complete = _chunkW7A7AQUFjs.complete; exports.computeLabel = _chunkW7A7AQUFjs.computeLabel; exports.computeLabelWithRelations = _chunkW7A7AQUFjs.computeLabelWithRelations; exports.createContextForCreate = _chunkW7A7AQUFjs.createContextForCreate; exports.createContextForDelete = _chunkW7A7AQUFjs.createContextForDelete; exports.createContextForRestore = _chunkW7A7AQUFjs.createContextForRestore; exports.createContextForUpdate = _chunkW7A7AQUFjs.createContextForUpdate; exports.createDefaultExecutorRegistry = _chunkW7A7AQUFjs.createDefaultExecutorRegistry; exports.createDefaultState = _chunkW7A7AQUFjs.createDefaultState; exports.createMockAdapter = _chunkW7A7AQUFjs.createMockAdapter; exports.createQueryBuilder = _chunkW7A7AQUFjs.createQueryBuilder; exports.defaultPolicyRegistry = _chunkW7A7AQUFjs.defaultPolicyRegistry; exports.defaultTtl = _chunkW7A7AQUFjs.defaultTtl; exports.enrichRecordsWithFormulas = _chunkW7A7AQUFjs.enrichRecordsWithFormulas; exports.enrichValuesForDisplay = _chunkW7A7AQUFjs.enrichValuesForDisplay; exports.enrichValuesWithSelectLabels = _chunkW7A7AQUFjs.enrichValuesWithSelectLabels; exports.enrichWithFormulas = _chunkW7A7AQUFjs.enrichWithFormulas; exports.error = _chunkW7A7AQUFjs.error; exports.evaluate = _chunkW7A7AQUFjs.evaluate; exports.evaluateCondition = _chunkW7A7AQUFjs.evaluateCondition; exports.evaluateFormula = _chunkW7A7AQUFjs.evaluateFormula; exports.evaluateFormulaAttribute = _chunkW7A7AQUFjs.evaluateFormulaAttribute; exports.evaluateFormulaAttributeWithRelations = _chunkW7A7AQUFjs.evaluateFormulaAttributeWithRelations; exports.evaluateFormulaWithRelations = _chunkW7A7AQUFjs.evaluateFormulaWithRelations; exports.evaluateFormulaWithResult = _chunkW7A7AQUFjs.evaluateFormulaWithResult; exports.evaluateWithTrace = _chunkW7A7AQUFjs.evaluateWithTrace; exports.extractAttributeNames = _chunkW7A7AQUFjs.extractAttributeNames; exports.extractFormulaVariables = _chunkW7A7AQUFjs.extractFormulaVariables; exports.extractRelationIds = _chunkW7A7AQUFjs.extractRelationIds; exports.extractRelationNames = _chunkW7A7AQUFjs.extractRelationNames; exports.extractRelationReferences = _chunkW7A7AQUFjs.extractRelationReferences; exports.flattenRelationsForEval = _chunkW7A7AQUFjs.flattenRelationsForEval; exports.formatFormulaResult = _chunkW7A7AQUFjs.formatFormulaResult; exports.formatRecord = _chunkW7A7AQUFjs.formatRecord; exports.formatRecords = _chunkW7A7AQUFjs.formatRecords; exports.getContext = _chunkW7A7AQUFjs.getContext; exports.getDefaultExecutorRegistry = _chunkW7A7AQUFjs.getDefaultExecutorRegistry; exports.getFeatureFlags = _chunkW7A7AQUFjs.getFeatureFlags; exports.getFeatureValue = _chunkW7A7AQUFjs.getFeatureValue; exports.getPathDepth = _chunkW7A7AQUFjs.getPathDepth; exports.getPolicy = _chunkW7A7AQUFjs.getPolicy; exports.getRelationPath = _chunkW7A7AQUFjs.getRelationPath; exports.getSchemaByNameFromContext = _chunkW7A7AQUFjs.getSchemaByNameFromContext; exports.getSchemaContext = _chunkW7A7AQUFjs.getSchemaContext; exports.getSchemaFromContext = _chunkW7A7AQUFjs.getSchemaFromContext; exports.getSyncPreview = _chunkW7A7AQUFjs.getSyncPreview; exports.getTargetAttributeName = _chunkW7A7AQUFjs.getTargetAttributeName; exports.getTenantId = _chunkW7A7AQUFjs.getTenantId; exports.getUserId = _chunkW7A7AQUFjs.getUserId; exports.getViewSeedPreview = _chunkW7A7AQUFjs.getViewSeedPreview; exports.getViewSyncPreview = _chunkW7A7AQUFjs.getViewSyncPreview; exports.hasContext = _chunkW7A7AQUFjs.hasContext; exports.hasFeatureFlagsContext = _chunkW7A7AQUFjs.hasFeatureFlagsContext; exports.hasRelationReferences = _chunkW7A7AQUFjs.hasRelationReferences; exports.hasSchemaContext = _chunkW7A7AQUFjs.hasSchemaContext; exports.hashOptions = _chunkW7A7AQUFjs.hashOptions; exports.isFeatureEnabled = _chunkW7A7AQUFjs.isFeatureEnabled; exports.isLabelExpression = _chunkW7A7AQUFjs.isLabelExpression; exports.notesPolicy = _chunkW7A7AQUFjs.notesPolicy; exports.parsePath = _chunkW7A7AQUFjs.parsePath; exports.pathHasManyCardinality = _chunkW7A7AQUFjs.pathHasManyCardinality; exports.recalculateParentRollups = _chunkW7A7AQUFjs.recalculateParentRollups; exports.renderLabelExpression = _chunkW7A7AQUFjs.renderLabelExpression; exports.resolveMultiplePaths = _chunkW7A7AQUFjs.resolveMultiplePaths; exports.resolveSingleValue = _chunkW7A7AQUFjs.resolveSingleValue; exports.runWithContext = _chunkW7A7AQUFjs.runWithContext; exports.runWithFeatureFlags = _chunkW7A7AQUFjs.runWithFeatureFlags; exports.runWithMergedSchemaContext = _chunkW7A7AQUFjs.runWithMergedSchemaContext; exports.runWithSchemaContext = _chunkW7A7AQUFjs.runWithSchemaContext; exports.seedRegistryViews = _chunkW7A7AQUFjs.seedRegistryViews; exports.success = _chunkW7A7AQUFjs.success; exports.syncAll = _chunkW7A7AQUFjs.syncAll; exports.syncNativeObjects = _chunkW7A7AQUFjs.syncNativeObjects; exports.syncNativeViews = _chunkW7A7AQUFjs.syncNativeViews; exports.traversePath = _chunkW7A7AQUFjs.traversePath; exports.tryGetFeatureValue = _chunkW7A7AQUFjs.tryGetFeatureValue; exports.validateFormulaExpression = _chunkW7A7AQUFjs.validateFormulaExpression; exports.validatePath = _chunkW7A7AQUFjs.validatePath; exports.verifyNativeObjectsSync = _chunkW7A7AQUFjs.verifyNativeObjectsSync; exports.verifyNativeViewsSync = _chunkW7A7AQUFjs.verifyNativeViewsSync; exports.verifyRegistryViewsSeeded = _chunkW7A7AQUFjs.verifyRegistryViewsSeeded; exports.wait = _chunkW7A7AQUFjs.wait; exports.withFeatureFlags = _chunkW7A7AQUFjs.withFeatureFlags; exports.withTenantContext = _chunkW7A7AQUFjs.withTenantContext;
|
package/dist/runtime.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stndrds/schema",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.61",
|
|
4
4
|
"description": "Standard schema definitions and utilities",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"jose": "^6.1.3",
|
|
36
36
|
"pdf-lib": "^1.17.1",
|
|
37
37
|
"zod": "^4.2.1",
|
|
38
|
-
"@stndrds/constants": "0.1.0-alpha.
|
|
38
|
+
"@stndrds/constants": "0.1.0-alpha.61"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/node": "^25.0.3",
|