@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/moose-runner.js
CHANGED
|
@@ -1127,7 +1127,8 @@ async function getMooseUtils(req) {
|
|
|
1127
1127
|
if (runtimeContext) {
|
|
1128
1128
|
return {
|
|
1129
1129
|
client: runtimeContext.client,
|
|
1130
|
-
sql
|
|
1130
|
+
sql,
|
|
1131
|
+
jwt: runtimeContext.jwt
|
|
1131
1132
|
};
|
|
1132
1133
|
}
|
|
1133
1134
|
if (standaloneUtils) {
|
|
@@ -1148,7 +1149,8 @@ async function getMooseUtils(req) {
|
|
|
1148
1149
|
const mooseClient = new MooseClient(queryClient);
|
|
1149
1150
|
standaloneUtils = {
|
|
1150
1151
|
client: mooseClient,
|
|
1151
|
-
sql
|
|
1152
|
+
sql,
|
|
1153
|
+
jwt: void 0
|
|
1152
1154
|
};
|
|
1153
1155
|
return standaloneUtils;
|
|
1154
1156
|
}
|