@punks/backend-entity-manager 0.0.106 → 0.0.107

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/cjs/index.js CHANGED
@@ -2475,6 +2475,16 @@ exports.AppSessionService = class AppSessionService {
2475
2475
  getRequest() {
2476
2476
  return this.getSession().request;
2477
2477
  }
2478
+ retrieveRequest() {
2479
+ return this.retrieveSession()?.request;
2480
+ }
2481
+ retrieveSession() {
2482
+ const store = sessionStorage.getStore();
2483
+ if (!store) {
2484
+ return undefined;
2485
+ }
2486
+ return store;
2487
+ }
2478
2488
  getSession() {
2479
2489
  const store = sessionStorage.getStore();
2480
2490
  if (!store) {