@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.
@@ -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
  }