@tapni/auth 0.0.83 → 0.0.84

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapni/auth",
3
- "version": "0.0.83",
3
+ "version": "0.0.84",
4
4
  "type": "module",
5
5
  "main": "./dist/TapniAuth.umd.js",
6
6
  "module": "./dist/TapniAuth.es.js",
package/src/App.vue CHANGED
@@ -136,11 +136,10 @@ export default {
136
136
  const refreshTokens = this.getRefreshTokens();
137
137
  this.setRefreshToken(refreshTokens[0]);
138
138
  await this.getLoggedInAccounts();
139
- EventBus.$emit("ssoEvent", { name: "setStorage", data: this.$storage });
140
-
139
+ // EventBus.$emit("ssoEvent", { name: "setStorage", data: this.$storage });
141
140
 
142
141
  // Let App know that the auth is ready
143
- this.$emit('ssoLibraryReady');
142
+ this.$emit('ssoLibraryReady', this.$storage);
144
143
  },
145
144
  ssoOutgoingEvent (data) {
146
145
  this.$emit('ssoEvent', data)