gitextract__my3mksh/ ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src/ │ ├── affect-loading-state/ │ │ ├── affect-loading-state.ts │ │ └── types.ts │ ├── dispatcher/ │ │ ├── dispatcher.ts │ │ └── types.ts │ ├── entity/ │ │ ├── action-creators.ts │ │ ├── action-creators.types.ts │ │ ├── actions.ts │ │ ├── constants.ts │ │ ├── entity.int-spec.ts │ │ ├── entity.spec.ts │ │ ├── entity.ts │ │ ├── methods/ │ │ │ ├── dispatch/ │ │ │ │ ├── dispatch.ts │ │ │ │ └── types.ts │ │ │ ├── mixed/ │ │ │ │ ├── mixed.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ └── select/ │ │ │ ├── select.ts │ │ │ └── types.ts │ │ ├── reducer.ts │ │ ├── reducers/ │ │ │ ├── dictionary.spec.ts │ │ │ ├── dictionary.ts │ │ │ ├── ids.spec.ts │ │ │ ├── ids.ts │ │ │ ├── instance.spec.ts │ │ │ ├── instance.ts │ │ │ ├── loading-state.ts │ │ │ ├── loading-states.ts │ │ │ ├── pages.spec.ts │ │ │ └── pages.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── index.ts │ ├── painless-redux/ │ │ ├── action-creators.ts │ │ ├── constants.ts │ │ ├── painless-redux.ts │ │ ├── reducers.ts │ │ ├── register.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── select-manager/ │ │ ├── select-manager.ts │ │ └── types.ts │ ├── shared/ │ │ ├── change/ │ │ │ ├── actions.ts │ │ │ ├── reducer.spec.ts │ │ │ ├── reducer.ts │ │ │ ├── selectors.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── loading-state/ │ │ │ ├── actions.ts │ │ │ ├── reducers.spec.ts │ │ │ ├── reducers.ts │ │ │ ├── selectors.ts │ │ │ └── types.ts │ │ ├── system/ │ │ │ ├── actions.ts │ │ │ ├── reducers.ts │ │ │ ├── system.ts │ │ │ └── types.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── system-types.ts │ ├── testing/ │ │ ├── helpers.ts │ │ └── store.ts │ ├── utils.ts │ └── workspace/ │ ├── action-creators.ts │ ├── actions.ts │ ├── constants.ts │ ├── methods/ │ │ ├── dispatch/ │ │ │ ├── dispatch.ts │ │ │ └── types.ts │ │ ├── mixed/ │ │ │ ├── mixed.ts │ │ │ └── types.ts │ │ └── select/ │ │ ├── select.ts │ │ └── types.ts │ ├── reducer.ts │ ├── selectors.ts │ ├── types.ts │ ├── utils.ts │ ├── workspace.spec.ts │ └── workspace.ts └── tsconfig.json