@stemy/ngx-utils 19.6.1 → 19.6.3

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.
@@ -74,7 +74,7 @@ export interface IUserData {
74
74
  [key: string]: any;
75
75
  }
76
76
  export interface IAuthService {
77
- readonly isAuthenticated: boolean;
77
+ isAuthenticated: boolean;
78
78
  checkAuthenticated(): Promise<boolean>;
79
79
  }
80
80
  export type RouteValidator = (auth: IAuthService, route?: IRoute, next?: ActivatedRouteSnapshot) => Promise<boolean>;
@@ -4,6 +4,7 @@ export declare class StringUtils {
4
4
  static has(str: string, ...parts: string[]): boolean;
5
5
  static lcFirst(str: string): string;
6
6
  static ucFirst(str: string): string;
7
+ static camelize(str: string): string;
7
8
  static isObjectId(id: string): boolean;
8
9
  static parseDomain(baseUrl: string): string;
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "19.6.1",
3
+ "version": "19.6.3",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",