@auth0/auth0-spa-js 2.10.0 → 2.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/README.md CHANGED
@@ -30,7 +30,7 @@ npm install @auth0/auth0-spa-js
30
30
  From the CDN:
31
31
 
32
32
  ```html
33
- <script src="https://cdn.auth0.com/js/auth0-spa-js/2.10/auth0-spa-js.production.js"></script>
33
+ <script src="https://cdn.auth0.com/js/auth0-spa-js/2.11/auth0-spa-js.production.js"></script>
34
34
  ```
35
35
 
36
36
  ### Configure Auth0
@@ -540,7 +540,7 @@
540
540
  exports.default = SuperTokensLock;
541
541
  }));
542
542
  var Lock = unwrapExports(browserTabsLock);
543
- var version = "2.10.0";
543
+ var version = "2.11.0";
544
544
  const DEFAULT_AUTHORIZE_TIMEOUT_IN_SECONDS = 60;
545
545
  const DEFAULT_POPUP_CONFIG_OPTIONS = {
546
546
  timeoutInSeconds: DEFAULT_AUTHORIZE_TIMEOUT_IN_SECONDS
@@ -2845,7 +2845,8 @@
2845
2845
  subject_token: options.subject_token,
2846
2846
  subject_token_type: options.subject_token_type,
2847
2847
  scope: scopesToRequest(this.scope, options.scope, options.audience || this.options.authorizationParams.audience),
2848
- audience: options.audience || this.options.authorizationParams.audience
2848
+ audience: options.audience || this.options.authorizationParams.audience,
2849
+ organization: options.organization || this.options.authorizationParams.organization
2849
2850
  });
2850
2851
  }
2851
2852
  _assertDpop(dpop) {