@equinor/fusion-framework-module-context
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -6,2 +6,8 @@ # Change Log | ||
## [1.1.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-context@1.1.0...@equinor/fusion-framework-module-context@1.1.1) (2022-12-05) | ||
### Bug Fixes | ||
- **module-context:** update ContextItem interface ([7368fb0](https://github.com/equinor/fusion-framework/commit/7368fb08015e07cce54d30109462f36a64188d25)) | ||
## 1.1.0 (2022-12-05) | ||
@@ -8,0 +14,0 @@ |
@@ -8,5 +8,6 @@ export type ContextItem<TType extends Record<string, unknown> = Record<string, unknown>> = { | ||
title?: string; | ||
isActive: boolean; | ||
isDeleted: boolean; | ||
created: Date; | ||
subTitle?: string; | ||
isActive?: boolean; | ||
isDeleted?: boolean; | ||
created?: Date; | ||
updated?: Date; | ||
@@ -16,4 +17,4 @@ }; | ||
id: string; | ||
isChildType: boolean; | ||
parentTypeIds: string[]; | ||
isChildType?: boolean; | ||
parentTypeIds?: string[]; | ||
} | ||
@@ -20,0 +21,0 @@ export type QueryContextParameters = { |
{ | ||
"name": "@equinor/fusion-framework-module-context", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "", | ||
@@ -46,3 +46,3 @@ "main": "./dist/esm/index.js", | ||
}, | ||
"gitHead": "853945f3f7e97bc5370ce68c4f9d6b513bbac5c5" | ||
"gitHead": "eab33e5faa617833f2f19cb3ca3a5db943255992" | ||
} |
@@ -8,5 +8,6 @@ export type ContextItem<TType extends Record<string, unknown> = Record<string, unknown>> = { | ||
title?: string; | ||
isActive: boolean; | ||
isDeleted: boolean; | ||
created: Date; | ||
subTitle?: string; | ||
isActive?: boolean; | ||
isDeleted?: boolean; | ||
created?: Date; | ||
updated?: Date; | ||
@@ -17,4 +18,4 @@ }; | ||
id: string; | ||
isChildType: boolean; | ||
parentTypeIds: string[]; | ||
isChildType?: boolean; | ||
parentTypeIds?: string[]; | ||
} | ||
@@ -21,0 +22,0 @@ |
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
178154
1019