zek 17.3.14 → 17.3.15

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.
@@ -30,6 +30,7 @@ export declare class HttpErrorHandler {
30
30
  * This error handler lets the app continue to run as if no error occurred.
31
31
  * @param serviceName = name of the data service that attempted the operation
32
32
  * @param operation - name of the operation that failed
33
+ * @param result - optional value to return as the observable result
33
34
  * @param show - optional value to show error
34
35
  */
35
36
  handleErrorResult<T>(serviceName?: string, operation?: string, result?: T, show?: boolean): (response: HttpErrorResponse) => Observable<any>;
@@ -3,6 +3,7 @@ export declare class DateHelper {
3
3
  static equals(value1?: Date | null, value2?: Date | null): boolean;
4
4
  static getDates(start: Date, end: Date): Date[];
5
5
  static dateOnly(value: Date): Date;
6
+ static today(): Date;
6
7
  static toISODateString(value: Date | string): string | null;
7
8
  private static readonly _utcDiff;
8
9
  static utcToLocal(utc: Date): Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zek",
3
- "version": "17.3.14",
3
+ "version": "17.3.15",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"