@centreon/ui-context 1.0.1-test-trigger.0 → 1.0.1
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.
- package/package.json +4 -3
- package/src/defaults.ts +1 -1
- package/src/types.ts +0 -5
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@centreon/ui-context",
|
|
3
|
-
"version": "1.0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Centreon UI shared context",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"keywords": [],
|
|
7
7
|
"author": "centreon@centreon.com",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
10
|
+
"lint": "biome check ./src/ --error-on-warnings",
|
|
11
|
+
"lint:fix": "pnpm lint --fix",
|
|
12
|
+
"lint:ci": "biome ci ./src/ --error-on-warnings"
|
|
12
13
|
}
|
|
13
14
|
}
|
package/src/defaults.ts
CHANGED
package/src/types.ts
CHANGED
|
@@ -86,12 +86,7 @@ export interface Downtime {
|
|
|
86
86
|
|
|
87
87
|
export interface FeatureFlags {
|
|
88
88
|
adExclusionPeriods?: boolean;
|
|
89
|
-
dashboard?: boolean;
|
|
90
|
-
dashboardPlayList?: boolean;
|
|
91
89
|
notification?: boolean;
|
|
92
|
-
resourceStatusFilterRevamp?: boolean;
|
|
93
|
-
resourceStatusTreeView?: boolean;
|
|
94
|
-
resouresTableOpenTickets: boolean;
|
|
95
90
|
vault?: boolean;
|
|
96
91
|
}
|
|
97
92
|
|