@stndrds/schema 0.1.0-alpha.14 → 0.1.0-alpha.15
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-2ASXJITY.mjs +5360 -0
- package/dist/chunk-5AWYVQKR.mjs +5310 -0
- package/dist/chunk-65HUQZHK.mjs +5374 -0
- package/dist/chunk-73P4F2OU.mjs +5809 -0
- package/dist/chunk-BHKKVBPP.mjs +5527 -0
- package/dist/chunk-BUWVNOSK.mjs +5457 -0
- package/dist/chunk-CCEHW4E7.mjs +6071 -0
- package/dist/chunk-CNR3BZLU.mjs +5163 -0
- package/dist/chunk-DLMVX6DN.mjs +6074 -0
- package/dist/chunk-DUUORFHI.mjs +5379 -0
- package/dist/chunk-DWTD7YPJ.mjs +74 -0
- package/dist/chunk-FAR5ENGR.mjs +78 -0
- package/dist/chunk-ITWOVZOW.mjs +5809 -0
- package/dist/chunk-KJLKY5X7.mjs +6314 -0
- package/dist/chunk-KTJXMGBR.mjs +5397 -0
- package/dist/chunk-NOVHQ7B2.mjs +6327 -0
- package/dist/chunk-PMFQ4ZL4.mjs +6230 -0
- package/dist/chunk-QC47SMCZ.mjs +5467 -0
- package/dist/chunk-Z6LIJ5PO.mjs +5362 -0
- package/dist/default-roles-G4TOWUVM.mjs +20 -0
- package/dist/default-roles-QEZPRSUL.mjs +20 -0
- package/dist/index.d.mts +193 -15
- package/dist/index.d.ts +193 -15
- package/dist/index.js +1657 -118
- package/dist/index.mjs +56 -163
- package/dist/runtime-B1_syHVj.d.mts +4787 -0
- package/dist/runtime-B1_syHVj.d.ts +4787 -0
- package/dist/runtime-B7N-oycb.d.mts +4854 -0
- package/dist/runtime-B7N-oycb.d.ts +4854 -0
- package/dist/runtime-BDoAIuTe.d.mts +4872 -0
- package/dist/runtime-BDoAIuTe.d.ts +4872 -0
- package/dist/runtime-BVRmzg3d.d.mts +4718 -0
- package/dist/runtime-BVRmzg3d.d.ts +4718 -0
- package/dist/runtime-BrXwIidf.d.mts +4794 -0
- package/dist/runtime-BrXwIidf.d.ts +4794 -0
- package/dist/runtime-CC_HZhVN.d.mts +5224 -0
- package/dist/runtime-CC_HZhVN.d.ts +5224 -0
- package/dist/runtime-CEx57sBZ.d.mts +4791 -0
- package/dist/runtime-CEx57sBZ.d.ts +4791 -0
- package/dist/runtime-COGvuXIq.d.mts +4790 -0
- package/dist/runtime-COGvuXIq.d.ts +4790 -0
- package/dist/runtime-CSGWjztI.d.mts +5166 -0
- package/dist/runtime-CSGWjztI.d.ts +5166 -0
- package/dist/runtime-DUxWyRcq.d.mts +5399 -0
- package/dist/runtime-DUxWyRcq.d.ts +5399 -0
- package/dist/runtime-LO17NDk1.d.mts +5292 -0
- package/dist/runtime-LO17NDk1.d.ts +5292 -0
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1645 -97
- package/dist/runtime.mjs +7 -1
- package/package.json +3 -3
package/dist/runtime.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AuditService,
|
|
2
3
|
DEFAULT_LABEL_FALLBACK,
|
|
3
4
|
FileService,
|
|
4
5
|
GeocodingService,
|
|
@@ -6,10 +7,12 @@ import {
|
|
|
6
7
|
NoopGeocodingAdapter,
|
|
7
8
|
NoopHookRegistry,
|
|
8
9
|
ObjectSchemaService,
|
|
10
|
+
PermissionService,
|
|
9
11
|
RecordService,
|
|
10
12
|
RelationService,
|
|
11
13
|
UserProfileService,
|
|
12
14
|
ViewService,
|
|
15
|
+
buildAuditChanges,
|
|
13
16
|
createMockAdapter,
|
|
14
17
|
extractAttributeNames,
|
|
15
18
|
getSyncPreview,
|
|
@@ -21,8 +24,9 @@ import {
|
|
|
21
24
|
syncNativeViews,
|
|
22
25
|
verifyNativeObjectsSync,
|
|
23
26
|
verifyNativeViewsSync
|
|
24
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-NOVHQ7B2.mjs";
|
|
25
28
|
export {
|
|
29
|
+
AuditService,
|
|
26
30
|
DEFAULT_LABEL_FALLBACK,
|
|
27
31
|
FileService,
|
|
28
32
|
GeocodingService,
|
|
@@ -30,10 +34,12 @@ export {
|
|
|
30
34
|
NoopGeocodingAdapter,
|
|
31
35
|
NoopHookRegistry,
|
|
32
36
|
ObjectSchemaService,
|
|
37
|
+
PermissionService,
|
|
33
38
|
RecordService,
|
|
34
39
|
RelationService,
|
|
35
40
|
UserProfileService,
|
|
36
41
|
ViewService,
|
|
42
|
+
buildAuditChanges,
|
|
37
43
|
createMockAdapter,
|
|
38
44
|
extractAttributeNames,
|
|
39
45
|
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.15",
|
|
4
4
|
"description": "Standard schema definitions and utilities",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"zod": "^
|
|
25
|
-
"@stndrds/constants": "0.1.0-alpha.
|
|
24
|
+
"zod": "^4.2.1",
|
|
25
|
+
"@stndrds/constants": "0.1.0-alpha.15"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@vitest/coverage-v8": "^2.1.9",
|