@stndrds/schema 0.1.0-alpha.24 → 0.1.0-alpha.25

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/index.js CHANGED
@@ -4022,8 +4022,8 @@ function runWithContext(context, fn) {
4022
4022
  const frozenContext = Object.freeze({ ...context });
4023
4023
  return storage.run(frozenContext, fn);
4024
4024
  }
4025
- async function withTenantContext(tenantId, fn, userId) {
4026
- return await runWithContext({ tenantId, userId }, fn);
4025
+ function withTenantContext(tenantId, fn, userId) {
4026
+ return runWithContext({ tenantId, userId }, fn);
4027
4027
  }
4028
4028
 
4029
4029
  // src/runtime/formula/evaluator.ts
package/dist/index.mjs CHANGED
@@ -198,7 +198,7 @@ import {
198
198
  verifyNativeViewsSync,
199
199
  view,
200
200
  withTenantContext
201
- } from "./chunk-KT4UPBZR.mjs";
201
+ } from "./chunk-PEF22PIF.mjs";
202
202
  import {
203
203
  ALL_SYSTEM_RESOURCES,
204
204
  DEFAULT_ROLES,
package/dist/runtime.js CHANGED
@@ -710,8 +710,8 @@ function runWithContext(context, fn) {
710
710
  const frozenContext = Object.freeze({ ...context });
711
711
  return storage.run(frozenContext, fn);
712
712
  }
713
- async function withTenantContext(tenantId, fn, userId) {
714
- return await runWithContext({ tenantId, userId }, fn);
713
+ function withTenantContext(tenantId, fn, userId) {
714
+ return runWithContext({ tenantId, userId }, fn);
715
715
  }
716
716
 
717
717
  // src/runtime/formula/evaluator.ts
package/dist/runtime.mjs CHANGED
@@ -74,7 +74,7 @@ import {
74
74
  verifyNativeObjectsSync,
75
75
  verifyNativeViewsSync,
76
76
  withTenantContext
77
- } from "./chunk-KT4UPBZR.mjs";
77
+ } from "./chunk-PEF22PIF.mjs";
78
78
  export {
79
79
  AuditService,
80
80
  DEFAULT_LABEL_FALLBACK,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/schema",
3
- "version": "0.1.0-alpha.24",
3
+ "version": "0.1.0-alpha.25",
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.24"
26
+ "@stndrds/constants": "0.1.0-alpha.25"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@vitest/coverage-v8": "^2.1.9",