@stemy/ngx-utils 13.2.0 → 13.2.2

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.
@@ -270,7 +270,8 @@ export declare class IConfiguration {
270
270
  [key: string]: any;
271
271
  }
272
272
  export interface IConfigService {
273
- config: IConfiguration;
273
+ readonly config: IConfiguration;
274
+ readonly injector: Injector;
274
275
  readonly load: () => Promise<IConfiguration>;
275
276
  prepareUrl(url: string, ending: string): string;
276
277
  getConfigValue(key: string): any;
@@ -3,6 +3,6 @@ export declare class DateUtils {
3
3
  static isHoliday(date: Date): boolean;
4
4
  static isBusinessDay(date: Date): boolean;
5
5
  static add(date: Date, amount?: DurationInputArg1, unit?: DurationInputArg2): Date;
6
- static businessAdd(date: Date, amount: number, unit?: DurationInputArg2): Date;
6
+ static businessAdd(date: Date, amount: number, unit?: DurationInputArg2, freeDays?: Date[]): Date;
7
7
  static businessSubtract(date: Date, amount: number, unit?: DurationInputArg2): Date;
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "13.2.0",
3
+ "version": "13.2.2",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",