@biorate/config 1.38.3 → 1.38.4

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.38.4](https://github.com/biorate/core/compare/v1.38.3...v1.38.4) (2023-08-11)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **config:** types fix ([0c0f606](https://github.com/biorate/core/commit/0c0f60680c8068ee22616c547493ee698fe7a05c))
11
+
6
12
  ## [1.38.3](https://github.com/biorate/core/compare/v1.38.2...v1.38.3) (2023-08-10)
7
13
 
8
14
  ### Bug Fixes
package/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { PropertyPath } from 'lodash';
2
2
  import { BaseError } from '@biorate/errors';
3
- import { IConfig } from './interfaces';
3
+ import { IConfig as IConfigType } from './interfaces';
4
4
 
5
5
  declare module '@biorate/config' {
6
- export type IConfig = IConfig;
6
+ export type IConfig = IConfigType;
7
7
 
8
8
  export class Config {
9
9
  protected data: Record<string | symbol, unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biorate/config",
3
- "version": "1.38.3",
3
+ "version": "1.38.4",
4
4
  "description": "Application configurator",
5
5
  "main": "dist",
6
6
  "scripts": {
@@ -26,7 +26,7 @@
26
26
  "lodash": "^4.17.21",
27
27
  "traverse": "^0.6.6"
28
28
  },
29
- "gitHead": "d472d4b09c666ce4d9e79919375841b8ef098842",
29
+ "gitHead": "8d5441e69672a60d7946f4c3fcab109eff273a4d",
30
30
  "devDependencies": {
31
31
  "@types/traverse": "^0.6.32"
32
32
  }