@equinor/fusion-framework-module-services
Advanced tools
Comparing version 1.0.13 to 1.0.14
@@ -6,2 +6,8 @@ # Change Log | ||
## 1.0.14 (2023-01-19) | ||
### Bug Fixes | ||
- update interface for enabling modules ([1e5730e](https://github.com/equinor/fusion-framework/commit/1e5730e91992c1d0177790c851be993a0532a3d1)) | ||
## [1.0.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-services@1.0.12...@equinor/fusion-framework-module-services@1.0.13) (2023-01-17) | ||
@@ -8,0 +14,0 @@ |
@@ -13,3 +13,3 @@ import type { IModuleConfigurator, IModulesConfigurator, Module } from '@equinor/fusion-framework-module'; | ||
export declare const module: ServicesModule; | ||
export declare const enableServices: (config: IModulesConfigurator) => void; | ||
export declare const enableServices: (config: IModulesConfigurator<any, any>) => void; | ||
export declare const configureServices: (configure: (configurator: IApiConfigurator) => void) => IModuleConfigurator<ServicesModule>; | ||
@@ -16,0 +16,0 @@ declare module '@equinor/fusion-framework-module' { |
{ | ||
"name": "@equinor/fusion-framework-module-services", | ||
"version": "1.0.13", | ||
"version": "1.0.14", | ||
"description": "", | ||
@@ -58,3 +58,3 @@ "sideEffects": false, | ||
}, | ||
"gitHead": "4f6c79b29605802ee0ed6b67157cd0a489246846" | ||
"gitHead": "b6cca109adbc43aa85ecf11b5b43aedc5573a494" | ||
} |
@@ -74,3 +74,6 @@ import type { | ||
*/ | ||
export const enableServices = (config: IModulesConfigurator): void => { | ||
export const enableServices = ( | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
config: IModulesConfigurator<any, any> | ||
): void => { | ||
config.addConfig({ module }); | ||
@@ -77,0 +80,0 @@ }; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
221073
1760