@514labs/moose-lib 0.6.290-ci-8-g57f77993 → 0.6.290-ci-9-ge4e27fd3
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/{browserCompatible-DPtRRKkt.d.mts → browserCompatible-Ddm1MeOX.d.mts} +1 -1
- package/dist/{browserCompatible-BkdnWcKd.d.ts → browserCompatible-N0vNe6CP.d.ts} +1 -1
- package/dist/browserCompatible.d.mts +2 -2
- package/dist/browserCompatible.d.ts +2 -2
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/dmv2/index.d.mts +1 -1
- package/dist/dmv2/index.d.ts +1 -1
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/{index-BpS8KBOP.d.mts → index-C6Y6fn_9.d.mts} +1 -0
- package/dist/{index-BpS8KBOP.d.ts → index-C6Y6fn_9.d.ts} +1 -0
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/dist/moose-runner.js +4 -2
- package/dist/moose-runner.js.map +1 -1
- package/dist/moose-runner.mjs +4 -2
- package/dist/moose-runner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3474,7 +3474,8 @@ async function getMooseUtils(req) {
|
|
|
3474
3474
|
if (runtimeContext) {
|
|
3475
3475
|
return {
|
|
3476
3476
|
client: runtimeContext.client,
|
|
3477
|
-
sql
|
|
3477
|
+
sql,
|
|
3478
|
+
jwt: runtimeContext.jwt
|
|
3478
3479
|
};
|
|
3479
3480
|
}
|
|
3480
3481
|
if (standaloneUtils) {
|
|
@@ -3495,7 +3496,8 @@ async function getMooseUtils(req) {
|
|
|
3495
3496
|
const mooseClient = new MooseClient(queryClient);
|
|
3496
3497
|
standaloneUtils = {
|
|
3497
3498
|
client: mooseClient,
|
|
3498
|
-
sql
|
|
3499
|
+
sql,
|
|
3500
|
+
jwt: void 0
|
|
3499
3501
|
};
|
|
3500
3502
|
return standaloneUtils;
|
|
3501
3503
|
}
|