@frontegg/redux-store 6.68.0 → 6.69.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.
@@ -52,7 +52,7 @@ function* addUserApiToken({
52
52
  successDialog: {
53
53
  open: true,
54
54
  secret: data.secret,
55
- clientId: expires !== undefined ? data.clientId : undefined
55
+ clientId: expires === undefined ? data.clientId : undefined
56
56
  }
57
57
  }));
58
58
  yield put(actions.setApiTokensLoader({
@@ -122,7 +122,7 @@ function* addTenantApiToken({
122
122
  successDialog: {
123
123
  open: true,
124
124
  secret: data.secret,
125
- clientId: expires !== undefined ? data.clientId : undefined
125
+ clientId: expires === undefined ? data.clientId : undefined
126
126
  }
127
127
  }));
128
128
  yield put(actions.setApiTokensLoader({
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.68.0
1
+ /** @license Frontegg v6.69.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.
@@ -68,7 +68,7 @@ function* addUserApiToken({
68
68
  successDialog: {
69
69
  open: true,
70
70
  secret: data.secret,
71
- clientId: expires !== undefined ? data.clientId : undefined
71
+ clientId: expires === undefined ? data.clientId : undefined
72
72
  }
73
73
  }));
74
74
  yield (0, _effects.put)(_reducer.actions.setApiTokensLoader({
@@ -138,7 +138,7 @@ function* addTenantApiToken({
138
138
  successDialog: {
139
139
  open: true,
140
140
  secret: data.secret,
141
- clientId: expires !== undefined ? data.clientId : undefined
141
+ clientId: expires === undefined ? data.clientId : undefined
142
142
  }
143
143
  }));
144
144
  yield (0, _effects.put)(_reducer.actions.setApiTokensLoader({
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.68.0
1
+ /** @license Frontegg v6.69.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/redux-store",
3
- "version": "6.68.0",
3
+ "version": "6.69.0",
4
4
  "main": "./node/index.js",
5
5
  "license": "MIT",
6
6
  "author": "Frontegg LTD",