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