@formant/data-sdk 1.63.0 → 1.65.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/dist/data-sdk.cjs.js +1 -1
- package/dist/data-sdk.cjs.js.map +1 -1
- package/dist/data-sdk.es.js +6 -0
- package/dist/data-sdk.es.js.map +1 -1
- package/dist/data-sdk.es6.js +6 -0
- package/dist/data-sdk.umd.js +1 -1
- package/dist/types/data-sdk/src/stores/AuthenticationStore.d.ts +5 -3
- package/package.json +1 -1
package/dist/data-sdk.es.js
CHANGED
|
@@ -125,6 +125,12 @@ class AuthenticationStore {
|
|
|
125
125
|
he(this, "_addAccessTokenRefreshListener");
|
|
126
126
|
this._apiUrl = t, this._refreshAuthToken = n, this._addAccessTokenRefreshListener = r;
|
|
127
127
|
}
|
|
128
|
+
set apiUrl(t) {
|
|
129
|
+
this._apiUrl = t;
|
|
130
|
+
}
|
|
131
|
+
get apiUrl() {
|
|
132
|
+
return this._apiUrl;
|
|
133
|
+
}
|
|
128
134
|
get token() {
|
|
129
135
|
return this._token;
|
|
130
136
|
}
|