@evergis/api 4.1.8 → 4.1.11

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.
@@ -25,12 +25,12 @@ export type UserInfoWithPhoto = UserInfoDc & {
25
25
  };
26
26
  export declare class Account extends AccountService {
27
27
  private userInfo?;
28
+ get username(): string;
29
+ get isAuth(): boolean;
30
+ get user(): Partial<UserInfoWithPhoto> | undefined;
28
31
  login(params?: LoginDc, authParams?: AuthenticateParams, useJwt?: boolean): Promise<void>;
29
32
  fetchCurrentUser(): Promise<Partial<UserInfoWithPhoto>>;
30
- get username(): string;
31
33
  logout(): Promise<void>;
32
34
  updateCurrentUser(userInfo: UserInfoWithPhoto): Promise<void>;
33
35
  setPassword(password: string): Promise<void>;
34
- get isAuth(): boolean;
35
- get user(): Partial<UserInfoWithPhoto> | undefined;
36
36
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.1.8",
2
+ "version": "4.1.11",
3
3
  "name": "@evergis/api",
4
4
  "author": "Everpoint",
5
5
  "license": "MIT",
@@ -26,5 +26,5 @@
26
26
  "query-string": "^6.7.0",
27
27
  "swagger-typescript-api": "13.0.23"
28
28
  },
29
- "gitHead": "6c6c255bd70f5d7f9c341263fff016c71d7c0241"
29
+ "gitHead": "0bb6149ad0d6fd9c962d2a420b4f480efecf5396"
30
30
  }
@@ -1,5 +0,0 @@
1
- import { Options as KyOptions } from 'ky';
2
- import { HttpClient } from './__generated__/HttpClient';
3
- export declare class ExtendedHttpClient extends HttpClient {
4
- constructor(options?: KyOptions);
5
- }