@bigso/auth-sdk 0.4.2 → 0.4.3

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/dist/index.cjs CHANGED
@@ -260,7 +260,7 @@ var BigsoAuth = class extends EventEmitter {
260
260
  }
261
261
  this.iframe = document.createElement("iframe");
262
262
  this.iframe.className = "sso-frame";
263
- this.iframe.src = `${this.options.ssoOrigin}/auth/sign-in?v=2.3&client_id=${this.options.clientId}&embedded=true&app_id=${this.options.clientId}&theme=${this.options.theme}`;
263
+ this.iframe.src = `${this.options.ssoOrigin}/auth/sign-in?v=2.3&client_id=${this.options.clientId}`;
264
264
  this.iframe.setAttribute("title", "SSO Login");
265
265
  this.overlayEl.appendChild(this.iframe);
266
266
  this.debug("Iframe creado", this.iframe.src);
package/dist/index.js CHANGED
@@ -234,7 +234,7 @@ var BigsoAuth = class extends EventEmitter {
234
234
  }
235
235
  this.iframe = document.createElement("iframe");
236
236
  this.iframe.className = "sso-frame";
237
- this.iframe.src = `${this.options.ssoOrigin}/auth/sign-in?v=2.3&client_id=${this.options.clientId}&embedded=true&app_id=${this.options.clientId}&theme=${this.options.theme}`;
237
+ this.iframe.src = `${this.options.ssoOrigin}/auth/sign-in?v=2.3&client_id=${this.options.clientId}`;
238
238
  this.iframe.setAttribute("title", "SSO Login");
239
239
  this.overlayEl.appendChild(this.iframe);
240
240
  this.debug("Iframe creado", this.iframe.src);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigso/auth-sdk",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "SDK de autenticación para SSO v2.3 con iframe seguro",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",