@frontegg/redux-store 7.13.0 → 7.14.0
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/helpers/index.d.ts +1 -0
- package/helpers/index.js +2 -1
- package/index.d.ts +1 -0
- package/index.js +2 -1
- package/node/helpers/index.js +11 -0
- package/node/index.js +12 -1
- package/package.json +1 -1
package/helpers/index.d.ts
CHANGED
package/helpers/index.js
CHANGED
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @license Frontegg v7.
|
|
1
|
+
/** @license Frontegg v7.14.0
|
|
2
2
|
*
|
|
3
3
|
* This source code is licensed under the MIT license found in the
|
|
4
4
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -18,4 +18,5 @@ export * from './vendor';
|
|
|
18
18
|
export * from './vendor/interfaces';
|
|
19
19
|
export * from './audits';
|
|
20
20
|
export * from './audits/interfaces';
|
|
21
|
+
export * from './helpers/';
|
|
21
22
|
export {};
|
package/node/helpers/index.js
CHANGED
|
@@ -68,4 +68,15 @@ Object.keys(_gtm).forEach(function (key) {
|
|
|
68
68
|
return _gtm[key];
|
|
69
69
|
}
|
|
70
70
|
});
|
|
71
|
+
});
|
|
72
|
+
var _sha = require("./sha256");
|
|
73
|
+
Object.keys(_sha).forEach(function (key) {
|
|
74
|
+
if (key === "default" || key === "__esModule") return;
|
|
75
|
+
if (key in exports && exports[key] === _sha[key]) return;
|
|
76
|
+
Object.defineProperty(exports, key, {
|
|
77
|
+
enumerable: true,
|
|
78
|
+
get: function () {
|
|
79
|
+
return _sha[key];
|
|
80
|
+
}
|
|
81
|
+
});
|
|
71
82
|
});
|
package/node/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @license Frontegg v7.
|
|
1
|
+
/** @license Frontegg v7.14.0
|
|
2
2
|
*
|
|
3
3
|
* This source code is licensed under the MIT license found in the
|
|
4
4
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -172,4 +172,15 @@ Object.keys(_interfaces6).forEach(function (key) {
|
|
|
172
172
|
return _interfaces6[key];
|
|
173
173
|
}
|
|
174
174
|
});
|
|
175
|
+
});
|
|
176
|
+
var _helpers3 = require("./helpers/");
|
|
177
|
+
Object.keys(_helpers3).forEach(function (key) {
|
|
178
|
+
if (key === "default" || key === "__esModule") return;
|
|
179
|
+
if (key in exports && exports[key] === _helpers3[key]) return;
|
|
180
|
+
Object.defineProperty(exports, key, {
|
|
181
|
+
enumerable: true,
|
|
182
|
+
get: function () {
|
|
183
|
+
return _helpers3[key];
|
|
184
|
+
}
|
|
185
|
+
});
|
|
175
186
|
});
|