We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b53d79f commit a9397a9Copy full SHA for a9397a9
src/sdkBase.ts
@@ -185,14 +185,6 @@ export abstract class SdkBase {
185
return !this.isIdentityAvailable();
186
}
187
188
- /**
189
- * @deprecated in version 3.10.0. Will remove in June 2025. Use isIdentityAvailable() instead.
190
- **/
191
- public hasIdentity() {
192
- if (!this._initComplete) return undefined;
193
- return !(this.isIdentityValid() || this._apiClient?.hasActiveRequests());
194
- }
195
-
196
public isIdentityAvailable() {
197
return this.isIdentityValid() || this._apiClient?.hasActiveRequests();
198
0 commit comments