@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.mjs
CHANGED
|
@@ -1113,7 +1113,8 @@ async function getMooseUtils(req) {
|
|
|
1113
1113
|
if (runtimeContext) {
|
|
1114
1114
|
return {
|
|
1115
1115
|
client: runtimeContext.client,
|
|
1116
|
-
sql
|
|
1116
|
+
sql,
|
|
1117
|
+
jwt: runtimeContext.jwt
|
|
1117
1118
|
};
|
|
1118
1119
|
}
|
|
1119
1120
|
if (standaloneUtils) {
|
|
@@ -1134,7 +1135,8 @@ async function getMooseUtils(req) {
|
|
|
1134
1135
|
const mooseClient = new MooseClient(queryClient);
|
|
1135
1136
|
standaloneUtils = {
|
|
1136
1137
|
client: mooseClient,
|
|
1137
|
-
sql
|
|
1138
|
+
sql,
|
|
1139
|
+
jwt: void 0
|
|
1138
1140
|
};
|
|
1139
1141
|
return standaloneUtils;
|
|
1140
1142
|
}
|