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