2021-06-08 01:23:25 +05:30
|
|
|
import { DEFAULT_DAYS_TO_DISPLAY } from '../constants';
|
|
|
|
|
|
|
|
export default () => ({
|
2021-09-30 23:02:18 +05:30
|
|
|
id: null,
|
2021-10-27 15:23:28 +05:30
|
|
|
features: {},
|
|
|
|
endpoints: {},
|
|
|
|
daysInPast: DEFAULT_DAYS_TO_DISPLAY,
|
2021-09-30 23:02:18 +05:30
|
|
|
createdAfter: null,
|
|
|
|
createdBefore: null,
|
2021-06-08 01:23:25 +05:30
|
|
|
stages: [],
|
|
|
|
summary: [],
|
|
|
|
analytics: [],
|
|
|
|
stats: [],
|
2021-09-04 01:27:46 +05:30
|
|
|
valueStreams: [],
|
|
|
|
selectedValueStream: {},
|
2021-06-08 01:23:25 +05:30
|
|
|
selectedStage: {},
|
|
|
|
selectedStageEvents: [],
|
2021-09-04 01:27:46 +05:30
|
|
|
selectedStageError: '',
|
2021-06-08 01:23:25 +05:30
|
|
|
medians: {},
|
2021-10-27 15:23:28 +05:30
|
|
|
stageCounts: {},
|
2021-06-08 01:23:25 +05:30
|
|
|
hasError: false,
|
|
|
|
isLoading: false,
|
|
|
|
isLoadingStage: false,
|
|
|
|
isEmptyStage: false,
|
2021-09-04 01:27:46 +05:30
|
|
|
permissions: {},
|
2021-06-08 01:23:25 +05:30
|
|
|
});
|