@okta/okta-auth-js 5.10.1 → 5.11.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/CHANGELOG.md +4 -0
- package/cjs/OktaAuth.js +2 -2
- package/cjs/OktaUserAgent.js +2 -2
- package/cjs/idx/flow/AuthenticationFlow.js +2 -1
- package/cjs/idx/flow/AuthenticationFlow.js.map +1 -1
- package/dist/okta-auth-js.min.js +1 -1
- package/dist/okta-auth-js.min.js.map +1 -1
- package/dist/okta-auth-js.umd.js +1 -1
- package/dist/okta-auth-js.umd.js.map +1 -1
- package/esm/index.js +6 -5
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
package/esm/index.js
CHANGED
|
@@ -7184,7 +7184,8 @@ var AuthenticationFlow = {
|
|
|
7184
7184
|
'challenge-poll': ChallengePoll,
|
|
7185
7185
|
'reenroll-authenticator': ReEnrollAuthenticator,
|
|
7186
7186
|
'enroll-poll': EnrollPoll,
|
|
7187
|
-
'redirect-idp': RedirectIdp
|
|
7187
|
+
'redirect-idp': RedirectIdp,
|
|
7188
|
+
'skip': Skip
|
|
7188
7189
|
};
|
|
7189
7190
|
|
|
7190
7191
|
var PasswordRecoveryFlow = {
|
|
@@ -7634,7 +7635,7 @@ var OktaUserAgent = /*#__PURE__*/function () {
|
|
|
7634
7635
|
function OktaUserAgent() {
|
|
7635
7636
|
_classCallCheck(this, OktaUserAgent);
|
|
7636
7637
|
|
|
7637
|
-
this.environments = ["okta-auth-js/".concat("5.
|
|
7638
|
+
this.environments = ["okta-auth-js/".concat("5.11.0")];
|
|
7638
7639
|
}
|
|
7639
7640
|
|
|
7640
7641
|
_createClass(OktaUserAgent, [{
|
|
@@ -7653,7 +7654,7 @@ var OktaUserAgent = /*#__PURE__*/function () {
|
|
|
7653
7654
|
}, {
|
|
7654
7655
|
key: "getVersion",
|
|
7655
7656
|
value: function getVersion() {
|
|
7656
|
-
return "5.
|
|
7657
|
+
return "5.11.0";
|
|
7657
7658
|
}
|
|
7658
7659
|
}, {
|
|
7659
7660
|
key: "maybeAddNodeEnvironment",
|
|
@@ -7712,9 +7713,9 @@ var OktaAuth = /*#__PURE__*/function () {
|
|
|
7712
7713
|
this.options = Object.assign(this.options, {
|
|
7713
7714
|
redirectUri: toAbsoluteUrl(args.redirectUri, window.location.origin)
|
|
7714
7715
|
});
|
|
7715
|
-
this.userAgent = getUserAgent(args, "okta-auth-js/".concat("5.
|
|
7716
|
+
this.userAgent = getUserAgent(args, "okta-auth-js/".concat("5.11.0"));
|
|
7716
7717
|
} else {
|
|
7717
|
-
this.userAgent = getUserAgent(args, "okta-auth-js-server/".concat("5.
|
|
7718
|
+
this.userAgent = getUserAgent(args, "okta-auth-js-server/".concat("5.11.0"));
|
|
7718
7719
|
}
|
|
7719
7720
|
|
|
7720
7721
|
if (!args.maxClockSkew && args.maxClockSkew !== 0) {
|