@provoly/dashboard 0.20.4 → 0.20.5

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.
Files changed (125) hide show
  1. package/dataset/components/dataset-detail/dataset-detail.component.d.ts +2 -1
  2. package/dataset/i18n/en.translations.d.ts +2 -1
  3. package/dataset/i18n/fr.translations.d.ts +2 -1
  4. package/dataset/style/_o-pry-dataset-card.scss +0 -1
  5. package/dataset/style/_o-pry-dataset-detail.scss +2 -53
  6. package/esm2022/admin/components/admin-classes/admin-classes-form/admin-classes-form.component.mjs +3 -3
  7. package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.mjs +3 -3
  8. package/esm2022/admin/components/admin-fields/admin-fields-form/admin-fields-form.component.mjs +3 -3
  9. package/esm2022/admin/components/admin-menu/admin-menu.component.mjs +3 -3
  10. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +20 -4
  11. package/esm2022/dataset/i18n/en.translations.mjs +3 -2
  12. package/esm2022/dataset/i18n/fr.translations.mjs +3 -2
  13. package/esm2022/dataset/style/css.component.mjs +2 -2
  14. package/esm2022/filters/autocomplete/autocomplete.component.mjs +16 -10
  15. package/esm2022/lib/core/components/about/about.component.mjs +3 -3
  16. package/esm2022/lib/core/components/base-menu/base-menu.component.mjs +3 -3
  17. package/esm2022/lib/core/components/select/select.component.mjs +42 -13
  18. package/esm2022/lib/core/i18n/en.translations.mjs +1 -2
  19. package/esm2022/lib/core/i18n/fr.translations.mjs +1 -2
  20. package/esm2022/lib/core/model/display-options.interface.mjs +2 -2
  21. package/esm2022/lib/core/store/class/class.actions.mjs +1 -4
  22. package/esm2022/lib/core/store/class/class.effects.mjs +1 -4
  23. package/esm2022/lib/core/store/class/class.interface.mjs +1 -1
  24. package/esm2022/lib/core/store/class/class.reducer.mjs +3 -13
  25. package/esm2022/lib/core/store/class/class.selectors.mjs +1 -3
  26. package/esm2022/lib/core/store/class/class.service.mjs +1 -9
  27. package/esm2022/lib/core/store/config/config.selectors.mjs +1 -3
  28. package/esm2022/lib/core/store/config/config.service.mjs +4 -7
  29. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
  30. package/esm2022/presentation/components/presentation.component.mjs +3 -3
  31. package/esm2022/presentation/components/title-presentation/title-presentation.component.mjs +11 -21
  32. package/esm2022/presentation/style/css.component.mjs +2 -2
  33. package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +3 -3
  34. package/esm2022/restitution/i18n/en.translations.mjs +2 -2
  35. package/esm2022/restitution/style/css.component.mjs +2 -2
  36. package/esm2022/search/i18n/en.translations.mjs +2 -1
  37. package/esm2022/search/i18n/fr.translations.mjs +2 -1
  38. package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +3 -7
  39. package/fesm2022/provoly-dashboard-admin.mjs +8 -8
  40. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  41. package/fesm2022/provoly-dashboard-dataset.mjs +25 -7
  42. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  43. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +15 -9
  44. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
  45. package/fesm2022/provoly-dashboard-presentation.mjs +14 -24
  46. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  47. package/fesm2022/provoly-dashboard-restitution.mjs +5 -5
  48. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  49. package/fesm2022/provoly-dashboard-search.mjs +2 -0
  50. package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
  51. package/fesm2022/provoly-dashboard-toolbox.mjs +2 -6
  52. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  53. package/fesm2022/provoly-dashboard.mjs +54 -58
  54. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  55. package/filters/autocomplete/autocomplete.component.d.ts +1 -0
  56. package/lib/core/components/select/select.component.d.ts +2 -1
  57. package/lib/core/i18n/en.translations.d.ts +0 -1
  58. package/lib/core/i18n/fr.translations.d.ts +0 -1
  59. package/lib/core/store/class/class.actions.d.ts +1 -12
  60. package/lib/core/store/class/class.effects.d.ts +0 -5
  61. package/lib/core/store/class/class.interface.d.ts +0 -6
  62. package/lib/core/store/class/class.reducer.d.ts +2 -3
  63. package/lib/core/store/class/class.selectors.d.ts +0 -1
  64. package/lib/core/store/class/class.service.d.ts +1 -5
  65. package/lib/core/store/config/config.selectors.d.ts +0 -1
  66. package/package.json +1 -7
  67. package/presentation/components/title-presentation/title-presentation.component.d.ts +3 -5
  68. package/presentation/style/_o-pry-presentation.scss +1 -48
  69. package/restitution/i18n/en.translations.d.ts +1 -1
  70. package/restitution/style/_o-restitution.scss +11 -14
  71. package/search/i18n/en.translations.d.ts +1 -0
  72. package/search/i18n/fr.translations.d.ts +1 -0
  73. package/styles/base/_utils.scss +4 -0
  74. package/styles/components/_a-tooltip.scss +25 -18
  75. package/styles/components/_m-info-icon.scss +16 -0
  76. package/styles/components/_m-presentation-title.scss +14 -0
  77. package/styles/components/_o-about.scss +2 -24
  78. package/styles/main.scss +2 -0
  79. package/styles-theme/components-theme/_o-pry-dataset.theme.scss +0 -8
  80. package/styles-theme/components-theme/_o-pry-presentation.theme.scss +1 -1
  81. package/styles-theme/components-theme/_o-restitution.theme.scss +10 -0
  82. package/esm2022/supervision/components/supervision-business-data/supervision-business-data.component.mjs +0 -34
  83. package/esm2022/supervision/components/supervision-flow/supervision-flow.component.mjs +0 -33
  84. package/esm2022/supervision/components/supervision-infrastructures/supervision-infrastructures.component.mjs +0 -51
  85. package/esm2022/supervision/components/supervision-integration-errors/supervision-integration-errors-select/supervision-integration-errors-select.component.mjs +0 -27
  86. package/esm2022/supervision/components/supervision-integration-errors/supervision-integration-errors.component.mjs +0 -100
  87. package/esm2022/supervision/components/supervision-layout/supervision-layout.component.mjs +0 -47
  88. package/esm2022/supervision/components/supervision-menu/supervision-menu.component.mjs +0 -32
  89. package/esm2022/supervision/components/supervision-title/supervision-title.component.mjs +0 -24
  90. package/esm2022/supervision/components/supervision.component.mjs +0 -19
  91. package/esm2022/supervision/i18n/en.translations.mjs +0 -58
  92. package/esm2022/supervision/i18n/fr.translations.mjs +0 -58
  93. package/esm2022/supervision/provoly-dashboard-supervision.mjs +0 -5
  94. package/esm2022/supervision/public-api.mjs +0 -2
  95. package/esm2022/supervision/store/supervision-api.model.mjs +0 -2
  96. package/esm2022/supervision/store/supervision.actions.mjs +0 -33
  97. package/esm2022/supervision/store/supervision.effects.mjs +0 -60
  98. package/esm2022/supervision/store/supervision.reducer.mjs +0 -111
  99. package/esm2022/supervision/store/supervision.selectors.mjs +0 -35
  100. package/esm2022/supervision/store/supervision.service.mjs +0 -54
  101. package/esm2022/supervision/supervision-routing.module.mjs +0 -96
  102. package/esm2022/supervision/supervision.module.mjs +0 -96
  103. package/fesm2022/provoly-dashboard-supervision.mjs +0 -861
  104. package/fesm2022/provoly-dashboard-supervision.mjs.map +0 -1
  105. package/supervision/components/supervision-business-data/supervision-business-data.component.d.ts +0 -14
  106. package/supervision/components/supervision-flow/supervision-flow.component.d.ts +0 -14
  107. package/supervision/components/supervision-infrastructures/supervision-infrastructures.component.d.ts +0 -18
  108. package/supervision/components/supervision-integration-errors/supervision-integration-errors-select/supervision-integration-errors-select.component.d.ts +0 -12
  109. package/supervision/components/supervision-integration-errors/supervision-integration-errors.component.d.ts +0 -29
  110. package/supervision/components/supervision-layout/supervision-layout.component.d.ts +0 -21
  111. package/supervision/components/supervision-menu/supervision-menu.component.d.ts +0 -13
  112. package/supervision/components/supervision-title/supervision-title.component.d.ts +0 -11
  113. package/supervision/components/supervision.component.d.ts +0 -9
  114. package/supervision/i18n/en.translations.d.ts +0 -57
  115. package/supervision/i18n/fr.translations.d.ts +0 -57
  116. package/supervision/index.d.ts +0 -5
  117. package/supervision/public-api.d.ts +0 -1
  118. package/supervision/store/supervision-api.model.d.ts +0 -36
  119. package/supervision/store/supervision.actions.d.ts +0 -121
  120. package/supervision/store/supervision.effects.d.ts +0 -51
  121. package/supervision/store/supervision.reducer.d.ts +0 -22
  122. package/supervision/store/supervision.selectors.d.ts +0 -18
  123. package/supervision/store/supervision.service.d.ts +0 -19
  124. package/supervision/supervision-routing.module.d.ts +0 -7
  125. package/supervision/supervision.module.d.ts +0 -25
@@ -1,121 +0,0 @@
1
- import { BaseToolboxAction } from '@provoly/dashboard';
2
- import { Infrastructure, InputFlow, IntegrationError } from './supervision-api.model';
3
- export declare const SupervisionActions: {
4
- highLightMenu: import("@ngrx/store").ActionCreator<"[Supervision] selecting highLight", (props: {
5
- menu: string;
6
- }) => {
7
- menu: string;
8
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision] selecting highLight">>;
9
- routeTo: import("@ngrx/store").ActionCreator<"[Supervision] route to", (props: {
10
- path: string;
11
- params?: {
12
- [p: string]: string;
13
- } | undefined;
14
- }) => {
15
- path: string;
16
- params?: {
17
- [p: string]: string;
18
- } | undefined;
19
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision] route to">>;
20
- toggleMenu: import("@ngrx/store").ActionCreator<"[Supervision] Toggle menu", () => import("@ngrx/store/src/models").TypedAction<"[Supervision] Toggle menu">>;
21
- resetActions: import("@ngrx/store").ActionCreator<"[Supervision] reset toolbox main and sub actions", () => import("@ngrx/store/src/models").TypedAction<"[Supervision] reset toolbox main and sub actions">>;
22
- mainActions: import("@ngrx/store").ActionCreator<"[Supervision] set toolbox main actions", (props: {
23
- actions: BaseToolboxAction[];
24
- }) => {
25
- actions: BaseToolboxAction[];
26
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision] set toolbox main actions">>;
27
- subActions: import("@ngrx/store").ActionCreator<"[Supervision] set toolbox sub actions", (props: {
28
- actions: BaseToolboxAction[];
29
- }) => {
30
- actions: BaseToolboxAction[];
31
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision] set toolbox sub actions">>;
32
- loadInfras: import("@ngrx/store").ActionCreator<"[Supervision/Infra] Load Infras", () => import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra] Load Infras">>;
33
- loadInfrasSuccess: import("@ngrx/store").ActionCreator<"[Supervision/Infra Api] Load Infras Success", (props: {
34
- infras: Infrastructure[];
35
- }) => {
36
- infras: Infrastructure[];
37
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra Api] Load Infras Success">>;
38
- loadInfrasFailure: import("@ngrx/store").ActionCreator<"[Supervision/Infra Api] Load Infras Failure", (props: {
39
- error: any;
40
- }) => {
41
- error: any;
42
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra Api] Load Infras Failure">>;
43
- scaleInfra: import("@ngrx/store").ActionCreator<"[Supervision/Infra] Scale infra", (props: {
44
- name: string;
45
- scale: number;
46
- up: boolean;
47
- }) => {
48
- name: string;
49
- scale: number;
50
- up: boolean;
51
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra] Scale infra">>;
52
- scaleInfraSuccess: import("@ngrx/store").ActionCreator<"[Supervision/Infra Api] Scale infra success", (props: {
53
- name: string;
54
- time: string;
55
- up: boolean;
56
- }) => {
57
- name: string;
58
- time: string;
59
- up: boolean;
60
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra Api] Scale infra success">>;
61
- scaleInfraFailure: import("@ngrx/store").ActionCreator<"[Supervision/Infra Api] Scale infra failure", (props: {
62
- error: any;
63
- }) => {
64
- error: any;
65
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra Api] Scale infra failure">>;
66
- loadFlows: import("@ngrx/store").ActionCreator<"[Supervision/Flow] Load Flows", () => import("@ngrx/store/src/models").TypedAction<"[Supervision/Flow] Load Flows">>;
67
- loadFlowsSuccess: import("@ngrx/store").ActionCreator<"[Supervision/Flow Api] Load Flows Success", (props: {
68
- flows: InputFlow[];
69
- }) => {
70
- flows: InputFlow[];
71
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Flow Api] Load Flows Success">>;
72
- loadFlowsFailure: import("@ngrx/store").ActionCreator<"[Supervision/Flow Api] Load Flows Failure", (props: {
73
- error: any;
74
- }) => {
75
- error: any;
76
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Flow Api] Load Flows Failure">>;
77
- loadIntegrationErrors: import("@ngrx/store").ActionCreator<"[Supervision/Errors] Load Integration Errors", () => import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Load Integration Errors">>;
78
- loadIntegrationErrorsSuccess: import("@ngrx/store").ActionCreator<"[Supervision/Errors Api] Load Integration Errors Success", (props: {
79
- integrationErrors: IntegrationError[];
80
- }) => {
81
- integrationErrors: IntegrationError[];
82
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Load Integration Errors Success">>;
83
- loadIntegrationErrorsFailure: import("@ngrx/store").ActionCreator<"[Supervision/Errors Api] Load Integration Errors Failure", (props: {
84
- error: any;
85
- }) => {
86
- error: any;
87
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Load Integration Errors Failure">>;
88
- toggleErrorDetails: import("@ngrx/store").ActionCreator<"[Supervision/Errors] Toggle Side Panel With Error Details Of Chosen Class", (props: {
89
- error?: IntegrationError | undefined;
90
- errorDetailsOpen: boolean;
91
- }) => {
92
- error?: IntegrationError | undefined;
93
- errorDetailsOpen: boolean;
94
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Toggle Side Panel With Error Details Of Chosen Class">>;
95
- toggleClassSelection: import("@ngrx/store").ActionCreator<"[Supervision/Errors] Select/Unselect Class for submission (Reload/Acknowledge)", (props: {
96
- selectedClass: string;
97
- }) => {
98
- selectedClass: string;
99
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Select/Unselect Class for submission (Reload/Acknowledge)">>;
100
- reloadErrors: import("@ngrx/store").ActionCreator<"[Supervision/Errors] Reload Integration Errors", () => import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Reload Integration Errors">>;
101
- reloadErrorsSuccess: import("@ngrx/store").ActionCreator<"[Supervision/Errors Api] Reload Integration Errors Success", () => import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Reload Integration Errors Success">>;
102
- reloadErrorsFailure: import("@ngrx/store").ActionCreator<"[Supervision/Errors Api] Reload Integration Errors failure", (props: {
103
- error: any;
104
- }) => {
105
- error: any;
106
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Reload Integration Errors failure">>;
107
- acknowledgeErrors: import("@ngrx/store").ActionCreator<"[Supervision/Errors] Acknowledge Integration Errors", () => import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Acknowledge Integration Errors">>;
108
- acknowledgeErrorsSuccess: import("@ngrx/store").ActionCreator<"[Supervision/Errors Api] Acknowledge Integration Errors Success", () => import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Acknowledge Integration Errors Success">>;
109
- acknowledgeErrorsFailure: import("@ngrx/store").ActionCreator<"[Supervision/Errors Api] Acknowledge Integration Errors Failure", (props: {
110
- error: any;
111
- }) => {
112
- error: any;
113
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Acknowledge Integration Errors Failure">>;
114
- setRefreshInterval: import("@ngrx/store").ActionCreator<"[Supervision/Errors] Change the interval of time for refreshing errors (in milliseconds)", (props: {
115
- interval: number;
116
- }) => {
117
- interval: number;
118
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Change the interval of time for refreshing errors (in milliseconds)">>;
119
- startAutoRefresh: import("@ngrx/store").ActionCreator<"[Supervision/Errors] Start auto refreshing errors", () => import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Start auto refreshing errors">>;
120
- stopAutoRefresh: import("@ngrx/store").ActionCreator<"[Supervision/Errors] Stop auto refreshing errors", () => import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Stop auto refreshing errors">>;
121
- };
@@ -1,51 +0,0 @@
1
- import { Router } from '@angular/router';
2
- import { Actions } from '@ngrx/effects';
3
- import { Store } from '@ngrx/store';
4
- import { PryI18nService, PrySnackbarService } from '@provoly/dashboard';
5
- import { SupervisionState } from './supervision.reducer';
6
- import { SupervisionService } from './supervision.service';
7
- import * as i0 from "@angular/core";
8
- export declare class SupervisionEffects {
9
- private actions$;
10
- private service;
11
- private router;
12
- private snackbar;
13
- private translateService;
14
- private store;
15
- routeTo$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Supervision] reset toolbox main and sub actions">> & import("@ngrx/effects").CreateEffectMetadata;
16
- loadInfras$: import("rxjs").Observable<({
17
- infras: import("./supervision-api.model").Infrastructure[];
18
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra Api] Load Infras Success">) | ({
19
- error: any;
20
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra Api] Load Infras Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
21
- scaleInfra$: import("rxjs").Observable<({
22
- name: string;
23
- time: string;
24
- up: boolean;
25
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra Api] Scale infra success">) | ({
26
- error: any;
27
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra Api] Scale infra failure">)> & import("@ngrx/effects").CreateEffectMetadata;
28
- scaleInfraSuccess$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Supervision/Infra] Load Infras">> & import("@ngrx/effects").CreateEffectMetadata;
29
- loadFlows$: import("rxjs").Observable<({
30
- flows: import("./supervision-api.model").InputFlow[];
31
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Flow Api] Load Flows Success">) | ({
32
- error: any;
33
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Flow Api] Load Flows Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
34
- loadIntegrationErrors$: import("rxjs").Observable<({
35
- integrationErrors: import("./supervision-api.model").IntegrationError[];
36
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Load Integration Errors Success">) | ({
37
- error: any;
38
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Load Integration Errors Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
39
- reloadErrors$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Reload Integration Errors Success"> | ({
40
- error: any;
41
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Reload Integration Errors failure">)> & import("@ngrx/effects").CreateEffectMetadata;
42
- reloadErrorsSuccess$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Load Integration Errors">> & import("@ngrx/effects").CreateEffectMetadata;
43
- acknowledgeErrors$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Acknowledge Integration Errors Success"> | ({
44
- error: any;
45
- } & import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors Api] Acknowledge Integration Errors Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
46
- acknowledgeErrorsSuccess$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Load Integration Errors">> & import("@ngrx/effects").CreateEffectMetadata;
47
- errorAutoRefresh$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Supervision/Errors] Load Integration Errors">> & import("@ngrx/effects").CreateEffectMetadata;
48
- constructor(actions$: Actions, service: SupervisionService, router: Router, snackbar: PrySnackbarService, translateService: PryI18nService, store: Store<SupervisionState>);
49
- static ɵfac: i0.ɵɵFactoryDeclaration<SupervisionEffects, never>;
50
- static ɵprov: i0.ɵɵInjectableDeclaration<SupervisionEffects>;
51
- }
@@ -1,22 +0,0 @@
1
- import { BaseMenuItem, BaseToolboxAction, BusinessData } from '@provoly/dashboard';
2
- import { Infrastructure, InputFlow, IntegrationError, LastInfrastructureScale } from './supervision-api.model';
3
- export declare const supervisionFeatureKey = "@pry/supervision";
4
- export interface SupervisionState {
5
- highlightedMenu: string;
6
- menus: BaseMenuItem[];
7
- menuOpen: boolean;
8
- actions: BaseToolboxAction[];
9
- subActions: BaseToolboxAction[];
10
- infrastructures: Infrastructure[];
11
- lastInfraScale: LastInfrastructureScale | undefined;
12
- inputFlows: InputFlow[];
13
- businessDatas: BusinessData[];
14
- integrationErrors: IntegrationError[];
15
- currentIntegrationError?: IntegrationError;
16
- errorDetailsOpen: boolean;
17
- selectedClasses: string[];
18
- refreshInterval: number;
19
- loading: boolean;
20
- }
21
- export declare const initialSupervisionState: SupervisionState;
22
- export declare const supervisionReducer: import("@ngrx/store").ActionReducer<SupervisionState, import("@ngrx/store").Action>;
@@ -1,18 +0,0 @@
1
- import * as fromSupervision from './supervision.reducer';
2
- export declare const SupervisionSelectors: {
3
- feature: import("@ngrx/store").MemoizedSelector<object, fromSupervision.SupervisionState, import("@ngrx/store").DefaultProjectorFn<fromSupervision.SupervisionState>>;
4
- highlightedMenu: import("@ngrx/store").MemoizedSelector<object, string, (s1: fromSupervision.SupervisionState) => string>;
5
- menuOpen: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: fromSupervision.SupervisionState) => boolean>;
6
- menus: import("@ngrx/store").MemoizedSelector<object, import("@provoly/dashboard").BaseMenuItem[], (s1: fromSupervision.SupervisionState) => import("@provoly/dashboard").BaseMenuItem[]>;
7
- actions: import("@ngrx/store").MemoizedSelector<object, import("@provoly/dashboard").BaseToolboxAction[], (s1: fromSupervision.SupervisionState) => import("@provoly/dashboard").BaseToolboxAction[]>;
8
- subActions: import("@ngrx/store").MemoizedSelector<object, import("@provoly/dashboard").BaseToolboxAction[], (s1: fromSupervision.SupervisionState) => import("@provoly/dashboard").BaseToolboxAction[]>;
9
- infrastructures: import("@ngrx/store").MemoizedSelector<object, import("./supervision-api.model").Infrastructure[], (s1: fromSupervision.SupervisionState) => import("./supervision-api.model").Infrastructure[]>;
10
- lastInfraScale: import("@ngrx/store").MemoizedSelector<object, import("./supervision-api.model").LastInfrastructureScale | undefined, (s1: fromSupervision.SupervisionState) => import("./supervision-api.model").LastInfrastructureScale | undefined>;
11
- inputFlows: import("@ngrx/store").MemoizedSelector<object, import("./supervision-api.model").InputFlow[], (s1: fromSupervision.SupervisionState) => import("./supervision-api.model").InputFlow[]>;
12
- integrationErrors: import("@ngrx/store").MemoizedSelector<object, import("./supervision-api.model").IntegrationError[], (s1: fromSupervision.SupervisionState) => import("./supervision-api.model").IntegrationError[]>;
13
- currentIntegrationError: import("@ngrx/store").MemoizedSelector<object, import("./supervision-api.model").IntegrationError | undefined, (s1: fromSupervision.SupervisionState) => import("./supervision-api.model").IntegrationError | undefined>;
14
- errorDetailsOpen: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: fromSupervision.SupervisionState) => boolean>;
15
- selectedClasses: import("@ngrx/store").MemoizedSelector<object, string[], (s1: fromSupervision.SupervisionState) => string[]>;
16
- refreshInterval: import("@ngrx/store").MemoizedSelector<object, number, (s1: fromSupervision.SupervisionState) => number>;
17
- loading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: fromSupervision.SupervisionState) => boolean>;
18
- };
@@ -1,19 +0,0 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Store } from '@ngrx/store';
3
- import { Observable } from 'rxjs';
4
- import { Infrastructure, InputFlow, IntegrationError } from '../store/supervision-api.model';
5
- import * as i0 from "@angular/core";
6
- export declare class SupervisionService {
7
- private httpClient;
8
- private store;
9
- constructor(httpClient: HttpClient, store: Store<any>);
10
- getInfrastructures(): Observable<Infrastructure[]>;
11
- scaleInfra(infra: string, replicas: number): Observable<string>;
12
- getInputFlows(): Observable<InputFlow[]>;
13
- getDateIso(): string;
14
- getIntegrationErrors(): Observable<IntegrationError[]>;
15
- reloadErrors(classes: string[]): Observable<void>;
16
- acknowledgeErrors(classes: string[]): Observable<void>;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<SupervisionService, never>;
18
- static ɵprov: i0.ɵɵInjectableDeclaration<SupervisionService>;
19
- }
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/router";
3
- export declare class SupervisionRoutingModule {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<SupervisionRoutingModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<SupervisionRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
- static ɵinj: i0.ɵɵInjectorDeclaration<SupervisionRoutingModule>;
7
- }
@@ -1,25 +0,0 @@
1
- import { PryI18nService } from '@provoly/dashboard';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "./components/supervision.component";
4
- import * as i2 from "./components/supervision-layout/supervision-layout.component";
5
- import * as i3 from "./components/supervision-menu/supervision-menu.component";
6
- import * as i4 from "./components/supervision-infrastructures/supervision-infrastructures.component";
7
- import * as i5 from "./components/supervision-title/supervision-title.component";
8
- import * as i6 from "./components/supervision-business-data/supervision-business-data.component";
9
- import * as i7 from "./components/supervision-flow/supervision-flow.component";
10
- import * as i8 from "./components/supervision-integration-errors/supervision-integration-errors.component";
11
- import * as i9 from "./components/supervision-integration-errors/supervision-integration-errors-select/supervision-integration-errors-select.component";
12
- import * as i10 from "@angular/common";
13
- import * as i11 from "@provoly/dashboard";
14
- import * as i12 from "./supervision-routing.module";
15
- import * as i13 from "@ngrx/store";
16
- import * as i14 from "@ngrx/effects";
17
- import * as i15 from "@angular/forms";
18
- import * as i16 from "@provoly/dashboard/components/checkbox";
19
- export declare class PrySupervisionModule {
20
- private pryTranslateService;
21
- constructor(pryTranslateService: PryI18nService);
22
- static ɵfac: i0.ɵɵFactoryDeclaration<PrySupervisionModule, never>;
23
- static ɵmod: i0.ɵɵNgModuleDeclaration<PrySupervisionModule, [typeof i1.PrySupervisionComponent, typeof i2.SupervisionLayoutComponent, typeof i3.SupervisionMenuComponent, typeof i4.SupervisionInfrastructuresComponent, typeof i5.SupervisionTitleComponent, typeof i6.SupervisionBusinessDataComponent, typeof i7.SupervisionFlowComponent, typeof i8.SupervisionIntegrationErrorsComponent, typeof i9.SupervisionIntegrationErrorsSelectComponent], [typeof i10.CommonModule, typeof i11.PryCoreModule, typeof i12.SupervisionRoutingModule, typeof i13.StoreFeatureModule, typeof i14.EffectsFeatureModule, typeof i11.PryIconModule, typeof i11.PrySortModule, typeof i11.PrySnackbarModule, typeof i11.PryToggleModule, typeof i15.FormsModule, typeof i11.PrySelectModule, typeof i16.PryCheckboxModule, typeof i11.PryI18nModule], never>;
24
- static ɵinj: i0.ɵɵInjectorDeclaration<PrySupervisionModule>;
25
- }