@stndrds/schema 0.1.0-alpha.20 → 0.1.0-alpha.21
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-3RVLIIUK.mjs +9257 -0
- package/dist/chunk-6FNFXEQY.mjs +9316 -0
- package/dist/chunk-6TJR4WDK.mjs +9262 -0
- package/dist/chunk-F27AKBTL.mjs +9452 -0
- package/dist/chunk-HSNBVKQU.mjs +9316 -0
- package/dist/chunk-JJLODIBK.mjs +9389 -0
- package/dist/chunk-MAXEN3GU.mjs +9266 -0
- package/dist/chunk-ZD3BFM25.mjs +9316 -0
- package/dist/index.d.mts +3 -197
- package/dist/index.d.ts +3 -197
- package/dist/index.js +624 -21
- package/dist/index.mjs +21 -1
- package/dist/runtime-0gaIqXql.d.mts +7074 -0
- package/dist/runtime-0gaIqXql.d.ts +7074 -0
- package/dist/runtime-3u5doYAK.d.mts +6934 -0
- package/dist/runtime-3u5doYAK.d.ts +6934 -0
- package/dist/runtime-B6mOrMV4.d.mts +6985 -0
- package/dist/runtime-B6mOrMV4.d.ts +6985 -0
- package/dist/runtime-BNML-fPx.d.mts +6969 -0
- package/dist/runtime-BNML-fPx.d.ts +6969 -0
- package/dist/runtime-BPdsKDJo.d.mts +6969 -0
- package/dist/runtime-BPdsKDJo.d.ts +6969 -0
- package/dist/runtime-D1jyS1lS.d.mts +7008 -0
- package/dist/runtime-D1jyS1lS.d.ts +7008 -0
- package/dist/runtime-DjEUAeL4.d.mts +6713 -0
- package/dist/runtime-DjEUAeL4.d.ts +6713 -0
- package/dist/runtime-rTM9ddEe.d.mts +6934 -0
- package/dist/runtime-rTM9ddEe.d.ts +6934 -0
- package/dist/runtime-xLzAkAnp.d.mts +6969 -0
- package/dist/runtime-xLzAkAnp.d.ts +6969 -0
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +612 -21
- package/dist/runtime.mjs +17 -1
- package/package.json +2 -2
package/dist/runtime.mjs
CHANGED
|
@@ -11,16 +11,22 @@ import {
|
|
|
11
11
|
NoopHookRegistry,
|
|
12
12
|
ObjectSchemaService,
|
|
13
13
|
PermissionService,
|
|
14
|
+
QueryBuilder,
|
|
15
|
+
QueryMultipleResultsError,
|
|
16
|
+
QueryNoResultError,
|
|
14
17
|
RecordService,
|
|
15
18
|
RelationResolverService,
|
|
16
19
|
RelationService,
|
|
17
20
|
RollupScheduler,
|
|
18
21
|
RollupService,
|
|
22
|
+
SHORTCUT_TO_FILTER_OPERATOR,
|
|
19
23
|
UserProfileService,
|
|
20
24
|
UserService,
|
|
21
25
|
ViewService,
|
|
22
26
|
buildAuditChanges,
|
|
27
|
+
createDefaultState,
|
|
23
28
|
createMockAdapter,
|
|
29
|
+
createQueryBuilder,
|
|
24
30
|
enrichValuesWithSelectLabels,
|
|
25
31
|
evaluateFormula,
|
|
26
32
|
evaluateFormulaAttribute,
|
|
@@ -33,6 +39,8 @@ import {
|
|
|
33
39
|
extractRelationReferences,
|
|
34
40
|
flattenRelationsForEval,
|
|
35
41
|
formatFormulaResult,
|
|
42
|
+
formatRecord,
|
|
43
|
+
formatRecords,
|
|
36
44
|
getPathDepth,
|
|
37
45
|
getRelationPath,
|
|
38
46
|
getSyncPreview,
|
|
@@ -53,7 +61,7 @@ import {
|
|
|
53
61
|
validatePath,
|
|
54
62
|
verifyNativeObjectsSync,
|
|
55
63
|
verifyNativeViewsSync
|
|
56
|
-
} from "./chunk-
|
|
64
|
+
} from "./chunk-F27AKBTL.mjs";
|
|
57
65
|
export {
|
|
58
66
|
AuditService,
|
|
59
67
|
DEFAULT_LABEL_FALLBACK,
|
|
@@ -67,16 +75,22 @@ export {
|
|
|
67
75
|
NoopHookRegistry,
|
|
68
76
|
ObjectSchemaService,
|
|
69
77
|
PermissionService,
|
|
78
|
+
QueryBuilder,
|
|
79
|
+
QueryMultipleResultsError,
|
|
80
|
+
QueryNoResultError,
|
|
70
81
|
RecordService,
|
|
71
82
|
RelationResolverService,
|
|
72
83
|
RelationService,
|
|
73
84
|
RollupScheduler,
|
|
74
85
|
RollupService,
|
|
86
|
+
SHORTCUT_TO_FILTER_OPERATOR,
|
|
75
87
|
UserProfileService,
|
|
76
88
|
UserService,
|
|
77
89
|
ViewService,
|
|
78
90
|
buildAuditChanges,
|
|
91
|
+
createDefaultState,
|
|
79
92
|
createMockAdapter,
|
|
93
|
+
createQueryBuilder,
|
|
80
94
|
enrichValuesWithSelectLabels,
|
|
81
95
|
evaluateFormula,
|
|
82
96
|
evaluateFormulaAttribute,
|
|
@@ -89,6 +103,8 @@ export {
|
|
|
89
103
|
extractRelationReferences,
|
|
90
104
|
flattenRelationsForEval,
|
|
91
105
|
formatFormulaResult,
|
|
106
|
+
formatRecord,
|
|
107
|
+
formatRecords,
|
|
92
108
|
getPathDepth,
|
|
93
109
|
getRelationPath,
|
|
94
110
|
getSyncPreview,
|
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.21",
|
|
4
4
|
"description": "Standard schema definitions and utilities",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"expr-eval": "^2.0.2",
|
|
25
25
|
"zod": "^4.2.1",
|
|
26
|
-
"@stndrds/constants": "0.1.0-alpha.
|
|
26
|
+
"@stndrds/constants": "0.1.0-alpha.21"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@vitest/coverage-v8": "^2.1.9",
|