You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running npm run build, a TypeScript error occurs in src/store/api/users.ts, indicating that getSessionRecord does not exist in UsersApi.
Error Message
src/store/api/users.ts:21:49 - error TS2551: Property 'getSessionRecord' does not exist on type 'UsersApi'. Did you mean 'setSessionRecord'?
21 export const getSecurity = async () => usersApi.getSessionRecord();
~~~~~~~~~~~~~~~~
src/api/client/api.ts:17668:12
17668 public setSessionRecord(tenant: string, setSessionRecordRequest?: SetSessionRecordRequest, options?: AxiosRequestConfig) {
~~~~~~~~~~~~~~~~
'setSessionRecord' is declared here.
The text was updated successfully, but these errors were encountered:
When running
npm run build
, a TypeScript error occurs insrc/store/api/users.ts
, indicating thatgetSessionRecord
does not exist inUsersApi
.Error Message
The text was updated successfully, but these errors were encountered: