@asgardeo/javascript 0.5.1 → 0.6.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.
@@ -207,6 +207,11 @@ export interface BaseConfig<T = unknown> extends WithPreferences {
207
207
  * The values should be defined at the framework layer.
208
208
  */
209
209
  storage?: T;
210
+ /**
211
+ * Optional instance ID for multi-auth context support.
212
+ * Use this when you need multiple authentication contexts in the same application.
213
+ */
214
+ instanceId?: number;
210
215
  }
211
216
  export interface WithPreferences {
212
217
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asgardeo/javascript",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "Framework agnostic JavaScript SDK for Asgardeo.",
5
5
  "keywords": [
6
6
  "asgardeo",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "tslib": "2.8.1",
49
- "@asgardeo/i18n": "0.4.0"
49
+ "@asgardeo/i18n": "0.4.1"
50
50
  },
51
51
  "publishConfig": {
52
52
  "access": "public"