@whippsp/auth0-helper 1.1.1 → 1.1.2

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.
Files changed (2) hide show
  1. package/Auth0Helper.js +6 -2
  2. package/package.json +1 -1
package/Auth0Helper.js CHANGED
@@ -42,8 +42,12 @@ module.exports = function(userModule, initialConfig = {}) {
42
42
  };
43
43
 
44
44
  if (event.transaction?.metadata?.skipremainingactions === 'true') {
45
- log(`Skipping Action execution.`);
46
- return;
45
+ if(runtimeConfig.ignoreskip != true)
46
+ {
47
+ log(`Skipping Action execution.`);
48
+ return;
49
+ }
50
+ log(`Ignoring Skip.`);
47
51
  }
48
52
 
49
53
  api.skipRemaining = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whippsp/auth0-helper",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "A helper to override Auth0 Actions handlers with skip logic.",
5
5
  "main": "Auth0Helper.js",
6
6
  "types": "index.d.ts",