@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.
@@ -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
  }